diff --git a/Mk/Uses/kde.mk b/Mk/Uses/kde.mk index 088c9e0eb0ae..f59450873bec 100644 --- a/Mk/Uses/kde.mk +++ b/Mk/Uses/kde.mk @@ -1,914 +1,920 @@ # Provides support for KDE and KF5-based ports. # # Feature: kde # Valid ARGS: 5 # # 5: Depend on KDE Frameworks 5 components and variables. # # Variables that can be set by a port: # # USE_KDE List of KF5/Plasma5 components (other ports) that this # port depends on. # * foo:build Add a build-time dependency (BUILD_DEPENDS) # * foo:run Add a run-time dependency (RUN_DEPENDS) # * foo (default) Add both dependencies on component , or # a LIB_DEPENDS if applicable. # # To simplify the ports, also: # CATEGORIES If the port is part of one of the KDE Software distribution, # it can add, in addition to 'kde' one of the following: # kde-applications: part of applications release # kde-frameworks: part of frameworks release # kde-plasma: part of plasma release # this will then set default values for MASTER_SITES and DIST_SUBDIR # as well as CPE_VENDOR and LICENSE. # # option DOCS If the port is part of kde-applications (see CATEGORIES, # above) and has an option defined for DOCS then a dependency # for doctools:build is added. The option itself doesn't # have to do anything -- the dependency is always there. # # KDE_INVENT If the port does not have a regular release, and should # be fetched from KDE Invent (a GitLab instance) it can set # KDE_INVENT to 3 space-separated values: # * a full 40-character commit hash # * a category name inside KDE Invent # * a repository name inside KDE Invent # Default values for category and name are: # * the first item in CATEGORIES that is not "kde"; this # is useful when the FreeBSD ports category and the KDE # category are the same (which happens sometimes) # * PORTNAME, often the FreeBSD port name is the same # as the upstream name and it will not need to be specified. # Sometimes `KDE_INVENT=` will do and often # `KDE_INVENT= ` is enough. # # Setting KDE_INVENT is the equivalent of a handful of USE_GITLAB # and related settings. # # MAINTAINER: kde@FreeBSD.org .if !defined(_INCLUDE_USES_KDE_MK) _INCLUDE_USES_KDE_MK= yes _KDE_SUPPORTED= 5 . if empty(kde_ARGS) IGNORE= kde needs a version (${_KDE_SUPPORTED}) . endif . for ver in ${_KDE_SUPPORTED:O:u} . if ${kde_ARGS:M${ver}} . if !defined(_KDE_VERSION) _KDE_VERSION= ${ver} . else IGNORE?= cannot be installed: different KDE versions specified via kde:[${_KDE_SUPPORTED:S/ //g}] #' . endif . endif . endfor . if empty(_KDE_VERSION) IGNORE?= kde:[${_KDE_SUPPORTED:S/ //g}] needs an argument #' . else _KDE_RELNAME= KDE${_KDE_VERSION} # === VERSIONS OF THE DIFFERENT COMPONENTS ===================================== # Current KDE desktop. KDE_PLASMA_VERSION?= 5.27.4 KDE_PLASMA_BRANCH?= stable # Current KDE frameworks. KDE_FRAMEWORKS_VERSION?= 5.105.0 KDE_FRAMEWORKS_BRANCH?= stable # Current KDE applications. -KDE_APPLICATIONS_VERSION?= 22.12.3 -KDE_APPLICATIONS_SHLIB_VER?= 5.22.3 +KDE_APPLICATIONS_VERSION?= 23.04.0 +KDE_APPLICATIONS_SHLIB_VER?= 5.23.0 # G as in KDE Gear, and as in "don't make the variable name longer than required" -KDE_APPLICATIONS_SHLIB_G_VER?= 22.12.3 +KDE_APPLICATIONS_SHLIB_G_VER?= 23.4.0 KDE_APPLICATIONS_BRANCH?= stable # Extended KDE universe applications. CALLIGRA_VERSION?= 2.9.11 CALLIGRA_BRANCH?= stable # ============================================================================== # === INSTALLATION PREFIXES AND HEADER LOCATION ================================ # Define unversioned prefix variable. KDE_PREFIX= ${LOCALBASE} # ============================================================================== # === CATEGORIES HANDLING -- SETTING DEFAULT VALUES ============================ # Doing MASTER_SITES magic based on the category of the port _KDE_CATEGORIES_SUPPORTED= kde-applications kde-frameworks kde-plasma . for cat in ${_KDE_CATEGORIES_SUPPORTED} . if ${CATEGORIES:M${cat}} . if !defined(_KDE_CATEGORY) _KDE_CATEGORY= ${cat} . else IGNORE?= cannot be installed: multiple kde-<...> categories specified via CATEGORIES=${CATEGORIES} #' . endif . endif . endfor # Doing source-selection if the sources are on KDE invent . if defined(KDE_INVENT) _invent_hash= ${KDE_INVENT:[1]} _invent_category= ${KDE_INVENT:[2]} _invent_name= ${KDE_INVENT:[3]} # Fill in default values if bits are missing . if empty(_invent_category) _invent_category= ${CATEGORIES:Nkde:[1]} . endif . if empty(_invent_name) _invent_name= ${PORTNAME} . endif # If valid, use it for GitLab . if empty(_invent_hash) || empty(_invent_category) || empty(_invent_name) IGNORE?= invalid KDE_INVENT value '${KDE_INVENT}' . else USE_GITLAB= yes GL_SITE= https://invent.kde.org GL_ACCOUNT= ${_invent_category} GL_PROJECT= ${_invent_name} GL_COMMIT= ${_invent_hash} . endif . endif . if defined(_KDE_CATEGORY) # KDE is normally licensed under the LGPL 2.0. LICENSE?= LGPL20 # Set CPE Vendor Information # As _KDE_CATEGORY is set we can assume it is port release by KDE and the # vendor is therefore kde. CPE_VENDOR?= kde . if ${_KDE_CATEGORY:Mkde-applications} PORTVERSION?= ${KDE_APPLICATIONS_VERSION} MASTER_SITES?= KDE/${KDE_APPLICATIONS_BRANCH}/release-service/${KDE_APPLICATIONS_VERSION}/src # Let bsd.port.mk create the plist-entries for the documentation. # KDE Applications ports install their documentation to # ${PREFIX}/share/doc. This is only done if the port # defines OPTION DOCS -- the _KDE_OPTIONS here is to # avoid make errors when there are no options defined at all. _KDE_OPTIONS= bogus ${OPTIONS_DEFINE} . if ${_KDE_OPTIONS:MDOCS} DOCSDIR= ${PREFIX}/share/doc PORTDOCS?= HTML/* USE_KDE+= doctools:build . endif # Further pass along a SHLIB_VER PLIST_SUB PLIST_SUB+= KDE_APPLICATIONS_SHLIB_VER=${KDE_APPLICATIONS_SHLIB_VER} \ KDE_APPLICATIONS_VERSION_SHORT="${KDE_APPLICATIONS_VERSION:R:R}" DIST_SUBDIR?= KDE/release-service/${KDE_APPLICATIONS_VERSION} . elif ${_KDE_CATEGORY:Mkde-plasma} PORTVERSION?= ${KDE_PLASMA_VERSION} PKGNAMEPREFIX?= plasma5- MASTER_SITES?= KDE/${KDE_PLASMA_BRANCH}/plasma/${KDE_PLASMA_VERSION} DIST_SUBDIR?= KDE/plasma/${KDE_PLASMA_VERSION} . elif ${_KDE_CATEGORY:Mkde-frameworks} PORTVERSION?= ${KDE_FRAMEWORKS_VERSION} PKGNAMEPREFIX?= kf5- WWW?= https://api.kde.org/frameworks/${PORTNAME}/html/index.html # This is a slight duplication of _USE_FRAMEWORKS_PORTING -- it maybe would be # better to rely on ${_USE_FRAMEWORKS_PORTING:S/^/k/g} _PORTINGAIDS= kjs kjsembed kdelibs4support kdesignerplugin kdewebkit khtml kmediaplayer kross kxmlrpcclient . if ${_PORTINGAIDS:M*${PORTNAME}*} MASTER_SITES?= KDE/${KDE_FRAMEWORKS_BRANCH}/frameworks/${KDE_FRAMEWORKS_VERSION:R}/portingAids . else MASTER_SITES?= KDE/${KDE_FRAMEWORKS_BRANCH}/frameworks/${KDE_FRAMEWORKS_VERSION:R} . endif DIST_SUBDIR?= KDE/frameworks/${KDE_FRAMEWORKS_VERSION} . else IGNORE?= unknown CATEGORY value '${_KDE_CATEGORY}' #' . endif . endif #defined(_KDE_CATEGORY) # ============================================================================== # === SET UP LOCALE ENVIRONMENT ================================================= USE_LOCALE?= en_US.UTF-8 # === SET UP CMAKE ENVIRONMENT ================================================= # Help cmake to find files when testing ports with non-default PREFIX. CMAKE_ARGS+= -DCMAKE_PREFIX_PATH="${LOCALBASE}" # We set KDE_INSTALL_USE_QT_SYS_PATHS to install mkspecs files, plugins and # imports to the Qt 5 install directory. CMAKE_ARGS+= -DCMAKE_MODULE_PATH="${LOCALBASE};${KDE_PREFIX}" \ -DCMAKE_INSTALL_PREFIX="${KDE_PREFIX}" \ -DKDE_INSTALL_USE_QT_SYS_PATHS:BOOL=true # Set man-page installation prefix. CMAKE_ARGS+= -DKDE_INSTALL_MANDIR:PATH="${KDE_PREFIX}/man" \ -DMAN_INSTALL_DIR:PATH="${KDE_PREFIX}/man" # Disable autotests unless TEST_TARGET is defined. . if !defined(TEST_TARGET) CMAKE_ARGS+= -DBUILD_TESTING:BOOL=false . endif # ============================================================================== # === SET UP PLIST_SUB ========================================================= # Prefix and include directory. PLIST_SUB+= KDE_PREFIX="${KDE_PREFIX}" # KDE Applications version. PLIST_SUB+= KDE_APPLICATIONS_VERSION="${KDE_APPLICATIONS_VERSION}" \ KDE_FRAMEWORKS_VERSION="${KDE_FRAMEWORKS_VERSION}" \ KDE_PLASMA_VERSION="${KDE_PLASMA_VERSION}" # ============================================================================== _USE_KDE_BOTH= akonadi attica libkcddb libkcompactdisc libkdcraw libkdegames \ libkeduvocdocument libkexiv2 libkipi libksane okular \ baloo baloo-widgets kate marble # List of components of the KDE Frameworks distribution. # The *_TIER variables are internal, primarily for checking # that our list of frameworks matches the structure offered upstream. _USE_FRAMEWORKS_TIER1= apidox archive attica5 breeze-icons codecs config \ coreaddons dbusaddons dnssd holidays i18n idletime itemmodels \ itemviews kirigami2 kquickcharts oxygen-icons5 plotting prison \ qqc2-desktop-style solid sonnet syntaxhighlighting \ threadweaver wayland widgetsaddons windowsystem # NOT LISTED TIER1: modemmanagerqt networkmanagerqt (not applicable) _USE_FRAMEWORKS_TIER2= auth completion crash doctools \ filemetadata kimageformats jobwidgets notifications \ package pty syndication unitconversion _USE_FRAMEWORKS_TIER3= activities activities-stats baloo5 bookmarks configwidgets \ designerplugin emoticons globalaccel guiaddons \ iconthemes init kcmutils kdav kdeclarative \ - kded kdesu kdewebkit kio newstuff notifyconfig parts \ + kded kdesu kdewebkit kio kpipewire newstuff notifyconfig parts \ people plasma-framework purpose runner service texteditor \ textwidgets wallet xmlgui xmlrpcclient _USE_FRAMEWORKS_TIER4= frameworkintegration calendarcore contacts # Porting Aids frameworks provide code and utilities to ease the transition from # kdelibs 4 to KDE Frameworks 5. Code should aim to port away from this framework, # new projects should avoid using these libraries. _USE_FRAMEWORKS_PORTING=js jsembed kdelibs4support khtml mediaplayer kross _USE_FRAMEWORKS_ALL= ecm \ ${_USE_FRAMEWORKS_TIER1} \ ${_USE_FRAMEWORKS_TIER2} \ ${_USE_FRAMEWORKS_TIER3} \ ${_USE_FRAMEWORKS_TIER4} \ ${_USE_FRAMEWORKS_PORTING} \ ${_USE_FRAMEWORKS_EXTRA} \ kpublictransport kosm \ plasma-wayland-protocols # 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 ksystemstats kwallet-pam \ kwayland-integration kwin kwrited layer-shell-qt libkscreen \ libksysguard milou oxygen plasma-browser-integration \ plasma-desktop plasma-disks plasma-integration plasma-pa \ plasma-sdk plasma-workspace plasma-workspace-wallpapers \ polkit-kde-agent-1 powerdevil systemsettings xdg-desktop-portal-kde # List of components of the KDE PIM distribution (part of applications). _USE_KDEPIM5_ALL= akonadicontacts akonadiimportwizard akonadimime akonadinotes \ akonadicalendar akonadisearch \ calendarcore calendarsupport calendarutils \ contacts eventviews gapi grantleetheme \ gravatar identitymanagement imap \ incidenceeditor kdepim-addons \ kdepim-runtime5 kitinerary kontactinterface kpkpass \ ksmtp ldap libkdepim libkleo libksieve mailcommon \ mailimporter mailtransport mbox messagelib \ mime pimcommon pimtextedit tnef \ kalarm kontact kmail mbox-importer \ akonadiconsole akregator grantlee-editor kaddressbook \ kalarm kmail-account-wizard kmail knotes kontact \ - korganizer pim-data-exporter + korganizer pim-data-exporter ktextaddons _USE_KDE5_ALL= ${_USE_FRAMEWORKS_ALL} \ ${_USE_PLASMA_ALL} \ ${_USE_KDEPIM5_ALL} \ ${_USE_KDE_BOTH} # ====================== frameworks components ================================= kde-activities_PORT= x11/kf5-kactivities kde-activities_LIB= libKF5Activities.so kde-activities-stats_PORT= x11/kf5-kactivities-stats kde-activities-stats_LIB= libKF5ActivitiesStats.so kde-apidox_PORT= devel/kf5-kapidox kde-apidox_PATH= ${KDE_PREFIX}/bin/kapidox-generate kde-apidox_TYPE= run kde-archive_PORT= archivers/kf5-karchive kde-archive_LIB= libKF5Archive.so kde-attica5_PORT= x11-toolkits/kf5-attica kde-attica5_LIB= libKF5Attica.so kde-auth_PORT= devel/kf5-kauth kde-auth_LIB= libKF5Auth.so kde-baloo5_PORT= sysutils/kf5-baloo kde-baloo5_LIB= libKF5Baloo.so kde-bookmarks_PORT= devel/kf5-kbookmarks kde-bookmarks_LIB= libKF5Bookmarks.so kde-breeze-icons_PORT= x11-themes/kf5-breeze-icons kde-breeze-icons_PATH= ${KDE_PREFIX}/share/icons/breeze/index.theme kde-breeze-icons_TYPE= run kde-codecs_PORT= textproc/kf5-kcodecs kde-codecs_LIB= libKF5Codecs.so kde-completion_PORT= x11-toolkits/kf5-kcompletion kde-completion_LIB= libKF5Completion.so kde-config_PORT= devel/kf5-kconfig kde-config_LIB= libKF5ConfigCore.so kde-configwidgets_PORT= x11-toolkits/kf5-kconfigwidgets kde-configwidgets_LIB= libKF5ConfigWidgets.so kde-coreaddons_PORT= devel/kf5-kcoreaddons kde-coreaddons_LIB= libKF5CoreAddons.so kde-crash_PORT= devel/kf5-kcrash kde-crash_LIB= libKF5Crash.so kde-dbusaddons_PORT= devel/kf5-kdbusaddons kde-dbusaddons_LIB= libKF5DBusAddons.so kde-designerplugin_PORT= x11-toolkits/kf5-kdesignerplugin kde-designerplugin_PATH= ${KDE_PREFIX}/bin/kgendesignerplugin kde-designerplugin_TYPE= run kde-dnssd_PORT= dns/kf5-kdnssd kde-dnssd_LIB= libKF5DNSSD.so kde-doctools_PORT= devel/kf5-kdoctools kde-doctools_PATH= ${KDE_PREFIX}/bin/meinproc5 kde-ecm_PORT= devel/kf5-extra-cmake-modules kde-ecm_PATH= ${LOCALBASE}/share/ECM/cmake/ECMConfig.cmake kde-emoticons_PORT= x11-themes/kf5-kemoticons kde-emoticons_LIB= libKF5Emoticons.so kde-filemetadata_PORT= devel/kf5-kfilemetadata kde-filemetadata_LIB= libKF5FileMetaData.so kde-frameworkintegration_PORT= x11/kf5-frameworkintegration kde-frameworkintegration_LIB= libKF5Style.so kde-globalaccel_PORT= x11/kf5-kglobalaccel kde-globalaccel_LIB= libKF5GlobalAccel.so kde-guiaddons_PORT= x11-toolkits/kf5-kguiaddons kde-guiaddons_LIB= libKF5GuiAddons.so kde-holidays_PORT= net/kf5-kholidays kde-holidays_LIB= libKF5Holidays.so kde-i18n_PORT= devel/kf5-ki18n kde-i18n_LIB= libKF5I18n.so kde-iconthemes_PORT= x11-themes/kf5-kiconthemes kde-iconthemes_LIB= libKF5IconThemes.so kde-idletime_PORT= devel/kf5-kidletime kde-idletime_LIB= libKF5IdleTime.so kde-init_PORT= x11/kf5-kinit kde-init_PATH= ${KDE_PREFIX}/bin/kdeinit5 kde-itemmodels_PORT= devel/kf5-kitemmodels kde-itemmodels_LIB= libKF5ItemModels.so kde-itemviews_PORT= x11-toolkits/kf5-kitemviews kde-itemviews_LIB= libKF5ItemViews.so kde-jobwidgets_PORT= x11-toolkits/kf5-kjobwidgets kde-jobwidgets_LIB= libKF5JobWidgets.so kde-js_PORT= www/kf5-kjs kde-js_LIB= libKF5JS.so kde-jsembed_PORT= www/kf5-kjsembed kde-jsembed_LIB= libKF5JsEmbed.so kde-kcmutils_PORT= devel/kf5-kcmutils kde-kcmutils_LIB= libKF5KCMUtils.so kde-kdeclarative_PORT= devel/kf5-kdeclarative kde-kdeclarative_LIB= libKF5Declarative.so kde-kded_PORT= x11/kf5-kded kde-kded_PATH= ${KDE_PREFIX}/bin/kded5 kde-kdelibs4support_PORT= x11/kf5-kdelibs4support kde-kdelibs4support_LIB= libKF5KDELibs4Support.so kde-kdesu_PORT= security/kf5-kdesu kde-kdesu_LIB= libKF5Su.so kde-kdewebkit_PORT= www/kf5-kdewebkit kde-kdewebkit_LIB= libKF5WebKit.so kde-khtml_PORT= www/kf5-khtml kde-khtml_LIB= libKF5KHtml.so kde-kimageformats_PORT= graphics/kf5-kimageformats kde-kimageformats_PATH= ${QT_PLUGINDIR}/imageformats/kimg_xcf.so kde-kimageformats_TYPE= run kde-kio_PORT= devel/kf5-kio kde-kio_LIB= libKF5KIOCore.so kde-kirigami2_PORT= x11-toolkits/kf5-kirigami2 kde-kirigami2_PATH= ${QT_QMLDIR}/org/kde/kirigami.2/libKirigamiPlugin.so kde-kquickcharts_PORT= graphics/kf5-kquickcharts kde-kquickcharts_PATH= ${QT_QMLDIR}/org/kde/quickcharts/libQuickCharts.so kde-kross_PORT= lang/kf5-kross kde-kross_LIB= libKF5KrossCore.so kde-layer-shell-qt_PORT= x11/plasma5-layer-shell-qt kde-layer-shell-qt_LIB= libLayerShellQtInterface.so kde-mediaplayer_PORT= multimedia/kf5-kmediaplayer kde-mediaplayer_LIB= libKF5MediaPlayer.so.5 kde-newstuff_PORT= devel/kf5-knewstuff kde-newstuff_LIB= libKF5NewStuff.so kde-notifications_PORT= devel/kf5-knotifications kde-notifications_LIB= libKF5Notifications.so kde-notifyconfig_PORT= devel/kf5-knotifyconfig kde-notifyconfig_LIB= libKF5NotifyConfig.so kde-oxygen-icons5_PORT= x11-themes/kf5-oxygen-icons5 kde-oxygen-icons5_PATH= ${KDE_PREFIX}/share/icons/oxygen/index.theme kde-oxygen-icons5_TYPE= run kde-package_PORT= devel/kf5-kpackage kde-package_LIB= libKF5Package.so kde-parts_PORT= devel/kf5-kparts kde-parts_LIB= libKF5Parts.so kde-people_PORT= devel/kf5-kpeople kde-people_LIB= libKF5People.so kde-plasma-framework_PORT= x11/kf5-plasma-framework kde-plasma-framework_LIB= libKF5Plasma.so kde-plasma-wayland-protocols_PORT= x11/plasma-wayland-protocols kde-plasma-wayland-protocols_PATH= ${KDE_PREFIX}/lib/cmake/PlasmaWaylandProtocols/PlasmaWaylandProtocolsConfig.cmake kde-plotting_PORT= graphics/kf5-kplotting kde-plotting_LIB= libKF5Plotting.so kde-prison_PORT= graphics/kf5-prison kde-prison_LIB= libKF5Prison.so kde-pty_PORT= devel/kf5-kpty kde-pty_LIB= libKF5Pty.so kde-purpose_PORT= misc/kf5-purpose kde-purpose_LIB= libKF5Purpose.so kde-qqc2-desktop-style_PORT= x11-themes/kf5-qqc2-desktop-style kde-qqc2-desktop-style_PATH= ${QT_PLUGINDIR}/kf5/kirigami/org.kde.desktop.so kde-runner_PORT= x11/kf5-krunner kde-runner_LIB= libKF5Runner.so kde-service_PORT= devel/kf5-kservice kde-service_PATH= ${KDE_PREFIX}/bin/kbuildsycoca5 kde-solid_PORT= devel/kf5-solid kde-solid_LIB= libKF5Solid.so kde-sonnet_PORT= textproc/kf5-sonnet kde-sonnet_LIB= libKF5SonnetCore.so kde-syndication_PORT= net/kf5-syndication kde-syndication_LIB= libKF5Syndication.so kde-syntaxhighlighting_PORT= textproc/kf5-syntax-highlighting kde-syntaxhighlighting_LIB= libKF5SyntaxHighlighting.so kde-texteditor_PORT= devel/kf5-ktexteditor kde-texteditor_LIB= libKF5TextEditor.so kde-textwidgets_PORT= x11-toolkits/kf5-ktextwidgets kde-textwidgets_LIB= libKF5TextWidgets.so kde-threadweaver_PORT= devel/kf5-threadweaver kde-threadweaver_LIB= libKF5ThreadWeaver.so kde-unitconversion_PORT= devel/kf5-kunitconversion kde-unitconversion_LIB= libKF5UnitConversion.so kde-wallet_PORT= sysutils/kf5-kwallet kde-wallet_LIB= libKF5Wallet.so kde-wayland_PORT= x11/kf5-kwayland kde-wayland_LIB= libKF5WaylandClient.so kde-widgetsaddons_PORT= x11-toolkits/kf5-kwidgetsaddons kde-widgetsaddons_LIB= libKF5WidgetsAddons.so kde-windowsystem_PORT= x11/kf5-kwindowsystem kde-windowsystem_LIB= libKF5WindowSystem.so kde-xmlgui_PORT= x11-toolkits/kf5-kxmlgui kde-xmlgui_LIB= libKF5XmlGui.so kde-xmlrpcclient_PORT= net/kf5-kxmlrpcclient kde-xmlrpcclient_LIB= libKF5XmlRpcClient.so + +kde-calendarcore_PORT= net/kf5-kcalendarcore +kde-calendarcore_LIB= libKF5CalendarCore.so + +kde-contacts_PORT= net/kf5-kcontacts +kde-contacts_LIB= libKF5Contacts.so + +kde-kdav_PORT= net/kf5-kdav +kde-kdav_LIB= libKF5DAV.so # ====================== end of frameworks components ========================== # ====================== plasma components ===================================== +kde-kpipewire_PORT= audio/plasma5-kpipewire +kde-kpipewire_LIB= libKPipeWire.so + kde-activitymanagerd_PORT= x11/plasma5-kactivitymanagerd kde-activitymanagerd_LIB= libkactivitymanagerd_plugin.so kde-breeze_PORT= x11-themes/plasma5-breeze kde-breeze_PATH= ${KDE_PREFIX}/share/QtCurve/Breeze.qtcurve kde-breeze-gtk_PORT= x11-themes/plasma5-breeze-gtk kde-breeze-gtk_PATH= ${KDE_PREFIX}/share/themes/Breeze/gtk-2.0/gtkrc kde-decoration_PORT= x11-wm/plasma5-kdecoration kde-decoration_LIB= libkdecorations2.so kde-discover_PORT= sysutils/plasma5-discover kde-discover_PATH= ${KDE_PREFIX}/bin/plasma-discover kde-drkonqi_PORT= sysutils/plasma5-drkonqi kde-drkonqi_PATH= ${KDE_PREFIX}/lib/libexec/drkonqi kde-hotkeys_PORT= devel/plasma5-khotkeys kde-hotkeys_LIB= libkhotkeysprivate.so.5 kde-infocenter_PORT= sysutils/plasma5-kinfocenter kde-infocenter_PATH= ${KDE_PREFIX}/bin/kinfocenter kde-kde-cli-tools_PORT= sysutils/plasma5-kde-cli-tools kde-kde-cli-tools_PATH= ${KDE_PREFIX}/bin/kcmshell5 kde-kde-gtk-config_PORT= x11-themes/plasma5-kde-gtk-config kde-kde-gtk-config_PATH= ${KDE_PREFIX}/lib/kconf_update_bin/gtk_theme kde-kdeplasma-addons_PORT= x11-toolkits/plasma5-kdeplasma-addons kde-kdeplasma-addons_LIB= libplasmapotdprovidercore.so kde-kgamma5_PORT= x11/plasma5-kgamma5 kde-kgamma5_PATH= ${QT_PLUGINDIR}/plasma/kcms/systemsettings/kcm_kgamma.so kde-kmenuedit_PORT= sysutils/plasma5-kmenuedit kde-kmenuedit_PATH= ${KDE_PREFIX}/bin/kmenuedit kde-kscreen_PORT= x11/plasma5-kscreen kde-kscreen_PATH= ${KDE_PREFIX}/bin/kscreen-console kde-kscreenlocker_PORT= security/plasma5-kscreenlocker kde-kscreenlocker_LIB= libKScreenLocker.so kde-ksshaskpass_PORT= security/plasma5-ksshaskpass kde-ksshaskpass_PATH= ${KDE_PREFIX}/bin/ksshaskpass kde-ksysguard_PORT= sysutils/plasma5-ksysguard kde-ksysguard_PATH= ${KDE_PREFIX}/bin/ksysguard kde-ksystemstats_PORT= sysutils/plasma5-ksystemstats kde-ksystemstats_PATH= ${KDE_PREFIX}/bin/ksystemstats kde-kwallet-pam_PORT= security/plasma5-kwallet-pam kde-kwallet-pam_PATH= ${KDE_PREFIX}/lib/pam_kwallet5.so kde-kwayland-integration_PORT= x11/plasma5-kwayland-integration kde-kwayland-integration_PATH= ${QT_PLUGINDIR}/kf5/kwindowsystem/KF5WindowSystemKWaylandPlugin.so kde-kwin_PORT= x11-wm/plasma5-kwin kde-kwin_PATH= ${KDE_PREFIX}/bin/kwin_x11 kde-kwrited_PORT= devel/plasma5-kwrited kde-kwrited_PATH= ${QT_PLUGINDIR}/kf5/kded/kwrited.so kde-libkscreen_PORT= x11/plasma5-libkscreen kde-libkscreen_LIB= libKF5Screen.so kde-libksysguard_PORT= sysutils/plasma5-libksysguard kde-libksysguard_LIB= libksgrd.so kde-milou_PORT= deskutils/plasma5-milou kde-milou_LIB= libmilou.so.5 kde-oxygen_PORT= x11-themes/plasma5-oxygen kde-oxygen_PATH= ${QT_PLUGINDIR}/styles/oxygen.so kde-plasma-browser-integration_PORT= www/plasma5-plasma-browser-integration kde-plasma-browser-integration_PATH= ${KDE_PREFIX}/bin/plasma-browser-integration-host kde-plasma-desktop_PORT= x11/plasma5-plasma-desktop kde-plasma-desktop_PATH= ${KDE_PREFIX}/bin/kaccess kde-plasma-disks_PORT= sysutils/plasma5-plasma-disks kde-plasma-disks_PATH= ${KDE_PREFIX}/lib/libexec/kauth/kded-smart-helper kde-plasma-integration_PORT= x11/plasma5-plasma-integration kde-plasma-integration_PATH= ${QT_PLUGINDIR}/platformthemes/KDEPlasmaPlatformTheme.so kde-plasma-pa_PORT= audio/plasma5-plasma-pa kde-plasma-pa_PATH= ${QT_PLUGINDIR}/plasma/kcms/systemsettings/kcm_pulseaudio.so kde-plasma-sdk_PORT= devel/plasma5-plasma-sdk kde-plasma-sdk_PATH= ${KDE_PREFIX}/bin/plasmoidviewer kde-plasma-workspace_PORT= x11/plasma5-plasma-workspace kde-plasma-workspace_LIB= libkworkspace5.so kde-plasma-workspace-wallpapers_PORT= x11-themes/plasma5-plasma-workspace-wallpapers kde-plasma-workspace-wallpapers_PATH= ${KDE_PREFIX}/share/wallpapers/Autumn/contents/images/1280x1024.jpg kde-polkit-kde-agent-1_PORT= sysutils/plasma5-polkit-kde-agent-1 kde-polkit-kde-agent-1_PATH= ${KDE_PREFIX}/lib/libexec/polkit-kde-authentication-agent-1 kde-powerdevil_PORT= sysutils/plasma5-powerdevil kde-powerdevil_LIB= libpowerdevilcore.so kde-systemsettings_PORT= sysutils/plasma5-systemsettings kde-systemsettings_PATH= ${KDE_PREFIX}/bin/systemsettings5 kde-xdg-desktop-portal-kde_PATH= ${KDE_PREFIX}/lib/libexec/xdg-desktop-portal-kde kde-xdg-desktop-portal-kde_PORT= deskutils/plasma5-xdg-desktop-portal-kde # ====================== end of plasma components ============================== # ====================== pim5 components ======================================= kde-akonadicontacts_PORT= net/akonadi-contacts -kde-akonadicontacts_LIB= libKF5AkonadiContact.so +kde-akonadicontacts_LIB= libKPim5AkonadiContact.so kde-akonadiimportwizard_PORT= deskutils/akonadi-import-wizard -kde-akonadiimportwizard_LIB= libKPimImportWizard.so +kde-akonadiimportwizard_LIB= libKPim5ImportWizard.so kde-akonadimime_PORT= net/akonadi-mime -kde-akonadimime_LIB= libKF5AkonadiMime.so +kde-akonadimime_LIB= libKPim5AkonadiMime.so kde-akonadinotes_PORT= net/akonadi-notes -kde-akonadinotes_LIB= libKF5AkonadiNotes.so +kde-akonadinotes_LIB= libKPim5AkonadiNotes.so kde-akonadicalendar_PORT= net/akonadi-calendar -kde-akonadicalendar_LIB= libKF5AkonadiCalendar.so +kde-akonadicalendar_LIB= libKPim5AkonadiCalendar.so kde-akonadisearch_PORT= net/akonadi-search -kde-akonadisearch_LIB= libKF5AkonadiSearchCore.so +kde-akonadisearch_LIB= libKPim5AkonadiSearchCore.so kde-calendarsupport_PORT= net/calendarsupport -kde-calendarsupport_LIB= libKF5CalendarSupport.so - -kde-calendarcore_PORT= net/kf5-kcalendarcore -kde-calendarcore_LIB= libKF5CalendarCore.so +kde-calendarsupport_LIB= libKPim5CalendarSupport.so kde-calendarutils_PORT= net/kcalutils -kde-calendarutils_LIB= libKF5CalendarUtils.so - -kde-contacts_PORT= net/kf5-kcontacts -kde-contacts_LIB= libKF5Contacts.so +kde-calendarutils_LIB= libKPim5CalendarUtils.so kde-eventviews_PORT= net/eventviews -kde-eventviews_LIB= libKF5EventViews.so +kde-eventviews_LIB= libKPim5EventViews.so kde-gapi_PORT= net/libkgapi -kde-gapi_LIB= libKPimGAPICore.so +kde-gapi_LIB= libKPim5GAPIBlogger.so kde-grantleetheme_PORT= deskutils/grantleetheme -kde-grantleetheme_LIB= libKF5GrantleeTheme.so +kde-grantleetheme_LIB= libKPim5GrantleeTheme.so kde-gravatar_PORT= net/libgravatar -kde-gravatar_LIB= libKF5Gravatar.so +kde-gravatar_LIB= libKPim5Gravatar.so kde-identitymanagement_PORT= net/kidentitymanagement -kde-identitymanagement_LIB= libKF5IdentityManagement.so +kde-identitymanagement_LIB= libKPim5IdentityManagement.so kde-imap_PORT= net/kimap -kde-imap_LIB= libKF5IMAP.so +kde-imap_LIB= libKPim5IMAP.so kde-incidenceeditor_PORT= net/incidenceeditor -kde-incidenceeditor_LIB= libKF5IncidenceEditor.so - -kde-kdav_PORT= net/kf5-kdav -kde-kdav_LIB= libKF5DAV.so +kde-incidenceeditor_LIB= libKPim5IncidenceEditor.so kde-kdepim-addons_PORT= deskutils/kdepim-addons kde-kdepim-addons_PATH= ${QT_PLUGINDIR}/pim5/contacteditor/editorpageplugins/cryptopageplugin.so kde-kdepim-runtime5_PORT= deskutils/kdepim-runtime kde-kdepim-runtime5_PATH= ${KDE_PREFIX}/bin/gidmigrator kde-kitinerary_PORT= net/kitinerary -kde-kitinerary_LIB= libKPimItinerary.so +kde-kitinerary_LIB= libKPim5Itinerary.so kde-kontactinterface_PORT= net/kontactinterface -kde-kontactinterface_LIB= libKF5KontactInterface.so +kde-kontactinterface_LIB= libKPim5KontactInterface.so kde-kpkpass_PORT= security/kpkpass -kde-kpkpass_LIB= libKPimPkPass.so +kde-kpkpass_LIB= libKPim5PkPass.so kde-ksmtp_PORT= net/ksmtp -kde-ksmtp_LIB= libKPimSMTP.so +kde-ksmtp_LIB= libKPim5SMTP.so kde-ldap_PORT= net/kldap -kde-ldap_LIB= libKF5Ldap.so +kde-ldap_LIB= libKPim5Ldap.so kde-libkdepim_PORT= deskutils/libkdepim -kde-libkdepim_LIB= libKF5Libkdepim.so +kde-libkdepim_LIB= libKPim5Libkdepim.so kde-libkleo_PORT= security/libkleo -kde-libkleo_LIB= libKF5Libkleo.so +kde-libkleo_LIB= libKPim5Libkleo.so kde-libksieve_PORT= net/libksieve -kde-libksieve_LIB= libKF5KSieve.so +kde-libksieve_LIB= libKPim5KSieve.so kde-mailcommon_PORT= net/mailcommon -kde-mailcommon_LIB= libKF5MailCommon.so +kde-mailcommon_LIB= libKPim5MailCommon.so kde-mailimporter_PORT= net/mailimporter -kde-mailimporter_LIB= libKF5MailImporter.so +kde-mailimporter_LIB= libKPim5MailImporter.so kde-mailtransport_PORT= net/kmailtransport -kde-mailtransport_LIB= libKF5MailTransport.so +kde-mailtransport_LIB= libKPim5MailTransport.so kde-mbox_PORT= net/kmbox -kde-mbox_LIB= libKF5Mbox.so +kde-mbox_LIB= libKPim5Mbox.so kde-messagelib_PORT= net/messagelib -kde-messagelib_LIB= libKF5MessageList.so +kde-messagelib_LIB= libKPim5MessageList.so kde-mime_PORT= net/kmime -kde-mime_LIB= libKF5Mime.so +kde-mime_LIB= libKPim5Mime.so kde-pimcommon_PORT= net/pimcommon kde-pimcommon_LIB= libKF5PimCommon.so kde-pimtextedit_PORT= net/kpimtextedit -kde-pimtextedit_LIB= libKF5PimTextEdit.so +kde-pimtextedit_LIB= libKPim5TextEdit.so kde-tnef_PORT= net/ktnef -kde-tnef_LIB= libKF5Tnef.so +kde-tnef_LIB= libKPim5Tnef.so + +kde-ktextaddons_PORT= devel/ktextaddons +kde-ktextaddons_LIB= libKF5TextAutoCorrection.so # PIM Applications kde-akonadiconsole_PORT= deskutils/akonadiconsole kde-akonadiconsole_PATH= ${KDE_PREFIX}/bin/akonadiconsole kde-akregator_PORT= deskutils/akregator kde-akregator_PATH= ${KDE_PREFIX}/bin/akregator kde-grantlee-editor_PORT= deskutils/grantlee-editor kde-grantlee-editor_PATH= ${KDE_PREFIX}/bin/contactthemeeditor kde-kaddressbook_PORT= deskutils/kaddressbook kde-kaddressbook_PATH= ${KDE_PREFIX}/bin/kaddressbook kde-kalarm_PORT= deskutils/kalarm kde-kalarm_PATH= ${KDE_PREFIX}/bin/kalarm kde-kmail_PORT= deskutils/kmail kde-kmail_PATH= ${KDE_PREFIX}/bin/kmail kde-kmail-account-wizard_PORT= deskutils/kmail-account-wizard kde-kmail-account-wizard_PATH= ${KDE_PREFIX}/bin/accountwizard kde-knotes_PORT= deskutils/knotes kde-knotex_PATH= ${KDE_PREFIX}/bin/knotes kde-kontact_PORT= deskutils/kontact kde-kontact_PATH= ${KDE_PREFIX}/bin/kontact kde-korganizer_PORT= deskutils/korganizer kde-korganizer_PATH= ${KDE_PREFIX}/bin/korganizer kde-mbox-importer_PORT= deskutils/mbox-importer kde-mbox-importer_PATH= ${KDE_PREFIX}/bin/mboximporter kde-pim-data-exporter_PORT= deskutils/pim-data-exporter kde-pim-data-exporter_PATH= ${KDE_PREFIX}/bin/pimdataexporter # ====================== end of pim5 components ================================ # ====================== multiversion component ================================ kde-akonadi5_PORT= databases/akonadi -kde-akonadi5_LIB= libKF5AkonadiPrivate.so +kde-akonadi5_LIB= libKPim5AkonadiPrivate.so kde-baloo-widgets5_PORT= sysutils/baloo-widgets kde-baloo-widgets5_LIB= libKF5BalooWidgets.so kde-kate5_PORT= editors/kate kde-kate5_PATH= ${QT_PLUGINDIR}/ktexteditor/katebacktracebrowserplugin.so kde-libkcddb5_PORT= audio/libkcddb kde-libkcddb5_LIB= libKF5Cddb.so kde-libkcompactdisc5_PORT= audio/libkcompactdisc kde-libkcompactdisc5_LIB= libKF5CompactDisc.so kde-libkdcraw5_PORT= graphics/libkdcraw kde-libkdcraw5_LIB= libKF5KDcraw.so kde-libkdegames5_PORT= games/libkdegames kde-libkdegames5_LIB= libKF5KDEGames.so kde-libkeduvocdocument5_PORT= misc/libkeduvocdocument kde-libkeduvocdocument5_LIB= libKEduVocDocument.so kde-libkexiv25_PORT= graphics/libkexiv2 kde-libkexiv25_LIB= libKF5KExiv2.so kde-libkipi5_PORT= graphics/libkipi kde-libkipi5_LIB= libKF5Kipi.so kde-libksane5_PORT= graphics/libksane kde-libksane5_LIB= libKF5Sane.so kde-marble5_PORT= astro/marble kde-marble5_LIB= libmarblewidget-qt5.so kde-kpublictransport_PORT= devel/kpublictransport kde-kpublictransport_LIB= libKPublicTransport.so kde-kosm_PORT= astro/kosmindoormap kde-kosm_LIB= libKOSM.so kde-okular5_PORT= graphics/okular kde-okular5_LIB= libOkular5Core.so # ====================== end of multiversion components ======================== # ====================== select the proper multiversion component ============== . for comp in ${_USE_KDE_BOTH} kde-${comp}_PORT= ${kde-${comp}${_KDE_VERSION}_PORT} . if defined(kde-${comp}${_KDE_VERSION}_LIB) kde-${comp}_LIB= ${kde-${comp}${_KDE_VERSION}_LIB} . else . if defined(kde-${comp}${_KDE_VERSION}_PATH}) kde-${comp}_PATH= ${kde-${comp}${_KDE_VERSION}_LIB} . endif # If neither is defined, this gets caught below when checking components . endif . endfor #=============================================================================== # end of component list ######################################################## _USE_KDE_ALL= ${_USE_${_KDE_RELNAME}_ALL} # Iterate through components deprived of suffix. . for component in ${USE_KDE:O:u:C/:.+//} # Check that the component is valid. . if ${_USE_KDE_ALL:M${component}} != "" # Skip meta-components (currently none). . if defined(kde-${component}_PORT) && (defined(kde-${component}_PATH) || defined(kde-${component}_LIB)) # Check if a dependency type is explicitly requested. . if ${USE_KDE:M${component}\:*} != "" && ${USE_KDE:M${component}} == "" kde-${component}_TYPE= # empty . if ${USE_KDE:M${component}\:build} != "" kde-${component}_TYPE+= build . endif . if ${USE_KDE:M${component}\:run} != "" kde-${component}_TYPE+= run . endif . endif # ${USE_KDE:M${component}_*} != "" && ${USE_KDE:M${component}} == "" # If no dependency type is set, default to full dependency. . if !defined(kde-${component}_TYPE) kde-${component}_TYPE= build run . endif # Set real dependencies. . if defined(kde-${component}_LIB) && ${kde-${component}_TYPE:Mbuild} && ${kde-${component}_TYPE:Mrun} LIB_DEPENDS+= ${kde-${component}_LIB}:${kde-${component}_PORT} . else kde-${component}_PATH?= ${KDE_PREFIX}/lib/${kde-${component}_LIB} kde-${component}_DEPENDS= ${kde-${component}_PATH}:${kde-${component}_PORT} . if ${kde-${component}_TYPE:Mbuild} != "" BUILD_DEPENDS+= ${kde-${component}_DEPENDS} . endif . if ${kde-${component}_TYPE:Mrun} != "" RUN_DEPENDS+= ${kde-${component}_DEPENDS} . endif . endif # ${kde-${component}_LIB} && ${kde-${component}_TYPE:Mbuild} && ${kde-${component}_TYPE:Mrun} . endif # defined(kde-${component}_PORT) && defined(kde-${component}_PATH) . else # ! ${_USE_KDE_ALL:M${component}} != "" IGNORE= cannot be installed: unknown USE_KDE component '${component}' . endif # ${_USE_KDE_ALL:M${component}} != "" . endfor . endif .endif diff --git a/accessibility/kmag/distinfo b/accessibility/kmag/distinfo index 0f7a32c04652..a6c769d9c053 100644 --- a/accessibility/kmag/distinfo +++ b/accessibility/kmag/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1677828378 -SHA256 (KDE/release-service/22.12.3/kmag-22.12.3.tar.xz) = db4e4eb52372ee5723e4225553518abbd5a115bdf6ffe6d2e4406fc8227d4652 -SIZE (KDE/release-service/22.12.3/kmag-22.12.3.tar.xz) = 724064 +TIMESTAMP = 1681548296 +SHA256 (KDE/release-service/23.04.0/kmag-23.04.0.tar.xz) = 6fe6d8d119e987c928bff9db92bfec10628c7d38ddbecd5e7c45e5b6d7d1b207 +SIZE (KDE/release-service/23.04.0/kmag-23.04.0.tar.xz) = 724308 diff --git a/accessibility/kmousetool/distinfo b/accessibility/kmousetool/distinfo index c9735eca185b..37dc57a36c5e 100644 --- a/accessibility/kmousetool/distinfo +++ b/accessibility/kmousetool/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1677828380 -SHA256 (KDE/release-service/22.12.3/kmousetool-22.12.3.tar.xz) = da79c4fef4288302d121fd46856d6d38ef226b0b18f62dc165e8b89857c34fc8 -SIZE (KDE/release-service/22.12.3/kmousetool-22.12.3.tar.xz) = 129292 +TIMESTAMP = 1681548297 +SHA256 (KDE/release-service/23.04.0/kmousetool-23.04.0.tar.xz) = cd3d8a1b2412cbf837673f9b36d5174be50cbae91005dc547cf332fa2577a104 +SIZE (KDE/release-service/23.04.0/kmousetool-23.04.0.tar.xz) = 129384 diff --git a/accessibility/kmouth/distinfo b/accessibility/kmouth/distinfo index 31a360255e4e..0bc360740e91 100644 --- a/accessibility/kmouth/distinfo +++ b/accessibility/kmouth/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1677828381 -SHA256 (KDE/release-service/22.12.3/kmouth-22.12.3.tar.xz) = 6905e14fe1622046e788cdab977c36bb360d0d1f906efc0f3868e203321ce0ce -SIZE (KDE/release-service/22.12.3/kmouth-22.12.3.tar.xz) = 2087716 +TIMESTAMP = 1681548295 +SHA256 (KDE/release-service/23.04.0/kmouth-23.04.0.tar.xz) = 2c9696212cca55c4ab00a902df9adc6843a9cf244852b162e7b684d782955d7c +SIZE (KDE/release-service/23.04.0/kmouth-23.04.0.tar.xz) = 2087804 diff --git a/archivers/ark/distinfo b/archivers/ark/distinfo index fe36d864c00f..c24c78e58f56 100644 --- a/archivers/ark/distinfo +++ b/archivers/ark/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1677828188 -SHA256 (KDE/release-service/22.12.3/ark-22.12.3.tar.xz) = 82be97939e263d3d1188271cbefca0ab463f742f85b308b062ce7a9001357c1a -SIZE (KDE/release-service/22.12.3/ark-22.12.3.tar.xz) = 2874976 +TIMESTAMP = 1681548290 +SHA256 (KDE/release-service/23.04.0/ark-23.04.0.tar.xz) = ae6645060a5cc497fc196f695378fa6057e77222fb1874f6b31fafbf5a5330e5 +SIZE (KDE/release-service/23.04.0/ark-23.04.0.tar.xz) = 3010692 diff --git a/archivers/ark/pkg-plist b/archivers/ark/pkg-plist index 17fa7904d57a..b261908fe619 100644 --- a/archivers/ark/pkg-plist +++ b/archivers/ark/pkg-plist @@ -1,118 +1,119 @@ bin/ark etc/xdg/arkrc -man/sr@latin/man1/ark.1.gz lib/libkerfuffle.so.%%KDE_APPLICATIONS_VERSION_SHORT%% lib/libkerfuffle.so.%%KDE_APPLICATIONS_SHLIB_VER%% %%QT_PLUGINDIR%%/kerfuffle/kerfuffle_cli7z.so %%QT_PLUGINDIR%%/kerfuffle/kerfuffle_cliarj.so %%QT_PLUGINDIR%%/kerfuffle/kerfuffle_clirar.so %%QT_PLUGINDIR%%/kerfuffle/kerfuffle_cliunarchiver.so %%QT_PLUGINDIR%%/kerfuffle/kerfuffle_clizip.so %%QT_PLUGINDIR%%/kerfuffle/kerfuffle_libarchive.so %%QT_PLUGINDIR%%/kerfuffle/kerfuffle_libarchive_readonly.so %%ZIP%%%%QT_PLUGINDIR%%/kerfuffle/kerfuffle_libzip.so %%QT_PLUGINDIR%%/kf5/kfileitemaction/compressfileitemaction.so %%QT_PLUGINDIR%%/kf5/kfileitemaction/extractfileitemaction.so %%QT_PLUGINDIR%%/kf5/kio_dnd/extracthere.so %%QT_PLUGINDIR%%/kf5/parts/arkpart.so man/ca/man1/ark.1.gz man/de/man1/ark.1.gz man/es/man1/ark.1.gz man/fr/man1/ark.1.gz man/gl/man1/ark.1.gz man/it/man1/ark.1.gz man/man1/ark.1.gz man/nl/man1/ark.1.gz man/pt/man1/ark.1.gz man/pt_BR/man1/ark.1.gz man/sr/man1/ark.1.gz +man/sr@latin/man1/ark.1.gz man/sv/man1/ark.1.gz man/uk/man1/ark.1.gz share/applications/org.kde.ark.desktop share/config.kcfg/ark.kcfg share/icons/hicolor/128x128/apps/ark.png share/icons/hicolor/48x48/apps/ark.png share/icons/hicolor/64x64/apps/ark.png share/icons/hicolor/scalable/apps/ark.svgz share/kconf_update/ark.upd share/kconf_update/ark_add_hamburgermenu_to_toolbar.sh share/locale/af/LC_MESSAGES/ark.mo share/locale/ar/LC_MESSAGES/ark.mo +share/locale/ast/LC_MESSAGES/ark.mo share/locale/az/LC_MESSAGES/ark.mo share/locale/be/LC_MESSAGES/ark.mo share/locale/bg/LC_MESSAGES/ark.mo share/locale/br/LC_MESSAGES/ark.mo share/locale/bs/LC_MESSAGES/ark.mo share/locale/ca/LC_MESSAGES/ark.mo share/locale/ca@valencia/LC_MESSAGES/ark.mo share/locale/cs/LC_MESSAGES/ark.mo share/locale/cy/LC_MESSAGES/ark.mo share/locale/da/LC_MESSAGES/ark.mo share/locale/de/LC_MESSAGES/ark.mo share/locale/el/LC_MESSAGES/ark.mo share/locale/en_GB/LC_MESSAGES/ark.mo share/locale/eo/LC_MESSAGES/ark.mo share/locale/es/LC_MESSAGES/ark.mo share/locale/et/LC_MESSAGES/ark.mo share/locale/eu/LC_MESSAGES/ark.mo share/locale/fa/LC_MESSAGES/ark.mo share/locale/fi/LC_MESSAGES/ark.mo share/locale/fr/LC_MESSAGES/ark.mo share/locale/ga/LC_MESSAGES/ark.mo share/locale/gl/LC_MESSAGES/ark.mo share/locale/he/LC_MESSAGES/ark.mo share/locale/hi/LC_MESSAGES/ark.mo share/locale/hne/LC_MESSAGES/ark.mo share/locale/hr/LC_MESSAGES/ark.mo share/locale/hu/LC_MESSAGES/ark.mo share/locale/ia/LC_MESSAGES/ark.mo share/locale/id/LC_MESSAGES/ark.mo share/locale/ie/LC_MESSAGES/ark.mo share/locale/is/LC_MESSAGES/ark.mo share/locale/it/LC_MESSAGES/ark.mo share/locale/ja/LC_MESSAGES/ark.mo share/locale/ka/LC_MESSAGES/ark.mo share/locale/kk/LC_MESSAGES/ark.mo share/locale/km/LC_MESSAGES/ark.mo share/locale/ko/LC_MESSAGES/ark.mo share/locale/ku/LC_MESSAGES/ark.mo share/locale/lt/LC_MESSAGES/ark.mo share/locale/lv/LC_MESSAGES/ark.mo share/locale/mk/LC_MESSAGES/ark.mo share/locale/mr/LC_MESSAGES/ark.mo share/locale/ms/LC_MESSAGES/ark.mo share/locale/nb/LC_MESSAGES/ark.mo share/locale/nds/LC_MESSAGES/ark.mo share/locale/ne/LC_MESSAGES/ark.mo share/locale/nl/LC_MESSAGES/ark.mo share/locale/nn/LC_MESSAGES/ark.mo share/locale/oc/LC_MESSAGES/ark.mo share/locale/pa/LC_MESSAGES/ark.mo share/locale/pl/LC_MESSAGES/ark.mo share/locale/pt/LC_MESSAGES/ark.mo share/locale/pt_BR/LC_MESSAGES/ark.mo share/locale/ro/LC_MESSAGES/ark.mo share/locale/ru/LC_MESSAGES/ark.mo share/locale/se/LC_MESSAGES/ark.mo share/locale/sk/LC_MESSAGES/ark.mo share/locale/sl/LC_MESSAGES/ark.mo share/locale/sq/LC_MESSAGES/ark.mo share/locale/sr/LC_MESSAGES/ark.mo share/locale/sr@ijekavian/LC_MESSAGES/ark.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/ark.mo share/locale/sr@latin/LC_MESSAGES/ark.mo share/locale/sv/LC_MESSAGES/ark.mo share/locale/ta/LC_MESSAGES/ark.mo share/locale/tg/LC_MESSAGES/ark.mo share/locale/th/LC_MESSAGES/ark.mo share/locale/tr/LC_MESSAGES/ark.mo share/locale/ug/LC_MESSAGES/ark.mo share/locale/uk/LC_MESSAGES/ark.mo share/locale/uz/LC_MESSAGES/ark.mo share/locale/uz@cyrillic/LC_MESSAGES/ark.mo share/locale/xh/LC_MESSAGES/ark.mo share/locale/zh_CN/LC_MESSAGES/ark.mo share/locale/zh_HK/LC_MESSAGES/ark.mo share/locale/zh_TW/LC_MESSAGES/ark.mo share/metainfo/org.kde.ark.appdata.xml share/qlogging-categories5/ark.categories diff --git a/astro/kosmindoormap/distinfo b/astro/kosmindoormap/distinfo index c3f6e0a877de..fbbb2ba056b9 100644 --- a/astro/kosmindoormap/distinfo +++ b/astro/kosmindoormap/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1677828357 -SHA256 (KDE/release-service/22.12.3/kosmindoormap-22.12.3.tar.xz) = f7af4b27f801e40035cb99e1263f85268e231c3afc9aaeb52339e41cc9f54cd4 -SIZE (KDE/release-service/22.12.3/kosmindoormap-22.12.3.tar.xz) = 363564 +TIMESTAMP = 1681548314 +SHA256 (KDE/release-service/23.04.0/kosmindoormap-23.04.0.tar.xz) = 6e053f4fa06e3f3c2b045a394fe55476a412c0cd1fa688b0e9d664a94325b1b4 +SIZE (KDE/release-service/23.04.0/kosmindoormap-23.04.0.tar.xz) = 374760 diff --git a/astro/marble/distinfo b/astro/marble/distinfo index 1af6bc036c07..255367b9f6a2 100644 --- a/astro/marble/distinfo +++ b/astro/marble/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1677828356 -SHA256 (KDE/release-service/22.12.3/marble-22.12.3.tar.xz) = 88511d31b17bcbc389c7aabbf0ca64bfa01239c0d5763f2877c8c75837968d71 -SIZE (KDE/release-service/22.12.3/marble-22.12.3.tar.xz) = 53752524 +TIMESTAMP = 1681548316 +SHA256 (KDE/release-service/23.04.0/marble-23.04.0.tar.xz) = 195f7d921c16f494e2d1df4073bf45cd97044f207fc2db3181caeb838277ae54 +SIZE (KDE/release-service/23.04.0/marble-23.04.0.tar.xz) = 53761616 diff --git a/astro/marble/pkg-plist b/astro/marble/pkg-plist index 81891de4782d..1185466a5352 100644 --- a/astro/marble/pkg-plist +++ b/astro/marble/pkg-plist @@ -1,1816 +1,1817 @@ bin/marble bin/marble-qt include/astro/astr2lib.h include/astro/astro_version.h include/astro/astrolib.h include/astro/astrolib_export.h include/astro/attlib.h include/astro/eclsolar.h include/astro/planetarySats.h include/astro/solarsystem.h include/marble/AbstractDataPlugin.h include/marble/AbstractDataPluginItem.h include/marble/AbstractDataPluginModel.h include/marble/AbstractFloatItem.h include/marble/AbstractMarbleGraphicsLayout.h include/marble/AbstractProjection.h include/marble/AbstractWorkerThread.h include/marble/AddLinkDialog.h include/marble/AlternativeRoutesModel.h include/marble/AutoNavigation.h include/marble/BillboardGraphicsItem.h include/marble/BookmarkManager.h include/marble/CelestialSortFilterProxyModel.h include/marble/ClipPainter.h include/marble/CurrentLocationWidget.h include/marble/DialogConfigurationInterface.h include/marble/DownloadRegion.h include/marble/DownloadRegionDialog.h include/marble/EditPlacemarkDialog.h include/marble/ElevationModel.h include/marble/FileManager.h include/marble/FileViewWidget.h include/marble/FlyToEditWidget.h include/marble/FormattedTextWidget.h include/marble/FrameGraphicsItem.h include/marble/GeoDataAbstractView.h include/marble/GeoDataAccuracy.h include/marble/GeoDataBalloonStyle.h include/marble/GeoDataColorStyle.h include/marble/GeoDataContainer.h include/marble/GeoDataCoordinates.h include/marble/GeoDataDocument.h include/marble/GeoDataFeature.h include/marble/GeoDataFolder.h include/marble/GeoDataGeometry.h include/marble/GeoDataGroundOverlay.h include/marble/GeoDataHotSpot.h include/marble/GeoDataIconStyle.h include/marble/GeoDataItemIcon.h include/marble/GeoDataLabelStyle.h include/marble/GeoDataLatLonAltBox.h include/marble/GeoDataLatLonBox.h include/marble/GeoDataLatLonQuad.h include/marble/GeoDataLineString.h include/marble/GeoDataLineStyle.h include/marble/GeoDataLinearRing.h include/marble/GeoDataListStyle.h include/marble/GeoDataLod.h include/marble/GeoDataLookAt.h include/marble/GeoDataMultiGeometry.h include/marble/GeoDataObject.h include/marble/GeoDataOverlay.h include/marble/GeoDataPlacemark.h include/marble/GeoDataPoint.h include/marble/GeoDataPolyStyle.h include/marble/GeoDataPolygon.h include/marble/GeoDataRegion.h include/marble/GeoDataRelation.h include/marble/GeoDataSnippet.h include/marble/GeoDataStyle.h include/marble/GeoDataStyleMap.h include/marble/GeoDataStyleSelector.h include/marble/GeoDataTimePrimitive.h include/marble/GeoDataTimeSpan.h include/marble/GeoDataTimeStamp.h include/marble/GeoDataTrack.h include/marble/GeoDataTreeModel.h include/marble/GeoDataTypes.h include/marble/GeoDocument.h include/marble/GeoGraphicsItem.h include/marble/GeoGraphicsScene.h include/marble/GeoPainter.h include/marble/GeoWriter.h include/marble/HttpDownloadManager.h include/marble/LabelGraphicsItem.h include/marble/LatLonBoxWidget.h include/marble/LatLonEdit.h include/marble/LayerInterface.h include/marble/LegendWidget.h include/marble/Maneuver.h include/marble/MapThemeDownloadDialog.h include/marble/MapThemeManager.h include/marble/MapViewItemDelegate.h include/marble/MapViewWidget.h include/marble/MapWizard.h include/marble/MarbleAboutDialog.h include/marble/MarbleColors.h include/marble/MarbleDebug.h include/marble/MarbleDeclarativePlugin.h include/marble/MarbleDirs.h include/marble/MarbleGlobal.h include/marble/MarbleGraphicsGridLayout.h include/marble/MarbleGraphicsItem.h include/marble/MarbleInputHandler.h include/marble/MarbleLocale.h include/marble/MarbleMap.h include/marble/MarbleMath.h include/marble/MarbleModel.h include/marble/MarbleNavigator.h %%WEBENGINE%%include/marble/MarbleWebView.h include/marble/MarbleWidget.h include/marble/MarbleWidgetInputHandler.h include/marble/MarbleWidgetPopupMenu.h %%NO_WEBENGINE%%include/marble/NullMarbleWebView.h %%NO_WEBENGINE%%include/marble/NullTinyWebBrowser.h include/marble/OsmcSymbol.h include/marble/ParseRunnerPlugin.h include/marble/ParsingRunner.h include/marble/ParsingRunnerManager.h include/marble/PlacemarkEditHeader.h include/marble/Planet.h include/marble/PlanetFactory.h include/marble/PluginAboutDialog.h include/marble/PluginInterface.h include/marble/PluginManager.h include/marble/PositionProviderPlugin.h include/marble/PositionProviderPluginInterface.h include/marble/PositionTracking.h include/marble/QtMarbleConfigDialog.h include/marble/Quaternion.h include/marble/RemoveItemEditWidget.h include/marble/RenderPlugin.h include/marble/RenderPluginInterface.h include/marble/RenderState.h include/marble/ReverseGeocodingRunner.h include/marble/ReverseGeocodingRunnerManager.h include/marble/ReverseGeocodingRunnerPlugin.h include/marble/Route.h include/marble/RouteRequest.h include/marble/RouteSegment.h include/marble/RoutingManager.h include/marble/RoutingModel.h include/marble/RoutingProfile.h include/marble/RoutingRunner.h include/marble/RoutingRunnerManager.h include/marble/RoutingRunnerPlugin.h include/marble/RoutingWidget.h include/marble/ScreenGraphicsItem.h include/marble/SearchRunner.h include/marble/SearchRunnerManager.h include/marble/SearchRunnerPlugin.h include/marble/Serializable.h include/marble/SoundCueEditWidget.h include/marble/SunLocator.h include/marble/TileCoordsPyramid.h include/marble/TileCreator.h include/marble/TileCreatorDialog.h include/marble/TileId.h include/marble/TileLevelRangeWidget.h %%WEBENGINE%%include/marble/TinyWebBrowser.h include/marble/TourControlEditWidget.h include/marble/TourItemDelegate.h include/marble/TourPlayback.h include/marble/TourWidget.h include/marble/ViewportParams.h include/marble/WaitEditWidget.h include/marble/WidgetGraphicsItem.h include/marble/geodata_export.h include/marble/marble_declarative_export.h include/marble/marble_export.h include/marble/marble_version.h lib/cmake/Astro/AstroConfig.cmake lib/cmake/Astro/AstroConfigVersion.cmake lib/cmake/Astro/AstroTargets-%%CMAKE_BUILD_TYPE%%.cmake lib/cmake/Astro/AstroTargets.cmake lib/cmake/Marble/MarbleConfig.cmake lib/cmake/Marble/MarbleConfigVersion.cmake lib/cmake/Marble/MarbleTargets-%%CMAKE_BUILD_TYPE%%.cmake lib/cmake/Marble/MarbleTargets.cmake lib/libastro.so lib/libastro.so.1 lib/libastro.so.%%KDE_APPLICATIONS_SHLIB_VER%% lib/libmarbledeclarative.so lib/libmarblewidget-qt5.so lib/libmarblewidget-qt5.so.%%KDE_APPLICATIONS_SHLIB_VER%% lib/libmarblewidget-qt5.so.28 lib/marble/plugins/AnnotatePlugin.so lib/marble/plugins/AprsPlugin.so lib/marble/plugins/AtmospherePlugin.so lib/marble/plugins/CachePlugin.so lib/marble/plugins/CompassFloatItem.so lib/marble/plugins/CrosshairsPlugin.so lib/marble/plugins/CycleStreetsPlugin.so lib/marble/plugins/EarthquakePlugin.so lib/marble/plugins/EclipsesPlugin.so lib/marble/plugins/ElevationProfileFloatItem.so lib/marble/plugins/ElevationProfileMarker.so lib/marble/plugins/FlightGearPositionProviderPlugin.so lib/marble/plugins/FoursquarePlugin.so lib/marble/plugins/GeoUriPlugin.so lib/marble/plugins/GosmoreReverseGeocodingPlugin.so lib/marble/plugins/GosmoreRoutingPlugin.so lib/marble/plugins/GpsInfo.so lib/marble/plugins/GpsbabelPlugin.so %%GPS%%lib/marble/plugins/GpsdPositionProviderPlugin.so lib/marble/plugins/GpxPlugin.so lib/marble/plugins/GraticulePlugin.so lib/marble/plugins/HostipPlugin.so lib/marble/plugins/JsonPlugin.so lib/marble/plugins/KmlPlugin.so lib/marble/plugins/LatLonPlugin.so lib/marble/plugins/License.so lib/marble/plugins/LocalDatabasePlugin.so lib/marble/plugins/LocalOsmSearchPlugin.so lib/marble/plugins/LogPlugin.so lib/marble/plugins/MapQuestPlugin.so lib/marble/plugins/MapScaleFloatItem.so lib/marble/plugins/MeasureTool.so lib/marble/plugins/MonavPlugin.so lib/marble/plugins/NavigationFloatItem.so lib/marble/plugins/NominatimReverseGeocodingPlugin.so lib/marble/plugins/NominatimSearchPlugin.so lib/marble/plugins/NotesPlugin.so lib/marble/plugins/OSRMPlugin.so %%WEBENGINE%%lib/marble/plugins/OpenDesktopPlugin.so lib/marble/plugins/OpenLocationCodeSearchPlugin.so lib/marble/plugins/OpenRouteServicePlugin.so lib/marble/plugins/OsmPlugin.so lib/marble/plugins/OverviewMap.so %%WEBENGINE%%lib/marble/plugins/Photo.so lib/marble/plugins/Pn2Plugin.so lib/marble/plugins/PntPlugin.so lib/marble/plugins/PositionMarker.so lib/marble/plugins/PostalCode.so lib/marble/plugins/ProgressFloatItem.so %%GPS%%lib/marble/plugins/QtPositioningPositionProviderPlugin.so lib/marble/plugins/RoutingPlugin.so lib/marble/plugins/RoutinoPlugin.so lib/marble/plugins/SatellitesPlugin.so lib/marble/plugins/Speedometer.so lib/marble/plugins/StarsPlugin.so lib/marble/plugins/SunPlugin.so %%WEBENGINE%%lib/marble/plugins/Weather.so %%WEBENGINE%%lib/marble/plugins/Wikipedia.so lib/marble/plugins/YoursPlugin.so lib/plugins/designer/LatLonEditPlugin.so lib/plugins/designer/MarbleNavigatorPlugin.so lib/plugins/designer/MarbleWidgetPlugin.so %%QT_MKSPECDIR%%/modules/qt_Marble.pri %%QT_PLUGINDIR%%/kf5/krunner/plasma_runner_marble.so %%QT_PLUGINDIR%%/libmarble_part.so %%QT_PLUGINDIR%%/marblethumbnail.so %%QT_QMLDIR%%/org/kde/marble/private/plasma/libmarblequick.so %%QT_QMLDIR%%/org/kde/marble/private/plasma/qmldir share/applications/marble_geo.desktop share/applications/marble_geojson.desktop share/applications/marble_gpx.desktop share/applications/marble_kml.desktop share/applications/marble_kmz.desktop share/applications/marble_worldwind.desktop share/applications/org.kde.marble-qt.desktop share/applications/org.kde.marble.desktop share/config.kcfg/marble.kcfg share/icons/hicolor/128x128/apps/marble.png share/icons/hicolor/16x16/apps/marble.png share/icons/hicolor/22x22/apps/marble.png share/icons/hicolor/32x32/apps/marble.png share/icons/hicolor/48x48/apps/marble.png share/icons/hicolor/64x64/apps/marble.png -share/knsrcfiles/marble.knsrc share/kservices5/marble_part.desktop share/kservices5/marble_thumbnail_geojson.desktop share/kservices5/marble_thumbnail_gpx.desktop share/kservices5/marble_thumbnail_kml.desktop share/kservices5/marble_thumbnail_kmz.desktop share/kservices5/marble_thumbnail_osm.desktop share/kservices5/plasma-applet-org.kde.plasma.worldclock.desktop share/kservices5/plasma-wallpaper-org.kde.plasma.worldmap.desktop share/kxmlgui5/marble/marble_part.rc share/kxmlgui5/marble/marbleui.rc share/locale/ar/LC_MESSAGES/marble.mo share/locale/ar/LC_MESSAGES/marble_qt.qm share/locale/ar/LC_MESSAGES/plasma_applet_org.kde.plasma.worldclock.mo share/locale/ar/LC_MESSAGES/plasma_runner_marble.mo share/locale/ar/LC_MESSAGES/plasma_wallpaper_org.kde.plasma.worldmap.mo share/locale/be/LC_MESSAGES/marble.mo share/locale/be/LC_MESSAGES/marble_qt.qm share/locale/bg/LC_MESSAGES/marble.mo share/locale/bg/LC_MESSAGES/marble_qt.qm share/locale/bg/LC_MESSAGES/plasma_applet_org.kde.plasma.worldclock.mo share/locale/bg/LC_MESSAGES/plasma_runner_marble.mo share/locale/bg/LC_MESSAGES/plasma_wallpaper_org.kde.plasma.worldmap.mo share/locale/bs/LC_MESSAGES/marble.mo share/locale/bs/LC_MESSAGES/marble_qt.qm share/locale/bs/LC_MESSAGES/plasma_runner_marble.mo share/locale/ca/LC_MESSAGES/marble.mo share/locale/ca/LC_MESSAGES/marble_qt.qm share/locale/ca/LC_MESSAGES/plasma_applet_org.kde.plasma.worldclock.mo share/locale/ca/LC_MESSAGES/plasma_runner_marble.mo share/locale/ca/LC_MESSAGES/plasma_wallpaper_org.kde.plasma.worldmap.mo share/locale/ca@valencia/LC_MESSAGES/marble.mo share/locale/ca@valencia/LC_MESSAGES/marble_qt.qm share/locale/ca@valencia/LC_MESSAGES/plasma_applet_org.kde.plasma.worldclock.mo share/locale/ca@valencia/LC_MESSAGES/plasma_runner_marble.mo share/locale/ca@valencia/LC_MESSAGES/plasma_wallpaper_org.kde.plasma.worldmap.mo share/locale/cs/LC_MESSAGES/marble.mo share/locale/cs/LC_MESSAGES/marble_qt.qm share/locale/cs/LC_MESSAGES/plasma_applet_org.kde.plasma.worldclock.mo share/locale/cs/LC_MESSAGES/plasma_runner_marble.mo share/locale/cs/LC_MESSAGES/plasma_wallpaper_org.kde.plasma.worldmap.mo share/locale/da/LC_MESSAGES/marble.mo share/locale/da/LC_MESSAGES/marble_qt.qm share/locale/da/LC_MESSAGES/plasma_applet_org.kde.plasma.worldclock.mo share/locale/da/LC_MESSAGES/plasma_runner_marble.mo share/locale/da/LC_MESSAGES/plasma_wallpaper_org.kde.plasma.worldmap.mo share/locale/de/LC_MESSAGES/marble.mo share/locale/de/LC_MESSAGES/marble_qt.qm share/locale/de/LC_MESSAGES/plasma_applet_org.kde.plasma.worldclock.mo share/locale/de/LC_MESSAGES/plasma_runner_marble.mo share/locale/de/LC_MESSAGES/plasma_wallpaper_org.kde.plasma.worldmap.mo share/locale/el/LC_MESSAGES/marble.mo share/locale/el/LC_MESSAGES/marble_qt.qm share/locale/el/LC_MESSAGES/plasma_applet_org.kde.plasma.worldclock.mo share/locale/el/LC_MESSAGES/plasma_runner_marble.mo share/locale/el/LC_MESSAGES/plasma_wallpaper_org.kde.plasma.worldmap.mo share/locale/en/LC_MESSAGES/marble_qt.qm share/locale/en_GB/LC_MESSAGES/marble.mo share/locale/en_GB/LC_MESSAGES/marble_qt.qm share/locale/en_GB/LC_MESSAGES/plasma_applet_org.kde.plasma.worldclock.mo share/locale/en_GB/LC_MESSAGES/plasma_runner_marble.mo share/locale/en_GB/LC_MESSAGES/plasma_wallpaper_org.kde.plasma.worldmap.mo share/locale/eo/LC_MESSAGES/marble.mo share/locale/eo/LC_MESSAGES/marble_qt.qm +share/locale/eo/LC_MESSAGES/plasma_applet_org.kde.plasma.worldclock.mo share/locale/eo/LC_MESSAGES/plasma_runner_marble.mo +share/locale/eo/LC_MESSAGES/plasma_wallpaper_org.kde.plasma.worldmap.mo share/locale/es/LC_MESSAGES/marble.mo share/locale/es/LC_MESSAGES/marble_qt.qm share/locale/es/LC_MESSAGES/plasma_applet_org.kde.plasma.worldclock.mo share/locale/es/LC_MESSAGES/plasma_runner_marble.mo share/locale/es/LC_MESSAGES/plasma_wallpaper_org.kde.plasma.worldmap.mo share/locale/et/LC_MESSAGES/marble.mo share/locale/et/LC_MESSAGES/marble_qt.qm share/locale/et/LC_MESSAGES/plasma_applet_org.kde.plasma.worldclock.mo share/locale/et/LC_MESSAGES/plasma_runner_marble.mo share/locale/et/LC_MESSAGES/plasma_wallpaper_org.kde.plasma.worldmap.mo share/locale/eu/LC_MESSAGES/marble.mo share/locale/eu/LC_MESSAGES/marble_qt.qm share/locale/eu/LC_MESSAGES/plasma_applet_org.kde.plasma.worldclock.mo share/locale/eu/LC_MESSAGES/plasma_runner_marble.mo share/locale/eu/LC_MESSAGES/plasma_wallpaper_org.kde.plasma.worldmap.mo share/locale/fi/LC_MESSAGES/marble.mo share/locale/fi/LC_MESSAGES/marble_qt.qm share/locale/fi/LC_MESSAGES/plasma_applet_org.kde.plasma.worldclock.mo share/locale/fi/LC_MESSAGES/plasma_runner_marble.mo share/locale/fi/LC_MESSAGES/plasma_wallpaper_org.kde.plasma.worldmap.mo share/locale/fr/LC_MESSAGES/marble.mo share/locale/fr/LC_MESSAGES/marble_qt.qm share/locale/fr/LC_MESSAGES/plasma_applet_org.kde.plasma.worldclock.mo share/locale/fr/LC_MESSAGES/plasma_runner_marble.mo share/locale/fr/LC_MESSAGES/plasma_wallpaper_org.kde.plasma.worldmap.mo share/locale/ga/LC_MESSAGES/marble.mo share/locale/ga/LC_MESSAGES/marble_qt.qm share/locale/ga/LC_MESSAGES/plasma_runner_marble.mo share/locale/gl/LC_MESSAGES/marble.mo share/locale/gl/LC_MESSAGES/marble_qt.qm share/locale/gl/LC_MESSAGES/plasma_applet_org.kde.plasma.worldclock.mo share/locale/gl/LC_MESSAGES/plasma_runner_marble.mo share/locale/gl/LC_MESSAGES/plasma_wallpaper_org.kde.plasma.worldmap.mo share/locale/gu/LC_MESSAGES/marble.mo share/locale/gu/LC_MESSAGES/marble_qt.qm share/locale/he/LC_MESSAGES/marble.mo share/locale/he/LC_MESSAGES/marble_qt.qm share/locale/hi/LC_MESSAGES/marble.mo share/locale/hi/LC_MESSAGES/marble_qt.qm share/locale/hne/LC_MESSAGES/marble.mo share/locale/hr/LC_MESSAGES/marble.mo share/locale/hr/LC_MESSAGES/marble_qt.qm share/locale/hu/LC_MESSAGES/marble.mo share/locale/hu/LC_MESSAGES/marble_qt.qm share/locale/hu/LC_MESSAGES/plasma_runner_marble.mo share/locale/id/LC_MESSAGES/marble.mo share/locale/id/LC_MESSAGES/marble_qt.qm share/locale/id/LC_MESSAGES/plasma_applet_org.kde.plasma.worldclock.mo share/locale/id/LC_MESSAGES/plasma_runner_marble.mo share/locale/id/LC_MESSAGES/plasma_wallpaper_org.kde.plasma.worldmap.mo share/locale/is/LC_MESSAGES/marble.mo share/locale/is/LC_MESSAGES/marble_qt.qm share/locale/is/LC_MESSAGES/plasma_applet_org.kde.plasma.worldclock.mo share/locale/is/LC_MESSAGES/plasma_runner_marble.mo share/locale/is/LC_MESSAGES/plasma_wallpaper_org.kde.plasma.worldmap.mo share/locale/it/LC_MESSAGES/marble.mo share/locale/it/LC_MESSAGES/marble_qt.qm share/locale/it/LC_MESSAGES/plasma_applet_org.kde.plasma.worldclock.mo share/locale/it/LC_MESSAGES/plasma_runner_marble.mo share/locale/it/LC_MESSAGES/plasma_wallpaper_org.kde.plasma.worldmap.mo share/locale/ja/LC_MESSAGES/marble.mo share/locale/ja/LC_MESSAGES/marble_qt.qm share/locale/ja/LC_MESSAGES/plasma_applet_org.kde.plasma.worldclock.mo share/locale/ja/LC_MESSAGES/plasma_runner_marble.mo share/locale/ja/LC_MESSAGES/plasma_wallpaper_org.kde.plasma.worldmap.mo share/locale/ka/LC_MESSAGES/marble.mo share/locale/ka/LC_MESSAGES/marble_qt.qm share/locale/ka/LC_MESSAGES/plasma_applet_org.kde.plasma.worldclock.mo share/locale/ka/LC_MESSAGES/plasma_runner_marble.mo share/locale/ka/LC_MESSAGES/plasma_wallpaper_org.kde.plasma.worldmap.mo share/locale/kk/LC_MESSAGES/marble.mo share/locale/kk/LC_MESSAGES/marble_qt.qm share/locale/kk/LC_MESSAGES/plasma_runner_marble.mo share/locale/km/LC_MESSAGES/marble.mo share/locale/km/LC_MESSAGES/marble_qt.qm share/locale/ko/LC_MESSAGES/marble.mo share/locale/ko/LC_MESSAGES/marble_qt.qm share/locale/ko/LC_MESSAGES/plasma_applet_org.kde.plasma.worldclock.mo share/locale/ko/LC_MESSAGES/plasma_runner_marble.mo share/locale/ko/LC_MESSAGES/plasma_wallpaper_org.kde.plasma.worldmap.mo share/locale/lt/LC_MESSAGES/marble.mo share/locale/lt/LC_MESSAGES/marble_qt.qm share/locale/lt/LC_MESSAGES/plasma_applet_org.kde.plasma.worldclock.mo share/locale/lt/LC_MESSAGES/plasma_runner_marble.mo share/locale/lt/LC_MESSAGES/plasma_wallpaper_org.kde.plasma.worldmap.mo share/locale/lv/LC_MESSAGES/marble.mo share/locale/lv/LC_MESSAGES/marble_qt.qm share/locale/lv/LC_MESSAGES/plasma_runner_marble.mo share/locale/mai/LC_MESSAGES/marble.mo share/locale/ml/LC_MESSAGES/marble.mo share/locale/ml/LC_MESSAGES/marble_qt.qm share/locale/ml/LC_MESSAGES/plasma_applet_org.kde.plasma.worldclock.mo share/locale/ml/LC_MESSAGES/plasma_runner_marble.mo share/locale/ml/LC_MESSAGES/plasma_wallpaper_org.kde.plasma.worldmap.mo share/locale/mr/LC_MESSAGES/marble.mo share/locale/mr/LC_MESSAGES/marble_qt.qm share/locale/mr/LC_MESSAGES/plasma_runner_marble.mo share/locale/nb/LC_MESSAGES/marble.mo share/locale/nb/LC_MESSAGES/marble_qt.qm share/locale/nb/LC_MESSAGES/plasma_runner_marble.mo share/locale/nds/LC_MESSAGES/marble.mo share/locale/nds/LC_MESSAGES/marble_qt.qm share/locale/nds/LC_MESSAGES/plasma_runner_marble.mo share/locale/nl/LC_MESSAGES/marble.mo share/locale/nl/LC_MESSAGES/marble_qt.qm share/locale/nl/LC_MESSAGES/plasma_applet_org.kde.plasma.worldclock.mo share/locale/nl/LC_MESSAGES/plasma_runner_marble.mo share/locale/nl/LC_MESSAGES/plasma_wallpaper_org.kde.plasma.worldmap.mo share/locale/nn/LC_MESSAGES/marble.mo share/locale/nn/LC_MESSAGES/marble_qt.qm share/locale/nn/LC_MESSAGES/plasma_applet_org.kde.plasma.worldclock.mo share/locale/nn/LC_MESSAGES/plasma_runner_marble.mo share/locale/nn/LC_MESSAGES/plasma_wallpaper_org.kde.plasma.worldmap.mo share/locale/oc/LC_MESSAGES/marble.mo share/locale/oc/LC_MESSAGES/marble_qt.qm share/locale/pa/LC_MESSAGES/marble.mo share/locale/pa/LC_MESSAGES/marble_qt.qm share/locale/pa/LC_MESSAGES/plasma_runner_marble.mo share/locale/pl/LC_MESSAGES/marble.mo share/locale/pl/LC_MESSAGES/marble_qt.qm share/locale/pl/LC_MESSAGES/plasma_applet_org.kde.plasma.worldclock.mo share/locale/pl/LC_MESSAGES/plasma_runner_marble.mo share/locale/pl/LC_MESSAGES/plasma_wallpaper_org.kde.plasma.worldmap.mo share/locale/pt/LC_MESSAGES/marble.mo share/locale/pt/LC_MESSAGES/marble_qt.qm share/locale/pt/LC_MESSAGES/plasma_applet_org.kde.plasma.worldclock.mo share/locale/pt/LC_MESSAGES/plasma_runner_marble.mo share/locale/pt/LC_MESSAGES/plasma_wallpaper_org.kde.plasma.worldmap.mo share/locale/pt_BR/LC_MESSAGES/marble.mo share/locale/pt_BR/LC_MESSAGES/marble_qt.qm share/locale/pt_BR/LC_MESSAGES/plasma_applet_org.kde.plasma.worldclock.mo share/locale/pt_BR/LC_MESSAGES/plasma_runner_marble.mo share/locale/pt_BR/LC_MESSAGES/plasma_wallpaper_org.kde.plasma.worldmap.mo share/locale/ro/LC_MESSAGES/marble.mo share/locale/ro/LC_MESSAGES/marble_qt.qm share/locale/ro/LC_MESSAGES/plasma_applet_org.kde.plasma.worldclock.mo share/locale/ru/LC_MESSAGES/marble.mo share/locale/ru/LC_MESSAGES/marble_qt.qm share/locale/ru/LC_MESSAGES/plasma_applet_org.kde.plasma.worldclock.mo share/locale/ru/LC_MESSAGES/plasma_runner_marble.mo share/locale/ru/LC_MESSAGES/plasma_wallpaper_org.kde.plasma.worldmap.mo share/locale/se/LC_MESSAGES/marble.mo share/locale/se/LC_MESSAGES/marble_qt.qm share/locale/si/LC_MESSAGES/marble.mo share/locale/si/LC_MESSAGES/marble_qt.qm share/locale/sk/LC_MESSAGES/marble.mo share/locale/sk/LC_MESSAGES/marble_qt.qm share/locale/sk/LC_MESSAGES/plasma_applet_org.kde.plasma.worldclock.mo share/locale/sk/LC_MESSAGES/plasma_runner_marble.mo share/locale/sk/LC_MESSAGES/plasma_wallpaper_org.kde.plasma.worldmap.mo share/locale/sl/LC_MESSAGES/marble.mo share/locale/sl/LC_MESSAGES/marble_qt.qm share/locale/sl/LC_MESSAGES/plasma_applet_org.kde.plasma.worldclock.mo share/locale/sl/LC_MESSAGES/plasma_runner_marble.mo share/locale/sl/LC_MESSAGES/plasma_wallpaper_org.kde.plasma.worldmap.mo share/locale/sv/LC_MESSAGES/marble.mo share/locale/sv/LC_MESSAGES/marble_qt.qm share/locale/sv/LC_MESSAGES/plasma_applet_org.kde.plasma.worldclock.mo share/locale/sv/LC_MESSAGES/plasma_runner_marble.mo share/locale/sv/LC_MESSAGES/plasma_wallpaper_org.kde.plasma.worldmap.mo share/locale/th/LC_MESSAGES/marble.mo share/locale/tr/LC_MESSAGES/marble.mo share/locale/tr/LC_MESSAGES/marble_qt.qm share/locale/tr/LC_MESSAGES/plasma_applet_org.kde.plasma.worldclock.mo share/locale/tr/LC_MESSAGES/plasma_runner_marble.mo share/locale/tr/LC_MESSAGES/plasma_wallpaper_org.kde.plasma.worldmap.mo share/locale/ug/LC_MESSAGES/marble.mo share/locale/ug/LC_MESSAGES/marble_qt.qm share/locale/ug/LC_MESSAGES/plasma_runner_marble.mo share/locale/uk/LC_MESSAGES/marble.mo share/locale/uk/LC_MESSAGES/marble_qt.qm share/locale/uk/LC_MESSAGES/plasma_applet_org.kde.plasma.worldclock.mo share/locale/uk/LC_MESSAGES/plasma_runner_marble.mo share/locale/uk/LC_MESSAGES/plasma_wallpaper_org.kde.plasma.worldmap.mo share/locale/wa/LC_MESSAGES/marble.mo share/locale/wa/LC_MESSAGES/marble_qt.qm share/locale/zh_CN/LC_MESSAGES/marble.mo share/locale/zh_CN/LC_MESSAGES/marble_qt.qm share/locale/zh_CN/LC_MESSAGES/plasma_applet_org.kde.plasma.worldclock.mo share/locale/zh_CN/LC_MESSAGES/plasma_runner_marble.mo share/locale/zh_CN/LC_MESSAGES/plasma_wallpaper_org.kde.plasma.worldmap.mo share/locale/zh_TW/LC_MESSAGES/marble.mo share/locale/zh_TW/LC_MESSAGES/marble_qt.qm share/locale/zh_TW/LC_MESSAGES/plasma_applet_org.kde.plasma.worldclock.mo share/locale/zh_TW/LC_MESSAGES/plasma_runner_marble.mo share/locale/zh_TW/LC_MESSAGES/plasma_wallpaper_org.kde.plasma.worldmap.mo %%DATADIR%%/data/LICENSE.txt %%DATADIR%%/data/audio/KDE-Sys-App-Positive.ogg %%DATADIR%%/data/audio/KDE-Sys-List-End.ogg %%DATADIR%%/data/bitmaps/airport.png %%DATADIR%%/data/bitmaps/annotation.png %%DATADIR%%/data/bitmaps/antarctic_shelves.png %%DATADIR%%/data/bitmaps/audio-x-generic.png %%DATADIR%%/data/bitmaps/bookmark.png %%DATADIR%%/data/bitmaps/border_1.png %%DATADIR%%/data/bitmaps/border_2.png %%DATADIR%%/data/bitmaps/border_disputed.png %%DATADIR%%/data/bitmaps/border_maritime.png %%DATADIR%%/data/bitmaps/city_1_orange.png %%DATADIR%%/data/bitmaps/city_1_red.png %%DATADIR%%/data/bitmaps/city_1_white.png %%DATADIR%%/data/bitmaps/city_1_yellow.png %%DATADIR%%/data/bitmaps/city_2_orange.png %%DATADIR%%/data/bitmaps/city_2_red.png %%DATADIR%%/data/bitmaps/city_2_white.png %%DATADIR%%/data/bitmaps/city_2_yellow.png %%DATADIR%%/data/bitmaps/city_3_orange.png %%DATADIR%%/data/bitmaps/city_3_red.png %%DATADIR%%/data/bitmaps/city_3_white.png %%DATADIR%%/data/bitmaps/city_3_yellow.png %%DATADIR%%/data/bitmaps/city_4_orange.png %%DATADIR%%/data/bitmaps/city_4_red.png %%DATADIR%%/data/bitmaps/city_4_white.png %%DATADIR%%/data/bitmaps/city_4_yellow.png %%DATADIR%%/data/bitmaps/coordinate.png %%DATADIR%%/data/bitmaps/crater.png %%DATADIR%%/data/bitmaps/cursor_bc.png %%DATADIR%%/data/bitmaps/cursor_bl.png %%DATADIR%%/data/bitmaps/cursor_br.png %%DATADIR%%/data/bitmaps/cursor_cl.png %%DATADIR%%/data/bitmaps/cursor_cr.png %%DATADIR%%/data/bitmaps/cursor_tc.png %%DATADIR%%/data/bitmaps/cursor_tl.png %%DATADIR%%/data/bitmaps/cursor_tr.png %%DATADIR%%/data/bitmaps/default_location.png %%DATADIR%%/data/bitmaps/document-edit.png %%DATADIR%%/data/bitmaps/earth_apollo.jpg %%DATADIR%%/data/bitmaps/editarrows/arrow-diagonal-topleft-active.png %%DATADIR%%/data/bitmaps/editarrows/arrow-diagonal-topleft.png %%DATADIR%%/data/bitmaps/editarrows/arrow-diagonal-topright-active.png %%DATADIR%%/data/bitmaps/editarrows/arrow-diagonal-topright.png %%DATADIR%%/data/bitmaps/editarrows/arrow-horizontal-active.png %%DATADIR%%/data/bitmaps/editarrows/arrow-horizontal.png %%DATADIR%%/data/bitmaps/editarrows/arrow-rotation-bottomleft-active.png %%DATADIR%%/data/bitmaps/editarrows/arrow-rotation-bottomleft.png %%DATADIR%%/data/bitmaps/editarrows/arrow-rotation-bottomright-active.png %%DATADIR%%/data/bitmaps/editarrows/arrow-rotation-bottomright.png %%DATADIR%%/data/bitmaps/editarrows/arrow-rotation-topleft-active.png %%DATADIR%%/data/bitmaps/editarrows/arrow-rotation-topleft.png %%DATADIR%%/data/bitmaps/editarrows/arrow-rotation-topright-active.png %%DATADIR%%/data/bitmaps/editarrows/arrow-rotation-topright.png %%DATADIR%%/data/bitmaps/editarrows/arrow-vertical-active.png %%DATADIR%%/data/bitmaps/editarrows/arrow-vertical.png %%DATADIR%%/data/bitmaps/flag.png %%DATADIR%%/data/bitmaps/folder.png %%DATADIR%%/data/bitmaps/glacier.png %%DATADIR%%/data/bitmaps/highway_footway.png %%DATADIR%%/data/bitmaps/highway_motorway.png %%DATADIR%%/data/bitmaps/highway_path.png %%DATADIR%%/data/bitmaps/highway_primary.png %%DATADIR%%/data/bitmaps/highway_secondary.png %%DATADIR%%/data/bitmaps/highway_tertiary.png %%DATADIR%%/data/bitmaps/highway_track.png %%DATADIR%%/data/bitmaps/highway_trunk.png %%DATADIR%%/data/bitmaps/highway_unclassified.png %%DATADIR%%/data/bitmaps/lake.png %%DATADIR%%/data/bitmaps/lake_historic.png %%DATADIR%%/data/bitmaps/manned_landing.png %%DATADIR%%/data/bitmaps/media-playback-pause.png %%DATADIR%%/data/bitmaps/mountain_1.png %%DATADIR%%/data/bitmaps/nation.png %%DATADIR%%/data/bitmaps/notes_closed.png %%DATADIR%%/data/bitmaps/notes_open.png %%DATADIR%%/data/bitmaps/observatory.png %%DATADIR%%/data/bitmaps/ocean.png %%DATADIR%%/data/bitmaps/osm.png %%DATADIR%%/data/bitmaps/osmcarto/patterns/allotments.png %%DATADIR%%/data/bitmaps/osmcarto/patterns/beach.png %%DATADIR%%/data/bitmaps/osmcarto/patterns/cliff.png %%DATADIR%%/data/bitmaps/osmcarto/patterns/cliff2.png %%DATADIR%%/data/bitmaps/osmcarto/patterns/danger.png %%DATADIR%%/data/bitmaps/osmcarto/patterns/embankment.png %%DATADIR%%/data/bitmaps/osmcarto/patterns/forest.png %%DATADIR%%/data/bitmaps/osmcarto/patterns/glacier.png %%DATADIR%%/data/bitmaps/osmcarto/patterns/grave_yard_christian.png %%DATADIR%%/data/bitmaps/osmcarto/patterns/grave_yard_generic.png %%DATADIR%%/data/bitmaps/osmcarto/patterns/grave_yard_jewish.png %%DATADIR%%/data/bitmaps/osmcarto/patterns/grey_vertical_hatch.png %%DATADIR%%/data/bitmaps/osmcarto/patterns/ice.png %%DATADIR%%/data/bitmaps/osmcarto/patterns/military_red_hatch.png %%DATADIR%%/data/bitmaps/osmcarto/patterns/orchard.png %%DATADIR%%/data/bitmaps/osmcarto/patterns/quarry.png %%DATADIR%%/data/bitmaps/osmcarto/patterns/rock_overlay.png %%DATADIR%%/data/bitmaps/osmcarto/patterns/scree_overlay.png %%DATADIR%%/data/bitmaps/osmcarto/patterns/scrub.png %%DATADIR%%/data/bitmaps/osmcarto/patterns/vineyard.png %%DATADIR%%/data/bitmaps/osmcarto/patterns/wetland.png %%DATADIR%%/data/bitmaps/osmcarto/patterns/wetland_bog.png %%DATADIR%%/data/bitmaps/osmcarto/patterns/wetland_mangrove.png %%DATADIR%%/data/bitmaps/osmcarto/patterns/wetland_marsh.png %%DATADIR%%/data/bitmaps/osmcarto/patterns/wetland_reed.png %%DATADIR%%/data/bitmaps/osmcarto/patterns/wetland_swamp.png %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/motorway_10x1.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/motorway_10x2.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/motorway_10x3.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/motorway_10x4.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/motorway_11x1.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/motorway_11x2.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/motorway_11x3.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/motorway_11x4.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/motorway_1x1.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/motorway_1x2.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/motorway_1x3.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/motorway_1x4.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/motorway_2x1.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/motorway_2x2.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/motorway_2x3.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/motorway_2x4.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/motorway_3x1.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/motorway_3x2.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/motorway_3x3.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/motorway_3x4.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/motorway_4x1.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/motorway_4x2.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/motorway_4x3.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/motorway_4x4.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/motorway_5x1.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/motorway_5x2.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/motorway_5x3.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/motorway_5x4.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/motorway_6x1.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/motorway_6x2.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/motorway_6x3.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/motorway_6x4.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/motorway_7x1.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/motorway_7x2.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/motorway_7x3.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/motorway_7x4.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/motorway_8x1.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/motorway_8x2.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/motorway_8x3.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/motorway_8x4.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/motorway_9x1.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/motorway_9x2.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/motorway_9x3.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/motorway_9x4.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/primary_10x1.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/primary_10x2.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/primary_10x3.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/primary_10x4.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/primary_11x1.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/primary_11x2.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/primary_11x3.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/primary_11x4.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/primary_1x1.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/primary_1x2.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/primary_1x3.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/primary_1x4.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/primary_2x1.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/primary_2x2.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/primary_2x3.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/primary_2x4.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/primary_3x1.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/primary_3x2.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/primary_3x3.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/primary_3x4.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/primary_4x1.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/primary_4x2.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/primary_4x3.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/primary_4x4.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/primary_5x1.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/primary_5x2.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/primary_5x3.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/primary_5x4.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/primary_6x1.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/primary_6x2.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/primary_6x3.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/primary_6x4.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/primary_7x1.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/primary_7x2.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/primary_7x3.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/primary_7x4.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/primary_8x1.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/primary_8x2.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/primary_8x3.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/primary_8x4.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/primary_9x1.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/primary_9x2.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/primary_9x3.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/primary_9x4.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/secondary_10x1.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/secondary_10x2.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/secondary_10x3.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/secondary_10x4.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/secondary_11x1.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/secondary_11x2.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/secondary_11x3.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/secondary_11x4.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/secondary_1x1.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/secondary_1x2.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/secondary_1x3.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/secondary_1x4.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/secondary_2x1.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/secondary_2x2.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/secondary_2x3.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/secondary_2x4.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/secondary_3x1.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/secondary_3x2.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/secondary_3x3.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/secondary_3x4.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/secondary_4x1.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/secondary_4x2.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/secondary_4x3.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/secondary_4x4.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/secondary_5x1.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/secondary_5x2.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/secondary_5x3.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/secondary_5x4.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/secondary_6x1.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/secondary_6x2.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/secondary_6x3.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/secondary_6x4.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/secondary_7x1.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/secondary_7x2.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/secondary_7x3.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/secondary_7x4.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/secondary_8x1.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/secondary_8x2.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/secondary_8x3.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/secondary_8x4.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/secondary_9x1.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/secondary_9x2.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/secondary_9x3.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/secondary_9x4.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/tertiary_10x1.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/tertiary_10x2.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/tertiary_10x3.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/tertiary_10x4.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/tertiary_11x1.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/tertiary_11x2.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/tertiary_11x3.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/tertiary_11x4.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/tertiary_1x1.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/tertiary_1x2.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/tertiary_1x3.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/tertiary_1x4.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/tertiary_2x1.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/tertiary_2x2.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/tertiary_2x3.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/tertiary_2x4.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/tertiary_3x1.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/tertiary_3x2.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/tertiary_3x3.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/tertiary_3x4.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/tertiary_4x1.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/tertiary_4x2.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/tertiary_4x3.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/tertiary_4x4.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/tertiary_5x1.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/tertiary_5x2.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/tertiary_5x3.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/tertiary_5x4.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/tertiary_6x1.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/tertiary_6x2.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/tertiary_6x3.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/tertiary_6x4.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/tertiary_7x1.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/tertiary_7x2.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/tertiary_7x3.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/tertiary_7x4.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/tertiary_8x1.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/tertiary_8x2.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/tertiary_8x3.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/tertiary_8x4.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/tertiary_9x1.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/tertiary_9x2.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/tertiary_9x3.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/tertiary_9x4.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/trunk_10x1.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/trunk_10x2.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/trunk_10x3.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/trunk_10x4.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/trunk_11x1.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/trunk_11x2.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/trunk_11x3.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/trunk_11x4.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/trunk_1x1.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/trunk_1x2.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/trunk_1x3.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/trunk_1x4.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/trunk_2x1.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/trunk_2x2.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/trunk_2x3.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/trunk_2x4.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/trunk_3x1.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/trunk_3x2.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/trunk_3x3.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/trunk_3x4.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/trunk_4x1.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/trunk_4x2.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/trunk_4x3.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/trunk_4x4.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/trunk_5x1.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/trunk_5x2.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/trunk_5x3.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/trunk_5x4.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/trunk_6x1.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/trunk_6x2.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/trunk_6x3.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/trunk_6x4.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/trunk_7x1.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/trunk_7x2.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/trunk_7x3.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/trunk_7x4.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/trunk_8x1.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/trunk_8x2.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/trunk_8x3.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/trunk_8x4.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/trunk_9x1.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/trunk_9x2.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/trunk_9x3.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/trunk_9x4.svg %%DATADIR%%/data/bitmaps/other.png %%DATADIR%%/data/bitmaps/playa.png %%DATADIR%%/data/bitmaps/player-time.png %%DATADIR%%/data/bitmaps/pole_1.png %%DATADIR%%/data/bitmaps/pole_2.png %%DATADIR%%/data/bitmaps/redflag_22.png %%DATADIR%%/data/bitmaps/redflag_32.png %%DATADIR%%/data/bitmaps/river.png %%DATADIR%%/data/bitmaps/robotic_rover.png %%DATADIR%%/data/bitmaps/routing_pick.png %%DATADIR%%/data/bitmaps/routing_remove.png %%DATADIR%%/data/bitmaps/routing_step.png %%DATADIR%%/data/bitmaps/satellite.png %%DATADIR%%/data/bitmaps/shadowframe.png %%DATADIR%%/data/bitmaps/shipwreck.png %%DATADIR%%/data/bitmaps/stars/star_0_blue.png %%DATADIR%%/data/bitmaps/stars/star_0_bluewhite.png %%DATADIR%%/data/bitmaps/stars/star_0_garnetred.png %%DATADIR%%/data/bitmaps/stars/star_0_orange.png %%DATADIR%%/data/bitmaps/stars/star_0_red.png %%DATADIR%%/data/bitmaps/stars/star_0_white.png %%DATADIR%%/data/bitmaps/stars/star_0_yellow.png %%DATADIR%%/data/bitmaps/stars/star_3_blue.png %%DATADIR%%/data/bitmaps/stars/star_3_bluewhite.png %%DATADIR%%/data/bitmaps/stars/star_3_garnetred.png %%DATADIR%%/data/bitmaps/stars/star_3_orange.png %%DATADIR%%/data/bitmaps/stars/star_3_red.png %%DATADIR%%/data/bitmaps/stars/star_3_white.png %%DATADIR%%/data/bitmaps/stars/star_3_yellow.png %%DATADIR%%/data/bitmaps/turn-around.png %%DATADIR%%/data/bitmaps/turn-continue.png %%DATADIR%%/data/bitmaps/turn-end.png %%DATADIR%%/data/bitmaps/turn-exit-left.png %%DATADIR%%/data/bitmaps/turn-exit-right.png %%DATADIR%%/data/bitmaps/turn-ferry.png %%DATADIR%%/data/bitmaps/turn-left.png %%DATADIR%%/data/bitmaps/turn-merge.png %%DATADIR%%/data/bitmaps/turn-right.png %%DATADIR%%/data/bitmaps/turn-roundabout-ccw-far.png %%DATADIR%%/data/bitmaps/turn-roundabout-ccw-first.png %%DATADIR%%/data/bitmaps/turn-roundabout-ccw-second.png %%DATADIR%%/data/bitmaps/turn-roundabout-ccw-third.png %%DATADIR%%/data/bitmaps/turn-roundabout-cw-far.png %%DATADIR%%/data/bitmaps/turn-roundabout-cw-first.png %%DATADIR%%/data/bitmaps/turn-roundabout-cw-second.png %%DATADIR%%/data/bitmaps/turn-roundabout-cw-third.png %%DATADIR%%/data/bitmaps/turn-sharp-left.png %%DATADIR%%/data/bitmaps/turn-sharp-right.png %%DATADIR%%/data/bitmaps/turn-slight-left.png %%DATADIR%%/data/bitmaps/turn-slight-right.png %%DATADIR%%/data/bitmaps/unmanned_hard_landing.png %%DATADIR%%/data/bitmaps/unmanned_soft_landing.png %%DATADIR%%/data/bitmaps/urban_area.png %%DATADIR%%/data/bitmaps/valley.png %%DATADIR%%/data/bitmaps/volcano_1.png %%DATADIR%%/data/bitmaps/waypoint.png %%DATADIR%%/data/bitmaps/wikipedia.png %%DATADIR%%/data/credits_authors.html %%DATADIR%%/data/credits_data.html %%DATADIR%%/data/flags/flag_ad.svg %%DATADIR%%/data/flags/flag_ae.svg %%DATADIR%%/data/flags/flag_af.svg %%DATADIR%%/data/flags/flag_ag.svg %%DATADIR%%/data/flags/flag_ai.svg %%DATADIR%%/data/flags/flag_al.svg %%DATADIR%%/data/flags/flag_am.svg %%DATADIR%%/data/flags/flag_an.svg %%DATADIR%%/data/flags/flag_ao.svg %%DATADIR%%/data/flags/flag_aq.svg %%DATADIR%%/data/flags/flag_ar.svg %%DATADIR%%/data/flags/flag_as.svg %%DATADIR%%/data/flags/flag_at.svg %%DATADIR%%/data/flags/flag_au.svg %%DATADIR%%/data/flags/flag_aw.svg %%DATADIR%%/data/flags/flag_ax.svg %%DATADIR%%/data/flags/flag_az.svg %%DATADIR%%/data/flags/flag_ba.svg %%DATADIR%%/data/flags/flag_bb.svg %%DATADIR%%/data/flags/flag_bd.svg %%DATADIR%%/data/flags/flag_be.svg %%DATADIR%%/data/flags/flag_bf.svg %%DATADIR%%/data/flags/flag_bg.svg %%DATADIR%%/data/flags/flag_bh.svg %%DATADIR%%/data/flags/flag_bi.svg %%DATADIR%%/data/flags/flag_bj.svg %%DATADIR%%/data/flags/flag_bm.svg %%DATADIR%%/data/flags/flag_bn.svg %%DATADIR%%/data/flags/flag_bo.svg %%DATADIR%%/data/flags/flag_br.svg %%DATADIR%%/data/flags/flag_bs.svg %%DATADIR%%/data/flags/flag_bt.svg %%DATADIR%%/data/flags/flag_bv.svg %%DATADIR%%/data/flags/flag_bw.svg %%DATADIR%%/data/flags/flag_by.svg %%DATADIR%%/data/flags/flag_bz.svg %%DATADIR%%/data/flags/flag_ca.svg %%DATADIR%%/data/flags/flag_cc.svg %%DATADIR%%/data/flags/flag_cd.svg %%DATADIR%%/data/flags/flag_cf.svg %%DATADIR%%/data/flags/flag_cg.svg %%DATADIR%%/data/flags/flag_ch.svg %%DATADIR%%/data/flags/flag_ci.svg %%DATADIR%%/data/flags/flag_ck.svg %%DATADIR%%/data/flags/flag_cl.svg %%DATADIR%%/data/flags/flag_cm.svg %%DATADIR%%/data/flags/flag_cn.svg %%DATADIR%%/data/flags/flag_co.svg %%DATADIR%%/data/flags/flag_cr.svg %%DATADIR%%/data/flags/flag_cu.svg %%DATADIR%%/data/flags/flag_cv.svg %%DATADIR%%/data/flags/flag_cx.svg %%DATADIR%%/data/flags/flag_cy.svg %%DATADIR%%/data/flags/flag_cz.svg %%DATADIR%%/data/flags/flag_de.svg %%DATADIR%%/data/flags/flag_dj.svg %%DATADIR%%/data/flags/flag_dk.svg %%DATADIR%%/data/flags/flag_dm.svg %%DATADIR%%/data/flags/flag_do.svg %%DATADIR%%/data/flags/flag_dz.svg %%DATADIR%%/data/flags/flag_ec.svg %%DATADIR%%/data/flags/flag_ee.svg %%DATADIR%%/data/flags/flag_eg.svg %%DATADIR%%/data/flags/flag_eh.svg %%DATADIR%%/data/flags/flag_er.svg %%DATADIR%%/data/flags/flag_es.svg %%DATADIR%%/data/flags/flag_et.svg %%DATADIR%%/data/flags/flag_fi.svg %%DATADIR%%/data/flags/flag_fj.svg %%DATADIR%%/data/flags/flag_fk.svg %%DATADIR%%/data/flags/flag_fm.svg %%DATADIR%%/data/flags/flag_fo.svg %%DATADIR%%/data/flags/flag_fr.svg %%DATADIR%%/data/flags/flag_ga.svg %%DATADIR%%/data/flags/flag_gb.svg %%DATADIR%%/data/flags/flag_gd.svg %%DATADIR%%/data/flags/flag_ge.svg %%DATADIR%%/data/flags/flag_gf.svg %%DATADIR%%/data/flags/flag_gg.svg %%DATADIR%%/data/flags/flag_gh.svg %%DATADIR%%/data/flags/flag_gi.svg %%DATADIR%%/data/flags/flag_gl.svg %%DATADIR%%/data/flags/flag_gm.svg %%DATADIR%%/data/flags/flag_gn.svg %%DATADIR%%/data/flags/flag_gp.svg %%DATADIR%%/data/flags/flag_gq.svg %%DATADIR%%/data/flags/flag_gr.svg %%DATADIR%%/data/flags/flag_gs.svg %%DATADIR%%/data/flags/flag_gt.svg %%DATADIR%%/data/flags/flag_gu.svg %%DATADIR%%/data/flags/flag_gw.svg %%DATADIR%%/data/flags/flag_gy.svg %%DATADIR%%/data/flags/flag_hk.svg %%DATADIR%%/data/flags/flag_hm.svg %%DATADIR%%/data/flags/flag_hn.svg %%DATADIR%%/data/flags/flag_hr.svg %%DATADIR%%/data/flags/flag_ht.svg %%DATADIR%%/data/flags/flag_hu.svg %%DATADIR%%/data/flags/flag_id.svg %%DATADIR%%/data/flags/flag_ie.svg %%DATADIR%%/data/flags/flag_il.svg %%DATADIR%%/data/flags/flag_im.svg %%DATADIR%%/data/flags/flag_in.svg %%DATADIR%%/data/flags/flag_io.svg %%DATADIR%%/data/flags/flag_iq.svg %%DATADIR%%/data/flags/flag_ir.svg %%DATADIR%%/data/flags/flag_is.svg %%DATADIR%%/data/flags/flag_it.svg %%DATADIR%%/data/flags/flag_je.svg %%DATADIR%%/data/flags/flag_jm.svg %%DATADIR%%/data/flags/flag_jo.svg %%DATADIR%%/data/flags/flag_jp.svg %%DATADIR%%/data/flags/flag_ke.svg %%DATADIR%%/data/flags/flag_kg.svg %%DATADIR%%/data/flags/flag_kh.svg %%DATADIR%%/data/flags/flag_ki.svg %%DATADIR%%/data/flags/flag_km.svg %%DATADIR%%/data/flags/flag_kn.svg %%DATADIR%%/data/flags/flag_kp.svg %%DATADIR%%/data/flags/flag_kr.svg %%DATADIR%%/data/flags/flag_kw.svg %%DATADIR%%/data/flags/flag_ky.svg %%DATADIR%%/data/flags/flag_kz.svg %%DATADIR%%/data/flags/flag_la.svg %%DATADIR%%/data/flags/flag_lb.svg %%DATADIR%%/data/flags/flag_lc.svg %%DATADIR%%/data/flags/flag_li.svg %%DATADIR%%/data/flags/flag_lk.svg %%DATADIR%%/data/flags/flag_lr.svg %%DATADIR%%/data/flags/flag_ls.svg %%DATADIR%%/data/flags/flag_lt.svg %%DATADIR%%/data/flags/flag_lu.svg %%DATADIR%%/data/flags/flag_lv.svg %%DATADIR%%/data/flags/flag_ly.svg %%DATADIR%%/data/flags/flag_ma.svg %%DATADIR%%/data/flags/flag_mc.svg %%DATADIR%%/data/flags/flag_md.svg %%DATADIR%%/data/flags/flag_me.svg %%DATADIR%%/data/flags/flag_mg.svg %%DATADIR%%/data/flags/flag_mh.svg %%DATADIR%%/data/flags/flag_mk.svg %%DATADIR%%/data/flags/flag_ml.svg %%DATADIR%%/data/flags/flag_mm.svg %%DATADIR%%/data/flags/flag_mn.svg %%DATADIR%%/data/flags/flag_mo.svg %%DATADIR%%/data/flags/flag_mp.svg %%DATADIR%%/data/flags/flag_mq.svg %%DATADIR%%/data/flags/flag_mr.svg %%DATADIR%%/data/flags/flag_ms.svg %%DATADIR%%/data/flags/flag_mt.svg %%DATADIR%%/data/flags/flag_mu.svg %%DATADIR%%/data/flags/flag_mv.svg %%DATADIR%%/data/flags/flag_mw.svg %%DATADIR%%/data/flags/flag_mx.svg %%DATADIR%%/data/flags/flag_my.svg %%DATADIR%%/data/flags/flag_mz.svg %%DATADIR%%/data/flags/flag_na.svg %%DATADIR%%/data/flags/flag_nc.svg %%DATADIR%%/data/flags/flag_ne.svg %%DATADIR%%/data/flags/flag_nf.svg %%DATADIR%%/data/flags/flag_ng.svg %%DATADIR%%/data/flags/flag_ni.svg %%DATADIR%%/data/flags/flag_nl.svg %%DATADIR%%/data/flags/flag_no.svg %%DATADIR%%/data/flags/flag_np.svg %%DATADIR%%/data/flags/flag_nr.svg %%DATADIR%%/data/flags/flag_nu.svg %%DATADIR%%/data/flags/flag_nz.svg %%DATADIR%%/data/flags/flag_om.svg %%DATADIR%%/data/flags/flag_pa.svg %%DATADIR%%/data/flags/flag_pe.svg %%DATADIR%%/data/flags/flag_pf.svg %%DATADIR%%/data/flags/flag_pg.svg %%DATADIR%%/data/flags/flag_ph.svg %%DATADIR%%/data/flags/flag_pk.svg %%DATADIR%%/data/flags/flag_pl.svg %%DATADIR%%/data/flags/flag_pm.svg %%DATADIR%%/data/flags/flag_pn.svg %%DATADIR%%/data/flags/flag_pr.svg %%DATADIR%%/data/flags/flag_ps.svg %%DATADIR%%/data/flags/flag_pt.svg %%DATADIR%%/data/flags/flag_pw.svg %%DATADIR%%/data/flags/flag_py.svg %%DATADIR%%/data/flags/flag_qa.svg %%DATADIR%%/data/flags/flag_re.svg %%DATADIR%%/data/flags/flag_ro.svg %%DATADIR%%/data/flags/flag_rs.svg %%DATADIR%%/data/flags/flag_ru.svg %%DATADIR%%/data/flags/flag_rw.svg %%DATADIR%%/data/flags/flag_sa.svg %%DATADIR%%/data/flags/flag_sb.svg %%DATADIR%%/data/flags/flag_sc.svg %%DATADIR%%/data/flags/flag_sd.svg %%DATADIR%%/data/flags/flag_se.svg %%DATADIR%%/data/flags/flag_sg.svg %%DATADIR%%/data/flags/flag_sh.svg %%DATADIR%%/data/flags/flag_si.svg %%DATADIR%%/data/flags/flag_sj.svg %%DATADIR%%/data/flags/flag_sk.svg %%DATADIR%%/data/flags/flag_sl.svg %%DATADIR%%/data/flags/flag_sm.svg %%DATADIR%%/data/flags/flag_sn.svg %%DATADIR%%/data/flags/flag_so.svg %%DATADIR%%/data/flags/flag_sr.svg %%DATADIR%%/data/flags/flag_st.svg %%DATADIR%%/data/flags/flag_sv.svg %%DATADIR%%/data/flags/flag_sy.svg %%DATADIR%%/data/flags/flag_sz.svg %%DATADIR%%/data/flags/flag_tc.svg %%DATADIR%%/data/flags/flag_td.svg %%DATADIR%%/data/flags/flag_tf.svg %%DATADIR%%/data/flags/flag_tg.svg %%DATADIR%%/data/flags/flag_th.svg %%DATADIR%%/data/flags/flag_tj.svg %%DATADIR%%/data/flags/flag_tk.svg %%DATADIR%%/data/flags/flag_tl.svg %%DATADIR%%/data/flags/flag_tm.svg %%DATADIR%%/data/flags/flag_tn.svg %%DATADIR%%/data/flags/flag_to.svg %%DATADIR%%/data/flags/flag_tr.svg %%DATADIR%%/data/flags/flag_tt.svg %%DATADIR%%/data/flags/flag_tv.svg %%DATADIR%%/data/flags/flag_tw.svg %%DATADIR%%/data/flags/flag_tz.svg %%DATADIR%%/data/flags/flag_ua.svg %%DATADIR%%/data/flags/flag_ug.svg %%DATADIR%%/data/flags/flag_um.svg %%DATADIR%%/data/flags/flag_us.svg %%DATADIR%%/data/flags/flag_uy.svg %%DATADIR%%/data/flags/flag_uz.svg %%DATADIR%%/data/flags/flag_vc.svg %%DATADIR%%/data/flags/flag_ve.svg %%DATADIR%%/data/flags/flag_vg.svg %%DATADIR%%/data/flags/flag_vi.svg %%DATADIR%%/data/flags/flag_vn.svg %%DATADIR%%/data/flags/flag_vu.svg %%DATADIR%%/data/flags/flag_wf.svg %%DATADIR%%/data/flags/flag_ws.svg %%DATADIR%%/data/flags/flag_ye.svg %%DATADIR%%/data/flags/flag_yt.svg %%DATADIR%%/data/flags/flag_za.svg %%DATADIR%%/data/flags/flag_zm.svg %%DATADIR%%/data/flags/flag_zw.svg %%DATADIR%%/data/landcolors.leg %%DATADIR%%/data/legend.css %%DATADIR%%/data/legend.html %%DATADIR%%/data/licenses/lgpl2.txt %%DATADIR%%/data/maps/earth/behaim1492/0/000000/000000_000000.jpg %%DATADIR%%/data/maps/earth/behaim1492/0/000000/000000_000001.jpg %%DATADIR%%/data/maps/earth/behaim1492/1/000000/000000_000000.jpg %%DATADIR%%/data/maps/earth/behaim1492/1/000000/000000_000001.jpg %%DATADIR%%/data/maps/earth/behaim1492/1/000000/000000_000002.jpg %%DATADIR%%/data/maps/earth/behaim1492/1/000000/000000_000003.jpg %%DATADIR%%/data/maps/earth/behaim1492/1/000001/000001_000000.jpg %%DATADIR%%/data/maps/earth/behaim1492/1/000001/000001_000001.jpg %%DATADIR%%/data/maps/earth/behaim1492/1/000001/000001_000002.jpg %%DATADIR%%/data/maps/earth/behaim1492/1/000001/000001_000003.jpg %%DATADIR%%/data/maps/earth/behaim1492/behaim1492-preview.png %%DATADIR%%/data/maps/earth/behaim1492/behaim1492.dgml %%DATADIR%%/data/maps/earth/behaim1492/behaim1492.kml %%DATADIR%%/data/maps/earth/behaim1492/figuren.kml %%DATADIR%%/data/maps/earth/behaim1492/ghillany/0/000000/000000_000000.jpg %%DATADIR%%/data/maps/earth/behaim1492/ghillany/0/000000/000000_000001.jpg %%DATADIR%%/data/maps/earth/behaim1492/legend.html %%DATADIR%%/data/maps/earth/behaim1492/legend/Martin_Behaim.jpg %%DATADIR%%/data/maps/earth/behaim1492/legend/globus.jpg %%DATADIR%%/data/maps/earth/behaim1492/ravenstein/0/000000/000000_000000.jpg %%DATADIR%%/data/maps/earth/behaim1492/ravenstein/0/000000/000000_000001.jpg %%DATADIR%%/data/maps/earth/behaim1492/texte.kml %%DATADIR%%/data/maps/earth/bluemarble/bluemarble-preview.png %%DATADIR%%/data/maps/earth/bluemarble/bluemarble.dgml %%DATADIR%%/data/maps/earth/bluemarble/bluemarble.jpg %%DATADIR%%/data/maps/earth/bluemarble/legend/desert.png %%DATADIR%%/data/maps/earth/bluemarble/legend/ice.png %%DATADIR%%/data/maps/earth/bluemarble/legend/mountain.png %%DATADIR%%/data/maps/earth/bluemarble/legend/vegetation.png %%DATADIR%%/data/maps/earth/bluemarble/legend/water.png %%DATADIR%%/data/maps/earth/citylights/citylights-preview.png %%DATADIR%%/data/maps/earth/citylights/citylights.dgml %%DATADIR%%/data/maps/earth/citylights/citylights.jpg %%DATADIR%%/data/maps/earth/citylights/legend/city.png %%DATADIR%%/data/maps/earth/citylights/legend/darkterrain.png %%DATADIR%%/data/maps/earth/citylights/legend/lightterrain.png %%DATADIR%%/data/maps/earth/citylights/legend/water.png %%DATADIR%%/data/maps/earth/clouds/0/000000/000000_000000.jpg %%DATADIR%%/data/maps/earth/clouds/0/000000/000000_000001.jpg %%DATADIR%%/data/maps/earth/hillshading/0/0/0.png %%DATADIR%%/data/maps/earth/humanitarian/0/0/0.png %%DATADIR%%/data/maps/earth/openstreetmap/0/0/0.png %%DATADIR%%/data/maps/earth/openstreetmap/Alcatraz.jpg %%DATADIR%%/data/maps/earth/openstreetmap/Brasilia.jpg %%DATADIR%%/data/maps/earth/openstreetmap/Church of the Holy Sepulchre.jpg %%DATADIR%%/data/maps/earth/openstreetmap/Death Valley.jpg %%DATADIR%%/data/maps/earth/openstreetmap/Desert breath.jpg %%DATADIR%%/data/maps/earth/openstreetmap/Disneyland.jpg %%DATADIR%%/data/maps/earth/openstreetmap/Dunnottar Castle.jpg %%DATADIR%%/data/maps/earth/openstreetmap/Eiffel Tower.jpg %%DATADIR%%/data/maps/earth/openstreetmap/Kheops Pyramid.jpg %%DATADIR%%/data/maps/earth/openstreetmap/Klyuchevskaya Sopka.jpg %%DATADIR%%/data/maps/earth/openstreetmap/Maree Man.jpg %%DATADIR%%/data/maps/earth/openstreetmap/Moscow Kremlin.jpg %%DATADIR%%/data/maps/earth/openstreetmap/Nazca Lines.jpg %%DATADIR%%/data/maps/earth/openstreetmap/Palace Het Loo.jpg %%DATADIR%%/data/maps/earth/openstreetmap/Palm Jumeirah.jpg %%DATADIR%%/data/maps/earth/openstreetmap/Russell Square.jpg %%DATADIR%%/data/maps/earth/openstreetmap/Santorini.jpg %%DATADIR%%/data/maps/earth/openstreetmap/Shuttle Landing Facility.jpg %%DATADIR%%/data/maps/earth/openstreetmap/Sofievka.jpg %%DATADIR%%/data/maps/earth/openstreetmap/St Peter's Basilica.jpg %%DATADIR%%/data/maps/earth/openstreetmap/Stonehenge.jpg %%DATADIR%%/data/maps/earth/openstreetmap/Sydney Opera House.jpg %%DATADIR%%/data/maps/earth/openstreetmap/Taj Mahal.jpg %%DATADIR%%/data/maps/earth/openstreetmap/Taranaki.jpg %%DATADIR%%/data/maps/earth/openstreetmap/The Great Wall of China.jpg %%DATADIR%%/data/maps/earth/openstreetmap/The World.jpg %%DATADIR%%/data/maps/earth/openstreetmap/Vesuvius.jpg %%DATADIR%%/data/maps/earth/openstreetmap/legend.html %%DATADIR%%/data/maps/earth/openstreetmap/legend/airportapron.png %%DATADIR%%/data/maps/earth/openstreetmap/legend/airportrunway.png %%DATADIR%%/data/maps/earth/openstreetmap/legend/boundary.png %%DATADIR%%/data/maps/earth/openstreetmap/legend/bridge.png %%DATADIR%%/data/maps/earth/openstreetmap/legend/bridleway.png %%DATADIR%%/data/maps/earth/openstreetmap/legend/byway.png %%DATADIR%%/data/maps/earth/openstreetmap/legend/cycleway.png %%DATADIR%%/data/maps/earth/openstreetmap/legend/footway.png %%DATADIR%%/data/maps/earth/openstreetmap/legend/mapicons/accommodation_hotel2.p.12.png %%DATADIR%%/data/maps/earth/openstreetmap/legend/mapicons/accommodation_motel.p.12.png %%DATADIR%%/data/maps/earth/openstreetmap/legend/mapicons/amenity_court.p.12.png %%DATADIR%%/data/maps/earth/openstreetmap/legend/mapicons/amenity_firestation.p.12.png %%DATADIR%%/data/maps/earth/openstreetmap/legend/mapicons/amenity_library.p.12.png %%DATADIR%%/data/maps/earth/openstreetmap/legend/mapicons/amenity_playground.p.12.png %%DATADIR%%/data/maps/earth/openstreetmap/legend/mapicons/amenity_post_office.p.12.png %%DATADIR%%/data/maps/earth/openstreetmap/legend/mapicons/amenity_public_building.p.12.png %%DATADIR%%/data/maps/earth/openstreetmap/legend/mapicons/amenity_toilets.p.12.png %%DATADIR%%/data/maps/earth/openstreetmap/legend/mapicons/education_college.p.12.png %%DATADIR%%/data/maps/earth/openstreetmap/legend/mapicons/education_nursery.p.12.png %%DATADIR%%/data/maps/earth/openstreetmap/legend/mapicons/education_school.p.12.png %%DATADIR%%/data/maps/earth/openstreetmap/legend/mapicons/education_university.p.12.png %%DATADIR%%/data/maps/earth/openstreetmap/legend/mapicons/food_bar.p.12.png %%DATADIR%%/data/maps/earth/openstreetmap/legend/mapicons/food_biergarten.p.12.png %%DATADIR%%/data/maps/earth/openstreetmap/legend/mapicons/food_cafe.p.12.png %%DATADIR%%/data/maps/earth/openstreetmap/legend/mapicons/food_drinkingtap.p.12.png %%DATADIR%%/data/maps/earth/openstreetmap/legend/mapicons/food_fastfood.p.12.png %%DATADIR%%/data/maps/earth/openstreetmap/legend/mapicons/food_ice_cream.p.12.png %%DATADIR%%/data/maps/earth/openstreetmap/legend/mapicons/food_pub.p.12.png %%DATADIR%%/data/maps/earth/openstreetmap/legend/mapicons/food_restaurant.p.12.png %%DATADIR%%/data/maps/earth/openstreetmap/legend/mapicons/health_dentist.p.12.png %%DATADIR%%/data/maps/earth/openstreetmap/legend/mapicons/health_doctors.p.12.png %%DATADIR%%/data/maps/earth/openstreetmap/legend/mapicons/health_hospital.p.12.png %%DATADIR%%/data/maps/earth/openstreetmap/legend/mapicons/health_pharmacy.p.12.png %%DATADIR%%/data/maps/earth/openstreetmap/legend/mapicons/health_veterinary.p.12.png %%DATADIR%%/data/maps/earth/openstreetmap/legend/mapicons/money_atm.p.12.png %%DATADIR%%/data/maps/earth/openstreetmap/legend/mapicons/money_bank.p.12.png %%DATADIR%%/data/maps/earth/openstreetmap/legend/mapicons/money_currency_exchange.p.12.png %%DATADIR%%/data/maps/earth/openstreetmap/legend/mapicons/place_of_worship_christian.p.12.png %%DATADIR%%/data/maps/earth/openstreetmap/legend/mapicons/place_of_worship_unknown.p.12.png %%DATADIR%%/data/maps/earth/openstreetmap/legend/mapicons/poi_embassy.p.12.png %%DATADIR%%/data/maps/earth/openstreetmap/legend/mapicons/power_station_gas.p.12.png %%DATADIR%%/data/maps/earth/openstreetmap/legend/mapicons/shopping_alcohol.p.12.png %%DATADIR%%/data/maps/earth/openstreetmap/legend/mapicons/shopping_bakery.p.12.png %%DATADIR%%/data/maps/earth/openstreetmap/legend/mapicons/shopping_book.p.12.png %%DATADIR%%/data/maps/earth/openstreetmap/legend/mapicons/shopping_car.p.12.png %%DATADIR%%/data/maps/earth/openstreetmap/legend/mapicons/shopping_clothes.p.12.png %%DATADIR%%/data/maps/earth/openstreetmap/legend/mapicons/shopping_convenience.p.12.png %%DATADIR%%/data/maps/earth/openstreetmap/legend/mapicons/shopping_gift.p.12.png %%DATADIR%%/data/maps/earth/openstreetmap/legend/mapicons/tourist_cinema.p.12.png %%DATADIR%%/data/maps/earth/openstreetmap/legend/mapicons/tourist_monument.p.12.png %%DATADIR%%/data/maps/earth/openstreetmap/legend/mapicons/tourist_ruin.p.12.png %%DATADIR%%/data/maps/earth/openstreetmap/legend/mapicons/tourist_theatre.p.12.png %%DATADIR%%/data/maps/earth/openstreetmap/legend/motorway.png %%DATADIR%%/data/maps/earth/openstreetmap/legend/primaryroad.png %%DATADIR%%/data/maps/earth/openstreetmap/legend/railway.png %%DATADIR%%/data/maps/earth/openstreetmap/legend/railwaystation.png %%DATADIR%%/data/maps/earth/openstreetmap/legend/secondaryroad.png %%DATADIR%%/data/maps/earth/openstreetmap/legend/significantbuilding.png %%DATADIR%%/data/maps/earth/openstreetmap/legend/subway.png %%DATADIR%%/data/maps/earth/openstreetmap/legend/summitpeak.png %%DATADIR%%/data/maps/earth/openstreetmap/legend/track.png %%DATADIR%%/data/maps/earth/openstreetmap/legend/tram.png %%DATADIR%%/data/maps/earth/openstreetmap/legend/trunkroad.png %%DATADIR%%/data/maps/earth/openstreetmap/legend/tunnel.png %%DATADIR%%/data/maps/earth/openstreetmap/legend/unclassifiedroad.png %%DATADIR%%/data/maps/earth/openstreetmap/legend/unsurfacedroad.png %%DATADIR%%/data/maps/earth/openstreetmap/openstreetmap-preview.png %%DATADIR%%/data/maps/earth/openstreetmap/openstreetmap.dgml %%DATADIR%%/data/maps/earth/openstreetmap/tour.kml %%DATADIR%%/data/maps/earth/plain/plain-preview.png %%DATADIR%%/data/maps/earth/plain/plain.dgml %%DATADIR%%/data/maps/earth/political/political-preview.png %%DATADIR%%/data/maps/earth/political/political.dgml %%DATADIR%%/data/maps/earth/precip-dec/precip-dec-preview.png %%DATADIR%%/data/maps/earth/precip-dec/precip-dec.dgml %%DATADIR%%/data/maps/earth/precip-dec/precip-dec.jpg %%DATADIR%%/data/maps/earth/precip-july/precip-july-preview.png %%DATADIR%%/data/maps/earth/precip-july/precip-july.dgml %%DATADIR%%/data/maps/earth/precip-july/precip-july.jpg %%DATADIR%%/data/maps/earth/schagen1689/legend.html %%DATADIR%%/data/maps/earth/schagen1689/legend/lake.png %%DATADIR%%/data/maps/earth/schagen1689/legend/mountain.png %%DATADIR%%/data/maps/earth/schagen1689/legend/river.png %%DATADIR%%/data/maps/earth/schagen1689/legend/schagen_orig.png %%DATADIR%%/data/maps/earth/schagen1689/legend/schagen_title.png %%DATADIR%%/data/maps/earth/schagen1689/legend/town.png %%DATADIR%%/data/maps/earth/schagen1689/schagen1689-preview.png %%DATADIR%%/data/maps/earth/schagen1689/schagen1689.dgml %%DATADIR%%/data/maps/earth/schagen1689/schagen1689.jpg %%DATADIR%%/data/maps/earth/sentinel2/0/0/0.jpg %%DATADIR%%/data/maps/earth/sentinel2/legend.html %%DATADIR%%/data/maps/earth/sentinel2/sentinel2-preview.png %%DATADIR%%/data/maps/earth/sentinel2/sentinel2.dgml %%DATADIR%%/data/maps/earth/srtm/0/000000/000000_000000.jpg %%DATADIR%%/data/maps/earth/srtm/0/000000/000000_000001.jpg %%DATADIR%%/data/maps/earth/srtm/1/000000/000000_000000.jpg %%DATADIR%%/data/maps/earth/srtm/1/000000/000000_000001.jpg %%DATADIR%%/data/maps/earth/srtm/1/000000/000000_000002.jpg %%DATADIR%%/data/maps/earth/srtm/1/000000/000000_000003.jpg %%DATADIR%%/data/maps/earth/srtm/1/000001/000001_000000.jpg %%DATADIR%%/data/maps/earth/srtm/1/000001/000001_000001.jpg %%DATADIR%%/data/maps/earth/srtm/1/000001/000001_000002.jpg %%DATADIR%%/data/maps/earth/srtm/1/000001/000001_000003.jpg %%DATADIR%%/data/maps/earth/srtm/2/000000/000000_000000.jpg %%DATADIR%%/data/maps/earth/srtm/2/000000/000000_000001.jpg %%DATADIR%%/data/maps/earth/srtm/2/000000/000000_000002.jpg %%DATADIR%%/data/maps/earth/srtm/2/000000/000000_000003.jpg %%DATADIR%%/data/maps/earth/srtm/2/000000/000000_000004.jpg %%DATADIR%%/data/maps/earth/srtm/2/000000/000000_000005.jpg %%DATADIR%%/data/maps/earth/srtm/2/000000/000000_000006.jpg %%DATADIR%%/data/maps/earth/srtm/2/000000/000000_000007.jpg %%DATADIR%%/data/maps/earth/srtm/2/000001/000001_000000.jpg %%DATADIR%%/data/maps/earth/srtm/2/000001/000001_000001.jpg %%DATADIR%%/data/maps/earth/srtm/2/000001/000001_000002.jpg %%DATADIR%%/data/maps/earth/srtm/2/000001/000001_000003.jpg %%DATADIR%%/data/maps/earth/srtm/2/000001/000001_000004.jpg %%DATADIR%%/data/maps/earth/srtm/2/000001/000001_000005.jpg %%DATADIR%%/data/maps/earth/srtm/2/000001/000001_000006.jpg %%DATADIR%%/data/maps/earth/srtm/2/000001/000001_000007.jpg %%DATADIR%%/data/maps/earth/srtm/2/000002/000002_000000.jpg %%DATADIR%%/data/maps/earth/srtm/2/000002/000002_000001.jpg %%DATADIR%%/data/maps/earth/srtm/2/000002/000002_000002.jpg %%DATADIR%%/data/maps/earth/srtm/2/000002/000002_000003.jpg %%DATADIR%%/data/maps/earth/srtm/2/000002/000002_000004.jpg %%DATADIR%%/data/maps/earth/srtm/2/000002/000002_000005.jpg %%DATADIR%%/data/maps/earth/srtm/2/000002/000002_000006.jpg %%DATADIR%%/data/maps/earth/srtm/2/000002/000002_000007.jpg %%DATADIR%%/data/maps/earth/srtm/2/000003/000003_000000.jpg %%DATADIR%%/data/maps/earth/srtm/2/000003/000003_000001.jpg %%DATADIR%%/data/maps/earth/srtm/2/000003/000003_000002.jpg %%DATADIR%%/data/maps/earth/srtm/2/000003/000003_000003.jpg %%DATADIR%%/data/maps/earth/srtm/2/000003/000003_000004.jpg %%DATADIR%%/data/maps/earth/srtm/2/000003/000003_000005.jpg %%DATADIR%%/data/maps/earth/srtm/2/000003/000003_000006.jpg %%DATADIR%%/data/maps/earth/srtm/2/000003/000003_000007.jpg %%DATADIR%%/data/maps/earth/srtm/3/000000/000000_000000.jpg %%DATADIR%%/data/maps/earth/srtm/3/000000/000000_000001.jpg %%DATADIR%%/data/maps/earth/srtm/3/000000/000000_000002.jpg %%DATADIR%%/data/maps/earth/srtm/3/000000/000000_000003.jpg %%DATADIR%%/data/maps/earth/srtm/3/000000/000000_000004.jpg %%DATADIR%%/data/maps/earth/srtm/3/000000/000000_000005.jpg %%DATADIR%%/data/maps/earth/srtm/3/000000/000000_000006.jpg %%DATADIR%%/data/maps/earth/srtm/3/000000/000000_000007.jpg %%DATADIR%%/data/maps/earth/srtm/3/000000/000000_000008.jpg %%DATADIR%%/data/maps/earth/srtm/3/000000/000000_000009.jpg %%DATADIR%%/data/maps/earth/srtm/3/000000/000000_000010.jpg %%DATADIR%%/data/maps/earth/srtm/3/000000/000000_000011.jpg %%DATADIR%%/data/maps/earth/srtm/3/000000/000000_000012.jpg %%DATADIR%%/data/maps/earth/srtm/3/000000/000000_000013.jpg %%DATADIR%%/data/maps/earth/srtm/3/000000/000000_000014.jpg %%DATADIR%%/data/maps/earth/srtm/3/000000/000000_000015.jpg %%DATADIR%%/data/maps/earth/srtm/3/000001/000001_000000.jpg %%DATADIR%%/data/maps/earth/srtm/3/000001/000001_000001.jpg %%DATADIR%%/data/maps/earth/srtm/3/000001/000001_000002.jpg %%DATADIR%%/data/maps/earth/srtm/3/000001/000001_000003.jpg %%DATADIR%%/data/maps/earth/srtm/3/000001/000001_000004.jpg %%DATADIR%%/data/maps/earth/srtm/3/000001/000001_000005.jpg %%DATADIR%%/data/maps/earth/srtm/3/000001/000001_000006.jpg %%DATADIR%%/data/maps/earth/srtm/3/000001/000001_000007.jpg %%DATADIR%%/data/maps/earth/srtm/3/000001/000001_000008.jpg %%DATADIR%%/data/maps/earth/srtm/3/000001/000001_000009.jpg %%DATADIR%%/data/maps/earth/srtm/3/000001/000001_000010.jpg %%DATADIR%%/data/maps/earth/srtm/3/000001/000001_000011.jpg %%DATADIR%%/data/maps/earth/srtm/3/000001/000001_000012.jpg %%DATADIR%%/data/maps/earth/srtm/3/000001/000001_000013.jpg %%DATADIR%%/data/maps/earth/srtm/3/000001/000001_000014.jpg %%DATADIR%%/data/maps/earth/srtm/3/000001/000001_000015.jpg %%DATADIR%%/data/maps/earth/srtm/3/000002/000002_000000.jpg %%DATADIR%%/data/maps/earth/srtm/3/000002/000002_000001.jpg %%DATADIR%%/data/maps/earth/srtm/3/000002/000002_000002.jpg %%DATADIR%%/data/maps/earth/srtm/3/000002/000002_000003.jpg %%DATADIR%%/data/maps/earth/srtm/3/000002/000002_000004.jpg %%DATADIR%%/data/maps/earth/srtm/3/000002/000002_000005.jpg %%DATADIR%%/data/maps/earth/srtm/3/000002/000002_000006.jpg %%DATADIR%%/data/maps/earth/srtm/3/000002/000002_000007.jpg %%DATADIR%%/data/maps/earth/srtm/3/000002/000002_000008.jpg %%DATADIR%%/data/maps/earth/srtm/3/000002/000002_000009.jpg %%DATADIR%%/data/maps/earth/srtm/3/000002/000002_000010.jpg %%DATADIR%%/data/maps/earth/srtm/3/000002/000002_000011.jpg %%DATADIR%%/data/maps/earth/srtm/3/000002/000002_000012.jpg %%DATADIR%%/data/maps/earth/srtm/3/000002/000002_000013.jpg %%DATADIR%%/data/maps/earth/srtm/3/000002/000002_000014.jpg %%DATADIR%%/data/maps/earth/srtm/3/000002/000002_000015.jpg %%DATADIR%%/data/maps/earth/srtm/3/000003/000003_000000.jpg %%DATADIR%%/data/maps/earth/srtm/3/000003/000003_000001.jpg %%DATADIR%%/data/maps/earth/srtm/3/000003/000003_000002.jpg %%DATADIR%%/data/maps/earth/srtm/3/000003/000003_000003.jpg %%DATADIR%%/data/maps/earth/srtm/3/000003/000003_000004.jpg %%DATADIR%%/data/maps/earth/srtm/3/000003/000003_000005.jpg %%DATADIR%%/data/maps/earth/srtm/3/000003/000003_000006.jpg %%DATADIR%%/data/maps/earth/srtm/3/000003/000003_000007.jpg %%DATADIR%%/data/maps/earth/srtm/3/000003/000003_000008.jpg %%DATADIR%%/data/maps/earth/srtm/3/000003/000003_000009.jpg %%DATADIR%%/data/maps/earth/srtm/3/000003/000003_000010.jpg %%DATADIR%%/data/maps/earth/srtm/3/000003/000003_000011.jpg %%DATADIR%%/data/maps/earth/srtm/3/000003/000003_000012.jpg %%DATADIR%%/data/maps/earth/srtm/3/000003/000003_000013.jpg %%DATADIR%%/data/maps/earth/srtm/3/000003/000003_000014.jpg %%DATADIR%%/data/maps/earth/srtm/3/000003/000003_000015.jpg %%DATADIR%%/data/maps/earth/srtm/3/000004/000004_000000.jpg %%DATADIR%%/data/maps/earth/srtm/3/000004/000004_000001.jpg %%DATADIR%%/data/maps/earth/srtm/3/000004/000004_000002.jpg %%DATADIR%%/data/maps/earth/srtm/3/000004/000004_000003.jpg %%DATADIR%%/data/maps/earth/srtm/3/000004/000004_000004.jpg %%DATADIR%%/data/maps/earth/srtm/3/000004/000004_000005.jpg %%DATADIR%%/data/maps/earth/srtm/3/000004/000004_000006.jpg %%DATADIR%%/data/maps/earth/srtm/3/000004/000004_000007.jpg %%DATADIR%%/data/maps/earth/srtm/3/000004/000004_000008.jpg %%DATADIR%%/data/maps/earth/srtm/3/000004/000004_000009.jpg %%DATADIR%%/data/maps/earth/srtm/3/000004/000004_000010.jpg %%DATADIR%%/data/maps/earth/srtm/3/000004/000004_000011.jpg %%DATADIR%%/data/maps/earth/srtm/3/000004/000004_000012.jpg %%DATADIR%%/data/maps/earth/srtm/3/000004/000004_000013.jpg %%DATADIR%%/data/maps/earth/srtm/3/000004/000004_000014.jpg %%DATADIR%%/data/maps/earth/srtm/3/000004/000004_000015.jpg %%DATADIR%%/data/maps/earth/srtm/3/000005/000005_000000.jpg %%DATADIR%%/data/maps/earth/srtm/3/000005/000005_000001.jpg %%DATADIR%%/data/maps/earth/srtm/3/000005/000005_000002.jpg %%DATADIR%%/data/maps/earth/srtm/3/000005/000005_000003.jpg %%DATADIR%%/data/maps/earth/srtm/3/000005/000005_000004.jpg %%DATADIR%%/data/maps/earth/srtm/3/000005/000005_000005.jpg %%DATADIR%%/data/maps/earth/srtm/3/000005/000005_000006.jpg %%DATADIR%%/data/maps/earth/srtm/3/000005/000005_000007.jpg %%DATADIR%%/data/maps/earth/srtm/3/000005/000005_000008.jpg %%DATADIR%%/data/maps/earth/srtm/3/000005/000005_000009.jpg %%DATADIR%%/data/maps/earth/srtm/3/000005/000005_000010.jpg %%DATADIR%%/data/maps/earth/srtm/3/000005/000005_000011.jpg %%DATADIR%%/data/maps/earth/srtm/3/000005/000005_000012.jpg %%DATADIR%%/data/maps/earth/srtm/3/000005/000005_000013.jpg %%DATADIR%%/data/maps/earth/srtm/3/000005/000005_000014.jpg %%DATADIR%%/data/maps/earth/srtm/3/000005/000005_000015.jpg %%DATADIR%%/data/maps/earth/srtm/3/000006/000006_000000.jpg %%DATADIR%%/data/maps/earth/srtm/3/000006/000006_000001.jpg %%DATADIR%%/data/maps/earth/srtm/3/000006/000006_000002.jpg %%DATADIR%%/data/maps/earth/srtm/3/000006/000006_000003.jpg %%DATADIR%%/data/maps/earth/srtm/3/000006/000006_000004.jpg %%DATADIR%%/data/maps/earth/srtm/3/000006/000006_000005.jpg %%DATADIR%%/data/maps/earth/srtm/3/000006/000006_000006.jpg %%DATADIR%%/data/maps/earth/srtm/3/000006/000006_000007.jpg %%DATADIR%%/data/maps/earth/srtm/3/000006/000006_000008.jpg %%DATADIR%%/data/maps/earth/srtm/3/000006/000006_000009.jpg %%DATADIR%%/data/maps/earth/srtm/3/000006/000006_000010.jpg %%DATADIR%%/data/maps/earth/srtm/3/000006/000006_000011.jpg %%DATADIR%%/data/maps/earth/srtm/3/000006/000006_000012.jpg %%DATADIR%%/data/maps/earth/srtm/3/000006/000006_000013.jpg %%DATADIR%%/data/maps/earth/srtm/3/000006/000006_000014.jpg %%DATADIR%%/data/maps/earth/srtm/3/000006/000006_000015.jpg %%DATADIR%%/data/maps/earth/srtm/3/000007/000007_000000.jpg %%DATADIR%%/data/maps/earth/srtm/3/000007/000007_000001.jpg %%DATADIR%%/data/maps/earth/srtm/3/000007/000007_000002.jpg %%DATADIR%%/data/maps/earth/srtm/3/000007/000007_000003.jpg %%DATADIR%%/data/maps/earth/srtm/3/000007/000007_000004.jpg %%DATADIR%%/data/maps/earth/srtm/3/000007/000007_000005.jpg %%DATADIR%%/data/maps/earth/srtm/3/000007/000007_000006.jpg %%DATADIR%%/data/maps/earth/srtm/3/000007/000007_000007.jpg %%DATADIR%%/data/maps/earth/srtm/3/000007/000007_000008.jpg %%DATADIR%%/data/maps/earth/srtm/3/000007/000007_000009.jpg %%DATADIR%%/data/maps/earth/srtm/3/000007/000007_000010.jpg %%DATADIR%%/data/maps/earth/srtm/3/000007/000007_000011.jpg %%DATADIR%%/data/maps/earth/srtm/3/000007/000007_000012.jpg %%DATADIR%%/data/maps/earth/srtm/3/000007/000007_000013.jpg %%DATADIR%%/data/maps/earth/srtm/3/000007/000007_000014.jpg %%DATADIR%%/data/maps/earth/srtm/3/000007/000007_000015.jpg %%DATADIR%%/data/maps/earth/srtm/srtm-preview.png %%DATADIR%%/data/maps/earth/srtm/srtm.dgml %%DATADIR%%/data/maps/earth/srtm2/0/000000/000000_000000.png %%DATADIR%%/data/maps/earth/srtm2/0/000000/000000_000001.png %%DATADIR%%/data/maps/earth/srtm2/srtm2.dgml %%DATADIR%%/data/maps/earth/temp-dec/temp-dec-preview.png %%DATADIR%%/data/maps/earth/temp-dec/temp-dec.dgml %%DATADIR%%/data/maps/earth/temp-dec/temp-dec.jpg %%DATADIR%%/data/maps/earth/temp-july/temp-july-preview.png %%DATADIR%%/data/maps/earth/temp-july/temp-july.dgml %%DATADIR%%/data/maps/earth/temp-july/temp-july.jpg %%DATADIR%%/data/maps/earth/vectorosm/0/0/0.o5m %%DATADIR%%/data/maps/earth/vectorosm/legend.html %%DATADIR%%/data/maps/earth/vectorosm/vectorosm-preview.png %%DATADIR%%/data/maps/earth/vectorosm/vectorosm.dgml %%DATADIR%%/data/maps/moon/clementine/clementine-preview.png %%DATADIR%%/data/maps/moon/clementine/clementine.dgml %%DATADIR%%/data/maps/moon/clementine/clementine.jpg %%DATADIR%%/data/maps/moon/clementine/legend.html %%DATADIR%%/data/maps/moon/clementine/tour.kml %%DATADIR%%/data/mwdbii/DATELINE.PNT %%DATADIR%%/data/mwdbii/PCOAST.PNT %%DATADIR%%/data/mwdbii/PDIFFBORDER.PNT %%DATADIR%%/data/mwdbii/PGLACIER.PNT %%DATADIR%%/data/mwdbii/PISLAND.PNT %%DATADIR%%/data/mwdbii/PLAKE.PNT %%DATADIR%%/data/mwdbii/PLAKEISLAND.PNT %%DATADIR%%/data/mwdbii/PUSA48.DIFF.PNT %%DATADIR%%/data/mwdbii/RIVER.PNT %%DATADIR%%/data/naturalearth/ne_50m_admin_0_boundary_lines_land.pn2 %%DATADIR%%/data/naturalearth/ne_50m_admin_0_boundary_lines_maritime_indicator.pn2 %%DATADIR%%/data/naturalearth/ne_50m_admin_0_breakaway_disputed_areas.pn2 %%DATADIR%%/data/naturalearth/ne_50m_admin_0_countries.pn2 %%DATADIR%%/data/naturalearth/ne_50m_admin_0_pacific_groupings.pn2 %%DATADIR%%/data/naturalearth/ne_50m_admin_1_states_provinces_lines.pn2 %%DATADIR%%/data/naturalearth/ne_50m_antarctic_ice_shelves_lines.pn2 %%DATADIR%%/data/naturalearth/ne_50m_antarctic_ice_shelves_polys.pn2 %%DATADIR%%/data/naturalearth/ne_50m_coastline.pn2 %%DATADIR%%/data/naturalearth/ne_50m_glaciated_areas.pn2 %%DATADIR%%/data/naturalearth/ne_50m_lakes.pn2 %%DATADIR%%/data/naturalearth/ne_50m_lakes_historic.pn2 %%DATADIR%%/data/naturalearth/ne_50m_land.pn2 %%DATADIR%%/data/naturalearth/ne_50m_playas.pn2 %%DATADIR%%/data/naturalearth/ne_50m_rivers_lake_centerlines.pn2 %%DATADIR%%/data/naturalearth/ne_50m_urban_areas.pn2 %%DATADIR%%/data/placemarks/baseplacemarks.cache %%DATADIR%%/data/placemarks/boundaryplacemarks.cache %%DATADIR%%/data/placemarks/cityplacemarks.cache %%DATADIR%%/data/placemarks/elevplacemarks.cache %%DATADIR%%/data/placemarks/moonlandingsites.cache %%DATADIR%%/data/placemarks/moonterrain.cache %%DATADIR%%/data/placemarks/otherplacemarks.cache %%DATADIR%%/data/precipcolors.leg %%DATADIR%%/data/seacolors.leg %%DATADIR%%/data/stars/constellations.dat %%DATADIR%%/data/stars/deepsky.png %%DATADIR%%/data/stars/dso.dat %%DATADIR%%/data/stars/names.csv %%DATADIR%%/data/stars/stars.dat %%DATADIR%%/data/svg/application-x-marble-gray.png %%DATADIR%%/data/svg/application-x-marble.png %%DATADIR%%/data/svg/application-x-marble.svg %%DATADIR%%/data/svg/bookmark.svg %%DATADIR%%/data/svg/coordinate.svg %%DATADIR%%/data/svg/dot-circle-regular.svg %%DATADIR%%/data/svg/glow.png %%DATADIR%%/data/svg/lunarmap.svg %%DATADIR%%/data/svg/marble-logo-32dpi.png %%DATADIR%%/data/svg/marble-logo-72dpi.png %%DATADIR%%/data/svg/marble-logo-inverted-32dpi.png %%DATADIR%%/data/svg/marble-logo-inverted-72dpi.png %%DATADIR%%/data/svg/marble-logo.png %%DATADIR%%/data/svg/marble-logo.svg %%DATADIR%%/data/svg/marsmap.svg %%DATADIR%%/data/svg/material/maps/ic_directions_bike_48px.svg %%DATADIR%%/data/svg/material/maps/ic_directions_boat_48px.svg %%DATADIR%%/data/svg/material/maps/ic_directions_bus_48px.svg %%DATADIR%%/data/svg/material/maps/ic_directions_car_48px.svg %%DATADIR%%/data/svg/material/maps/ic_directions_railway_48px.svg %%DATADIR%%/data/svg/material/maps/ic_directions_run_48px.svg %%DATADIR%%/data/svg/material/maps/ic_directions_subway_48px.svg %%DATADIR%%/data/svg/material/maps/ic_directions_walk_48px.svg %%DATADIR%%/data/svg/material/maps/ic_tram_48px.svg %%DATADIR%%/data/svg/moon.png %%DATADIR%%/data/svg/osmcarto/svg/airtransport/aerodrome.svg %%DATADIR%%/data/svg/osmcarto/svg/airtransport/helipad.svg %%DATADIR%%/data/svg/osmcarto/svg/amenity/archaeological_site.16.svg %%DATADIR%%/data/svg/osmcarto/svg/amenity/artwork.svg %%DATADIR%%/data/svg/osmcarto/svg/amenity/atm.16.svg %%DATADIR%%/data/svg/osmcarto/svg/amenity/bank.16.svg %%DATADIR%%/data/svg/osmcarto/svg/amenity/bar.16.svg %%DATADIR%%/data/svg/osmcarto/svg/amenity/biergarten.16.svg %%DATADIR%%/data/svg/osmcarto/svg/amenity/cafe.16.svg %%DATADIR%%/data/svg/osmcarto/svg/amenity/car_wash.svg %%DATADIR%%/data/svg/osmcarto/svg/amenity/cave.svg %%DATADIR%%/data/svg/osmcarto/svg/amenity/cinema.16.svg %%DATADIR%%/data/svg/osmcarto/svg/amenity/community_centre-14.svg %%DATADIR%%/data/svg/osmcarto/svg/amenity/courthouse-16.svg %%DATADIR%%/data/svg/osmcarto/svg/amenity/drinking_water.16.svg %%DATADIR%%/data/svg/osmcarto/svg/amenity/emergency_phone.16.svg %%DATADIR%%/data/svg/osmcarto/svg/amenity/fast_food.16.svg %%DATADIR%%/data/svg/osmcarto/svg/amenity/firestation.16.svg %%DATADIR%%/data/svg/osmcarto/svg/amenity/fountain-14.svg %%DATADIR%%/data/svg/osmcarto/svg/amenity/information.16.svg %%DATADIR%%/data/svg/osmcarto/svg/amenity/library.20.svg %%DATADIR%%/data/svg/osmcarto/svg/amenity/monument.16.svg %%DATADIR%%/data/svg/osmcarto/svg/amenity/mountain_rescue.16.svg %%DATADIR%%/data/svg/osmcarto/svg/amenity/museum.16.svg %%DATADIR%%/data/svg/osmcarto/svg/amenity/nightclub.18.svg %%DATADIR%%/data/svg/osmcarto/svg/amenity/picnic.16.svg %%DATADIR%%/data/svg/osmcarto/svg/amenity/playground.16.svg %%DATADIR%%/data/svg/osmcarto/svg/amenity/police.16.svg %%DATADIR%%/data/svg/osmcarto/svg/amenity/post_box-12.svg %%DATADIR%%/data/svg/osmcarto/svg/amenity/post_office-14.svg %%DATADIR%%/data/svg/osmcarto/svg/amenity/prison.16.svg %%DATADIR%%/data/svg/osmcarto/svg/amenity/pub.16.svg %%DATADIR%%/data/svg/osmcarto/svg/amenity/recycling.16.svg %%DATADIR%%/data/svg/osmcarto/svg/amenity/restaurant.16.svg %%DATADIR%%/data/svg/osmcarto/svg/amenity/social_facility.svg %%DATADIR%%/data/svg/osmcarto/svg/amenity/telephone.16.svg %%DATADIR%%/data/svg/osmcarto/svg/amenity/theatre.16.svg %%DATADIR%%/data/svg/osmcarto/svg/amenity/toilets.16.svg %%DATADIR%%/data/svg/osmcarto/svg/amenity/tourist_memorial.16.svg %%DATADIR%%/data/svg/osmcarto/svg/amenity/town_hall.16.svg %%DATADIR%%/data/svg/osmcarto/svg/amenity/viewpoint.16.svg %%DATADIR%%/data/svg/osmcarto/svg/amenity/water_park.16.svg %%DATADIR%%/data/svg/osmcarto/svg/amenity/water_tower.16.svg %%DATADIR%%/data/svg/osmcarto/svg/amenity/windmill.16.svg %%DATADIR%%/data/svg/osmcarto/svg/black/buddhist.16.svg %%DATADIR%%/data/svg/osmcarto/svg/black/christian.16.svg %%DATADIR%%/data/svg/osmcarto/svg/black/hinduist.16.svg %%DATADIR%%/data/svg/osmcarto/svg/black/jewish.16.svg %%DATADIR%%/data/svg/osmcarto/svg/black/muslim.16.svg %%DATADIR%%/data/svg/osmcarto/svg/black/place_of_worship.16.svg %%DATADIR%%/data/svg/osmcarto/svg/black/power_wind-16.svg %%DATADIR%%/data/svg/osmcarto/svg/black/shintoist.16.svg %%DATADIR%%/data/svg/osmcarto/svg/black/sikhist.16.svg %%DATADIR%%/data/svg/osmcarto/svg/black/taoist.16.svg %%DATADIR%%/data/svg/osmcarto/svg/health/dentist.16.svg %%DATADIR%%/data/svg/osmcarto/svg/health/doctors.16.svg %%DATADIR%%/data/svg/osmcarto/svg/health/hospital.16.svg %%DATADIR%%/data/svg/osmcarto/svg/health/pharmacy.16.svg %%DATADIR%%/data/svg/osmcarto/svg/health/veterinary-14.svg %%DATADIR%%/data/svg/osmcarto/svg/individual/bench.16.svg %%DATADIR%%/data/svg/osmcarto/svg/individual/entrance.10.svg %%DATADIR%%/data/svg/osmcarto/svg/individual/gate.svg %%DATADIR%%/data/svg/osmcarto/svg/individual/level_crossing.svg %%DATADIR%%/data/svg/osmcarto/svg/individual/level_crossing2.svg %%DATADIR%%/data/svg/osmcarto/svg/individual/liftgate.svg %%DATADIR%%/data/svg/osmcarto/svg/individual/mini_roundabout.svg %%DATADIR%%/data/svg/osmcarto/svg/individual/peak.svg %%DATADIR%%/data/svg/osmcarto/svg/individual/power_tower.svg %%DATADIR%%/data/svg/osmcarto/svg/individual/power_tower_small.svg %%DATADIR%%/data/svg/osmcarto/svg/individual/pylon.svg %%DATADIR%%/data/svg/osmcarto/svg/individual/railway_station.svg %%DATADIR%%/data/svg/osmcarto/svg/individual/saddle.svg %%DATADIR%%/data/svg/osmcarto/svg/individual/speedcamera.svg %%DATADIR%%/data/svg/osmcarto/svg/individual/spring.svg %%DATADIR%%/data/svg/osmcarto/svg/individual/square.svg %%DATADIR%%/data/svg/osmcarto/svg/individual/traffic_light.svg %%DATADIR%%/data/svg/osmcarto/svg/individual/tree-16.svg %%DATADIR%%/data/svg/osmcarto/svg/individual/tree-29-autumn.svg %%DATADIR%%/data/svg/osmcarto/svg/individual/tree-29-winter.svg %%DATADIR%%/data/svg/osmcarto/svg/individual/tree-29.svg %%DATADIR%%/data/svg/osmcarto/svg/individual/volcano.svg %%DATADIR%%/data/svg/osmcarto/svg/individual/waste_basket.10.svg %%DATADIR%%/data/svg/osmcarto/svg/indoor/door.16.svg %%DATADIR%%/data/svg/osmcarto/svg/indoor/door_b.16.svg %%DATADIR%%/data/svg/osmcarto/svg/indoor/wall.16.svg %%DATADIR%%/data/svg/osmcarto/svg/indoor/wall_b.16.svg %%DATADIR%%/data/svg/osmcarto/svg/leisure/golf.svg %%DATADIR%%/data/svg/osmcarto/svg/leisure/miniature_golf.svg %%DATADIR%%/data/svg/osmcarto/svg/manmade/communications.16.svg %%DATADIR%%/data/svg/osmcarto/svg/manmade/hunting-stand.16.svg %%DATADIR%%/data/svg/osmcarto/svg/place/place-4-z7.svg %%DATADIR%%/data/svg/osmcarto/svg/place/place-4.svg %%DATADIR%%/data/svg/osmcarto/svg/place/place-6-z7.svg %%DATADIR%%/data/svg/osmcarto/svg/place/place-6.svg %%DATADIR%%/data/svg/osmcarto/svg/place/place-capital-6.svg %%DATADIR%%/data/svg/osmcarto/svg/place/place-capital-8.svg %%DATADIR%%/data/svg/osmcarto/svg/place/place-capital-adminlevel2.svg %%DATADIR%%/data/svg/osmcarto/svg/shop/art.svg %%DATADIR%%/data/svg/osmcarto/svg/shop/bag-14.svg %%DATADIR%%/data/svg/osmcarto/svg/shop/beauty-14.svg %%DATADIR%%/data/svg/osmcarto/svg/shop/beverages-14.svg %%DATADIR%%/data/svg/osmcarto/svg/shop/butcher-14.svg %%DATADIR%%/data/svg/osmcarto/svg/shop/car_parts-14.svg %%DATADIR%%/data/svg/osmcarto/svg/shop/chemist-14.svg %%DATADIR%%/data/svg/osmcarto/svg/shop/computer-14.svg %%DATADIR%%/data/svg/osmcarto/svg/shop/confectionery-14.svg %%DATADIR%%/data/svg/osmcarto/svg/shop/copyshop.svg %%DATADIR%%/data/svg/osmcarto/svg/shop/deli.svg %%DATADIR%%/data/svg/osmcarto/svg/shop/department_store-16.svg %%DATADIR%%/data/svg/osmcarto/svg/shop/florist.16.svg %%DATADIR%%/data/svg/osmcarto/svg/shop/garden_centre-14.svg %%DATADIR%%/data/svg/osmcarto/svg/shop/greengrocer-14.svg %%DATADIR%%/data/svg/osmcarto/svg/shop/hifi-14.svg %%DATADIR%%/data/svg/osmcarto/svg/shop/ice-cream-14.svg %%DATADIR%%/data/svg/osmcarto/svg/shop/kiosk-14.svg %%DATADIR%%/data/svg/osmcarto/svg/shop/laundry-14.svg %%DATADIR%%/data/svg/osmcarto/svg/shop/mobile_phone.svg %%DATADIR%%/data/svg/osmcarto/svg/shop/motorcycle-14.svg %%DATADIR%%/data/svg/osmcarto/svg/shop/musical_instrument-14.svg %%DATADIR%%/data/svg/osmcarto/svg/shop/newsagent-14.svg %%DATADIR%%/data/svg/osmcarto/svg/shop/outdoor-14.svg %%DATADIR%%/data/svg/osmcarto/svg/shop/perfumery-14.svg %%DATADIR%%/data/svg/osmcarto/svg/shop/photo-14.svg %%DATADIR%%/data/svg/osmcarto/svg/shop/seafood-14.svg %%DATADIR%%/data/svg/osmcarto/svg/shop/shop-14.svg %%DATADIR%%/data/svg/osmcarto/svg/shop/shop_alcohol.16.svg %%DATADIR%%/data/svg/osmcarto/svg/shop/shop_bakery.16.svg %%DATADIR%%/data/svg/osmcarto/svg/shop/shop_bicycle.16.svg %%DATADIR%%/data/svg/osmcarto/svg/shop/shop_books.16.svg %%DATADIR%%/data/svg/osmcarto/svg/shop/shop_car.svg %%DATADIR%%/data/svg/osmcarto/svg/shop/shop_clothes.16.svg %%DATADIR%%/data/svg/osmcarto/svg/shop/shop_convenience.svg %%DATADIR%%/data/svg/osmcarto/svg/shop/shop_diy.16.svg %%DATADIR%%/data/svg/osmcarto/svg/shop/shop_electronics.16.svg %%DATADIR%%/data/svg/osmcarto/svg/shop/shop_furniture.16.svg %%DATADIR%%/data/svg/osmcarto/svg/shop/shop_gift.16.svg %%DATADIR%%/data/svg/osmcarto/svg/shop/shop_hairdresser.16.svg %%DATADIR%%/data/svg/osmcarto/svg/shop/shop_jewelry.16.svg %%DATADIR%%/data/svg/osmcarto/svg/shop/shop_mobile_phone.16.svg %%DATADIR%%/data/svg/osmcarto/svg/shop/shop_optician.16.svg %%DATADIR%%/data/svg/osmcarto/svg/shop/shop_pet.16.svg %%DATADIR%%/data/svg/osmcarto/svg/shop/shop_shoes.16.svg %%DATADIR%%/data/svg/osmcarto/svg/shop/shop_supermarket.svg %%DATADIR%%/data/svg/osmcarto/svg/shop/shopping_car_repair.16.svg %%DATADIR%%/data/svg/osmcarto/svg/shop/sports.svg %%DATADIR%%/data/svg/osmcarto/svg/shop/stationery-14.svg %%DATADIR%%/data/svg/osmcarto/svg/shop/tea.svg %%DATADIR%%/data/svg/osmcarto/svg/shop/tobacco.svg %%DATADIR%%/data/svg/osmcarto/svg/shop/toys-14.svg %%DATADIR%%/data/svg/osmcarto/svg/shop/travel_agency-14.svg %%DATADIR%%/data/svg/osmcarto/svg/shop/variety_store-14.svg %%DATADIR%%/data/svg/osmcarto/svg/transportation/alpinehut.16.svg %%DATADIR%%/data/svg/osmcarto/svg/transportation/bicycle_parking.16.svg %%DATADIR%%/data/svg/osmcarto/svg/transportation/bus_station.16.svg %%DATADIR%%/data/svg/osmcarto/svg/transportation/bus_stop.12.svg %%DATADIR%%/data/svg/osmcarto/svg/transportation/camping.16.svg %%DATADIR%%/data/svg/osmcarto/svg/transportation/car_share.16.svg %%DATADIR%%/data/svg/osmcarto/svg/transportation/caravan_park.16.svg %%DATADIR%%/data/svg/osmcarto/svg/transportation/charging_station.svg %%DATADIR%%/data/svg/osmcarto/svg/transportation/elevator-12.svg %%DATADIR%%/data/svg/osmcarto/svg/transportation/embassy.16.svg %%DATADIR%%/data/svg/osmcarto/svg/transportation/ford.16.svg %%DATADIR%%/data/svg/osmcarto/svg/transportation/fuel.16.svg %%DATADIR%%/data/svg/osmcarto/svg/transportation/guest_house.16.svg %%DATADIR%%/data/svg/osmcarto/svg/transportation/hostel.16.svg %%DATADIR%%/data/svg/osmcarto/svg/transportation/hotel.16.svg %%DATADIR%%/data/svg/osmcarto/svg/transportation/lighthouse.16.svg %%DATADIR%%/data/svg/osmcarto/svg/transportation/motel.16.svg %%DATADIR%%/data/svg/osmcarto/svg/transportation/motorcycle_parking.16.svg %%DATADIR%%/data/svg/osmcarto/svg/transportation/parking.svg %%DATADIR%%/data/svg/osmcarto/svg/transportation/railway_crossing.svg %%DATADIR%%/data/svg/osmcarto/svg/transportation/rental_bicycle.16.svg %%DATADIR%%/data/svg/osmcarto/svg/transportation/rental_car.16.svg %%DATADIR%%/data/svg/osmcarto/svg/transportation/rental_ski.16.svg %%DATADIR%%/data/svg/osmcarto/svg/transportation/shelter.svg %%DATADIR%%/data/svg/osmcarto/svg/transportation/subway_entrance.svg %%DATADIR%%/data/svg/osmcarto/svg/transportation/taxi.16.svg %%DATADIR%%/data/svg/osmcarto/svg/transportation/traffic_light_crossing.svg %%DATADIR%%/data/svg/osmcarto/svg/transportation/wilderness_hut.svg %%DATADIR%%/data/svg/osmcarto/svg/transportation/zebra_crossing.svg %%DATADIR%%/data/svg/sun.png %%DATADIR%%/data/svg/sunshine.png %%DATADIR%%/data/svg/thenounproject/101965-inline-skater.svg %%DATADIR%%/data/svg/thenounproject/204712-hiker.svg %%DATADIR%%/data/svg/thenounproject/21636-gondola.svg %%DATADIR%%/data/svg/thenounproject/231-chair-lift.svg %%DATADIR%%/data/svg/thenounproject/2412-skiing-downhill.svg %%DATADIR%%/data/svg/thenounproject/245-ski-jump.svg %%DATADIR%%/data/svg/thenounproject/29366-skitour.svg %%DATADIR%%/data/svg/thenounproject/30231-skiing-cross-country.svg %%DATADIR%%/data/svg/thenounproject/365217-sled.svg %%DATADIR%%/data/svg/thenounproject/583813-cable-car.svg %%DATADIR%%/data/svg/thenounproject/61698-mountain-biking.svg %%DATADIR%%/data/svg/thenounproject/78374-horse-riding.svg %%DATADIR%%/data/svg/thenounproject/8803-platter-lift.svg %%DATADIR%%/data/svg/thenounproject/sports-245-ski-jump.svg %%DATADIR%%/data/svg/thenounproject/transportation-21636-gondola.svg %%DATADIR%%/data/svg/thenounproject/transportation-231-chair-lift.svg %%DATADIR%%/data/svg/thenounproject/transportation-583813-cable-car.svg %%DATADIR%%/data/svg/thenounproject/transportation-8803-platter-lift.svg %%DATADIR%%/data/svg/track_turtle.svg %%DATADIR%%/data/svg/wikipedia.svg %%DATADIR%%/data/svg/wikipedia_shadow.svg %%DATADIR%%/data/svg/worldmap.svg %%DATADIR%%/data/tempcolors.leg %%DATADIR%%/data/weather/bbc-stations.xml %%DATADIR%%/data/weather/weather-clear-night.png %%DATADIR%%/data/weather/weather-clear.png %%DATADIR%%/data/weather/weather-clouds-night.png %%DATADIR%%/data/weather/weather-clouds.png %%DATADIR%%/data/weather/weather-few-clouds-night.png %%DATADIR%%/data/weather/weather-few-clouds.png %%DATADIR%%/data/weather/weather-hail.png %%DATADIR%%/data/weather/weather-many-clouds.png %%DATADIR%%/data/weather/weather-mist.png %%DATADIR%%/data/weather/weather-none-available.png %%DATADIR%%/data/weather/weather-showers-day.png %%DATADIR%%/data/weather/weather-showers-night.png %%DATADIR%%/data/weather/weather-showers-scattered-day.png %%DATADIR%%/data/weather/weather-showers-scattered-night.png %%DATADIR%%/data/weather/weather-showers-scattered.png %%DATADIR%%/data/weather/weather-showers.png %%DATADIR%%/data/weather/weather-snow-rain.png %%DATADIR%%/data/weather/weather-snow-scattered-day.png %%DATADIR%%/data/weather/weather-snow-scattered-night.png %%DATADIR%%/data/weather/weather-snow-scattered.png %%DATADIR%%/data/weather/weather-snow.png %%DATADIR%%/data/weather/weather-storm-day.png %%DATADIR%%/data/weather/weather-storm-night.png %%DATADIR%%/data/weather/weather-storm.png %%DATADIR%%/data/weather/wind-arrows.svgz share/metainfo/org.kde.marble.appdata.xml share/metainfo/org.kde.plasma.worldclock.appdata.xml share/metainfo/org.kde.plasma.worldmap.appdata.xml share/mime/packages/geo.xml share/plasma/plasmoids/org.kde.plasma.worldclock/contents/config/config.qml share/plasma/plasmoids/org.kde.plasma.worldclock/contents/config/main.xml share/plasma/plasmoids/org.kde.plasma.worldclock/contents/ui/configMapDisplay.qml share/plasma/plasmoids/org.kde.plasma.worldclock/contents/ui/configTimeZones.qml share/plasma/plasmoids/org.kde.plasma.worldclock/contents/ui/main.qml share/plasma/plasmoids/org.kde.plasma.worldclock/metadata.desktop share/plasma/plasmoids/org.kde.plasma.worldclock/metadata.json share/plasma/wallpapers/org.kde.plasma.worldmap/contents/config/main.xml share/plasma/wallpapers/org.kde.plasma.worldmap/contents/ui/config.qml share/plasma/wallpapers/org.kde.plasma.worldmap/contents/ui/main.qml share/plasma/wallpapers/org.kde.plasma.worldmap/metadata.desktop share/plasma/wallpapers/org.kde.plasma.worldmap/metadata.json diff --git a/audio/audiocd-kio/distinfo b/audio/audiocd-kio/distinfo index 7a27b65c6073..06e7829ba36e 100644 --- a/audio/audiocd-kio/distinfo +++ b/audio/audiocd-kio/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1677828196 -SHA256 (KDE/release-service/22.12.3/audiocd-kio-22.12.3.tar.xz) = b80e518d200d7c60a650ccf78ebeb4fe7f849f97e3555c8a15131698e005d1a5 -SIZE (KDE/release-service/22.12.3/audiocd-kio-22.12.3.tar.xz) = 561604 +TIMESTAMP = 1681548365 +SHA256 (KDE/release-service/23.04.0/audiocd-kio-23.04.0.tar.xz) = febf680b5419b57d805c255e3111a85fa7188c86f419dd703063c44e729be787 +SIZE (KDE/release-service/23.04.0/audiocd-kio-23.04.0.tar.xz) = 562164 diff --git a/audio/audiocd-kio/pkg-plist b/audio/audiocd-kio/pkg-plist index b80703dd132c..6aa2dd6c8570 100644 --- a/audio/audiocd-kio/pkg-plist +++ b/audio/audiocd-kio/pkg-plist @@ -1,396 +1,397 @@ -include/audiocdencoder.h -include/audiocdplugins_export.h +include/audiocdplugins/audiocdencoder.h +include/audiocdplugins/audiocdplugins_export.h +include/audiocdplugins/audiocdplugins_version.h lib/libaudiocdplugins.so lib/libaudiocdplugins.so.5 -lib/libaudiocdplugins.so.5.0.0 -%%QT_PLUGINDIR%%/kcm_audiocd.so +lib/libaudiocdplugins.so.5.1.0 %%QT_PLUGINDIR%%/kf5/kio/audiocd.so %%QT_PLUGINDIR%%/libaudiocd_encoder_flac.so %%QT_PLUGINDIR%%/libaudiocd_encoder_lame.so %%QT_PLUGINDIR%%/libaudiocd_encoder_opus.so %%QT_PLUGINDIR%%/libaudiocd_encoder_wav.so +%%QT_PLUGINDIR%%/plasma/kcms/systemsettings_qwidgets/kcm_audiocd.so +share/applications/kcm_audiocd.desktop share/config.kcfg/audiocd_flac_encoder.kcfg share/config.kcfg/audiocd_lame_encoder.kcfg share/config.kcfg/audiocd_opus_encoder.kcfg share/konqsidebartng/virtual_folders/services/audiocd.desktop -share/kservices5/audiocd.desktop share/locale/af/LC_MESSAGES/kcmaudiocd.mo share/locale/af/LC_MESSAGES/kio_audiocd.mo share/locale/ar/LC_MESSAGES/audiocd_encoder_flac.mo share/locale/ar/LC_MESSAGES/audiocd_encoder_lame.mo share/locale/ar/LC_MESSAGES/audiocd_encoder_opus.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/az/LC_MESSAGES/audiocd_encoder_flac.mo share/locale/az/LC_MESSAGES/audiocd_encoder_lame.mo share/locale/az/LC_MESSAGES/audiocd_encoder_opus.mo share/locale/az/LC_MESSAGES/audiocd_encoder_vorbis.mo share/locale/az/LC_MESSAGES/kcmaudiocd.mo share/locale/az/LC_MESSAGES/kio_audiocd.mo share/locale/be/LC_MESSAGES/audiocd_encoder_lame.mo share/locale/be/LC_MESSAGES/audiocd_encoder_vorbis.mo share/locale/be/LC_MESSAGES/kcmaudiocd.mo share/locale/be/LC_MESSAGES/kio_audiocd.mo share/locale/bg/LC_MESSAGES/audiocd_encoder_flac.mo share/locale/bg/LC_MESSAGES/audiocd_encoder_lame.mo share/locale/bg/LC_MESSAGES/audiocd_encoder_opus.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/bn/LC_MESSAGES/kio_audiocd.mo share/locale/br/LC_MESSAGES/audiocd_encoder_lame.mo share/locale/br/LC_MESSAGES/audiocd_encoder_vorbis.mo share/locale/br/LC_MESSAGES/kcmaudiocd.mo share/locale/br/LC_MESSAGES/kio_audiocd.mo share/locale/bs/LC_MESSAGES/audiocd_encoder_lame.mo share/locale/bs/LC_MESSAGES/audiocd_encoder_vorbis.mo share/locale/bs/LC_MESSAGES/kcmaudiocd.mo share/locale/bs/LC_MESSAGES/kio_audiocd.mo share/locale/ca/LC_MESSAGES/audiocd_encoder_flac.mo share/locale/ca/LC_MESSAGES/audiocd_encoder_lame.mo share/locale/ca/LC_MESSAGES/audiocd_encoder_opus.mo share/locale/ca/LC_MESSAGES/audiocd_encoder_vorbis.mo share/locale/ca/LC_MESSAGES/kcmaudiocd.mo share/locale/ca/LC_MESSAGES/kio_audiocd.mo share/locale/ca@valencia/LC_MESSAGES/audiocd_encoder_flac.mo share/locale/ca@valencia/LC_MESSAGES/audiocd_encoder_lame.mo share/locale/ca@valencia/LC_MESSAGES/audiocd_encoder_opus.mo share/locale/ca@valencia/LC_MESSAGES/audiocd_encoder_vorbis.mo share/locale/ca@valencia/LC_MESSAGES/kcmaudiocd.mo share/locale/ca@valencia/LC_MESSAGES/kio_audiocd.mo share/locale/cs/LC_MESSAGES/audiocd_encoder_flac.mo share/locale/cs/LC_MESSAGES/audiocd_encoder_lame.mo share/locale/cs/LC_MESSAGES/audiocd_encoder_opus.mo share/locale/cs/LC_MESSAGES/audiocd_encoder_vorbis.mo share/locale/cs/LC_MESSAGES/kcmaudiocd.mo share/locale/cs/LC_MESSAGES/kio_audiocd.mo share/locale/csb/LC_MESSAGES/kio_audiocd.mo share/locale/cy/LC_MESSAGES/audiocd_encoder_lame.mo share/locale/cy/LC_MESSAGES/audiocd_encoder_vorbis.mo share/locale/cy/LC_MESSAGES/kcmaudiocd.mo share/locale/cy/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_opus.mo share/locale/da/LC_MESSAGES/audiocd_encoder_vorbis.mo share/locale/da/LC_MESSAGES/kcmaudiocd.mo share/locale/da/LC_MESSAGES/kio_audiocd.mo share/locale/de/LC_MESSAGES/audiocd_encoder_flac.mo share/locale/de/LC_MESSAGES/audiocd_encoder_lame.mo share/locale/de/LC_MESSAGES/audiocd_encoder_opus.mo share/locale/de/LC_MESSAGES/audiocd_encoder_vorbis.mo share/locale/de/LC_MESSAGES/kcmaudiocd.mo share/locale/de/LC_MESSAGES/kio_audiocd.mo share/locale/el/LC_MESSAGES/audiocd_encoder_flac.mo share/locale/el/LC_MESSAGES/audiocd_encoder_lame.mo share/locale/el/LC_MESSAGES/audiocd_encoder_opus.mo share/locale/el/LC_MESSAGES/audiocd_encoder_vorbis.mo share/locale/el/LC_MESSAGES/kcmaudiocd.mo share/locale/el/LC_MESSAGES/kio_audiocd.mo share/locale/en_GB/LC_MESSAGES/audiocd_encoder_flac.mo share/locale/en_GB/LC_MESSAGES/audiocd_encoder_lame.mo share/locale/en_GB/LC_MESSAGES/audiocd_encoder_opus.mo share/locale/en_GB/LC_MESSAGES/audiocd_encoder_vorbis.mo share/locale/en_GB/LC_MESSAGES/kcmaudiocd.mo share/locale/en_GB/LC_MESSAGES/kio_audiocd.mo share/locale/eo/LC_MESSAGES/audiocd_encoder_lame.mo share/locale/eo/LC_MESSAGES/audiocd_encoder_vorbis.mo share/locale/eo/LC_MESSAGES/kcmaudiocd.mo share/locale/eo/LC_MESSAGES/kio_audiocd.mo share/locale/es/LC_MESSAGES/audiocd_encoder_flac.mo share/locale/es/LC_MESSAGES/audiocd_encoder_lame.mo share/locale/es/LC_MESSAGES/audiocd_encoder_opus.mo share/locale/es/LC_MESSAGES/audiocd_encoder_vorbis.mo share/locale/es/LC_MESSAGES/kcmaudiocd.mo share/locale/es/LC_MESSAGES/kio_audiocd.mo share/locale/et/LC_MESSAGES/audiocd_encoder_flac.mo share/locale/et/LC_MESSAGES/audiocd_encoder_lame.mo share/locale/et/LC_MESSAGES/audiocd_encoder_opus.mo share/locale/et/LC_MESSAGES/audiocd_encoder_vorbis.mo share/locale/et/LC_MESSAGES/kcmaudiocd.mo share/locale/et/LC_MESSAGES/kio_audiocd.mo share/locale/eu/LC_MESSAGES/audiocd_encoder_flac.mo share/locale/eu/LC_MESSAGES/audiocd_encoder_lame.mo share/locale/eu/LC_MESSAGES/audiocd_encoder_opus.mo share/locale/eu/LC_MESSAGES/audiocd_encoder_vorbis.mo share/locale/eu/LC_MESSAGES/kcmaudiocd.mo share/locale/eu/LC_MESSAGES/kio_audiocd.mo share/locale/fa/LC_MESSAGES/audiocd_encoder_lame.mo share/locale/fa/LC_MESSAGES/audiocd_encoder_vorbis.mo share/locale/fa/LC_MESSAGES/kcmaudiocd.mo share/locale/fa/LC_MESSAGES/kio_audiocd.mo share/locale/fi/LC_MESSAGES/audiocd_encoder_flac.mo share/locale/fi/LC_MESSAGES/audiocd_encoder_lame.mo share/locale/fi/LC_MESSAGES/audiocd_encoder_opus.mo share/locale/fi/LC_MESSAGES/audiocd_encoder_vorbis.mo share/locale/fi/LC_MESSAGES/kcmaudiocd.mo share/locale/fi/LC_MESSAGES/kio_audiocd.mo share/locale/fr/LC_MESSAGES/audiocd_encoder_flac.mo share/locale/fr/LC_MESSAGES/audiocd_encoder_lame.mo share/locale/fr/LC_MESSAGES/audiocd_encoder_opus.mo share/locale/fr/LC_MESSAGES/audiocd_encoder_vorbis.mo share/locale/fr/LC_MESSAGES/kcmaudiocd.mo share/locale/fr/LC_MESSAGES/kio_audiocd.mo share/locale/ga/LC_MESSAGES/audiocd_encoder_lame.mo share/locale/ga/LC_MESSAGES/audiocd_encoder_vorbis.mo share/locale/ga/LC_MESSAGES/kcmaudiocd.mo share/locale/ga/LC_MESSAGES/kio_audiocd.mo share/locale/gl/LC_MESSAGES/audiocd_encoder_flac.mo share/locale/gl/LC_MESSAGES/audiocd_encoder_lame.mo share/locale/gl/LC_MESSAGES/audiocd_encoder_opus.mo share/locale/gl/LC_MESSAGES/audiocd_encoder_vorbis.mo share/locale/gl/LC_MESSAGES/kcmaudiocd.mo share/locale/gl/LC_MESSAGES/kio_audiocd.mo share/locale/he/LC_MESSAGES/audiocd_encoder_lame.mo share/locale/he/LC_MESSAGES/audiocd_encoder_vorbis.mo share/locale/he/LC_MESSAGES/kcmaudiocd.mo share/locale/he/LC_MESSAGES/kio_audiocd.mo share/locale/hi/LC_MESSAGES/audiocd_encoder_lame.mo share/locale/hi/LC_MESSAGES/audiocd_encoder_vorbis.mo share/locale/hi/LC_MESSAGES/kcmaudiocd.mo share/locale/hi/LC_MESSAGES/kio_audiocd.mo share/locale/hne/LC_MESSAGES/audiocd_encoder_lame.mo share/locale/hne/LC_MESSAGES/audiocd_encoder_vorbis.mo share/locale/hne/LC_MESSAGES/kcmaudiocd.mo share/locale/hne/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_opus.mo share/locale/hu/LC_MESSAGES/audiocd_encoder_vorbis.mo share/locale/hu/LC_MESSAGES/kcmaudiocd.mo share/locale/hu/LC_MESSAGES/kio_audiocd.mo share/locale/ia/LC_MESSAGES/audiocd_encoder_flac.mo share/locale/ia/LC_MESSAGES/audiocd_encoder_lame.mo share/locale/ia/LC_MESSAGES/audiocd_encoder_opus.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/audiocd_encoder_flac.mo share/locale/id/LC_MESSAGES/kio_audiocd.mo share/locale/is/LC_MESSAGES/audiocd_encoder_flac.mo share/locale/is/LC_MESSAGES/audiocd_encoder_lame.mo share/locale/is/LC_MESSAGES/audiocd_encoder_opus.mo share/locale/is/LC_MESSAGES/audiocd_encoder_vorbis.mo share/locale/is/LC_MESSAGES/kcmaudiocd.mo share/locale/is/LC_MESSAGES/kio_audiocd.mo share/locale/it/LC_MESSAGES/audiocd_encoder_flac.mo share/locale/it/LC_MESSAGES/audiocd_encoder_lame.mo share/locale/it/LC_MESSAGES/audiocd_encoder_opus.mo share/locale/it/LC_MESSAGES/audiocd_encoder_vorbis.mo share/locale/it/LC_MESSAGES/kcmaudiocd.mo share/locale/it/LC_MESSAGES/kio_audiocd.mo share/locale/ja/LC_MESSAGES/audiocd_encoder_flac.mo share/locale/ja/LC_MESSAGES/audiocd_encoder_lame.mo share/locale/ja/LC_MESSAGES/audiocd_encoder_opus.mo share/locale/ja/LC_MESSAGES/audiocd_encoder_vorbis.mo share/locale/ja/LC_MESSAGES/kcmaudiocd.mo share/locale/ja/LC_MESSAGES/kio_audiocd.mo share/locale/ka/LC_MESSAGES/audiocd_encoder_flac.mo share/locale/ka/LC_MESSAGES/audiocd_encoder_lame.mo share/locale/ka/LC_MESSAGES/audiocd_encoder_opus.mo share/locale/ka/LC_MESSAGES/audiocd_encoder_vorbis.mo share/locale/ka/LC_MESSAGES/kcmaudiocd.mo share/locale/ka/LC_MESSAGES/kio_audiocd.mo share/locale/kk/LC_MESSAGES/audiocd_encoder_lame.mo share/locale/kk/LC_MESSAGES/audiocd_encoder_vorbis.mo share/locale/kk/LC_MESSAGES/kcmaudiocd.mo share/locale/kk/LC_MESSAGES/kio_audiocd.mo share/locale/km/LC_MESSAGES/audiocd_encoder_lame.mo share/locale/km/LC_MESSAGES/audiocd_encoder_vorbis.mo share/locale/km/LC_MESSAGES/kcmaudiocd.mo share/locale/km/LC_MESSAGES/kio_audiocd.mo share/locale/ko/LC_MESSAGES/audiocd_encoder_flac.mo share/locale/ko/LC_MESSAGES/audiocd_encoder_lame.mo share/locale/ko/LC_MESSAGES/audiocd_encoder_opus.mo share/locale/ko/LC_MESSAGES/audiocd_encoder_vorbis.mo share/locale/ko/LC_MESSAGES/kcmaudiocd.mo share/locale/ko/LC_MESSAGES/kio_audiocd.mo share/locale/lt/LC_MESSAGES/audiocd_encoder_flac.mo share/locale/lt/LC_MESSAGES/audiocd_encoder_lame.mo share/locale/lt/LC_MESSAGES/audiocd_encoder_opus.mo share/locale/lt/LC_MESSAGES/audiocd_encoder_vorbis.mo share/locale/lt/LC_MESSAGES/kcmaudiocd.mo share/locale/lt/LC_MESSAGES/kio_audiocd.mo share/locale/lv/LC_MESSAGES/audiocd_encoder_lame.mo share/locale/lv/LC_MESSAGES/audiocd_encoder_vorbis.mo share/locale/lv/LC_MESSAGES/kcmaudiocd.mo share/locale/lv/LC_MESSAGES/kio_audiocd.mo share/locale/mk/LC_MESSAGES/audiocd_encoder_lame.mo share/locale/mk/LC_MESSAGES/audiocd_encoder_vorbis.mo share/locale/mk/LC_MESSAGES/kcmaudiocd.mo share/locale/mk/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/ms/LC_MESSAGES/audiocd_encoder_lame.mo share/locale/ms/LC_MESSAGES/audiocd_encoder_vorbis.mo share/locale/ms/LC_MESSAGES/kcmaudiocd.mo share/locale/ms/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/ne/LC_MESSAGES/audiocd_encoder_lame.mo share/locale/ne/LC_MESSAGES/audiocd_encoder_vorbis.mo share/locale/ne/LC_MESSAGES/kcmaudiocd.mo share/locale/ne/LC_MESSAGES/kio_audiocd.mo share/locale/nl/LC_MESSAGES/audiocd_encoder_flac.mo share/locale/nl/LC_MESSAGES/audiocd_encoder_lame.mo share/locale/nl/LC_MESSAGES/audiocd_encoder_opus.mo share/locale/nl/LC_MESSAGES/audiocd_encoder_vorbis.mo share/locale/nl/LC_MESSAGES/kcmaudiocd.mo share/locale/nl/LC_MESSAGES/kio_audiocd.mo share/locale/nn/LC_MESSAGES/audiocd_encoder_flac.mo share/locale/nn/LC_MESSAGES/audiocd_encoder_lame.mo share/locale/nn/LC_MESSAGES/audiocd_encoder_opus.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/oc/LC_MESSAGES/audiocd_encoder_lame.mo share/locale/oc/LC_MESSAGES/audiocd_encoder_vorbis.mo share/locale/oc/LC_MESSAGES/kcmaudiocd.mo share/locale/oc/LC_MESSAGES/kio_audiocd.mo share/locale/pa/LC_MESSAGES/audiocd_encoder_lame.mo share/locale/pa/LC_MESSAGES/audiocd_encoder_vorbis.mo share/locale/pa/LC_MESSAGES/kcmaudiocd.mo share/locale/pa/LC_MESSAGES/kio_audiocd.mo share/locale/pl/LC_MESSAGES/audiocd_encoder_flac.mo share/locale/pl/LC_MESSAGES/audiocd_encoder_lame.mo share/locale/pl/LC_MESSAGES/audiocd_encoder_opus.mo share/locale/pl/LC_MESSAGES/audiocd_encoder_vorbis.mo share/locale/pl/LC_MESSAGES/kcmaudiocd.mo share/locale/pl/LC_MESSAGES/kio_audiocd.mo share/locale/pt/LC_MESSAGES/audiocd_encoder_flac.mo share/locale/pt/LC_MESSAGES/audiocd_encoder_lame.mo share/locale/pt/LC_MESSAGES/audiocd_encoder_opus.mo share/locale/pt/LC_MESSAGES/audiocd_encoder_vorbis.mo share/locale/pt/LC_MESSAGES/kcmaudiocd.mo share/locale/pt/LC_MESSAGES/kio_audiocd.mo share/locale/pt_BR/LC_MESSAGES/audiocd_encoder_flac.mo share/locale/pt_BR/LC_MESSAGES/audiocd_encoder_lame.mo share/locale/pt_BR/LC_MESSAGES/audiocd_encoder_opus.mo share/locale/pt_BR/LC_MESSAGES/audiocd_encoder_vorbis.mo share/locale/pt_BR/LC_MESSAGES/kcmaudiocd.mo share/locale/pt_BR/LC_MESSAGES/kio_audiocd.mo share/locale/ro/LC_MESSAGES/audiocd_encoder_flac.mo share/locale/ro/LC_MESSAGES/audiocd_encoder_lame.mo share/locale/ro/LC_MESSAGES/audiocd_encoder_opus.mo share/locale/ro/LC_MESSAGES/audiocd_encoder_vorbis.mo share/locale/ro/LC_MESSAGES/kcmaudiocd.mo share/locale/ro/LC_MESSAGES/kio_audiocd.mo share/locale/ru/LC_MESSAGES/audiocd_encoder_flac.mo share/locale/ru/LC_MESSAGES/audiocd_encoder_lame.mo share/locale/ru/LC_MESSAGES/audiocd_encoder_opus.mo share/locale/ru/LC_MESSAGES/audiocd_encoder_vorbis.mo share/locale/ru/LC_MESSAGES/kcmaudiocd.mo share/locale/ru/LC_MESSAGES/kio_audiocd.mo share/locale/se/LC_MESSAGES/audiocd_encoder_lame.mo share/locale/se/LC_MESSAGES/audiocd_encoder_vorbis.mo share/locale/se/LC_MESSAGES/kcmaudiocd.mo share/locale/se/LC_MESSAGES/kio_audiocd.mo share/locale/sk/LC_MESSAGES/audiocd_encoder_flac.mo share/locale/sk/LC_MESSAGES/audiocd_encoder_lame.mo share/locale/sk/LC_MESSAGES/audiocd_encoder_opus.mo share/locale/sk/LC_MESSAGES/audiocd_encoder_vorbis.mo share/locale/sk/LC_MESSAGES/kcmaudiocd.mo share/locale/sk/LC_MESSAGES/kio_audiocd.mo share/locale/sl/LC_MESSAGES/audiocd_encoder_flac.mo share/locale/sl/LC_MESSAGES/audiocd_encoder_lame.mo share/locale/sl/LC_MESSAGES/audiocd_encoder_opus.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/sq/LC_MESSAGES/audiocd_encoder_lame.mo share/locale/sq/LC_MESSAGES/audiocd_encoder_vorbis.mo share/locale/sq/LC_MESSAGES/kcmaudiocd.mo share/locale/sq/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/sr@ijekavian/LC_MESSAGES/audiocd_encoder_flac.mo share/locale/sr@ijekavian/LC_MESSAGES/audiocd_encoder_lame.mo share/locale/sr@ijekavian/LC_MESSAGES/audiocd_encoder_vorbis.mo share/locale/sr@ijekavian/LC_MESSAGES/kcmaudiocd.mo share/locale/sr@ijekavian/LC_MESSAGES/kio_audiocd.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/audiocd_encoder_flac.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/audiocd_encoder_lame.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/audiocd_encoder_vorbis.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kcmaudiocd.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kio_audiocd.mo share/locale/sr@latin/LC_MESSAGES/audiocd_encoder_flac.mo share/locale/sr@latin/LC_MESSAGES/audiocd_encoder_lame.mo share/locale/sr@latin/LC_MESSAGES/audiocd_encoder_vorbis.mo share/locale/sr@latin/LC_MESSAGES/kcmaudiocd.mo share/locale/sr@latin/LC_MESSAGES/kio_audiocd.mo share/locale/sv/LC_MESSAGES/audiocd_encoder_flac.mo share/locale/sv/LC_MESSAGES/audiocd_encoder_lame.mo share/locale/sv/LC_MESSAGES/audiocd_encoder_opus.mo share/locale/sv/LC_MESSAGES/audiocd_encoder_vorbis.mo share/locale/sv/LC_MESSAGES/kcmaudiocd.mo share/locale/sv/LC_MESSAGES/kio_audiocd.mo share/locale/ta/LC_MESSAGES/audiocd_encoder_lame.mo share/locale/ta/LC_MESSAGES/audiocd_encoder_vorbis.mo share/locale/ta/LC_MESSAGES/kcmaudiocd.mo share/locale/ta/LC_MESSAGES/kio_audiocd.mo share/locale/tg/LC_MESSAGES/audiocd_encoder_lame.mo share/locale/tg/LC_MESSAGES/audiocd_encoder_vorbis.mo share/locale/tg/LC_MESSAGES/kcmaudiocd.mo share/locale/tg/LC_MESSAGES/kio_audiocd.mo share/locale/th/LC_MESSAGES/audiocd_encoder_lame.mo share/locale/th/LC_MESSAGES/audiocd_encoder_vorbis.mo share/locale/th/LC_MESSAGES/kcmaudiocd.mo share/locale/th/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_opus.mo share/locale/tr/LC_MESSAGES/audiocd_encoder_vorbis.mo share/locale/tr/LC_MESSAGES/kcmaudiocd.mo share/locale/tr/LC_MESSAGES/kio_audiocd.mo share/locale/ug/LC_MESSAGES/audiocd_encoder_lame.mo share/locale/ug/LC_MESSAGES/audiocd_encoder_vorbis.mo share/locale/ug/LC_MESSAGES/kcmaudiocd.mo share/locale/ug/LC_MESSAGES/kio_audiocd.mo share/locale/uk/LC_MESSAGES/audiocd_encoder_flac.mo share/locale/uk/LC_MESSAGES/audiocd_encoder_lame.mo share/locale/uk/LC_MESSAGES/audiocd_encoder_opus.mo share/locale/uk/LC_MESSAGES/audiocd_encoder_vorbis.mo share/locale/uk/LC_MESSAGES/kcmaudiocd.mo share/locale/uk/LC_MESSAGES/kio_audiocd.mo share/locale/vi/LC_MESSAGES/kcmaudiocd.mo share/locale/vi/LC_MESSAGES/kio_audiocd.mo share/locale/wa/LC_MESSAGES/kcmaudiocd.mo share/locale/wa/LC_MESSAGES/kio_audiocd.mo share/locale/xh/LC_MESSAGES/kcmaudiocd.mo share/locale/xh/LC_MESSAGES/kio_audiocd.mo share/locale/zh_CN/LC_MESSAGES/audiocd_encoder_flac.mo share/locale/zh_CN/LC_MESSAGES/audiocd_encoder_lame.mo share/locale/zh_CN/LC_MESSAGES/audiocd_encoder_opus.mo share/locale/zh_CN/LC_MESSAGES/audiocd_encoder_vorbis.mo share/locale/zh_CN/LC_MESSAGES/kcmaudiocd.mo share/locale/zh_CN/LC_MESSAGES/kio_audiocd.mo share/locale/zh_HK/LC_MESSAGES/audiocd_encoder_lame.mo share/locale/zh_HK/LC_MESSAGES/audiocd_encoder_vorbis.mo share/locale/zh_HK/LC_MESSAGES/kcmaudiocd.mo share/locale/zh_HK/LC_MESSAGES/kio_audiocd.mo share/locale/zh_TW/LC_MESSAGES/audiocd_encoder_flac.mo share/locale/zh_TW/LC_MESSAGES/audiocd_encoder_lame.mo share/locale/zh_TW/LC_MESSAGES/audiocd_encoder_opus.mo share/locale/zh_TW/LC_MESSAGES/audiocd_encoder_vorbis.mo share/locale/zh_TW/LC_MESSAGES/kcmaudiocd.mo share/locale/zh_TW/LC_MESSAGES/kio_audiocd.mo share/metainfo/org.kde.kio_audiocd.metainfo.xml share/qlogging-categories5/kio_audiocd.categories share/qlogging-categories5/kio_audiocd.renamecategories share/solid/actions/solid_audiocd.desktop diff --git a/audio/elisa/distinfo b/audio/elisa/distinfo index 78c898842ced..9d5d596db01f 100644 --- a/audio/elisa/distinfo +++ b/audio/elisa/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1677828191 -SHA256 (KDE/release-service/22.12.3/elisa-22.12.3.tar.xz) = 79b12f642efe07aacdd35ecec6c2adf702ae6b5fd16e81f91d5ff5be8bcbb23f -SIZE (KDE/release-service/22.12.3/elisa-22.12.3.tar.xz) = 1798840 +TIMESTAMP = 1681548368 +SHA256 (KDE/release-service/23.04.0/elisa-23.04.0.tar.xz) = a086572cd0f721834a071a8748e7c1cc76ae01102f287a355a36507157784d63 +SIZE (KDE/release-service/23.04.0/elisa-23.04.0.tar.xz) = 1810040 diff --git a/audio/elisa/pkg-plist b/audio/elisa/pkg-plist index 28e5744a638d..cf09b911b034 100644 --- a/audio/elisa/pkg-plist +++ b/audio/elisa/pkg-plist @@ -1,59 +1,60 @@ bin/elisa lib/elisa/libelisaLib.so.0 lib/elisa/libelisaLib.so.0.1 %%QT_QMLDIR%%/org/kde/elisa/libelisaqmlplugin.so %%QT_QMLDIR%%/org/kde/elisa/plugins.qmltypes %%QT_QMLDIR%%/org/kde/elisa/qmldir share/applications/org.kde.elisa.desktop share/dbus-1/services/org.kde.elisa.service share/icons/hicolor/128x128/apps/elisa.png share/icons/hicolor/16x16/apps/elisa.png share/icons/hicolor/22x22/apps/elisa.png share/icons/hicolor/32x32/apps/elisa.png share/icons/hicolor/48x48/apps/elisa.png share/icons/hicolor/64x64/apps/elisa.png share/icons/hicolor/scalable/apps/elisa.svg share/locale/ar/LC_MESSAGES/elisa.mo share/locale/az/LC_MESSAGES/elisa.mo +share/locale/be/LC_MESSAGES/elisa.mo share/locale/bg/LC_MESSAGES/elisa.mo share/locale/bs/LC_MESSAGES/elisa.mo share/locale/ca/LC_MESSAGES/elisa.mo share/locale/ca@valencia/LC_MESSAGES/elisa.mo share/locale/cs/LC_MESSAGES/elisa.mo share/locale/da/LC_MESSAGES/elisa.mo share/locale/de/LC_MESSAGES/elisa.mo share/locale/el/LC_MESSAGES/elisa.mo share/locale/en_GB/LC_MESSAGES/elisa.mo share/locale/es/LC_MESSAGES/elisa.mo share/locale/et/LC_MESSAGES/elisa.mo share/locale/eu/LC_MESSAGES/elisa.mo share/locale/fi/LC_MESSAGES/elisa.mo share/locale/fr/LC_MESSAGES/elisa.mo share/locale/gl/LC_MESSAGES/elisa.mo share/locale/hi/LC_MESSAGES/elisa.mo share/locale/hu/LC_MESSAGES/elisa.mo share/locale/ia/LC_MESSAGES/elisa.mo share/locale/id/LC_MESSAGES/elisa.mo share/locale/it/LC_MESSAGES/elisa.mo share/locale/ja/LC_MESSAGES/elisa.mo share/locale/ka/LC_MESSAGES/elisa.mo share/locale/ko/LC_MESSAGES/elisa.mo share/locale/lt/LC_MESSAGES/elisa.mo share/locale/nl/LC_MESSAGES/elisa.mo share/locale/nn/LC_MESSAGES/elisa.mo share/locale/pa/LC_MESSAGES/elisa.mo share/locale/pl/LC_MESSAGES/elisa.mo share/locale/pt/LC_MESSAGES/elisa.mo share/locale/pt_BR/LC_MESSAGES/elisa.mo share/locale/ro/LC_MESSAGES/elisa.mo share/locale/ru/LC_MESSAGES/elisa.mo share/locale/sk/LC_MESSAGES/elisa.mo share/locale/sl/LC_MESSAGES/elisa.mo share/locale/sv/LC_MESSAGES/elisa.mo share/locale/ta/LC_MESSAGES/elisa.mo share/locale/tr/LC_MESSAGES/elisa.mo share/locale/uk/LC_MESSAGES/elisa.mo share/locale/zh_CN/LC_MESSAGES/elisa.mo share/locale/zh_TW/LC_MESSAGES/elisa.mo share/metainfo/org.kde.elisa.appdata.xml share/qlogging-categories5/elisa.categories diff --git a/audio/juk/distinfo b/audio/juk/distinfo index d878e27d6d41..d798387bce8e 100644 --- a/audio/juk/distinfo +++ b/audio/juk/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1677828198 -SHA256 (KDE/release-service/22.12.3/juk-22.12.3.tar.xz) = ace23a97d85adc73f7f87e32f659a9f741ed24a0cdaf9cec371c7445ca017b78 -SIZE (KDE/release-service/22.12.3/juk-22.12.3.tar.xz) = 2076288 +TIMESTAMP = 1681548366 +SHA256 (KDE/release-service/23.04.0/juk-23.04.0.tar.xz) = 982f2d58a13d7f2b8384eea8e938bbcff02c3d338b74957c63173d34a97a4846 +SIZE (KDE/release-service/23.04.0/juk-23.04.0.tar.xz) = 2080380 diff --git a/audio/juk/pkg-plist b/audio/juk/pkg-plist index a70a058217ad..73f86b78c102 100644 --- a/audio/juk/pkg-plist +++ b/audio/juk/pkg-plist @@ -1,90 +1,91 @@ bin/juk share/applications/org.kde.juk.desktop share/dbus-1/interfaces/org.kde.juk.collection.xml share/dbus-1/interfaces/org.kde.juk.player.xml share/dbus-1/interfaces/org.kde.juk.search.xml share/icons/hicolor/128x128/apps/juk.png share/icons/hicolor/16x16/apps/juk.png share/icons/hicolor/32x32/apps/juk.png share/icons/hicolor/48x48/apps/juk.png share/icons/hicolor/64x64/apps/juk.png %%DATADIR%%/pics/playing.png %%DATADIR%%/pics/theme.svg share/kio/servicemenus/jukservicemenu.desktop share/knotifications5/juk.notifyrc share/kxmlgui5/juk/jukui-rtl.rc share/kxmlgui5/juk/jukui.rc share/locale/ar/LC_MESSAGES/juk.mo share/locale/be/LC_MESSAGES/juk.mo share/locale/bg/LC_MESSAGES/juk.mo share/locale/bn/LC_MESSAGES/juk.mo share/locale/br/LC_MESSAGES/juk.mo share/locale/bs/LC_MESSAGES/juk.mo share/locale/ca/LC_MESSAGES/juk.mo share/locale/ca@valencia/LC_MESSAGES/juk.mo share/locale/cs/LC_MESSAGES/juk.mo share/locale/cy/LC_MESSAGES/juk.mo share/locale/da/LC_MESSAGES/juk.mo share/locale/de/LC_MESSAGES/juk.mo share/locale/el/LC_MESSAGES/juk.mo share/locale/en_GB/LC_MESSAGES/juk.mo share/locale/eo/LC_MESSAGES/juk.mo share/locale/es/LC_MESSAGES/juk.mo share/locale/et/LC_MESSAGES/juk.mo share/locale/eu/LC_MESSAGES/juk.mo share/locale/fa/LC_MESSAGES/juk.mo share/locale/fi/LC_MESSAGES/juk.mo share/locale/fr/LC_MESSAGES/juk.mo share/locale/ga/LC_MESSAGES/juk.mo share/locale/gl/LC_MESSAGES/juk.mo share/locale/he/LC_MESSAGES/juk.mo share/locale/hi/LC_MESSAGES/juk.mo share/locale/hne/LC_MESSAGES/juk.mo share/locale/hr/LC_MESSAGES/juk.mo share/locale/hu/LC_MESSAGES/juk.mo share/locale/ia/LC_MESSAGES/juk.mo share/locale/id/LC_MESSAGES/juk.mo +share/locale/ie/LC_MESSAGES/juk.mo share/locale/is/LC_MESSAGES/juk.mo share/locale/it/LC_MESSAGES/juk.mo share/locale/ja/LC_MESSAGES/juk.mo share/locale/ka/LC_MESSAGES/juk.mo share/locale/kk/LC_MESSAGES/juk.mo share/locale/km/LC_MESSAGES/juk.mo share/locale/ko/LC_MESSAGES/juk.mo share/locale/lt/LC_MESSAGES/juk.mo share/locale/lv/LC_MESSAGES/juk.mo share/locale/mk/LC_MESSAGES/juk.mo share/locale/mr/LC_MESSAGES/juk.mo share/locale/ms/LC_MESSAGES/juk.mo share/locale/nb/LC_MESSAGES/juk.mo share/locale/nds/LC_MESSAGES/juk.mo share/locale/ne/LC_MESSAGES/juk.mo share/locale/nl/LC_MESSAGES/juk.mo share/locale/nn/LC_MESSAGES/juk.mo share/locale/oc/LC_MESSAGES/juk.mo share/locale/pa/LC_MESSAGES/juk.mo share/locale/pl/LC_MESSAGES/juk.mo share/locale/pt/LC_MESSAGES/juk.mo share/locale/pt_BR/LC_MESSAGES/juk.mo share/locale/ro/LC_MESSAGES/juk.mo share/locale/ru/LC_MESSAGES/juk.mo share/locale/se/LC_MESSAGES/juk.mo share/locale/sk/LC_MESSAGES/juk.mo share/locale/sl/LC_MESSAGES/juk.mo share/locale/sq/LC_MESSAGES/juk.mo share/locale/sr/LC_MESSAGES/juk.mo share/locale/sr@ijekavian/LC_MESSAGES/juk.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/juk.mo share/locale/sr@latin/LC_MESSAGES/juk.mo share/locale/sv/LC_MESSAGES/juk.mo share/locale/ta/LC_MESSAGES/juk.mo share/locale/tg/LC_MESSAGES/juk.mo share/locale/th/LC_MESSAGES/juk.mo share/locale/tr/LC_MESSAGES/juk.mo share/locale/ug/LC_MESSAGES/juk.mo share/locale/uk/LC_MESSAGES/juk.mo share/locale/uz/LC_MESSAGES/juk.mo share/locale/uz@cyrillic/LC_MESSAGES/juk.mo share/locale/zh_CN/LC_MESSAGES/juk.mo share/locale/zh_TW/LC_MESSAGES/juk.mo share/metainfo/org.kde.juk.appdata.xml diff --git a/audio/kmix/distinfo b/audio/kmix/distinfo index 67753ca6df3e..4bdf3b9d2df3 100644 --- a/audio/kmix/distinfo +++ b/audio/kmix/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1677828195 -SHA256 (KDE/release-service/22.12.3/kmix-22.12.3.tar.xz) = 5bdc13e3be34af8d6ba43ad84d25f171a5b07dfe308dbf41722f29d542720e69 -SIZE (KDE/release-service/22.12.3/kmix-22.12.3.tar.xz) = 1196164 +TIMESTAMP = 1681548369 +SHA256 (KDE/release-service/23.04.0/kmix-23.04.0.tar.xz) = 523e0aa22cb3413b962d3eba2ba638fe6ecdfb7de4f019fa8bff03dbeee46fb8 +SIZE (KDE/release-service/23.04.0/kmix-23.04.0.tar.xz) = 1196680 diff --git a/audio/kwave/distinfo b/audio/kwave/distinfo index fdba4ba88383..e54743cb29d5 100644 --- a/audio/kwave/distinfo +++ b/audio/kwave/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1677828189 -SHA256 (KDE/release-service/22.12.3/kwave-22.12.3.tar.xz) = 61afe5dce5e530d5958726a4fe1801116923217fd2e97fdfb88fccd66e69de37 -SIZE (KDE/release-service/22.12.3/kwave-22.12.3.tar.xz) = 6966024 +TIMESTAMP = 1681548371 +SHA256 (KDE/release-service/23.04.0/kwave-23.04.0.tar.xz) = 88332d0fce6152ac7ac8f1e3f6c655449d361d179e232a6796776c31a08ad330 +SIZE (KDE/release-service/23.04.0/kwave-23.04.0.tar.xz) = 6964052 diff --git a/audio/libkcddb/Makefile b/audio/libkcddb/Makefile index 2ec706186bed..b77fffda1453 100644 --- a/audio/libkcddb/Makefile +++ b/audio/libkcddb/Makefile @@ -1,23 +1,23 @@ PORTNAME= libkcddb DISTVERSION= ${KDE_APPLICATIONS_VERSION} CATEGORIES= audio kde kde-applications MAINTAINER= kde@FreeBSD.org COMMENT= KDE CDDB library WWW= https://www.kde.org/ LIB_DEPENDS= libmusicbrainz5.so:audio/libmusicbrainz5 USES= cmake compiler:c++11-lang gettext kde:5 qt:5 tar:xz xorg USE_KDE= auth codecs completion config configwidgets \ - coreaddons i18n jobwidgets kio service solid \ + coreaddons i18n jobwidgets kcmutils kio service solid \ widgetsaddons windowsystem \ ecm:build USE_QT= concurrent core dbus gui network widgets xml \ buildtools:build qmake:build USE_XORG= x11 USE_LDCONFIG= yes OPTIONS_DEFINE= DOCS .include diff --git a/audio/libkcddb/distinfo b/audio/libkcddb/distinfo index 9eee3d525ec7..88bfb49e9ca5 100644 --- a/audio/libkcddb/distinfo +++ b/audio/libkcddb/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1677828192 -SHA256 (KDE/release-service/22.12.3/libkcddb-22.12.3.tar.xz) = 530a5e377bd55409c8fe789b8efb71510d49fe38a23241189235aaf51e057a1a -SIZE (KDE/release-service/22.12.3/libkcddb-22.12.3.tar.xz) = 458760 +TIMESTAMP = 1681548364 +SHA256 (KDE/release-service/23.04.0/libkcddb-23.04.0.tar.xz) = 980574e013adc7f305ae4c4a84b067aeb801888d5e128d712253c4105be45914 +SIZE (KDE/release-service/23.04.0/libkcddb-23.04.0.tar.xz) = 458588 diff --git a/audio/libkcddb/pkg-plist b/audio/libkcddb/pkg-plist index dd6661906a2e..510b61369dbb 100644 --- a/audio/libkcddb/pkg-plist +++ b/audio/libkcddb/pkg-plist @@ -1,179 +1,179 @@ include/KCddb5/KCDDB/CDInfo include/KCddb5/KCDDB/Categories include/KCddb5/KCDDB/Client include/KCddb5/KCDDB/Config include/KCddb5/KCDDB/Genres include/KCddb5/KCDDB/KCDDB include/KCddb5/kcddb/categories.h include/KCddb5/kcddb/cdinfo.h include/KCddb5/kcddb/client.h include/KCddb5/kcddb/config.h include/KCddb5/kcddb/configbase.h include/KCddb5/kcddb/genres.h include/KCddb5/kcddb/kcddb.h include/KCddb5/kcddb/kcddb_export.h +include/KCddb5/kcddb_version.h include/KF5/KCddb/Categories include/KF5/KCddb/Cdinfo include/KF5/KCddb/Client include/KF5/KCddb/Genres include/KF5/KCddb/Kcddb include/KF5/KCddb/KcddbConfig include/KF5/KCddb/categories.h include/KF5/KCddb/cdinfo.h include/KF5/KCddb/client.h include/KF5/KCddb/genres.h include/KF5/KCddb/kcddb.h include/KF5/KCddb/kcddbconfig.h -include/KF5/kcddb_version.h lib/cmake/KF5Cddb/KF5CddbConfig.cmake lib/cmake/KF5Cddb/KF5CddbConfigVersion.cmake lib/cmake/KF5Cddb/KF5CddbTargets-%%CMAKE_BUILD_TYPE%%.cmake lib/cmake/KF5Cddb/KF5CddbTargets.cmake lib/libKF5Cddb.so lib/libKF5Cddb.so.5 lib/libKF5Cddb.so.5.1.0 %%QT_MKSPECDIR%%/modules/qt_KCddb.pri -%%QT_PLUGINDIR%%/kcm_cddb.so +%%QT_PLUGINDIR%%/plasma/kcms/systemsettings_qwidgets/kcm_cddb.so +share/applications/kcm_cddb.desktop share/config.kcfg/libkcddb5.kcfg -share/kservices5/libkcddb.desktop share/locale/ar/LC_MESSAGES/kcmcddb.mo share/locale/ar/LC_MESSAGES/libkcddb.mo share/locale/be/LC_MESSAGES/kcmcddb.mo share/locale/be/LC_MESSAGES/libkcddb.mo share/locale/bg/LC_MESSAGES/kcmcddb.mo share/locale/bg/LC_MESSAGES/libkcddb.mo share/locale/br/LC_MESSAGES/kcmcddb.mo share/locale/br/LC_MESSAGES/libkcddb.mo share/locale/bs/LC_MESSAGES/kcmcddb.mo share/locale/bs/LC_MESSAGES/libkcddb.mo share/locale/ca/LC_MESSAGES/kcmcddb.mo share/locale/ca/LC_MESSAGES/libkcddb.mo share/locale/ca@valencia/LC_MESSAGES/kcmcddb.mo share/locale/ca@valencia/LC_MESSAGES/libkcddb.mo share/locale/cs/LC_MESSAGES/kcmcddb.mo share/locale/cs/LC_MESSAGES/libkcddb.mo share/locale/cy/LC_MESSAGES/kcmcddb.mo share/locale/cy/LC_MESSAGES/libkcddb.mo share/locale/da/LC_MESSAGES/kcmcddb.mo share/locale/da/LC_MESSAGES/libkcddb.mo share/locale/de/LC_MESSAGES/kcmcddb.mo share/locale/de/LC_MESSAGES/libkcddb.mo share/locale/el/LC_MESSAGES/kcmcddb.mo share/locale/el/LC_MESSAGES/libkcddb.mo share/locale/en_GB/LC_MESSAGES/kcmcddb.mo share/locale/en_GB/LC_MESSAGES/libkcddb.mo share/locale/eo/LC_MESSAGES/kcmcddb.mo share/locale/eo/LC_MESSAGES/libkcddb.mo share/locale/es/LC_MESSAGES/kcmcddb.mo share/locale/es/LC_MESSAGES/libkcddb.mo share/locale/et/LC_MESSAGES/kcmcddb.mo share/locale/et/LC_MESSAGES/libkcddb.mo share/locale/eu/LC_MESSAGES/kcmcddb.mo share/locale/eu/LC_MESSAGES/libkcddb.mo share/locale/fa/LC_MESSAGES/kcmcddb.mo share/locale/fa/LC_MESSAGES/libkcddb.mo share/locale/fi/LC_MESSAGES/kcmcddb.mo share/locale/fi/LC_MESSAGES/libkcddb.mo share/locale/fr/LC_MESSAGES/kcmcddb.mo share/locale/fr/LC_MESSAGES/libkcddb.mo share/locale/ga/LC_MESSAGES/kcmcddb.mo share/locale/ga/LC_MESSAGES/libkcddb.mo share/locale/gl/LC_MESSAGES/kcmcddb.mo share/locale/gl/LC_MESSAGES/libkcddb.mo share/locale/he/LC_MESSAGES/kcmcddb.mo share/locale/he/LC_MESSAGES/libkcddb.mo share/locale/hi/LC_MESSAGES/kcmcddb.mo share/locale/hi/LC_MESSAGES/libkcddb.mo share/locale/hne/LC_MESSAGES/kcmcddb.mo share/locale/hne/LC_MESSAGES/libkcddb.mo share/locale/hr/LC_MESSAGES/kcmcddb.mo share/locale/hr/LC_MESSAGES/libkcddb.mo share/locale/hu/LC_MESSAGES/kcmcddb.mo share/locale/hu/LC_MESSAGES/libkcddb.mo share/locale/ia/LC_MESSAGES/kcmcddb.mo share/locale/ia/LC_MESSAGES/libkcddb.mo share/locale/is/LC_MESSAGES/kcmcddb.mo share/locale/is/LC_MESSAGES/libkcddb.mo share/locale/it/LC_MESSAGES/kcmcddb.mo share/locale/it/LC_MESSAGES/libkcddb.mo share/locale/ja/LC_MESSAGES/kcmcddb.mo share/locale/ja/LC_MESSAGES/libkcddb.mo share/locale/ka/LC_MESSAGES/kcmcddb.mo share/locale/ka/LC_MESSAGES/libkcddb.mo share/locale/kk/LC_MESSAGES/kcmcddb.mo share/locale/kk/LC_MESSAGES/libkcddb.mo share/locale/km/LC_MESSAGES/kcmcddb.mo share/locale/km/LC_MESSAGES/libkcddb.mo share/locale/ko/LC_MESSAGES/kcmcddb.mo share/locale/ko/LC_MESSAGES/libkcddb.mo share/locale/lt/LC_MESSAGES/kcmcddb.mo share/locale/lt/LC_MESSAGES/libkcddb.mo share/locale/lv/LC_MESSAGES/kcmcddb.mo share/locale/lv/LC_MESSAGES/libkcddb.mo share/locale/mk/LC_MESSAGES/kcmcddb.mo share/locale/mk/LC_MESSAGES/libkcddb.mo share/locale/mr/LC_MESSAGES/kcmcddb.mo share/locale/mr/LC_MESSAGES/libkcddb.mo share/locale/ms/LC_MESSAGES/kcmcddb.mo share/locale/ms/LC_MESSAGES/libkcddb.mo share/locale/nb/LC_MESSAGES/kcmcddb.mo share/locale/nb/LC_MESSAGES/libkcddb.mo share/locale/nds/LC_MESSAGES/kcmcddb.mo share/locale/nds/LC_MESSAGES/libkcddb.mo share/locale/ne/LC_MESSAGES/kcmcddb.mo share/locale/ne/LC_MESSAGES/libkcddb.mo share/locale/nl/LC_MESSAGES/kcmcddb.mo share/locale/nl/LC_MESSAGES/libkcddb.mo share/locale/nn/LC_MESSAGES/kcmcddb.mo share/locale/nn/LC_MESSAGES/libkcddb.mo share/locale/oc/LC_MESSAGES/kcmcddb.mo share/locale/oc/LC_MESSAGES/libkcddb.mo share/locale/pa/LC_MESSAGES/kcmcddb.mo share/locale/pa/LC_MESSAGES/libkcddb.mo share/locale/pl/LC_MESSAGES/kcmcddb.mo share/locale/pl/LC_MESSAGES/libkcddb.mo share/locale/pt/LC_MESSAGES/kcmcddb.mo share/locale/pt/LC_MESSAGES/libkcddb.mo share/locale/pt_BR/LC_MESSAGES/kcmcddb.mo share/locale/pt_BR/LC_MESSAGES/libkcddb.mo share/locale/ro/LC_MESSAGES/kcmcddb.mo share/locale/ro/LC_MESSAGES/libkcddb.mo share/locale/ru/LC_MESSAGES/kcmcddb.mo share/locale/ru/LC_MESSAGES/libkcddb.mo share/locale/se/LC_MESSAGES/kcmcddb.mo share/locale/se/LC_MESSAGES/libkcddb.mo share/locale/sk/LC_MESSAGES/kcmcddb.mo share/locale/sk/LC_MESSAGES/libkcddb.mo share/locale/sl/LC_MESSAGES/kcmcddb.mo share/locale/sl/LC_MESSAGES/libkcddb.mo share/locale/sq/LC_MESSAGES/kcmcddb.mo share/locale/sq/LC_MESSAGES/libkcddb.mo share/locale/sr/LC_MESSAGES/kcmcddb.mo share/locale/sr/LC_MESSAGES/libkcddb.mo share/locale/sr@ijekavian/LC_MESSAGES/kcmcddb.mo share/locale/sr@ijekavian/LC_MESSAGES/libkcddb.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kcmcddb.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/libkcddb.mo share/locale/sr@latin/LC_MESSAGES/kcmcddb.mo share/locale/sr@latin/LC_MESSAGES/libkcddb.mo share/locale/sv/LC_MESSAGES/kcmcddb.mo share/locale/sv/LC_MESSAGES/libkcddb.mo share/locale/ta/LC_MESSAGES/kcmcddb.mo share/locale/ta/LC_MESSAGES/libkcddb.mo share/locale/tg/LC_MESSAGES/kcmcddb.mo share/locale/tg/LC_MESSAGES/libkcddb.mo share/locale/th/LC_MESSAGES/kcmcddb.mo share/locale/th/LC_MESSAGES/libkcddb.mo share/locale/tr/LC_MESSAGES/kcmcddb.mo share/locale/tr/LC_MESSAGES/libkcddb.mo share/locale/ug/LC_MESSAGES/kcmcddb.mo share/locale/ug/LC_MESSAGES/libkcddb.mo share/locale/uk/LC_MESSAGES/kcmcddb.mo share/locale/uk/LC_MESSAGES/libkcddb.mo share/locale/xh/LC_MESSAGES/kcmcddb.mo share/locale/zh_CN/LC_MESSAGES/kcmcddb.mo share/locale/zh_CN/LC_MESSAGES/libkcddb.mo share/locale/zh_HK/LC_MESSAGES/kcmcddb.mo share/locale/zh_TW/LC_MESSAGES/kcmcddb.mo share/locale/zh_TW/LC_MESSAGES/libkcddb.mo share/qlogging-categories5/libkcddb.categories diff --git a/audio/libkcompactdisc/distinfo b/audio/libkcompactdisc/distinfo index 348f288a7b19..212286b6045d 100644 --- a/audio/libkcompactdisc/distinfo +++ b/audio/libkcompactdisc/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1677828194 -SHA256 (KDE/release-service/22.12.3/libkcompactdisc-22.12.3.tar.xz) = b0f800e2b7c5b949f57e6893b6c057759d459d3a8bbcbb92a7db0147054e0872 -SIZE (KDE/release-service/22.12.3/libkcompactdisc-22.12.3.tar.xz) = 98692 +TIMESTAMP = 1681548367 +SHA256 (KDE/release-service/23.04.0/libkcompactdisc-23.04.0.tar.xz) = 1b208c7ce0e78bd0cd629780822886c7f5c476fa70ed87cf16c908f58522a215 +SIZE (KDE/release-service/23.04.0/libkcompactdisc-23.04.0.tar.xz) = 99148 diff --git a/audio/libkcompactdisc/pkg-plist b/audio/libkcompactdisc/pkg-plist index 76fa481831c9..912b2dab769b 100644 --- a/audio/libkcompactdisc/pkg-plist +++ b/audio/libkcompactdisc/pkg-plist @@ -1,75 +1,76 @@ include/KF5/KCompactDisc/KCompactDisc include/KF5/KCompactDisc/kcompactdisc.h include/KF5/KCompactDisc/kcompactdisc_export.h -include/KF5/kcompactdisc_version.h +include/KF5/KCompactDisc/kcompactdisc_version.h lib/cmake/KF5CompactDisc/KF5CompactDiscConfig.cmake lib/cmake/KF5CompactDisc/KF5CompactDiscConfigVersion.cmake lib/cmake/KF5CompactDisc/KF5CompactDiscTargets-%%CMAKE_BUILD_TYPE%%.cmake lib/cmake/KF5CompactDisc/KF5CompactDiscTargets.cmake lib/libKF5CompactDisc.so lib/libKF5CompactDisc.so.5 lib/libKF5CompactDisc.so.5.0.0 share/locale/ar/LC_MESSAGES/libkcompactdisc.mo share/locale/be/LC_MESSAGES/libkcompactdisc.mo share/locale/bg/LC_MESSAGES/libkcompactdisc.mo share/locale/bs/LC_MESSAGES/libkcompactdisc.mo share/locale/ca/LC_MESSAGES/libkcompactdisc.mo share/locale/ca@valencia/LC_MESSAGES/libkcompactdisc.mo share/locale/cs/LC_MESSAGES/libkcompactdisc.mo share/locale/csb/LC_MESSAGES/libkcompactdisc.mo share/locale/da/LC_MESSAGES/libkcompactdisc.mo share/locale/de/LC_MESSAGES/libkcompactdisc.mo share/locale/el/LC_MESSAGES/libkcompactdisc.mo share/locale/en_GB/LC_MESSAGES/libkcompactdisc.mo share/locale/eo/LC_MESSAGES/libkcompactdisc.mo share/locale/es/LC_MESSAGES/libkcompactdisc.mo share/locale/et/LC_MESSAGES/libkcompactdisc.mo share/locale/eu/LC_MESSAGES/libkcompactdisc.mo share/locale/fi/LC_MESSAGES/libkcompactdisc.mo share/locale/fr/LC_MESSAGES/libkcompactdisc.mo share/locale/ga/LC_MESSAGES/libkcompactdisc.mo share/locale/gl/LC_MESSAGES/libkcompactdisc.mo share/locale/he/LC_MESSAGES/libkcompactdisc.mo share/locale/hi/LC_MESSAGES/libkcompactdisc.mo share/locale/hne/LC_MESSAGES/libkcompactdisc.mo share/locale/hr/LC_MESSAGES/libkcompactdisc.mo share/locale/hu/LC_MESSAGES/libkcompactdisc.mo share/locale/ia/LC_MESSAGES/libkcompactdisc.mo share/locale/is/LC_MESSAGES/libkcompactdisc.mo share/locale/it/LC_MESSAGES/libkcompactdisc.mo share/locale/ja/LC_MESSAGES/libkcompactdisc.mo share/locale/ka/LC_MESSAGES/libkcompactdisc.mo share/locale/kk/LC_MESSAGES/libkcompactdisc.mo share/locale/km/LC_MESSAGES/libkcompactdisc.mo share/locale/ko/LC_MESSAGES/libkcompactdisc.mo share/locale/lt/LC_MESSAGES/libkcompactdisc.mo share/locale/lv/LC_MESSAGES/libkcompactdisc.mo share/locale/mk/LC_MESSAGES/libkcompactdisc.mo share/locale/mr/LC_MESSAGES/libkcompactdisc.mo share/locale/nb/LC_MESSAGES/libkcompactdisc.mo share/locale/nds/LC_MESSAGES/libkcompactdisc.mo share/locale/nl/LC_MESSAGES/libkcompactdisc.mo share/locale/nn/LC_MESSAGES/libkcompactdisc.mo share/locale/oc/LC_MESSAGES/libkcompactdisc.mo share/locale/pa/LC_MESSAGES/libkcompactdisc.mo share/locale/pl/LC_MESSAGES/libkcompactdisc.mo share/locale/pt/LC_MESSAGES/libkcompactdisc.mo share/locale/pt_BR/LC_MESSAGES/libkcompactdisc.mo share/locale/ro/LC_MESSAGES/libkcompactdisc.mo share/locale/ru/LC_MESSAGES/libkcompactdisc.mo share/locale/se/LC_MESSAGES/libkcompactdisc.mo share/locale/sk/LC_MESSAGES/libkcompactdisc.mo share/locale/sl/LC_MESSAGES/libkcompactdisc.mo share/locale/sq/LC_MESSAGES/libkcompactdisc.mo share/locale/sr/LC_MESSAGES/libkcompactdisc.mo share/locale/sr@ijekavian/LC_MESSAGES/libkcompactdisc.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/libkcompactdisc.mo share/locale/sr@latin/LC_MESSAGES/libkcompactdisc.mo share/locale/sv/LC_MESSAGES/libkcompactdisc.mo +share/locale/ta/LC_MESSAGES/libkcompactdisc.mo share/locale/th/LC_MESSAGES/libkcompactdisc.mo share/locale/tr/LC_MESSAGES/libkcompactdisc.mo share/locale/ug/LC_MESSAGES/libkcompactdisc.mo share/locale/uk/LC_MESSAGES/libkcompactdisc.mo share/locale/wa/LC_MESSAGES/libkcompactdisc.mo share/locale/zh_CN/LC_MESSAGES/libkcompactdisc.mo share/locale/zh_TW/LC_MESSAGES/libkcompactdisc.mo diff --git a/databases/akonadi/distinfo b/databases/akonadi/distinfo index 78902af87f05..094d59042679 100644 --- a/databases/akonadi/distinfo +++ b/databases/akonadi/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1677828205 -SHA256 (KDE/release-service/22.12.3/akonadi-22.12.3.tar.xz) = b79e332628e1e8041a39aaa3821f1b9235c0a2332ea9b1ff7fba73855bce80a3 -SIZE (KDE/release-service/22.12.3/akonadi-22.12.3.tar.xz) = 1661668 +TIMESTAMP = 1681548475 +SHA256 (KDE/release-service/23.04.0/akonadi-23.04.0.tar.xz) = e528c3d737c742b2e359345b71f18f65d7973761714716d64b58d35e11094ece +SIZE (KDE/release-service/23.04.0/akonadi-23.04.0.tar.xz) = 1667996 diff --git a/databases/akonadi/pkg-plist b/databases/akonadi/pkg-plist index 0833bd25662e..04c13728e725 100644 --- a/databases/akonadi/pkg-plist +++ b/databases/akonadi/pkg-plist @@ -1,497 +1,502 @@ bin/akonadi2xml bin/akonadi_agent_launcher bin/akonadi_agent_server bin/akonadi_control bin/akonadi_knut_resource bin/akonadi_rds bin/akonadictl bin/akonadiselftest bin/akonadiserver bin/akonaditest bin/asapcat etc/apparmor.d/mariadbd_akonadi etc/apparmor.d/mysqld_akonadi etc/apparmor.d/postgresql_akonadi etc/apparmor.d/usr.bin.akonadiserver etc/xdg/akonadi/mysql-global-mobile.conf etc/xdg/akonadi/mysql-global.conf -include/KF5/Akonadi/akonadi/private/akonadiprivate_export.h -include/KF5/Akonadi/akonadi/private/capabilities_p.h -include/KF5/Akonadi/akonadi/private/compressionstream_p.h -include/KF5/Akonadi/akonadi/private/dbus_p.h -include/KF5/Akonadi/akonadi/private/externalpartstorage_p.h -include/KF5/Akonadi/akonadi/private/imapparser_p.h -include/KF5/Akonadi/akonadi/private/imapset_p.h -include/KF5/Akonadi/akonadi/private/instance_p.h -include/KF5/Akonadi/akonadi/private/protocol_exception_p.h -include/KF5/Akonadi/akonadi/private/protocol_gen.h -include/KF5/Akonadi/akonadi/private/protocol_p.h -include/KF5/Akonadi/akonadi/private/scope_p.h -include/KF5/Akonadi/akonadi/private/standarddirs_p.h -include/KF5/Akonadi/akonadi/private/tristate_p.h -include/KF5/AkonadiAgentBase/Akonadi/AccountsIntegration -include/KF5/AkonadiAgentBase/Akonadi/AgentBase -include/KF5/AkonadiAgentBase/Akonadi/AgentSearchInterface -include/KF5/AkonadiAgentBase/Akonadi/PreprocessorBase -include/KF5/AkonadiAgentBase/Akonadi/ResourceBase -include/KF5/AkonadiAgentBase/Akonadi/ResourceSettings -include/KF5/AkonadiAgentBase/Akonadi/TransportResourceBase -include/KF5/AkonadiAgentBase/akonadi/accountsintegration.h -include/KF5/AkonadiAgentBase/akonadi/agentbase.h -include/KF5/AkonadiAgentBase/akonadi/agentsearchinterface.h -include/KF5/AkonadiAgentBase/akonadi/akonadiagentbase_export.h -include/KF5/AkonadiAgentBase/akonadi/preprocessorbase.h -include/KF5/AkonadiAgentBase/akonadi/resourcebase.h -include/KF5/AkonadiAgentBase/akonadi/resourcebasesettings.h -include/KF5/AkonadiAgentBase/akonadi/resourcesettings.h -include/KF5/AkonadiAgentBase/akonadi/transportresourcebase.h -include/KF5/AkonadiCore/Akonadi/AbstractDifferencesReporter -include/KF5/AkonadiCore/Akonadi/AgentConfigurationBase -include/KF5/AkonadiCore/Akonadi/AgentConfigurationFactoryBase -include/KF5/AkonadiCore/Akonadi/AgentFilterProxyModel -include/KF5/AkonadiCore/Akonadi/AgentInstance -include/KF5/AkonadiCore/Akonadi/AgentInstanceCreateJob -include/KF5/AkonadiCore/Akonadi/AgentInstanceModel -include/KF5/AkonadiCore/Akonadi/AgentManager -include/KF5/AkonadiCore/Akonadi/AgentType -include/KF5/AkonadiCore/Akonadi/AgentTypeModel -include/KF5/AkonadiCore/Akonadi/Attribute -include/KF5/AkonadiCore/Akonadi/AttributeFactory -include/KF5/AkonadiCore/Akonadi/CachePolicy -include/KF5/AkonadiCore/Akonadi/ChangeNotification -include/KF5/AkonadiCore/Akonadi/ChangeRecorder -include/KF5/AkonadiCore/Akonadi/Collection -include/KF5/AkonadiCore/Akonadi/CollectionAttributesSynchronizationJob -include/KF5/AkonadiCore/Akonadi/CollectionColorAttribute -include/KF5/AkonadiCore/Akonadi/CollectionCopyJob -include/KF5/AkonadiCore/Akonadi/CollectionCreateJob -include/KF5/AkonadiCore/Akonadi/CollectionDeleteJob -include/KF5/AkonadiCore/Akonadi/CollectionFetchJob -include/KF5/AkonadiCore/Akonadi/CollectionFetchScope -include/KF5/AkonadiCore/Akonadi/CollectionFilterProxyModel -include/KF5/AkonadiCore/Akonadi/CollectionIdentificationAttribute -include/KF5/AkonadiCore/Akonadi/CollectionModifyJob -include/KF5/AkonadiCore/Akonadi/CollectionMoveJob -include/KF5/AkonadiCore/Akonadi/CollectionPathResolver -include/KF5/AkonadiCore/Akonadi/CollectionQuotaAttribute -include/KF5/AkonadiCore/Akonadi/CollectionStatistics -include/KF5/AkonadiCore/Akonadi/CollectionStatisticsJob -include/KF5/AkonadiCore/Akonadi/CollectionUtils -include/KF5/AkonadiCore/Akonadi/Control -include/KF5/AkonadiCore/Akonadi/DifferencesAlgorithmInterface -include/KF5/AkonadiCore/Akonadi/EntityAnnotationsAttribute -include/KF5/AkonadiCore/Akonadi/EntityDeletedAttribute -include/KF5/AkonadiCore/Akonadi/EntityDisplayAttribute -include/KF5/AkonadiCore/Akonadi/EntityHiddenAttribute -include/KF5/AkonadiCore/Akonadi/EntityMimeTypeFilterModel -include/KF5/AkonadiCore/Akonadi/EntityOrderProxyModel -include/KF5/AkonadiCore/Akonadi/EntityRightsFilterModel -include/KF5/AkonadiCore/Akonadi/EntityTreeModel -include/KF5/AkonadiCore/Akonadi/ExceptionBase -include/KF5/AkonadiCore/Akonadi/FavoriteCollectionAttribute -include/KF5/AkonadiCore/Akonadi/FavoriteCollectionsModel -include/KF5/AkonadiCore/Akonadi/GidExtractorInterface -include/KF5/AkonadiCore/Akonadi/IndexPolicyAttribute -include/KF5/AkonadiCore/Akonadi/Item -include/KF5/AkonadiCore/Akonadi/ItemCopyJob -include/KF5/AkonadiCore/Akonadi/ItemCreateJob -include/KF5/AkonadiCore/Akonadi/ItemDeleteJob -include/KF5/AkonadiCore/Akonadi/ItemFetchJob -include/KF5/AkonadiCore/Akonadi/ItemFetchScope -include/KF5/AkonadiCore/Akonadi/ItemModifyJob -include/KF5/AkonadiCore/Akonadi/ItemMonitor -include/KF5/AkonadiCore/Akonadi/ItemMoveJob -include/KF5/AkonadiCore/Akonadi/ItemSearchJob -include/KF5/AkonadiCore/Akonadi/ItemSerializerPlugin -include/KF5/AkonadiCore/Akonadi/ItemSync -include/KF5/AkonadiCore/Akonadi/Job -include/KF5/AkonadiCore/Akonadi/LinkJob -include/KF5/AkonadiCore/Akonadi/MimeTypeChecker -include/KF5/AkonadiCore/Akonadi/Monitor -include/KF5/AkonadiCore/Akonadi/NotificationSubscriber -include/KF5/AkonadiCore/Akonadi/PartFetcher -include/KF5/AkonadiCore/Akonadi/PersistentSearchAttribute -include/KF5/AkonadiCore/Akonadi/RecursiveCollectionFilterProxyModel -include/KF5/AkonadiCore/Akonadi/RecursiveItemFetchJob -include/KF5/AkonadiCore/Akonadi/Relation -include/KF5/AkonadiCore/Akonadi/RelationCreateJob -include/KF5/AkonadiCore/Akonadi/RelationDeleteJob -include/KF5/AkonadiCore/Akonadi/RelationFetchJob -include/KF5/AkonadiCore/Akonadi/ResourceSynchronizationJob -include/KF5/AkonadiCore/Akonadi/SearchCreateJob -include/KF5/AkonadiCore/Akonadi/SearchQuery -include/KF5/AkonadiCore/Akonadi/SelectionProxyModel -include/KF5/AkonadiCore/Akonadi/ServerManager -include/KF5/AkonadiCore/Akonadi/Session -include/KF5/AkonadiCore/Akonadi/SpecialCollectionAttribute -include/KF5/AkonadiCore/Akonadi/SpecialCollections -include/KF5/AkonadiCore/Akonadi/SpecialCollectionsDiscoveryJob -include/KF5/AkonadiCore/Akonadi/SpecialCollectionsRequestJob -include/KF5/AkonadiCore/Akonadi/StatisticsProxyModel -include/KF5/AkonadiCore/Akonadi/Supertrait -include/KF5/AkonadiCore/Akonadi/Tag -include/KF5/AkonadiCore/Akonadi/TagAttribute -include/KF5/AkonadiCore/Akonadi/TagCache -include/KF5/AkonadiCore/Akonadi/TagCreateJob -include/KF5/AkonadiCore/Akonadi/TagDeleteJob -include/KF5/AkonadiCore/Akonadi/TagFetchJob -include/KF5/AkonadiCore/Akonadi/TagFetchScope -include/KF5/AkonadiCore/Akonadi/TagModel -include/KF5/AkonadiCore/Akonadi/TagModifyJob -include/KF5/AkonadiCore/Akonadi/TransactionJobs -include/KF5/AkonadiCore/Akonadi/TransactionSequence -include/KF5/AkonadiCore/Akonadi/TrashFilterProxyModel -include/KF5/AkonadiCore/Akonadi/TrashJob -include/KF5/AkonadiCore/Akonadi/TrashRestoreJob -include/KF5/AkonadiCore/Akonadi/TrashSettings -include/KF5/AkonadiCore/Akonadi/UnlinkJob -include/KF5/AkonadiCore/Akonadi/VectorHelper -include/KF5/AkonadiCore/akonadi/abstractdifferencesreporter.h -include/KF5/AkonadiCore/akonadi/abstractsearchplugin.h -include/KF5/AkonadiCore/akonadi/agentconfigurationbase.h -include/KF5/AkonadiCore/akonadi/agentconfigurationfactorybase.h -include/KF5/AkonadiCore/akonadi/agentfilterproxymodel.h -include/KF5/AkonadiCore/akonadi/agentinstance.h -include/KF5/AkonadiCore/akonadi/agentinstancecreatejob.h -include/KF5/AkonadiCore/akonadi/agentinstancemodel.h -include/KF5/AkonadiCore/akonadi/agentmanager.h -include/KF5/AkonadiCore/akonadi/agenttype.h -include/KF5/AkonadiCore/akonadi/agenttypemodel.h -include/KF5/AkonadiCore/akonadi/akonadicore_export.h -include/KF5/AkonadiCore/akonadi/attribute.h -include/KF5/AkonadiCore/akonadi/attributefactory.h -include/KF5/AkonadiCore/akonadi/cachepolicy.h -include/KF5/AkonadiCore/akonadi/changenotification.h -include/KF5/AkonadiCore/akonadi/changerecorder.h -include/KF5/AkonadiCore/akonadi/collection.h -include/KF5/AkonadiCore/akonadi/collectionattributessynchronizationjob.h -include/KF5/AkonadiCore/akonadi/collectioncolorattribute.h -include/KF5/AkonadiCore/akonadi/collectioncopyjob.h -include/KF5/AkonadiCore/akonadi/collectioncreatejob.h -include/KF5/AkonadiCore/akonadi/collectiondeletejob.h -include/KF5/AkonadiCore/akonadi/collectionfetchjob.h -include/KF5/AkonadiCore/akonadi/collectionfetchscope.h -include/KF5/AkonadiCore/akonadi/collectionfilterproxymodel.h -include/KF5/AkonadiCore/akonadi/collectionidentificationattribute.h -include/KF5/AkonadiCore/akonadi/collectionmodifyjob.h -include/KF5/AkonadiCore/akonadi/collectionmovejob.h -include/KF5/AkonadiCore/akonadi/collectionpathresolver.h -include/KF5/AkonadiCore/akonadi/collectionquotaattribute.h -include/KF5/AkonadiCore/akonadi/collectionstatistics.h -include/KF5/AkonadiCore/akonadi/collectionstatisticsjob.h -include/KF5/AkonadiCore/akonadi/collectionutils.h -include/KF5/AkonadiCore/akonadi/config-akonadi.h -include/KF5/AkonadiCore/akonadi/control.h -include/KF5/AkonadiCore/akonadi/differencesalgorithminterface.h -include/KF5/AkonadiCore/akonadi/entityannotationsattribute.h -include/KF5/AkonadiCore/akonadi/entitydeletedattribute.h -include/KF5/AkonadiCore/akonadi/entitydisplayattribute.h -include/KF5/AkonadiCore/akonadi/entityhiddenattribute.h -include/KF5/AkonadiCore/akonadi/entitymimetypefiltermodel.h -include/KF5/AkonadiCore/akonadi/entityorderproxymodel.h -include/KF5/AkonadiCore/akonadi/entityrightsfiltermodel.h -include/KF5/AkonadiCore/akonadi/entitytreemodel.h -include/KF5/AkonadiCore/akonadi/exceptionbase.h -include/KF5/AkonadiCore/akonadi/favoritecollectionattribute.h -include/KF5/AkonadiCore/akonadi/favoritecollectionsmodel.h -include/KF5/AkonadiCore/akonadi/gidextractorinterface.h -include/KF5/AkonadiCore/akonadi/indexpolicyattribute.h -include/KF5/AkonadiCore/akonadi/item.h -include/KF5/AkonadiCore/akonadi/itemcopyjob.h -include/KF5/AkonadiCore/akonadi/itemcreatejob.h -include/KF5/AkonadiCore/akonadi/itemdeletejob.h -include/KF5/AkonadiCore/akonadi/itemfetchjob.h -include/KF5/AkonadiCore/akonadi/itemfetchscope.h -include/KF5/AkonadiCore/akonadi/itemmodifyjob.h -include/KF5/AkonadiCore/akonadi/itemmonitor.h -include/KF5/AkonadiCore/akonadi/itemmovejob.h -include/KF5/AkonadiCore/akonadi/itempayloadinternals_p.h -include/KF5/AkonadiCore/akonadi/itemsearchjob.h -include/KF5/AkonadiCore/akonadi/itemserializerplugin.h -include/KF5/AkonadiCore/akonadi/itemsync.h -include/KF5/AkonadiCore/akonadi/job.h -include/KF5/AkonadiCore/akonadi/linkjob.h -include/KF5/AkonadiCore/akonadi/mimetypechecker.h -include/KF5/AkonadiCore/akonadi/monitor.h -include/KF5/AkonadiCore/akonadi/notificationsubscriber.h -include/KF5/AkonadiCore/akonadi/partfetcher.h -include/KF5/AkonadiCore/akonadi/persistentsearchattribute.h -include/KF5/AkonadiCore/akonadi/qtest_akonadi.h -include/KF5/AkonadiCore/akonadi/recursivecollectionfilterproxymodel.h -include/KF5/AkonadiCore/akonadi/recursiveitemfetchjob.h -include/KF5/AkonadiCore/akonadi/relation.h -include/KF5/AkonadiCore/akonadi/relationcreatejob.h -include/KF5/AkonadiCore/akonadi/relationdeletejob.h -include/KF5/AkonadiCore/akonadi/relationfetchjob.h -include/KF5/AkonadiCore/akonadi/resourcesynchronizationjob.h -include/KF5/AkonadiCore/akonadi/searchcreatejob.h -include/KF5/AkonadiCore/akonadi/searchquery.h -include/KF5/AkonadiCore/akonadi/selectionproxymodel.h -include/KF5/AkonadiCore/akonadi/servermanager.h -include/KF5/AkonadiCore/akonadi/session.h -include/KF5/AkonadiCore/akonadi/specialcollectionattribute.h -include/KF5/AkonadiCore/akonadi/specialcollections.h -include/KF5/AkonadiCore/akonadi/specialcollectionsdiscoveryjob.h -include/KF5/AkonadiCore/akonadi/specialcollectionsrequestjob.h -include/KF5/AkonadiCore/akonadi/statisticsproxymodel.h -include/KF5/AkonadiCore/akonadi/supertrait.h -include/KF5/AkonadiCore/akonadi/tag.h -include/KF5/AkonadiCore/akonadi/tagattribute.h -include/KF5/AkonadiCore/akonadi/tagcache.h -include/KF5/AkonadiCore/akonadi/tagcreatejob.h -include/KF5/AkonadiCore/akonadi/tagdeletejob.h -include/KF5/AkonadiCore/akonadi/tagfetchjob.h -include/KF5/AkonadiCore/akonadi/tagfetchscope.h -include/KF5/AkonadiCore/akonadi/tagmodel.h -include/KF5/AkonadiCore/akonadi/tagmodifyjob.h -include/KF5/AkonadiCore/akonadi/transactionjobs.h -include/KF5/AkonadiCore/akonadi/transactionsequence.h -include/KF5/AkonadiCore/akonadi/trashfilterproxymodel.h -include/KF5/AkonadiCore/akonadi/trashjob.h -include/KF5/AkonadiCore/akonadi/trashrestorejob.h -include/KF5/AkonadiCore/akonadi/trashsettings.h -include/KF5/AkonadiCore/akonadi/unlinkjob.h -include/KF5/AkonadiCore/akonadi/vectorhelper.h -include/KF5/AkonadiCore/akonadi_version.h -include/KF5/AkonadiWidgets/Akonadi/AgentActionManager -include/KF5/AkonadiWidgets/Akonadi/AgentConfigurationDialog -include/KF5/AkonadiWidgets/Akonadi/AgentConfigurationWidget -include/KF5/AkonadiWidgets/Akonadi/AgentInstanceWidget -include/KF5/AkonadiWidgets/Akonadi/AgentTypeDialog -include/KF5/AkonadiWidgets/Akonadi/AgentTypeWidget -include/KF5/AkonadiWidgets/Akonadi/ClearCacheJob -include/KF5/AkonadiWidgets/Akonadi/CollectionComboBox -include/KF5/AkonadiWidgets/Akonadi/CollectionDialog -include/KF5/AkonadiWidgets/Akonadi/CollectionMaintenancePage -include/KF5/AkonadiWidgets/Akonadi/CollectionPropertiesDialog -include/KF5/AkonadiWidgets/Akonadi/CollectionPropertiesPage -include/KF5/AkonadiWidgets/Akonadi/CollectionRequester -include/KF5/AkonadiWidgets/Akonadi/CollectionStatisticsDelegate -include/KF5/AkonadiWidgets/Akonadi/ControlGui -include/KF5/AkonadiWidgets/Akonadi/DbAccess -include/KF5/AkonadiWidgets/Akonadi/ETMViewStateSaver -include/KF5/AkonadiWidgets/Akonadi/EntityListView -include/KF5/AkonadiWidgets/Akonadi/EntityTreeView -include/KF5/AkonadiWidgets/Akonadi/ManageAccountWidget -include/KF5/AkonadiWidgets/Akonadi/StandardActionManager -include/KF5/AkonadiWidgets/Akonadi/SubscriptionDialog -include/KF5/AkonadiWidgets/Akonadi/TagEditWidget -include/KF5/AkonadiWidgets/Akonadi/TagManagementDialog -include/KF5/AkonadiWidgets/Akonadi/TagSelectWidget -include/KF5/AkonadiWidgets/Akonadi/TagSelectionComboBox -include/KF5/AkonadiWidgets/Akonadi/TagSelectionDialog -include/KF5/AkonadiWidgets/Akonadi/TagWidget -include/KF5/AkonadiWidgets/akonadi/agentactionmanager.h -include/KF5/AkonadiWidgets/akonadi/agentconfigurationdialog.h -include/KF5/AkonadiWidgets/akonadi/agentconfigurationwidget.h -include/KF5/AkonadiWidgets/akonadi/agentinstancewidget.h -include/KF5/AkonadiWidgets/akonadi/agenttypedialog.h -include/KF5/AkonadiWidgets/akonadi/agenttypewidget.h -include/KF5/AkonadiWidgets/akonadi/akonadiwidgets_export.h -include/KF5/AkonadiWidgets/akonadi/clearcachejob.h -include/KF5/AkonadiWidgets/akonadi/collectioncombobox.h -include/KF5/AkonadiWidgets/akonadi/collectiondialog.h -include/KF5/AkonadiWidgets/akonadi/collectionmaintenancepage.h -include/KF5/AkonadiWidgets/akonadi/collectionpropertiesdialog.h -include/KF5/AkonadiWidgets/akonadi/collectionpropertiespage.h -include/KF5/AkonadiWidgets/akonadi/collectionrequester.h -include/KF5/AkonadiWidgets/akonadi/collectionstatisticsdelegate.h -include/KF5/AkonadiWidgets/akonadi/controlgui.h -include/KF5/AkonadiWidgets/akonadi/dbaccess.h -include/KF5/AkonadiWidgets/akonadi/entitylistview.h -include/KF5/AkonadiWidgets/akonadi/entitytreeview.h -include/KF5/AkonadiWidgets/akonadi/etmviewstatesaver.h -include/KF5/AkonadiWidgets/akonadi/manageaccountwidget.h -include/KF5/AkonadiWidgets/akonadi/standardactionmanager.h -include/KF5/AkonadiWidgets/akonadi/subscriptiondialog.h -include/KF5/AkonadiWidgets/akonadi/tageditwidget.h -include/KF5/AkonadiWidgets/akonadi/tagmanagementdialog.h -include/KF5/AkonadiWidgets/akonadi/tagselectioncombobox.h -include/KF5/AkonadiWidgets/akonadi/tagselectiondialog.h -include/KF5/AkonadiWidgets/akonadi/tagselectwidget.h -include/KF5/AkonadiWidgets/akonadi/tagwidget.h -include/KF5/AkonadiXml/Akonadi/XmlDocument -include/KF5/AkonadiXml/Akonadi/XmlReader -include/KF5/AkonadiXml/Akonadi/XmlWriteJob -include/KF5/AkonadiXml/Akonadi/XmlWriter -include/KF5/AkonadiXml/akonadi/akonadi-xml_export.h -include/KF5/AkonadiXml/akonadi/xmldocument.h -include/KF5/AkonadiXml/akonadi/xmlreader.h -include/KF5/AkonadiXml/akonadi/xmlwritejob.h -include/KF5/AkonadiXml/akonadi/xmlwriter.h +include/KPim5/Akonadi/akonadi/private/akonadiprivate_export.h +include/KPim5/Akonadi/akonadi/private/capabilities_p.h +include/KPim5/Akonadi/akonadi/private/compressionstream_p.h +include/KPim5/Akonadi/akonadi/private/dbus_p.h +include/KPim5/Akonadi/akonadi/private/externalpartstorage_p.h +include/KPim5/Akonadi/akonadi/private/imapparser_p.h +include/KPim5/Akonadi/akonadi/private/imapset_p.h +include/KPim5/Akonadi/akonadi/private/instance_p.h +include/KPim5/Akonadi/akonadi/private/protocol_exception_p.h +include/KPim5/Akonadi/akonadi/private/protocol_gen.h +include/KPim5/Akonadi/akonadi/private/protocol_p.h +include/KPim5/Akonadi/akonadi/private/scope_p.h +include/KPim5/Akonadi/akonadi/private/standarddirs_p.h +include/KPim5/Akonadi/akonadi/private/tristate_p.h +include/KPim5/AkonadiAgentBase/Akonadi/AccountsIntegration +include/KPim5/AkonadiAgentBase/Akonadi/AgentBase +include/KPim5/AkonadiAgentBase/Akonadi/AgentSearchInterface +include/KPim5/AkonadiAgentBase/Akonadi/PreprocessorBase +include/KPim5/AkonadiAgentBase/Akonadi/ResourceBase +include/KPim5/AkonadiAgentBase/Akonadi/ResourceSettings +include/KPim5/AkonadiAgentBase/Akonadi/TransportResourceBase +include/KPim5/AkonadiAgentBase/akonadi/accountsintegration.h +include/KPim5/AkonadiAgentBase/akonadi/agentbase.h +include/KPim5/AkonadiAgentBase/akonadi/agentsearchinterface.h +include/KPim5/AkonadiAgentBase/akonadi/akonadiagentbase_export.h +include/KPim5/AkonadiAgentBase/akonadi/preprocessorbase.h +include/KPim5/AkonadiAgentBase/akonadi/resourcebase.h +include/KPim5/AkonadiAgentBase/akonadi/resourcebasesettings.h +include/KPim5/AkonadiAgentBase/akonadi/resourcesettings.h +include/KPim5/AkonadiAgentBase/akonadi/transportresourcebase.h +include/KPim5/AkonadiCore/Akonadi/AbstractDifferencesReporter +include/KPim5/AkonadiCore/Akonadi/AgentConfigurationBase +include/KPim5/AkonadiCore/Akonadi/AgentConfigurationFactoryBase +include/KPim5/AkonadiCore/Akonadi/AgentFilterProxyModel +include/KPim5/AkonadiCore/Akonadi/AgentInstance +include/KPim5/AkonadiCore/Akonadi/AgentInstanceCreateJob +include/KPim5/AkonadiCore/Akonadi/AgentInstanceModel +include/KPim5/AkonadiCore/Akonadi/AgentManager +include/KPim5/AkonadiCore/Akonadi/AgentType +include/KPim5/AkonadiCore/Akonadi/AgentTypeModel +include/KPim5/AkonadiCore/Akonadi/Attribute +include/KPim5/AkonadiCore/Akonadi/AttributeFactory +include/KPim5/AkonadiCore/Akonadi/CachePolicy +include/KPim5/AkonadiCore/Akonadi/ChangeNotification +include/KPim5/AkonadiCore/Akonadi/ChangeRecorder +include/KPim5/AkonadiCore/Akonadi/Collection +include/KPim5/AkonadiCore/Akonadi/CollectionAttributesSynchronizationJob +include/KPim5/AkonadiCore/Akonadi/CollectionColorAttribute +include/KPim5/AkonadiCore/Akonadi/CollectionCopyJob +include/KPim5/AkonadiCore/Akonadi/CollectionCreateJob +include/KPim5/AkonadiCore/Akonadi/CollectionDeleteJob +include/KPim5/AkonadiCore/Akonadi/CollectionFetchJob +include/KPim5/AkonadiCore/Akonadi/CollectionFetchScope +include/KPim5/AkonadiCore/Akonadi/CollectionFilterProxyModel +include/KPim5/AkonadiCore/Akonadi/CollectionIdentificationAttribute +include/KPim5/AkonadiCore/Akonadi/CollectionModifyJob +include/KPim5/AkonadiCore/Akonadi/CollectionMoveJob +include/KPim5/AkonadiCore/Akonadi/CollectionPathResolver +include/KPim5/AkonadiCore/Akonadi/CollectionQuotaAttribute +include/KPim5/AkonadiCore/Akonadi/CollectionStatistics +include/KPim5/AkonadiCore/Akonadi/CollectionStatisticsJob +include/KPim5/AkonadiCore/Akonadi/CollectionUtils +include/KPim5/AkonadiCore/Akonadi/Control +include/KPim5/AkonadiCore/Akonadi/DifferencesAlgorithmInterface +include/KPim5/AkonadiCore/Akonadi/EntityAnnotationsAttribute +include/KPim5/AkonadiCore/Akonadi/EntityDeletedAttribute +include/KPim5/AkonadiCore/Akonadi/EntityDisplayAttribute +include/KPim5/AkonadiCore/Akonadi/EntityHiddenAttribute +include/KPim5/AkonadiCore/Akonadi/EntityMimeTypeFilterModel +include/KPim5/AkonadiCore/Akonadi/EntityOrderProxyModel +include/KPim5/AkonadiCore/Akonadi/EntityRightsFilterModel +include/KPim5/AkonadiCore/Akonadi/EntityTreeModel +include/KPim5/AkonadiCore/Akonadi/ExceptionBase +include/KPim5/AkonadiCore/Akonadi/FavoriteCollectionAttribute +include/KPim5/AkonadiCore/Akonadi/FavoriteCollectionsModel +include/KPim5/AkonadiCore/Akonadi/GidExtractorInterface +include/KPim5/AkonadiCore/Akonadi/IndexPolicyAttribute +include/KPim5/AkonadiCore/Akonadi/Item +include/KPim5/AkonadiCore/Akonadi/ItemCopyJob +include/KPim5/AkonadiCore/Akonadi/ItemCreateJob +include/KPim5/AkonadiCore/Akonadi/ItemDeleteJob +include/KPim5/AkonadiCore/Akonadi/ItemFetchJob +include/KPim5/AkonadiCore/Akonadi/ItemFetchScope +include/KPim5/AkonadiCore/Akonadi/ItemModifyJob +include/KPim5/AkonadiCore/Akonadi/ItemMonitor +include/KPim5/AkonadiCore/Akonadi/ItemMoveJob +include/KPim5/AkonadiCore/Akonadi/ItemSearchJob +include/KPim5/AkonadiCore/Akonadi/ItemSerializerPlugin +include/KPim5/AkonadiCore/Akonadi/ItemSync +include/KPim5/AkonadiCore/Akonadi/Job +include/KPim5/AkonadiCore/Akonadi/LinkJob +include/KPim5/AkonadiCore/Akonadi/MimeTypeChecker +include/KPim5/AkonadiCore/Akonadi/Monitor +include/KPim5/AkonadiCore/Akonadi/NotificationSubscriber +include/KPim5/AkonadiCore/Akonadi/PartFetcher +include/KPim5/AkonadiCore/Akonadi/PersistentSearchAttribute +include/KPim5/AkonadiCore/Akonadi/RecursiveCollectionFilterProxyModel +include/KPim5/AkonadiCore/Akonadi/RecursiveItemFetchJob +include/KPim5/AkonadiCore/Akonadi/Relation +include/KPim5/AkonadiCore/Akonadi/RelationCreateJob +include/KPim5/AkonadiCore/Akonadi/RelationDeleteJob +include/KPim5/AkonadiCore/Akonadi/RelationFetchJob +include/KPim5/AkonadiCore/Akonadi/ResourceSynchronizationJob +include/KPim5/AkonadiCore/Akonadi/SearchCreateJob +include/KPim5/AkonadiCore/Akonadi/SearchQuery +include/KPim5/AkonadiCore/Akonadi/SelectionProxyModel +include/KPim5/AkonadiCore/Akonadi/ServerManager +include/KPim5/AkonadiCore/Akonadi/Session +include/KPim5/AkonadiCore/Akonadi/SpecialCollectionAttribute +include/KPim5/AkonadiCore/Akonadi/SpecialCollections +include/KPim5/AkonadiCore/Akonadi/SpecialCollectionsDiscoveryJob +include/KPim5/AkonadiCore/Akonadi/SpecialCollectionsRequestJob +include/KPim5/AkonadiCore/Akonadi/StatisticsProxyModel +include/KPim5/AkonadiCore/Akonadi/Supertrait +include/KPim5/AkonadiCore/Akonadi/Tag +include/KPim5/AkonadiCore/Akonadi/TagAttribute +include/KPim5/AkonadiCore/Akonadi/TagCache +include/KPim5/AkonadiCore/Akonadi/TagCreateJob +include/KPim5/AkonadiCore/Akonadi/TagDeleteJob +include/KPim5/AkonadiCore/Akonadi/TagFetchJob +include/KPim5/AkonadiCore/Akonadi/TagFetchScope +include/KPim5/AkonadiCore/Akonadi/TagModel +include/KPim5/AkonadiCore/Akonadi/TagModifyJob +include/KPim5/AkonadiCore/Akonadi/TransactionJobs +include/KPim5/AkonadiCore/Akonadi/TransactionSequence +include/KPim5/AkonadiCore/Akonadi/TrashFilterProxyModel +include/KPim5/AkonadiCore/Akonadi/TrashJob +include/KPim5/AkonadiCore/Akonadi/TrashRestoreJob +include/KPim5/AkonadiCore/Akonadi/TrashSettings +include/KPim5/AkonadiCore/Akonadi/UnlinkJob +include/KPim5/AkonadiCore/Akonadi/VectorHelper +include/KPim5/AkonadiCore/akonadi/abstractdifferencesreporter.h +include/KPim5/AkonadiCore/akonadi/abstractsearchplugin.h +include/KPim5/AkonadiCore/akonadi/agentconfigurationbase.h +include/KPim5/AkonadiCore/akonadi/agentconfigurationfactorybase.h +include/KPim5/AkonadiCore/akonadi/agentfilterproxymodel.h +include/KPim5/AkonadiCore/akonadi/agentinstance.h +include/KPim5/AkonadiCore/akonadi/agentinstancecreatejob.h +include/KPim5/AkonadiCore/akonadi/agentinstancemodel.h +include/KPim5/AkonadiCore/akonadi/agentmanager.h +include/KPim5/AkonadiCore/akonadi/agenttype.h +include/KPim5/AkonadiCore/akonadi/agenttypemodel.h +include/KPim5/AkonadiCore/akonadi/akonadicore_export.h +include/KPim5/AkonadiCore/akonadi/attribute.h +include/KPim5/AkonadiCore/akonadi/attributefactory.h +include/KPim5/AkonadiCore/akonadi/cachepolicy.h +include/KPim5/AkonadiCore/akonadi/changenotification.h +include/KPim5/AkonadiCore/akonadi/changerecorder.h +include/KPim5/AkonadiCore/akonadi/collection.h +include/KPim5/AkonadiCore/akonadi/collectionattributessynchronizationjob.h +include/KPim5/AkonadiCore/akonadi/collectioncolorattribute.h +include/KPim5/AkonadiCore/akonadi/collectioncopyjob.h +include/KPim5/AkonadiCore/akonadi/collectioncreatejob.h +include/KPim5/AkonadiCore/akonadi/collectiondeletejob.h +include/KPim5/AkonadiCore/akonadi/collectionfetchjob.h +include/KPim5/AkonadiCore/akonadi/collectionfetchscope.h +include/KPim5/AkonadiCore/akonadi/collectionfilterproxymodel.h +include/KPim5/AkonadiCore/akonadi/collectionidentificationattribute.h +include/KPim5/AkonadiCore/akonadi/collectionmodifyjob.h +include/KPim5/AkonadiCore/akonadi/collectionmovejob.h +include/KPim5/AkonadiCore/akonadi/collectionpathresolver.h +include/KPim5/AkonadiCore/akonadi/collectionquotaattribute.h +include/KPim5/AkonadiCore/akonadi/collectionstatistics.h +include/KPim5/AkonadiCore/akonadi/collectionstatisticsjob.h +include/KPim5/AkonadiCore/akonadi/collectionutils.h +include/KPim5/AkonadiCore/akonadi/config-akonadi.h +include/KPim5/AkonadiCore/akonadi/control.h +include/KPim5/AkonadiCore/akonadi/differencesalgorithminterface.h +include/KPim5/AkonadiCore/akonadi/entityannotationsattribute.h +include/KPim5/AkonadiCore/akonadi/entitydeletedattribute.h +include/KPim5/AkonadiCore/akonadi/entitydisplayattribute.h +include/KPim5/AkonadiCore/akonadi/entityhiddenattribute.h +include/KPim5/AkonadiCore/akonadi/entitymimetypefiltermodel.h +include/KPim5/AkonadiCore/akonadi/entityorderproxymodel.h +include/KPim5/AkonadiCore/akonadi/entityrightsfiltermodel.h +include/KPim5/AkonadiCore/akonadi/entitytreemodel.h +include/KPim5/AkonadiCore/akonadi/exceptionbase.h +include/KPim5/AkonadiCore/akonadi/favoritecollectionattribute.h +include/KPim5/AkonadiCore/akonadi/favoritecollectionsmodel.h +include/KPim5/AkonadiCore/akonadi/gidextractorinterface.h +include/KPim5/AkonadiCore/akonadi/indexpolicyattribute.h +include/KPim5/AkonadiCore/akonadi/item.h +include/KPim5/AkonadiCore/akonadi/itemcopyjob.h +include/KPim5/AkonadiCore/akonadi/itemcreatejob.h +include/KPim5/AkonadiCore/akonadi/itemdeletejob.h +include/KPim5/AkonadiCore/akonadi/itemfetchjob.h +include/KPim5/AkonadiCore/akonadi/itemfetchscope.h +include/KPim5/AkonadiCore/akonadi/itemmodifyjob.h +include/KPim5/AkonadiCore/akonadi/itemmonitor.h +include/KPim5/AkonadiCore/akonadi/itemmovejob.h +include/KPim5/AkonadiCore/akonadi/itempayloadinternals_p.h +include/KPim5/AkonadiCore/akonadi/itemsearchjob.h +include/KPim5/AkonadiCore/akonadi/itemserializerplugin.h +include/KPim5/AkonadiCore/akonadi/itemsync.h +include/KPim5/AkonadiCore/akonadi/job.h +include/KPim5/AkonadiCore/akonadi/linkjob.h +include/KPim5/AkonadiCore/akonadi/mimetypechecker.h +include/KPim5/AkonadiCore/akonadi/monitor.h +include/KPim5/AkonadiCore/akonadi/notificationsubscriber.h +include/KPim5/AkonadiCore/akonadi/partfetcher.h +include/KPim5/AkonadiCore/akonadi/persistentsearchattribute.h +include/KPim5/AkonadiCore/akonadi/qtest_akonadi.h +include/KPim5/AkonadiCore/akonadi/recursivecollectionfilterproxymodel.h +include/KPim5/AkonadiCore/akonadi/recursiveitemfetchjob.h +include/KPim5/AkonadiCore/akonadi/relation.h +include/KPim5/AkonadiCore/akonadi/relationcreatejob.h +include/KPim5/AkonadiCore/akonadi/relationdeletejob.h +include/KPim5/AkonadiCore/akonadi/relationfetchjob.h +include/KPim5/AkonadiCore/akonadi/resourcesynchronizationjob.h +include/KPim5/AkonadiCore/akonadi/searchcreatejob.h +include/KPim5/AkonadiCore/akonadi/searchquery.h +include/KPim5/AkonadiCore/akonadi/selectionproxymodel.h +include/KPim5/AkonadiCore/akonadi/servermanager.h +include/KPim5/AkonadiCore/akonadi/session.h +include/KPim5/AkonadiCore/akonadi/specialcollectionattribute.h +include/KPim5/AkonadiCore/akonadi/specialcollections.h +include/KPim5/AkonadiCore/akonadi/specialcollectionsdiscoveryjob.h +include/KPim5/AkonadiCore/akonadi/specialcollectionsrequestjob.h +include/KPim5/AkonadiCore/akonadi/statisticsproxymodel.h +include/KPim5/AkonadiCore/akonadi/supertrait.h +include/KPim5/AkonadiCore/akonadi/tag.h +include/KPim5/AkonadiCore/akonadi/tagattribute.h +include/KPim5/AkonadiCore/akonadi/tagcache.h +include/KPim5/AkonadiCore/akonadi/tagcreatejob.h +include/KPim5/AkonadiCore/akonadi/tagdeletejob.h +include/KPim5/AkonadiCore/akonadi/tagfetchjob.h +include/KPim5/AkonadiCore/akonadi/tagfetchscope.h +include/KPim5/AkonadiCore/akonadi/tagmodel.h +include/KPim5/AkonadiCore/akonadi/tagmodifyjob.h +include/KPim5/AkonadiCore/akonadi/transactionjobs.h +include/KPim5/AkonadiCore/akonadi/transactionsequence.h +include/KPim5/AkonadiCore/akonadi/trashfilterproxymodel.h +include/KPim5/AkonadiCore/akonadi/trashjob.h +include/KPim5/AkonadiCore/akonadi/trashrestorejob.h +include/KPim5/AkonadiCore/akonadi/trashsettings.h +include/KPim5/AkonadiCore/akonadi/unlinkjob.h +include/KPim5/AkonadiCore/akonadi/vectorhelper.h +include/KPim5/AkonadiCore/akonadi_version.h +include/KPim5/AkonadiWidgets/Akonadi/AgentActionManager +include/KPim5/AkonadiWidgets/Akonadi/AgentConfigurationDialog +include/KPim5/AkonadiWidgets/Akonadi/AgentConfigurationWidget +include/KPim5/AkonadiWidgets/Akonadi/AgentInstanceWidget +include/KPim5/AkonadiWidgets/Akonadi/AgentTypeDialog +include/KPim5/AkonadiWidgets/Akonadi/AgentTypeWidget +include/KPim5/AkonadiWidgets/Akonadi/ClearCacheJob +include/KPim5/AkonadiWidgets/Akonadi/CollectionComboBox +include/KPim5/AkonadiWidgets/Akonadi/CollectionDialog +include/KPim5/AkonadiWidgets/Akonadi/CollectionMaintenancePage +include/KPim5/AkonadiWidgets/Akonadi/CollectionPropertiesDialog +include/KPim5/AkonadiWidgets/Akonadi/CollectionPropertiesPage +include/KPim5/AkonadiWidgets/Akonadi/CollectionRequester +include/KPim5/AkonadiWidgets/Akonadi/CollectionStatisticsDelegate +include/KPim5/AkonadiWidgets/Akonadi/ControlGui +include/KPim5/AkonadiWidgets/Akonadi/DbAccess +include/KPim5/AkonadiWidgets/Akonadi/ETMViewStateSaver +include/KPim5/AkonadiWidgets/Akonadi/EntityListView +include/KPim5/AkonadiWidgets/Akonadi/EntityTreeView +include/KPim5/AkonadiWidgets/Akonadi/ManageAccountWidget +include/KPim5/AkonadiWidgets/Akonadi/StandardActionManager +include/KPim5/AkonadiWidgets/Akonadi/SubscriptionDialog +include/KPim5/AkonadiWidgets/Akonadi/TagEditWidget +include/KPim5/AkonadiWidgets/Akonadi/TagManagementDialog +include/KPim5/AkonadiWidgets/Akonadi/TagSelectWidget +include/KPim5/AkonadiWidgets/Akonadi/TagSelectionComboBox +include/KPim5/AkonadiWidgets/Akonadi/TagSelectionDialog +include/KPim5/AkonadiWidgets/Akonadi/TagWidget +include/KPim5/AkonadiWidgets/akonadi/agentactionmanager.h +include/KPim5/AkonadiWidgets/akonadi/agentconfigurationdialog.h +include/KPim5/AkonadiWidgets/akonadi/agentconfigurationwidget.h +include/KPim5/AkonadiWidgets/akonadi/agentinstancewidget.h +include/KPim5/AkonadiWidgets/akonadi/agenttypedialog.h +include/KPim5/AkonadiWidgets/akonadi/agenttypewidget.h +include/KPim5/AkonadiWidgets/akonadi/akonadiwidgets_export.h +include/KPim5/AkonadiWidgets/akonadi/clearcachejob.h +include/KPim5/AkonadiWidgets/akonadi/collectioncombobox.h +include/KPim5/AkonadiWidgets/akonadi/collectiondialog.h +include/KPim5/AkonadiWidgets/akonadi/collectionmaintenancepage.h +include/KPim5/AkonadiWidgets/akonadi/collectionpropertiesdialog.h +include/KPim5/AkonadiWidgets/akonadi/collectionpropertiespage.h +include/KPim5/AkonadiWidgets/akonadi/collectionrequester.h +include/KPim5/AkonadiWidgets/akonadi/collectionstatisticsdelegate.h +include/KPim5/AkonadiWidgets/akonadi/controlgui.h +include/KPim5/AkonadiWidgets/akonadi/dbaccess.h +include/KPim5/AkonadiWidgets/akonadi/entitylistview.h +include/KPim5/AkonadiWidgets/akonadi/entitytreeview.h +include/KPim5/AkonadiWidgets/akonadi/etmviewstatesaver.h +include/KPim5/AkonadiWidgets/akonadi/manageaccountwidget.h +include/KPim5/AkonadiWidgets/akonadi/standardactionmanager.h +include/KPim5/AkonadiWidgets/akonadi/subscriptiondialog.h +include/KPim5/AkonadiWidgets/akonadi/tageditwidget.h +include/KPim5/AkonadiWidgets/akonadi/tagmanagementdialog.h +include/KPim5/AkonadiWidgets/akonadi/tagselectioncombobox.h +include/KPim5/AkonadiWidgets/akonadi/tagselectiondialog.h +include/KPim5/AkonadiWidgets/akonadi/tagselectwidget.h +include/KPim5/AkonadiWidgets/akonadi/tagwidget.h +include/KPim5/AkonadiXml/Akonadi/XmlDocument +include/KPim5/AkonadiXml/Akonadi/XmlReader +include/KPim5/AkonadiXml/Akonadi/XmlWriteJob +include/KPim5/AkonadiXml/Akonadi/XmlWriter +include/KPim5/AkonadiXml/akonadi/akonadi-xml_export.h +include/KPim5/AkonadiXml/akonadi/xmldocument.h +include/KPim5/AkonadiXml/akonadi/xmlreader.h +include/KPim5/AkonadiXml/akonadi/xmlwritejob.h +include/KPim5/AkonadiXml/akonadi/xmlwriter.h lib/cmake/KF5Akonadi/KF5AkonadiConfig.cmake lib/cmake/KF5Akonadi/KF5AkonadiConfigVersion.cmake -lib/cmake/KF5Akonadi/KF5AkonadiMacros.cmake -lib/cmake/KF5Akonadi/KF5AkonadiTargets-%%CMAKE_BUILD_TYPE%%.cmake -lib/cmake/KF5Akonadi/KF5AkonadiTargets.cmake -lib/libKF5AkonadiAgentBase.so -lib/libKF5AkonadiAgentBase.so.5 -lib/libKF5AkonadiAgentBase.so.%%KDE_APPLICATIONS_SHLIB_VER%% -lib/libKF5AkonadiCore.so -lib/libKF5AkonadiCore.so.5 -lib/libKF5AkonadiCore.so.%%KDE_APPLICATIONS_SHLIB_VER%% -lib/libKF5AkonadiPrivate.so -lib/libKF5AkonadiPrivate.so.5 -lib/libKF5AkonadiPrivate.so.%%KDE_APPLICATIONS_SHLIB_VER%% -lib/libKF5AkonadiWidgets.so -lib/libKF5AkonadiWidgets.so.5 -lib/libKF5AkonadiWidgets.so.%%KDE_APPLICATIONS_SHLIB_VER%% -lib/libKF5AkonadiXml.so -lib/libKF5AkonadiXml.so.5 -lib/libKF5AkonadiXml.so.%%KDE_APPLICATIONS_SHLIB_VER%% +lib/cmake/KF5Akonadi/KPim5AkonadiTargets-%%CMAKE_BUILD_TYPE%%.cmake +lib/cmake/KF5Akonadi/KPim5AkonadiTargets.cmake +lib/cmake/KF5Akonadi/KPimAkonadiMacros.cmake +lib/cmake/KPim5Akonadi/KPim5AkonadiConfig.cmake +lib/cmake/KPim5Akonadi/KPim5AkonadiConfigVersion.cmake +lib/cmake/KPim5Akonadi/KPim5AkonadiTargets-%%CMAKE_BUILD_TYPE%%.cmake +lib/cmake/KPim5Akonadi/KPim5AkonadiTargets.cmake +lib/cmake/KPim5Akonadi/KPimAkonadiMacros.cmake +lib/libKPim5AkonadiAgentBase.so +lib/libKPim5AkonadiAgentBase.so.5 +lib/libKPim5AkonadiAgentBase.so.%%KDE_APPLICATIONS_SHLIB_VER%% +lib/libKPim5AkonadiCore.so +lib/libKPim5AkonadiCore.so.5 +lib/libKPim5AkonadiCore.so.%%KDE_APPLICATIONS_SHLIB_VER%% +lib/libKPim5AkonadiPrivate.so +lib/libKPim5AkonadiPrivate.so.5 +lib/libKPim5AkonadiPrivate.so.%%KDE_APPLICATIONS_SHLIB_VER%% +lib/libKPim5AkonadiWidgets.so +lib/libKPim5AkonadiWidgets.so.5 +lib/libKPim5AkonadiWidgets.so.%%KDE_APPLICATIONS_SHLIB_VER%% +lib/libKPim5AkonadiXml.so +lib/libKPim5AkonadiXml.so.5 +lib/libKPim5AkonadiXml.so.%%KDE_APPLICATIONS_SHLIB_VER%% %%QT_MKSPECDIR%%/modules/qt_AkonadiAgentBase.pri %%QT_MKSPECDIR%%/modules/qt_AkonadiCore.pri %%QT_MKSPECDIR%%/modules/qt_AkonadiWidgets.pri %%QT_MKSPECDIR%%/modules/qt_AkonadiXml.pri -%%QT_PLUGINDIR%%/designer/akonadiwidgets.so +%%QT_PLUGINDIR%%/designer/akonadi5widgets.so %%QT_PLUGINDIR%%/pim5/akonadi/akonadi_test_searchplugin.so %%QT_PLUGINDIR%%/sqldrivers/libqsqlite3.so %%DATADIR%%/agents/knutresource.desktop share/config.kcfg/resourcebase.kcfg share/dbus-1/interfaces/org.freedesktop.Akonadi.Agent.Control.xml share/dbus-1/interfaces/org.freedesktop.Akonadi.Agent.Search.xml share/dbus-1/interfaces/org.freedesktop.Akonadi.Agent.Status.xml share/dbus-1/interfaces/org.freedesktop.Akonadi.AgentManager.xml share/dbus-1/interfaces/org.freedesktop.Akonadi.ControlManager.xml share/dbus-1/interfaces/org.freedesktop.Akonadi.DebugInterface.xml share/dbus-1/interfaces/org.freedesktop.Akonadi.NotificationManager.xml share/dbus-1/interfaces/org.freedesktop.Akonadi.NotificationSource.xml share/dbus-1/interfaces/org.freedesktop.Akonadi.Preprocessor.xml share/dbus-1/interfaces/org.freedesktop.Akonadi.Resource.xml share/dbus-1/interfaces/org.freedesktop.Akonadi.Server.xml share/dbus-1/interfaces/org.freedesktop.Akonadi.StorageDebugger.xml share/dbus-1/interfaces/org.freedesktop.Akonadi.Tracer.xml share/dbus-1/interfaces/org.freedesktop.Akonadi.TracerNotification.xml share/dbus-1/services/org.freedesktop.Akonadi.Control.service share/icons/hicolor/128x128/apps/akonadi.png share/icons/hicolor/16x16/apps/akonadi.png share/icons/hicolor/22x22/apps/akonadi.png share/icons/hicolor/256x256/apps/akonadi.png share/icons/hicolor/32x32/apps/akonadi.png share/icons/hicolor/48x48/apps/akonadi.png share/icons/hicolor/64x64/apps/akonadi.png share/icons/hicolor/scalable/apps/akonadi.svgz share/kdevappwizard/templates/akonadiresource.tar.bz2 share/kdevappwizard/templates/akonadiserializer.tar.bz2 share/kf5/akonadi/akonadi-xml.xsd share/kf5/akonadi/kcfg2dbus.xsl share/kf5/akonadi_knut_resource/knut-template.xml share/locale/ar/LC_MESSAGES/akonadi_knut_resource.mo share/locale/ar/LC_MESSAGES/libakonadi5.mo share/locale/az/LC_MESSAGES/akonadi_knut_resource.mo share/locale/az/LC_MESSAGES/libakonadi5.mo share/locale/be/LC_MESSAGES/libakonadi5.mo share/locale/bg/LC_MESSAGES/akonadi_knut_resource.mo share/locale/bg/LC_MESSAGES/libakonadi5.mo share/locale/bs/LC_MESSAGES/akonadi_knut_resource.mo share/locale/bs/LC_MESSAGES/libakonadi5.mo share/locale/ca/LC_MESSAGES/akonadi_knut_resource.mo share/locale/ca/LC_MESSAGES/libakonadi5.mo share/locale/ca@valencia/LC_MESSAGES/akonadi_knut_resource.mo share/locale/ca@valencia/LC_MESSAGES/libakonadi5.mo share/locale/cs/LC_MESSAGES/akonadi_knut_resource.mo share/locale/cs/LC_MESSAGES/libakonadi5.mo share/locale/da/LC_MESSAGES/akonadi_knut_resource.mo share/locale/da/LC_MESSAGES/libakonadi5.mo share/locale/de/LC_MESSAGES/akonadi_knut_resource.mo share/locale/de/LC_MESSAGES/libakonadi5.mo share/locale/el/LC_MESSAGES/akonadi_knut_resource.mo share/locale/el/LC_MESSAGES/libakonadi5.mo share/locale/en_GB/LC_MESSAGES/akonadi_knut_resource.mo share/locale/en_GB/LC_MESSAGES/libakonadi5.mo share/locale/eo/LC_MESSAGES/akonadi_knut_resource.mo share/locale/eo/LC_MESSAGES/libakonadi5.mo share/locale/es/LC_MESSAGES/akonadi_knut_resource.mo share/locale/es/LC_MESSAGES/libakonadi5.mo share/locale/et/LC_MESSAGES/akonadi_knut_resource.mo share/locale/et/LC_MESSAGES/libakonadi5.mo share/locale/eu/LC_MESSAGES/akonadi_knut_resource.mo share/locale/eu/LC_MESSAGES/libakonadi5.mo share/locale/fi/LC_MESSAGES/akonadi_knut_resource.mo share/locale/fi/LC_MESSAGES/libakonadi5.mo share/locale/fr/LC_MESSAGES/akonadi_knut_resource.mo share/locale/fr/LC_MESSAGES/libakonadi5.mo share/locale/ga/LC_MESSAGES/akonadi_knut_resource.mo share/locale/ga/LC_MESSAGES/libakonadi5.mo share/locale/gl/LC_MESSAGES/akonadi_knut_resource.mo share/locale/gl/LC_MESSAGES/libakonadi5.mo share/locale/hsb/LC_MESSAGES/libakonadi5.mo share/locale/hu/LC_MESSAGES/akonadi_knut_resource.mo share/locale/hu/LC_MESSAGES/libakonadi5.mo share/locale/ia/LC_MESSAGES/akonadi_knut_resource.mo share/locale/ia/LC_MESSAGES/libakonadi5.mo share/locale/id/LC_MESSAGES/akonadi_knut_resource.mo share/locale/id/LC_MESSAGES/libakonadi5.mo share/locale/it/LC_MESSAGES/akonadi_knut_resource.mo share/locale/it/LC_MESSAGES/libakonadi5.mo share/locale/ja/LC_MESSAGES/akonadi_knut_resource.mo share/locale/ja/LC_MESSAGES/libakonadi5.mo share/locale/ka/LC_MESSAGES/akonadi_knut_resource.mo share/locale/ka/LC_MESSAGES/libakonadi5.mo share/locale/kk/LC_MESSAGES/akonadi_knut_resource.mo share/locale/kk/LC_MESSAGES/libakonadi5.mo share/locale/km/LC_MESSAGES/akonadi_knut_resource.mo share/locale/km/LC_MESSAGES/libakonadi5.mo share/locale/ko/LC_MESSAGES/akonadi_knut_resource.mo share/locale/ko/LC_MESSAGES/libakonadi5.mo share/locale/lt/LC_MESSAGES/akonadi_knut_resource.mo share/locale/lt/LC_MESSAGES/libakonadi5.mo share/locale/lv/LC_MESSAGES/akonadi_knut_resource.mo share/locale/lv/LC_MESSAGES/libakonadi5.mo share/locale/mai/LC_MESSAGES/libakonadi5.mo share/locale/mr/LC_MESSAGES/akonadi_knut_resource.mo share/locale/mr/LC_MESSAGES/libakonadi5.mo share/locale/my/LC_MESSAGES/akonadi_knut_resource.mo share/locale/my/LC_MESSAGES/libakonadi5.mo share/locale/nb/LC_MESSAGES/akonadi_knut_resource.mo share/locale/nb/LC_MESSAGES/libakonadi5.mo share/locale/nds/LC_MESSAGES/akonadi_knut_resource.mo share/locale/nds/LC_MESSAGES/libakonadi5.mo share/locale/nl/LC_MESSAGES/akonadi_knut_resource.mo share/locale/nl/LC_MESSAGES/libakonadi5.mo share/locale/nn/LC_MESSAGES/akonadi_knut_resource.mo share/locale/nn/LC_MESSAGES/libakonadi5.mo share/locale/pa/LC_MESSAGES/akonadi_knut_resource.mo share/locale/pa/LC_MESSAGES/libakonadi5.mo share/locale/pl/LC_MESSAGES/akonadi_knut_resource.mo share/locale/pl/LC_MESSAGES/libakonadi5.mo share/locale/pt/LC_MESSAGES/akonadi_knut_resource.mo share/locale/pt/LC_MESSAGES/libakonadi5.mo share/locale/pt_BR/LC_MESSAGES/akonadi_knut_resource.mo share/locale/pt_BR/LC_MESSAGES/libakonadi5.mo share/locale/ro/LC_MESSAGES/akonadi_knut_resource.mo share/locale/ro/LC_MESSAGES/libakonadi5.mo share/locale/ru/LC_MESSAGES/akonadi_knut_resource.mo share/locale/ru/LC_MESSAGES/libakonadi5.mo share/locale/se/LC_MESSAGES/libakonadi5.mo share/locale/sk/LC_MESSAGES/akonadi_knut_resource.mo share/locale/sk/LC_MESSAGES/libakonadi5.mo share/locale/sl/LC_MESSAGES/akonadi_knut_resource.mo share/locale/sl/LC_MESSAGES/libakonadi5.mo share/locale/sq/LC_MESSAGES/akonadi_knut_resource.mo share/locale/sr/LC_MESSAGES/akonadi_knut_resource.mo share/locale/sr/LC_MESSAGES/libakonadi5.mo share/locale/sr@ijekavian/LC_MESSAGES/akonadi_knut_resource.mo share/locale/sr@ijekavian/LC_MESSAGES/libakonadi5.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/akonadi_knut_resource.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/libakonadi5.mo share/locale/sr@latin/LC_MESSAGES/akonadi_knut_resource.mo share/locale/sr@latin/LC_MESSAGES/libakonadi5.mo share/locale/sv/LC_MESSAGES/akonadi_knut_resource.mo share/locale/sv/LC_MESSAGES/libakonadi5.mo share/locale/tg/LC_MESSAGES/akonadi_knut_resource.mo share/locale/tg/LC_MESSAGES/libakonadi5.mo share/locale/th/LC_MESSAGES/libakonadi5.mo share/locale/tr/LC_MESSAGES/akonadi_knut_resource.mo share/locale/tr/LC_MESSAGES/libakonadi5.mo share/locale/ug/LC_MESSAGES/akonadi_knut_resource.mo share/locale/ug/LC_MESSAGES/libakonadi5.mo share/locale/uk/LC_MESSAGES/akonadi_knut_resource.mo share/locale/uk/LC_MESSAGES/libakonadi5.mo share/locale/zh_CN/LC_MESSAGES/akonadi_knut_resource.mo share/locale/zh_CN/LC_MESSAGES/libakonadi5.mo share/locale/zh_TW/LC_MESSAGES/akonadi_knut_resource.mo share/locale/zh_TW/LC_MESSAGES/libakonadi5.mo share/mime/packages/akonadi-mime.xml share/qlogging-categories5/akonadi.categories share/qlogging-categories5/akonadi.renamecategories diff --git a/deskutils/akonadi-calendar-tools/distinfo b/deskutils/akonadi-calendar-tools/distinfo index abbe605a637f..73734ff69e8c 100644 --- a/deskutils/akonadi-calendar-tools/distinfo +++ b/deskutils/akonadi-calendar-tools/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1677828341 -SHA256 (KDE/release-service/22.12.3/akonadi-calendar-tools-22.12.3.tar.xz) = 96555917165a30410a122d4cc6534c4d472b7f2a0cdeef838dc98b04db36293a -SIZE (KDE/release-service/22.12.3/akonadi-calendar-tools-22.12.3.tar.xz) = 254132 +TIMESTAMP = 1681548345 +SHA256 (KDE/release-service/23.04.0/akonadi-calendar-tools-23.04.0.tar.xz) = ab81391b5c7be8f7e34618822cf1d49e2151ce36090c0e904eb0c3f43e225bf1 +SIZE (KDE/release-service/23.04.0/akonadi-calendar-tools-23.04.0.tar.xz) = 254396 diff --git a/deskutils/akonadi-import-wizard/distinfo b/deskutils/akonadi-import-wizard/distinfo index a4c252ff8638..a0d943c0aebb 100644 --- a/deskutils/akonadi-import-wizard/distinfo +++ b/deskutils/akonadi-import-wizard/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1677828313 -SHA256 (KDE/release-service/22.12.3/akonadi-import-wizard-22.12.3.tar.xz) = 62c0ba2721b98716ae22c965c938eaeff0ddd28d57f50839970a566fc756f248 -SIZE (KDE/release-service/22.12.3/akonadi-import-wizard-22.12.3.tar.xz) = 514460 +TIMESTAMP = 1681548354 +SHA256 (KDE/release-service/23.04.0/akonadi-import-wizard-23.04.0.tar.xz) = 0969c6d87f027af12af96243c1af124a7a03b511067c95d5e82ae7bc7503d59b +SIZE (KDE/release-service/23.04.0/akonadi-import-wizard-23.04.0.tar.xz) = 514904 diff --git a/deskutils/akonadi-import-wizard/pkg-plist b/deskutils/akonadi-import-wizard/pkg-plist index 0bab828a3e11..60260e4eb71f 100644 --- a/deskutils/akonadi-import-wizard/pkg-plist +++ b/deskutils/akonadi-import-wizard/pkg-plist @@ -1,84 +1,88 @@ bin/akonadiimportwizard -include/KF5/KPim/ImportWizard/AbstractAddressBook -include/KF5/KPim/ImportWizard/AbstractBase -include/KF5/KPim/ImportWizard/AbstractCalendar -include/KF5/KPim/ImportWizard/AbstractDisplayInfo -include/KF5/KPim/ImportWizard/AbstractImporter -include/KF5/KPim/ImportWizard/AbstractSettings -include/KF5/KPim/ImportWizard/ImportWizardUtil -include/KF5/KPim/importwizard/abstractaddressbook.h -include/KF5/KPim/importwizard/abstractbase.h -include/KF5/KPim/importwizard/abstractcalendar.h -include/KF5/KPim/importwizard/abstractdisplayinfo.h -include/KF5/KPim/importwizard/abstractimporter.h -include/KF5/KPim/importwizard/abstractsettings.h -include/KF5/KPim/importwizard/importwizardutil.h -include/KF5/KPim/importwizard/libimportwizard_export.h -include/KPim/importwizard_version.h +include/KPim5/ImportWizard/AbstractAddressBook +include/KPim5/ImportWizard/AbstractBase +include/KPim5/ImportWizard/AbstractCalendar +include/KPim5/ImportWizard/AbstractDisplayInfo +include/KPim5/ImportWizard/AbstractImporter +include/KPim5/ImportWizard/AbstractSettings +include/KPim5/ImportWizard/ImportWizardUtil +include/KPim5/importwizard/abstractaddressbook.h +include/KPim5/importwizard/abstractbase.h +include/KPim5/importwizard/abstractcalendar.h +include/KPim5/importwizard/abstractdisplayinfo.h +include/KPim5/importwizard/abstractimporter.h +include/KPim5/importwizard/abstractsettings.h +include/KPim5/importwizard/importwizardutil.h +include/KPim5/importwizard/libimportwizard_export.h +include/KPim5/importwizard_version.h +lib/cmake/KPim5ImportWizard/KPim5ImportWizardConfig.cmake +lib/cmake/KPim5ImportWizard/KPim5ImportWizardConfigVersion.cmake +lib/cmake/KPim5ImportWizard/KPim5ImportWizardTargets-%%CMAKE_BUILD_TYPE%%.cmake +lib/cmake/KPim5ImportWizard/KPim5ImportWizardTargets.cmake +lib/cmake/KPimImportWizard/KPim5ImportWizardTargets-%%CMAKE_BUILD_TYPE%%.cmake +lib/cmake/KPimImportWizard/KPim5ImportWizardTargets.cmake lib/cmake/KPimImportWizard/KPimImportWizardConfig.cmake lib/cmake/KPimImportWizard/KPimImportWizardConfigVersion.cmake -lib/cmake/KPimImportWizard/KPimImportWizardTargets-%%CMAKE_BUILD_TYPE%%.cmake -lib/cmake/KPimImportWizard/KPimImportWizardTargets.cmake -lib/libKPimImportWizard.so -lib/libKPimImportWizard.so.5 -lib/libKPimImportWizard.so.%%KDE_APPLICATIONS_SHLIB_VER%% +lib/libKPim5ImportWizard.so +lib/libKPim5ImportWizard.so.5 +lib/libKPim5ImportWizard.so.%%KDE_APPLICATIONS_SHLIB_VER%% %%QT_PLUGINDIR%%/pim5/importwizard/balsaimporterplugin.so %%QT_PLUGINDIR%%/pim5/importwizard/clawsmailimporterplugin.so %%QT_PLUGINDIR%%/pim5/importwizard/evolutionv3importerplugin.so %%QT_PLUGINDIR%%/pim5/importwizard/icedoveimporterplugin.so %%QT_PLUGINDIR%%/pim5/importwizard/seamonkeyimporterplugin.so %%QT_PLUGINDIR%%/pim5/importwizard/sylpheedimporterplugin.so %%QT_PLUGINDIR%%/pim5/importwizard/thunderbirdimporterplugin.so %%QT_PLUGINDIR%%/pim5/importwizard/trojitaimporterplugin.so share/applications/org.kde.akonadiimportwizard.desktop share/icons/hicolor/128x128/apps/kontact-import-wizard.png share/icons/hicolor/256x256/apps/kontact-import-wizard.png share/icons/hicolor/64x64/apps/kontact-import-wizard.png share/importwizard/pics/step1.png share/locale/ar/LC_MESSAGES/akonadiimportwizard.mo share/locale/az/LC_MESSAGES/akonadiimportwizard.mo share/locale/bg/LC_MESSAGES/akonadiimportwizard.mo share/locale/bs/LC_MESSAGES/akonadiimportwizard.mo share/locale/ca/LC_MESSAGES/akonadiimportwizard.mo share/locale/ca@valencia/LC_MESSAGES/akonadiimportwizard.mo share/locale/cs/LC_MESSAGES/akonadiimportwizard.mo share/locale/da/LC_MESSAGES/akonadiimportwizard.mo share/locale/de/LC_MESSAGES/akonadiimportwizard.mo share/locale/el/LC_MESSAGES/akonadiimportwizard.mo share/locale/en_GB/LC_MESSAGES/akonadiimportwizard.mo share/locale/es/LC_MESSAGES/akonadiimportwizard.mo share/locale/et/LC_MESSAGES/akonadiimportwizard.mo share/locale/eu/LC_MESSAGES/akonadiimportwizard.mo share/locale/fi/LC_MESSAGES/akonadiimportwizard.mo share/locale/fr/LC_MESSAGES/akonadiimportwizard.mo share/locale/ga/LC_MESSAGES/akonadiimportwizard.mo share/locale/gl/LC_MESSAGES/akonadiimportwizard.mo share/locale/hu/LC_MESSAGES/akonadiimportwizard.mo share/locale/ia/LC_MESSAGES/akonadiimportwizard.mo share/locale/it/LC_MESSAGES/akonadiimportwizard.mo share/locale/ja/LC_MESSAGES/akonadiimportwizard.mo share/locale/ka/LC_MESSAGES/akonadiimportwizard.mo share/locale/kk/LC_MESSAGES/akonadiimportwizard.mo share/locale/km/LC_MESSAGES/akonadiimportwizard.mo share/locale/ko/LC_MESSAGES/akonadiimportwizard.mo share/locale/lt/LC_MESSAGES/akonadiimportwizard.mo share/locale/mr/LC_MESSAGES/akonadiimportwizard.mo share/locale/nb/LC_MESSAGES/akonadiimportwizard.mo share/locale/nds/LC_MESSAGES/akonadiimportwizard.mo share/locale/nl/LC_MESSAGES/akonadiimportwizard.mo share/locale/nn/LC_MESSAGES/akonadiimportwizard.mo share/locale/pl/LC_MESSAGES/akonadiimportwizard.mo share/locale/pt/LC_MESSAGES/akonadiimportwizard.mo share/locale/pt_BR/LC_MESSAGES/akonadiimportwizard.mo share/locale/ro/LC_MESSAGES/akonadiimportwizard.mo share/locale/ru/LC_MESSAGES/akonadiimportwizard.mo share/locale/sk/LC_MESSAGES/akonadiimportwizard.mo share/locale/sl/LC_MESSAGES/akonadiimportwizard.mo share/locale/sv/LC_MESSAGES/akonadiimportwizard.mo share/locale/tr/LC_MESSAGES/akonadiimportwizard.mo share/locale/ug/LC_MESSAGES/akonadiimportwizard.mo share/locale/uk/LC_MESSAGES/akonadiimportwizard.mo share/locale/zh_CN/LC_MESSAGES/akonadiimportwizard.mo share/locale/zh_TW/LC_MESSAGES/akonadiimportwizard.mo share/qlogging-categories5/importwizard.categories share/qlogging-categories5/importwizard.renamecategories diff --git a/deskutils/akonadiconsole/distinfo b/deskutils/akonadiconsole/distinfo index a3d985114db6..e5af7d128848 100644 --- a/deskutils/akonadiconsole/distinfo +++ b/deskutils/akonadiconsole/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1677828333 -SHA256 (KDE/release-service/22.12.3/akonadiconsole-22.12.3.tar.xz) = 19266aeaa0ed9befb244bd87c81649c4c3d581d40966fdbd49f749d5ca1b0932 -SIZE (KDE/release-service/22.12.3/akonadiconsole-22.12.3.tar.xz) = 200348 +TIMESTAMP = 1681548361 +SHA256 (KDE/release-service/23.04.0/akonadiconsole-23.04.0.tar.xz) = a0dc55f300b3a8f1baf2e7f6fec8fe6fa8275049ebaad5984c8a5d67da6c1a05 +SIZE (KDE/release-service/23.04.0/akonadiconsole-23.04.0.tar.xz) = 270700 diff --git a/deskutils/akonadiconsole/pkg-plist b/deskutils/akonadiconsole/pkg-plist index 878999d57d82..99a6d6f31d06 100644 --- a/deskutils/akonadiconsole/pkg-plist +++ b/deskutils/akonadiconsole/pkg-plist @@ -1,13 +1,35 @@ bin/akonadiconsole lib/libakonadiconsole.so.5 lib/libakonadiconsole.so.%%KDE_APPLICATIONS_SHLIB_VER%% share/applications/org.kde.akonadiconsole.desktop +share/icons/hicolor/128x128/apps/akonadiconsole.png share/icons/hicolor/16x16/apps/akonadiconsole.png share/icons/hicolor/22x22/apps/akonadiconsole.png +share/icons/hicolor/256x256/apps/akonadiconsole.png share/icons/hicolor/32x32/apps/akonadiconsole.png share/icons/hicolor/48x48/apps/akonadiconsole.png share/icons/hicolor/64x64/apps/akonadiconsole.png -share/icons/hicolor/128x128/apps/akonadiconsole.png -share/icons/hicolor/256x256/apps/akonadiconsole.png +share/locale/ca/LC_MESSAGES/akonadiconsole.mo +share/locale/ca@valencia/LC_MESSAGES/akonadiconsole.mo +share/locale/cs/LC_MESSAGES/akonadiconsole.mo +share/locale/de/LC_MESSAGES/akonadiconsole.mo +share/locale/en_GB/LC_MESSAGES/akonadiconsole.mo +share/locale/es/LC_MESSAGES/akonadiconsole.mo +share/locale/eu/LC_MESSAGES/akonadiconsole.mo +share/locale/fi/LC_MESSAGES/akonadiconsole.mo +share/locale/fr/LC_MESSAGES/akonadiconsole.mo +share/locale/ia/LC_MESSAGES/akonadiconsole.mo +share/locale/it/LC_MESSAGES/akonadiconsole.mo +share/locale/ka/LC_MESSAGES/akonadiconsole.mo +share/locale/lt/LC_MESSAGES/akonadiconsole.mo +share/locale/nl/LC_MESSAGES/akonadiconsole.mo +share/locale/pl/LC_MESSAGES/akonadiconsole.mo +share/locale/pt/LC_MESSAGES/akonadiconsole.mo +share/locale/ru/LC_MESSAGES/akonadiconsole.mo +share/locale/sk/LC_MESSAGES/akonadiconsole.mo +share/locale/sl/LC_MESSAGES/akonadiconsole.mo +share/locale/tr/LC_MESSAGES/akonadiconsole.mo +share/locale/uk/LC_MESSAGES/akonadiconsole.mo +share/locale/zh_CN/LC_MESSAGES/akonadiconsole.mo share/qlogging-categories5/akonadiconsole.categories share/qlogging-categories5/akonadiconsole.renamecategories diff --git a/deskutils/akregator/distinfo b/deskutils/akregator/distinfo index 1f44b88b3fac..d3e2dbf1f867 100644 --- a/deskutils/akregator/distinfo +++ b/deskutils/akregator/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1677828339 -SHA256 (KDE/release-service/22.12.3/akregator-22.12.3.tar.xz) = b5b1b41e546518cc1cde0baded09c3ef2356c978177475d4aa995e0413772cff -SIZE (KDE/release-service/22.12.3/akregator-22.12.3.tar.xz) = 2323788 +TIMESTAMP = 1681548357 +SHA256 (KDE/release-service/23.04.0/akregator-23.04.0.tar.xz) = 2eed09ad088397d8bda426b556c818d9d4420850dbeacc5d92a93095d72e007e +SIZE (KDE/release-service/23.04.0/akregator-23.04.0.tar.xz) = 2324352 diff --git a/deskutils/grantlee-editor/distinfo b/deskutils/grantlee-editor/distinfo index 25a18af637e2..04c6d8d626be 100644 --- a/deskutils/grantlee-editor/distinfo +++ b/deskutils/grantlee-editor/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1677828351 -SHA256 (KDE/release-service/22.12.3/grantlee-editor-22.12.3.tar.xz) = 137c0d2aec67a52f8738738a92fe04b5b9c547ede32e82e806838429397e3927 -SIZE (KDE/release-service/22.12.3/grantlee-editor-22.12.3.tar.xz) = 117688 +TIMESTAMP = 1681548359 +SHA256 (KDE/release-service/23.04.0/grantlee-editor-23.04.0.tar.xz) = 22bd7b7f3329d699d3c909773d2dbc3a2346020037c421f4d04bb9101170c255 +SIZE (KDE/release-service/23.04.0/grantlee-editor-23.04.0.tar.xz) = 117564 diff --git a/deskutils/grantleetheme/distinfo b/deskutils/grantleetheme/distinfo index a28bbe58c83e..59b338397635 100644 --- a/deskutils/grantleetheme/distinfo +++ b/deskutils/grantleetheme/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1677828336 -SHA256 (KDE/release-service/22.12.3/grantleetheme-22.12.3.tar.xz) = e4aba61a3d9ef709fe5050afc3e43c00ce577598fa262c625a00b7319194fa52 -SIZE (KDE/release-service/22.12.3/grantleetheme-22.12.3.tar.xz) = 62424 +TIMESTAMP = 1681548344 +SHA256 (KDE/release-service/23.04.0/grantleetheme-23.04.0.tar.xz) = 5c6462d4cb4857460a61db4919081804e2451bc28f43a0b655ea8a37e7ab7395 +SIZE (KDE/release-service/23.04.0/grantleetheme-23.04.0.tar.xz) = 62952 diff --git a/deskutils/grantleetheme/pkg-plist b/deskutils/grantleetheme/pkg-plist index 6084ec68c7ce..2b37745e5e7c 100644 --- a/deskutils/grantleetheme/pkg-plist +++ b/deskutils/grantleetheme/pkg-plist @@ -1,77 +1,81 @@ -include/KF5/GrantleeTheme/GrantleeTheme/GenericFormatter -include/KF5/GrantleeTheme/GrantleeTheme/GrantleeKi18nLocalizer -include/KF5/GrantleeTheme/GrantleeTheme/GrantleeTheme -include/KF5/GrantleeTheme/GrantleeTheme/GrantleeThemeEngine -include/KF5/GrantleeTheme/GrantleeTheme/GrantleeThemeManager -include/KF5/GrantleeTheme/GrantleeTheme/QtResourceTemplateLoader -include/KF5/GrantleeTheme/grantleetheme/GenericFormatter -include/KF5/GrantleeTheme/grantleetheme/GrantleeKi18nLocalizer -include/KF5/GrantleeTheme/grantleetheme/GrantleeTheme -include/KF5/GrantleeTheme/grantleetheme/GrantleeThemeEngine -include/KF5/GrantleeTheme/grantleetheme/GrantleeThemeManager -include/KF5/GrantleeTheme/grantleetheme/QtResourceTemplateLoader -include/KF5/GrantleeTheme/grantleetheme/genericformatter.h -include/KF5/GrantleeTheme/grantleetheme/grantleeki18nlocalizer.h -include/KF5/GrantleeTheme/grantleetheme/grantleetheme.h -include/KF5/GrantleeTheme/grantleetheme/grantleetheme_export.h -include/KF5/GrantleeTheme/grantleetheme/grantleethemeengine.h -include/KF5/GrantleeTheme/grantleetheme/grantleethememanager.h -include/KF5/GrantleeTheme/grantleetheme/qtresourcetemplateloader.h -include/KF5/GrantleeTheme/grantleetheme_version.h +include/KPim5/GrantleeTheme/GrantleeTheme/GenericFormatter +include/KPim5/GrantleeTheme/GrantleeTheme/GrantleeKi18nLocalizer +include/KPim5/GrantleeTheme/GrantleeTheme/GrantleeTheme +include/KPim5/GrantleeTheme/GrantleeTheme/GrantleeThemeEngine +include/KPim5/GrantleeTheme/GrantleeTheme/GrantleeThemeManager +include/KPim5/GrantleeTheme/GrantleeTheme/QtResourceTemplateLoader +include/KPim5/GrantleeTheme/grantleetheme/GenericFormatter +include/KPim5/GrantleeTheme/grantleetheme/GrantleeKi18nLocalizer +include/KPim5/GrantleeTheme/grantleetheme/GrantleeTheme +include/KPim5/GrantleeTheme/grantleetheme/GrantleeThemeEngine +include/KPim5/GrantleeTheme/grantleetheme/GrantleeThemeManager +include/KPim5/GrantleeTheme/grantleetheme/QtResourceTemplateLoader +include/KPim5/GrantleeTheme/grantleetheme/genericformatter.h +include/KPim5/GrantleeTheme/grantleetheme/grantleeki18nlocalizer.h +include/KPim5/GrantleeTheme/grantleetheme/grantleetheme.h +include/KPim5/GrantleeTheme/grantleetheme/grantleetheme_export.h +include/KPim5/GrantleeTheme/grantleetheme/grantleethemeengine.h +include/KPim5/GrantleeTheme/grantleetheme/grantleethememanager.h +include/KPim5/GrantleeTheme/grantleetheme/qtresourcetemplateloader.h +include/KPim5/GrantleeTheme/grantleetheme_version.h lib/cmake/KF5GrantleeTheme/KF5GrantleeThemeConfig.cmake lib/cmake/KF5GrantleeTheme/KF5GrantleeThemeConfigVersion.cmake -lib/cmake/KF5GrantleeTheme/KF5GrantleeThemeTargets-%%CMAKE_BUILD_TYPE%%.cmake -lib/cmake/KF5GrantleeTheme/KF5GrantleeThemeTargets.cmake +lib/cmake/KF5GrantleeTheme/KPim5GrantleeThemeTargets-%%CMAKE_BUILD_TYPE%%.cmake +lib/cmake/KF5GrantleeTheme/KPim5GrantleeThemeTargets.cmake +lib/cmake/KPim5GrantleeTheme/KPim5GrantleeThemeConfig.cmake +lib/cmake/KPim5GrantleeTheme/KPim5GrantleeThemeConfigVersion.cmake +lib/cmake/KPim5GrantleeTheme/KPim5GrantleeThemeTargets-%%CMAKE_BUILD_TYPE%%.cmake +lib/cmake/KPim5GrantleeTheme/KPim5GrantleeThemeTargets.cmake lib/grantlee/%%GRANTLEE_VERSION_SHORT%%/kde_grantlee_plugin.so -lib/libKF5GrantleeTheme.so -lib/libKF5GrantleeTheme.so.5 -lib/libKF5GrantleeTheme.so.%%KDE_APPLICATIONS_SHLIB_VER%% +lib/libKPim5GrantleeTheme.so +lib/libKPim5GrantleeTheme.so.5 +lib/libKPim5GrantleeTheme.so.%%KDE_APPLICATIONS_SHLIB_VER%% %%QT_MKSPECDIR%%/modules/qt_GrantleeTheme.pri share/locale/ar/LC_MESSAGES/libgrantleetheme.mo share/locale/bg/LC_MESSAGES/libgrantleetheme.mo share/locale/bs/LC_MESSAGES/libgrantleetheme.mo share/locale/ca/LC_MESSAGES/libgrantleetheme.mo share/locale/ca@valencia/LC_MESSAGES/libgrantleetheme.mo share/locale/cs/LC_MESSAGES/libgrantleetheme.mo share/locale/da/LC_MESSAGES/libgrantleetheme.mo share/locale/de/LC_MESSAGES/libgrantleetheme.mo share/locale/el/LC_MESSAGES/libgrantleetheme.mo share/locale/en_GB/LC_MESSAGES/libgrantleetheme.mo share/locale/es/LC_MESSAGES/libgrantleetheme.mo share/locale/et/LC_MESSAGES/libgrantleetheme.mo share/locale/eu/LC_MESSAGES/libgrantleetheme.mo share/locale/fi/LC_MESSAGES/libgrantleetheme.mo share/locale/fr/LC_MESSAGES/libgrantleetheme.mo share/locale/gl/LC_MESSAGES/libgrantleetheme.mo share/locale/hi/LC_MESSAGES/libgrantleetheme.mo share/locale/hu/LC_MESSAGES/libgrantleetheme.mo share/locale/ia/LC_MESSAGES/libgrantleetheme.mo share/locale/it/LC_MESSAGES/libgrantleetheme.mo share/locale/ja/LC_MESSAGES/libgrantleetheme.mo share/locale/ka/LC_MESSAGES/libgrantleetheme.mo share/locale/kk/LC_MESSAGES/libgrantleetheme.mo share/locale/ko/LC_MESSAGES/libgrantleetheme.mo share/locale/lt/LC_MESSAGES/libgrantleetheme.mo share/locale/nb/LC_MESSAGES/libgrantleetheme.mo share/locale/nds/LC_MESSAGES/libgrantleetheme.mo share/locale/nl/LC_MESSAGES/libgrantleetheme.mo share/locale/nn/LC_MESSAGES/libgrantleetheme.mo share/locale/pl/LC_MESSAGES/libgrantleetheme.mo share/locale/pt/LC_MESSAGES/libgrantleetheme.mo share/locale/pt_BR/LC_MESSAGES/libgrantleetheme.mo share/locale/ro/LC_MESSAGES/libgrantleetheme.mo share/locale/ru/LC_MESSAGES/libgrantleetheme.mo share/locale/sk/LC_MESSAGES/libgrantleetheme.mo share/locale/sl/LC_MESSAGES/libgrantleetheme.mo share/locale/sr/LC_MESSAGES/libgrantleetheme.mo share/locale/sr@ijekavian/LC_MESSAGES/libgrantleetheme.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/libgrantleetheme.mo share/locale/sr@latin/LC_MESSAGES/libgrantleetheme.mo share/locale/sv/LC_MESSAGES/libgrantleetheme.mo share/locale/tr/LC_MESSAGES/libgrantleetheme.mo share/locale/ug/LC_MESSAGES/libgrantleetheme.mo share/locale/uk/LC_MESSAGES/libgrantleetheme.mo share/locale/zh_CN/LC_MESSAGES/libgrantleetheme.mo share/locale/zh_TW/LC_MESSAGES/libgrantleetheme.mo share/qlogging-categories5/grantleetheme.categories share/qlogging-categories5/grantleetheme.renamecategories diff --git a/deskutils/itinerary/Makefile b/deskutils/itinerary/Makefile index 51cb81788b57..ae5d3d592494 100644 --- a/deskutils/itinerary/Makefile +++ b/deskutils/itinerary/Makefile @@ -1,24 +1,27 @@ PORTNAME= itinerary DISTVERSION= ${KDE_APPLICATIONS_VERSION} CATEGORIES= deskutils kde kde-applications MAINTAINER= kde@FreeBSD.org COMMENT= Digital travel assistant for KDE WWW= https://apps.kde.org/en/itinerary +BUILD_DEPENDS= kirigami-addons>=0:x11-toolkits/kirigami-addons +RUN_DEPENDS= kirigami-addons>=0:x11-toolkits/kirigami-addons + USES= cmake compiler:c++11-lang desktop-file-utils gettext kde:5 qt:5 \ tar:xz xorg USE_KDE= calendarcore completion config contacts coreaddons crash \ dbusaddons i18n jobwidgets kio kpkpass notifications kosm \ kitinerary kpublictransport mime qqc2-desktop-style \ service solid widgetsaddons windowsystem \ ecm:build USE_QT= concurrent core dbus declarative gui location network quick3d \ quickcontrols2 \ testlib widgets \ buildtools:build qmake:build USE_XORG= x11 OPTIONS_DEFINE= DOCS .include diff --git a/deskutils/itinerary/distinfo b/deskutils/itinerary/distinfo index 6287e640486a..6d75b9af944c 100644 --- a/deskutils/itinerary/distinfo +++ b/deskutils/itinerary/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1677828314 -SHA256 (KDE/release-service/22.12.3/itinerary-22.12.3.tar.xz) = 80d636afebe43776b9d7e676f5a7a4e270b6f8a97f5fcf1a34b01bbe03209de2 -SIZE (KDE/release-service/22.12.3/itinerary-22.12.3.tar.xz) = 580608 +TIMESTAMP = 1681548346 +SHA256 (KDE/release-service/23.04.0/itinerary-23.04.0.tar.xz) = 438af1c36e3846c2578d857919d51c6b038b87e2d16c2841f27599e20062ea7e +SIZE (KDE/release-service/23.04.0/itinerary-23.04.0.tar.xz) = 579220 diff --git a/deskutils/itinerary/pkg-plist b/deskutils/itinerary/pkg-plist index 2e77ae80ec51..18a0fce7d2d2 100644 --- a/deskutils/itinerary/pkg-plist +++ b/deskutils/itinerary/pkg-plist @@ -1,52 +1,39 @@ bin/itinerary lib/libSolidExtras.so %%QT_PLUGINDIR%%/kf5/thumbcreator/itinerarythumbnail.so -%%QT_QMLDIR%%/org/kde/itinerary/kirigamiaddons/dateandtime/ClockFace.qml -%%QT_QMLDIR%%/org/kde/itinerary/kirigamiaddons/dateandtime/DateInput.qml -%%QT_QMLDIR%%/org/kde/itinerary/kirigamiaddons/dateandtime/DatePicker.qml -%%QT_QMLDIR%%/org/kde/itinerary/kirigamiaddons/dateandtime/DatePopup.qml -%%QT_QMLDIR%%/org/kde/itinerary/kirigamiaddons/dateandtime/TimeInput.qml -%%QT_QMLDIR%%/org/kde/itinerary/kirigamiaddons/dateandtime/TimeLabel.qml -%%QT_QMLDIR%%/org/kde/itinerary/kirigamiaddons/dateandtime/TimePicker.qml -%%QT_QMLDIR%%/org/kde/itinerary/kirigamiaddons/dateandtime/libitinerary-dateandtimeplugin.so -%%QT_QMLDIR%%/org/kde/itinerary/kirigamiaddons/dateandtime/private/ClockElement.qml -%%QT_QMLDIR%%/org/kde/itinerary/kirigamiaddons/dateandtime/private/DesktopDateInput.qml -%%QT_QMLDIR%%/org/kde/itinerary/kirigamiaddons/dateandtime/private/Hand.qml -%%QT_QMLDIR%%/org/kde/itinerary/kirigamiaddons/dateandtime/private/MobileDateInput.qml -%%QT_QMLDIR%%/org/kde/itinerary/kirigamiaddons/dateandtime/qmldir %%QT_QMLDIR%%/org/kde/solidextras/libsolidextrasqmlplugin.so %%QT_QMLDIR%%/org/kde/solidextras/qmldir share/applications/org.kde.itinerary.desktop share/icons/hicolor/scalable/apps/org.kde.itinerary.svg share/knotifications5/itinerary.notifyrc share/locale/ca/LC_MESSAGES/kde-itinerary.mo share/locale/ca@valencia/LC_MESSAGES/kde-itinerary.mo share/locale/cs/LC_MESSAGES/kde-itinerary.mo share/locale/de/LC_MESSAGES/kde-itinerary.mo share/locale/en_GB/LC_MESSAGES/kde-itinerary.mo share/locale/es/LC_MESSAGES/kde-itinerary.mo share/locale/et/LC_MESSAGES/kde-itinerary.mo share/locale/eu/LC_MESSAGES/kde-itinerary.mo share/locale/fi/LC_MESSAGES/kde-itinerary.mo share/locale/fr/LC_MESSAGES/kde-itinerary.mo share/locale/gl/LC_MESSAGES/kde-itinerary.mo share/locale/ia/LC_MESSAGES/kde-itinerary.mo share/locale/it/LC_MESSAGES/kde-itinerary.mo share/locale/ja/LC_MESSAGES/kde-itinerary.mo share/locale/ka/LC_MESSAGES/kde-itinerary.mo share/locale/ko/LC_MESSAGES/kde-itinerary.mo share/locale/lt/LC_MESSAGES/kde-itinerary.mo share/locale/nl/LC_MESSAGES/kde-itinerary.mo share/locale/pl/LC_MESSAGES/kde-itinerary.mo share/locale/pt/LC_MESSAGES/kde-itinerary.mo share/locale/pt_BR/LC_MESSAGES/kde-itinerary.mo share/locale/ru/LC_MESSAGES/kde-itinerary.mo share/locale/sk/LC_MESSAGES/kde-itinerary.mo share/locale/sl/LC_MESSAGES/kde-itinerary.mo share/locale/sv/LC_MESSAGES/kde-itinerary.mo share/locale/tr/LC_MESSAGES/kde-itinerary.mo share/locale/uk/LC_MESSAGES/kde-itinerary.mo share/locale/zh_CN/LC_MESSAGES/kde-itinerary.mo share/locale/zh_TW/LC_MESSAGES/kde-itinerary.mo share/metainfo/org.kde.itinerary.appdata.xml share/qlogging-categories5/org_kde_itinerary.categories diff --git a/deskutils/kaddressbook/distinfo b/deskutils/kaddressbook/distinfo index b998647309ba..a6f8c66d6811 100644 --- a/deskutils/kaddressbook/distinfo +++ b/deskutils/kaddressbook/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1677828337 -SHA256 (KDE/release-service/22.12.3/kaddressbook-22.12.3.tar.xz) = 7eb5d5a70d48c4a2fedfcbd08351762e97f9248b3dfd43b2820097509b8b0cb6 -SIZE (KDE/release-service/22.12.3/kaddressbook-22.12.3.tar.xz) = 3458876 +TIMESTAMP = 1681548353 +SHA256 (KDE/release-service/23.04.0/kaddressbook-23.04.0.tar.xz) = 3c91736c0d98a5df94031b080d6c2b4efabf16123a533e5dcc98f31d74c0c96c +SIZE (KDE/release-service/23.04.0/kaddressbook-23.04.0.tar.xz) = 3457560 diff --git a/deskutils/kaddressbook/pkg-plist b/deskutils/kaddressbook/pkg-plist index 3bc15519335d..08fd8c19250d 100644 --- a/deskutils/kaddressbook/pkg-plist +++ b/deskutils/kaddressbook/pkg-plist @@ -1,140 +1,144 @@ bin/kaddressbook -include/KPim/KAddressBookImportExport/ContactFields -include/KPim/KAddressBookImportExport/ContactList -include/KPim/KAddressBookImportExport/ContactSelectionDialog -include/KPim/KAddressBookImportExport/ContactSelectionWidget -include/KPim/KAddressBookImportExport/ExportSelectionWidget -include/KPim/KAddressBookImportExport/ImportExportEngine -include/KPim/KAddressBookImportExport/Plugin -include/KPim/KAddressBookImportExport/PluginInterface -include/KPim/KAddressBookImportExport/PluginManager -include/KPim/kaddressbookimportexport/contactfields.h -include/KPim/kaddressbookimportexport/contactlist.h -include/KPim/kaddressbookimportexport/contactselectiondialog.h -include/KPim/kaddressbookimportexport/contactselectionwidget.h -include/KPim/kaddressbookimportexport/exportselectionwidget.h -include/KPim/kaddressbookimportexport/importexportengine.h -include/KPim/kaddressbookimportexport/kaddressbook_importexport_export.h -include/KPim/kaddressbookimportexport/plugin.h -include/KPim/kaddressbookimportexport/plugininterface.h -include/KPim/kaddressbookimportexport/pluginmanager.h -include/KPim/kaddressbookimportexport_version.h +include/KPim5/KAddressBookImportExport/ContactFields +include/KPim5/KAddressBookImportExport/ContactList +include/KPim5/KAddressBookImportExport/ContactSelectionDialog +include/KPim5/KAddressBookImportExport/ContactSelectionWidget +include/KPim5/KAddressBookImportExport/ExportSelectionWidget +include/KPim5/KAddressBookImportExport/ImportExportEngine +include/KPim5/KAddressBookImportExport/Plugin +include/KPim5/KAddressBookImportExport/PluginInterface +include/KPim5/KAddressBookImportExport/PluginManager +include/KPim5/kaddressbookimportexport/contactfields.h +include/KPim5/kaddressbookimportexport/contactlist.h +include/KPim5/kaddressbookimportexport/contactselectiondialog.h +include/KPim5/kaddressbookimportexport/contactselectionwidget.h +include/KPim5/kaddressbookimportexport/exportselectionwidget.h +include/KPim5/kaddressbookimportexport/importexportengine.h +include/KPim5/kaddressbookimportexport/kaddressbook_importexport_export.h +include/KPim5/kaddressbookimportexport/plugin.h +include/KPim5/kaddressbookimportexport/plugininterface.h +include/KPim5/kaddressbookimportexport/pluginmanager.h +include/KPim5/kaddressbookimportexport_version.h +lib/cmake/KPim5AddressbookImportExport/KPim5AddressbookImportExportConfig.cmake +lib/cmake/KPim5AddressbookImportExport/KPim5AddressbookImportExportConfigVersion.cmake +lib/cmake/KPim5AddressbookImportExport/KPim5AddressbookImportExportTargets-%%CMAKE_BUILD_TYPE%%.cmake +lib/cmake/KPim5AddressbookImportExport/KPim5AddressbookImportExportTargets.cmake lib/cmake/KPimAddressbookImportExport/KPimAddressbookImportExportConfig.cmake lib/cmake/KPimAddressbookImportExport/KPimAddressbookImportExportConfigVersion.cmake lib/cmake/KPimAddressbookImportExport/KPimAddressbookImportExportTargets-%%CMAKE_BUILD_TYPE%%.cmake lib/cmake/KPimAddressbookImportExport/KPimAddressbookImportExportTargets.cmake -lib/libKPimAddressbookImportExport.so -lib/libKPimAddressbookImportExport.so.5 -lib/libKPimAddressbookImportExport.so.%%KDE_APPLICATIONS_SHLIB_VER%% +lib/libKPim5AddressbookImportExport.so +lib/libKPim5AddressbookImportExport.so.5 +lib/libKPim5AddressbookImportExport.so.%%KDE_APPLICATIONS_SHLIB_VER%% lib/libkaddressbookprivate.so.5 lib/libkaddressbookprivate.so.%%KDE_APPLICATIONS_SHLIB_VER%% %%QT_MKSPECDIR%%/modules/qt_KAddressbookImportExport.pri %%QT_PLUGINDIR%%/kaddressbookpart.so %%QT_PLUGINDIR%%/pim5/kcms/kaddressbook/kaddressbook_config_plugins.so %%QT_PLUGINDIR%%/pim5/kontact/kontact_kaddressbookplugin.so share/applications/kaddressbook-importer.desktop share/applications/kaddressbook-view.desktop share/applications/org.kde.kaddressbook.desktop share/icons/hicolor/128x128/apps/kaddressbook.png share/icons/hicolor/16x16/apps/kaddressbook.png share/icons/hicolor/22x22/apps/kaddressbook.png share/icons/hicolor/32x32/apps/kaddressbook.png share/icons/hicolor/48x48/apps/kaddressbook.png share/icons/hicolor/64x64/apps/kaddressbook.png share/icons/hicolor/scalable/apps/kaddressbook.svg %%DATADIR%%/printing/compact-style.png %%DATADIR%%/printing/detailed-style.png %%DATADIR%%/printing/mike-style.png %%DATADIR%%/printing/ringbinder-style.png %%DATADIR%%/printing/themes/big-theme-example/theme.desktop %%DATADIR%%/printing/themes/big-theme-example/theme.html %%DATADIR%%/printing/themes/default/theme.desktop %%DATADIR%%/printing/themes/default/theme.html %%DATADIR%%/printing/themes/full/theme.desktop %%DATADIR%%/printing/themes/full/theme.html %%DATADIR%%/viewertemplates/default/contact.html %%DATADIR%%/viewertemplates/default/contact_embedded.html %%DATADIR%%/viewertemplates/default/contact_row.html %%DATADIR%%/viewertemplates/default/contactgroup.html %%DATADIR%%/viewertemplates/default/contactgroup_additionalfieldrow.html %%DATADIR%%/viewertemplates/default/contactgroup_embedded.html %%DATADIR%%/viewertemplates/default/contactgroup_memberrow.html %%DATADIR%%/viewertemplates/default/theme.desktop share/locale/af/LC_MESSAGES/kaddressbook.mo share/locale/ar/LC_MESSAGES/kaddressbook.mo share/locale/az/LC_MESSAGES/kaddressbook.mo share/locale/be/LC_MESSAGES/kaddressbook.mo share/locale/bg/LC_MESSAGES/kaddressbook.mo share/locale/bn/LC_MESSAGES/kaddressbook.mo share/locale/br/LC_MESSAGES/kaddressbook.mo share/locale/bs/LC_MESSAGES/kaddressbook.mo share/locale/ca/LC_MESSAGES/kaddressbook.mo share/locale/ca@valencia/LC_MESSAGES/kaddressbook.mo share/locale/cs/LC_MESSAGES/kaddressbook.mo share/locale/cy/LC_MESSAGES/kaddressbook.mo share/locale/da/LC_MESSAGES/kaddressbook.mo share/locale/de/LC_MESSAGES/kaddressbook.mo share/locale/el/LC_MESSAGES/kaddressbook.mo share/locale/en_GB/LC_MESSAGES/kaddressbook.mo share/locale/eo/LC_MESSAGES/kaddressbook.mo share/locale/es/LC_MESSAGES/kaddressbook.mo share/locale/et/LC_MESSAGES/kaddressbook.mo share/locale/eu/LC_MESSAGES/kaddressbook.mo share/locale/fa/LC_MESSAGES/kaddressbook.mo share/locale/fi/LC_MESSAGES/kaddressbook.mo share/locale/fr/LC_MESSAGES/kaddressbook.mo share/locale/fy/LC_MESSAGES/kaddressbook.mo share/locale/ga/LC_MESSAGES/kaddressbook.mo share/locale/gl/LC_MESSAGES/kaddressbook.mo share/locale/he/LC_MESSAGES/kaddressbook.mo share/locale/hr/LC_MESSAGES/kaddressbook.mo share/locale/hu/LC_MESSAGES/kaddressbook.mo share/locale/ia/LC_MESSAGES/kaddressbook.mo share/locale/is/LC_MESSAGES/kaddressbook.mo share/locale/it/LC_MESSAGES/kaddressbook.mo share/locale/ja/LC_MESSAGES/kaddressbook.mo share/locale/ka/LC_MESSAGES/kaddressbook.mo share/locale/kk/LC_MESSAGES/kaddressbook.mo share/locale/km/LC_MESSAGES/kaddressbook.mo share/locale/ko/LC_MESSAGES/kaddressbook.mo share/locale/lt/LC_MESSAGES/kaddressbook.mo share/locale/lv/LC_MESSAGES/kaddressbook.mo share/locale/mai/LC_MESSAGES/kaddressbook.mo share/locale/mk/LC_MESSAGES/kaddressbook.mo share/locale/mr/LC_MESSAGES/kaddressbook.mo share/locale/ms/LC_MESSAGES/kaddressbook.mo share/locale/nb/LC_MESSAGES/kaddressbook.mo share/locale/nds/LC_MESSAGES/kaddressbook.mo share/locale/ne/LC_MESSAGES/kaddressbook.mo share/locale/nl/LC_MESSAGES/kaddressbook.mo share/locale/nn/LC_MESSAGES/kaddressbook.mo share/locale/pa/LC_MESSAGES/kaddressbook.mo share/locale/pl/LC_MESSAGES/kaddressbook.mo share/locale/pt/LC_MESSAGES/kaddressbook.mo share/locale/pt_BR/LC_MESSAGES/kaddressbook.mo share/locale/ro/LC_MESSAGES/kaddressbook.mo share/locale/ru/LC_MESSAGES/kaddressbook.mo share/locale/se/LC_MESSAGES/kaddressbook.mo share/locale/sk/LC_MESSAGES/kaddressbook.mo share/locale/sl/LC_MESSAGES/kaddressbook.mo share/locale/sq/LC_MESSAGES/kaddressbook.mo share/locale/sr/LC_MESSAGES/kaddressbook.mo share/locale/sr@ijekavian/LC_MESSAGES/kaddressbook.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kaddressbook.mo share/locale/sr@latin/LC_MESSAGES/kaddressbook.mo share/locale/sv/LC_MESSAGES/kaddressbook.mo share/locale/ta/LC_MESSAGES/kaddressbook.mo share/locale/tg/LC_MESSAGES/kaddressbook.mo share/locale/th/LC_MESSAGES/kaddressbook.mo share/locale/tr/LC_MESSAGES/kaddressbook.mo share/locale/ug/LC_MESSAGES/kaddressbook.mo share/locale/uk/LC_MESSAGES/kaddressbook.mo share/locale/uz/LC_MESSAGES/kaddressbook.mo share/locale/uz@cyrillic/LC_MESSAGES/kaddressbook.mo share/locale/vi/LC_MESSAGES/kaddressbook.mo share/locale/xh/LC_MESSAGES/kaddressbook.mo share/locale/zh_CN/LC_MESSAGES/kaddressbook.mo share/locale/zh_TW/LC_MESSAGES/kaddressbook.mo share/metainfo/org.kde.kaddressbook.appdata.xml share/qlogging-categories5/kaddressbook.categories share/qlogging-categories5/kaddressbook.renamecategories diff --git a/deskutils/kalarm/distinfo b/deskutils/kalarm/distinfo index a2f8b8a46dcf..06db04c28d2e 100644 --- a/deskutils/kalarm/distinfo +++ b/deskutils/kalarm/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1677828346 -SHA256 (KDE/release-service/22.12.3/kalarm-22.12.3.tar.xz) = 05523ebb3cb4f9b87461219fdd9443ca39560261d2d4fbe8dc5c4163554a8c1c -SIZE (KDE/release-service/22.12.3/kalarm-22.12.3.tar.xz) = 2579824 +TIMESTAMP = 1681548336 +SHA256 (KDE/release-service/23.04.0/kalarm-23.04.0.tar.xz) = 3aad46389998c50e587f2fa467b143ca978c3e04ed9de37d923f4e0b255aa131 +SIZE (KDE/release-service/23.04.0/kalarm-23.04.0.tar.xz) = 2588220 diff --git a/deskutils/kalendar/distinfo b/deskutils/kalendar/distinfo index 58f3b8e4c69a..7ff07d18b895 100644 --- a/deskutils/kalendar/distinfo +++ b/deskutils/kalendar/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1677828320 -SHA256 (KDE/release-service/22.12.3/kalendar-22.12.3.tar.xz) = 56c574a760e678d0570e892c160c1c22c2a0079c279e04aeebf166da8e8602b5 -SIZE (KDE/release-service/22.12.3/kalendar-22.12.3.tar.xz) = 803604 +TIMESTAMP = 1681548356 +SHA256 (KDE/release-service/23.04.0/kalendar-23.04.0.tar.xz) = ee6331fb4b44c757f1d892961bbb8779b0d8dac3f667e208b037ae6d67f68766 +SIZE (KDE/release-service/23.04.0/kalendar-23.04.0.tar.xz) = 823108 diff --git a/deskutils/kalendar/pkg-plist b/deskutils/kalendar/pkg-plist index b9bde76a97e6..5e40fa85d6fc 100644 --- a/deskutils/kalendar/pkg-plist +++ b/deskutils/kalendar/pkg-plist @@ -1,113 +1,149 @@ bin/kalendar %%QT_QMLDIR%%/org/kde/akonadi/AgentConfigurationForm.qml %%QT_QMLDIR%%/org/kde/akonadi/CollectionComboBox.qml +%%QT_QMLDIR%%/org/kde/akonadi/MobileCollectionComboBox.qml %%QT_QMLDIR%%/org/kde/akonadi/libakonadi_quick_plugin.so %%QT_QMLDIR%%/org/kde/akonadi/qmldir +%%QT_QMLDIR%%/org/kde/kalendar/calendar/CalendarApplication.qml +%%QT_QMLDIR%%/org/kde/kalendar/calendar/ReminderDelegate.qml +%%QT_QMLDIR%%/org/kde/kalendar/calendar/libkalendar_calendar_plugin.so +%%QT_QMLDIR%%/org/kde/kalendar/calendar/private/GlobalMenuBar.qml +%%QT_QMLDIR%%/org/kde/kalendar/calendar/private/MenuBar.qml +%%QT_QMLDIR%%/org/kde/kalendar/calendar/qmldir +%%QT_QMLDIR%%/org/kde/kalendar/components/BottomToolBar.qml +%%QT_QMLDIR%%/org/kde/kalendar/components/EditMenu.qml +%%QT_QMLDIR%%/org/kde/kalendar/components/FileMenu.qml +%%QT_QMLDIR%%/org/kde/kalendar/components/HelpMenu.qml +%%QT_QMLDIR%%/org/kde/kalendar/components/KActionFromAction.qml +%%QT_QMLDIR%%/org/kde/kalendar/components/KalendarApp.qml +%%QT_QMLDIR%%/org/kde/kalendar/components/NativeEditMenu.qml +%%QT_QMLDIR%%/org/kde/kalendar/components/NativeFileMenu.qml +%%QT_QMLDIR%%/org/kde/kalendar/components/NativeHelpMenu.qml +%%QT_QMLDIR%%/org/kde/kalendar/components/NativeMenuItemFromAction.qml +%%QT_QMLDIR%%/org/kde/kalendar/components/NativeSettingsMenu.qml +%%QT_QMLDIR%%/org/kde/kalendar/components/NativeViewMenu.qml +%%QT_QMLDIR%%/org/kde/kalendar/components/NativeWindowMenu.qml +%%QT_QMLDIR%%/org/kde/kalendar/components/SettingsMenu.qml +%%QT_QMLDIR%%/org/kde/kalendar/components/ViewMenu.qml +%%QT_QMLDIR%%/org/kde/kalendar/components/WindowMenu.qml +%%QT_QMLDIR%%/org/kde/kalendar/components/libkalendar_components_plugin.so +%%QT_QMLDIR%%/org/kde/kalendar/components/qmldir %%QT_QMLDIR%%/org/kde/kalendar/contact/AddressBookCollectionHandler.qml +%%QT_QMLDIR%%/org/kde/kalendar/contact/ContactApplication.qml %%QT_QMLDIR%%/org/kde/kalendar/contact/ContactChooserPage.qml %%QT_QMLDIR%%/org/kde/kalendar/contact/ContactView.qml %%QT_QMLDIR%%/org/kde/kalendar/contact/libkalendar_contact_plugin.so %%QT_QMLDIR%%/org/kde/kalendar/contact/private/AddressBookMenu.qml %%QT_QMLDIR%%/org/kde/kalendar/contact/private/ContactEditorPage.qml %%QT_QMLDIR%%/org/kde/kalendar/contact/private/ContactGroupEditorPage.qml %%QT_QMLDIR%%/org/kde/kalendar/contact/private/ContactGroupPage.qml %%QT_QMLDIR%%/org/kde/kalendar/contact/private/ContactListItem.qml %%QT_QMLDIR%%/org/kde/kalendar/contact/private/ContactPage.qml %%QT_QMLDIR%%/org/kde/kalendar/contact/private/ContactsPage.qml %%QT_QMLDIR%%/org/kde/kalendar/contact/private/DeleteContactAction.qml +%%QT_QMLDIR%%/org/kde/kalendar/contact/private/GlobalMenuBar.qml %%QT_QMLDIR%%/org/kde/kalendar/contact/private/Header.qml +%%QT_QMLDIR%%/org/kde/kalendar/contact/private/MenuBar.qml %%QT_QMLDIR%%/org/kde/kalendar/contact/private/PhoneNumberDialog.qml %%QT_QMLDIR%%/org/kde/kalendar/contact/private/QrCodePage.qml %%QT_QMLDIR%%/org/kde/kalendar/contact/qmldir %%QT_QMLDIR%%/org/kde/kalendar/mail/ConversationViewer.qml %%QT_QMLDIR%%/org/kde/kalendar/mail/FolderView.qml +%%QT_QMLDIR%%/org/kde/kalendar/mail/MailApplication.qml %%QT_QMLDIR%%/org/kde/kalendar/mail/MailSidebar.qml %%QT_QMLDIR%%/org/kde/kalendar/mail/MailViewer.qml %%QT_QMLDIR%%/org/kde/kalendar/mail/libkalendar_mail_plugin.so %%QT_QMLDIR%%/org/kde/kalendar/mail/mailboxselector/MailBoxList.qml %%QT_QMLDIR%%/org/kde/kalendar/mail/mailboxselector/MailBoxListPage.qml %%QT_QMLDIR%%/org/kde/kalendar/mail/mailpartview/HtmlPart.qml %%QT_QMLDIR%%/org/kde/kalendar/mail/mailpartview/ICalPart.qml %%QT_QMLDIR%%/org/kde/kalendar/mail/mailpartview/MailPart.qml %%QT_QMLDIR%%/org/kde/kalendar/mail/mailpartview/MailPartModel.qml %%QT_QMLDIR%%/org/kde/kalendar/mail/mailpartview/MailPartView.qml %%QT_QMLDIR%%/org/kde/kalendar/mail/mailpartview/TextPart.qml %%QT_QMLDIR%%/org/kde/kalendar/mail/private/AttachmentDelegate.qml +%%QT_QMLDIR%%/org/kde/kalendar/mail/private/EditMenu.qml +%%QT_QMLDIR%%/org/kde/kalendar/mail/private/GlobalMenuBar.qml %%QT_QMLDIR%%/org/kde/kalendar/mail/private/MailDelegate.qml +%%QT_QMLDIR%%/org/kde/kalendar/mail/private/MenuBar.qml %%QT_QMLDIR%%/org/kde/kalendar/mail/qmldir share/applications/org.kde.kalendar.desktop share/icons/hicolor/scalable/apps/org.kde.kalendar.svg share/locale/ar/LC_MESSAGES/kalendar.mo share/locale/ar/LC_MESSAGES/plasma_applet_org.kde.kalendar.contact.mo share/locale/az/LC_MESSAGES/kalendar.mo share/locale/az/LC_MESSAGES/plasma_applet_org.kde.kalendar.contact.mo share/locale/ca/LC_MESSAGES/kalendar.mo share/locale/ca/LC_MESSAGES/plasma_applet_org.kde.kalendar.contact.mo share/locale/ca@valencia/LC_MESSAGES/kalendar.mo share/locale/ca@valencia/LC_MESSAGES/plasma_applet_org.kde.kalendar.contact.mo share/locale/cs/LC_MESSAGES/kalendar.mo share/locale/cs/LC_MESSAGES/plasma_applet_org.kde.kalendar.contact.mo share/locale/de/LC_MESSAGES/kalendar.mo share/locale/de/LC_MESSAGES/plasma_applet_org.kde.kalendar.contact.mo share/locale/el/LC_MESSAGES/kalendar.mo share/locale/en_GB/LC_MESSAGES/kalendar.mo share/locale/en_GB/LC_MESSAGES/plasma_applet_org.kde.kalendar.contact.mo share/locale/es/LC_MESSAGES/kalendar.mo share/locale/es/LC_MESSAGES/plasma_applet_org.kde.kalendar.contact.mo share/locale/eu/LC_MESSAGES/kalendar.mo share/locale/eu/LC_MESSAGES/plasma_applet_org.kde.kalendar.contact.mo share/locale/fi/LC_MESSAGES/kalendar.mo share/locale/fi/LC_MESSAGES/plasma_applet_org.kde.kalendar.contact.mo share/locale/fr/LC_MESSAGES/kalendar.mo share/locale/fr/LC_MESSAGES/plasma_applet_org.kde.kalendar.contact.mo share/locale/hu/LC_MESSAGES/kalendar.mo +share/locale/id/LC_MESSAGES/kalendar.mo +share/locale/id/LC_MESSAGES/plasma_applet_org.kde.kalendar.contact.mo share/locale/it/LC_MESSAGES/kalendar.mo share/locale/it/LC_MESSAGES/plasma_applet_org.kde.kalendar.contact.mo share/locale/ja/LC_MESSAGES/kalendar.mo share/locale/ja/LC_MESSAGES/plasma_applet_org.kde.kalendar.contact.mo share/locale/ka/LC_MESSAGES/kalendar.mo share/locale/ka/LC_MESSAGES/plasma_applet_org.kde.kalendar.contact.mo share/locale/ko/LC_MESSAGES/kalendar.mo +share/locale/lt/LC_MESSAGES/kalendar.mo +share/locale/lt/LC_MESSAGES/plasma_applet_org.kde.kalendar.contact.mo share/locale/lv/LC_MESSAGES/kalendar.mo share/locale/nl/LC_MESSAGES/kalendar.mo share/locale/nl/LC_MESSAGES/plasma_applet_org.kde.kalendar.contact.mo share/locale/nn/LC_MESSAGES/plasma_applet_org.kde.kalendar.contact.mo share/locale/pl/LC_MESSAGES/kalendar.mo share/locale/pl/LC_MESSAGES/plasma_applet_org.kde.kalendar.contact.mo share/locale/pt/LC_MESSAGES/kalendar.mo share/locale/pt/LC_MESSAGES/plasma_applet_org.kde.kalendar.contact.mo share/locale/pt_BR/LC_MESSAGES/kalendar.mo share/locale/ru/LC_MESSAGES/kalendar.mo share/locale/ru/LC_MESSAGES/plasma_applet_org.kde.kalendar.contact.mo share/locale/sk/LC_MESSAGES/kalendar.mo share/locale/sk/LC_MESSAGES/plasma_applet_org.kde.kalendar.contact.mo share/locale/sl/LC_MESSAGES/kalendar.mo share/locale/sl/LC_MESSAGES/plasma_applet_org.kde.kalendar.contact.mo share/locale/sv/LC_MESSAGES/kalendar.mo share/locale/sv/LC_MESSAGES/plasma_applet_org.kde.kalendar.contact.mo share/locale/ta/LC_MESSAGES/kalendar.mo share/locale/ta/LC_MESSAGES/plasma_applet_org.kde.kalendar.contact.mo share/locale/tr/LC_MESSAGES/kalendar.mo share/locale/tr/LC_MESSAGES/plasma_applet_org.kde.kalendar.contact.mo share/locale/uk/LC_MESSAGES/kalendar.mo share/locale/uk/LC_MESSAGES/plasma_applet_org.kde.kalendar.contact.mo share/locale/zh_CN/LC_MESSAGES/kalendar.mo share/locale/zh_CN/LC_MESSAGES/plasma_applet_org.kde.kalendar.contact.mo share/locale/zh_TW/LC_MESSAGES/kalendar.mo share/locale/zh_TW/LC_MESSAGES/plasma_applet_org.kde.kalendar.contact.mo share/metainfo/org.kde.kalendar.appdata.xml share/metainfo/org.kde.kalendar.contact.appdata.xml share/plasma/plasmoids/org.kde.kalendar.contact/contents/config/main.xml share/plasma/plasmoids/org.kde.kalendar.contact/contents/resources/fallbackBackground.png share/plasma/plasmoids/org.kde.kalendar.contact/contents/ui/CompactRepresentation.qml share/plasma/plasmoids/org.kde.kalendar.contact/contents/ui/ContactListItem.qml share/plasma/plasmoids/org.kde.kalendar.contact/contents/ui/ContactPage.qml share/plasma/plasmoids/org.kde.kalendar.contact/contents/ui/ContactsPage.qml share/plasma/plasmoids/org.kde.kalendar.contact/contents/ui/Header.qml share/plasma/plasmoids/org.kde.kalendar.contact/contents/ui/QrCodePage.qml share/plasma/plasmoids/org.kde.kalendar.contact/contents/ui/main.qml share/plasma/plasmoids/org.kde.kalendar.contact/metadata.json share/plasma/plasmoids/org.kde.kalendar.contact/metadata.json.license share/qlogging-categories5/akonadi.quick.categories share/qlogging-categories5/kalendar.categories share/qlogging-categories5/kalendar.contact.categories diff --git a/deskutils/kcharselect/distinfo b/deskutils/kcharselect/distinfo index a979040d3587..5ddea9b15dc6 100644 --- a/deskutils/kcharselect/distinfo +++ b/deskutils/kcharselect/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1677828332 -SHA256 (KDE/release-service/22.12.3/kcharselect-22.12.3.tar.xz) = 3440f571017835b03326a0c3dddb6d130e2cb79e4d8d1f6d76b839c97672a3dd -SIZE (KDE/release-service/22.12.3/kcharselect-22.12.3.tar.xz) = 381308 +TIMESTAMP = 1681548362 +SHA256 (KDE/release-service/23.04.0/kcharselect-23.04.0.tar.xz) = 474b65e34258bb05e496220ef49930b6906a883266ee491d96c3de6d5fb24d22 +SIZE (KDE/release-service/23.04.0/kcharselect-23.04.0.tar.xz) = 382916 diff --git a/deskutils/kdeconnect-kde/Makefile b/deskutils/kdeconnect-kde/Makefile index c38a9db94174..1135a06341bc 100644 --- a/deskutils/kdeconnect-kde/Makefile +++ b/deskutils/kdeconnect-kde/Makefile @@ -1,38 +1,39 @@ PORTNAME= kdeconnect-kde DISTVERSION= ${KDE_APPLICATIONS_VERSION} CATEGORIES= deskutils kde kde-applications MAINTAINER= kde@FreeBSD.org COMMENT= Support for KDE to interface between your phone and your computer WWW= https://community.kde.org/KDEConnect LICENSE= GPLv2 LIB_DEPENDS= libfakekey.so:x11/libfakekey \ libwayland-client.so:graphics/wayland \ libKF5PulseAudioQt.so:audio/pulseaudio-qt BUILD_DEPENDS= kpeoplevcard>0:net/kpeoplevcard \ - ${LOCALBASE}/include/linux/input.h:devel/evdev-proto + ${LOCALBASE}/include/linux/input.h:devel/evdev-proto \ + wayland-protocols>=0:graphics/wayland-protocols RUN_DEPENDS= sshpass:security/sshpass \ sshfs:sysutils/fusefs-sshfs \ kpeoplevcard>0:net/kpeoplevcard USES= cmake compiler:c++11-lang desktop-file-utils gettext kde:5 \ pkgconfig qca qt:5 tar:xz xorg USE_KDE= auth bookmarks codecs completion config configwidgets \ coreaddons dbusaddons doctools guiaddons i18n iconthemes \ itemviews jobwidgets kcmutils kio kirigami2 notifications \ people qqc2-desktop-style service solid wayland widgetsaddons \ windowsystem xmlgui \ ecm:build USE_QT= concurrent core dbus declarative gui multimedia network \ quickcontrols2 testlib wayland widgets x11extras xml \ buildtools:build qmake:build USE_XORG= ice sm x11 xext xtst USE_LDCONFIG= ${QT_QMLDIR}/org/kde/kdeconnect OPTIONS_DEFINE= DOCS KDE_APPLICATIONS_SHLIB_VER=${KDE_APPLICATIONS_VERSION} .include diff --git a/deskutils/kdeconnect-kde/distinfo b/deskutils/kdeconnect-kde/distinfo index 6a8ab7b0df15..84d86fac47e8 100644 --- a/deskutils/kdeconnect-kde/distinfo +++ b/deskutils/kdeconnect-kde/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1677828323 -SHA256 (KDE/release-service/22.12.3/kdeconnect-kde-22.12.3.tar.xz) = 2bdadee8765b01697c8a7190981c3948fbbbf8643fe0cfbc29bc221c29ba8099 -SIZE (KDE/release-service/22.12.3/kdeconnect-kde-22.12.3.tar.xz) = 638472 +TIMESTAMP = 1681548338 +SHA256 (KDE/release-service/23.04.0/kdeconnect-kde-23.04.0.tar.xz) = 80bae0d03fd688ee30b7872e2ea04af690346a6d86ca2db17de9253f781a019d +SIZE (KDE/release-service/23.04.0/kdeconnect-kde-23.04.0.tar.xz) = 649120 diff --git a/deskutils/kdeconnect-kde/pkg-plist b/deskutils/kdeconnect-kde/pkg-plist index 504b0710c8be..1892ed5c3b78 100644 --- a/deskutils/kdeconnect-kde/pkg-plist +++ b/deskutils/kdeconnect-kde/pkg-plist @@ -1,797 +1,807 @@ bin/kdeconnect-app bin/kdeconnect-cli bin/kdeconnect-handler bin/kdeconnect-indicator bin/kdeconnect-settings bin/kdeconnect-sms etc/xdg/autostart/org.kde.kdeconnect.daemon.desktop lib/libexec/kdeconnectd lib/libkdeconnectcore.so.%%KDE_APPLICATIONS_VERSION_SHORT%% lib/libkdeconnectcore.so.%%KDE_APPLICATIONS_SHLIB_VER%% lib/libkdeconnectinterfaces.so.%%KDE_APPLICATIONS_VERSION_SHORT%% lib/libkdeconnectinterfaces.so.%%KDE_APPLICATIONS_SHLIB_VER%% lib/libkdeconnectpluginkcm.so.%%KDE_APPLICATIONS_VERSION_SHORT%% lib/libkdeconnectpluginkcm.so.%%KDE_APPLICATIONS_SHLIB_VER%% -%%QT_PLUGINDIR%%/kcm_kdeconnect.so %%QT_PLUGINDIR%%/kdeconnect/kcms/kdeconnect_clipboard_config.so %%QT_PLUGINDIR%%/kdeconnect/kcms/kdeconnect_findthisdevice_config.so %%QT_PLUGINDIR%%/kdeconnect/kcms/kdeconnect_pausemusic_config.so %%QT_PLUGINDIR%%/kdeconnect/kcms/kdeconnect_runcommand_config.so %%QT_PLUGINDIR%%/kdeconnect/kcms/kdeconnect_sendnotifications_config.so %%QT_PLUGINDIR%%/kdeconnect/kcms/kdeconnect_share_config.so %%QT_PLUGINDIR%%/kdeconnect/kdeconnect_battery.so %%QT_PLUGINDIR%%/kdeconnect/kdeconnect_bigscreen.so %%QT_PLUGINDIR%%/kdeconnect/kdeconnect_clipboard.so %%QT_PLUGINDIR%%/kdeconnect/kdeconnect_connectivity_report.so %%QT_PLUGINDIR%%/kdeconnect/kdeconnect_contacts.so %%QT_PLUGINDIR%%/kdeconnect/kdeconnect_findmyphone.so %%QT_PLUGINDIR%%/kdeconnect/kdeconnect_findthisdevice.so %%QT_PLUGINDIR%%/kdeconnect/kdeconnect_lockdevice.so %%QT_PLUGINDIR%%/kdeconnect/kdeconnect_mousepad.so %%QT_PLUGINDIR%%/kdeconnect/kdeconnect_mpriscontrol.so %%QT_PLUGINDIR%%/kdeconnect/kdeconnect_mprisremote.so %%QT_PLUGINDIR%%/kdeconnect/kdeconnect_notifications.so %%QT_PLUGINDIR%%/kdeconnect/kdeconnect_pausemusic.so %%QT_PLUGINDIR%%/kdeconnect/kdeconnect_photo.so %%QT_PLUGINDIR%%/kdeconnect/kdeconnect_ping.so %%QT_PLUGINDIR%%/kdeconnect/kdeconnect_presenter.so %%QT_PLUGINDIR%%/kdeconnect/kdeconnect_remotecommands.so %%QT_PLUGINDIR%%/kdeconnect/kdeconnect_remotecontrol.so %%QT_PLUGINDIR%%/kdeconnect/kdeconnect_remotekeyboard.so %%QT_PLUGINDIR%%/kdeconnect/kdeconnect_remotesystemvolume.so %%QT_PLUGINDIR%%/kdeconnect/kdeconnect_runcommand.so %%QT_PLUGINDIR%%/kdeconnect/kdeconnect_screensaver_inhibit.so %%QT_PLUGINDIR%%/kdeconnect/kdeconnect_sendnotifications.so %%QT_PLUGINDIR%%/kdeconnect/kdeconnect_sftp.so %%QT_PLUGINDIR%%/kdeconnect/kdeconnect_share.so %%QT_PLUGINDIR%%/kdeconnect/kdeconnect_sms.so %%QT_PLUGINDIR%%/kdeconnect/kdeconnect_systemvolume.so %%QT_PLUGINDIR%%/kdeconnect/kdeconnect_telephony.so %%QT_PLUGINDIR%%/kdeconnect/kdeconnect_virtualmonitor.so %%QT_PLUGINDIR%%/kf5/kfileitemaction/kdeconnectfileitemaction.so %%QT_PLUGINDIR%%/kf5/kio/kdeconnect.so +%%QT_PLUGINDIR%%/plasma/kcms/systemsettings_qwidgets/kcm_kdeconnect.so %%QT_QMLDIR%%/org/kde/kdeconnect/DBusProperty.qml %%QT_QMLDIR%%/org/kde/kdeconnect/PluginChecker.qml %%QT_QMLDIR%%/org/kde/kdeconnect/RemoteKeyboard.qml %%QT_QMLDIR%%/org/kde/kdeconnect/libkdeconnectdeclarativeplugin.so %%QT_QMLDIR%%/org/kde/kdeconnect/qmldir share/Thunar/sendto/kdeconnect-thunar.desktop +share/applications/kcm_kdeconnect.desktop share/applications/org.kde.kdeconnect-settings.desktop share/applications/org.kde.kdeconnect.app.desktop share/applications/org.kde.kdeconnect.daemon.desktop share/applications/org.kde.kdeconnect.handler.desktop share/applications/org.kde.kdeconnect.nonplasma.desktop share/applications/org.kde.kdeconnect.sms.desktop share/applications/org.kde.kdeconnect_open.desktop share/contractor/kdeconnect.contract share/dbus-1/services/org.kde.kdeconnect.service share/deepin/dde-file-manager/oem-menuextensions/kdeconnect-dde.desktop share/icons/hicolor/16x16/status/laptopconnected.svg share/icons/hicolor/16x16/status/laptopdisconnected.svg share/icons/hicolor/16x16/status/laptoptrusted.svg share/icons/hicolor/16x16/status/smartphoneconnected.svg share/icons/hicolor/16x16/status/smartphonedisconnected.svg share/icons/hicolor/16x16/status/smartphonetrusted.svg share/icons/hicolor/16x16/status/tabletconnected.svg share/icons/hicolor/16x16/status/tabletdisconnected.svg share/icons/hicolor/16x16/status/tablettrusted.svg share/icons/hicolor/16x16/status/tvconnected.svg share/icons/hicolor/16x16/status/tvdisconnected.svg share/icons/hicolor/16x16/status/tvtrusted.svg share/icons/hicolor/22x22/status/laptopconnected.svg share/icons/hicolor/22x22/status/laptopdisconnected.svg share/icons/hicolor/22x22/status/laptoptrusted.svg share/icons/hicolor/22x22/status/smartphoneconnected.svg share/icons/hicolor/22x22/status/smartphonedisconnected.svg share/icons/hicolor/22x22/status/smartphonetrusted.svg share/icons/hicolor/22x22/status/tabletconnected.svg share/icons/hicolor/22x22/status/tabletdisconnected.svg share/icons/hicolor/22x22/status/tablettrusted.svg share/icons/hicolor/22x22/status/tvconnected.svg share/icons/hicolor/22x22/status/tvdisconnected.svg share/icons/hicolor/22x22/status/tvtrusted.svg share/icons/hicolor/32x32/status/laptopconnected.svg share/icons/hicolor/32x32/status/laptopdisconnected.svg share/icons/hicolor/32x32/status/laptoptrusted.svg share/icons/hicolor/32x32/status/smartphoneconnected.svg share/icons/hicolor/32x32/status/smartphonedisconnected.svg share/icons/hicolor/32x32/status/smartphonetrusted.svg share/icons/hicolor/32x32/status/tabletconnected.svg share/icons/hicolor/32x32/status/tabletdisconnected.svg share/icons/hicolor/32x32/status/tablettrusted.svg share/icons/hicolor/32x32/status/tvconnected.svg share/icons/hicolor/32x32/status/tvdisconnected.svg share/icons/hicolor/32x32/status/tvtrusted.svg share/icons/hicolor/scalable/apps/kdeconnect.svg share/icons/hicolor/scalable/apps/kdeconnectindicator.svg share/icons/hicolor/scalable/apps/kdeconnectindicatordark.svg share/kdeconnect/kdeconnect_clipboard_config.qml share/kdeconnect/kdeconnect_findthisdevice_config.qml share/kdeconnect/kdeconnect_pausemusic_config.qml share/kdeconnect/kdeconnect_runcommand_config.qml share/kdeconnect/kdeconnect_sendnotifications_config.qml share/kdeconnect/kdeconnect_share_config.qml share/knotifications5/kdeconnect.notifyrc -share/kservices5/kcm_kdeconnect.desktop share/kservices5/plasma-kdeconnect.desktop share/locale/ar/LC_MESSAGES/kdeconnect-app.mo share/locale/ar/LC_MESSAGES/kdeconnect-cli.mo share/locale/ar/LC_MESSAGES/kdeconnect-core.mo share/locale/ar/LC_MESSAGES/kdeconnect-fileitemaction.mo share/locale/ar/LC_MESSAGES/kdeconnect-indicator.mo share/locale/ar/LC_MESSAGES/kdeconnect-interfaces.mo share/locale/ar/LC_MESSAGES/kdeconnect-kcm.mo share/locale/ar/LC_MESSAGES/kdeconnect-kded.mo share/locale/ar/LC_MESSAGES/kdeconnect-kio.mo share/locale/ar/LC_MESSAGES/kdeconnect-nautilus-extension.mo share/locale/ar/LC_MESSAGES/kdeconnect-plugins.mo share/locale/ar/LC_MESSAGES/kdeconnect-settings.mo share/locale/ar/LC_MESSAGES/kdeconnect-sms.mo share/locale/ar/LC_MESSAGES/kdeconnect-urlhandler.mo share/locale/ar/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo share/locale/az/LC_MESSAGES/kdeconnect-app.mo share/locale/az/LC_MESSAGES/kdeconnect-cli.mo share/locale/az/LC_MESSAGES/kdeconnect-core.mo share/locale/az/LC_MESSAGES/kdeconnect-fileitemaction.mo share/locale/az/LC_MESSAGES/kdeconnect-indicator.mo share/locale/az/LC_MESSAGES/kdeconnect-interfaces.mo share/locale/az/LC_MESSAGES/kdeconnect-kcm.mo share/locale/az/LC_MESSAGES/kdeconnect-kded.mo share/locale/az/LC_MESSAGES/kdeconnect-kio.mo share/locale/az/LC_MESSAGES/kdeconnect-nautilus-extension.mo share/locale/az/LC_MESSAGES/kdeconnect-plugins.mo share/locale/az/LC_MESSAGES/kdeconnect-settings.mo share/locale/az/LC_MESSAGES/kdeconnect-sms.mo share/locale/az/LC_MESSAGES/kdeconnect-urlhandler.mo share/locale/az/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo share/locale/bg/LC_MESSAGES/kdeconnect-app.mo share/locale/bg/LC_MESSAGES/kdeconnect-cli.mo share/locale/bg/LC_MESSAGES/kdeconnect-core.mo share/locale/bg/LC_MESSAGES/kdeconnect-fileitemaction.mo share/locale/bg/LC_MESSAGES/kdeconnect-indicator.mo share/locale/bg/LC_MESSAGES/kdeconnect-interfaces.mo share/locale/bg/LC_MESSAGES/kdeconnect-kcm.mo share/locale/bg/LC_MESSAGES/kdeconnect-kded.mo share/locale/bg/LC_MESSAGES/kdeconnect-kio.mo share/locale/bg/LC_MESSAGES/kdeconnect-nautilus-extension.mo share/locale/bg/LC_MESSAGES/kdeconnect-plugins.mo share/locale/bg/LC_MESSAGES/kdeconnect-settings.mo share/locale/bg/LC_MESSAGES/kdeconnect-sms.mo share/locale/bg/LC_MESSAGES/kdeconnect-urlhandler.mo share/locale/bg/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo share/locale/bs/LC_MESSAGES/kdeconnect-cli.mo share/locale/bs/LC_MESSAGES/kdeconnect-core.mo share/locale/bs/LC_MESSAGES/kdeconnect-kcm.mo share/locale/bs/LC_MESSAGES/kdeconnect-kded.mo share/locale/bs/LC_MESSAGES/kdeconnect-kio.mo share/locale/bs/LC_MESSAGES/kdeconnect-plugins.mo share/locale/bs/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo share/locale/ca/LC_MESSAGES/kdeconnect-app.mo share/locale/ca/LC_MESSAGES/kdeconnect-cli.mo share/locale/ca/LC_MESSAGES/kdeconnect-core.mo share/locale/ca/LC_MESSAGES/kdeconnect-fileitemaction.mo share/locale/ca/LC_MESSAGES/kdeconnect-indicator.mo share/locale/ca/LC_MESSAGES/kdeconnect-interfaces.mo share/locale/ca/LC_MESSAGES/kdeconnect-kcm.mo share/locale/ca/LC_MESSAGES/kdeconnect-kded.mo share/locale/ca/LC_MESSAGES/kdeconnect-kio.mo share/locale/ca/LC_MESSAGES/kdeconnect-nautilus-extension.mo share/locale/ca/LC_MESSAGES/kdeconnect-plugins.mo share/locale/ca/LC_MESSAGES/kdeconnect-settings.mo share/locale/ca/LC_MESSAGES/kdeconnect-sms.mo share/locale/ca/LC_MESSAGES/kdeconnect-urlhandler.mo share/locale/ca/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo share/locale/ca@valencia/LC_MESSAGES/kdeconnect-app.mo share/locale/ca@valencia/LC_MESSAGES/kdeconnect-cli.mo share/locale/ca@valencia/LC_MESSAGES/kdeconnect-core.mo share/locale/ca@valencia/LC_MESSAGES/kdeconnect-fileitemaction.mo share/locale/ca@valencia/LC_MESSAGES/kdeconnect-indicator.mo share/locale/ca@valencia/LC_MESSAGES/kdeconnect-interfaces.mo share/locale/ca@valencia/LC_MESSAGES/kdeconnect-kcm.mo share/locale/ca@valencia/LC_MESSAGES/kdeconnect-kded.mo share/locale/ca@valencia/LC_MESSAGES/kdeconnect-kio.mo share/locale/ca@valencia/LC_MESSAGES/kdeconnect-nautilus-extension.mo share/locale/ca@valencia/LC_MESSAGES/kdeconnect-plugins.mo share/locale/ca@valencia/LC_MESSAGES/kdeconnect-settings.mo share/locale/ca@valencia/LC_MESSAGES/kdeconnect-sms.mo share/locale/ca@valencia/LC_MESSAGES/kdeconnect-urlhandler.mo share/locale/ca@valencia/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo share/locale/cs/LC_MESSAGES/kdeconnect-app.mo share/locale/cs/LC_MESSAGES/kdeconnect-cli.mo share/locale/cs/LC_MESSAGES/kdeconnect-core.mo share/locale/cs/LC_MESSAGES/kdeconnect-fileitemaction.mo share/locale/cs/LC_MESSAGES/kdeconnect-indicator.mo share/locale/cs/LC_MESSAGES/kdeconnect-interfaces.mo share/locale/cs/LC_MESSAGES/kdeconnect-kcm.mo share/locale/cs/LC_MESSAGES/kdeconnect-kded.mo share/locale/cs/LC_MESSAGES/kdeconnect-kio.mo share/locale/cs/LC_MESSAGES/kdeconnect-nautilus-extension.mo share/locale/cs/LC_MESSAGES/kdeconnect-plugins.mo share/locale/cs/LC_MESSAGES/kdeconnect-settings.mo share/locale/cs/LC_MESSAGES/kdeconnect-sms.mo share/locale/cs/LC_MESSAGES/kdeconnect-urlhandler.mo share/locale/cs/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo share/locale/da/LC_MESSAGES/kdeconnect-app.mo share/locale/da/LC_MESSAGES/kdeconnect-cli.mo share/locale/da/LC_MESSAGES/kdeconnect-core.mo share/locale/da/LC_MESSAGES/kdeconnect-fileitemaction.mo share/locale/da/LC_MESSAGES/kdeconnect-indicator.mo share/locale/da/LC_MESSAGES/kdeconnect-interfaces.mo share/locale/da/LC_MESSAGES/kdeconnect-kcm.mo share/locale/da/LC_MESSAGES/kdeconnect-kded.mo share/locale/da/LC_MESSAGES/kdeconnect-kio.mo share/locale/da/LC_MESSAGES/kdeconnect-nautilus-extension.mo share/locale/da/LC_MESSAGES/kdeconnect-plugins.mo share/locale/da/LC_MESSAGES/kdeconnect-settings.mo share/locale/da/LC_MESSAGES/kdeconnect-sms.mo share/locale/da/LC_MESSAGES/kdeconnect-urlhandler.mo share/locale/da/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo share/locale/de/LC_MESSAGES/kdeconnect-app.mo share/locale/de/LC_MESSAGES/kdeconnect-cli.mo share/locale/de/LC_MESSAGES/kdeconnect-core.mo share/locale/de/LC_MESSAGES/kdeconnect-fileitemaction.mo share/locale/de/LC_MESSAGES/kdeconnect-indicator.mo share/locale/de/LC_MESSAGES/kdeconnect-interfaces.mo share/locale/de/LC_MESSAGES/kdeconnect-kcm.mo share/locale/de/LC_MESSAGES/kdeconnect-kded.mo share/locale/de/LC_MESSAGES/kdeconnect-kio.mo share/locale/de/LC_MESSAGES/kdeconnect-nautilus-extension.mo share/locale/de/LC_MESSAGES/kdeconnect-plugins.mo share/locale/de/LC_MESSAGES/kdeconnect-settings.mo share/locale/de/LC_MESSAGES/kdeconnect-sms.mo share/locale/de/LC_MESSAGES/kdeconnect-urlhandler.mo share/locale/de/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo share/locale/el/LC_MESSAGES/kdeconnect-app.mo share/locale/el/LC_MESSAGES/kdeconnect-cli.mo share/locale/el/LC_MESSAGES/kdeconnect-core.mo share/locale/el/LC_MESSAGES/kdeconnect-fileitemaction.mo share/locale/el/LC_MESSAGES/kdeconnect-indicator.mo share/locale/el/LC_MESSAGES/kdeconnect-interfaces.mo share/locale/el/LC_MESSAGES/kdeconnect-kcm.mo share/locale/el/LC_MESSAGES/kdeconnect-kded.mo share/locale/el/LC_MESSAGES/kdeconnect-kio.mo share/locale/el/LC_MESSAGES/kdeconnect-nautilus-extension.mo share/locale/el/LC_MESSAGES/kdeconnect-plugins.mo share/locale/el/LC_MESSAGES/kdeconnect-settings.mo share/locale/el/LC_MESSAGES/kdeconnect-sms.mo share/locale/el/LC_MESSAGES/kdeconnect-urlhandler.mo share/locale/el/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo share/locale/en_GB/LC_MESSAGES/kdeconnect-app.mo share/locale/en_GB/LC_MESSAGES/kdeconnect-cli.mo share/locale/en_GB/LC_MESSAGES/kdeconnect-core.mo share/locale/en_GB/LC_MESSAGES/kdeconnect-fileitemaction.mo share/locale/en_GB/LC_MESSAGES/kdeconnect-indicator.mo share/locale/en_GB/LC_MESSAGES/kdeconnect-interfaces.mo share/locale/en_GB/LC_MESSAGES/kdeconnect-kcm.mo share/locale/en_GB/LC_MESSAGES/kdeconnect-kded.mo share/locale/en_GB/LC_MESSAGES/kdeconnect-kio.mo share/locale/en_GB/LC_MESSAGES/kdeconnect-nautilus-extension.mo share/locale/en_GB/LC_MESSAGES/kdeconnect-plugins.mo share/locale/en_GB/LC_MESSAGES/kdeconnect-settings.mo share/locale/en_GB/LC_MESSAGES/kdeconnect-sms.mo share/locale/en_GB/LC_MESSAGES/kdeconnect-urlhandler.mo share/locale/en_GB/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo share/locale/es/LC_MESSAGES/kdeconnect-app.mo share/locale/es/LC_MESSAGES/kdeconnect-cli.mo share/locale/es/LC_MESSAGES/kdeconnect-core.mo share/locale/es/LC_MESSAGES/kdeconnect-fileitemaction.mo share/locale/es/LC_MESSAGES/kdeconnect-indicator.mo share/locale/es/LC_MESSAGES/kdeconnect-interfaces.mo share/locale/es/LC_MESSAGES/kdeconnect-kcm.mo share/locale/es/LC_MESSAGES/kdeconnect-kded.mo share/locale/es/LC_MESSAGES/kdeconnect-kio.mo share/locale/es/LC_MESSAGES/kdeconnect-nautilus-extension.mo share/locale/es/LC_MESSAGES/kdeconnect-plugins.mo share/locale/es/LC_MESSAGES/kdeconnect-settings.mo share/locale/es/LC_MESSAGES/kdeconnect-sms.mo share/locale/es/LC_MESSAGES/kdeconnect-urlhandler.mo share/locale/es/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo share/locale/et/LC_MESSAGES/kdeconnect-app.mo share/locale/et/LC_MESSAGES/kdeconnect-cli.mo share/locale/et/LC_MESSAGES/kdeconnect-core.mo share/locale/et/LC_MESSAGES/kdeconnect-fileitemaction.mo share/locale/et/LC_MESSAGES/kdeconnect-indicator.mo share/locale/et/LC_MESSAGES/kdeconnect-interfaces.mo share/locale/et/LC_MESSAGES/kdeconnect-kcm.mo share/locale/et/LC_MESSAGES/kdeconnect-kded.mo share/locale/et/LC_MESSAGES/kdeconnect-kio.mo share/locale/et/LC_MESSAGES/kdeconnect-nautilus-extension.mo share/locale/et/LC_MESSAGES/kdeconnect-plugins.mo share/locale/et/LC_MESSAGES/kdeconnect-settings.mo share/locale/et/LC_MESSAGES/kdeconnect-sms.mo share/locale/et/LC_MESSAGES/kdeconnect-urlhandler.mo share/locale/et/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo share/locale/eu/LC_MESSAGES/kdeconnect-app.mo share/locale/eu/LC_MESSAGES/kdeconnect-cli.mo share/locale/eu/LC_MESSAGES/kdeconnect-core.mo share/locale/eu/LC_MESSAGES/kdeconnect-fileitemaction.mo share/locale/eu/LC_MESSAGES/kdeconnect-indicator.mo share/locale/eu/LC_MESSAGES/kdeconnect-interfaces.mo share/locale/eu/LC_MESSAGES/kdeconnect-kcm.mo share/locale/eu/LC_MESSAGES/kdeconnect-kded.mo share/locale/eu/LC_MESSAGES/kdeconnect-kio.mo share/locale/eu/LC_MESSAGES/kdeconnect-nautilus-extension.mo share/locale/eu/LC_MESSAGES/kdeconnect-plugins.mo share/locale/eu/LC_MESSAGES/kdeconnect-settings.mo share/locale/eu/LC_MESSAGES/kdeconnect-sms.mo share/locale/eu/LC_MESSAGES/kdeconnect-urlhandler.mo share/locale/eu/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo share/locale/fi/LC_MESSAGES/kdeconnect-app.mo share/locale/fi/LC_MESSAGES/kdeconnect-cli.mo share/locale/fi/LC_MESSAGES/kdeconnect-core.mo share/locale/fi/LC_MESSAGES/kdeconnect-fileitemaction.mo share/locale/fi/LC_MESSAGES/kdeconnect-indicator.mo share/locale/fi/LC_MESSAGES/kdeconnect-interfaces.mo share/locale/fi/LC_MESSAGES/kdeconnect-kcm.mo share/locale/fi/LC_MESSAGES/kdeconnect-kded.mo share/locale/fi/LC_MESSAGES/kdeconnect-kio.mo share/locale/fi/LC_MESSAGES/kdeconnect-nautilus-extension.mo share/locale/fi/LC_MESSAGES/kdeconnect-plugins.mo share/locale/fi/LC_MESSAGES/kdeconnect-settings.mo share/locale/fi/LC_MESSAGES/kdeconnect-sms.mo share/locale/fi/LC_MESSAGES/kdeconnect-urlhandler.mo share/locale/fi/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo share/locale/fr/LC_MESSAGES/kdeconnect-app.mo share/locale/fr/LC_MESSAGES/kdeconnect-cli.mo share/locale/fr/LC_MESSAGES/kdeconnect-core.mo share/locale/fr/LC_MESSAGES/kdeconnect-fileitemaction.mo share/locale/fr/LC_MESSAGES/kdeconnect-indicator.mo share/locale/fr/LC_MESSAGES/kdeconnect-interfaces.mo share/locale/fr/LC_MESSAGES/kdeconnect-kcm.mo share/locale/fr/LC_MESSAGES/kdeconnect-kded.mo share/locale/fr/LC_MESSAGES/kdeconnect-kio.mo share/locale/fr/LC_MESSAGES/kdeconnect-nautilus-extension.mo share/locale/fr/LC_MESSAGES/kdeconnect-plugins.mo share/locale/fr/LC_MESSAGES/kdeconnect-settings.mo share/locale/fr/LC_MESSAGES/kdeconnect-sms.mo share/locale/fr/LC_MESSAGES/kdeconnect-urlhandler.mo share/locale/fr/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo share/locale/gl/LC_MESSAGES/kdeconnect-app.mo share/locale/gl/LC_MESSAGES/kdeconnect-cli.mo share/locale/gl/LC_MESSAGES/kdeconnect-core.mo share/locale/gl/LC_MESSAGES/kdeconnect-fileitemaction.mo share/locale/gl/LC_MESSAGES/kdeconnect-indicator.mo share/locale/gl/LC_MESSAGES/kdeconnect-interfaces.mo share/locale/gl/LC_MESSAGES/kdeconnect-kcm.mo share/locale/gl/LC_MESSAGES/kdeconnect-kded.mo share/locale/gl/LC_MESSAGES/kdeconnect-kio.mo share/locale/gl/LC_MESSAGES/kdeconnect-nautilus-extension.mo share/locale/gl/LC_MESSAGES/kdeconnect-plugins.mo share/locale/gl/LC_MESSAGES/kdeconnect-settings.mo share/locale/gl/LC_MESSAGES/kdeconnect-sms.mo share/locale/gl/LC_MESSAGES/kdeconnect-urlhandler.mo share/locale/gl/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo share/locale/he/LC_MESSAGES/kdeconnect-core.mo share/locale/he/LC_MESSAGES/kdeconnect-kcm.mo share/locale/he/LC_MESSAGES/kdeconnect-kded.mo share/locale/he/LC_MESSAGES/kdeconnect-kio.mo share/locale/he/LC_MESSAGES/kdeconnect-plugins.mo share/locale/he/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo share/locale/hu/LC_MESSAGES/kdeconnect-app.mo share/locale/hu/LC_MESSAGES/kdeconnect-cli.mo share/locale/hu/LC_MESSAGES/kdeconnect-core.mo share/locale/hu/LC_MESSAGES/kdeconnect-fileitemaction.mo share/locale/hu/LC_MESSAGES/kdeconnect-indicator.mo share/locale/hu/LC_MESSAGES/kdeconnect-interfaces.mo share/locale/hu/LC_MESSAGES/kdeconnect-kcm.mo share/locale/hu/LC_MESSAGES/kdeconnect-kded.mo share/locale/hu/LC_MESSAGES/kdeconnect-kio.mo share/locale/hu/LC_MESSAGES/kdeconnect-nautilus-extension.mo share/locale/hu/LC_MESSAGES/kdeconnect-plugins.mo share/locale/hu/LC_MESSAGES/kdeconnect-settings.mo share/locale/hu/LC_MESSAGES/kdeconnect-sms.mo share/locale/hu/LC_MESSAGES/kdeconnect-urlhandler.mo share/locale/hu/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo share/locale/ia/LC_MESSAGES/kdeconnect-app.mo share/locale/ia/LC_MESSAGES/kdeconnect-cli.mo share/locale/ia/LC_MESSAGES/kdeconnect-core.mo share/locale/ia/LC_MESSAGES/kdeconnect-fileitemaction.mo share/locale/ia/LC_MESSAGES/kdeconnect-indicator.mo share/locale/ia/LC_MESSAGES/kdeconnect-interfaces.mo share/locale/ia/LC_MESSAGES/kdeconnect-kcm.mo share/locale/ia/LC_MESSAGES/kdeconnect-kded.mo share/locale/ia/LC_MESSAGES/kdeconnect-kio.mo share/locale/ia/LC_MESSAGES/kdeconnect-nautilus-extension.mo share/locale/ia/LC_MESSAGES/kdeconnect-plugins.mo share/locale/ia/LC_MESSAGES/kdeconnect-settings.mo share/locale/ia/LC_MESSAGES/kdeconnect-sms.mo share/locale/ia/LC_MESSAGES/kdeconnect-urlhandler.mo share/locale/ia/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo share/locale/id/LC_MESSAGES/kdeconnect-app.mo share/locale/id/LC_MESSAGES/kdeconnect-cli.mo share/locale/id/LC_MESSAGES/kdeconnect-core.mo share/locale/id/LC_MESSAGES/kdeconnect-fileitemaction.mo share/locale/id/LC_MESSAGES/kdeconnect-indicator.mo share/locale/id/LC_MESSAGES/kdeconnect-interfaces.mo share/locale/id/LC_MESSAGES/kdeconnect-kcm.mo share/locale/id/LC_MESSAGES/kdeconnect-kded.mo share/locale/id/LC_MESSAGES/kdeconnect-kio.mo share/locale/id/LC_MESSAGES/kdeconnect-nautilus-extension.mo share/locale/id/LC_MESSAGES/kdeconnect-plugins.mo share/locale/id/LC_MESSAGES/kdeconnect-settings.mo share/locale/id/LC_MESSAGES/kdeconnect-sms.mo share/locale/id/LC_MESSAGES/kdeconnect-urlhandler.mo share/locale/id/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo +share/locale/ie/LC_MESSAGES/kdeconnect-app.mo +share/locale/ie/LC_MESSAGES/kdeconnect-core.mo +share/locale/ie/LC_MESSAGES/kdeconnect-fileitemaction.mo +share/locale/ie/LC_MESSAGES/kdeconnect-indicator.mo +share/locale/ie/LC_MESSAGES/kdeconnect-interfaces.mo +share/locale/ie/LC_MESSAGES/kdeconnect-kcm.mo +share/locale/ie/LC_MESSAGES/kdeconnect-kio.mo +share/locale/ie/LC_MESSAGES/kdeconnect-nautilus-extension.mo +share/locale/ie/LC_MESSAGES/kdeconnect-settings.mo +share/locale/ie/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo share/locale/is/LC_MESSAGES/kdeconnect-app.mo share/locale/is/LC_MESSAGES/kdeconnect-cli.mo share/locale/is/LC_MESSAGES/kdeconnect-core.mo share/locale/is/LC_MESSAGES/kdeconnect-fileitemaction.mo share/locale/is/LC_MESSAGES/kdeconnect-indicator.mo share/locale/is/LC_MESSAGES/kdeconnect-interfaces.mo share/locale/is/LC_MESSAGES/kdeconnect-kcm.mo share/locale/is/LC_MESSAGES/kdeconnect-kded.mo share/locale/is/LC_MESSAGES/kdeconnect-kio.mo share/locale/is/LC_MESSAGES/kdeconnect-nautilus-extension.mo share/locale/is/LC_MESSAGES/kdeconnect-plugins.mo share/locale/is/LC_MESSAGES/kdeconnect-settings.mo share/locale/is/LC_MESSAGES/kdeconnect-sms.mo share/locale/is/LC_MESSAGES/kdeconnect-urlhandler.mo share/locale/is/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo share/locale/it/LC_MESSAGES/kdeconnect-app.mo share/locale/it/LC_MESSAGES/kdeconnect-cli.mo share/locale/it/LC_MESSAGES/kdeconnect-core.mo share/locale/it/LC_MESSAGES/kdeconnect-fileitemaction.mo share/locale/it/LC_MESSAGES/kdeconnect-indicator.mo share/locale/it/LC_MESSAGES/kdeconnect-interfaces.mo share/locale/it/LC_MESSAGES/kdeconnect-kcm.mo share/locale/it/LC_MESSAGES/kdeconnect-kded.mo share/locale/it/LC_MESSAGES/kdeconnect-kio.mo share/locale/it/LC_MESSAGES/kdeconnect-nautilus-extension.mo share/locale/it/LC_MESSAGES/kdeconnect-plugins.mo share/locale/it/LC_MESSAGES/kdeconnect-settings.mo share/locale/it/LC_MESSAGES/kdeconnect-sms.mo share/locale/it/LC_MESSAGES/kdeconnect-urlhandler.mo share/locale/it/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo share/locale/ja/LC_MESSAGES/kdeconnect-app.mo share/locale/ja/LC_MESSAGES/kdeconnect-cli.mo share/locale/ja/LC_MESSAGES/kdeconnect-core.mo share/locale/ja/LC_MESSAGES/kdeconnect-fileitemaction.mo share/locale/ja/LC_MESSAGES/kdeconnect-indicator.mo share/locale/ja/LC_MESSAGES/kdeconnect-interfaces.mo share/locale/ja/LC_MESSAGES/kdeconnect-kcm.mo share/locale/ja/LC_MESSAGES/kdeconnect-kded.mo share/locale/ja/LC_MESSAGES/kdeconnect-kio.mo share/locale/ja/LC_MESSAGES/kdeconnect-nautilus-extension.mo share/locale/ja/LC_MESSAGES/kdeconnect-plugins.mo share/locale/ja/LC_MESSAGES/kdeconnect-settings.mo share/locale/ja/LC_MESSAGES/kdeconnect-sms.mo share/locale/ja/LC_MESSAGES/kdeconnect-urlhandler.mo share/locale/ja/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo share/locale/ka/LC_MESSAGES/kdeconnect-app.mo share/locale/ka/LC_MESSAGES/kdeconnect-cli.mo share/locale/ka/LC_MESSAGES/kdeconnect-core.mo share/locale/ka/LC_MESSAGES/kdeconnect-fileitemaction.mo share/locale/ka/LC_MESSAGES/kdeconnect-indicator.mo share/locale/ka/LC_MESSAGES/kdeconnect-interfaces.mo share/locale/ka/LC_MESSAGES/kdeconnect-kcm.mo share/locale/ka/LC_MESSAGES/kdeconnect-kded.mo share/locale/ka/LC_MESSAGES/kdeconnect-kio.mo share/locale/ka/LC_MESSAGES/kdeconnect-nautilus-extension.mo share/locale/ka/LC_MESSAGES/kdeconnect-plugins.mo share/locale/ka/LC_MESSAGES/kdeconnect-settings.mo share/locale/ka/LC_MESSAGES/kdeconnect-sms.mo share/locale/ka/LC_MESSAGES/kdeconnect-urlhandler.mo share/locale/ka/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo share/locale/ko/LC_MESSAGES/kdeconnect-app.mo share/locale/ko/LC_MESSAGES/kdeconnect-cli.mo share/locale/ko/LC_MESSAGES/kdeconnect-core.mo share/locale/ko/LC_MESSAGES/kdeconnect-fileitemaction.mo share/locale/ko/LC_MESSAGES/kdeconnect-indicator.mo share/locale/ko/LC_MESSAGES/kdeconnect-interfaces.mo share/locale/ko/LC_MESSAGES/kdeconnect-kcm.mo share/locale/ko/LC_MESSAGES/kdeconnect-kded.mo share/locale/ko/LC_MESSAGES/kdeconnect-kio.mo share/locale/ko/LC_MESSAGES/kdeconnect-nautilus-extension.mo share/locale/ko/LC_MESSAGES/kdeconnect-plugins.mo share/locale/ko/LC_MESSAGES/kdeconnect-settings.mo share/locale/ko/LC_MESSAGES/kdeconnect-sms.mo share/locale/ko/LC_MESSAGES/kdeconnect-urlhandler.mo share/locale/ko/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo share/locale/lt/LC_MESSAGES/kdeconnect-app.mo share/locale/lt/LC_MESSAGES/kdeconnect-cli.mo share/locale/lt/LC_MESSAGES/kdeconnect-core.mo share/locale/lt/LC_MESSAGES/kdeconnect-fileitemaction.mo share/locale/lt/LC_MESSAGES/kdeconnect-indicator.mo share/locale/lt/LC_MESSAGES/kdeconnect-interfaces.mo share/locale/lt/LC_MESSAGES/kdeconnect-kcm.mo share/locale/lt/LC_MESSAGES/kdeconnect-kded.mo share/locale/lt/LC_MESSAGES/kdeconnect-kio.mo share/locale/lt/LC_MESSAGES/kdeconnect-nautilus-extension.mo share/locale/lt/LC_MESSAGES/kdeconnect-plugins.mo share/locale/lt/LC_MESSAGES/kdeconnect-settings.mo share/locale/lt/LC_MESSAGES/kdeconnect-sms.mo share/locale/lt/LC_MESSAGES/kdeconnect-urlhandler.mo share/locale/lt/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo share/locale/ml/LC_MESSAGES/kdeconnect-app.mo share/locale/ml/LC_MESSAGES/kdeconnect-cli.mo share/locale/ml/LC_MESSAGES/kdeconnect-core.mo share/locale/ml/LC_MESSAGES/kdeconnect-fileitemaction.mo share/locale/ml/LC_MESSAGES/kdeconnect-indicator.mo share/locale/ml/LC_MESSAGES/kdeconnect-interfaces.mo share/locale/ml/LC_MESSAGES/kdeconnect-kcm.mo share/locale/ml/LC_MESSAGES/kdeconnect-kded.mo share/locale/ml/LC_MESSAGES/kdeconnect-kio.mo share/locale/ml/LC_MESSAGES/kdeconnect-nautilus-extension.mo share/locale/ml/LC_MESSAGES/kdeconnect-plugins.mo share/locale/ml/LC_MESSAGES/kdeconnect-settings.mo share/locale/ml/LC_MESSAGES/kdeconnect-sms.mo share/locale/ml/LC_MESSAGES/kdeconnect-urlhandler.mo share/locale/ml/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo share/locale/nl/LC_MESSAGES/kdeconnect-app.mo share/locale/nl/LC_MESSAGES/kdeconnect-cli.mo share/locale/nl/LC_MESSAGES/kdeconnect-core.mo share/locale/nl/LC_MESSAGES/kdeconnect-fileitemaction.mo share/locale/nl/LC_MESSAGES/kdeconnect-indicator.mo share/locale/nl/LC_MESSAGES/kdeconnect-interfaces.mo share/locale/nl/LC_MESSAGES/kdeconnect-kcm.mo share/locale/nl/LC_MESSAGES/kdeconnect-kded.mo share/locale/nl/LC_MESSAGES/kdeconnect-kio.mo share/locale/nl/LC_MESSAGES/kdeconnect-nautilus-extension.mo share/locale/nl/LC_MESSAGES/kdeconnect-plugins.mo share/locale/nl/LC_MESSAGES/kdeconnect-settings.mo share/locale/nl/LC_MESSAGES/kdeconnect-sms.mo share/locale/nl/LC_MESSAGES/kdeconnect-urlhandler.mo share/locale/nl/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo share/locale/nn/LC_MESSAGES/kdeconnect-app.mo share/locale/nn/LC_MESSAGES/kdeconnect-cli.mo share/locale/nn/LC_MESSAGES/kdeconnect-core.mo share/locale/nn/LC_MESSAGES/kdeconnect-fileitemaction.mo share/locale/nn/LC_MESSAGES/kdeconnect-indicator.mo share/locale/nn/LC_MESSAGES/kdeconnect-interfaces.mo share/locale/nn/LC_MESSAGES/kdeconnect-kcm.mo share/locale/nn/LC_MESSAGES/kdeconnect-kded.mo share/locale/nn/LC_MESSAGES/kdeconnect-kio.mo share/locale/nn/LC_MESSAGES/kdeconnect-nautilus-extension.mo share/locale/nn/LC_MESSAGES/kdeconnect-plugins.mo share/locale/nn/LC_MESSAGES/kdeconnect-settings.mo share/locale/nn/LC_MESSAGES/kdeconnect-sms.mo share/locale/nn/LC_MESSAGES/kdeconnect-urlhandler.mo share/locale/nn/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo share/locale/pl/LC_MESSAGES/kdeconnect-app.mo share/locale/pl/LC_MESSAGES/kdeconnect-cli.mo share/locale/pl/LC_MESSAGES/kdeconnect-core.mo share/locale/pl/LC_MESSAGES/kdeconnect-fileitemaction.mo share/locale/pl/LC_MESSAGES/kdeconnect-indicator.mo share/locale/pl/LC_MESSAGES/kdeconnect-interfaces.mo share/locale/pl/LC_MESSAGES/kdeconnect-kcm.mo share/locale/pl/LC_MESSAGES/kdeconnect-kded.mo share/locale/pl/LC_MESSAGES/kdeconnect-kio.mo share/locale/pl/LC_MESSAGES/kdeconnect-nautilus-extension.mo share/locale/pl/LC_MESSAGES/kdeconnect-plugins.mo share/locale/pl/LC_MESSAGES/kdeconnect-settings.mo share/locale/pl/LC_MESSAGES/kdeconnect-sms.mo share/locale/pl/LC_MESSAGES/kdeconnect-urlhandler.mo share/locale/pl/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo share/locale/pt/LC_MESSAGES/kdeconnect-app.mo share/locale/pt/LC_MESSAGES/kdeconnect-cli.mo share/locale/pt/LC_MESSAGES/kdeconnect-core.mo share/locale/pt/LC_MESSAGES/kdeconnect-fileitemaction.mo share/locale/pt/LC_MESSAGES/kdeconnect-indicator.mo share/locale/pt/LC_MESSAGES/kdeconnect-interfaces.mo share/locale/pt/LC_MESSAGES/kdeconnect-kcm.mo share/locale/pt/LC_MESSAGES/kdeconnect-kded.mo share/locale/pt/LC_MESSAGES/kdeconnect-kio.mo share/locale/pt/LC_MESSAGES/kdeconnect-nautilus-extension.mo share/locale/pt/LC_MESSAGES/kdeconnect-plugins.mo share/locale/pt/LC_MESSAGES/kdeconnect-settings.mo share/locale/pt/LC_MESSAGES/kdeconnect-sms.mo share/locale/pt/LC_MESSAGES/kdeconnect-urlhandler.mo share/locale/pt/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo share/locale/pt_BR/LC_MESSAGES/kdeconnect-app.mo share/locale/pt_BR/LC_MESSAGES/kdeconnect-cli.mo share/locale/pt_BR/LC_MESSAGES/kdeconnect-core.mo share/locale/pt_BR/LC_MESSAGES/kdeconnect-fileitemaction.mo share/locale/pt_BR/LC_MESSAGES/kdeconnect-indicator.mo share/locale/pt_BR/LC_MESSAGES/kdeconnect-interfaces.mo share/locale/pt_BR/LC_MESSAGES/kdeconnect-kcm.mo share/locale/pt_BR/LC_MESSAGES/kdeconnect-kded.mo share/locale/pt_BR/LC_MESSAGES/kdeconnect-kio.mo share/locale/pt_BR/LC_MESSAGES/kdeconnect-nautilus-extension.mo share/locale/pt_BR/LC_MESSAGES/kdeconnect-plugins.mo share/locale/pt_BR/LC_MESSAGES/kdeconnect-settings.mo share/locale/pt_BR/LC_MESSAGES/kdeconnect-sms.mo share/locale/pt_BR/LC_MESSAGES/kdeconnect-urlhandler.mo share/locale/pt_BR/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo share/locale/ro/LC_MESSAGES/kdeconnect-app.mo share/locale/ro/LC_MESSAGES/kdeconnect-cli.mo share/locale/ro/LC_MESSAGES/kdeconnect-core.mo share/locale/ro/LC_MESSAGES/kdeconnect-fileitemaction.mo share/locale/ro/LC_MESSAGES/kdeconnect-indicator.mo share/locale/ro/LC_MESSAGES/kdeconnect-interfaces.mo share/locale/ro/LC_MESSAGES/kdeconnect-kcm.mo share/locale/ro/LC_MESSAGES/kdeconnect-kded.mo share/locale/ro/LC_MESSAGES/kdeconnect-kio.mo share/locale/ro/LC_MESSAGES/kdeconnect-nautilus-extension.mo share/locale/ro/LC_MESSAGES/kdeconnect-plugins.mo share/locale/ro/LC_MESSAGES/kdeconnect-settings.mo share/locale/ro/LC_MESSAGES/kdeconnect-sms.mo share/locale/ro/LC_MESSAGES/kdeconnect-urlhandler.mo share/locale/ro/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo share/locale/ru/LC_MESSAGES/kdeconnect-app.mo share/locale/ru/LC_MESSAGES/kdeconnect-cli.mo share/locale/ru/LC_MESSAGES/kdeconnect-core.mo share/locale/ru/LC_MESSAGES/kdeconnect-fileitemaction.mo share/locale/ru/LC_MESSAGES/kdeconnect-indicator.mo share/locale/ru/LC_MESSAGES/kdeconnect-interfaces.mo share/locale/ru/LC_MESSAGES/kdeconnect-kcm.mo share/locale/ru/LC_MESSAGES/kdeconnect-kded.mo share/locale/ru/LC_MESSAGES/kdeconnect-kio.mo share/locale/ru/LC_MESSAGES/kdeconnect-nautilus-extension.mo share/locale/ru/LC_MESSAGES/kdeconnect-plugins.mo share/locale/ru/LC_MESSAGES/kdeconnect-settings.mo share/locale/ru/LC_MESSAGES/kdeconnect-sms.mo share/locale/ru/LC_MESSAGES/kdeconnect-urlhandler.mo share/locale/ru/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo share/locale/sk/LC_MESSAGES/kdeconnect-app.mo share/locale/sk/LC_MESSAGES/kdeconnect-cli.mo share/locale/sk/LC_MESSAGES/kdeconnect-core.mo share/locale/sk/LC_MESSAGES/kdeconnect-fileitemaction.mo share/locale/sk/LC_MESSAGES/kdeconnect-indicator.mo share/locale/sk/LC_MESSAGES/kdeconnect-interfaces.mo share/locale/sk/LC_MESSAGES/kdeconnect-kcm.mo share/locale/sk/LC_MESSAGES/kdeconnect-kded.mo share/locale/sk/LC_MESSAGES/kdeconnect-kio.mo share/locale/sk/LC_MESSAGES/kdeconnect-nautilus-extension.mo share/locale/sk/LC_MESSAGES/kdeconnect-plugins.mo share/locale/sk/LC_MESSAGES/kdeconnect-settings.mo share/locale/sk/LC_MESSAGES/kdeconnect-sms.mo share/locale/sk/LC_MESSAGES/kdeconnect-urlhandler.mo share/locale/sk/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo share/locale/sl/LC_MESSAGES/kdeconnect-app.mo share/locale/sl/LC_MESSAGES/kdeconnect-cli.mo share/locale/sl/LC_MESSAGES/kdeconnect-core.mo share/locale/sl/LC_MESSAGES/kdeconnect-fileitemaction.mo share/locale/sl/LC_MESSAGES/kdeconnect-indicator.mo share/locale/sl/LC_MESSAGES/kdeconnect-interfaces.mo share/locale/sl/LC_MESSAGES/kdeconnect-kcm.mo share/locale/sl/LC_MESSAGES/kdeconnect-kded.mo share/locale/sl/LC_MESSAGES/kdeconnect-kio.mo share/locale/sl/LC_MESSAGES/kdeconnect-nautilus-extension.mo share/locale/sl/LC_MESSAGES/kdeconnect-plugins.mo share/locale/sl/LC_MESSAGES/kdeconnect-settings.mo share/locale/sl/LC_MESSAGES/kdeconnect-sms.mo share/locale/sl/LC_MESSAGES/kdeconnect-urlhandler.mo share/locale/sl/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo share/locale/sr/LC_MESSAGES/kdeconnect-cli.mo share/locale/sr/LC_MESSAGES/kdeconnect-core.mo share/locale/sr/LC_MESSAGES/kdeconnect-kcm.mo share/locale/sr/LC_MESSAGES/kdeconnect-kded.mo share/locale/sr/LC_MESSAGES/kdeconnect-kio.mo share/locale/sr/LC_MESSAGES/kdeconnect-plugins.mo share/locale/sr/LC_MESSAGES/kdeconnect-urlhandler.mo share/locale/sr/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo share/locale/sr@ijekavian/LC_MESSAGES/kdeconnect-cli.mo share/locale/sr@ijekavian/LC_MESSAGES/kdeconnect-core.mo share/locale/sr@ijekavian/LC_MESSAGES/kdeconnect-kcm.mo share/locale/sr@ijekavian/LC_MESSAGES/kdeconnect-kded.mo share/locale/sr@ijekavian/LC_MESSAGES/kdeconnect-kio.mo share/locale/sr@ijekavian/LC_MESSAGES/kdeconnect-plugins.mo share/locale/sr@ijekavian/LC_MESSAGES/kdeconnect-urlhandler.mo share/locale/sr@ijekavian/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kdeconnect-cli.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kdeconnect-core.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kdeconnect-kcm.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kdeconnect-kded.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kdeconnect-kio.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kdeconnect-plugins.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kdeconnect-urlhandler.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo share/locale/sr@latin/LC_MESSAGES/kdeconnect-cli.mo share/locale/sr@latin/LC_MESSAGES/kdeconnect-core.mo share/locale/sr@latin/LC_MESSAGES/kdeconnect-kcm.mo share/locale/sr@latin/LC_MESSAGES/kdeconnect-kded.mo share/locale/sr@latin/LC_MESSAGES/kdeconnect-kio.mo share/locale/sr@latin/LC_MESSAGES/kdeconnect-plugins.mo share/locale/sr@latin/LC_MESSAGES/kdeconnect-urlhandler.mo share/locale/sr@latin/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo share/locale/sv/LC_MESSAGES/kdeconnect-app.mo share/locale/sv/LC_MESSAGES/kdeconnect-cli.mo share/locale/sv/LC_MESSAGES/kdeconnect-core.mo share/locale/sv/LC_MESSAGES/kdeconnect-fileitemaction.mo share/locale/sv/LC_MESSAGES/kdeconnect-indicator.mo share/locale/sv/LC_MESSAGES/kdeconnect-interfaces.mo share/locale/sv/LC_MESSAGES/kdeconnect-kcm.mo share/locale/sv/LC_MESSAGES/kdeconnect-kded.mo share/locale/sv/LC_MESSAGES/kdeconnect-kio.mo share/locale/sv/LC_MESSAGES/kdeconnect-nautilus-extension.mo share/locale/sv/LC_MESSAGES/kdeconnect-plugins.mo share/locale/sv/LC_MESSAGES/kdeconnect-settings.mo share/locale/sv/LC_MESSAGES/kdeconnect-sms.mo share/locale/sv/LC_MESSAGES/kdeconnect-urlhandler.mo share/locale/sv/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo share/locale/ta/LC_MESSAGES/kdeconnect-app.mo share/locale/ta/LC_MESSAGES/kdeconnect-core.mo share/locale/ta/LC_MESSAGES/kdeconnect-indicator.mo share/locale/ta/LC_MESSAGES/kdeconnect-interfaces.mo share/locale/ta/LC_MESSAGES/kdeconnect-kcm.mo share/locale/ta/LC_MESSAGES/kdeconnect-kio.mo share/locale/ta/LC_MESSAGES/kdeconnect-settings.mo share/locale/ta/LC_MESSAGES/kdeconnect-sms.mo share/locale/tg/LC_MESSAGES/kdeconnect-fileitemaction.mo share/locale/tg/LC_MESSAGES/kdeconnect-kcm.mo share/locale/tg/LC_MESSAGES/kdeconnect-kded.mo share/locale/tg/LC_MESSAGES/kdeconnect-kio.mo share/locale/tg/LC_MESSAGES/kdeconnect-nautilus-extension.mo share/locale/tg/LC_MESSAGES/kdeconnect-plugins.mo share/locale/tg/LC_MESSAGES/kdeconnect-urlhandler.mo share/locale/tg/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo share/locale/tr/LC_MESSAGES/kdeconnect-app.mo share/locale/tr/LC_MESSAGES/kdeconnect-cli.mo share/locale/tr/LC_MESSAGES/kdeconnect-core.mo share/locale/tr/LC_MESSAGES/kdeconnect-fileitemaction.mo share/locale/tr/LC_MESSAGES/kdeconnect-indicator.mo share/locale/tr/LC_MESSAGES/kdeconnect-interfaces.mo share/locale/tr/LC_MESSAGES/kdeconnect-kcm.mo share/locale/tr/LC_MESSAGES/kdeconnect-kded.mo share/locale/tr/LC_MESSAGES/kdeconnect-kio.mo share/locale/tr/LC_MESSAGES/kdeconnect-nautilus-extension.mo share/locale/tr/LC_MESSAGES/kdeconnect-plugins.mo share/locale/tr/LC_MESSAGES/kdeconnect-settings.mo share/locale/tr/LC_MESSAGES/kdeconnect-sms.mo share/locale/tr/LC_MESSAGES/kdeconnect-urlhandler.mo share/locale/tr/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo share/locale/uk/LC_MESSAGES/kdeconnect-app.mo share/locale/uk/LC_MESSAGES/kdeconnect-cli.mo share/locale/uk/LC_MESSAGES/kdeconnect-core.mo share/locale/uk/LC_MESSAGES/kdeconnect-fileitemaction.mo share/locale/uk/LC_MESSAGES/kdeconnect-indicator.mo share/locale/uk/LC_MESSAGES/kdeconnect-interfaces.mo share/locale/uk/LC_MESSAGES/kdeconnect-kcm.mo share/locale/uk/LC_MESSAGES/kdeconnect-kded.mo share/locale/uk/LC_MESSAGES/kdeconnect-kio.mo share/locale/uk/LC_MESSAGES/kdeconnect-nautilus-extension.mo share/locale/uk/LC_MESSAGES/kdeconnect-plugins.mo share/locale/uk/LC_MESSAGES/kdeconnect-settings.mo share/locale/uk/LC_MESSAGES/kdeconnect-sms.mo share/locale/uk/LC_MESSAGES/kdeconnect-urlhandler.mo share/locale/uk/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo share/locale/zh_CN/LC_MESSAGES/kdeconnect-app.mo share/locale/zh_CN/LC_MESSAGES/kdeconnect-cli.mo share/locale/zh_CN/LC_MESSAGES/kdeconnect-core.mo share/locale/zh_CN/LC_MESSAGES/kdeconnect-fileitemaction.mo share/locale/zh_CN/LC_MESSAGES/kdeconnect-indicator.mo share/locale/zh_CN/LC_MESSAGES/kdeconnect-interfaces.mo share/locale/zh_CN/LC_MESSAGES/kdeconnect-kcm.mo share/locale/zh_CN/LC_MESSAGES/kdeconnect-kded.mo share/locale/zh_CN/LC_MESSAGES/kdeconnect-kio.mo share/locale/zh_CN/LC_MESSAGES/kdeconnect-nautilus-extension.mo share/locale/zh_CN/LC_MESSAGES/kdeconnect-plugins.mo share/locale/zh_CN/LC_MESSAGES/kdeconnect-settings.mo share/locale/zh_CN/LC_MESSAGES/kdeconnect-sms.mo share/locale/zh_CN/LC_MESSAGES/kdeconnect-urlhandler.mo share/locale/zh_CN/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo share/locale/zh_TW/LC_MESSAGES/kdeconnect-app.mo share/locale/zh_TW/LC_MESSAGES/kdeconnect-cli.mo share/locale/zh_TW/LC_MESSAGES/kdeconnect-core.mo share/locale/zh_TW/LC_MESSAGES/kdeconnect-fileitemaction.mo share/locale/zh_TW/LC_MESSAGES/kdeconnect-indicator.mo share/locale/zh_TW/LC_MESSAGES/kdeconnect-interfaces.mo share/locale/zh_TW/LC_MESSAGES/kdeconnect-kcm.mo share/locale/zh_TW/LC_MESSAGES/kdeconnect-kded.mo share/locale/zh_TW/LC_MESSAGES/kdeconnect-kio.mo share/locale/zh_TW/LC_MESSAGES/kdeconnect-nautilus-extension.mo share/locale/zh_TW/LC_MESSAGES/kdeconnect-plugins.mo share/locale/zh_TW/LC_MESSAGES/kdeconnect-settings.mo share/locale/zh_TW/LC_MESSAGES/kdeconnect-sms.mo share/locale/zh_TW/LC_MESSAGES/kdeconnect-urlhandler.mo share/locale/zh_TW/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo share/metainfo/org.kde.kdeconnect.appdata.xml share/metainfo/org.kde.kdeconnect.metainfo.xml share/nautilus-python/extensions/kdeconnect-share.py share/plasma/plasmoids/org.kde.kdeconnect/contents/ui/Battery.qml share/plasma/plasmoids/org.kde.kdeconnect/contents/ui/CompactRepresentation.qml share/plasma/plasmoids/org.kde.kdeconnect/contents/ui/Connectivity.qml share/plasma/plasmoids/org.kde.kdeconnect/contents/ui/DeviceDelegate.qml share/plasma/plasmoids/org.kde.kdeconnect/contents/ui/FindMyPhone.qml share/plasma/plasmoids/org.kde.kdeconnect/contents/ui/FullRepresentation.qml share/plasma/plasmoids/org.kde.kdeconnect/contents/ui/Photo.qml share/plasma/plasmoids/org.kde.kdeconnect/contents/ui/RemoteCommands.qml share/plasma/plasmoids/org.kde.kdeconnect/contents/ui/SMS.qml share/plasma/plasmoids/org.kde.kdeconnect/contents/ui/Sftp.qml share/plasma/plasmoids/org.kde.kdeconnect/contents/ui/Share.qml share/plasma/plasmoids/org.kde.kdeconnect/contents/ui/VirtualMonitor.qml share/plasma/plasmoids/org.kde.kdeconnect/contents/ui/main.qml share/plasma/plasmoids/org.kde.kdeconnect/metadata.desktop share/plasma/plasmoids/org.kde.kdeconnect/metadata.json share/qlogging-categories5/kdeconnect-kde.categories share/zsh/site-functions/_kdeconnect diff --git a/deskutils/kdepim-addons/distinfo b/deskutils/kdepim-addons/distinfo index ad3815ac34c2..04635f102ef4 100644 --- a/deskutils/kdepim-addons/distinfo +++ b/deskutils/kdepim-addons/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1677828335 -SHA256 (KDE/release-service/22.12.3/kdepim-addons-22.12.3.tar.xz) = 6d95b4900006ec92da14f9244811b8aad3967724baa4d8b4bf66ca82ab585779 -SIZE (KDE/release-service/22.12.3/kdepim-addons-22.12.3.tar.xz) = 2670804 +TIMESTAMP = 1681548332 +SHA256 (KDE/release-service/23.04.0/kdepim-addons-23.04.0.tar.xz) = 9fb406498ce57505a7bea5b156fc10cab010f7312c25322aa9dcd1e3614127d5 +SIZE (KDE/release-service/23.04.0/kdepim-addons-23.04.0.tar.xz) = 2648720 diff --git a/deskutils/kdepim-addons/pkg-plist b/deskutils/kdepim-addons/pkg-plist index ecb06a12cce7..1c34550972d2 100644 --- a/deskutils/kdepim-addons/pkg-plist +++ b/deskutils/kdepim-addons/pkg-plist @@ -1,1252 +1,1246 @@ bin/kmail_antivir.sh bin/kmail_clamav.sh bin/kmail_fprot.sh bin/kmail_sav.sh etc/xdg/kmail.antispamrc etc/xdg/kmail.antivirusrc lib/libadblocklibprivate.so.5 lib/libadblocklibprivate.so.%%KDE_APPLICATIONS_SHLIB_VER%% lib/libakonadidatasetools.so.5 lib/libakonadidatasetools.so.%%KDE_APPLICATIONS_SHLIB_VER%% lib/libdkimverifyconfigure.so.5 lib/libdkimverifyconfigure.so.%%KDE_APPLICATIONS_SHLIB_VER%% lib/libexpireaccounttrashfolderconfig.so.5 lib/libexpireaccounttrashfolderconfig.so.%%KDE_APPLICATIONS_SHLIB_VER%% lib/libfolderconfiguresettings.so.5 lib/libfolderconfiguresettings.so.%%KDE_APPLICATIONS_SHLIB_VER%% -lib/libgrammarcommon.so.5 -lib/libgrammarcommon.so.%%KDE_APPLICATIONS_SHLIB_VER%% lib/libkaddressbookmergelibprivate.so.5 lib/libkaddressbookmergelibprivate.so.%%KDE_APPLICATIONS_SHLIB_VER%% lib/libkmailconfirmbeforedeleting.so.5 lib/libkmailconfirmbeforedeleting.so.%%KDE_APPLICATIONS_SHLIB_VER%% -lib/libkmailgrammalecte.so.5 -lib/libkmailgrammalecte.so.%%KDE_APPLICATIONS_SHLIB_VER%% -lib/libkmaillanguagetool.so.5 -lib/libkmaillanguagetool.so.%%KDE_APPLICATIONS_SHLIB_VER%% lib/libkmailmarkdown.so.5 lib/libkmailmarkdown.so.%%KDE_APPLICATIONS_SHLIB_VER%% lib/libkmailquicktextpluginprivate.so.5 lib/libkmailquicktextpluginprivate.so.%%KDE_APPLICATIONS_SHLIB_VER%% lib/libopenurlwithconfigure.so.5 lib/libopenurlwithconfigure.so.%%KDE_APPLICATIONS_SHLIB_VER%% lib/libscamconfiguresettings.so.5 lib/libscamconfiguresettings.so.%%KDE_APPLICATIONS_SHLIB_VER%% lib/libshorturlpluginprivate.so.5 lib/libshorturlpluginprivate.so.%%KDE_APPLICATIONS_SHLIB_VER%% %%QT_PLUGINDIR%%/pim5/akonadi/emailaddressselectionldapdialogplugin.so %%QT_PLUGINDIR%%/pim5/contacteditor/editorpageplugins/cryptopageplugin.so %%QT_PLUGINDIR%%/pim5/importwizard/evolutionv1importerplugin.so %%QT_PLUGINDIR%%/pim5/importwizard/evolutionv2importerplugin.so %%QT_PLUGINDIR%%/pim5/importwizard/gearyimporterplugin.so %%QT_PLUGINDIR%%/pim5/importwizard/operaimporterplugin.so %%QT_PLUGINDIR%%/pim5/kaddressbook/importexportplugin/kaddressbook_importexportcsvplugin.so %%QT_PLUGINDIR%%/pim5/kaddressbook/importexportplugin/kaddressbook_importexportgmxplugin.so %%QT_PLUGINDIR%%/pim5/kaddressbook/importexportplugin/kaddressbook_importexportldapplugin.so %%QT_PLUGINDIR%%/pim5/kaddressbook/importexportplugin/kaddressbook_importexportldifplugin.so %%QT_PLUGINDIR%%/pim5/kaddressbook/importexportplugin/kaddressbook_importexportvcardplugin.so %%QT_PLUGINDIR%%/pim5/kaddressbook/importexportplugin/kaddressbook_importexportwindowscontactplugin.so %%QT_PLUGINDIR%%/pim5/kaddressbook/mainview/kaddressbook_checkgravatarplugin.so %%QT_PLUGINDIR%%/pim5/kaddressbook/mainview/kaddressbook_mergecontactsplugin.so %%QT_PLUGINDIR%%/pim5/kaddressbook/mainview/kaddressbook_searchduplicatesplugin.so %%QT_PLUGINDIR%%/pim5/kaddressbook/mainview/kaddressbook_sendmailplugin.so %%QT_PLUGINDIR%%/pim5/kaddressbook/mainview/kaddressbook_sendvcardsplugin.so %%QT_PLUGINDIR%%/pim5/kmail/mainview/kmail_akonadidatabasetoolplugin.so %%QT_PLUGINDIR%%/pim5/kmail/mainview/kmail_antispamplugin.so %%QT_PLUGINDIR%%/pim5/kmail/mainview/kmail_antivirusplugin.so %%QT_PLUGINDIR%%/pim5/kmail/mainview/kmail_expertplugin.so %%QT_PLUGINDIR%%/pim5/kmail/plugincheckbeforesend/kmail_automaticaddcontactseditorplugin.so %%QT_PLUGINDIR%%/pim5/kmail/plugincheckbeforesend/kmail_checkbeforesendeditorplugin.so %%QT_PLUGINDIR%%/pim5/kmail/plugincheckbeforesend/kmail_confirmaddresseditorplugin.so %%QT_PLUGINDIR%%/pim5/kmail/plugineditor/kmail_autocorrectioneditorplugin.so %%QT_PLUGINDIR%%/pim5/kmail/plugineditor/kmail_changecaseeditorplugin.so %%QT_PLUGINDIR%%/pim5/kmail/plugineditor/kmail_insertemaileditorplugin.so %%QT_PLUGINDIR%%/pim5/kmail/plugineditor/kmail_insertshorturleditorplugin.so %%QT_PLUGINDIR%%/pim5/kmail/plugineditor/kmail_insertspecialcharactereditorplugin.so %%QT_PLUGINDIR%%/pim5/kmail/plugineditor/kmail_nonbreakingspaceeditorplugin.so %%QT_PLUGINDIR%%/pim5/kmail/plugineditor/kmail_quicktextplugin.so %%QT_PLUGINDIR%%/pim5/kmail/plugineditor/kmail_sharetexteditorplugin.so %%QT_PLUGINDIR%%/pim5/kmail/plugineditor/kmail_zoomtexteditorplugin.so %%QT_PLUGINDIR%%/pim5/kmail/plugineditorconverttext/kmail_markdownplugin.so %%QT_PLUGINDIR%%/pim5/kmail/plugineditorgrammar/kmail_grammalecteplugin.so %%QT_PLUGINDIR%%/pim5/kmail/plugineditorgrammar/kmail_languagetoolplugin.so %%QT_PLUGINDIR%%/pim5/kmail/plugineditorinit/kmail_externalcomposereditorplugin.so %%QT_PLUGINDIR%%/pim5/korganizer/datenums.so %%QT_PLUGINDIR%%/pim5/korganizer/lunarphases.so %%QT_PLUGINDIR%%/pim5/korganizer/picoftheday.so %%QT_PLUGINDIR%%/pim5/korganizer/thisdayinhistory.so %%QT_PLUGINDIR%%/pim5/libksieve/emaillineeditplugin.so %%QT_PLUGINDIR%%/pim5/libksieve/imapfoldercompletionplugin.so %%QT_PLUGINDIR%%/pim5/mailtransport/mailtransport_sendplugin.so %%QT_PLUGINDIR%%/pim5/messageviewer/bodypartformatter/messageviewer_bodypartformatter_application_gnupgwks.so %%QT_PLUGINDIR%%/pim5/messageviewer/bodypartformatter/messageviewer_bodypartformatter_application_mstnef.so %%QT_PLUGINDIR%%/pim5/messageviewer/bodypartformatter/messageviewer_bodypartformatter_pkpass.so %%QT_PLUGINDIR%%/pim5/messageviewer/bodypartformatter/messageviewer_bodypartformatter_semantic.so %%QT_PLUGINDIR%%/pim5/messageviewer/bodypartformatter/messageviewer_bodypartformatter_text_calendar.so %%QT_PLUGINDIR%%/pim5/messageviewer/bodypartformatter/messageviewer_bodypartformatter_text_highlighter.so %%QT_PLUGINDIR%%/pim5/messageviewer/bodypartformatter/messageviewer_bodypartformatter_text_markdown.so %%QT_PLUGINDIR%%/pim5/messageviewer/bodypartformatter/messageviewer_bodypartformatter_text_vcard.so %%QT_PLUGINDIR%%/pim5/messageviewer/checkbeforedeleting/kmail_confirmbeforedeletingplugin.so %%QT_PLUGINDIR%%/pim5/messageviewer/configuresettings/messageviewer_dkimconfigplugin.so %%QT_PLUGINDIR%%/pim5/messageviewer/configuresettings/messageviewer_expireaccounttrashfolderconfigplugin.so %%QT_PLUGINDIR%%/pim5/messageviewer/configuresettings/messageviewer_folderconfiguresettingsplugin.so %%QT_PLUGINDIR%%/pim5/messageviewer/configuresettings/messageviewer_gravatarconfigplugin.so %%QT_PLUGINDIR%%/pim5/messageviewer/configuresettings/messageviewer_openurlwithconfigplugin.so %%QT_PLUGINDIR%%/pim5/messageviewer/configuresettings/messageviewer_scamconfiguresettingsplugin.so %%QT_PLUGINDIR%%/pim5/messageviewer/grantlee/5.0/kitinerary_grantlee_extension.so %%QT_PLUGINDIR%%/pim5/messageviewer/headerstyle/messageviewer_briefheaderstyleplugin.so %%QT_PLUGINDIR%%/pim5/messageviewer/headerstyle/messageviewer_fancyheaderstyleplugin.so %%QT_PLUGINDIR%%/pim5/messageviewer/headerstyle/messageviewer_grantleeheaderstyleplugin.so %%QT_PLUGINDIR%%/pim5/messageviewer/headerstyle/messageviewer_longheaderstyleplugin.so %%QT_PLUGINDIR%%/pim5/messageviewer/headerstyle/messageviewer_standardsheaderstyleplugin.so %%QT_PLUGINDIR%%/pim5/messageviewer/viewercommonplugin/messageviewer_expandurlplugin.so %%QT_PLUGINDIR%%/pim5/messageviewer/viewercommonplugin/messageviewer_translatorplugin.so %%QT_PLUGINDIR%%/pim5/messageviewer/viewerplugin/messageviewer_createeventplugin.so %%QT_PLUGINDIR%%/pim5/messageviewer/viewerplugin/messageviewer_createnoteplugin.so %%QT_PLUGINDIR%%/pim5/messageviewer/viewerplugin/messageviewer_createtodoplugin.so %%QT_PLUGINDIR%%/pim5/messageviewer/viewerplugin/messageviewer_externalscriptplugin.so %%QT_PLUGINDIR%%/pim5/pimcommon/customtools/pimcommon_translatorplugin.so %%QT_PLUGINDIR%%/pim5/pimcommon/shorturlengine/pimcommon_isgdshorturlengineplugin.so %%QT_PLUGINDIR%%/pim5/pimcommon/shorturlengine/pimcommon_tinyurlengineplugin.so %%QT_PLUGINDIR%%/pim5/pimcommon/shorturlengine/pimcommon_triopabshorturlengineplugin.so %%QT_PLUGINDIR%%/pim5/templateparser/templateparseraddressrequesterplugin.so %%QT_PLUGINDIR%%/pim5/webengineviewer/urlinterceptor/webengineviewer_adblockplugin.so %%QT_PLUGINDIR%%/pim5/webengineviewer/urlinterceptor/webengineviewer_donottrackplugin.so %%QT_PLUGINDIR%%/plasmacalendarplugins/pimevents.so %%QT_PLUGINDIR%%/plasmacalendarplugins/pimevents/PimEventsConfig.qml %%QT_QMLDIR%%/org/kde/plasma/PimCalendars/libpimcalendarsplugin.so %%QT_QMLDIR%%/org/kde/plasma/PimCalendars/qmldir share/icons/hicolor/scalable/status/moon-phase-first-quarter.svg share/icons/hicolor/scalable/status/moon-phase-full.svg share/icons/hicolor/scalable/status/moon-phase-last-quarter.svg share/icons/hicolor/scalable/status/moon-phase-new.svg -share/kconf_update/languagetool_kmail.upd share/kconf_update/webengineurlinterceptoradblock.upd share/locale/af/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/af/LC_MESSAGES/korganizer_plugins.mo share/locale/ar/LC_MESSAGES/cryptopageplugin.mo share/locale/ar/LC_MESSAGES/customtoolsplugin.mo share/locale/ar/LC_MESSAGES/importwizard_plugins.mo share/locale/ar/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/ar/LC_MESSAGES/kaddressbook_plugins.mo share/locale/ar/LC_MESSAGES/kmail_checkbeforedeleting_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_editorgrammar_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/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/messageviewerconfiguresettingsplugins.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/az/LC_MESSAGES/cryptopageplugin.mo share/locale/az/LC_MESSAGES/customtoolsplugin.mo share/locale/az/LC_MESSAGES/importwizard_plugins.mo share/locale/az/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/az/LC_MESSAGES/kaddressbook_plugins.mo share/locale/az/LC_MESSAGES/kmail_checkbeforedeleting_plugins.mo share/locale/az/LC_MESSAGES/kmail_editor_plugins.mo share/locale/az/LC_MESSAGES/kmail_editorconvertertext_plugins.mo share/locale/az/LC_MESSAGES/kmail_editorgrammar_plugins.mo share/locale/az/LC_MESSAGES/kmail_editorinit_plugins.mo share/locale/az/LC_MESSAGES/kmail_editorsendcheck_plugins.mo share/locale/az/LC_MESSAGES/kmail_plugins.mo share/locale/az/LC_MESSAGES/kmailtransport_plugins.mo share/locale/az/LC_MESSAGES/korganizer_plugins.mo share/locale/az/LC_MESSAGES/messageviewer_application_gnupgwks_plugin.mo share/locale/az/LC_MESSAGES/messageviewer_application_mstnef_plugin.mo share/locale/az/LC_MESSAGES/messageviewer_bodypartformatter_pkpass.mo share/locale/az/LC_MESSAGES/messageviewer_semantic_plugin.mo share/locale/az/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/az/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/az/LC_MESSAGES/messageviewerconfiguresettingsplugins.mo share/locale/az/LC_MESSAGES/messageviewerheaderplugins.mo share/locale/az/LC_MESSAGES/messageviewerplugins.mo share/locale/az/LC_MESSAGES/pimeventsplugin.mo share/locale/az/LC_MESSAGES/sieveeditor_plugins.mo share/locale/az/LC_MESSAGES/webengineurlinterceptor.mo share/locale/be/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/be/LC_MESSAGES/korganizer_plugins.mo share/locale/be/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/be/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/bg/LC_MESSAGES/cryptopageplugin.mo share/locale/bg/LC_MESSAGES/customtoolsplugin.mo share/locale/bg/LC_MESSAGES/importwizard_plugins.mo share/locale/bg/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/bg/LC_MESSAGES/kaddressbook_plugins.mo share/locale/bg/LC_MESSAGES/kmail_checkbeforedeleting_plugins.mo share/locale/bg/LC_MESSAGES/kmail_editor_plugins.mo share/locale/bg/LC_MESSAGES/kmail_editorconvertertext_plugins.mo share/locale/bg/LC_MESSAGES/kmail_editorgrammar_plugins.mo share/locale/bg/LC_MESSAGES/kmail_editorinit_plugins.mo share/locale/bg/LC_MESSAGES/kmail_editorsendcheck_plugins.mo share/locale/bg/LC_MESSAGES/kmail_plugins.mo share/locale/bg/LC_MESSAGES/kmailtransport_plugins.mo share/locale/bg/LC_MESSAGES/korganizer_plugins.mo share/locale/bg/LC_MESSAGES/messageviewer_application_gnupgwks_plugin.mo share/locale/bg/LC_MESSAGES/messageviewer_application_mstnef_plugin.mo share/locale/bg/LC_MESSAGES/messageviewer_bodypartformatter_pkpass.mo share/locale/bg/LC_MESSAGES/messageviewer_semantic_plugin.mo share/locale/bg/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/bg/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/bg/LC_MESSAGES/messageviewerconfiguresettingsplugins.mo share/locale/bg/LC_MESSAGES/messageviewerheaderplugins.mo share/locale/bg/LC_MESSAGES/messageviewerplugins.mo share/locale/bg/LC_MESSAGES/pimeventsplugin.mo share/locale/bg/LC_MESSAGES/sieveeditor_plugins.mo share/locale/bg/LC_MESSAGES/webengineurlinterceptor.mo share/locale/bn/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/br/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/br/LC_MESSAGES/korganizer_plugins.mo share/locale/br/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/br/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/messageviewer_application_mstnef_plugin.mo share/locale/bs/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/bs/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/ca/LC_MESSAGES/cryptopageplugin.mo share/locale/ca/LC_MESSAGES/customtoolsplugin.mo share/locale/ca/LC_MESSAGES/importwizard_plugins.mo share/locale/ca/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/ca/LC_MESSAGES/kaddressbook_plugins.mo share/locale/ca/LC_MESSAGES/kmail_checkbeforedeleting_plugins.mo share/locale/ca/LC_MESSAGES/kmail_editor_plugins.mo share/locale/ca/LC_MESSAGES/kmail_editorconvertertext_plugins.mo share/locale/ca/LC_MESSAGES/kmail_editorgrammar_plugins.mo share/locale/ca/LC_MESSAGES/kmail_editorinit_plugins.mo share/locale/ca/LC_MESSAGES/kmail_editorsendcheck_plugins.mo share/locale/ca/LC_MESSAGES/kmail_plugins.mo share/locale/ca/LC_MESSAGES/kmailtransport_plugins.mo share/locale/ca/LC_MESSAGES/korganizer_plugins.mo share/locale/ca/LC_MESSAGES/messageviewer_application_gnupgwks_plugin.mo share/locale/ca/LC_MESSAGES/messageviewer_application_mstnef_plugin.mo share/locale/ca/LC_MESSAGES/messageviewer_bodypartformatter_pkpass.mo share/locale/ca/LC_MESSAGES/messageviewer_semantic_plugin.mo share/locale/ca/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/ca/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/ca/LC_MESSAGES/messageviewerconfiguresettingsplugins.mo share/locale/ca/LC_MESSAGES/messageviewerheaderplugins.mo share/locale/ca/LC_MESSAGES/messageviewerplugins.mo share/locale/ca/LC_MESSAGES/pimeventsplugin.mo share/locale/ca/LC_MESSAGES/sieveeditor_plugins.mo share/locale/ca/LC_MESSAGES/webengineurlinterceptor.mo share/locale/ca@valencia/LC_MESSAGES/cryptopageplugin.mo share/locale/ca@valencia/LC_MESSAGES/customtoolsplugin.mo share/locale/ca@valencia/LC_MESSAGES/importwizard_plugins.mo share/locale/ca@valencia/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/ca@valencia/LC_MESSAGES/kaddressbook_plugins.mo share/locale/ca@valencia/LC_MESSAGES/kmail_checkbeforedeleting_plugins.mo share/locale/ca@valencia/LC_MESSAGES/kmail_editor_plugins.mo share/locale/ca@valencia/LC_MESSAGES/kmail_editorconvertertext_plugins.mo share/locale/ca@valencia/LC_MESSAGES/kmail_editorgrammar_plugins.mo share/locale/ca@valencia/LC_MESSAGES/kmail_editorinit_plugins.mo share/locale/ca@valencia/LC_MESSAGES/kmail_editorsendcheck_plugins.mo share/locale/ca@valencia/LC_MESSAGES/kmail_plugins.mo share/locale/ca@valencia/LC_MESSAGES/kmailtransport_plugins.mo share/locale/ca@valencia/LC_MESSAGES/korganizer_plugins.mo share/locale/ca@valencia/LC_MESSAGES/messageviewer_application_gnupgwks_plugin.mo share/locale/ca@valencia/LC_MESSAGES/messageviewer_application_mstnef_plugin.mo share/locale/ca@valencia/LC_MESSAGES/messageviewer_bodypartformatter_pkpass.mo share/locale/ca@valencia/LC_MESSAGES/messageviewer_semantic_plugin.mo share/locale/ca@valencia/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/ca@valencia/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/ca@valencia/LC_MESSAGES/messageviewerconfiguresettingsplugins.mo share/locale/ca@valencia/LC_MESSAGES/messageviewerheaderplugins.mo share/locale/ca@valencia/LC_MESSAGES/messageviewerplugins.mo share/locale/ca@valencia/LC_MESSAGES/pimeventsplugin.mo share/locale/ca@valencia/LC_MESSAGES/sieveeditor_plugins.mo share/locale/ca@valencia/LC_MESSAGES/webengineurlinterceptor.mo share/locale/cs/LC_MESSAGES/cryptopageplugin.mo share/locale/cs/LC_MESSAGES/customtoolsplugin.mo share/locale/cs/LC_MESSAGES/importwizard_plugins.mo share/locale/cs/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/cs/LC_MESSAGES/kaddressbook_plugins.mo share/locale/cs/LC_MESSAGES/kmail_checkbeforedeleting_plugins.mo share/locale/cs/LC_MESSAGES/kmail_editor_plugins.mo share/locale/cs/LC_MESSAGES/kmail_editorconvertertext_plugins.mo share/locale/cs/LC_MESSAGES/kmail_editorgrammar_plugins.mo share/locale/cs/LC_MESSAGES/kmail_editorinit_plugins.mo share/locale/cs/LC_MESSAGES/kmail_editorsendcheck_plugins.mo share/locale/cs/LC_MESSAGES/kmail_plugins.mo share/locale/cs/LC_MESSAGES/kmailtransport_plugins.mo share/locale/cs/LC_MESSAGES/korganizer_plugins.mo share/locale/cs/LC_MESSAGES/messageviewer_application_gnupgwks_plugin.mo share/locale/cs/LC_MESSAGES/messageviewer_application_mstnef_plugin.mo share/locale/cs/LC_MESSAGES/messageviewer_bodypartformatter_pkpass.mo share/locale/cs/LC_MESSAGES/messageviewer_semantic_plugin.mo share/locale/cs/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/cs/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/cs/LC_MESSAGES/messageviewerconfiguresettingsplugins.mo share/locale/cs/LC_MESSAGES/messageviewerheaderplugins.mo share/locale/cs/LC_MESSAGES/messageviewerplugins.mo share/locale/cs/LC_MESSAGES/pimeventsplugin.mo share/locale/cs/LC_MESSAGES/sieveeditor_plugins.mo share/locale/cs/LC_MESSAGES/webengineurlinterceptor.mo share/locale/cy/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/cy/LC_MESSAGES/korganizer_plugins.mo share/locale/cy/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/da/LC_MESSAGES/cryptopageplugin.mo share/locale/da/LC_MESSAGES/customtoolsplugin.mo share/locale/da/LC_MESSAGES/importwizard_plugins.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_editorconvertertext_plugins.mo share/locale/da/LC_MESSAGES/kmail_editorgrammar_plugins.mo share/locale/da/LC_MESSAGES/kmail_editorinit_plugins.mo share/locale/da/LC_MESSAGES/kmail_editorsendcheck_plugins.mo share/locale/da/LC_MESSAGES/kmail_plugins.mo share/locale/da/LC_MESSAGES/kmailtransport_plugins.mo share/locale/da/LC_MESSAGES/korganizer_plugins.mo share/locale/da/LC_MESSAGES/messageviewer_application_gnupgwks_plugin.mo share/locale/da/LC_MESSAGES/messageviewer_application_mstnef_plugin.mo share/locale/da/LC_MESSAGES/messageviewer_bodypartformatter_pkpass.mo share/locale/da/LC_MESSAGES/messageviewer_semantic_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/messageviewerconfiguresettingsplugins.mo share/locale/da/LC_MESSAGES/messageviewerheaderplugins.mo share/locale/da/LC_MESSAGES/messageviewerplugins.mo share/locale/da/LC_MESSAGES/pimeventsplugin.mo share/locale/da/LC_MESSAGES/sieveeditor_plugins.mo share/locale/da/LC_MESSAGES/webengineurlinterceptor.mo share/locale/de/LC_MESSAGES/cryptopageplugin.mo share/locale/de/LC_MESSAGES/customtoolsplugin.mo share/locale/de/LC_MESSAGES/importwizard_plugins.mo share/locale/de/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/de/LC_MESSAGES/kaddressbook_plugins.mo share/locale/de/LC_MESSAGES/kmail_checkbeforedeleting_plugins.mo share/locale/de/LC_MESSAGES/kmail_editor_plugins.mo share/locale/de/LC_MESSAGES/kmail_editorconvertertext_plugins.mo share/locale/de/LC_MESSAGES/kmail_editorgrammar_plugins.mo share/locale/de/LC_MESSAGES/kmail_editorinit_plugins.mo share/locale/de/LC_MESSAGES/kmail_editorsendcheck_plugins.mo share/locale/de/LC_MESSAGES/kmail_plugins.mo share/locale/de/LC_MESSAGES/kmailtransport_plugins.mo share/locale/de/LC_MESSAGES/korganizer_plugins.mo share/locale/de/LC_MESSAGES/messageviewer_application_gnupgwks_plugin.mo share/locale/de/LC_MESSAGES/messageviewer_application_mstnef_plugin.mo share/locale/de/LC_MESSAGES/messageviewer_bodypartformatter_pkpass.mo share/locale/de/LC_MESSAGES/messageviewer_semantic_plugin.mo share/locale/de/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/de/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/de/LC_MESSAGES/messageviewerconfiguresettingsplugins.mo share/locale/de/LC_MESSAGES/messageviewerheaderplugins.mo share/locale/de/LC_MESSAGES/messageviewerplugins.mo share/locale/de/LC_MESSAGES/pimeventsplugin.mo share/locale/de/LC_MESSAGES/sieveeditor_plugins.mo share/locale/de/LC_MESSAGES/webengineurlinterceptor.mo share/locale/el/LC_MESSAGES/cryptopageplugin.mo share/locale/el/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/el/LC_MESSAGES/korganizer_plugins.mo share/locale/el/LC_MESSAGES/messageviewer_application_mstnef_plugin.mo share/locale/el/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/el/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/en_GB/LC_MESSAGES/cryptopageplugin.mo share/locale/en_GB/LC_MESSAGES/customtoolsplugin.mo share/locale/en_GB/LC_MESSAGES/importwizard_plugins.mo share/locale/en_GB/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/en_GB/LC_MESSAGES/kaddressbook_plugins.mo share/locale/en_GB/LC_MESSAGES/kmail_checkbeforedeleting_plugins.mo share/locale/en_GB/LC_MESSAGES/kmail_editor_plugins.mo share/locale/en_GB/LC_MESSAGES/kmail_editorconvertertext_plugins.mo share/locale/en_GB/LC_MESSAGES/kmail_editorgrammar_plugins.mo share/locale/en_GB/LC_MESSAGES/kmail_editorinit_plugins.mo share/locale/en_GB/LC_MESSAGES/kmail_editorsendcheck_plugins.mo share/locale/en_GB/LC_MESSAGES/kmail_plugins.mo share/locale/en_GB/LC_MESSAGES/kmailtransport_plugins.mo share/locale/en_GB/LC_MESSAGES/korganizer_plugins.mo share/locale/en_GB/LC_MESSAGES/messageviewer_application_gnupgwks_plugin.mo share/locale/en_GB/LC_MESSAGES/messageviewer_application_mstnef_plugin.mo share/locale/en_GB/LC_MESSAGES/messageviewer_bodypartformatter_pkpass.mo share/locale/en_GB/LC_MESSAGES/messageviewer_semantic_plugin.mo share/locale/en_GB/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/en_GB/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/en_GB/LC_MESSAGES/messageviewerconfiguresettingsplugins.mo share/locale/en_GB/LC_MESSAGES/messageviewerheaderplugins.mo share/locale/en_GB/LC_MESSAGES/messageviewerplugins.mo share/locale/en_GB/LC_MESSAGES/pimeventsplugin.mo share/locale/en_GB/LC_MESSAGES/sieveeditor_plugins.mo share/locale/en_GB/LC_MESSAGES/webengineurlinterceptor.mo share/locale/eo/LC_MESSAGES/cryptopageplugin.mo share/locale/eo/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/eo/LC_MESSAGES/korganizer_plugins.mo share/locale/eo/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/eo/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/es/LC_MESSAGES/cryptopageplugin.mo share/locale/es/LC_MESSAGES/customtoolsplugin.mo share/locale/es/LC_MESSAGES/importwizard_plugins.mo share/locale/es/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/es/LC_MESSAGES/kaddressbook_plugins.mo share/locale/es/LC_MESSAGES/kmail_checkbeforedeleting_plugins.mo share/locale/es/LC_MESSAGES/kmail_editor_plugins.mo share/locale/es/LC_MESSAGES/kmail_editorconvertertext_plugins.mo share/locale/es/LC_MESSAGES/kmail_editorgrammar_plugins.mo share/locale/es/LC_MESSAGES/kmail_editorinit_plugins.mo share/locale/es/LC_MESSAGES/kmail_editorsendcheck_plugins.mo share/locale/es/LC_MESSAGES/kmail_plugins.mo share/locale/es/LC_MESSAGES/kmailtransport_plugins.mo share/locale/es/LC_MESSAGES/korganizer_plugins.mo share/locale/es/LC_MESSAGES/messageviewer_application_gnupgwks_plugin.mo share/locale/es/LC_MESSAGES/messageviewer_application_mstnef_plugin.mo share/locale/es/LC_MESSAGES/messageviewer_bodypartformatter_pkpass.mo share/locale/es/LC_MESSAGES/messageviewer_semantic_plugin.mo share/locale/es/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/es/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/es/LC_MESSAGES/messageviewerconfiguresettingsplugins.mo share/locale/es/LC_MESSAGES/messageviewerheaderplugins.mo share/locale/es/LC_MESSAGES/messageviewerplugins.mo share/locale/es/LC_MESSAGES/pimeventsplugin.mo share/locale/es/LC_MESSAGES/sieveeditor_plugins.mo share/locale/es/LC_MESSAGES/webengineurlinterceptor.mo share/locale/et/LC_MESSAGES/cryptopageplugin.mo share/locale/et/LC_MESSAGES/customtoolsplugin.mo share/locale/et/LC_MESSAGES/importwizard_plugins.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_editorconvertertext_plugins.mo share/locale/et/LC_MESSAGES/kmail_editorgrammar_plugins.mo share/locale/et/LC_MESSAGES/kmail_editorinit_plugins.mo share/locale/et/LC_MESSAGES/kmail_editorsendcheck_plugins.mo share/locale/et/LC_MESSAGES/kmail_plugins.mo share/locale/et/LC_MESSAGES/kmailtransport_plugins.mo share/locale/et/LC_MESSAGES/korganizer_plugins.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_bodypartformatter_pkpass.mo share/locale/et/LC_MESSAGES/messageviewer_semantic_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/messageviewerconfiguresettingsplugins.mo share/locale/et/LC_MESSAGES/messageviewerheaderplugins.mo share/locale/et/LC_MESSAGES/messageviewerplugins.mo share/locale/et/LC_MESSAGES/pimeventsplugin.mo share/locale/et/LC_MESSAGES/sieveeditor_plugins.mo share/locale/et/LC_MESSAGES/webengineurlinterceptor.mo share/locale/eu/LC_MESSAGES/cryptopageplugin.mo share/locale/eu/LC_MESSAGES/customtoolsplugin.mo share/locale/eu/LC_MESSAGES/importwizard_plugins.mo share/locale/eu/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/eu/LC_MESSAGES/kaddressbook_plugins.mo share/locale/eu/LC_MESSAGES/kmail_checkbeforedeleting_plugins.mo share/locale/eu/LC_MESSAGES/kmail_editor_plugins.mo share/locale/eu/LC_MESSAGES/kmail_editorconvertertext_plugins.mo share/locale/eu/LC_MESSAGES/kmail_editorgrammar_plugins.mo share/locale/eu/LC_MESSAGES/kmail_editorinit_plugins.mo share/locale/eu/LC_MESSAGES/kmail_editorsendcheck_plugins.mo share/locale/eu/LC_MESSAGES/kmail_plugins.mo share/locale/eu/LC_MESSAGES/kmailtransport_plugins.mo share/locale/eu/LC_MESSAGES/korganizer_plugins.mo share/locale/eu/LC_MESSAGES/messageviewer_application_gnupgwks_plugin.mo share/locale/eu/LC_MESSAGES/messageviewer_application_mstnef_plugin.mo share/locale/eu/LC_MESSAGES/messageviewer_bodypartformatter_pkpass.mo share/locale/eu/LC_MESSAGES/messageviewer_semantic_plugin.mo share/locale/eu/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/eu/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/eu/LC_MESSAGES/messageviewerconfiguresettingsplugins.mo share/locale/eu/LC_MESSAGES/messageviewerheaderplugins.mo share/locale/eu/LC_MESSAGES/messageviewerplugins.mo share/locale/eu/LC_MESSAGES/pimeventsplugin.mo share/locale/eu/LC_MESSAGES/sieveeditor_plugins.mo share/locale/eu/LC_MESSAGES/webengineurlinterceptor.mo share/locale/fa/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/fa/LC_MESSAGES/korganizer_plugins.mo share/locale/fa/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/fa/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/fi/LC_MESSAGES/cryptopageplugin.mo share/locale/fi/LC_MESSAGES/customtoolsplugin.mo share/locale/fi/LC_MESSAGES/importwizard_plugins.mo share/locale/fi/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/fi/LC_MESSAGES/kaddressbook_plugins.mo share/locale/fi/LC_MESSAGES/kmail_checkbeforedeleting_plugins.mo share/locale/fi/LC_MESSAGES/kmail_editor_plugins.mo share/locale/fi/LC_MESSAGES/kmail_editorconvertertext_plugins.mo share/locale/fi/LC_MESSAGES/kmail_editorgrammar_plugins.mo share/locale/fi/LC_MESSAGES/kmail_editorinit_plugins.mo share/locale/fi/LC_MESSAGES/kmail_editorsendcheck_plugins.mo share/locale/fi/LC_MESSAGES/kmail_plugins.mo share/locale/fi/LC_MESSAGES/kmailtransport_plugins.mo share/locale/fi/LC_MESSAGES/korganizer_plugins.mo share/locale/fi/LC_MESSAGES/messageviewer_application_gnupgwks_plugin.mo share/locale/fi/LC_MESSAGES/messageviewer_application_mstnef_plugin.mo share/locale/fi/LC_MESSAGES/messageviewer_bodypartformatter_pkpass.mo share/locale/fi/LC_MESSAGES/messageviewer_semantic_plugin.mo share/locale/fi/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/fi/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/fi/LC_MESSAGES/messageviewerconfiguresettingsplugins.mo share/locale/fi/LC_MESSAGES/messageviewerheaderplugins.mo share/locale/fi/LC_MESSAGES/messageviewerplugins.mo share/locale/fi/LC_MESSAGES/pimeventsplugin.mo share/locale/fi/LC_MESSAGES/sieveeditor_plugins.mo share/locale/fi/LC_MESSAGES/webengineurlinterceptor.mo share/locale/fr/LC_MESSAGES/cryptopageplugin.mo share/locale/fr/LC_MESSAGES/customtoolsplugin.mo share/locale/fr/LC_MESSAGES/importwizard_plugins.mo share/locale/fr/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/fr/LC_MESSAGES/kaddressbook_plugins.mo share/locale/fr/LC_MESSAGES/kmail_checkbeforedeleting_plugins.mo share/locale/fr/LC_MESSAGES/kmail_editor_plugins.mo share/locale/fr/LC_MESSAGES/kmail_editorconvertertext_plugins.mo share/locale/fr/LC_MESSAGES/kmail_editorgrammar_plugins.mo share/locale/fr/LC_MESSAGES/kmail_editorinit_plugins.mo share/locale/fr/LC_MESSAGES/kmail_editorsendcheck_plugins.mo share/locale/fr/LC_MESSAGES/kmail_plugins.mo share/locale/fr/LC_MESSAGES/kmailtransport_plugins.mo share/locale/fr/LC_MESSAGES/korganizer_plugins.mo share/locale/fr/LC_MESSAGES/messageviewer_application_gnupgwks_plugin.mo share/locale/fr/LC_MESSAGES/messageviewer_application_mstnef_plugin.mo share/locale/fr/LC_MESSAGES/messageviewer_bodypartformatter_pkpass.mo share/locale/fr/LC_MESSAGES/messageviewer_semantic_plugin.mo share/locale/fr/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/fr/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/fr/LC_MESSAGES/messageviewerconfiguresettingsplugins.mo share/locale/fr/LC_MESSAGES/messageviewerheaderplugins.mo share/locale/fr/LC_MESSAGES/messageviewerplugins.mo share/locale/fr/LC_MESSAGES/pimeventsplugin.mo share/locale/fr/LC_MESSAGES/sieveeditor_plugins.mo share/locale/fr/LC_MESSAGES/webengineurlinterceptor.mo share/locale/fy/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/fy/LC_MESSAGES/korganizer_plugins.mo share/locale/fy/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/fy/LC_MESSAGES/messageviewer_text_vcard_plugin.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/messageviewer_application_mstnef_plugin.mo share/locale/ga/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/ga/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/gl/LC_MESSAGES/cryptopageplugin.mo share/locale/gl/LC_MESSAGES/customtoolsplugin.mo share/locale/gl/LC_MESSAGES/importwizard_plugins.mo share/locale/gl/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/gl/LC_MESSAGES/kaddressbook_plugins.mo share/locale/gl/LC_MESSAGES/kmail_editor_plugins.mo share/locale/gl/LC_MESSAGES/kmail_editorconvertertext_plugins.mo share/locale/gl/LC_MESSAGES/kmail_editorgrammar_plugins.mo share/locale/gl/LC_MESSAGES/kmail_editorinit_plugins.mo share/locale/gl/LC_MESSAGES/kmail_editorsendcheck_plugins.mo share/locale/gl/LC_MESSAGES/kmail_plugins.mo share/locale/gl/LC_MESSAGES/kmailtransport_plugins.mo share/locale/gl/LC_MESSAGES/korganizer_plugins.mo share/locale/gl/LC_MESSAGES/messageviewer_application_gnupgwks_plugin.mo share/locale/gl/LC_MESSAGES/messageviewer_application_mstnef_plugin.mo share/locale/gl/LC_MESSAGES/messageviewer_bodypartformatter_pkpass.mo share/locale/gl/LC_MESSAGES/messageviewer_semantic_plugin.mo share/locale/gl/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/gl/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/gl/LC_MESSAGES/messageviewerconfiguresettingsplugins.mo share/locale/gl/LC_MESSAGES/messageviewerheaderplugins.mo share/locale/gl/LC_MESSAGES/messageviewerplugins.mo share/locale/gl/LC_MESSAGES/pimeventsplugin.mo share/locale/gl/LC_MESSAGES/sieveeditor_plugins.mo share/locale/gl/LC_MESSAGES/webengineurlinterceptor.mo share/locale/he/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/he/LC_MESSAGES/korganizer_plugins.mo share/locale/he/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/he/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/hi/LC_MESSAGES/korganizer_plugins.mo share/locale/hi/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/hi/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/hne/LC_MESSAGES/korganizer_plugins.mo share/locale/hne/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/hne/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/hsb/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/messageviewer_application_mstnef_plugin.mo share/locale/hu/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/hu/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/hu/LC_MESSAGES/webengineurlinterceptor.mo share/locale/ia/LC_MESSAGES/cryptopageplugin.mo share/locale/ia/LC_MESSAGES/customtoolsplugin.mo share/locale/ia/LC_MESSAGES/importwizard_plugins.mo share/locale/ia/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/ia/LC_MESSAGES/kaddressbook_plugins.mo share/locale/ia/LC_MESSAGES/kmail_checkbeforedeleting_plugins.mo share/locale/ia/LC_MESSAGES/kmail_editor_plugins.mo share/locale/ia/LC_MESSAGES/kmail_editorconvertertext_plugins.mo share/locale/ia/LC_MESSAGES/kmail_editorgrammar_plugins.mo share/locale/ia/LC_MESSAGES/kmail_editorinit_plugins.mo share/locale/ia/LC_MESSAGES/kmail_editorsendcheck_plugins.mo share/locale/ia/LC_MESSAGES/kmail_plugins.mo share/locale/ia/LC_MESSAGES/kmailtransport_plugins.mo share/locale/ia/LC_MESSAGES/korganizer_plugins.mo share/locale/ia/LC_MESSAGES/messageviewer_application_gnupgwks_plugin.mo share/locale/ia/LC_MESSAGES/messageviewer_application_mstnef_plugin.mo share/locale/ia/LC_MESSAGES/messageviewer_bodypartformatter_pkpass.mo share/locale/ia/LC_MESSAGES/messageviewer_semantic_plugin.mo share/locale/ia/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/ia/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/ia/LC_MESSAGES/messageviewerconfiguresettingsplugins.mo share/locale/ia/LC_MESSAGES/messageviewerheaderplugins.mo share/locale/ia/LC_MESSAGES/messageviewerplugins.mo share/locale/ia/LC_MESSAGES/pimeventsplugin.mo share/locale/ia/LC_MESSAGES/sieveeditor_plugins.mo share/locale/ia/LC_MESSAGES/webengineurlinterceptor.mo share/locale/is/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/is/LC_MESSAGES/korganizer_plugins.mo share/locale/is/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/is/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/it/LC_MESSAGES/cryptopageplugin.mo share/locale/it/LC_MESSAGES/customtoolsplugin.mo share/locale/it/LC_MESSAGES/importwizard_plugins.mo share/locale/it/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/it/LC_MESSAGES/kaddressbook_plugins.mo share/locale/it/LC_MESSAGES/kmail_checkbeforedeleting_plugins.mo share/locale/it/LC_MESSAGES/kmail_editor_plugins.mo share/locale/it/LC_MESSAGES/kmail_editorconvertertext_plugins.mo share/locale/it/LC_MESSAGES/kmail_editorgrammar_plugins.mo share/locale/it/LC_MESSAGES/kmail_editorinit_plugins.mo share/locale/it/LC_MESSAGES/kmail_editorsendcheck_plugins.mo share/locale/it/LC_MESSAGES/kmail_plugins.mo share/locale/it/LC_MESSAGES/kmailtransport_plugins.mo share/locale/it/LC_MESSAGES/korganizer_plugins.mo share/locale/it/LC_MESSAGES/messageviewer_application_gnupgwks_plugin.mo share/locale/it/LC_MESSAGES/messageviewer_application_mstnef_plugin.mo share/locale/it/LC_MESSAGES/messageviewer_bodypartformatter_pkpass.mo share/locale/it/LC_MESSAGES/messageviewer_semantic_plugin.mo share/locale/it/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/it/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/it/LC_MESSAGES/messageviewerconfiguresettingsplugins.mo share/locale/it/LC_MESSAGES/messageviewerheaderplugins.mo share/locale/it/LC_MESSAGES/messageviewerplugins.mo share/locale/it/LC_MESSAGES/pimeventsplugin.mo share/locale/it/LC_MESSAGES/sieveeditor_plugins.mo share/locale/it/LC_MESSAGES/webengineurlinterceptor.mo share/locale/ja/LC_MESSAGES/cryptopageplugin.mo share/locale/ja/LC_MESSAGES/customtoolsplugin.mo share/locale/ja/LC_MESSAGES/importwizard_plugins.mo share/locale/ja/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/ja/LC_MESSAGES/kaddressbook_plugins.mo share/locale/ja/LC_MESSAGES/kmail_checkbeforedeleting_plugins.mo share/locale/ja/LC_MESSAGES/kmail_editor_plugins.mo share/locale/ja/LC_MESSAGES/kmail_editorconvertertext_plugins.mo share/locale/ja/LC_MESSAGES/kmail_editorgrammar_plugins.mo share/locale/ja/LC_MESSAGES/kmail_editorinit_plugins.mo share/locale/ja/LC_MESSAGES/kmail_editorsendcheck_plugins.mo share/locale/ja/LC_MESSAGES/kmail_plugins.mo share/locale/ja/LC_MESSAGES/kmailtransport_plugins.mo share/locale/ja/LC_MESSAGES/korganizer_plugins.mo share/locale/ja/LC_MESSAGES/messageviewer_application_gnupgwks_plugin.mo share/locale/ja/LC_MESSAGES/messageviewer_application_mstnef_plugin.mo share/locale/ja/LC_MESSAGES/messageviewer_bodypartformatter_pkpass.mo share/locale/ja/LC_MESSAGES/messageviewer_semantic_plugin.mo share/locale/ja/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/ja/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/ja/LC_MESSAGES/messageviewerconfiguresettingsplugins.mo share/locale/ja/LC_MESSAGES/messageviewerheaderplugins.mo share/locale/ja/LC_MESSAGES/messageviewerplugins.mo share/locale/ja/LC_MESSAGES/pimeventsplugin.mo share/locale/ja/LC_MESSAGES/sieveeditor_plugins.mo share/locale/ja/LC_MESSAGES/webengineurlinterceptor.mo share/locale/ka/LC_MESSAGES/cryptopageplugin.mo share/locale/ka/LC_MESSAGES/customtoolsplugin.mo share/locale/ka/LC_MESSAGES/importwizard_plugins.mo share/locale/ka/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/ka/LC_MESSAGES/kaddressbook_plugins.mo share/locale/ka/LC_MESSAGES/kmail_checkbeforedeleting_plugins.mo share/locale/ka/LC_MESSAGES/kmail_editor_plugins.mo share/locale/ka/LC_MESSAGES/kmail_editorconvertertext_plugins.mo share/locale/ka/LC_MESSAGES/kmail_editorgrammar_plugins.mo share/locale/ka/LC_MESSAGES/kmail_editorinit_plugins.mo share/locale/ka/LC_MESSAGES/kmail_editorsendcheck_plugins.mo share/locale/ka/LC_MESSAGES/kmail_plugins.mo share/locale/ka/LC_MESSAGES/kmailtransport_plugins.mo share/locale/ka/LC_MESSAGES/korganizer_plugins.mo share/locale/ka/LC_MESSAGES/messageviewer_application_gnupgwks_plugin.mo share/locale/ka/LC_MESSAGES/messageviewer_application_mstnef_plugin.mo share/locale/ka/LC_MESSAGES/messageviewer_bodypartformatter_pkpass.mo share/locale/ka/LC_MESSAGES/messageviewer_semantic_plugin.mo share/locale/ka/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/ka/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/ka/LC_MESSAGES/messageviewerconfiguresettingsplugins.mo share/locale/ka/LC_MESSAGES/messageviewerheaderplugins.mo share/locale/ka/LC_MESSAGES/messageviewerplugins.mo share/locale/ka/LC_MESSAGES/pimeventsplugin.mo share/locale/ka/LC_MESSAGES/sieveeditor_plugins.mo share/locale/ka/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/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/messageviewer_text_calendar_plugin.mo share/locale/km/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/ko/LC_MESSAGES/cryptopageplugin.mo share/locale/ko/LC_MESSAGES/customtoolsplugin.mo share/locale/ko/LC_MESSAGES/importwizard_plugins.mo share/locale/ko/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/ko/LC_MESSAGES/kaddressbook_plugins.mo share/locale/ko/LC_MESSAGES/kmail_checkbeforedeleting_plugins.mo share/locale/ko/LC_MESSAGES/kmail_editor_plugins.mo share/locale/ko/LC_MESSAGES/kmail_editorconvertertext_plugins.mo share/locale/ko/LC_MESSAGES/kmail_editorgrammar_plugins.mo share/locale/ko/LC_MESSAGES/kmail_editorinit_plugins.mo share/locale/ko/LC_MESSAGES/kmail_editorsendcheck_plugins.mo share/locale/ko/LC_MESSAGES/kmail_plugins.mo share/locale/ko/LC_MESSAGES/kmailtransport_plugins.mo share/locale/ko/LC_MESSAGES/korganizer_plugins.mo share/locale/ko/LC_MESSAGES/messageviewer_application_gnupgwks_plugin.mo share/locale/ko/LC_MESSAGES/messageviewer_application_mstnef_plugin.mo share/locale/ko/LC_MESSAGES/messageviewer_bodypartformatter_pkpass.mo share/locale/ko/LC_MESSAGES/messageviewer_semantic_plugin.mo share/locale/ko/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/ko/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/ko/LC_MESSAGES/messageviewerconfiguresettingsplugins.mo share/locale/ko/LC_MESSAGES/messageviewerheaderplugins.mo share/locale/ko/LC_MESSAGES/messageviewerplugins.mo share/locale/ko/LC_MESSAGES/pimeventsplugin.mo share/locale/ko/LC_MESSAGES/sieveeditor_plugins.mo share/locale/ko/LC_MESSAGES/webengineurlinterceptor.mo share/locale/lt/LC_MESSAGES/cryptopageplugin.mo share/locale/lt/LC_MESSAGES/customtoolsplugin.mo share/locale/lt/LC_MESSAGES/importwizard_plugins.mo share/locale/lt/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/lt/LC_MESSAGES/kaddressbook_plugins.mo +share/locale/lt/LC_MESSAGES/kmail_checkbeforedeleting_plugins.mo share/locale/lt/LC_MESSAGES/kmail_editor_plugins.mo share/locale/lt/LC_MESSAGES/kmail_editorconvertertext_plugins.mo share/locale/lt/LC_MESSAGES/kmail_editorgrammar_plugins.mo share/locale/lt/LC_MESSAGES/kmail_editorinit_plugins.mo share/locale/lt/LC_MESSAGES/kmail_editorsendcheck_plugins.mo share/locale/lt/LC_MESSAGES/kmail_plugins.mo share/locale/lt/LC_MESSAGES/kmailtransport_plugins.mo share/locale/lt/LC_MESSAGES/korganizer_plugins.mo share/locale/lt/LC_MESSAGES/messageviewer_application_gnupgwks_plugin.mo share/locale/lt/LC_MESSAGES/messageviewer_application_mstnef_plugin.mo share/locale/lt/LC_MESSAGES/messageviewer_bodypartformatter_pkpass.mo share/locale/lt/LC_MESSAGES/messageviewer_semantic_plugin.mo share/locale/lt/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/lt/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/lt/LC_MESSAGES/messageviewerconfiguresettingsplugins.mo share/locale/lt/LC_MESSAGES/messageviewerheaderplugins.mo share/locale/lt/LC_MESSAGES/messageviewerplugins.mo share/locale/lt/LC_MESSAGES/pimeventsplugin.mo share/locale/lt/LC_MESSAGES/sieveeditor_plugins.mo share/locale/lt/LC_MESSAGES/webengineurlinterceptor.mo share/locale/lv/LC_MESSAGES/cryptopageplugin.mo share/locale/lv/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/lv/LC_MESSAGES/korganizer_plugins.mo share/locale/lv/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/lv/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/mai/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/mai/LC_MESSAGES/korganizer_plugins.mo share/locale/mk/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/mk/LC_MESSAGES/korganizer_plugins.mo share/locale/mk/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/mk/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/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/ms/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/ms/LC_MESSAGES/korganizer_plugins.mo share/locale/ms/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/ms/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/nb/LC_MESSAGES/cryptopageplugin.mo share/locale/nb/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/nb/LC_MESSAGES/korganizer_plugins.mo share/locale/nb/LC_MESSAGES/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/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/ne/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/ne/LC_MESSAGES/korganizer_plugins.mo share/locale/ne/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/ne/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/nl/LC_MESSAGES/cryptopageplugin.mo share/locale/nl/LC_MESSAGES/customtoolsplugin.mo share/locale/nl/LC_MESSAGES/importwizard_plugins.mo share/locale/nl/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/nl/LC_MESSAGES/kaddressbook_plugins.mo share/locale/nl/LC_MESSAGES/kmail_checkbeforedeleting_plugins.mo share/locale/nl/LC_MESSAGES/kmail_editor_plugins.mo share/locale/nl/LC_MESSAGES/kmail_editorconvertertext_plugins.mo share/locale/nl/LC_MESSAGES/kmail_editorgrammar_plugins.mo share/locale/nl/LC_MESSAGES/kmail_editorinit_plugins.mo share/locale/nl/LC_MESSAGES/kmail_editorsendcheck_plugins.mo share/locale/nl/LC_MESSAGES/kmail_plugins.mo share/locale/nl/LC_MESSAGES/kmailtransport_plugins.mo share/locale/nl/LC_MESSAGES/korganizer_plugins.mo share/locale/nl/LC_MESSAGES/messageviewer_application_gnupgwks_plugin.mo share/locale/nl/LC_MESSAGES/messageviewer_application_mstnef_plugin.mo share/locale/nl/LC_MESSAGES/messageviewer_bodypartformatter_pkpass.mo share/locale/nl/LC_MESSAGES/messageviewer_semantic_plugin.mo share/locale/nl/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/nl/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/nl/LC_MESSAGES/messageviewerconfiguresettingsplugins.mo share/locale/nl/LC_MESSAGES/messageviewerheaderplugins.mo share/locale/nl/LC_MESSAGES/messageviewerplugins.mo share/locale/nl/LC_MESSAGES/pimeventsplugin.mo share/locale/nl/LC_MESSAGES/sieveeditor_plugins.mo share/locale/nl/LC_MESSAGES/webengineurlinterceptor.mo share/locale/nn/LC_MESSAGES/cryptopageplugin.mo share/locale/nn/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/nn/LC_MESSAGES/korganizer_plugins.mo share/locale/nn/LC_MESSAGES/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/messageviewer_text_calendar_plugin.mo share/locale/pa/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/pl/LC_MESSAGES/cryptopageplugin.mo share/locale/pl/LC_MESSAGES/customtoolsplugin.mo share/locale/pl/LC_MESSAGES/importwizard_plugins.mo share/locale/pl/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/pl/LC_MESSAGES/kaddressbook_plugins.mo share/locale/pl/LC_MESSAGES/kmail_checkbeforedeleting_plugins.mo share/locale/pl/LC_MESSAGES/kmail_editor_plugins.mo share/locale/pl/LC_MESSAGES/kmail_editorconvertertext_plugins.mo share/locale/pl/LC_MESSAGES/kmail_editorgrammar_plugins.mo share/locale/pl/LC_MESSAGES/kmail_editorinit_plugins.mo share/locale/pl/LC_MESSAGES/kmail_editorsendcheck_plugins.mo share/locale/pl/LC_MESSAGES/kmail_plugins.mo share/locale/pl/LC_MESSAGES/kmailtransport_plugins.mo share/locale/pl/LC_MESSAGES/korganizer_plugins.mo share/locale/pl/LC_MESSAGES/messageviewer_application_gnupgwks_plugin.mo share/locale/pl/LC_MESSAGES/messageviewer_application_mstnef_plugin.mo share/locale/pl/LC_MESSAGES/messageviewer_bodypartformatter_pkpass.mo share/locale/pl/LC_MESSAGES/messageviewer_semantic_plugin.mo share/locale/pl/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/pl/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/pl/LC_MESSAGES/messageviewerconfiguresettingsplugins.mo share/locale/pl/LC_MESSAGES/messageviewerheaderplugins.mo share/locale/pl/LC_MESSAGES/messageviewerplugins.mo share/locale/pl/LC_MESSAGES/pimeventsplugin.mo share/locale/pl/LC_MESSAGES/sieveeditor_plugins.mo share/locale/pl/LC_MESSAGES/webengineurlinterceptor.mo share/locale/pt/LC_MESSAGES/cryptopageplugin.mo share/locale/pt/LC_MESSAGES/customtoolsplugin.mo share/locale/pt/LC_MESSAGES/importwizard_plugins.mo share/locale/pt/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/pt/LC_MESSAGES/kaddressbook_plugins.mo share/locale/pt/LC_MESSAGES/kmail_checkbeforedeleting_plugins.mo share/locale/pt/LC_MESSAGES/kmail_editor_plugins.mo share/locale/pt/LC_MESSAGES/kmail_editorconvertertext_plugins.mo share/locale/pt/LC_MESSAGES/kmail_editorgrammar_plugins.mo share/locale/pt/LC_MESSAGES/kmail_editorinit_plugins.mo share/locale/pt/LC_MESSAGES/kmail_editorsendcheck_plugins.mo share/locale/pt/LC_MESSAGES/kmail_plugins.mo share/locale/pt/LC_MESSAGES/kmailtransport_plugins.mo share/locale/pt/LC_MESSAGES/korganizer_plugins.mo share/locale/pt/LC_MESSAGES/messageviewer_application_gnupgwks_plugin.mo share/locale/pt/LC_MESSAGES/messageviewer_application_mstnef_plugin.mo share/locale/pt/LC_MESSAGES/messageviewer_bodypartformatter_pkpass.mo share/locale/pt/LC_MESSAGES/messageviewer_semantic_plugin.mo share/locale/pt/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/pt/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/pt/LC_MESSAGES/messageviewerconfiguresettingsplugins.mo share/locale/pt/LC_MESSAGES/messageviewerheaderplugins.mo share/locale/pt/LC_MESSAGES/messageviewerplugins.mo share/locale/pt/LC_MESSAGES/pimeventsplugin.mo share/locale/pt/LC_MESSAGES/sieveeditor_plugins.mo share/locale/pt/LC_MESSAGES/webengineurlinterceptor.mo share/locale/pt_BR/LC_MESSAGES/cryptopageplugin.mo share/locale/pt_BR/LC_MESSAGES/customtoolsplugin.mo share/locale/pt_BR/LC_MESSAGES/importwizard_plugins.mo share/locale/pt_BR/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/pt_BR/LC_MESSAGES/kaddressbook_plugins.mo share/locale/pt_BR/LC_MESSAGES/kmail_checkbeforedeleting_plugins.mo share/locale/pt_BR/LC_MESSAGES/kmail_editor_plugins.mo share/locale/pt_BR/LC_MESSAGES/kmail_editorconvertertext_plugins.mo share/locale/pt_BR/LC_MESSAGES/kmail_editorgrammar_plugins.mo share/locale/pt_BR/LC_MESSAGES/kmail_editorinit_plugins.mo share/locale/pt_BR/LC_MESSAGES/kmail_editorsendcheck_plugins.mo share/locale/pt_BR/LC_MESSAGES/kmail_plugins.mo share/locale/pt_BR/LC_MESSAGES/kmailtransport_plugins.mo share/locale/pt_BR/LC_MESSAGES/korganizer_plugins.mo share/locale/pt_BR/LC_MESSAGES/messageviewer_application_gnupgwks_plugin.mo share/locale/pt_BR/LC_MESSAGES/messageviewer_application_mstnef_plugin.mo share/locale/pt_BR/LC_MESSAGES/messageviewer_bodypartformatter_pkpass.mo share/locale/pt_BR/LC_MESSAGES/messageviewer_semantic_plugin.mo share/locale/pt_BR/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/pt_BR/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/pt_BR/LC_MESSAGES/messageviewerconfiguresettingsplugins.mo share/locale/pt_BR/LC_MESSAGES/messageviewerheaderplugins.mo share/locale/pt_BR/LC_MESSAGES/messageviewerplugins.mo share/locale/pt_BR/LC_MESSAGES/pimeventsplugin.mo share/locale/pt_BR/LC_MESSAGES/sieveeditor_plugins.mo share/locale/pt_BR/LC_MESSAGES/webengineurlinterceptor.mo share/locale/ro/LC_MESSAGES/cryptopageplugin.mo share/locale/ro/LC_MESSAGES/customtoolsplugin.mo share/locale/ro/LC_MESSAGES/importwizard_plugins.mo share/locale/ro/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/ro/LC_MESSAGES/korganizer_plugins.mo share/locale/ro/LC_MESSAGES/messageviewer_application_mstnef_plugin.mo share/locale/ro/LC_MESSAGES/messageviewer_bodypartformatter_pkpass.mo share/locale/ro/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/ro/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/ru/LC_MESSAGES/cryptopageplugin.mo share/locale/ru/LC_MESSAGES/customtoolsplugin.mo share/locale/ru/LC_MESSAGES/importwizard_plugins.mo share/locale/ru/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/ru/LC_MESSAGES/kaddressbook_plugins.mo share/locale/ru/LC_MESSAGES/kmail_checkbeforedeleting_plugins.mo share/locale/ru/LC_MESSAGES/kmail_editor_plugins.mo share/locale/ru/LC_MESSAGES/kmail_editorconvertertext_plugins.mo share/locale/ru/LC_MESSAGES/kmail_editorgrammar_plugins.mo share/locale/ru/LC_MESSAGES/kmail_editorinit_plugins.mo share/locale/ru/LC_MESSAGES/kmail_editorsendcheck_plugins.mo share/locale/ru/LC_MESSAGES/kmail_plugins.mo share/locale/ru/LC_MESSAGES/kmailtransport_plugins.mo share/locale/ru/LC_MESSAGES/korganizer_plugins.mo share/locale/ru/LC_MESSAGES/messageviewer_application_gnupgwks_plugin.mo share/locale/ru/LC_MESSAGES/messageviewer_application_mstnef_plugin.mo share/locale/ru/LC_MESSAGES/messageviewer_bodypartformatter_pkpass.mo share/locale/ru/LC_MESSAGES/messageviewer_semantic_plugin.mo share/locale/ru/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/ru/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/ru/LC_MESSAGES/messageviewerconfiguresettingsplugins.mo share/locale/ru/LC_MESSAGES/messageviewerheaderplugins.mo share/locale/ru/LC_MESSAGES/messageviewerplugins.mo share/locale/ru/LC_MESSAGES/pimeventsplugin.mo share/locale/ru/LC_MESSAGES/sieveeditor_plugins.mo share/locale/ru/LC_MESSAGES/webengineurlinterceptor.mo share/locale/se/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/se/LC_MESSAGES/korganizer_plugins.mo share/locale/se/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/se/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/sk/LC_MESSAGES/cryptopageplugin.mo share/locale/sk/LC_MESSAGES/customtoolsplugin.mo share/locale/sk/LC_MESSAGES/importwizard_plugins.mo share/locale/sk/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/sk/LC_MESSAGES/kaddressbook_plugins.mo share/locale/sk/LC_MESSAGES/kmail_checkbeforedeleting_plugins.mo share/locale/sk/LC_MESSAGES/kmail_editor_plugins.mo share/locale/sk/LC_MESSAGES/kmail_editorconvertertext_plugins.mo share/locale/sk/LC_MESSAGES/kmail_editorgrammar_plugins.mo share/locale/sk/LC_MESSAGES/kmail_editorinit_plugins.mo share/locale/sk/LC_MESSAGES/kmail_editorsendcheck_plugins.mo share/locale/sk/LC_MESSAGES/kmail_plugins.mo share/locale/sk/LC_MESSAGES/kmailtransport_plugins.mo share/locale/sk/LC_MESSAGES/korganizer_plugins.mo share/locale/sk/LC_MESSAGES/messageviewer_application_gnupgwks_plugin.mo share/locale/sk/LC_MESSAGES/messageviewer_application_mstnef_plugin.mo share/locale/sk/LC_MESSAGES/messageviewer_bodypartformatter_pkpass.mo share/locale/sk/LC_MESSAGES/messageviewer_semantic_plugin.mo share/locale/sk/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/sk/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/sk/LC_MESSAGES/messageviewerconfiguresettingsplugins.mo share/locale/sk/LC_MESSAGES/messageviewerheaderplugins.mo share/locale/sk/LC_MESSAGES/messageviewerplugins.mo share/locale/sk/LC_MESSAGES/pimeventsplugin.mo share/locale/sk/LC_MESSAGES/sieveeditor_plugins.mo share/locale/sk/LC_MESSAGES/webengineurlinterceptor.mo share/locale/sl/LC_MESSAGES/cryptopageplugin.mo share/locale/sl/LC_MESSAGES/customtoolsplugin.mo share/locale/sl/LC_MESSAGES/importwizard_plugins.mo share/locale/sl/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/sl/LC_MESSAGES/kaddressbook_plugins.mo share/locale/sl/LC_MESSAGES/kmail_checkbeforedeleting_plugins.mo share/locale/sl/LC_MESSAGES/kmail_editor_plugins.mo share/locale/sl/LC_MESSAGES/kmail_editorconvertertext_plugins.mo share/locale/sl/LC_MESSAGES/kmail_editorgrammar_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/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_semantic_plugin.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/messageviewerconfiguresettingsplugins.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/sq/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/sq/LC_MESSAGES/korganizer_plugins.mo share/locale/sr/LC_MESSAGES/cryptopageplugin.mo share/locale/sr/LC_MESSAGES/customtoolsplugin.mo share/locale/sr/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/sr/LC_MESSAGES/kaddressbook_plugins.mo share/locale/sr/LC_MESSAGES/kmail_editor_plugins.mo share/locale/sr/LC_MESSAGES/kmail_editorinit_plugins.mo share/locale/sr/LC_MESSAGES/kmail_editorsendcheck_plugins.mo share/locale/sr/LC_MESSAGES/kmail_plugins.mo share/locale/sr/LC_MESSAGES/kmailtransport_plugins.mo share/locale/sr/LC_MESSAGES/korganizer_plugins.mo share/locale/sr/LC_MESSAGES/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/sr@ijekavian/LC_MESSAGES/cryptopageplugin.mo share/locale/sr@ijekavian/LC_MESSAGES/customtoolsplugin.mo share/locale/sr@ijekavian/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/sr@ijekavian/LC_MESSAGES/kaddressbook_plugins.mo share/locale/sr@ijekavian/LC_MESSAGES/kmail_editor_plugins.mo share/locale/sr@ijekavian/LC_MESSAGES/kmail_editorinit_plugins.mo share/locale/sr@ijekavian/LC_MESSAGES/kmail_editorsendcheck_plugins.mo share/locale/sr@ijekavian/LC_MESSAGES/kmail_plugins.mo share/locale/sr@ijekavian/LC_MESSAGES/kmailtransport_plugins.mo share/locale/sr@ijekavian/LC_MESSAGES/korganizer_plugins.mo share/locale/sr@ijekavian/LC_MESSAGES/messageviewer_application_gnupgwks_plugin.mo share/locale/sr@ijekavian/LC_MESSAGES/messageviewer_application_mstnef_plugin.mo share/locale/sr@ijekavian/LC_MESSAGES/messageviewer_bodypartformatter_pkpass.mo share/locale/sr@ijekavian/LC_MESSAGES/messageviewer_semantic_plugin.mo share/locale/sr@ijekavian/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/sr@ijekavian/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/sr@ijekavian/LC_MESSAGES/messageviewerheaderplugins.mo share/locale/sr@ijekavian/LC_MESSAGES/messageviewerplugins.mo share/locale/sr@ijekavian/LC_MESSAGES/pimeventsplugin.mo share/locale/sr@ijekavian/LC_MESSAGES/sieveeditor_plugins.mo share/locale/sr@ijekavian/LC_MESSAGES/webengineurlinterceptor.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/cryptopageplugin.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/customtoolsplugin.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kaddressbook_plugins.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kmail_editor_plugins.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kmail_editorinit_plugins.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kmail_editorsendcheck_plugins.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kmail_plugins.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kmailtransport_plugins.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/korganizer_plugins.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/messageviewer_application_gnupgwks_plugin.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/messageviewer_application_mstnef_plugin.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/messageviewer_bodypartformatter_pkpass.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/messageviewer_semantic_plugin.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/messageviewerheaderplugins.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/messageviewerplugins.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/pimeventsplugin.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/sieveeditor_plugins.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/webengineurlinterceptor.mo share/locale/sr@latin/LC_MESSAGES/cryptopageplugin.mo share/locale/sr@latin/LC_MESSAGES/customtoolsplugin.mo share/locale/sr@latin/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/sr@latin/LC_MESSAGES/kaddressbook_plugins.mo share/locale/sr@latin/LC_MESSAGES/kmail_editor_plugins.mo share/locale/sr@latin/LC_MESSAGES/kmail_editorinit_plugins.mo share/locale/sr@latin/LC_MESSAGES/kmail_editorsendcheck_plugins.mo share/locale/sr@latin/LC_MESSAGES/kmail_plugins.mo share/locale/sr@latin/LC_MESSAGES/kmailtransport_plugins.mo share/locale/sr@latin/LC_MESSAGES/korganizer_plugins.mo share/locale/sr@latin/LC_MESSAGES/messageviewer_application_gnupgwks_plugin.mo share/locale/sr@latin/LC_MESSAGES/messageviewer_application_mstnef_plugin.mo share/locale/sr@latin/LC_MESSAGES/messageviewer_bodypartformatter_pkpass.mo share/locale/sr@latin/LC_MESSAGES/messageviewer_semantic_plugin.mo share/locale/sr@latin/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/sr@latin/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/sr@latin/LC_MESSAGES/messageviewerheaderplugins.mo share/locale/sr@latin/LC_MESSAGES/messageviewerplugins.mo share/locale/sr@latin/LC_MESSAGES/pimeventsplugin.mo share/locale/sr@latin/LC_MESSAGES/sieveeditor_plugins.mo share/locale/sr@latin/LC_MESSAGES/webengineurlinterceptor.mo share/locale/sv/LC_MESSAGES/cryptopageplugin.mo share/locale/sv/LC_MESSAGES/customtoolsplugin.mo share/locale/sv/LC_MESSAGES/importwizard_plugins.mo share/locale/sv/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/sv/LC_MESSAGES/kaddressbook_plugins.mo share/locale/sv/LC_MESSAGES/kmail_checkbeforedeleting_plugins.mo share/locale/sv/LC_MESSAGES/kmail_editor_plugins.mo share/locale/sv/LC_MESSAGES/kmail_editorconvertertext_plugins.mo share/locale/sv/LC_MESSAGES/kmail_editorgrammar_plugins.mo share/locale/sv/LC_MESSAGES/kmail_editorinit_plugins.mo share/locale/sv/LC_MESSAGES/kmail_editorsendcheck_plugins.mo share/locale/sv/LC_MESSAGES/kmail_plugins.mo share/locale/sv/LC_MESSAGES/kmailtransport_plugins.mo share/locale/sv/LC_MESSAGES/korganizer_plugins.mo share/locale/sv/LC_MESSAGES/messageviewer_application_gnupgwks_plugin.mo share/locale/sv/LC_MESSAGES/messageviewer_application_mstnef_plugin.mo share/locale/sv/LC_MESSAGES/messageviewer_bodypartformatter_pkpass.mo share/locale/sv/LC_MESSAGES/messageviewer_semantic_plugin.mo share/locale/sv/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/sv/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/sv/LC_MESSAGES/messageviewerconfiguresettingsplugins.mo share/locale/sv/LC_MESSAGES/messageviewerheaderplugins.mo share/locale/sv/LC_MESSAGES/messageviewerplugins.mo share/locale/sv/LC_MESSAGES/pimeventsplugin.mo share/locale/sv/LC_MESSAGES/sieveeditor_plugins.mo share/locale/sv/LC_MESSAGES/webengineurlinterceptor.mo share/locale/ta/LC_MESSAGES/importwizard_plugins.mo share/locale/ta/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/ta/LC_MESSAGES/korganizer_plugins.mo share/locale/ta/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/ta/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/ta/LC_MESSAGES/pimeventsplugin.mo share/locale/tg/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/tg/LC_MESSAGES/korganizer_plugins.mo share/locale/tg/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/tg/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/th/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/th/LC_MESSAGES/korganizer_plugins.mo share/locale/th/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/th/LC_MESSAGES/messageviewer_text_vcard_plugin.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_checkbeforedeleting_plugins.mo share/locale/tr/LC_MESSAGES/kmail_editor_plugins.mo share/locale/tr/LC_MESSAGES/kmail_editorconvertertext_plugins.mo share/locale/tr/LC_MESSAGES/kmail_editorgrammar_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/messageviewer_application_gnupgwks_plugin.mo share/locale/tr/LC_MESSAGES/messageviewer_application_mstnef_plugin.mo share/locale/tr/LC_MESSAGES/messageviewer_bodypartformatter_pkpass.mo share/locale/tr/LC_MESSAGES/messageviewer_semantic_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/messageviewerconfiguresettingsplugins.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/tr/LC_MESSAGES/webengineurlinterceptor.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/messageviewer_application_mstnef_plugin.mo share/locale/ug/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/ug/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/uk/LC_MESSAGES/cryptopageplugin.mo share/locale/uk/LC_MESSAGES/customtoolsplugin.mo share/locale/uk/LC_MESSAGES/importwizard_plugins.mo share/locale/uk/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/uk/LC_MESSAGES/kaddressbook_plugins.mo share/locale/uk/LC_MESSAGES/kmail_checkbeforedeleting_plugins.mo share/locale/uk/LC_MESSAGES/kmail_editor_plugins.mo share/locale/uk/LC_MESSAGES/kmail_editorconvertertext_plugins.mo share/locale/uk/LC_MESSAGES/kmail_editorgrammar_plugins.mo share/locale/uk/LC_MESSAGES/kmail_editorinit_plugins.mo share/locale/uk/LC_MESSAGES/kmail_editorsendcheck_plugins.mo share/locale/uk/LC_MESSAGES/kmail_plugins.mo share/locale/uk/LC_MESSAGES/kmailtransport_plugins.mo share/locale/uk/LC_MESSAGES/korganizer_plugins.mo share/locale/uk/LC_MESSAGES/messageviewer_application_gnupgwks_plugin.mo share/locale/uk/LC_MESSAGES/messageviewer_application_mstnef_plugin.mo share/locale/uk/LC_MESSAGES/messageviewer_bodypartformatter_pkpass.mo share/locale/uk/LC_MESSAGES/messageviewer_semantic_plugin.mo share/locale/uk/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/uk/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/uk/LC_MESSAGES/messageviewerconfiguresettingsplugins.mo share/locale/uk/LC_MESSAGES/messageviewerheaderplugins.mo share/locale/uk/LC_MESSAGES/messageviewerplugins.mo share/locale/uk/LC_MESSAGES/pimeventsplugin.mo share/locale/uk/LC_MESSAGES/sieveeditor_plugins.mo share/locale/uk/LC_MESSAGES/webengineurlinterceptor.mo share/locale/uz/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/uz/LC_MESSAGES/korganizer_plugins.mo share/locale/uz/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/uz/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/uz@cyrillic/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/uz@cyrillic/LC_MESSAGES/korganizer_plugins.mo share/locale/uz@cyrillic/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/uz@cyrillic/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/vi/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/wa/LC_MESSAGES/korganizer_plugins.mo share/locale/xh/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/xh/LC_MESSAGES/korganizer_plugins.mo share/locale/zh_CN/LC_MESSAGES/cryptopageplugin.mo share/locale/zh_CN/LC_MESSAGES/customtoolsplugin.mo share/locale/zh_CN/LC_MESSAGES/importwizard_plugins.mo share/locale/zh_CN/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/zh_CN/LC_MESSAGES/kaddressbook_plugins.mo share/locale/zh_CN/LC_MESSAGES/kmail_checkbeforedeleting_plugins.mo share/locale/zh_CN/LC_MESSAGES/kmail_editor_plugins.mo share/locale/zh_CN/LC_MESSAGES/kmail_editorconvertertext_plugins.mo share/locale/zh_CN/LC_MESSAGES/kmail_editorgrammar_plugins.mo share/locale/zh_CN/LC_MESSAGES/kmail_editorinit_plugins.mo share/locale/zh_CN/LC_MESSAGES/kmail_editorsendcheck_plugins.mo share/locale/zh_CN/LC_MESSAGES/kmail_plugins.mo share/locale/zh_CN/LC_MESSAGES/kmailtransport_plugins.mo share/locale/zh_CN/LC_MESSAGES/korganizer_plugins.mo share/locale/zh_CN/LC_MESSAGES/messageviewer_application_gnupgwks_plugin.mo share/locale/zh_CN/LC_MESSAGES/messageviewer_application_mstnef_plugin.mo share/locale/zh_CN/LC_MESSAGES/messageviewer_bodypartformatter_pkpass.mo share/locale/zh_CN/LC_MESSAGES/messageviewer_semantic_plugin.mo share/locale/zh_CN/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/zh_CN/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/zh_CN/LC_MESSAGES/messageviewerconfiguresettingsplugins.mo share/locale/zh_CN/LC_MESSAGES/messageviewerheaderplugins.mo share/locale/zh_CN/LC_MESSAGES/messageviewerplugins.mo share/locale/zh_CN/LC_MESSAGES/pimeventsplugin.mo share/locale/zh_CN/LC_MESSAGES/sieveeditor_plugins.mo share/locale/zh_CN/LC_MESSAGES/webengineurlinterceptor.mo share/locale/zh_TW/LC_MESSAGES/cryptopageplugin.mo share/locale/zh_TW/LC_MESSAGES/customtoolsplugin.mo share/locale/zh_TW/LC_MESSAGES/importwizard_plugins.mo share/locale/zh_TW/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/zh_TW/LC_MESSAGES/kaddressbook_plugins.mo share/locale/zh_TW/LC_MESSAGES/kmail_checkbeforedeleting_plugins.mo share/locale/zh_TW/LC_MESSAGES/kmail_editor_plugins.mo share/locale/zh_TW/LC_MESSAGES/kmail_editorconvertertext_plugins.mo share/locale/zh_TW/LC_MESSAGES/kmail_editorgrammar_plugins.mo share/locale/zh_TW/LC_MESSAGES/kmail_editorinit_plugins.mo share/locale/zh_TW/LC_MESSAGES/kmail_editorsendcheck_plugins.mo share/locale/zh_TW/LC_MESSAGES/kmail_plugins.mo share/locale/zh_TW/LC_MESSAGES/kmailtransport_plugins.mo share/locale/zh_TW/LC_MESSAGES/korganizer_plugins.mo share/locale/zh_TW/LC_MESSAGES/messageviewer_application_gnupgwks_plugin.mo share/locale/zh_TW/LC_MESSAGES/messageviewer_application_mstnef_plugin.mo share/locale/zh_TW/LC_MESSAGES/messageviewer_bodypartformatter_pkpass.mo share/locale/zh_TW/LC_MESSAGES/messageviewer_semantic_plugin.mo share/locale/zh_TW/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/zh_TW/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/zh_TW/LC_MESSAGES/messageviewerconfiguresettingsplugins.mo share/locale/zh_TW/LC_MESSAGES/messageviewerheaderplugins.mo share/locale/zh_TW/LC_MESSAGES/messageviewerplugins.mo share/locale/zh_TW/LC_MESSAGES/pimeventsplugin.mo share/locale/zh_TW/LC_MESSAGES/sieveeditor_plugins.mo share/locale/zh_TW/LC_MESSAGES/webengineurlinterceptor.mo share/qlogging-categories5/kdepim-addons.categories share/qlogging-categories5/kdepim-addons.renamecategories share/qtcreator/templates/kmaileditorconvertertextplugins/CMakeLists.txt share/qtcreator/templates/kmaileditorconvertertextplugins/plugin.json.impl share/qtcreator/templates/kmaileditorconvertertextplugins/plugineditor.cpp share/qtcreator/templates/kmaileditorconvertertextplugins/plugineditor.h share/qtcreator/templates/kmaileditorconvertertextplugins/plugineditorinterface.cpp share/qtcreator/templates/kmaileditorconvertertextplugins/plugineditorinterface.h share/qtcreator/templates/kmaileditorconvertertextplugins/wizard.json share/qtcreator/templates/kmaileditorplugins/CMakeLists.txt share/qtcreator/templates/kmaileditorplugins/plugin.json.impl share/qtcreator/templates/kmaileditorplugins/plugineditor.cpp share/qtcreator/templates/kmaileditorplugins/plugineditor.h share/qtcreator/templates/kmaileditorplugins/plugineditorinterface.cpp share/qtcreator/templates/kmaileditorplugins/plugineditorinterface.h share/qtcreator/templates/kmaileditorplugins/wizard.json diff --git a/deskutils/kdepim-runtime/distinfo b/deskutils/kdepim-runtime/distinfo index bbf66d3e2b42..bc268e3d29b6 100644 --- a/deskutils/kdepim-runtime/distinfo +++ b/deskutils/kdepim-runtime/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1677828327 -SHA256 (KDE/release-service/22.12.3/kdepim-runtime-22.12.3.tar.xz) = 7db07507649a94b01bf788415610ef5e3d0324442a9b474ad64d94ceecb77257 -SIZE (KDE/release-service/22.12.3/kdepim-runtime-22.12.3.tar.xz) = 1855800 +TIMESTAMP = 1681548337 +SHA256 (KDE/release-service/23.04.0/kdepim-runtime-23.04.0.tar.xz) = 6ecb39a4235155471c58971b4ad79601bd16c454183b5a435f782592c0797949 +SIZE (KDE/release-service/23.04.0/kdepim-runtime-23.04.0.tar.xz) = 1863524 diff --git a/deskutils/kdepim-runtime/pkg-plist b/deskutils/kdepim-runtime/pkg-plist index f5319c593979..5fc03d14b459 100644 --- a/deskutils/kdepim-runtime/pkg-plist +++ b/deskutils/kdepim-runtime/pkg-plist @@ -1,1844 +1,1845 @@ bin/akonadi_akonotes_resource bin/akonadi_birthdays_resource bin/akonadi_contacts_resource bin/akonadi_davgroupware_resource bin/akonadi_ews_resource bin/akonadi_ewsmta_resource bin/akonadi_google_resource bin/akonadi_ical_resource bin/akonadi_icaldir_resource bin/akonadi_imap_resource bin/akonadi_kolab_resource bin/akonadi_maildir_resource bin/akonadi_maildispatcher_agent bin/akonadi_mbox_resource bin/akonadi_migration_agent bin/akonadi_mixedmaildir_resource bin/akonadi_newmailnotifier_agent bin/akonadi_notes_resource bin/akonadi_openxchange_resource bin/akonadi_pop3_resource bin/akonadi_tomboynotes_resource bin/akonadi_vcard_resource bin/akonadi_vcarddir_resource bin/gidmigrator lib/libakonadi-filestore.so.5 lib/libakonadi-filestore.so.%%KDE_APPLICATIONS_SHLIB_VER%% lib/libakonadi-singlefileresource.so.5 lib/libakonadi-singlefileresource.so.%%KDE_APPLICATIONS_SHLIB_VER%% lib/libfolderarchivesettings.so.5 lib/libfolderarchivesettings.so.%%KDE_APPLICATIONS_SHLIB_VER%% lib/libkmindexreader.so.5 lib/libkmindexreader.so.%%KDE_APPLICATIONS_SHLIB_VER%% lib/libmaildir.so.5 lib/libmaildir.so.%%KDE_APPLICATIONS_SHLIB_VER%% %%QT_PLUGINDIR%%/kf5/kio/akonadi.so %%QT_PLUGINDIR%%/pim5/akonadi/config/akonotesconfig.so %%QT_PLUGINDIR%%/pim5/akonadi/config/birthdaysconfig.so %%QT_PLUGINDIR%%/pim5/akonadi/config/contactsconfig.so %%QT_PLUGINDIR%%/pim5/akonadi/config/icalconfig.so %%QT_PLUGINDIR%%/pim5/akonadi/config/icaldirconfig.so %%QT_PLUGINDIR%%/pim5/akonadi/config/maildirconfig.so %%QT_PLUGINDIR%%/pim5/akonadi/config/maildispatcherconfig.so %%QT_PLUGINDIR%%/pim5/akonadi/config/mboxconfig.so %%QT_PLUGINDIR%%/pim5/akonadi/config/mixedmaildirconfig.so %%QT_PLUGINDIR%%/pim5/akonadi/config/newmailnotifierconfig.so %%QT_PLUGINDIR%%/pim5/akonadi/config/notesconfig.so %%QT_PLUGINDIR%%/pim5/akonadi/config/openxchangeconfig.so %%QT_PLUGINDIR%%/pim5/akonadi/config/pop3config.so %%QT_PLUGINDIR%%/pim5/akonadi/config/tomboynotesconfig.so %%QT_PLUGINDIR%%/pim5/akonadi/config/vcardconfig.so %%QT_PLUGINDIR%%/pim5/akonadi/config/vcarddirconfig.so %%QT_PLUGINDIR%%/pim5/kcms/kaddressbook/kcm_ldap.so share/akonadi/accountwizard/contacts/contactswizard.desktop share/akonadi/accountwizard/contacts/contactswizard.es share/akonadi/accountwizard/contacts/contactswizard.ui share/akonadi/accountwizard/ical/icalwizard.desktop share/akonadi/accountwizard/ical/icalwizard.es share/akonadi/accountwizard/ical/icalwizard.ui share/akonadi/accountwizard/imap/imapwizard.desktop share/akonadi/accountwizard/imap/imapwizard.es share/akonadi/accountwizard/imap/imapwizard.ui share/akonadi/accountwizard/kolab/kolabwizard.desktop share/akonadi/accountwizard/kolab/kolabwizard.es share/akonadi/accountwizard/kolab/kolabwizard.ui share/akonadi/accountwizard/kolab/kolabwizard2.ui share/akonadi/accountwizard/mailbox/mailboxwizard.desktop share/akonadi/accountwizard/mailbox/mailboxwizard.es share/akonadi/accountwizard/mailbox/mailboxwizard.ui share/akonadi/accountwizard/maildir/maildirwizard.desktop share/akonadi/accountwizard/maildir/maildirwizard.es share/akonadi/accountwizard/maildir/maildirwizard.ui share/akonadi/accountwizard/pop3/pop3wizard.desktop share/akonadi/accountwizard/pop3/pop3wizard.es share/akonadi/accountwizard/pop3/pop3wizard.ui share/akonadi/accountwizard/vcard/vcardwizard.desktop share/akonadi/accountwizard/vcard/vcardwizard.es share/akonadi/accountwizard/vcard/vcardwizard.ui share/akonadi/accountwizard/vcarddir/vcarddirwizard.desktop share/akonadi/accountwizard/vcarddir/vcarddirwizard.es share/akonadi/accountwizard/vcarddir/vcarddirwizard.ui share/akonadi/agents/akonotesresource.desktop share/akonadi/agents/birthdaysresource.desktop share/akonadi/agents/contactsresource.desktop share/akonadi/agents/davgroupwareresource.desktop share/akonadi/agents/ewsmtaresource.desktop share/akonadi/agents/ewsresource.desktop share/akonadi/agents/googleresource.desktop share/akonadi/agents/icaldirresource.desktop share/akonadi/agents/icalresource.desktop share/akonadi/agents/imapresource.desktop share/akonadi/agents/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/applications/org.kde.akonadi_davgroupware_resource.desktop share/applications/org.kde.akonadi_google_resource.desktop share/applications/org.kde.akonadi_imap_resource.desktop share/applications/org.kde.akonadi_kolab_resource.desktop share/dbus-1/interfaces/org.kde.Akonadi.Maildir.Settings.xml share/dbus-1/interfaces/org.kde.Akonadi.MixedMaildir.Settings.xml share/icons/hicolor/128x128/apps/akonadi-ews.png share/icons/hicolor/128x128/apps/ox.png share/icons/hicolor/16x16/apps/akonadi-ews.png share/icons/hicolor/16x16/apps/ox.png share/icons/hicolor/22x22/apps/akonadi-ews.png share/icons/hicolor/24x24/apps/akonadi-ews.png share/icons/hicolor/32x32/apps/akonadi-ews.png share/icons/hicolor/32x32/apps/ox.png share/icons/hicolor/48x48/apps/akonadi-ews.png share/icons/hicolor/48x48/apps/ox.png share/icons/hicolor/64x64/apps/akonadi-ews.png share/icons/hicolor/64x64/apps/ox.png share/icons/hicolor/72x72/apps/akonadi-ews.png share/icons/hicolor/96x96/apps/akonadi-ews.png share/knotifications5/akonadi_ews_resource.notifyrc share/knotifications5/akonadi_google_resource.notifyrc share/knotifications5/akonadi_maildispatcher_agent.notifyrc share/knotifications5/akonadi_newmailnotifier_agent.notifyrc share/knotifications5/akonadi_pop3_resource.notifyrc share/kservices5/akonadi/davgroupware-providers/citadel.desktop share/kservices5/akonadi/davgroupware-providers/davical.desktop share/kservices5/akonadi/davgroupware-providers/egroupware.desktop +share/kservices5/akonadi/davgroupware-providers/mailbox-org.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/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_etesync_resource.mo share/locale/ar/LC_MESSAGES/akonadi_ews_resource.mo share/locale/ar/LC_MESSAGES/akonadi_facebook_resource.mo share/locale/ar/LC_MESSAGES/akonadi_google_resource.mo share/locale/ar/LC_MESSAGES/akonadi_ical_resource.mo share/locale/ar/LC_MESSAGES/akonadi_icaldir_resource.mo share/locale/ar/LC_MESSAGES/akonadi_imap_resource.mo share/locale/ar/LC_MESSAGES/akonadi_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/libfolderarchivesettings.mo share/locale/bg/LC_MESSAGES/accountwizard_contacts.mo share/locale/bg/LC_MESSAGES/accountwizard_ews.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-filestore.mo share/locale/bg/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/bg/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/bg/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/bg/LC_MESSAGES/akonadi_etesync_resource.mo share/locale/bg/LC_MESSAGES/akonadi_ews_resource.mo share/locale/bg/LC_MESSAGES/akonadi_facebook_resource.mo share/locale/bg/LC_MESSAGES/akonadi_google_resource.mo share/locale/bg/LC_MESSAGES/akonadi_ical_resource.mo share/locale/bg/LC_MESSAGES/akonadi_icaldir_resource.mo share/locale/bg/LC_MESSAGES/akonadi_imap_resource.mo share/locale/bg/LC_MESSAGES/akonadi_maildir_resource.mo share/locale/bg/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/bg/LC_MESSAGES/akonadi_mbox_resource.mo share/locale/bg/LC_MESSAGES/akonadi_migration_agent.mo share/locale/bg/LC_MESSAGES/akonadi_mixedmaildir_resource.mo share/locale/bg/LC_MESSAGES/akonadi_newmailnotifier_agent.mo share/locale/bg/LC_MESSAGES/akonadi_openxchange_resource.mo share/locale/bg/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/bg/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/bg/LC_MESSAGES/akonadi_tomboynotes_resource.mo share/locale/bg/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/bg/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/bg/LC_MESSAGES/gid-migrator.mo share/locale/bg/LC_MESSAGES/kio_akonadi.mo share/locale/bg/LC_MESSAGES/libfolderarchivesettings.mo share/locale/bs/LC_MESSAGES/accountwizard_contacts.mo share/locale/bs/LC_MESSAGES/accountwizard_ical.mo share/locale/bs/LC_MESSAGES/accountwizard_imap.mo share/locale/bs/LC_MESSAGES/accountwizard_mailbox.mo share/locale/bs/LC_MESSAGES/accountwizard_maildir.mo share/locale/bs/LC_MESSAGES/accountwizard_pop3.mo share/locale/bs/LC_MESSAGES/accountwizard_vcard.mo share/locale/bs/LC_MESSAGES/accountwizard_vcarddir.mo share/locale/bs/LC_MESSAGES/akonadi-filestore.mo share/locale/bs/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/bs/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/bs/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/bs/LC_MESSAGES/akonadi_google_resource.mo share/locale/bs/LC_MESSAGES/akonadi_ical_resource.mo share/locale/bs/LC_MESSAGES/akonadi_icaldir_resource.mo share/locale/bs/LC_MESSAGES/akonadi_imap_resource.mo share/locale/bs/LC_MESSAGES/akonadi_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/libfolderarchivesettings.mo share/locale/ca/LC_MESSAGES/accountwizard_contacts.mo share/locale/ca/LC_MESSAGES/accountwizard_ews.mo share/locale/ca/LC_MESSAGES/accountwizard_ical.mo share/locale/ca/LC_MESSAGES/accountwizard_imap.mo share/locale/ca/LC_MESSAGES/accountwizard_kolab.mo share/locale/ca/LC_MESSAGES/accountwizard_mailbox.mo share/locale/ca/LC_MESSAGES/accountwizard_maildir.mo share/locale/ca/LC_MESSAGES/accountwizard_pop3.mo share/locale/ca/LC_MESSAGES/accountwizard_vcard.mo share/locale/ca/LC_MESSAGES/accountwizard_vcarddir.mo share/locale/ca/LC_MESSAGES/akonadi-filestore.mo share/locale/ca/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/ca/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/ca/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/ca/LC_MESSAGES/akonadi_etesync_resource.mo share/locale/ca/LC_MESSAGES/akonadi_ews_resource.mo share/locale/ca/LC_MESSAGES/akonadi_facebook_resource.mo share/locale/ca/LC_MESSAGES/akonadi_google_resource.mo share/locale/ca/LC_MESSAGES/akonadi_ical_resource.mo share/locale/ca/LC_MESSAGES/akonadi_icaldir_resource.mo share/locale/ca/LC_MESSAGES/akonadi_imap_resource.mo share/locale/ca/LC_MESSAGES/akonadi_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/libfolderarchivesettings.mo share/locale/ca@valencia/LC_MESSAGES/accountwizard_contacts.mo share/locale/ca@valencia/LC_MESSAGES/accountwizard_ews.mo share/locale/ca@valencia/LC_MESSAGES/accountwizard_ical.mo share/locale/ca@valencia/LC_MESSAGES/accountwizard_imap.mo share/locale/ca@valencia/LC_MESSAGES/accountwizard_kolab.mo share/locale/ca@valencia/LC_MESSAGES/accountwizard_mailbox.mo share/locale/ca@valencia/LC_MESSAGES/accountwizard_maildir.mo share/locale/ca@valencia/LC_MESSAGES/accountwizard_pop3.mo share/locale/ca@valencia/LC_MESSAGES/accountwizard_vcard.mo share/locale/ca@valencia/LC_MESSAGES/accountwizard_vcarddir.mo share/locale/ca@valencia/LC_MESSAGES/akonadi-filestore.mo share/locale/ca@valencia/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/ca@valencia/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/ca@valencia/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/ca@valencia/LC_MESSAGES/akonadi_etesync_resource.mo share/locale/ca@valencia/LC_MESSAGES/akonadi_ews_resource.mo share/locale/ca@valencia/LC_MESSAGES/akonadi_facebook_resource.mo share/locale/ca@valencia/LC_MESSAGES/akonadi_google_resource.mo share/locale/ca@valencia/LC_MESSAGES/akonadi_ical_resource.mo share/locale/ca@valencia/LC_MESSAGES/akonadi_icaldir_resource.mo share/locale/ca@valencia/LC_MESSAGES/akonadi_imap_resource.mo share/locale/ca@valencia/LC_MESSAGES/akonadi_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/libfolderarchivesettings.mo share/locale/cs/LC_MESSAGES/accountwizard_contacts.mo share/locale/cs/LC_MESSAGES/accountwizard_ews.mo share/locale/cs/LC_MESSAGES/accountwizard_ical.mo share/locale/cs/LC_MESSAGES/accountwizard_imap.mo share/locale/cs/LC_MESSAGES/accountwizard_kolab.mo share/locale/cs/LC_MESSAGES/accountwizard_mailbox.mo share/locale/cs/LC_MESSAGES/accountwizard_maildir.mo share/locale/cs/LC_MESSAGES/accountwizard_pop3.mo share/locale/cs/LC_MESSAGES/accountwizard_vcard.mo share/locale/cs/LC_MESSAGES/accountwizard_vcarddir.mo share/locale/cs/LC_MESSAGES/akonadi-filestore.mo share/locale/cs/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/cs/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/cs/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/cs/LC_MESSAGES/akonadi_etesync_resource.mo share/locale/cs/LC_MESSAGES/akonadi_ews_resource.mo share/locale/cs/LC_MESSAGES/akonadi_facebook_resource.mo share/locale/cs/LC_MESSAGES/akonadi_google_resource.mo share/locale/cs/LC_MESSAGES/akonadi_ical_resource.mo share/locale/cs/LC_MESSAGES/akonadi_icaldir_resource.mo share/locale/cs/LC_MESSAGES/akonadi_imap_resource.mo share/locale/cs/LC_MESSAGES/akonadi_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/libfolderarchivesettings.mo share/locale/da/LC_MESSAGES/accountwizard_contacts.mo share/locale/da/LC_MESSAGES/accountwizard_ews.mo share/locale/da/LC_MESSAGES/accountwizard_ical.mo share/locale/da/LC_MESSAGES/accountwizard_imap.mo share/locale/da/LC_MESSAGES/accountwizard_kolab.mo share/locale/da/LC_MESSAGES/accountwizard_mailbox.mo share/locale/da/LC_MESSAGES/accountwizard_maildir.mo share/locale/da/LC_MESSAGES/accountwizard_pop3.mo share/locale/da/LC_MESSAGES/accountwizard_vcard.mo share/locale/da/LC_MESSAGES/accountwizard_vcarddir.mo share/locale/da/LC_MESSAGES/akonadi-filestore.mo share/locale/da/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/da/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/da/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/da/LC_MESSAGES/akonadi_ews_resource.mo share/locale/da/LC_MESSAGES/akonadi_facebook_resource.mo share/locale/da/LC_MESSAGES/akonadi_google_resource.mo share/locale/da/LC_MESSAGES/akonadi_ical_resource.mo share/locale/da/LC_MESSAGES/akonadi_icaldir_resource.mo share/locale/da/LC_MESSAGES/akonadi_imap_resource.mo share/locale/da/LC_MESSAGES/akonadi_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/libfolderarchivesettings.mo share/locale/de/LC_MESSAGES/accountwizard_contacts.mo share/locale/de/LC_MESSAGES/accountwizard_ews.mo share/locale/de/LC_MESSAGES/accountwizard_ical.mo share/locale/de/LC_MESSAGES/accountwizard_imap.mo share/locale/de/LC_MESSAGES/accountwizard_kolab.mo share/locale/de/LC_MESSAGES/accountwizard_mailbox.mo share/locale/de/LC_MESSAGES/accountwizard_maildir.mo share/locale/de/LC_MESSAGES/accountwizard_pop3.mo share/locale/de/LC_MESSAGES/accountwizard_vcard.mo share/locale/de/LC_MESSAGES/accountwizard_vcarddir.mo share/locale/de/LC_MESSAGES/akonadi-filestore.mo share/locale/de/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/de/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/de/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/de/LC_MESSAGES/akonadi_etesync_resource.mo share/locale/de/LC_MESSAGES/akonadi_ews_resource.mo share/locale/de/LC_MESSAGES/akonadi_facebook_resource.mo share/locale/de/LC_MESSAGES/akonadi_google_resource.mo share/locale/de/LC_MESSAGES/akonadi_ical_resource.mo share/locale/de/LC_MESSAGES/akonadi_icaldir_resource.mo share/locale/de/LC_MESSAGES/akonadi_imap_resource.mo share/locale/de/LC_MESSAGES/akonadi_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/libfolderarchivesettings.mo share/locale/el/LC_MESSAGES/accountwizard_contacts.mo share/locale/el/LC_MESSAGES/accountwizard_ical.mo share/locale/el/LC_MESSAGES/accountwizard_imap.mo share/locale/el/LC_MESSAGES/accountwizard_kolab.mo share/locale/el/LC_MESSAGES/accountwizard_mailbox.mo share/locale/el/LC_MESSAGES/accountwizard_maildir.mo share/locale/el/LC_MESSAGES/accountwizard_pop3.mo share/locale/el/LC_MESSAGES/accountwizard_vcard.mo share/locale/el/LC_MESSAGES/accountwizard_vcarddir.mo share/locale/el/LC_MESSAGES/akonadi-filestore.mo share/locale/el/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/el/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/el/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/el/LC_MESSAGES/akonadi_google_resource.mo share/locale/el/LC_MESSAGES/akonadi_ical_resource.mo share/locale/el/LC_MESSAGES/akonadi_icaldir_resource.mo share/locale/el/LC_MESSAGES/akonadi_imap_resource.mo share/locale/el/LC_MESSAGES/akonadi_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/libfolderarchivesettings.mo share/locale/en_GB/LC_MESSAGES/accountwizard_contacts.mo share/locale/en_GB/LC_MESSAGES/accountwizard_ews.mo share/locale/en_GB/LC_MESSAGES/accountwizard_ical.mo share/locale/en_GB/LC_MESSAGES/accountwizard_imap.mo share/locale/en_GB/LC_MESSAGES/accountwizard_kolab.mo share/locale/en_GB/LC_MESSAGES/accountwizard_mailbox.mo share/locale/en_GB/LC_MESSAGES/accountwizard_maildir.mo share/locale/en_GB/LC_MESSAGES/accountwizard_pop3.mo share/locale/en_GB/LC_MESSAGES/accountwizard_vcard.mo share/locale/en_GB/LC_MESSAGES/accountwizard_vcarddir.mo share/locale/en_GB/LC_MESSAGES/akonadi-filestore.mo share/locale/en_GB/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/en_GB/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/en_GB/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/en_GB/LC_MESSAGES/akonadi_etesync_resource.mo share/locale/en_GB/LC_MESSAGES/akonadi_ews_resource.mo share/locale/en_GB/LC_MESSAGES/akonadi_facebook_resource.mo share/locale/en_GB/LC_MESSAGES/akonadi_google_resource.mo share/locale/en_GB/LC_MESSAGES/akonadi_ical_resource.mo share/locale/en_GB/LC_MESSAGES/akonadi_icaldir_resource.mo share/locale/en_GB/LC_MESSAGES/akonadi_imap_resource.mo share/locale/en_GB/LC_MESSAGES/akonadi_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/libfolderarchivesettings.mo share/locale/eo/LC_MESSAGES/accountwizard_imap.mo share/locale/eo/LC_MESSAGES/accountwizard_mailbox.mo share/locale/eo/LC_MESSAGES/accountwizard_maildir.mo share/locale/eo/LC_MESSAGES/accountwizard_pop3.mo share/locale/eo/LC_MESSAGES/akonadi-filestore.mo share/locale/eo/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/eo/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/eo/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/eo/LC_MESSAGES/akonadi_ical_resource.mo share/locale/eo/LC_MESSAGES/akonadi_imap_resource.mo share/locale/eo/LC_MESSAGES/akonadi_maildir_resource.mo share/locale/eo/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/eo/LC_MESSAGES/akonadi_mbox_resource.mo share/locale/eo/LC_MESSAGES/akonadi_mixedmaildir_resource.mo share/locale/eo/LC_MESSAGES/akonadi_openxchange_resource.mo share/locale/eo/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/eo/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/eo/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/eo/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/eo/LC_MESSAGES/kio_akonadi.mo share/locale/es/LC_MESSAGES/accountwizard_contacts.mo share/locale/es/LC_MESSAGES/accountwizard_ews.mo share/locale/es/LC_MESSAGES/accountwizard_ical.mo share/locale/es/LC_MESSAGES/accountwizard_imap.mo share/locale/es/LC_MESSAGES/accountwizard_kolab.mo share/locale/es/LC_MESSAGES/accountwizard_mailbox.mo share/locale/es/LC_MESSAGES/accountwizard_maildir.mo share/locale/es/LC_MESSAGES/accountwizard_pop3.mo share/locale/es/LC_MESSAGES/accountwizard_vcard.mo share/locale/es/LC_MESSAGES/accountwizard_vcarddir.mo share/locale/es/LC_MESSAGES/akonadi-filestore.mo share/locale/es/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/es/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/es/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/es/LC_MESSAGES/akonadi_etesync_resource.mo share/locale/es/LC_MESSAGES/akonadi_ews_resource.mo share/locale/es/LC_MESSAGES/akonadi_facebook_resource.mo share/locale/es/LC_MESSAGES/akonadi_google_resource.mo share/locale/es/LC_MESSAGES/akonadi_ical_resource.mo share/locale/es/LC_MESSAGES/akonadi_icaldir_resource.mo share/locale/es/LC_MESSAGES/akonadi_imap_resource.mo share/locale/es/LC_MESSAGES/akonadi_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/libfolderarchivesettings.mo share/locale/et/LC_MESSAGES/accountwizard_contacts.mo share/locale/et/LC_MESSAGES/accountwizard_ews.mo share/locale/et/LC_MESSAGES/accountwizard_ical.mo share/locale/et/LC_MESSAGES/accountwizard_imap.mo share/locale/et/LC_MESSAGES/accountwizard_kolab.mo share/locale/et/LC_MESSAGES/accountwizard_mailbox.mo share/locale/et/LC_MESSAGES/accountwizard_maildir.mo share/locale/et/LC_MESSAGES/accountwizard_pop3.mo share/locale/et/LC_MESSAGES/accountwizard_vcard.mo share/locale/et/LC_MESSAGES/accountwizard_vcarddir.mo share/locale/et/LC_MESSAGES/akonadi-filestore.mo share/locale/et/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/et/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/et/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/et/LC_MESSAGES/akonadi_ews_resource.mo share/locale/et/LC_MESSAGES/akonadi_facebook_resource.mo share/locale/et/LC_MESSAGES/akonadi_google_resource.mo share/locale/et/LC_MESSAGES/akonadi_ical_resource.mo share/locale/et/LC_MESSAGES/akonadi_icaldir_resource.mo share/locale/et/LC_MESSAGES/akonadi_imap_resource.mo share/locale/et/LC_MESSAGES/akonadi_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/libfolderarchivesettings.mo share/locale/eu/LC_MESSAGES/accountwizard_contacts.mo share/locale/eu/LC_MESSAGES/accountwizard_ews.mo share/locale/eu/LC_MESSAGES/accountwizard_ical.mo share/locale/eu/LC_MESSAGES/accountwizard_imap.mo share/locale/eu/LC_MESSAGES/accountwizard_kolab.mo share/locale/eu/LC_MESSAGES/accountwizard_mailbox.mo share/locale/eu/LC_MESSAGES/accountwizard_maildir.mo share/locale/eu/LC_MESSAGES/accountwizard_pop3.mo share/locale/eu/LC_MESSAGES/accountwizard_vcard.mo share/locale/eu/LC_MESSAGES/accountwizard_vcarddir.mo share/locale/eu/LC_MESSAGES/akonadi-filestore.mo share/locale/eu/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/eu/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/eu/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/eu/LC_MESSAGES/akonadi_etesync_resource.mo share/locale/eu/LC_MESSAGES/akonadi_ews_resource.mo share/locale/eu/LC_MESSAGES/akonadi_facebook_resource.mo share/locale/eu/LC_MESSAGES/akonadi_google_resource.mo share/locale/eu/LC_MESSAGES/akonadi_ical_resource.mo share/locale/eu/LC_MESSAGES/akonadi_icaldir_resource.mo share/locale/eu/LC_MESSAGES/akonadi_imap_resource.mo share/locale/eu/LC_MESSAGES/akonadi_maildir_resource.mo share/locale/eu/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/eu/LC_MESSAGES/akonadi_mbox_resource.mo share/locale/eu/LC_MESSAGES/akonadi_migration_agent.mo share/locale/eu/LC_MESSAGES/akonadi_mixedmaildir_resource.mo share/locale/eu/LC_MESSAGES/akonadi_newmailnotifier_agent.mo share/locale/eu/LC_MESSAGES/akonadi_openxchange_resource.mo share/locale/eu/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/eu/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/eu/LC_MESSAGES/akonadi_tomboynotes_resource.mo share/locale/eu/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/eu/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/eu/LC_MESSAGES/gid-migrator.mo share/locale/eu/LC_MESSAGES/kio_akonadi.mo share/locale/eu/LC_MESSAGES/libfolderarchivesettings.mo share/locale/fi/LC_MESSAGES/accountwizard_contacts.mo share/locale/fi/LC_MESSAGES/accountwizard_ews.mo share/locale/fi/LC_MESSAGES/accountwizard_ical.mo share/locale/fi/LC_MESSAGES/accountwizard_imap.mo share/locale/fi/LC_MESSAGES/accountwizard_kolab.mo share/locale/fi/LC_MESSAGES/accountwizard_mailbox.mo share/locale/fi/LC_MESSAGES/accountwizard_maildir.mo share/locale/fi/LC_MESSAGES/accountwizard_pop3.mo share/locale/fi/LC_MESSAGES/accountwizard_vcard.mo share/locale/fi/LC_MESSAGES/accountwizard_vcarddir.mo share/locale/fi/LC_MESSAGES/akonadi-filestore.mo share/locale/fi/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/fi/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/fi/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/fi/LC_MESSAGES/akonadi_etesync_resource.mo share/locale/fi/LC_MESSAGES/akonadi_ews_resource.mo share/locale/fi/LC_MESSAGES/akonadi_facebook_resource.mo share/locale/fi/LC_MESSAGES/akonadi_google_resource.mo share/locale/fi/LC_MESSAGES/akonadi_ical_resource.mo share/locale/fi/LC_MESSAGES/akonadi_icaldir_resource.mo share/locale/fi/LC_MESSAGES/akonadi_imap_resource.mo share/locale/fi/LC_MESSAGES/akonadi_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/libfolderarchivesettings.mo share/locale/fr/LC_MESSAGES/accountwizard_contacts.mo share/locale/fr/LC_MESSAGES/accountwizard_ews.mo share/locale/fr/LC_MESSAGES/accountwizard_ical.mo share/locale/fr/LC_MESSAGES/accountwizard_imap.mo share/locale/fr/LC_MESSAGES/accountwizard_kolab.mo share/locale/fr/LC_MESSAGES/accountwizard_mailbox.mo share/locale/fr/LC_MESSAGES/accountwizard_maildir.mo share/locale/fr/LC_MESSAGES/accountwizard_pop3.mo share/locale/fr/LC_MESSAGES/accountwizard_vcard.mo share/locale/fr/LC_MESSAGES/accountwizard_vcarddir.mo share/locale/fr/LC_MESSAGES/akonadi-filestore.mo share/locale/fr/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/fr/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/fr/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/fr/LC_MESSAGES/akonadi_etesync_resource.mo share/locale/fr/LC_MESSAGES/akonadi_ews_resource.mo share/locale/fr/LC_MESSAGES/akonadi_facebook_resource.mo share/locale/fr/LC_MESSAGES/akonadi_google_resource.mo share/locale/fr/LC_MESSAGES/akonadi_ical_resource.mo share/locale/fr/LC_MESSAGES/akonadi_icaldir_resource.mo share/locale/fr/LC_MESSAGES/akonadi_imap_resource.mo share/locale/fr/LC_MESSAGES/akonadi_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/libfolderarchivesettings.mo share/locale/ga/LC_MESSAGES/accountwizard_ical.mo share/locale/ga/LC_MESSAGES/accountwizard_imap.mo share/locale/ga/LC_MESSAGES/accountwizard_mailbox.mo share/locale/ga/LC_MESSAGES/accountwizard_maildir.mo share/locale/ga/LC_MESSAGES/accountwizard_pop3.mo share/locale/ga/LC_MESSAGES/akonadi-filestore.mo share/locale/ga/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/ga/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/ga/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/ga/LC_MESSAGES/akonadi_google_resource.mo share/locale/ga/LC_MESSAGES/akonadi_ical_resource.mo share/locale/ga/LC_MESSAGES/akonadi_icaldir_resource.mo share/locale/ga/LC_MESSAGES/akonadi_imap_resource.mo share/locale/ga/LC_MESSAGES/akonadi_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/gl/LC_MESSAGES/accountwizard_contacts.mo share/locale/gl/LC_MESSAGES/accountwizard_ews.mo share/locale/gl/LC_MESSAGES/accountwizard_ical.mo share/locale/gl/LC_MESSAGES/accountwizard_imap.mo share/locale/gl/LC_MESSAGES/accountwizard_kolab.mo share/locale/gl/LC_MESSAGES/accountwizard_mailbox.mo share/locale/gl/LC_MESSAGES/accountwizard_maildir.mo share/locale/gl/LC_MESSAGES/accountwizard_pop3.mo share/locale/gl/LC_MESSAGES/accountwizard_vcard.mo share/locale/gl/LC_MESSAGES/accountwizard_vcarddir.mo share/locale/gl/LC_MESSAGES/akonadi-filestore.mo share/locale/gl/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/gl/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/gl/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/gl/LC_MESSAGES/akonadi_ews_resource.mo share/locale/gl/LC_MESSAGES/akonadi_facebook_resource.mo share/locale/gl/LC_MESSAGES/akonadi_google_resource.mo share/locale/gl/LC_MESSAGES/akonadi_ical_resource.mo share/locale/gl/LC_MESSAGES/akonadi_icaldir_resource.mo share/locale/gl/LC_MESSAGES/akonadi_imap_resource.mo share/locale/gl/LC_MESSAGES/akonadi_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/libfolderarchivesettings.mo share/locale/he/LC_MESSAGES/accountwizard_contacts.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/hsb/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/hu/LC_MESSAGES/accountwizard_contacts.mo share/locale/hu/LC_MESSAGES/accountwizard_ical.mo share/locale/hu/LC_MESSAGES/accountwizard_imap.mo share/locale/hu/LC_MESSAGES/accountwizard_mailbox.mo share/locale/hu/LC_MESSAGES/accountwizard_maildir.mo share/locale/hu/LC_MESSAGES/accountwizard_pop3.mo share/locale/hu/LC_MESSAGES/accountwizard_vcard.mo share/locale/hu/LC_MESSAGES/accountwizard_vcarddir.mo share/locale/hu/LC_MESSAGES/akonadi-filestore.mo share/locale/hu/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/hu/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/hu/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/hu/LC_MESSAGES/akonadi_google_resource.mo share/locale/hu/LC_MESSAGES/akonadi_ical_resource.mo share/locale/hu/LC_MESSAGES/akonadi_icaldir_resource.mo share/locale/hu/LC_MESSAGES/akonadi_imap_resource.mo share/locale/hu/LC_MESSAGES/akonadi_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/libfolderarchivesettings.mo share/locale/ia/LC_MESSAGES/accountwizard_contacts.mo share/locale/ia/LC_MESSAGES/accountwizard_ews.mo share/locale/ia/LC_MESSAGES/accountwizard_ical.mo share/locale/ia/LC_MESSAGES/accountwizard_imap.mo share/locale/ia/LC_MESSAGES/accountwizard_kolab.mo share/locale/ia/LC_MESSAGES/accountwizard_mailbox.mo share/locale/ia/LC_MESSAGES/accountwizard_maildir.mo share/locale/ia/LC_MESSAGES/accountwizard_pop3.mo share/locale/ia/LC_MESSAGES/accountwizard_vcard.mo share/locale/ia/LC_MESSAGES/accountwizard_vcarddir.mo share/locale/ia/LC_MESSAGES/akonadi-filestore.mo share/locale/ia/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/ia/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/ia/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/ia/LC_MESSAGES/akonadi_etesync_resource.mo share/locale/ia/LC_MESSAGES/akonadi_ews_resource.mo share/locale/ia/LC_MESSAGES/akonadi_facebook_resource.mo share/locale/ia/LC_MESSAGES/akonadi_google_resource.mo share/locale/ia/LC_MESSAGES/akonadi_ical_resource.mo share/locale/ia/LC_MESSAGES/akonadi_icaldir_resource.mo share/locale/ia/LC_MESSAGES/akonadi_imap_resource.mo share/locale/ia/LC_MESSAGES/akonadi_maildir_resource.mo share/locale/ia/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/ia/LC_MESSAGES/akonadi_mbox_resource.mo share/locale/ia/LC_MESSAGES/akonadi_migration_agent.mo share/locale/ia/LC_MESSAGES/akonadi_mixedmaildir_resource.mo share/locale/ia/LC_MESSAGES/akonadi_newmailnotifier_agent.mo share/locale/ia/LC_MESSAGES/akonadi_openxchange_resource.mo share/locale/ia/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/ia/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/ia/LC_MESSAGES/akonadi_tomboynotes_resource.mo share/locale/ia/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/ia/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/ia/LC_MESSAGES/gid-migrator.mo share/locale/ia/LC_MESSAGES/kio_akonadi.mo share/locale/ia/LC_MESSAGES/libfolderarchivesettings.mo share/locale/id/LC_MESSAGES/akonadi_newmailnotifier_agent.mo share/locale/it/LC_MESSAGES/accountwizard_contacts.mo share/locale/it/LC_MESSAGES/accountwizard_ews.mo share/locale/it/LC_MESSAGES/accountwizard_ical.mo share/locale/it/LC_MESSAGES/accountwizard_imap.mo share/locale/it/LC_MESSAGES/accountwizard_kolab.mo share/locale/it/LC_MESSAGES/accountwizard_mailbox.mo share/locale/it/LC_MESSAGES/accountwizard_maildir.mo share/locale/it/LC_MESSAGES/accountwizard_pop3.mo share/locale/it/LC_MESSAGES/accountwizard_vcard.mo share/locale/it/LC_MESSAGES/accountwizard_vcarddir.mo share/locale/it/LC_MESSAGES/akonadi-filestore.mo share/locale/it/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/it/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/it/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/it/LC_MESSAGES/akonadi_etesync_resource.mo share/locale/it/LC_MESSAGES/akonadi_ews_resource.mo share/locale/it/LC_MESSAGES/akonadi_facebook_resource.mo share/locale/it/LC_MESSAGES/akonadi_google_resource.mo share/locale/it/LC_MESSAGES/akonadi_ical_resource.mo share/locale/it/LC_MESSAGES/akonadi_icaldir_resource.mo share/locale/it/LC_MESSAGES/akonadi_imap_resource.mo share/locale/it/LC_MESSAGES/akonadi_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/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_etesync_resource.mo share/locale/ja/LC_MESSAGES/akonadi_ews_resource.mo share/locale/ja/LC_MESSAGES/akonadi_facebook_resource.mo share/locale/ja/LC_MESSAGES/akonadi_google_resource.mo share/locale/ja/LC_MESSAGES/akonadi_ical_resource.mo share/locale/ja/LC_MESSAGES/akonadi_icaldir_resource.mo share/locale/ja/LC_MESSAGES/akonadi_imap_resource.mo share/locale/ja/LC_MESSAGES/akonadi_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/libfolderarchivesettings.mo share/locale/ka/LC_MESSAGES/accountwizard_contacts.mo share/locale/ka/LC_MESSAGES/accountwizard_ews.mo share/locale/ka/LC_MESSAGES/accountwizard_ical.mo share/locale/ka/LC_MESSAGES/accountwizard_imap.mo share/locale/ka/LC_MESSAGES/accountwizard_kolab.mo share/locale/ka/LC_MESSAGES/accountwizard_mailbox.mo share/locale/ka/LC_MESSAGES/accountwizard_maildir.mo share/locale/ka/LC_MESSAGES/accountwizard_pop3.mo share/locale/ka/LC_MESSAGES/accountwizard_vcard.mo share/locale/ka/LC_MESSAGES/accountwizard_vcarddir.mo share/locale/ka/LC_MESSAGES/akonadi-filestore.mo share/locale/ka/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/ka/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/ka/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/ka/LC_MESSAGES/akonadi_etesync_resource.mo share/locale/ka/LC_MESSAGES/akonadi_ews_resource.mo share/locale/ka/LC_MESSAGES/akonadi_facebook_resource.mo share/locale/ka/LC_MESSAGES/akonadi_google_resource.mo share/locale/ka/LC_MESSAGES/akonadi_ical_resource.mo share/locale/ka/LC_MESSAGES/akonadi_icaldir_resource.mo share/locale/ka/LC_MESSAGES/akonadi_imap_resource.mo share/locale/ka/LC_MESSAGES/akonadi_maildir_resource.mo share/locale/ka/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/ka/LC_MESSAGES/akonadi_mbox_resource.mo share/locale/ka/LC_MESSAGES/akonadi_migration_agent.mo share/locale/ka/LC_MESSAGES/akonadi_mixedmaildir_resource.mo share/locale/ka/LC_MESSAGES/akonadi_newmailnotifier_agent.mo share/locale/ka/LC_MESSAGES/akonadi_openxchange_resource.mo share/locale/ka/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/ka/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/ka/LC_MESSAGES/akonadi_tomboynotes_resource.mo share/locale/ka/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/ka/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/ka/LC_MESSAGES/gid-migrator.mo share/locale/ka/LC_MESSAGES/kio_akonadi.mo share/locale/ka/LC_MESSAGES/libfolderarchivesettings.mo share/locale/kk/LC_MESSAGES/accountwizard_ical.mo share/locale/kk/LC_MESSAGES/accountwizard_imap.mo share/locale/kk/LC_MESSAGES/accountwizard_mailbox.mo share/locale/kk/LC_MESSAGES/accountwizard_maildir.mo share/locale/kk/LC_MESSAGES/accountwizard_pop3.mo share/locale/kk/LC_MESSAGES/akonadi-filestore.mo share/locale/kk/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/kk/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/kk/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/kk/LC_MESSAGES/akonadi_google_resource.mo share/locale/kk/LC_MESSAGES/akonadi_ical_resource.mo share/locale/kk/LC_MESSAGES/akonadi_icaldir_resource.mo share/locale/kk/LC_MESSAGES/akonadi_imap_resource.mo share/locale/kk/LC_MESSAGES/akonadi_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/km/LC_MESSAGES/accountwizard_ical.mo share/locale/km/LC_MESSAGES/accountwizard_imap.mo share/locale/km/LC_MESSAGES/accountwizard_mailbox.mo share/locale/km/LC_MESSAGES/accountwizard_maildir.mo share/locale/km/LC_MESSAGES/accountwizard_pop3.mo share/locale/km/LC_MESSAGES/akonadi-filestore.mo share/locale/km/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/km/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/km/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/km/LC_MESSAGES/akonadi_google_resource.mo share/locale/km/LC_MESSAGES/akonadi_ical_resource.mo share/locale/km/LC_MESSAGES/akonadi_imap_resource.mo share/locale/km/LC_MESSAGES/akonadi_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/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_etesync_resource.mo share/locale/ko/LC_MESSAGES/akonadi_ews_resource.mo share/locale/ko/LC_MESSAGES/akonadi_facebook_resource.mo share/locale/ko/LC_MESSAGES/akonadi_google_resource.mo share/locale/ko/LC_MESSAGES/akonadi_ical_resource.mo share/locale/ko/LC_MESSAGES/akonadi_icaldir_resource.mo share/locale/ko/LC_MESSAGES/akonadi_imap_resource.mo share/locale/ko/LC_MESSAGES/akonadi_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/libfolderarchivesettings.mo share/locale/lt/LC_MESSAGES/accountwizard_contacts.mo share/locale/lt/LC_MESSAGES/accountwizard_ews.mo share/locale/lt/LC_MESSAGES/accountwizard_ical.mo share/locale/lt/LC_MESSAGES/accountwizard_imap.mo share/locale/lt/LC_MESSAGES/accountwizard_kolab.mo share/locale/lt/LC_MESSAGES/accountwizard_mailbox.mo share/locale/lt/LC_MESSAGES/accountwizard_maildir.mo share/locale/lt/LC_MESSAGES/accountwizard_pop3.mo share/locale/lt/LC_MESSAGES/accountwizard_vcard.mo share/locale/lt/LC_MESSAGES/accountwizard_vcarddir.mo share/locale/lt/LC_MESSAGES/akonadi-filestore.mo share/locale/lt/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/lt/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/lt/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/lt/LC_MESSAGES/akonadi_etesync_resource.mo share/locale/lt/LC_MESSAGES/akonadi_ews_resource.mo share/locale/lt/LC_MESSAGES/akonadi_facebook_resource.mo share/locale/lt/LC_MESSAGES/akonadi_google_resource.mo share/locale/lt/LC_MESSAGES/akonadi_ical_resource.mo share/locale/lt/LC_MESSAGES/akonadi_icaldir_resource.mo share/locale/lt/LC_MESSAGES/akonadi_imap_resource.mo share/locale/lt/LC_MESSAGES/akonadi_maildir_resource.mo share/locale/lt/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/lt/LC_MESSAGES/akonadi_mbox_resource.mo share/locale/lt/LC_MESSAGES/akonadi_migration_agent.mo share/locale/lt/LC_MESSAGES/akonadi_mixedmaildir_resource.mo share/locale/lt/LC_MESSAGES/akonadi_newmailnotifier_agent.mo share/locale/lt/LC_MESSAGES/akonadi_openxchange_resource.mo share/locale/lt/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/lt/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/lt/LC_MESSAGES/akonadi_tomboynotes_resource.mo share/locale/lt/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/lt/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/lt/LC_MESSAGES/gid-migrator.mo share/locale/lt/LC_MESSAGES/kio_akonadi.mo share/locale/lt/LC_MESSAGES/libfolderarchivesettings.mo share/locale/lv/LC_MESSAGES/accountwizard_ical.mo share/locale/lv/LC_MESSAGES/accountwizard_imap.mo share/locale/lv/LC_MESSAGES/accountwizard_mailbox.mo share/locale/lv/LC_MESSAGES/accountwizard_maildir.mo share/locale/lv/LC_MESSAGES/accountwizard_pop3.mo share/locale/lv/LC_MESSAGES/akonadi-filestore.mo share/locale/lv/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/lv/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/lv/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/lv/LC_MESSAGES/akonadi_google_resource.mo share/locale/lv/LC_MESSAGES/akonadi_ical_resource.mo share/locale/lv/LC_MESSAGES/akonadi_imap_resource.mo share/locale/lv/LC_MESSAGES/akonadi_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/mai/LC_MESSAGES/accountwizard_imap.mo share/locale/mai/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/mai/LC_MESSAGES/akonadi_imap_resource.mo share/locale/mai/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/mr/LC_MESSAGES/accountwizard_ical.mo share/locale/mr/LC_MESSAGES/accountwizard_imap.mo share/locale/mr/LC_MESSAGES/accountwizard_mailbox.mo share/locale/mr/LC_MESSAGES/accountwizard_maildir.mo share/locale/mr/LC_MESSAGES/accountwizard_pop3.mo share/locale/mr/LC_MESSAGES/akonadi-filestore.mo share/locale/mr/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/mr/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/mr/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/mr/LC_MESSAGES/akonadi_google_resource.mo share/locale/mr/LC_MESSAGES/akonadi_ical_resource.mo share/locale/mr/LC_MESSAGES/akonadi_icaldir_resource.mo share/locale/mr/LC_MESSAGES/akonadi_imap_resource.mo share/locale/mr/LC_MESSAGES/akonadi_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/nb/LC_MESSAGES/accountwizard_contacts.mo share/locale/nb/LC_MESSAGES/accountwizard_ical.mo share/locale/nb/LC_MESSAGES/accountwizard_imap.mo share/locale/nb/LC_MESSAGES/accountwizard_kolab.mo share/locale/nb/LC_MESSAGES/accountwizard_mailbox.mo share/locale/nb/LC_MESSAGES/accountwizard_maildir.mo share/locale/nb/LC_MESSAGES/accountwizard_pop3.mo share/locale/nb/LC_MESSAGES/accountwizard_vcard.mo share/locale/nb/LC_MESSAGES/accountwizard_vcarddir.mo share/locale/nb/LC_MESSAGES/akonadi-filestore.mo share/locale/nb/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/nb/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/nb/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/nb/LC_MESSAGES/akonadi_google_resource.mo share/locale/nb/LC_MESSAGES/akonadi_ical_resource.mo share/locale/nb/LC_MESSAGES/akonadi_icaldir_resource.mo share/locale/nb/LC_MESSAGES/akonadi_imap_resource.mo share/locale/nb/LC_MESSAGES/akonadi_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/libfolderarchivesettings.mo share/locale/nds/LC_MESSAGES/accountwizard_contacts.mo share/locale/nds/LC_MESSAGES/accountwizard_ical.mo share/locale/nds/LC_MESSAGES/accountwizard_imap.mo share/locale/nds/LC_MESSAGES/accountwizard_mailbox.mo share/locale/nds/LC_MESSAGES/accountwizard_maildir.mo share/locale/nds/LC_MESSAGES/accountwizard_pop3.mo share/locale/nds/LC_MESSAGES/accountwizard_vcard.mo share/locale/nds/LC_MESSAGES/accountwizard_vcarddir.mo share/locale/nds/LC_MESSAGES/akonadi-filestore.mo share/locale/nds/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/nds/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/nds/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/nds/LC_MESSAGES/akonadi_google_resource.mo share/locale/nds/LC_MESSAGES/akonadi_ical_resource.mo share/locale/nds/LC_MESSAGES/akonadi_icaldir_resource.mo share/locale/nds/LC_MESSAGES/akonadi_imap_resource.mo share/locale/nds/LC_MESSAGES/akonadi_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/libfolderarchivesettings.mo share/locale/nl/LC_MESSAGES/accountwizard_contacts.mo share/locale/nl/LC_MESSAGES/accountwizard_ews.mo share/locale/nl/LC_MESSAGES/accountwizard_ical.mo share/locale/nl/LC_MESSAGES/accountwizard_imap.mo share/locale/nl/LC_MESSAGES/accountwizard_kolab.mo share/locale/nl/LC_MESSAGES/accountwizard_mailbox.mo share/locale/nl/LC_MESSAGES/accountwizard_maildir.mo share/locale/nl/LC_MESSAGES/accountwizard_pop3.mo share/locale/nl/LC_MESSAGES/accountwizard_vcard.mo share/locale/nl/LC_MESSAGES/accountwizard_vcarddir.mo share/locale/nl/LC_MESSAGES/akonadi-filestore.mo share/locale/nl/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/nl/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/nl/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/nl/LC_MESSAGES/akonadi_etesync_resource.mo share/locale/nl/LC_MESSAGES/akonadi_ews_resource.mo share/locale/nl/LC_MESSAGES/akonadi_facebook_resource.mo share/locale/nl/LC_MESSAGES/akonadi_google_resource.mo share/locale/nl/LC_MESSAGES/akonadi_ical_resource.mo share/locale/nl/LC_MESSAGES/akonadi_icaldir_resource.mo share/locale/nl/LC_MESSAGES/akonadi_imap_resource.mo share/locale/nl/LC_MESSAGES/akonadi_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/libfolderarchivesettings.mo share/locale/nn/LC_MESSAGES/accountwizard_imap.mo share/locale/nn/LC_MESSAGES/accountwizard_kolab.mo share/locale/nn/LC_MESSAGES/accountwizard_mailbox.mo share/locale/nn/LC_MESSAGES/accountwizard_maildir.mo share/locale/nn/LC_MESSAGES/accountwizard_pop3.mo share/locale/nn/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/nn/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/nn/LC_MESSAGES/akonadi_ical_resource.mo share/locale/nn/LC_MESSAGES/akonadi_imap_resource.mo share/locale/nn/LC_MESSAGES/akonadi_maildir_resource.mo share/locale/nn/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/nn/LC_MESSAGES/akonadi_mbox_resource.mo share/locale/nn/LC_MESSAGES/akonadi_openxchange_resource.mo share/locale/nn/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/nn/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/nn/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/nn/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/nn/LC_MESSAGES/kio_akonadi.mo share/locale/pa/LC_MESSAGES/accountwizard_ical.mo share/locale/pa/LC_MESSAGES/accountwizard_imap.mo share/locale/pa/LC_MESSAGES/accountwizard_mailbox.mo share/locale/pa/LC_MESSAGES/accountwizard_maildir.mo share/locale/pa/LC_MESSAGES/accountwizard_pop3.mo share/locale/pa/LC_MESSAGES/akonadi-filestore.mo share/locale/pa/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/pa/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/pa/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/pa/LC_MESSAGES/akonadi_ical_resource.mo share/locale/pa/LC_MESSAGES/akonadi_imap_resource.mo share/locale/pa/LC_MESSAGES/akonadi_maildir_resource.mo share/locale/pa/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/pa/LC_MESSAGES/akonadi_mbox_resource.mo share/locale/pa/LC_MESSAGES/akonadi_mixedmaildir_resource.mo share/locale/pa/LC_MESSAGES/akonadi_newmailnotifier_agent.mo share/locale/pa/LC_MESSAGES/akonadi_openxchange_resource.mo share/locale/pa/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/pa/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/pa/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/pa/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/pa/LC_MESSAGES/kio_akonadi.mo share/locale/pl/LC_MESSAGES/accountwizard_contacts.mo share/locale/pl/LC_MESSAGES/accountwizard_ews.mo share/locale/pl/LC_MESSAGES/accountwizard_ical.mo share/locale/pl/LC_MESSAGES/accountwizard_imap.mo share/locale/pl/LC_MESSAGES/accountwizard_kolab.mo share/locale/pl/LC_MESSAGES/accountwizard_mailbox.mo share/locale/pl/LC_MESSAGES/accountwizard_maildir.mo share/locale/pl/LC_MESSAGES/accountwizard_pop3.mo share/locale/pl/LC_MESSAGES/accountwizard_vcard.mo share/locale/pl/LC_MESSAGES/accountwizard_vcarddir.mo share/locale/pl/LC_MESSAGES/akonadi-filestore.mo share/locale/pl/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/pl/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/pl/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/pl/LC_MESSAGES/akonadi_etesync_resource.mo share/locale/pl/LC_MESSAGES/akonadi_ews_resource.mo share/locale/pl/LC_MESSAGES/akonadi_facebook_resource.mo share/locale/pl/LC_MESSAGES/akonadi_google_resource.mo share/locale/pl/LC_MESSAGES/akonadi_ical_resource.mo share/locale/pl/LC_MESSAGES/akonadi_icaldir_resource.mo share/locale/pl/LC_MESSAGES/akonadi_imap_resource.mo share/locale/pl/LC_MESSAGES/akonadi_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/libfolderarchivesettings.mo share/locale/pt/LC_MESSAGES/accountwizard_contacts.mo share/locale/pt/LC_MESSAGES/accountwizard_ews.mo share/locale/pt/LC_MESSAGES/accountwizard_ical.mo share/locale/pt/LC_MESSAGES/accountwizard_imap.mo share/locale/pt/LC_MESSAGES/accountwizard_kolab.mo share/locale/pt/LC_MESSAGES/accountwizard_mailbox.mo share/locale/pt/LC_MESSAGES/accountwizard_maildir.mo share/locale/pt/LC_MESSAGES/accountwizard_pop3.mo share/locale/pt/LC_MESSAGES/accountwizard_vcard.mo share/locale/pt/LC_MESSAGES/accountwizard_vcarddir.mo share/locale/pt/LC_MESSAGES/akonadi-filestore.mo share/locale/pt/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/pt/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/pt/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/pt/LC_MESSAGES/akonadi_etesync_resource.mo share/locale/pt/LC_MESSAGES/akonadi_ews_resource.mo share/locale/pt/LC_MESSAGES/akonadi_facebook_resource.mo share/locale/pt/LC_MESSAGES/akonadi_google_resource.mo share/locale/pt/LC_MESSAGES/akonadi_ical_resource.mo share/locale/pt/LC_MESSAGES/akonadi_icaldir_resource.mo share/locale/pt/LC_MESSAGES/akonadi_imap_resource.mo share/locale/pt/LC_MESSAGES/akonadi_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/libfolderarchivesettings.mo share/locale/pt_BR/LC_MESSAGES/accountwizard_contacts.mo share/locale/pt_BR/LC_MESSAGES/accountwizard_ews.mo share/locale/pt_BR/LC_MESSAGES/accountwizard_ical.mo share/locale/pt_BR/LC_MESSAGES/accountwizard_imap.mo share/locale/pt_BR/LC_MESSAGES/accountwizard_kolab.mo share/locale/pt_BR/LC_MESSAGES/accountwizard_mailbox.mo share/locale/pt_BR/LC_MESSAGES/accountwizard_maildir.mo share/locale/pt_BR/LC_MESSAGES/accountwizard_pop3.mo share/locale/pt_BR/LC_MESSAGES/accountwizard_vcard.mo share/locale/pt_BR/LC_MESSAGES/accountwizard_vcarddir.mo share/locale/pt_BR/LC_MESSAGES/akonadi-filestore.mo share/locale/pt_BR/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/pt_BR/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/pt_BR/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/pt_BR/LC_MESSAGES/akonadi_etesync_resource.mo share/locale/pt_BR/LC_MESSAGES/akonadi_ews_resource.mo share/locale/pt_BR/LC_MESSAGES/akonadi_facebook_resource.mo share/locale/pt_BR/LC_MESSAGES/akonadi_google_resource.mo share/locale/pt_BR/LC_MESSAGES/akonadi_ical_resource.mo share/locale/pt_BR/LC_MESSAGES/akonadi_icaldir_resource.mo share/locale/pt_BR/LC_MESSAGES/akonadi_imap_resource.mo share/locale/pt_BR/LC_MESSAGES/akonadi_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/libfolderarchivesettings.mo share/locale/ro/LC_MESSAGES/accountwizard_contacts.mo share/locale/ro/LC_MESSAGES/accountwizard_ical.mo share/locale/ro/LC_MESSAGES/accountwizard_imap.mo share/locale/ro/LC_MESSAGES/accountwizard_mailbox.mo share/locale/ro/LC_MESSAGES/accountwizard_maildir.mo share/locale/ro/LC_MESSAGES/accountwizard_pop3.mo share/locale/ro/LC_MESSAGES/accountwizard_vcard.mo share/locale/ro/LC_MESSAGES/accountwizard_vcarddir.mo share/locale/ro/LC_MESSAGES/akonadi-filestore.mo share/locale/ro/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/ro/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/ro/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/ro/LC_MESSAGES/akonadi_ical_resource.mo share/locale/ro/LC_MESSAGES/akonadi_imap_resource.mo share/locale/ro/LC_MESSAGES/akonadi_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/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_etesync_resource.mo share/locale/ru/LC_MESSAGES/akonadi_ews_resource.mo share/locale/ru/LC_MESSAGES/akonadi_facebook_resource.mo share/locale/ru/LC_MESSAGES/akonadi_google_resource.mo share/locale/ru/LC_MESSAGES/akonadi_ical_resource.mo share/locale/ru/LC_MESSAGES/akonadi_icaldir_resource.mo share/locale/ru/LC_MESSAGES/akonadi_imap_resource.mo share/locale/ru/LC_MESSAGES/akonadi_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/libfolderarchivesettings.mo share/locale/se/LC_MESSAGES/accountwizard_imap.mo share/locale/se/LC_MESSAGES/accountwizard_kolab.mo share/locale/se/LC_MESSAGES/accountwizard_mailbox.mo share/locale/se/LC_MESSAGES/accountwizard_maildir.mo share/locale/se/LC_MESSAGES/accountwizard_pop3.mo share/locale/sk/LC_MESSAGES/accountwizard_contacts.mo share/locale/sk/LC_MESSAGES/accountwizard_ews.mo share/locale/sk/LC_MESSAGES/accountwizard_ical.mo share/locale/sk/LC_MESSAGES/accountwizard_imap.mo share/locale/sk/LC_MESSAGES/accountwizard_kolab.mo share/locale/sk/LC_MESSAGES/accountwizard_mailbox.mo share/locale/sk/LC_MESSAGES/accountwizard_maildir.mo share/locale/sk/LC_MESSAGES/accountwizard_pop3.mo share/locale/sk/LC_MESSAGES/accountwizard_vcard.mo share/locale/sk/LC_MESSAGES/accountwizard_vcarddir.mo share/locale/sk/LC_MESSAGES/akonadi-filestore.mo share/locale/sk/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/sk/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/sk/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/sk/LC_MESSAGES/akonadi_etesync_resource.mo share/locale/sk/LC_MESSAGES/akonadi_ews_resource.mo share/locale/sk/LC_MESSAGES/akonadi_facebook_resource.mo share/locale/sk/LC_MESSAGES/akonadi_google_resource.mo share/locale/sk/LC_MESSAGES/akonadi_ical_resource.mo share/locale/sk/LC_MESSAGES/akonadi_icaldir_resource.mo share/locale/sk/LC_MESSAGES/akonadi_imap_resource.mo share/locale/sk/LC_MESSAGES/akonadi_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/libfolderarchivesettings.mo share/locale/sl/LC_MESSAGES/accountwizard_contacts.mo share/locale/sl/LC_MESSAGES/accountwizard_ews.mo share/locale/sl/LC_MESSAGES/accountwizard_ical.mo share/locale/sl/LC_MESSAGES/accountwizard_imap.mo share/locale/sl/LC_MESSAGES/accountwizard_kolab.mo share/locale/sl/LC_MESSAGES/accountwizard_mailbox.mo share/locale/sl/LC_MESSAGES/accountwizard_maildir.mo share/locale/sl/LC_MESSAGES/accountwizard_pop3.mo share/locale/sl/LC_MESSAGES/accountwizard_vcard.mo share/locale/sl/LC_MESSAGES/accountwizard_vcarddir.mo share/locale/sl/LC_MESSAGES/akonadi-filestore.mo share/locale/sl/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/sl/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/sl/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/sl/LC_MESSAGES/akonadi_etesync_resource.mo share/locale/sl/LC_MESSAGES/akonadi_ews_resource.mo share/locale/sl/LC_MESSAGES/akonadi_facebook_resource.mo share/locale/sl/LC_MESSAGES/akonadi_google_resource.mo share/locale/sl/LC_MESSAGES/akonadi_ical_resource.mo share/locale/sl/LC_MESSAGES/akonadi_icaldir_resource.mo share/locale/sl/LC_MESSAGES/akonadi_imap_resource.mo share/locale/sl/LC_MESSAGES/akonadi_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/libfolderarchivesettings.mo share/locale/sq/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/sq/LC_MESSAGES/akonadi_ical_resource.mo share/locale/sq/LC_MESSAGES/akonadi_imap_resource.mo share/locale/sq/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/sq/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/sq/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/sq/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/sq/LC_MESSAGES/kio_akonadi.mo share/locale/sr/LC_MESSAGES/accountwizard_contacts.mo share/locale/sr/LC_MESSAGES/accountwizard_ews.mo share/locale/sr/LC_MESSAGES/accountwizard_ical.mo share/locale/sr/LC_MESSAGES/accountwizard_imap.mo share/locale/sr/LC_MESSAGES/accountwizard_kolab.mo share/locale/sr/LC_MESSAGES/accountwizard_mailbox.mo share/locale/sr/LC_MESSAGES/accountwizard_maildir.mo share/locale/sr/LC_MESSAGES/accountwizard_pop3.mo share/locale/sr/LC_MESSAGES/accountwizard_vcard.mo share/locale/sr/LC_MESSAGES/accountwizard_vcarddir.mo share/locale/sr/LC_MESSAGES/akonadi-filestore.mo share/locale/sr/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/sr/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/sr/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/sr/LC_MESSAGES/akonadi_facebook_resource.mo share/locale/sr/LC_MESSAGES/akonadi_google_resource.mo share/locale/sr/LC_MESSAGES/akonadi_ical_resource.mo share/locale/sr/LC_MESSAGES/akonadi_icaldir_resource.mo share/locale/sr/LC_MESSAGES/akonadi_imap_resource.mo share/locale/sr/LC_MESSAGES/akonadi_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/libfolderarchivesettings.mo share/locale/sr@ijekavian/LC_MESSAGES/accountwizard_contacts.mo share/locale/sr@ijekavian/LC_MESSAGES/accountwizard_ews.mo share/locale/sr@ijekavian/LC_MESSAGES/accountwizard_ical.mo share/locale/sr@ijekavian/LC_MESSAGES/accountwizard_imap.mo share/locale/sr@ijekavian/LC_MESSAGES/accountwizard_kolab.mo share/locale/sr@ijekavian/LC_MESSAGES/accountwizard_mailbox.mo share/locale/sr@ijekavian/LC_MESSAGES/accountwizard_maildir.mo share/locale/sr@ijekavian/LC_MESSAGES/accountwizard_pop3.mo share/locale/sr@ijekavian/LC_MESSAGES/accountwizard_vcard.mo share/locale/sr@ijekavian/LC_MESSAGES/accountwizard_vcarddir.mo share/locale/sr@ijekavian/LC_MESSAGES/akonadi-filestore.mo share/locale/sr@ijekavian/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/sr@ijekavian/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/sr@ijekavian/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/sr@ijekavian/LC_MESSAGES/akonadi_facebook_resource.mo share/locale/sr@ijekavian/LC_MESSAGES/akonadi_google_resource.mo share/locale/sr@ijekavian/LC_MESSAGES/akonadi_ical_resource.mo share/locale/sr@ijekavian/LC_MESSAGES/akonadi_icaldir_resource.mo share/locale/sr@ijekavian/LC_MESSAGES/akonadi_imap_resource.mo share/locale/sr@ijekavian/LC_MESSAGES/akonadi_maildir_resource.mo share/locale/sr@ijekavian/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/sr@ijekavian/LC_MESSAGES/akonadi_mbox_resource.mo share/locale/sr@ijekavian/LC_MESSAGES/akonadi_migration_agent.mo share/locale/sr@ijekavian/LC_MESSAGES/akonadi_mixedmaildir_resource.mo share/locale/sr@ijekavian/LC_MESSAGES/akonadi_newmailnotifier_agent.mo share/locale/sr@ijekavian/LC_MESSAGES/akonadi_openxchange_resource.mo share/locale/sr@ijekavian/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/sr@ijekavian/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/sr@ijekavian/LC_MESSAGES/akonadi_tomboynotes_resource.mo share/locale/sr@ijekavian/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/sr@ijekavian/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/sr@ijekavian/LC_MESSAGES/gid-migrator.mo share/locale/sr@ijekavian/LC_MESSAGES/kio_akonadi.mo share/locale/sr@ijekavian/LC_MESSAGES/libfolderarchivesettings.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/accountwizard_contacts.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/accountwizard_ews.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/accountwizard_ical.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/accountwizard_imap.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/accountwizard_kolab.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/accountwizard_mailbox.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/accountwizard_maildir.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/accountwizard_pop3.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/accountwizard_vcard.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/accountwizard_vcarddir.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/akonadi-filestore.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/akonadi_facebook_resource.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/akonadi_google_resource.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/akonadi_ical_resource.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/akonadi_icaldir_resource.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/akonadi_imap_resource.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/akonadi_maildir_resource.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/akonadi_mbox_resource.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/akonadi_migration_agent.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/akonadi_mixedmaildir_resource.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/akonadi_newmailnotifier_agent.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/akonadi_openxchange_resource.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/akonadi_tomboynotes_resource.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/gid-migrator.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kio_akonadi.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/libfolderarchivesettings.mo share/locale/sr@latin/LC_MESSAGES/accountwizard_contacts.mo share/locale/sr@latin/LC_MESSAGES/accountwizard_ews.mo share/locale/sr@latin/LC_MESSAGES/accountwizard_ical.mo share/locale/sr@latin/LC_MESSAGES/accountwizard_imap.mo share/locale/sr@latin/LC_MESSAGES/accountwizard_kolab.mo share/locale/sr@latin/LC_MESSAGES/accountwizard_mailbox.mo share/locale/sr@latin/LC_MESSAGES/accountwizard_maildir.mo share/locale/sr@latin/LC_MESSAGES/accountwizard_pop3.mo share/locale/sr@latin/LC_MESSAGES/accountwizard_vcard.mo share/locale/sr@latin/LC_MESSAGES/accountwizard_vcarddir.mo share/locale/sr@latin/LC_MESSAGES/akonadi-filestore.mo share/locale/sr@latin/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/sr@latin/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/sr@latin/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/sr@latin/LC_MESSAGES/akonadi_facebook_resource.mo share/locale/sr@latin/LC_MESSAGES/akonadi_google_resource.mo share/locale/sr@latin/LC_MESSAGES/akonadi_ical_resource.mo share/locale/sr@latin/LC_MESSAGES/akonadi_icaldir_resource.mo share/locale/sr@latin/LC_MESSAGES/akonadi_imap_resource.mo share/locale/sr@latin/LC_MESSAGES/akonadi_maildir_resource.mo share/locale/sr@latin/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/sr@latin/LC_MESSAGES/akonadi_mbox_resource.mo share/locale/sr@latin/LC_MESSAGES/akonadi_migration_agent.mo share/locale/sr@latin/LC_MESSAGES/akonadi_mixedmaildir_resource.mo share/locale/sr@latin/LC_MESSAGES/akonadi_newmailnotifier_agent.mo share/locale/sr@latin/LC_MESSAGES/akonadi_openxchange_resource.mo share/locale/sr@latin/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/sr@latin/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/sr@latin/LC_MESSAGES/akonadi_tomboynotes_resource.mo share/locale/sr@latin/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/sr@latin/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/sr@latin/LC_MESSAGES/gid-migrator.mo share/locale/sr@latin/LC_MESSAGES/kio_akonadi.mo share/locale/sr@latin/LC_MESSAGES/libfolderarchivesettings.mo share/locale/sv/LC_MESSAGES/accountwizard_contacts.mo share/locale/sv/LC_MESSAGES/accountwizard_ews.mo share/locale/sv/LC_MESSAGES/accountwizard_ical.mo share/locale/sv/LC_MESSAGES/accountwizard_imap.mo share/locale/sv/LC_MESSAGES/accountwizard_kolab.mo share/locale/sv/LC_MESSAGES/accountwizard_mailbox.mo share/locale/sv/LC_MESSAGES/accountwizard_maildir.mo share/locale/sv/LC_MESSAGES/accountwizard_pop3.mo share/locale/sv/LC_MESSAGES/accountwizard_vcard.mo share/locale/sv/LC_MESSAGES/accountwizard_vcarddir.mo share/locale/sv/LC_MESSAGES/akonadi-filestore.mo share/locale/sv/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/sv/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/sv/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/sv/LC_MESSAGES/akonadi_etesync_resource.mo share/locale/sv/LC_MESSAGES/akonadi_ews_resource.mo share/locale/sv/LC_MESSAGES/akonadi_facebook_resource.mo share/locale/sv/LC_MESSAGES/akonadi_google_resource.mo share/locale/sv/LC_MESSAGES/akonadi_ical_resource.mo share/locale/sv/LC_MESSAGES/akonadi_icaldir_resource.mo share/locale/sv/LC_MESSAGES/akonadi_imap_resource.mo share/locale/sv/LC_MESSAGES/akonadi_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/libfolderarchivesettings.mo share/locale/th/LC_MESSAGES/accountwizard_imap.mo share/locale/th/LC_MESSAGES/accountwizard_mailbox.mo share/locale/th/LC_MESSAGES/accountwizard_maildir.mo share/locale/th/LC_MESSAGES/accountwizard_pop3.mo share/locale/th/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/th/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/th/LC_MESSAGES/akonadi_ical_resource.mo share/locale/tr/LC_MESSAGES/accountwizard_contacts.mo share/locale/tr/LC_MESSAGES/accountwizard_ews.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_etesync_resource.mo share/locale/tr/LC_MESSAGES/akonadi_ews_resource.mo share/locale/tr/LC_MESSAGES/akonadi_facebook_resource.mo share/locale/tr/LC_MESSAGES/akonadi_google_resource.mo share/locale/tr/LC_MESSAGES/akonadi_ical_resource.mo share/locale/tr/LC_MESSAGES/akonadi_icaldir_resource.mo share/locale/tr/LC_MESSAGES/akonadi_imap_resource.mo share/locale/tr/LC_MESSAGES/akonadi_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/libfolderarchivesettings.mo share/locale/ug/LC_MESSAGES/accountwizard_ical.mo share/locale/ug/LC_MESSAGES/accountwizard_imap.mo share/locale/ug/LC_MESSAGES/accountwizard_mailbox.mo share/locale/ug/LC_MESSAGES/accountwizard_maildir.mo share/locale/ug/LC_MESSAGES/accountwizard_pop3.mo share/locale/ug/LC_MESSAGES/akonadi-filestore.mo share/locale/ug/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/ug/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/ug/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/ug/LC_MESSAGES/akonadi_google_resource.mo share/locale/ug/LC_MESSAGES/akonadi_ical_resource.mo share/locale/ug/LC_MESSAGES/akonadi_icaldir_resource.mo share/locale/ug/LC_MESSAGES/akonadi_imap_resource.mo share/locale/ug/LC_MESSAGES/akonadi_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/uk/LC_MESSAGES/accountwizard_contacts.mo share/locale/uk/LC_MESSAGES/accountwizard_ews.mo share/locale/uk/LC_MESSAGES/accountwizard_ical.mo share/locale/uk/LC_MESSAGES/accountwizard_imap.mo share/locale/uk/LC_MESSAGES/accountwizard_kolab.mo share/locale/uk/LC_MESSAGES/accountwizard_mailbox.mo share/locale/uk/LC_MESSAGES/accountwizard_maildir.mo share/locale/uk/LC_MESSAGES/accountwizard_pop3.mo share/locale/uk/LC_MESSAGES/accountwizard_vcard.mo share/locale/uk/LC_MESSAGES/accountwizard_vcarddir.mo share/locale/uk/LC_MESSAGES/akonadi-filestore.mo share/locale/uk/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/uk/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/uk/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/uk/LC_MESSAGES/akonadi_etesync_resource.mo share/locale/uk/LC_MESSAGES/akonadi_ews_resource.mo share/locale/uk/LC_MESSAGES/akonadi_facebook_resource.mo share/locale/uk/LC_MESSAGES/akonadi_google_resource.mo share/locale/uk/LC_MESSAGES/akonadi_ical_resource.mo share/locale/uk/LC_MESSAGES/akonadi_icaldir_resource.mo share/locale/uk/LC_MESSAGES/akonadi_imap_resource.mo share/locale/uk/LC_MESSAGES/akonadi_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/libfolderarchivesettings.mo share/locale/zh_CN/LC_MESSAGES/accountwizard_contacts.mo share/locale/zh_CN/LC_MESSAGES/accountwizard_ews.mo share/locale/zh_CN/LC_MESSAGES/accountwizard_ical.mo share/locale/zh_CN/LC_MESSAGES/accountwizard_imap.mo share/locale/zh_CN/LC_MESSAGES/accountwizard_kolab.mo share/locale/zh_CN/LC_MESSAGES/accountwizard_mailbox.mo share/locale/zh_CN/LC_MESSAGES/accountwizard_maildir.mo share/locale/zh_CN/LC_MESSAGES/accountwizard_pop3.mo share/locale/zh_CN/LC_MESSAGES/accountwizard_vcard.mo share/locale/zh_CN/LC_MESSAGES/accountwizard_vcarddir.mo share/locale/zh_CN/LC_MESSAGES/akonadi-filestore.mo share/locale/zh_CN/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/zh_CN/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/zh_CN/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/zh_CN/LC_MESSAGES/akonadi_etesync_resource.mo share/locale/zh_CN/LC_MESSAGES/akonadi_ews_resource.mo share/locale/zh_CN/LC_MESSAGES/akonadi_facebook_resource.mo share/locale/zh_CN/LC_MESSAGES/akonadi_google_resource.mo share/locale/zh_CN/LC_MESSAGES/akonadi_ical_resource.mo share/locale/zh_CN/LC_MESSAGES/akonadi_icaldir_resource.mo share/locale/zh_CN/LC_MESSAGES/akonadi_imap_resource.mo share/locale/zh_CN/LC_MESSAGES/akonadi_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/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_etesync_resource.mo share/locale/zh_TW/LC_MESSAGES/akonadi_ews_resource.mo share/locale/zh_TW/LC_MESSAGES/akonadi_facebook_resource.mo share/locale/zh_TW/LC_MESSAGES/akonadi_google_resource.mo share/locale/zh_TW/LC_MESSAGES/akonadi_ical_resource.mo share/locale/zh_TW/LC_MESSAGES/akonadi_icaldir_resource.mo share/locale/zh_TW/LC_MESSAGES/akonadi_imap_resource.mo share/locale/zh_TW/LC_MESSAGES/akonadi_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/libfolderarchivesettings.mo share/mime/packages/kdepim-mime.xml share/qlogging-categories5/kdepim-runtime.categories share/qlogging-categories5/kdepim-runtime.renamecategories diff --git a/deskutils/keditbookmarks/distinfo b/deskutils/keditbookmarks/distinfo index 6a67795b6764..84381cec95e9 100644 --- a/deskutils/keditbookmarks/distinfo +++ b/deskutils/keditbookmarks/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1677828319 -SHA256 (KDE/release-service/22.12.3/keditbookmarks-22.12.3.tar.xz) = a647b069bf1607f366d549a148c785894b03f5b3ea5fad91319eece114be2b2c -SIZE (KDE/release-service/22.12.3/keditbookmarks-22.12.3.tar.xz) = 236572 +TIMESTAMP = 1681548342 +SHA256 (KDE/release-service/23.04.0/keditbookmarks-23.04.0.tar.xz) = dd0296cc85ac8de39eebb96ff2322598acb6ab3fec0dddabb033489419c3558a +SIZE (KDE/release-service/23.04.0/keditbookmarks-23.04.0.tar.xz) = 238820 diff --git a/deskutils/keditbookmarks/pkg-plist b/deskutils/keditbookmarks/pkg-plist index be3c85905fe8..06dd439be9dd 100644 --- a/deskutils/keditbookmarks/pkg-plist +++ b/deskutils/keditbookmarks/pkg-plist @@ -1,111 +1,112 @@ bin/kbookmarkmerger bin/keditbookmarks lib/libkbookmarkmodel_private.so lib/libkbookmarkmodel_private.so.5.97.0 lib/libkbookmarkmodel_private.so.6 man/ca/man1/kbookmarkmerger.1.gz man/da/man1/kbookmarkmerger.1.gz man/de/man1/kbookmarkmerger.1.gz man/el/man1/kbookmarkmerger.1.gz man/es/man1/kbookmarkmerger.1.gz man/et/man1/kbookmarkmerger.1.gz man/fr/man1/kbookmarkmerger.1.gz man/it/man1/kbookmarkmerger.1.gz man/man1/kbookmarkmerger.1.gz man/nb/man1/kbookmarkmerger.1.gz man/nl/man1/kbookmarkmerger.1.gz man/pl/man1/kbookmarkmerger.1.gz man/pt/man1/kbookmarkmerger.1.gz man/pt_BR/man1/kbookmarkmerger.1.gz man/ru/man1/kbookmarkmerger.1.gz man/sr/man1/kbookmarkmerger.1.gz man/sr@latin/man1/kbookmarkmerger.1.gz man/sv/man1/kbookmarkmerger.1.gz +man/tr/man1/kbookmarkmerger.1.gz man/uk/man1/kbookmarkmerger.1.gz man/zh_CN/man1/kbookmarkmerger.1.gz share/applications/org.kde.keditbookmarks.desktop share/config.kcfg/keditbookmarks.kcfg share/locale/ar/LC_MESSAGES/keditbookmarks.mo share/locale/be/LC_MESSAGES/keditbookmarks.mo share/locale/be@latin/LC_MESSAGES/keditbookmarks.mo share/locale/bg/LC_MESSAGES/keditbookmarks.mo share/locale/bn_IN/LC_MESSAGES/keditbookmarks.mo share/locale/bs/LC_MESSAGES/keditbookmarks.mo share/locale/ca/LC_MESSAGES/keditbookmarks.mo share/locale/ca@valencia/LC_MESSAGES/keditbookmarks.mo share/locale/cs/LC_MESSAGES/keditbookmarks.mo share/locale/csb/LC_MESSAGES/keditbookmarks.mo share/locale/da/LC_MESSAGES/keditbookmarks.mo share/locale/de/LC_MESSAGES/keditbookmarks.mo share/locale/el/LC_MESSAGES/keditbookmarks.mo share/locale/en_GB/LC_MESSAGES/keditbookmarks.mo share/locale/eo/LC_MESSAGES/keditbookmarks.mo share/locale/es/LC_MESSAGES/keditbookmarks.mo share/locale/et/LC_MESSAGES/keditbookmarks.mo share/locale/eu/LC_MESSAGES/keditbookmarks.mo share/locale/fa/LC_MESSAGES/keditbookmarks.mo share/locale/fi/LC_MESSAGES/keditbookmarks.mo share/locale/fr/LC_MESSAGES/keditbookmarks.mo share/locale/fy/LC_MESSAGES/keditbookmarks.mo share/locale/ga/LC_MESSAGES/keditbookmarks.mo share/locale/gl/LC_MESSAGES/keditbookmarks.mo share/locale/gu/LC_MESSAGES/keditbookmarks.mo share/locale/he/LC_MESSAGES/keditbookmarks.mo share/locale/hi/LC_MESSAGES/keditbookmarks.mo share/locale/hne/LC_MESSAGES/keditbookmarks.mo share/locale/hr/LC_MESSAGES/keditbookmarks.mo share/locale/hsb/LC_MESSAGES/keditbookmarks.mo share/locale/hu/LC_MESSAGES/keditbookmarks.mo share/locale/ia/LC_MESSAGES/keditbookmarks.mo share/locale/id/LC_MESSAGES/keditbookmarks.mo share/locale/is/LC_MESSAGES/keditbookmarks.mo share/locale/it/LC_MESSAGES/keditbookmarks.mo share/locale/ja/LC_MESSAGES/keditbookmarks.mo share/locale/ka/LC_MESSAGES/keditbookmarks.mo share/locale/kk/LC_MESSAGES/keditbookmarks.mo share/locale/km/LC_MESSAGES/keditbookmarks.mo share/locale/kn/LC_MESSAGES/keditbookmarks.mo share/locale/ko/LC_MESSAGES/keditbookmarks.mo share/locale/ku/LC_MESSAGES/keditbookmarks.mo share/locale/lt/LC_MESSAGES/keditbookmarks.mo share/locale/lv/LC_MESSAGES/keditbookmarks.mo share/locale/mai/LC_MESSAGES/keditbookmarks.mo share/locale/mk/LC_MESSAGES/keditbookmarks.mo share/locale/ml/LC_MESSAGES/keditbookmarks.mo share/locale/mr/LC_MESSAGES/keditbookmarks.mo share/locale/ms/LC_MESSAGES/keditbookmarks.mo share/locale/nb/LC_MESSAGES/keditbookmarks.mo share/locale/nds/LC_MESSAGES/keditbookmarks.mo share/locale/ne/LC_MESSAGES/keditbookmarks.mo share/locale/nl/LC_MESSAGES/keditbookmarks.mo share/locale/nn/LC_MESSAGES/keditbookmarks.mo share/locale/oc/LC_MESSAGES/keditbookmarks.mo share/locale/or/LC_MESSAGES/keditbookmarks.mo share/locale/pa/LC_MESSAGES/keditbookmarks.mo share/locale/pl/LC_MESSAGES/keditbookmarks.mo share/locale/pt/LC_MESSAGES/keditbookmarks.mo share/locale/pt_BR/LC_MESSAGES/keditbookmarks.mo share/locale/ro/LC_MESSAGES/keditbookmarks.mo share/locale/ru/LC_MESSAGES/keditbookmarks.mo share/locale/se/LC_MESSAGES/keditbookmarks.mo share/locale/si/LC_MESSAGES/keditbookmarks.mo share/locale/sk/LC_MESSAGES/keditbookmarks.mo share/locale/sl/LC_MESSAGES/keditbookmarks.mo share/locale/sq/LC_MESSAGES/keditbookmarks.mo share/locale/sr/LC_MESSAGES/keditbookmarks.mo share/locale/sr@ijekavian/LC_MESSAGES/keditbookmarks.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/keditbookmarks.mo share/locale/sr@latin/LC_MESSAGES/keditbookmarks.mo share/locale/sv/LC_MESSAGES/keditbookmarks.mo share/locale/ta/LC_MESSAGES/keditbookmarks.mo share/locale/te/LC_MESSAGES/keditbookmarks.mo share/locale/tg/LC_MESSAGES/keditbookmarks.mo share/locale/th/LC_MESSAGES/keditbookmarks.mo share/locale/tr/LC_MESSAGES/keditbookmarks.mo share/locale/ug/LC_MESSAGES/keditbookmarks.mo share/locale/uk/LC_MESSAGES/keditbookmarks.mo share/locale/vi/LC_MESSAGES/keditbookmarks.mo share/locale/wa/LC_MESSAGES/keditbookmarks.mo share/locale/zh_CN/LC_MESSAGES/keditbookmarks.mo share/locale/zh_TW/LC_MESSAGES/keditbookmarks.mo share/qlogging-categories5/keditbookmarks.categories diff --git a/deskutils/kfind/distinfo b/deskutils/kfind/distinfo index 93bd3af06119..9dd8750709ab 100644 --- a/deskutils/kfind/distinfo +++ b/deskutils/kfind/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1677828330 -SHA256 (KDE/release-service/22.12.3/kfind-22.12.3.tar.xz) = fd4cae69f08f00f49d6ec603ae746ffab6f64305cc6d8381b803af6f99d115a8 -SIZE (KDE/release-service/22.12.3/kfind-22.12.3.tar.xz) = 340372 +TIMESTAMP = 1681548347 +SHA256 (KDE/release-service/23.04.0/kfind-23.04.0.tar.xz) = e806f337e8ed689a7bdd0066360a81dfe38dd1d1fc79ec1637a5294cf5364ceb +SIZE (KDE/release-service/23.04.0/kfind-23.04.0.tar.xz) = 342804 diff --git a/deskutils/kfind/pkg-plist b/deskutils/kfind/pkg-plist index ec7d7b87bd6c..fb8ac8db9997 100644 --- a/deskutils/kfind/pkg-plist +++ b/deskutils/kfind/pkg-plist @@ -1,120 +1,121 @@ bin/kfind man/ca/man1/kfind.1.gz man/de/man1/kfind.1.gz man/es/man1/kfind.1.gz man/fr/man1/kfind.1.gz man/it/man1/kfind.1.gz man/lt/man1/kfind.1.gz man/man1/kfind.1.gz man/nb/man1/kfind.1.gz man/nl/man1/kfind.1.gz man/pl/man1/kfind.1.gz man/pt/man1/kfind.1.gz man/pt_BR/man1/kfind.1.gz man/ru/man1/kfind.1.gz man/sr/man1/kfind.1.gz man/sr@latin/man1/kfind.1.gz man/sv/man1/kfind.1.gz +man/tr/man1/kfind.1.gz man/uk/man1/kfind.1.gz share/applications/org.kde.kfind.desktop share/icons/hicolor/128x128/apps/kfind.png share/icons/hicolor/16x16/apps/kfind.png share/icons/hicolor/22x22/apps/kfind.png share/icons/hicolor/32x32/apps/kfind.png share/icons/hicolor/48x48/apps/kfind.png share/icons/hicolor/64x64/apps/kfind.png share/icons/hicolor/scalable/apps/kfind.svgz share/locale/af/LC_MESSAGES/kfind.mo share/locale/ar/LC_MESSAGES/kfind.mo share/locale/az/LC_MESSAGES/kfind.mo share/locale/be/LC_MESSAGES/kfind.mo share/locale/be@latin/LC_MESSAGES/kfind.mo share/locale/bg/LC_MESSAGES/kfind.mo share/locale/bn/LC_MESSAGES/kfind.mo share/locale/bn_IN/LC_MESSAGES/kfind.mo share/locale/br/LC_MESSAGES/kfind.mo share/locale/bs/LC_MESSAGES/kfind.mo share/locale/ca/LC_MESSAGES/kfind.mo share/locale/ca@valencia/LC_MESSAGES/kfind.mo share/locale/cs/LC_MESSAGES/kfind.mo share/locale/csb/LC_MESSAGES/kfind.mo share/locale/cy/LC_MESSAGES/kfind.mo share/locale/da/LC_MESSAGES/kfind.mo share/locale/de/LC_MESSAGES/kfind.mo share/locale/el/LC_MESSAGES/kfind.mo share/locale/en_GB/LC_MESSAGES/kfind.mo share/locale/eo/LC_MESSAGES/kfind.mo share/locale/es/LC_MESSAGES/kfind.mo share/locale/et/LC_MESSAGES/kfind.mo share/locale/eu/LC_MESSAGES/kfind.mo share/locale/fa/LC_MESSAGES/kfind.mo share/locale/fi/LC_MESSAGES/kfind.mo share/locale/fr/LC_MESSAGES/kfind.mo share/locale/fy/LC_MESSAGES/kfind.mo share/locale/ga/LC_MESSAGES/kfind.mo share/locale/gl/LC_MESSAGES/kfind.mo share/locale/gu/LC_MESSAGES/kfind.mo share/locale/he/LC_MESSAGES/kfind.mo share/locale/hi/LC_MESSAGES/kfind.mo share/locale/hne/LC_MESSAGES/kfind.mo share/locale/hr/LC_MESSAGES/kfind.mo share/locale/hsb/LC_MESSAGES/kfind.mo share/locale/hu/LC_MESSAGES/kfind.mo share/locale/ia/LC_MESSAGES/kfind.mo share/locale/id/LC_MESSAGES/kfind.mo share/locale/ie/LC_MESSAGES/kfind.mo share/locale/is/LC_MESSAGES/kfind.mo share/locale/it/LC_MESSAGES/kfind.mo share/locale/ja/LC_MESSAGES/kfind.mo share/locale/ka/LC_MESSAGES/kfind.mo share/locale/kk/LC_MESSAGES/kfind.mo share/locale/km/LC_MESSAGES/kfind.mo share/locale/kn/LC_MESSAGES/kfind.mo share/locale/ko/LC_MESSAGES/kfind.mo share/locale/ku/LC_MESSAGES/kfind.mo share/locale/lt/LC_MESSAGES/kfind.mo share/locale/lv/LC_MESSAGES/kfind.mo share/locale/mai/LC_MESSAGES/kfind.mo share/locale/mk/LC_MESSAGES/kfind.mo share/locale/ml/LC_MESSAGES/kfind.mo share/locale/mr/LC_MESSAGES/kfind.mo share/locale/ms/LC_MESSAGES/kfind.mo share/locale/nb/LC_MESSAGES/kfind.mo share/locale/nds/LC_MESSAGES/kfind.mo share/locale/ne/LC_MESSAGES/kfind.mo share/locale/nl/LC_MESSAGES/kfind.mo share/locale/nn/LC_MESSAGES/kfind.mo share/locale/oc/LC_MESSAGES/kfind.mo share/locale/or/LC_MESSAGES/kfind.mo share/locale/pa/LC_MESSAGES/kfind.mo share/locale/pl/LC_MESSAGES/kfind.mo share/locale/pt/LC_MESSAGES/kfind.mo share/locale/pt_BR/LC_MESSAGES/kfind.mo share/locale/ro/LC_MESSAGES/kfind.mo share/locale/ru/LC_MESSAGES/kfind.mo share/locale/se/LC_MESSAGES/kfind.mo share/locale/si/LC_MESSAGES/kfind.mo share/locale/sk/LC_MESSAGES/kfind.mo share/locale/sl/LC_MESSAGES/kfind.mo share/locale/sq/LC_MESSAGES/kfind.mo share/locale/sr/LC_MESSAGES/kfind.mo share/locale/sr@ijekavian/LC_MESSAGES/kfind.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kfind.mo share/locale/sr@latin/LC_MESSAGES/kfind.mo share/locale/sv/LC_MESSAGES/kfind.mo share/locale/ta/LC_MESSAGES/kfind.mo share/locale/te/LC_MESSAGES/kfind.mo share/locale/tg/LC_MESSAGES/kfind.mo share/locale/th/LC_MESSAGES/kfind.mo share/locale/tr/LC_MESSAGES/kfind.mo share/locale/ug/LC_MESSAGES/kfind.mo share/locale/uk/LC_MESSAGES/kfind.mo share/locale/uz/LC_MESSAGES/kfind.mo share/locale/uz@cyrillic/LC_MESSAGES/kfind.mo share/locale/vi/LC_MESSAGES/kfind.mo share/locale/wa/LC_MESSAGES/kfind.mo share/locale/xh/LC_MESSAGES/kfind.mo share/locale/zh_CN/LC_MESSAGES/kfind.mo share/locale/zh_TW/LC_MESSAGES/kfind.mo share/metainfo/org.kde.kfind.appdata.xml share/qlogging-categories5/kfind.categories diff --git a/deskutils/kmail-account-wizard/distinfo b/deskutils/kmail-account-wizard/distinfo index c91b18796bb4..67a78ab06f37 100644 --- a/deskutils/kmail-account-wizard/distinfo +++ b/deskutils/kmail-account-wizard/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1677828325 -SHA256 (KDE/release-service/22.12.3/kmail-account-wizard-22.12.3.tar.xz) = 88cb050c87ae796628e881804a69b098a0257b7273f0ef5eb7e753767a274546 -SIZE (KDE/release-service/22.12.3/kmail-account-wizard-22.12.3.tar.xz) = 184268 +TIMESTAMP = 1681548339 +SHA256 (KDE/release-service/23.04.0/kmail-account-wizard-23.04.0.tar.xz) = 1f1ac3bf9070d5f78270e4c00ba936ca6212295facba205251999eefe63518c4 +SIZE (KDE/release-service/23.04.0/kmail-account-wizard-23.04.0.tar.xz) = 184560 diff --git a/deskutils/kmail/distinfo b/deskutils/kmail/distinfo index 2000dfc296dd..35af13ff3de3 100644 --- a/deskutils/kmail/distinfo +++ b/deskutils/kmail/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1677828316 -SHA256 (KDE/release-service/22.12.3/kmail-22.12.3.tar.xz) = 786d2a02596cdf3252403a9de2c4b37f08b50cbbbbc758086beb57bdd0d1028e -SIZE (KDE/release-service/22.12.3/kmail-22.12.3.tar.xz) = 7659560 +TIMESTAMP = 1681548341 +SHA256 (KDE/release-service/23.04.0/kmail-23.04.0.tar.xz) = 4a06cd4bddef1d507898f42203b334aed8e3bc50759fd46f2095dec00c1fd9bb +SIZE (KDE/release-service/23.04.0/kmail-23.04.0.tar.xz) = 7645140 diff --git a/deskutils/kmail/pkg-plist b/deskutils/kmail/pkg-plist index 630931a4e0d2..5f2f483f45a9 100644 --- a/deskutils/kmail/pkg-plist +++ b/deskutils/kmail/pkg-plist @@ -1,499 +1,508 @@ bin/akonadi_archivemail_agent bin/akonadi_followupreminder_agent bin/akonadi_mailfilter_agent bin/akonadi_mailmerge_agent bin/akonadi_sendlater_agent bin/akonadi_unifiedmailbox_agent bin/kmail bin/kmail-refresh-settings bin/ktnef lib/libkmailprivate.so.5 lib/libkmailprivate.so.%%KDE_APPLICATIONS_SHLIB_VER%% %%QT_PLUGINDIR%%/kmailpart.so %%QT_PLUGINDIR%%/pim5/akonadi/config/archivemailagentconfig.so %%QT_PLUGINDIR%%/pim5/akonadi/config/followupreminderagentconfig.so %%QT_PLUGINDIR%%/pim5/kcms/kmail/kcm_kmail_accounts.so %%QT_PLUGINDIR%%/pim5/kcms/kmail/kcm_kmail_appearance.so %%QT_PLUGINDIR%%/pim5/kcms/kmail/kcm_kmail_composer.so %%QT_PLUGINDIR%%/pim5/kcms/kmail/kcm_kmail_misc.so %%QT_PLUGINDIR%%/pim5/kcms/kmail/kcm_kmail_plugins.so %%QT_PLUGINDIR%%/pim5/kcms/kmail/kcm_kmail_security.so %%QT_PLUGINDIR%%/pim5/kcms/summary/kcmkmailsummary.so %%QT_PLUGINDIR%%/pim5/kcms/summary/kcmkontactsummary.so %%QT_PLUGINDIR%%/pim5/kontact/kontact_kmailplugin.so %%QT_PLUGINDIR%%/pim5/kontact/kontact_summaryplugin.so share/akonadi/agents/archivemailagent.desktop share/akonadi/agents/followupreminder.desktop share/akonadi/agents/mailfilteragent.desktop share/akonadi/agents/mailmergeagent.desktop share/akonadi/agents/sendlateragent.desktop share/akonadi/agents/unifiedmailboxagent.desktop share/applications/kmail_view.desktop share/applications/org.kde.kmail-refresh-settings.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/dbus-1/services/org.kde.kmail.service share/icons/breeze-dark/16x16/emblems/gpg-key-trust-level-0.svg share/icons/breeze-dark/16x16/emblems/gpg-key-trust-level-1.svg share/icons/breeze-dark/16x16/emblems/gpg-key-trust-level-2.svg share/icons/breeze-dark/16x16/emblems/gpg-key-trust-level-3.svg share/icons/breeze-dark/16x16/emblems/gpg-key-trust-level-4.svg share/icons/breeze-dark/22x22/emblems/gpg-key-trust-level-0.svg share/icons/breeze-dark/22x22/emblems/gpg-key-trust-level-1.svg share/icons/breeze-dark/22x22/emblems/gpg-key-trust-level-2.svg share/icons/breeze-dark/22x22/emblems/gpg-key-trust-level-3.svg share/icons/breeze-dark/22x22/emblems/gpg-key-trust-level-4.svg share/icons/breeze-dark/8x8/emblems/gpg-key-trust-level-0.svg share/icons/breeze-dark/8x8/emblems/gpg-key-trust-level-1.svg share/icons/breeze-dark/8x8/emblems/gpg-key-trust-level-2.svg share/icons/breeze-dark/8x8/emblems/gpg-key-trust-level-3.svg share/icons/breeze-dark/8x8/emblems/gpg-key-trust-level-4.svg share/icons/hicolor/128x128/apps/kmail.png share/icons/hicolor/16x16/apps/kmail.png share/icons/hicolor/16x16/emblems/gpg-key-trust-level-0.svg share/icons/hicolor/16x16/emblems/gpg-key-trust-level-1.svg share/icons/hicolor/16x16/emblems/gpg-key-trust-level-2.svg share/icons/hicolor/16x16/emblems/gpg-key-trust-level-3.svg share/icons/hicolor/16x16/emblems/gpg-key-trust-level-4.svg share/icons/hicolor/22x22/actions/ktnef_extract_all_to.png share/icons/hicolor/22x22/actions/ktnef_extract_to.png share/icons/hicolor/22x22/apps/kmail.png share/icons/hicolor/22x22/emblems/gpg-key-trust-level-0.svg share/icons/hicolor/22x22/emblems/gpg-key-trust-level-1.svg share/icons/hicolor/22x22/emblems/gpg-key-trust-level-2.svg share/icons/hicolor/22x22/emblems/gpg-key-trust-level-3.svg share/icons/hicolor/22x22/emblems/gpg-key-trust-level-4.svg share/icons/hicolor/32x32/apps/kmail.png share/icons/hicolor/48x48/apps/kmail.png share/icons/hicolor/48x48/apps/ktnef.png share/icons/hicolor/64x64/apps/kmail.png share/icons/hicolor/8x8/emblems/gpg-key-trust-level-0.svg share/icons/hicolor/8x8/emblems/gpg-key-trust-level-1.svg share/icons/hicolor/8x8/emblems/gpg-key-trust-level-2.svg share/icons/hicolor/8x8/emblems/gpg-key-trust-level-3.svg share/icons/hicolor/8x8/emblems/gpg-key-trust-level-4.svg share/icons/hicolor/scalable/apps/kmail.svg share/kmail2/pics/pgp-keys.png share/knotifications5/akonadi_archivemail_agent.notifyrc share/knotifications5/akonadi_followupreminder_agent.notifyrc share/knotifications5/akonadi_mailfilter_agent.notifyrc share/knotifications5/akonadi_mailmerge_agent.notifyrc share/knotifications5/akonadi_sendlater_agent.notifyrc share/knotifications5/kmail2.notifyrc share/kxmlgui5/kontactsummary/kontactsummary_part.rc share/locale/af/LC_MESSAGES/kmail.mo 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_mailmerge_agent.mo share/locale/ar/LC_MESSAGES/akonadi_sendlater_agent.mo share/locale/ar/LC_MESSAGES/akonadi_unifiedmailbox_agent.mo share/locale/ar/LC_MESSAGES/kmail-refresh-settings.mo share/locale/ar/LC_MESSAGES/kmail.mo share/locale/ar/LC_MESSAGES/ktnef.mo share/locale/az/LC_MESSAGES/akonadi_archivemail_agent.mo share/locale/az/LC_MESSAGES/akonadi_followupreminder_agent.mo share/locale/az/LC_MESSAGES/akonadi_mailfilter_agent.mo share/locale/az/LC_MESSAGES/akonadi_mailmerge_agent.mo share/locale/az/LC_MESSAGES/akonadi_sendlater_agent.mo share/locale/az/LC_MESSAGES/akonadi_unifiedmailbox_agent.mo share/locale/az/LC_MESSAGES/kmail-refresh-settings.mo share/locale/az/LC_MESSAGES/kmail.mo share/locale/az/LC_MESSAGES/ktnef.mo share/locale/be/LC_MESSAGES/kmail.mo share/locale/bg/LC_MESSAGES/akonadi_archivemail_agent.mo share/locale/bg/LC_MESSAGES/akonadi_followupreminder_agent.mo share/locale/bg/LC_MESSAGES/akonadi_mailfilter_agent.mo share/locale/bg/LC_MESSAGES/akonadi_mailmerge_agent.mo share/locale/bg/LC_MESSAGES/akonadi_sendlater_agent.mo share/locale/bg/LC_MESSAGES/akonadi_unifiedmailbox_agent.mo share/locale/bg/LC_MESSAGES/kmail-refresh-settings.mo share/locale/bg/LC_MESSAGES/kmail.mo share/locale/bg/LC_MESSAGES/ktnef.mo share/locale/bn/LC_MESSAGES/kmail.mo share/locale/br/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_mailmerge_agent.mo share/locale/ca/LC_MESSAGES/akonadi_sendlater_agent.mo share/locale/ca/LC_MESSAGES/akonadi_unifiedmailbox_agent.mo share/locale/ca/LC_MESSAGES/kmail-refresh-settings.mo share/locale/ca/LC_MESSAGES/kmail.mo share/locale/ca/LC_MESSAGES/ktnef.mo share/locale/ca@valencia/LC_MESSAGES/akonadi_archivemail_agent.mo share/locale/ca@valencia/LC_MESSAGES/akonadi_followupreminder_agent.mo share/locale/ca@valencia/LC_MESSAGES/akonadi_mailfilter_agent.mo share/locale/ca@valencia/LC_MESSAGES/akonadi_mailmerge_agent.mo share/locale/ca@valencia/LC_MESSAGES/akonadi_sendlater_agent.mo share/locale/ca@valencia/LC_MESSAGES/akonadi_unifiedmailbox_agent.mo share/locale/ca@valencia/LC_MESSAGES/kmail-refresh-settings.mo share/locale/ca@valencia/LC_MESSAGES/kmail.mo share/locale/ca@valencia/LC_MESSAGES/ktnef.mo share/locale/cs/LC_MESSAGES/akonadi_archivemail_agent.mo share/locale/cs/LC_MESSAGES/akonadi_followupreminder_agent.mo share/locale/cs/LC_MESSAGES/akonadi_mailfilter_agent.mo share/locale/cs/LC_MESSAGES/akonadi_mailmerge_agent.mo share/locale/cs/LC_MESSAGES/akonadi_sendlater_agent.mo share/locale/cs/LC_MESSAGES/akonadi_unifiedmailbox_agent.mo share/locale/cs/LC_MESSAGES/kmail-refresh-settings.mo share/locale/cs/LC_MESSAGES/kmail.mo share/locale/cs/LC_MESSAGES/ktnef.mo share/locale/cy/LC_MESSAGES/kmail.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/akonadi_unifiedmailbox_agent.mo share/locale/da/LC_MESSAGES/kmail-refresh-settings.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_mailmerge_agent.mo share/locale/de/LC_MESSAGES/akonadi_sendlater_agent.mo share/locale/de/LC_MESSAGES/akonadi_unifiedmailbox_agent.mo share/locale/de/LC_MESSAGES/kmail-refresh-settings.mo share/locale/de/LC_MESSAGES/kmail.mo share/locale/de/LC_MESSAGES/ktnef.mo share/locale/el/LC_MESSAGES/akonadi_archivemail_agent.mo share/locale/el/LC_MESSAGES/akonadi_followupreminder_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/akonadi_unifiedmailbox_agent.mo share/locale/el/LC_MESSAGES/kmail-refresh-settings.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_mailmerge_agent.mo share/locale/en_GB/LC_MESSAGES/akonadi_sendlater_agent.mo share/locale/en_GB/LC_MESSAGES/akonadi_unifiedmailbox_agent.mo share/locale/en_GB/LC_MESSAGES/kmail-refresh-settings.mo share/locale/en_GB/LC_MESSAGES/kmail.mo share/locale/en_GB/LC_MESSAGES/ktnef.mo +share/locale/eo/LC_MESSAGES/akonadi_archivemail_agent.mo +share/locale/eo/LC_MESSAGES/akonadi_followupreminder_agent.mo +share/locale/eo/LC_MESSAGES/akonadi_mailfilter_agent.mo +share/locale/eo/LC_MESSAGES/akonadi_mailmerge_agent.mo +share/locale/eo/LC_MESSAGES/akonadi_sendlater_agent.mo +share/locale/eo/LC_MESSAGES/akonadi_unifiedmailbox_agent.mo +share/locale/eo/LC_MESSAGES/kmail-refresh-settings.mo share/locale/eo/LC_MESSAGES/kmail.mo +share/locale/eo/LC_MESSAGES/ktnef.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_mailmerge_agent.mo share/locale/es/LC_MESSAGES/akonadi_sendlater_agent.mo share/locale/es/LC_MESSAGES/akonadi_unifiedmailbox_agent.mo share/locale/es/LC_MESSAGES/kmail-refresh-settings.mo share/locale/es/LC_MESSAGES/kmail.mo share/locale/es/LC_MESSAGES/ktnef.mo share/locale/et/LC_MESSAGES/akonadi_archivemail_agent.mo share/locale/et/LC_MESSAGES/akonadi_followupreminder_agent.mo share/locale/et/LC_MESSAGES/akonadi_mailfilter_agent.mo share/locale/et/LC_MESSAGES/akonadi_sendlater_agent.mo share/locale/et/LC_MESSAGES/akonadi_unifiedmailbox_agent.mo share/locale/et/LC_MESSAGES/kmail-refresh-settings.mo share/locale/et/LC_MESSAGES/kmail.mo share/locale/et/LC_MESSAGES/ktnef.mo share/locale/eu/LC_MESSAGES/akonadi_archivemail_agent.mo share/locale/eu/LC_MESSAGES/akonadi_followupreminder_agent.mo share/locale/eu/LC_MESSAGES/akonadi_mailfilter_agent.mo share/locale/eu/LC_MESSAGES/akonadi_mailmerge_agent.mo share/locale/eu/LC_MESSAGES/akonadi_sendlater_agent.mo share/locale/eu/LC_MESSAGES/akonadi_unifiedmailbox_agent.mo share/locale/eu/LC_MESSAGES/kmail-refresh-settings.mo share/locale/eu/LC_MESSAGES/kmail.mo share/locale/eu/LC_MESSAGES/ktnef.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_mailmerge_agent.mo share/locale/fi/LC_MESSAGES/akonadi_sendlater_agent.mo share/locale/fi/LC_MESSAGES/akonadi_unifiedmailbox_agent.mo share/locale/fi/LC_MESSAGES/kmail-refresh-settings.mo share/locale/fi/LC_MESSAGES/kmail.mo share/locale/fi/LC_MESSAGES/ktnef.mo share/locale/fr/LC_MESSAGES/akonadi_archivemail_agent.mo share/locale/fr/LC_MESSAGES/akonadi_followupreminder_agent.mo share/locale/fr/LC_MESSAGES/akonadi_mailfilter_agent.mo share/locale/fr/LC_MESSAGES/akonadi_mailmerge_agent.mo share/locale/fr/LC_MESSAGES/akonadi_sendlater_agent.mo share/locale/fr/LC_MESSAGES/akonadi_unifiedmailbox_agent.mo share/locale/fr/LC_MESSAGES/kmail-refresh-settings.mo share/locale/fr/LC_MESSAGES/kmail.mo share/locale/fr/LC_MESSAGES/ktnef.mo share/locale/fy/LC_MESSAGES/kmail.mo share/locale/ga/LC_MESSAGES/akonadi_archivemail_agent.mo share/locale/ga/LC_MESSAGES/akonadi_mailfilter_agent.mo share/locale/ga/LC_MESSAGES/kmail.mo share/locale/ga/LC_MESSAGES/ktnef.mo share/locale/gl/LC_MESSAGES/akonadi_archivemail_agent.mo share/locale/gl/LC_MESSAGES/akonadi_followupreminder_agent.mo share/locale/gl/LC_MESSAGES/akonadi_mailfilter_agent.mo share/locale/gl/LC_MESSAGES/akonadi_sendlater_agent.mo share/locale/gl/LC_MESSAGES/akonadi_unifiedmailbox_agent.mo share/locale/gl/LC_MESSAGES/kmail-refresh-settings.mo share/locale/gl/LC_MESSAGES/kmail.mo share/locale/gl/LC_MESSAGES/ktnef.mo share/locale/he/LC_MESSAGES/kmail.mo share/locale/hi/LC_MESSAGES/kmail.mo share/locale/hne/LC_MESSAGES/kmail.mo share/locale/hr/LC_MESSAGES/kmail.mo share/locale/hsb/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_mailmerge_agent.mo share/locale/ia/LC_MESSAGES/akonadi_sendlater_agent.mo share/locale/ia/LC_MESSAGES/akonadi_unifiedmailbox_agent.mo share/locale/ia/LC_MESSAGES/kmail-refresh-settings.mo share/locale/ia/LC_MESSAGES/kmail.mo share/locale/ia/LC_MESSAGES/ktnef.mo share/locale/id/LC_MESSAGES/kmail-refresh-settings.mo share/locale/id/LC_MESSAGES/kmail.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_mailmerge_agent.mo share/locale/it/LC_MESSAGES/akonadi_sendlater_agent.mo share/locale/it/LC_MESSAGES/akonadi_unifiedmailbox_agent.mo share/locale/it/LC_MESSAGES/kmail-refresh-settings.mo share/locale/it/LC_MESSAGES/kmail.mo share/locale/it/LC_MESSAGES/ktnef.mo share/locale/ja/LC_MESSAGES/akonadi_archivemail_agent.mo share/locale/ja/LC_MESSAGES/akonadi_followupreminder_agent.mo share/locale/ja/LC_MESSAGES/akonadi_mailfilter_agent.mo share/locale/ja/LC_MESSAGES/akonadi_mailmerge_agent.mo share/locale/ja/LC_MESSAGES/akonadi_sendlater_agent.mo share/locale/ja/LC_MESSAGES/akonadi_unifiedmailbox_agent.mo share/locale/ja/LC_MESSAGES/kmail-refresh-settings.mo share/locale/ja/LC_MESSAGES/kmail.mo share/locale/ja/LC_MESSAGES/ktnef.mo share/locale/ka/LC_MESSAGES/akonadi_archivemail_agent.mo share/locale/ka/LC_MESSAGES/akonadi_followupreminder_agent.mo share/locale/ka/LC_MESSAGES/akonadi_mailfilter_agent.mo share/locale/ka/LC_MESSAGES/akonadi_mailmerge_agent.mo share/locale/ka/LC_MESSAGES/akonadi_sendlater_agent.mo share/locale/ka/LC_MESSAGES/akonadi_unifiedmailbox_agent.mo share/locale/ka/LC_MESSAGES/kmail-refresh-settings.mo share/locale/ka/LC_MESSAGES/kmail.mo share/locale/ka/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_mailmerge_agent.mo share/locale/ko/LC_MESSAGES/akonadi_sendlater_agent.mo share/locale/ko/LC_MESSAGES/akonadi_unifiedmailbox_agent.mo share/locale/ko/LC_MESSAGES/kmail-refresh-settings.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_mailmerge_agent.mo share/locale/lt/LC_MESSAGES/akonadi_sendlater_agent.mo share/locale/lt/LC_MESSAGES/akonadi_unifiedmailbox_agent.mo share/locale/lt/LC_MESSAGES/kmail-refresh-settings.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/mk/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/ms/LC_MESSAGES/kmail.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/ne/LC_MESSAGES/kmail.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_mailmerge_agent.mo share/locale/nl/LC_MESSAGES/akonadi_sendlater_agent.mo share/locale/nl/LC_MESSAGES/akonadi_unifiedmailbox_agent.mo share/locale/nl/LC_MESSAGES/kmail-refresh-settings.mo share/locale/nl/LC_MESSAGES/kmail.mo share/locale/nl/LC_MESSAGES/ktnef.mo share/locale/nn/LC_MESSAGES/kmail.mo share/locale/nn/LC_MESSAGES/ktnef.mo share/locale/pa/LC_MESSAGES/kmail.mo share/locale/pl/LC_MESSAGES/akonadi_archivemail_agent.mo share/locale/pl/LC_MESSAGES/akonadi_followupreminder_agent.mo share/locale/pl/LC_MESSAGES/akonadi_mailfilter_agent.mo share/locale/pl/LC_MESSAGES/akonadi_mailmerge_agent.mo share/locale/pl/LC_MESSAGES/akonadi_sendlater_agent.mo share/locale/pl/LC_MESSAGES/akonadi_unifiedmailbox_agent.mo share/locale/pl/LC_MESSAGES/kmail-refresh-settings.mo share/locale/pl/LC_MESSAGES/kmail.mo share/locale/pl/LC_MESSAGES/ktnef.mo share/locale/pt/LC_MESSAGES/akonadi_archivemail_agent.mo share/locale/pt/LC_MESSAGES/akonadi_followupreminder_agent.mo share/locale/pt/LC_MESSAGES/akonadi_mailfilter_agent.mo share/locale/pt/LC_MESSAGES/akonadi_mailmerge_agent.mo share/locale/pt/LC_MESSAGES/akonadi_sendlater_agent.mo share/locale/pt/LC_MESSAGES/akonadi_unifiedmailbox_agent.mo share/locale/pt/LC_MESSAGES/kmail-refresh-settings.mo share/locale/pt/LC_MESSAGES/kmail.mo share/locale/pt/LC_MESSAGES/ktnef.mo share/locale/pt_BR/LC_MESSAGES/akonadi_archivemail_agent.mo share/locale/pt_BR/LC_MESSAGES/akonadi_followupreminder_agent.mo share/locale/pt_BR/LC_MESSAGES/akonadi_mailfilter_agent.mo share/locale/pt_BR/LC_MESSAGES/akonadi_mailmerge_agent.mo share/locale/pt_BR/LC_MESSAGES/akonadi_sendlater_agent.mo share/locale/pt_BR/LC_MESSAGES/akonadi_unifiedmailbox_agent.mo share/locale/pt_BR/LC_MESSAGES/kmail-refresh-settings.mo share/locale/pt_BR/LC_MESSAGES/kmail.mo share/locale/pt_BR/LC_MESSAGES/ktnef.mo share/locale/ro/LC_MESSAGES/akonadi_archivemail_agent.mo share/locale/ro/LC_MESSAGES/akonadi_mailfilter_agent.mo share/locale/ro/LC_MESSAGES/akonadi_sendlater_agent.mo share/locale/ro/LC_MESSAGES/kmail.mo share/locale/ro/LC_MESSAGES/ktnef.mo share/locale/ru/LC_MESSAGES/akonadi_archivemail_agent.mo share/locale/ru/LC_MESSAGES/akonadi_followupreminder_agent.mo share/locale/ru/LC_MESSAGES/akonadi_mailfilter_agent.mo share/locale/ru/LC_MESSAGES/akonadi_mailmerge_agent.mo share/locale/ru/LC_MESSAGES/akonadi_sendlater_agent.mo share/locale/ru/LC_MESSAGES/akonadi_unifiedmailbox_agent.mo share/locale/ru/LC_MESSAGES/kmail-refresh-settings.mo share/locale/ru/LC_MESSAGES/kmail.mo share/locale/ru/LC_MESSAGES/ktnef.mo share/locale/se/LC_MESSAGES/kmail.mo share/locale/se/LC_MESSAGES/ktnef.mo share/locale/si/LC_MESSAGES/kmail.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_mailmerge_agent.mo share/locale/sk/LC_MESSAGES/akonadi_sendlater_agent.mo share/locale/sk/LC_MESSAGES/akonadi_unifiedmailbox_agent.mo share/locale/sk/LC_MESSAGES/kmail-refresh-settings.mo share/locale/sk/LC_MESSAGES/kmail.mo share/locale/sk/LC_MESSAGES/ktnef.mo share/locale/sl/LC_MESSAGES/akonadi_archivemail_agent.mo share/locale/sl/LC_MESSAGES/akonadi_followupreminder_agent.mo share/locale/sl/LC_MESSAGES/akonadi_mailfilter_agent.mo share/locale/sl/LC_MESSAGES/akonadi_mailmerge_agent.mo share/locale/sl/LC_MESSAGES/akonadi_sendlater_agent.mo share/locale/sl/LC_MESSAGES/akonadi_unifiedmailbox_agent.mo share/locale/sl/LC_MESSAGES/kmail-refresh-settings.mo share/locale/sl/LC_MESSAGES/kmail.mo share/locale/sl/LC_MESSAGES/ktnef.mo share/locale/sq/LC_MESSAGES/kmail.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/sr@ijekavian/LC_MESSAGES/akonadi_archivemail_agent.mo share/locale/sr@ijekavian/LC_MESSAGES/akonadi_followupreminder_agent.mo share/locale/sr@ijekavian/LC_MESSAGES/akonadi_mailfilter_agent.mo share/locale/sr@ijekavian/LC_MESSAGES/akonadi_sendlater_agent.mo share/locale/sr@ijekavian/LC_MESSAGES/kmail.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/akonadi_archivemail_agent.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/akonadi_followupreminder_agent.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/akonadi_mailfilter_agent.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/akonadi_sendlater_agent.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kmail.mo share/locale/sr@latin/LC_MESSAGES/akonadi_archivemail_agent.mo share/locale/sr@latin/LC_MESSAGES/akonadi_followupreminder_agent.mo share/locale/sr@latin/LC_MESSAGES/akonadi_mailfilter_agent.mo share/locale/sr@latin/LC_MESSAGES/akonadi_sendlater_agent.mo share/locale/sr@latin/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_mailmerge_agent.mo share/locale/sv/LC_MESSAGES/akonadi_sendlater_agent.mo share/locale/sv/LC_MESSAGES/akonadi_unifiedmailbox_agent.mo share/locale/sv/LC_MESSAGES/kmail-refresh-settings.mo share/locale/sv/LC_MESSAGES/kmail.mo share/locale/sv/LC_MESSAGES/ktnef.mo share/locale/ta/LC_MESSAGES/akonadi_sendlater_agent.mo share/locale/ta/LC_MESSAGES/akonadi_unifiedmailbox_agent.mo share/locale/ta/LC_MESSAGES/kmail-refresh-settings.mo share/locale/ta/LC_MESSAGES/kmail.mo share/locale/tg/LC_MESSAGES/kmail.mo share/locale/th/LC_MESSAGES/kmail.mo share/locale/tr/LC_MESSAGES/akonadi_archivemail_agent.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_mailmerge_agent.mo share/locale/tr/LC_MESSAGES/akonadi_sendlater_agent.mo share/locale/tr/LC_MESSAGES/akonadi_unifiedmailbox_agent.mo share/locale/tr/LC_MESSAGES/kmail-refresh-settings.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_mailmerge_agent.mo share/locale/uk/LC_MESSAGES/akonadi_sendlater_agent.mo share/locale/uk/LC_MESSAGES/akonadi_unifiedmailbox_agent.mo share/locale/uk/LC_MESSAGES/kmail-refresh-settings.mo share/locale/uk/LC_MESSAGES/kmail.mo share/locale/uk/LC_MESSAGES/ktnef.mo share/locale/uz/LC_MESSAGES/kmail.mo share/locale/uz@cyrillic/LC_MESSAGES/kmail.mo share/locale/wa/LC_MESSAGES/kmail.mo share/locale/xh/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_mailmerge_agent.mo share/locale/zh_CN/LC_MESSAGES/akonadi_sendlater_agent.mo share/locale/zh_CN/LC_MESSAGES/akonadi_unifiedmailbox_agent.mo share/locale/zh_CN/LC_MESSAGES/kmail-refresh-settings.mo share/locale/zh_CN/LC_MESSAGES/kmail.mo share/locale/zh_CN/LC_MESSAGES/ktnef.mo share/locale/zh_TW/LC_MESSAGES/akonadi_archivemail_agent.mo share/locale/zh_TW/LC_MESSAGES/akonadi_followupreminder_agent.mo share/locale/zh_TW/LC_MESSAGES/akonadi_mailfilter_agent.mo share/locale/zh_TW/LC_MESSAGES/akonadi_mailmerge_agent.mo share/locale/zh_TW/LC_MESSAGES/akonadi_sendlater_agent.mo share/locale/zh_TW/LC_MESSAGES/akonadi_unifiedmailbox_agent.mo share/locale/zh_TW/LC_MESSAGES/kmail-refresh-settings.mo share/locale/zh_TW/LC_MESSAGES/kmail.mo share/locale/zh_TW/LC_MESSAGES/ktnef.mo share/metainfo/org.kde.kmail2.appdata.xml share/qlogging-categories5/kmail.categories share/qlogging-categories5/kmail.renamecategories diff --git a/deskutils/knotes/distinfo b/deskutils/knotes/distinfo index 5de1b6b94e12..01392dd74dac 100644 --- a/deskutils/knotes/distinfo +++ b/deskutils/knotes/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1677828347 -SHA256 (KDE/release-service/22.12.3/knotes-22.12.3.tar.xz) = 82f5b444c4c412c1ab771f3c5fc8afe47638a32d5260cfb3fec31583030b5bd9 -SIZE (KDE/release-service/22.12.3/knotes-22.12.3.tar.xz) = 375376 +TIMESTAMP = 1681548351 +SHA256 (KDE/release-service/23.04.0/knotes-23.04.0.tar.xz) = 680370dc3232eed63397d6cba2f5c9a0b6623ff13266ae4182da9c2aaed41c91 +SIZE (KDE/release-service/23.04.0/knotes-23.04.0.tar.xz) = 375252 diff --git a/deskutils/kontact/distinfo b/deskutils/kontact/distinfo index cbad3b7ba3c5..cc913230ffbf 100644 --- a/deskutils/kontact/distinfo +++ b/deskutils/kontact/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1677828329 -SHA256 (KDE/release-service/22.12.3/kontact-22.12.3.tar.xz) = 215d78b011c4f1d7c5cb48fcf1e1dadf298e528000f05285d23c4d4aae8520c8 -SIZE (KDE/release-service/22.12.3/kontact-22.12.3.tar.xz) = 871356 +TIMESTAMP = 1681548333 +SHA256 (KDE/release-service/23.04.0/kontact-23.04.0.tar.xz) = 15db268cebae16524329d9058575fedc39d3766580552a57204992ec07f9006e +SIZE (KDE/release-service/23.04.0/kontact-23.04.0.tar.xz) = 871632 diff --git a/deskutils/korganizer/distinfo b/deskutils/korganizer/distinfo index 215d366675a9..bfd6030f90b5 100644 --- a/deskutils/korganizer/distinfo +++ b/deskutils/korganizer/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1677828344 -SHA256 (KDE/release-service/22.12.3/korganizer-22.12.3.tar.xz) = ac4287ba706695034d0383042d1cd0e2f4bdd2d78a75627e17a16e69cfabad42 -SIZE (KDE/release-service/22.12.3/korganizer-22.12.3.tar.xz) = 2571952 +TIMESTAMP = 1681548350 +SHA256 (KDE/release-service/23.04.0/korganizer-23.04.0.tar.xz) = 46b608dfd51e1b251ad6ca841ae2cc3181089921536222f191991919bc582b3a +SIZE (KDE/release-service/23.04.0/korganizer-23.04.0.tar.xz) = 2537076 diff --git a/deskutils/kruler/distinfo b/deskutils/kruler/distinfo index 9faa32b85797..f092529c3af3 100644 --- a/deskutils/kruler/distinfo +++ b/deskutils/kruler/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1677828321 -SHA256 (KDE/release-service/22.12.3/kruler-22.12.3.tar.xz) = 6fac6ad67712654848b0d30cf02fe42348b49cbe7ecb9e11636422b65fae186d -SIZE (KDE/release-service/22.12.3/kruler-22.12.3.tar.xz) = 285792 +TIMESTAMP = 1681548360 +SHA256 (KDE/release-service/23.04.0/kruler-23.04.0.tar.xz) = 67d80e608003d698623cbce5ee2048d44d89349a074349d884f784d08f2f0b49 +SIZE (KDE/release-service/23.04.0/kruler-23.04.0.tar.xz) = 287540 diff --git a/deskutils/libkdepim/distinfo b/deskutils/libkdepim/distinfo index d4e510b0c602..dddcf66761e8 100644 --- a/deskutils/libkdepim/distinfo +++ b/deskutils/libkdepim/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1677828317 -SHA256 (KDE/release-service/22.12.3/libkdepim-22.12.3.tar.xz) = fb24959661d870bf2d682e87a539e79189f2370d629dbd3b84e26530f790e68e -SIZE (KDE/release-service/22.12.3/libkdepim-22.12.3.tar.xz) = 286196 +TIMESTAMP = 1681548335 +SHA256 (KDE/release-service/23.04.0/libkdepim-23.04.0.tar.xz) = 605b1725c2dc656016ff3ea16e3119354caeb9e555e7de79dd752883d440ebcb +SIZE (KDE/release-service/23.04.0/libkdepim-23.04.0.tar.xz) = 286568 diff --git a/deskutils/libkdepim/pkg-plist b/deskutils/libkdepim/pkg-plist index b76c9ea9bdbe..019d81b61f6b 100644 --- a/deskutils/libkdepim/pkg-plist +++ b/deskutils/libkdepim/pkg-plist @@ -1,112 +1,117 @@ -include/KF5/Libkdepim/Libkdepim/KCheckComboBox -include/KF5/Libkdepim/Libkdepim/KWidgetLister -include/KF5/Libkdepim/Libkdepim/LineEditCatchReturnKey -include/KF5/Libkdepim/Libkdepim/MultiplyingLine -include/KF5/Libkdepim/Libkdepim/MultiplyingLineEditor -include/KF5/Libkdepim/Libkdepim/ProgressDialog -include/KF5/Libkdepim/Libkdepim/ProgressIndicatorLabel -include/KF5/Libkdepim/Libkdepim/ProgressManager -include/KF5/Libkdepim/Libkdepim/ProgressStatusBarWidget -include/KF5/Libkdepim/Libkdepim/StatusbarProgressWidget -include/KF5/Libkdepim/libkdepim/kcheckcombobox.h -include/KF5/Libkdepim/libkdepim/kdepim_export.h -include/KF5/Libkdepim/libkdepim/kwidgetlister.h -include/KF5/Libkdepim/libkdepim/lineeditcatchreturnkey.h -include/KF5/Libkdepim/libkdepim/multiplyingline.h -include/KF5/Libkdepim/libkdepim/multiplyinglineeditor.h -include/KF5/Libkdepim/libkdepim/progressdialog.h -include/KF5/Libkdepim/libkdepim/progressindicatorlabel.h -include/KF5/Libkdepim/libkdepim/progressmanager.h -include/KF5/Libkdepim/libkdepim/progressstatusbarwidget.h -include/KF5/Libkdepim/libkdepim/statusbarprogresswidget.h -include/KF5/Libkdepim/libkdepim_version.h +include/KPim5/Libkdepim/Libkdepim/KCheckComboBox +include/KPim5/Libkdepim/Libkdepim/KWidgetLister +include/KPim5/Libkdepim/Libkdepim/LineEditCatchReturnKey +include/KPim5/Libkdepim/Libkdepim/MultiplyingLine +include/KPim5/Libkdepim/Libkdepim/MultiplyingLineEditor +include/KPim5/Libkdepim/Libkdepim/ProgressDialog +include/KPim5/Libkdepim/Libkdepim/ProgressIndicatorLabel +include/KPim5/Libkdepim/Libkdepim/ProgressManager +include/KPim5/Libkdepim/Libkdepim/ProgressStatusBarWidget +include/KPim5/Libkdepim/Libkdepim/StatusbarProgressWidget +include/KPim5/Libkdepim/libkdepim/kcheckcombobox.h +include/KPim5/Libkdepim/libkdepim/kdepim_export.h +include/KPim5/Libkdepim/libkdepim/kwidgetlister.h +include/KPim5/Libkdepim/libkdepim/lineeditcatchreturnkey.h +include/KPim5/Libkdepim/libkdepim/multiplyingline.h +include/KPim5/Libkdepim/libkdepim/multiplyinglineeditor.h +include/KPim5/Libkdepim/libkdepim/progressdialog.h +include/KPim5/Libkdepim/libkdepim/progressindicatorlabel.h +include/KPim5/Libkdepim/libkdepim/progressmanager.h +include/KPim5/Libkdepim/libkdepim/progressstatusbarwidget.h +include/KPim5/Libkdepim/libkdepim/statusbarprogresswidget.h +include/KPim5/Libkdepim/libkdepim_version.h lib/cmake/KF5Libkdepim/KF5LibkdepimConfig.cmake lib/cmake/KF5Libkdepim/KF5LibkdepimConfigVersion.cmake -lib/cmake/KF5Libkdepim/KF5LibkdepimTargets-%%CMAKE_BUILD_TYPE%%.cmake -lib/cmake/KF5Libkdepim/KF5LibkdepimTargets.cmake +lib/cmake/KF5Libkdepim/KPim5LibkdepimTargets-%%CMAKE_BUILD_TYPE%%.cmake +lib/cmake/KF5Libkdepim/KPim5LibkdepimTargets.cmake +lib/cmake/KPim5Libkdepim/KPim5LibkdepimConfig.cmake +lib/cmake/KPim5Libkdepim/KPim5LibkdepimConfigVersion.cmake +lib/cmake/KPim5Libkdepim/KPim5LibkdepimTargets-%%CMAKE_BUILD_TYPE%%.cmake +lib/cmake/KPim5Libkdepim/KPim5LibkdepimTargets.cmake +lib/cmake/KPim5MailTransportDBusService/KPim5MailTransportDBusServiceConfig.cmake lib/cmake/MailTransportDBusService/MailTransportDBusServiceConfig.cmake -lib/libKF5Libkdepim.so -lib/libKF5Libkdepim.so.5 -lib/libKF5Libkdepim.so.%%KDE_APPLICATIONS_SHLIB_VER%% +lib/libKPim5Libkdepim.so +lib/libKPim5Libkdepim.so.5 +lib/libKPim5Libkdepim.so.%%KDE_APPLICATIONS_SHLIB_VER%% %%QT_MKSPECDIR%%/modules/qt_Libkdepim.pri -%%QT_PLUGINDIR%%/designer/kdepimwidgets.so +%%QT_PLUGINDIR%%/designer/kdepim5widgets.so share/dbus-1/interfaces/org.kde.addressbook.service.xml share/dbus-1/interfaces/org.kde.mailtransport.service.xml share/locale/af/LC_MESSAGES/libkdepim.mo share/locale/ar/LC_MESSAGES/libkdepim.mo share/locale/be/LC_MESSAGES/libkdepim.mo share/locale/bg/LC_MESSAGES/libkdepim.mo share/locale/br/LC_MESSAGES/libkdepim.mo share/locale/bs/LC_MESSAGES/libkdepim.mo share/locale/ca/LC_MESSAGES/libkdepim.mo share/locale/ca@valencia/LC_MESSAGES/libkdepim.mo share/locale/cs/LC_MESSAGES/libkdepim.mo share/locale/cy/LC_MESSAGES/libkdepim.mo share/locale/da/LC_MESSAGES/libkdepim.mo share/locale/de/LC_MESSAGES/libkdepim.mo share/locale/el/LC_MESSAGES/libkdepim.mo share/locale/en_GB/LC_MESSAGES/libkdepim.mo share/locale/eo/LC_MESSAGES/libkdepim.mo share/locale/es/LC_MESSAGES/libkdepim.mo share/locale/et/LC_MESSAGES/libkdepim.mo share/locale/eu/LC_MESSAGES/libkdepim.mo share/locale/fa/LC_MESSAGES/libkdepim.mo share/locale/fi/LC_MESSAGES/libkdepim.mo share/locale/fr/LC_MESSAGES/libkdepim.mo share/locale/fy/LC_MESSAGES/libkdepim.mo share/locale/ga/LC_MESSAGES/libkdepim.mo share/locale/gl/LC_MESSAGES/libkdepim.mo share/locale/he/LC_MESSAGES/libkdepim.mo share/locale/hi/LC_MESSAGES/libkdepim.mo share/locale/hne/LC_MESSAGES/libkdepim.mo share/locale/hr/LC_MESSAGES/libkdepim.mo share/locale/hsb/LC_MESSAGES/libkdepim.mo share/locale/hu/LC_MESSAGES/libkdepim.mo share/locale/ia/LC_MESSAGES/libkdepim.mo share/locale/is/LC_MESSAGES/libkdepim.mo share/locale/it/LC_MESSAGES/libkdepim.mo share/locale/ja/LC_MESSAGES/libkdepim.mo share/locale/ka/LC_MESSAGES/libkdepim.mo share/locale/kk/LC_MESSAGES/libkdepim.mo share/locale/km/LC_MESSAGES/libkdepim.mo share/locale/ko/LC_MESSAGES/libkdepim.mo share/locale/lt/LC_MESSAGES/libkdepim.mo share/locale/lv/LC_MESSAGES/libkdepim.mo share/locale/mai/LC_MESSAGES/libkdepim.mo share/locale/mk/LC_MESSAGES/libkdepim.mo share/locale/mr/LC_MESSAGES/libkdepim.mo share/locale/ms/LC_MESSAGES/libkdepim.mo share/locale/nb/LC_MESSAGES/libkdepim.mo share/locale/nds/LC_MESSAGES/libkdepim.mo share/locale/ne/LC_MESSAGES/libkdepim.mo share/locale/nl/LC_MESSAGES/libkdepim.mo share/locale/nn/LC_MESSAGES/libkdepim.mo share/locale/pa/LC_MESSAGES/libkdepim.mo share/locale/pl/LC_MESSAGES/libkdepim.mo share/locale/pt/LC_MESSAGES/libkdepim.mo share/locale/pt_BR/LC_MESSAGES/libkdepim.mo share/locale/ro/LC_MESSAGES/libkdepim.mo share/locale/ru/LC_MESSAGES/libkdepim.mo share/locale/se/LC_MESSAGES/libkdepim.mo share/locale/sk/LC_MESSAGES/libkdepim.mo share/locale/sl/LC_MESSAGES/libkdepim.mo share/locale/sq/LC_MESSAGES/libkdepim.mo share/locale/sr/LC_MESSAGES/libkdepim.mo share/locale/sr@ijekavian/LC_MESSAGES/libkdepim.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/libkdepim.mo share/locale/sr@latin/LC_MESSAGES/libkdepim.mo share/locale/sv/LC_MESSAGES/libkdepim.mo share/locale/ta/LC_MESSAGES/libkdepim.mo share/locale/tg/LC_MESSAGES/libkdepim.mo share/locale/th/LC_MESSAGES/libkdepim.mo share/locale/tr/LC_MESSAGES/libkdepim.mo share/locale/ug/LC_MESSAGES/libkdepim.mo share/locale/uk/LC_MESSAGES/libkdepim.mo share/locale/uz/LC_MESSAGES/libkdepim.mo share/locale/uz@cyrillic/LC_MESSAGES/libkdepim.mo share/locale/wa/LC_MESSAGES/libkdepim.mo share/locale/xh/LC_MESSAGES/libkdepim.mo share/locale/zh_CN/LC_MESSAGES/libkdepim.mo share/locale/zh_TW/LC_MESSAGES/libkdepim.mo share/qlogging-categories5/libkdepim.categories share/qlogging-categories5/libkdepim.renamecategories diff --git a/deskutils/mbox-importer/distinfo b/deskutils/mbox-importer/distinfo index 24939ef1fee1..b87545d295ac 100644 --- a/deskutils/mbox-importer/distinfo +++ b/deskutils/mbox-importer/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1677828349 -SHA256 (KDE/release-service/22.12.3/mbox-importer-22.12.3.tar.xz) = bd40e6681fded3a1cf413ddda37e9c90623dbc9265428facacb1c8a2bda54f25 -SIZE (KDE/release-service/22.12.3/mbox-importer-22.12.3.tar.xz) = 29864 +TIMESTAMP = 1681548349 +SHA256 (KDE/release-service/23.04.0/mbox-importer-23.04.0.tar.xz) = 53d5795d190101d550f83d15ecd21435a14843793a295538ed35ba7c5e8a43f5 +SIZE (KDE/release-service/23.04.0/mbox-importer-23.04.0.tar.xz) = 30016 diff --git a/deskutils/pim-data-exporter/distinfo b/deskutils/pim-data-exporter/distinfo index aebcf01e546e..97b8cde93de5 100644 --- a/deskutils/pim-data-exporter/distinfo +++ b/deskutils/pim-data-exporter/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1677828324 -SHA256 (KDE/release-service/22.12.3/pim-data-exporter-22.12.3.tar.xz) = 0b90864bba6028b526e94a59705ba428fc55e0af9833fbeb224b71647e767e84 -SIZE (KDE/release-service/22.12.3/pim-data-exporter-22.12.3.tar.xz) = 426068 +TIMESTAMP = 1681548358 +SHA256 (KDE/release-service/23.04.0/pim-data-exporter-23.04.0.tar.xz) = 4121db2bff1190090b4d63e2e9ad6a99e2953f3da0cb1b72051bafaee12bae9f +SIZE (KDE/release-service/23.04.0/pim-data-exporter-23.04.0.tar.xz) = 425236 diff --git a/deskutils/pim-data-exporter/pkg-plist b/deskutils/pim-data-exporter/pkg-plist index e227d1011ddf..12632de09ca7 100644 --- a/deskutils/pim-data-exporter/pkg-plist +++ b/deskutils/pim-data-exporter/pkg-plist @@ -1,59 +1,58 @@ bin/pimdataexporter bin/pimdataexporterconsole lib/libpimdataexporterprivate.so.5 lib/libpimdataexporterprivate.so.%%KDE_APPLICATIONS_SHLIB_VER%% share/applications/org.kde.pimdataexporter.desktop share/config.kcfg/pimdataexporterglobalconfig.kcfg share/locale/ar/LC_MESSAGES/pimdataexporter.mo share/locale/az/LC_MESSAGES/pimdataexporter.mo share/locale/bg/LC_MESSAGES/pimdataexporter.mo share/locale/bs/LC_MESSAGES/pimdataexporter.mo share/locale/ca/LC_MESSAGES/pimdataexporter.mo share/locale/ca@valencia/LC_MESSAGES/pimdataexporter.mo share/locale/cs/LC_MESSAGES/pimdataexporter.mo share/locale/da/LC_MESSAGES/pimdataexporter.mo share/locale/de/LC_MESSAGES/pimdataexporter.mo share/locale/el/LC_MESSAGES/pimdataexporter.mo share/locale/en_GB/LC_MESSAGES/pimdataexporter.mo share/locale/es/LC_MESSAGES/pimdataexporter.mo share/locale/et/LC_MESSAGES/pimdataexporter.mo share/locale/eu/LC_MESSAGES/pimdataexporter.mo share/locale/fi/LC_MESSAGES/pimdataexporter.mo share/locale/fr/LC_MESSAGES/pimdataexporter.mo share/locale/ga/LC_MESSAGES/pimdataexporter.mo share/locale/gl/LC_MESSAGES/pimdataexporter.mo share/locale/hu/LC_MESSAGES/pimdataexporter.mo share/locale/ia/LC_MESSAGES/pimdataexporter.mo -share/locale/is/LC_MESSAGES/pimdataexporter.mo share/locale/it/LC_MESSAGES/pimdataexporter.mo share/locale/ja/LC_MESSAGES/pimdataexporter.mo share/locale/ka/LC_MESSAGES/pimdataexporter.mo share/locale/kk/LC_MESSAGES/pimdataexporter.mo share/locale/km/LC_MESSAGES/pimdataexporter.mo share/locale/ko/LC_MESSAGES/pimdataexporter.mo share/locale/lt/LC_MESSAGES/pimdataexporter.mo share/locale/lv/LC_MESSAGES/pimdataexporter.mo share/locale/mr/LC_MESSAGES/pimdataexporter.mo share/locale/nb/LC_MESSAGES/pimdataexporter.mo share/locale/nds/LC_MESSAGES/pimdataexporter.mo share/locale/nl/LC_MESSAGES/pimdataexporter.mo share/locale/pl/LC_MESSAGES/pimdataexporter.mo share/locale/pt/LC_MESSAGES/pimdataexporter.mo share/locale/pt_BR/LC_MESSAGES/pimdataexporter.mo share/locale/ro/LC_MESSAGES/pimdataexporter.mo share/locale/ru/LC_MESSAGES/pimdataexporter.mo share/locale/sk/LC_MESSAGES/pimdataexporter.mo share/locale/sl/LC_MESSAGES/pimdataexporter.mo share/locale/sr/LC_MESSAGES/pimdataexporter.mo share/locale/sr@ijekavian/LC_MESSAGES/pimdataexporter.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/pimdataexporter.mo share/locale/sr@latin/LC_MESSAGES/pimdataexporter.mo share/locale/sv/LC_MESSAGES/pimdataexporter.mo share/locale/tr/LC_MESSAGES/pimdataexporter.mo share/locale/ug/LC_MESSAGES/pimdataexporter.mo share/locale/uk/LC_MESSAGES/pimdataexporter.mo share/locale/zh_CN/LC_MESSAGES/pimdataexporter.mo share/locale/zh_TW/LC_MESSAGES/pimdataexporter.mo share/metainfo/org.kde.pimdataexporter.appdata.xml share/qlogging-categories5/pimdataexporter.categories share/qlogging-categories5/pimdataexporter.renamecategories diff --git a/deskutils/pim-sieve-editor/distinfo b/deskutils/pim-sieve-editor/distinfo index 1a83d02c60a3..f76a55c38324 100644 --- a/deskutils/pim-sieve-editor/distinfo +++ b/deskutils/pim-sieve-editor/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1677828311 -SHA256 (KDE/release-service/22.12.3/pim-sieve-editor-22.12.3.tar.xz) = 56fb9416150d2805404dd3931bc7fa9c74d9a51b54ed44449dcadd5affbb8fa7 -SIZE (KDE/release-service/22.12.3/pim-sieve-editor-22.12.3.tar.xz) = 464296 +TIMESTAMP = 1681548343 +SHA256 (KDE/release-service/23.04.0/pim-sieve-editor-23.04.0.tar.xz) = 2d88ea0370cd7254e9dbae54fe582b3fed89316007efde7d0e182b7d54f02c9d +SIZE (KDE/release-service/23.04.0/pim-sieve-editor-23.04.0.tar.xz) = 464472 diff --git a/deskutils/zanshin/distinfo b/deskutils/zanshin/distinfo index 12da8a99831d..9185c01c3917 100644 --- a/deskutils/zanshin/distinfo +++ b/deskutils/zanshin/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1677828350 -SHA256 (KDE/release-service/22.12.3/zanshin-22.12.3.tar.xz) = f253464c2be0c34fef5eb148a3db8b6e7bd245f6d595f7a8e0ca5c4cbfe2a457 -SIZE (KDE/release-service/22.12.3/zanshin-22.12.3.tar.xz) = 354340 +TIMESTAMP = 1681548352 +SHA256 (KDE/release-service/23.04.0/zanshin-23.04.0.tar.xz) = 76ef11d4b61ea5034971667e57a1b37d8af7a6c5c809b61f479cd23ef8b30bbd +SIZE (KDE/release-service/23.04.0/zanshin-23.04.0.tar.xz) = 349332 diff --git a/deskutils/zanshin/pkg-plist b/deskutils/zanshin/pkg-plist index c3324b70c09f..1dade16c7885 100644 --- a/deskutils/zanshin/pkg-plist +++ b/deskutils/zanshin/pkg-plist @@ -1,55 +1,53 @@ bin/zanshin bin/zanshin-migrator -%%QT_PLUGINDIR%%/krunner_zanshin.so +%%QT_PLUGINDIR%%/kf5/krunner/org.kde.zanshin.so %%QT_PLUGINDIR%%/pim5/kontact/kontact_zanshinplugin.so %%QT_PLUGINDIR%%/zanshin_part.so share/applications/org.kde.zanshin.desktop share/icons/hicolor/128x128/apps/zanshin.png share/icons/hicolor/256x256/apps/zanshin.png share/icons/hicolor/48x48/apps/zanshin.png share/icons/hicolor/64x64/apps/zanshin.png share/icons/hicolor/scalable/apps/zanshin.svgz -share/kservices5/plasma-runner-zanshin.desktop -share/kservices5/zanshin_part.desktop share/kxmlgui5/zanshin/zanshin_part.rc share/locale/bg/LC_MESSAGES/zanshin.mo share/locale/bs/LC_MESSAGES/zanshin.mo share/locale/ca/LC_MESSAGES/zanshin.mo share/locale/ca@valencia/LC_MESSAGES/zanshin.mo share/locale/cs/LC_MESSAGES/zanshin.mo share/locale/da/LC_MESSAGES/zanshin.mo share/locale/de/LC_MESSAGES/zanshin.mo share/locale/en_GB/LC_MESSAGES/zanshin.mo share/locale/es/LC_MESSAGES/zanshin.mo share/locale/et/LC_MESSAGES/zanshin.mo share/locale/eu/LC_MESSAGES/zanshin.mo share/locale/fi/LC_MESSAGES/zanshin.mo share/locale/fr/LC_MESSAGES/zanshin.mo share/locale/ga/LC_MESSAGES/zanshin.mo share/locale/gl/LC_MESSAGES/zanshin.mo share/locale/hu/LC_MESSAGES/zanshin.mo share/locale/ia/LC_MESSAGES/zanshin.mo share/locale/it/LC_MESSAGES/zanshin.mo share/locale/ja/LC_MESSAGES/zanshin.mo share/locale/ka/LC_MESSAGES/zanshin.mo share/locale/ko/LC_MESSAGES/zanshin.mo share/locale/lt/LC_MESSAGES/zanshin.mo share/locale/mr/LC_MESSAGES/zanshin.mo share/locale/my/LC_MESSAGES/zanshin.mo share/locale/nb/LC_MESSAGES/zanshin.mo share/locale/nds/LC_MESSAGES/zanshin.mo share/locale/nl/LC_MESSAGES/zanshin.mo share/locale/nn/LC_MESSAGES/zanshin.mo share/locale/pl/LC_MESSAGES/zanshin.mo share/locale/pt/LC_MESSAGES/zanshin.mo share/locale/pt_BR/LC_MESSAGES/zanshin.mo share/locale/ru/LC_MESSAGES/zanshin.mo share/locale/sk/LC_MESSAGES/zanshin.mo share/locale/sl/LC_MESSAGES/zanshin.mo share/locale/sv/LC_MESSAGES/zanshin.mo share/locale/tr/LC_MESSAGES/zanshin.mo share/locale/ug/LC_MESSAGES/zanshin.mo share/locale/uk/LC_MESSAGES/zanshin.mo share/locale/zh_CN/LC_MESSAGES/zanshin.mo share/locale/zh_TW/LC_MESSAGES/zanshin.mo share/metainfo/org.kde.zanshin.metainfo.xml diff --git a/devel/cervisia/distinfo b/devel/cervisia/distinfo index bb9982b77a0c..2a9f08fae7dd 100644 --- a/devel/cervisia/distinfo +++ b/devel/cervisia/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1677828150 -SHA256 (KDE/release-service/22.12.3/cervisia-22.12.3.tar.xz) = c28bcab18a7e0a40afee8c3021004ebd8cb27df1b985ac1e3a867dbb758b5b4f -SIZE (KDE/release-service/22.12.3/cervisia-22.12.3.tar.xz) = 1944304 +TIMESTAMP = 1681548267 +SHA256 (KDE/release-service/23.04.0/cervisia-23.04.0.tar.xz) = b26d27890e6d56cf5a498123164b57e31338a2024d5ef39595d6c0fc91e9e402 +SIZE (KDE/release-service/23.04.0/cervisia-23.04.0.tar.xz) = 1944496 diff --git a/devel/dolphin-plugins/distinfo b/devel/dolphin-plugins/distinfo index 295454ea3c05..5ad731c0923a 100644 --- a/devel/dolphin-plugins/distinfo +++ b/devel/dolphin-plugins/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1677828140 -SHA256 (KDE/release-service/22.12.3/dolphin-plugins-22.12.3.tar.xz) = cbbb141f8c610e2c0a2e6cb5b0eb33fdd7de1be16b40b2b2c594f4f892fef439 -SIZE (KDE/release-service/22.12.3/dolphin-plugins-22.12.3.tar.xz) = 272276 +TIMESTAMP = 1681548266 +SHA256 (KDE/release-service/23.04.0/dolphin-plugins-23.04.0.tar.xz) = 68a4d8129c6740c487c77a8bd1025e1a3a75646d9a3303b44551d9fccfaed0d6 +SIZE (KDE/release-service/23.04.0/dolphin-plugins-23.04.0.tar.xz) = 272516 diff --git a/devel/kapptemplate/distinfo b/devel/kapptemplate/distinfo index 8e863e864646..a8659dae13db 100644 --- a/devel/kapptemplate/distinfo +++ b/devel/kapptemplate/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1677828129 -SHA256 (KDE/release-service/22.12.3/kapptemplate-22.12.3.tar.xz) = 3074e9eefc394a58d098c7eb0dc69a1fdb1a0e87d86fe296101481b0442e216c -SIZE (KDE/release-service/22.12.3/kapptemplate-22.12.3.tar.xz) = 338632 +TIMESTAMP = 1681548257 +SHA256 (KDE/release-service/23.04.0/kapptemplate-23.04.0.tar.xz) = 5389ba974991dc2cc0aebffe90d918b0eb93e7b7c0a5c2090c2b44e52afa037b +SIZE (KDE/release-service/23.04.0/kapptemplate-23.04.0.tar.xz) = 338692 diff --git a/devel/kcachegrind/distinfo b/devel/kcachegrind/distinfo index 471916034e55..c08fb350c02a 100644 --- a/devel/kcachegrind/distinfo +++ b/devel/kcachegrind/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1677828128 -SHA256 (KDE/release-service/22.12.3/kcachegrind-22.12.3.tar.xz) = 27437664de267524da34d03d8b21507b09e55cc2c3ad41d51ec3761348fd4ab0 -SIZE (KDE/release-service/22.12.3/kcachegrind-22.12.3.tar.xz) = 909476 +TIMESTAMP = 1681548256 +SHA256 (KDE/release-service/23.04.0/kcachegrind-23.04.0.tar.xz) = e721f45994ca756876914008951191b54ca21a01c4019e3bcfe64058232028c4 +SIZE (KDE/release-service/23.04.0/kcachegrind-23.04.0.tar.xz) = 918328 diff --git a/devel/kde-dev-scripts/distinfo b/devel/kde-dev-scripts/distinfo index 32425c2e0f9b..64e26d63d773 100644 --- a/devel/kde-dev-scripts/distinfo +++ b/devel/kde-dev-scripts/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1677828147 -SHA256 (KDE/release-service/22.12.3/kde-dev-scripts-22.12.3.tar.xz) = 2c9db85cfff2a89a31bc638bc071778f3a7301c2f713ac0c9e63d5b658871279 -SIZE (KDE/release-service/22.12.3/kde-dev-scripts-22.12.3.tar.xz) = 372844 +TIMESTAMP = 1681548268 +SHA256 (KDE/release-service/23.04.0/kde-dev-scripts-23.04.0.tar.xz) = 96808cf7071ef85e7635f337aabd7f299fcd31a76acfbe58b27a851238ad2880 +SIZE (KDE/release-service/23.04.0/kde-dev-scripts-23.04.0.tar.xz) = 372704 diff --git a/devel/kde-dev-utils/distinfo b/devel/kde-dev-utils/distinfo index 7e862d310b71..f8cd09a16322 100644 --- a/devel/kde-dev-utils/distinfo +++ b/devel/kde-dev-utils/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1677828148 -SHA256 (KDE/release-service/22.12.3/kde-dev-utils-22.12.3.tar.xz) = 207840873cb0f0cca82a169c5de22bbcc7860d609445eb36af13d90ecae85b08 -SIZE (KDE/release-service/22.12.3/kde-dev-utils-22.12.3.tar.xz) = 71832 +TIMESTAMP = 1681548263 +SHA256 (KDE/release-service/23.04.0/kde-dev-utils-23.04.0.tar.xz) = e23d36937f26636b6d1a5c43baeb8178f855f507565f31bd00ce25874fcf1cc3 +SIZE (KDE/release-service/23.04.0/kde-dev-utils-23.04.0.tar.xz) = 71844 diff --git a/devel/kdesdk-kio/distinfo b/devel/kdesdk-kio/distinfo index b4bfd58148e1..29a43a2ecc85 100644 --- a/devel/kdesdk-kio/distinfo +++ b/devel/kdesdk-kio/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1677828126 -SHA256 (KDE/release-service/22.12.3/kdesdk-kio-22.12.3.tar.xz) = 6b619ea81447249aa4af004f00a6e905a912e2288cecb1f45652f4d7db816b48 -SIZE (KDE/release-service/22.12.3/kdesdk-kio-22.12.3.tar.xz) = 40180 +TIMESTAMP = 1681548264 +SHA256 (KDE/release-service/23.04.0/kdesdk-kio-23.04.0.tar.xz) = 3fa2b6c659f22d216caee91be61b0e4c3eecec6d784058c672ddcfed3f8079ad +SIZE (KDE/release-service/23.04.0/kdesdk-kio-23.04.0.tar.xz) = 40052 diff --git a/devel/kdesdk-thumbnailers/distinfo b/devel/kdesdk-thumbnailers/distinfo index 401806b36066..f0c948b22ce6 100644 --- a/devel/kdesdk-thumbnailers/distinfo +++ b/devel/kdesdk-thumbnailers/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1677828125 -SHA256 (KDE/release-service/22.12.3/kdesdk-thumbnailers-22.12.3.tar.xz) = e6cd59ac33d5790fb7ac5bc67bb1de067da463f0806ece7b4e97e1dd9e873050 -SIZE (KDE/release-service/22.12.3/kdesdk-thumbnailers-22.12.3.tar.xz) = 26944 +TIMESTAMP = 1681548261 +SHA256 (KDE/release-service/23.04.0/kdesdk-thumbnailers-23.04.0.tar.xz) = dee033b1456ecd56f70526cfb3a131b1a535536ec1be45de2284a8cc6b2063fd +SIZE (KDE/release-service/23.04.0/kdesdk-thumbnailers-23.04.0.tar.xz) = 27128 diff --git a/devel/kdesdk-thumbnailers/pkg-plist b/devel/kdesdk-thumbnailers/pkg-plist index e942ff5d16d3..3aa523a2fe2f 100644 --- a/devel/kdesdk-thumbnailers/pkg-plist +++ b/devel/kdesdk-thumbnailers/pkg-plist @@ -1,47 +1,48 @@ %%QT_PLUGINDIR%%/kf5/thumbcreator/pothumbnail.so share/config.kcfg/pocreatorsettings.kcfg share/locale/ar/LC_MESSAGES/pothumbnail.mo share/locale/bg/LC_MESSAGES/pothumbnail.mo share/locale/bs/LC_MESSAGES/pothumbnail.mo share/locale/ca/LC_MESSAGES/pothumbnail.mo share/locale/ca@valencia/LC_MESSAGES/pothumbnail.mo share/locale/cs/LC_MESSAGES/pothumbnail.mo share/locale/da/LC_MESSAGES/pothumbnail.mo share/locale/de/LC_MESSAGES/pothumbnail.mo share/locale/el/LC_MESSAGES/pothumbnail.mo share/locale/en_GB/LC_MESSAGES/pothumbnail.mo share/locale/es/LC_MESSAGES/pothumbnail.mo share/locale/et/LC_MESSAGES/pothumbnail.mo share/locale/eu/LC_MESSAGES/pothumbnail.mo share/locale/fi/LC_MESSAGES/pothumbnail.mo share/locale/fr/LC_MESSAGES/pothumbnail.mo share/locale/ga/LC_MESSAGES/pothumbnail.mo share/locale/gl/LC_MESSAGES/pothumbnail.mo share/locale/hi/LC_MESSAGES/pothumbnail.mo share/locale/hu/LC_MESSAGES/pothumbnail.mo +share/locale/is/LC_MESSAGES/pothumbnail.mo share/locale/it/LC_MESSAGES/pothumbnail.mo share/locale/ja/LC_MESSAGES/pothumbnail.mo share/locale/ka/LC_MESSAGES/pothumbnail.mo share/locale/kk/LC_MESSAGES/pothumbnail.mo share/locale/ko/LC_MESSAGES/pothumbnail.mo share/locale/lt/LC_MESSAGES/pothumbnail.mo share/locale/mr/LC_MESSAGES/pothumbnail.mo share/locale/nb/LC_MESSAGES/pothumbnail.mo share/locale/nds/LC_MESSAGES/pothumbnail.mo share/locale/nl/LC_MESSAGES/pothumbnail.mo share/locale/nn/LC_MESSAGES/pothumbnail.mo share/locale/pa/LC_MESSAGES/pothumbnail.mo share/locale/pl/LC_MESSAGES/pothumbnail.mo share/locale/pt/LC_MESSAGES/pothumbnail.mo share/locale/pt_BR/LC_MESSAGES/pothumbnail.mo share/locale/ro/LC_MESSAGES/pothumbnail.mo share/locale/ru/LC_MESSAGES/pothumbnail.mo share/locale/sk/LC_MESSAGES/pothumbnail.mo share/locale/sl/LC_MESSAGES/pothumbnail.mo share/locale/sv/LC_MESSAGES/pothumbnail.mo share/locale/tr/LC_MESSAGES/pothumbnail.mo share/locale/ug/LC_MESSAGES/pothumbnail.mo share/locale/uk/LC_MESSAGES/pothumbnail.mo share/locale/vi/LC_MESSAGES/pothumbnail.mo share/locale/zh_CN/LC_MESSAGES/pothumbnail.mo share/locale/zh_TW/LC_MESSAGES/pothumbnail.mo diff --git a/devel/kdev-php/Makefile b/devel/kdev-php/Makefile index 77d827ef0c51..3ca1b47cd2c2 100644 --- a/devel/kdev-php/Makefile +++ b/devel/kdev-php/Makefile @@ -1,31 +1,31 @@ PORTNAME= kdev-php DISTVERSION= ${KDE_APPLICATIONS_VERSION} CATEGORIES= devel kde kde-applications MAINTAINER= kde@FreeBSD.org COMMENT= PHP support for KDevelop WWW= https://www.kdevelop.org/ LICENSE= GPLv2+ BUILD_DEPENDS= kdev-pg-qt:devel/kdevelop-pg-qt LIB_DEPENDS= libKDevPlatformInterfaces.so:devel/kdevelop USES= cmake compiler:c++11-lib kde:5 qt:5 tar:xz xorg USE_KDE= auth codecs completion config configwidgets coreaddons ecm \ i18n itemmodels jobwidgets kcmutils kio parts service solid \ sonnet syntaxhighlighting texteditor textwidgets threadweaver \ widgetsaddons windowsystem xmlgui USE_QT= concurrent core dbus gui network webkit widgets xml \ buildtools:build qmake:build USE_XORG= x11 # Versioning values, to reduce plist churn (match with devel/kdevelop) -PLATFORM_VER= 510 +PLATFORM_VER= 511 PRIVATE_VER= 5.7 PLIST_SUB+= PLATFORM_VER=${PLATFORM_VER} PRIVATE_VER=${PRIVATE_VER} # Does not build with jobs. MAKE_JOBS_UNSAFE= yes .include diff --git a/devel/kdev-php/distinfo b/devel/kdev-php/distinfo index 82bc9612a6c1..97efb0f64e02 100644 --- a/devel/kdev-php/distinfo +++ b/devel/kdev-php/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1677828146 -SHA256 (KDE/release-service/22.12.3/kdev-php-22.12.3.tar.xz) = a8e6efda3af1a4d689b5c977c5327ebd5987ddb0cc6f7b364fe61745e44771c6 -SIZE (KDE/release-service/22.12.3/kdev-php-22.12.3.tar.xz) = 1086004 +TIMESTAMP = 1681548270 +SHA256 (KDE/release-service/23.04.0/kdev-php-23.04.0.tar.xz) = be52ddf3f39baa0d7b6f214d510d43c906824995261f1959053f39c4c6d84b7e +SIZE (KDE/release-service/23.04.0/kdev-php-23.04.0.tar.xz) = 1086172 diff --git a/devel/kdev-python/Makefile b/devel/kdev-python/Makefile index 880691fede72..390db71fbf11 100644 --- a/devel/kdev-python/Makefile +++ b/devel/kdev-python/Makefile @@ -1,30 +1,30 @@ PORTNAME= kdev-python DISTVERSION= ${KDE_APPLICATIONS_VERSION} CATEGORIES= devel kde kde-applications MAINTAINER= kde@FreeBSD.org COMMENT= Python support for KDevelop WWW= https://www.kdevelop.org/ LICENSE= GPLv2+ BUILD_DEPENDS= kdev-pg-qt:devel/kdevelop-pg-qt LIB_DEPENDS= libKDevPlatformInterfaces.so:devel/kdevelop USES= cmake compiler:c++11-lib kde:5 python:3.7+ qt:5 tar:xz xorg USE_KDE= attica auth codecs completion config configwidgets coreaddons \ ecm i18n itemmodels jobwidgets kio newstuff parts service \ solid sonnet syntaxhighlighting texteditor textwidgets \ threadweaver widgetsaddons windowsystem xmlgui USE_QT= concurrent core dbus gui network widgets xml \ buildtools:build qmake:build USE_XORG= x11 # Versioning values, to reduce plist churn (match with devel/kdevelop) -PLATFORM_VER= 510 +PLATFORM_VER= 511 PLIST_SUB+= PLATFORM_VER=${PLATFORM_VER} # Does not build with jobs. MAKE_JOBS_UNSAFE= yes .include diff --git a/devel/kdev-python/distinfo b/devel/kdev-python/distinfo index 30cff0bca76b..7ba4736fee62 100644 --- a/devel/kdev-python/distinfo +++ b/devel/kdev-python/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1677828135 -SHA256 (KDE/release-service/22.12.3/kdev-python-22.12.3.tar.xz) = fa6640519f23c275a75b7969bf4cc3f3ff41e7cf2f400137846972b7da936e79 -SIZE (KDE/release-service/22.12.3/kdev-python-22.12.3.tar.xz) = 1095932 +TIMESTAMP = 1681548260 +SHA256 (KDE/release-service/23.04.0/kdev-python-23.04.0.tar.xz) = 65db2d79007c47fc59bc83f61262ffc4508636ae6a8144b2b86ba7003ac08d66 +SIZE (KDE/release-service/23.04.0/kdev-python-23.04.0.tar.xz) = 1096352 diff --git a/devel/kdevelop/Makefile b/devel/kdevelop/Makefile index ef06b24e3c2a..c9b3affb44bb 100644 --- a/devel/kdevelop/Makefile +++ b/devel/kdevelop/Makefile @@ -1,63 +1,65 @@ # When updating this port, also chase # devel/kdev-php # devel/kdev-python PORTNAME= kdevelop DISTVERSION= ${KDE_APPLICATIONS_VERSION} CATEGORIES= devel kde kde-applications MAINTAINER= kde@FreeBSD.org COMMENT= Plugin extensible IDE for C/C++ and other languages WWW= https://www.kdevelop.org/ LICENSE= GPLv2+ LGPL20+ LICENSE_COMB= multi BUILD_DEPENDS= kdev-pg-qt:devel/kdevelop-pg-qt LIB_DEPENDS= libKasten4Controllers.so:devel/okteta \ libapr-1.so:devel/apr1 \ libsvn_client-1.so:devel/subversion \ libboost_thread.so:devel/boost-libs \ libkomparediff2.so:textproc/libkomparediff2 RUN_DEPENDS= gmake:devel/gmake USES= cmake compiler:c++11-lib desktop-file-utils gettext grantlee:5 \ - kde:5 llvm:build,run qt:5 shared-mime-info shebangfix tar:xz xorg -USE_KDE= archive attica auth bookmarks codecs completion config configwidgets \ - coreaddons crash guiaddons emoticons i18n iconthemes init \ - itemmodels itemviews jobwidgets kcmutils kdeclarative \ - kio libksysguard newstuff notifications \ - notifyconfig package parts plasma-framework purpose \ - runner service solid sonnet syntaxhighlighting texteditor \ - textwidgets threadweaver \ - widgetsaddons windowsystem xmlgui + kde:5 llvm:build,run pkgconfig qt:5 shared-mime-info \ + shebangfix tar:xz xorg +USE_KDE= archive attica auth bookmarks codecs completion config \ + configwidgets coreaddons crash emoticons guiaddons i18n \ + iconthemes init itemmodels itemviews jobwidgets kcmutils \ + kdeclarative kio libksysguard newstuff notifications \ + notifyconfig package parts plasma-framework purpose runner \ + service solid sonnet syntaxhighlighting texteditor textwidgets \ + threadweaver widgetsaddons windowsystem xmlgui USE_QT= concurrent core dbus declarative gui help network printsupport \ - script sql widgets xml buildtools:build qmake:build + script sql widgets xml \ + buildtools:build qmake:build USE_XORG= x11 SHEBANG_FILES= kdevplatform/util/kdevplatform_shell_environment.sh \ kdevplatform/util/.zshrc # Most ports have ecm:build, testlib:build, but because this is an # IDE, which **probably** is used for Qt / KDE development (also # other things, but let's guess a target market), pull in some # additional development things that are otherwise build-dep-only. USE_KDE+= ecm USE_QT+= testlib -CMAKE_ARGS= -DCMAKE_POLICY_DEFAULT_CMP0074=NEW -DLLVM_ROOT=${LLVM_PREFIX} +CMAKE_ARGS= -DCMAKE_POLICY_DEFAULT_CMP0074=NEW \ + -DClang_DIR=${LLVM_PREFIX}/lib/cmake/clang # Versioning values, to reduce plist churn -SO_VER= 510 -SO_VER_LONG= 5.10.221203 +SO_VER= 511 +SO_VER_LONG= 5.11.230400 PLIST_SUB+= SO_VER=${SO_VER} SO_VER_LONG=${SO_VER_LONG} OPTIONS_DEFINE= WEBENGINE WEBENGINE_DESC= Use WebEngine as help reader WEBENGINE_USES= qt:5 WEBENGINE_USE= QT=location,webchannel,webengine WEBENGINE_USE_OFF= QT=webkit WEBENGINE_CMAKE_OFF= -DCMAKE_DISABLE_FIND_PACKAGE_Qt5WebEngineWidgets:BOOL=TRUE SHEBANG_LANG= zsh zsh_OLD_CMD= /bin/zsh zsh_CMD= ${LOCALBASE}/bin/zsh .include diff --git a/devel/kdevelop/distinfo b/devel/kdevelop/distinfo index 96b500d29abd..c882a047d070 100644 --- a/devel/kdevelop/distinfo +++ b/devel/kdevelop/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1677828139 -SHA256 (KDE/release-service/22.12.3/kdevelop-22.12.3.tar.xz) = cae5da92a1ad2866b6e02f74784a43e0b68ebb3c93c0e23ad64e9ce230f00643 -SIZE (KDE/release-service/22.12.3/kdevelop-22.12.3.tar.xz) = 8652864 +TIMESTAMP = 1681548269 +SHA256 (KDE/release-service/23.04.0/kdevelop-23.04.0.tar.xz) = 8d1fd187ec68bdf2e2ff3432e421141b1256bb1bb7ba4a328065013c5abdb4d0 +SIZE (KDE/release-service/23.04.0/kdevelop-23.04.0.tar.xz) = 8656872 diff --git a/devel/kdevelop/pkg-plist b/devel/kdevelop/pkg-plist index 4f38ebc1666c..84212264443a 100644 --- a/devel/kdevelop/pkg-plist +++ b/devel/kdevelop/pkg-plist @@ -1,3255 +1,3256 @@ bin/kdev_dbus_socket_transformer bin/kdev_format_source bin/kdev_includepathsconverter bin/kdevelop bin/kdevelop! bin/kdevplatform_shell_environment.sh include/kdevelop/custom-definesandincludes/idefinesandincludesmanager.h include/kdevelop/kdevelop_version.h include/kdevelop/makebuilder/imakebuilder.h include/kdevelop/qmake/iqmakebuilder.h include/kdevplatform/config-kdevplatform.h include/kdevplatform/debugger/breakpoint/breakpoint.h include/kdevplatform/debugger/breakpoint/breakpointdetails.h include/kdevplatform/debugger/breakpoint/breakpointmodel.h include/kdevplatform/debugger/breakpoint/breakpointwidget.h include/kdevplatform/debugger/debuggerexport.h include/kdevplatform/debugger/framestack/framestackmodel.h include/kdevplatform/debugger/interfaces/ibreakpointcontroller.h include/kdevplatform/debugger/interfaces/idebugsession.h include/kdevplatform/debugger/interfaces/iframestackmodel.h include/kdevplatform/debugger/interfaces/ivariablecontroller.h include/kdevplatform/debugger/util/pathmappings.h include/kdevplatform/debugger/util/treeitem.h include/kdevplatform/debugger/util/treemodel.h include/kdevplatform/debugger/util/treeview.h include/kdevplatform/debugger/variable/variablecollection.h include/kdevplatform/documentation/documentationexport.h include/kdevplatform/documentation/documentationfindwidget.h include/kdevplatform/documentation/standarddocumentationview.h include/kdevplatform/execute/iexecuteplugin.h include/kdevplatform/executescript/iexecutescriptplugin.h include/kdevplatform/interfaces/configpage.h include/kdevplatform/interfaces/context.h include/kdevplatform/interfaces/contextmenuextension.h include/kdevplatform/interfaces/iassistant.h include/kdevplatform/interfaces/ibuddydocumentfinder.h include/kdevplatform/interfaces/icompletionsettings.h include/kdevplatform/interfaces/icore.h include/kdevplatform/interfaces/idebugcontroller.h include/kdevplatform/interfaces/idocument.h include/kdevplatform/interfaces/idocumentation.h include/kdevplatform/interfaces/idocumentationcontroller.h include/kdevplatform/interfaces/idocumentationprovider.h include/kdevplatform/interfaces/idocumentationproviderprovider.h include/kdevplatform/interfaces/idocumentcontroller.h include/kdevplatform/interfaces/ilanguagecheck.h include/kdevplatform/interfaces/ilanguagecheckprovider.h include/kdevplatform/interfaces/ilanguagecontroller.h include/kdevplatform/interfaces/ilaunchconfiguration.h include/kdevplatform/interfaces/ilauncher.h include/kdevplatform/interfaces/ilaunchmode.h include/kdevplatform/interfaces/interfacesexport.h include/kdevplatform/interfaces/ipartcontroller.h include/kdevplatform/interfaces/iplugin.h include/kdevplatform/interfaces/iplugincontroller.h include/kdevplatform/interfaces/ipluginversion.h include/kdevplatform/interfaces/iproblem.h include/kdevplatform/interfaces/iproject.h include/kdevplatform/interfaces/iprojectcontroller.h include/kdevplatform/interfaces/iprojectprovider.h include/kdevplatform/interfaces/iruncontroller.h include/kdevplatform/interfaces/iruntime.h include/kdevplatform/interfaces/iruntimecontroller.h include/kdevplatform/interfaces/iselectioncontroller.h include/kdevplatform/interfaces/isession.h include/kdevplatform/interfaces/isessionlock.h include/kdevplatform/interfaces/isourceformatter.h include/kdevplatform/interfaces/isourceformattercontroller.h include/kdevplatform/interfaces/istatus.h include/kdevplatform/interfaces/itemplateprovider.h include/kdevplatform/interfaces/itestcontroller.h include/kdevplatform/interfaces/itestsuite.h include/kdevplatform/interfaces/itoolviewactionlistener.h include/kdevplatform/interfaces/iuicontroller.h include/kdevplatform/interfaces/launchconfigurationpage.h include/kdevplatform/interfaces/launchconfigurationtype.h include/kdevplatform/kdevplatform_version.h include/kdevplatform/language/assistant/renameaction.h include/kdevplatform/language/assistant/renameassistant.h include/kdevplatform/language/assistant/staticassistant.h include/kdevplatform/language/assistant/staticassistantsmanager.h include/kdevplatform/language/backgroundparser/backgroundparser.h include/kdevplatform/language/backgroundparser/documentchangetracker.h include/kdevplatform/language/backgroundparser/parsejob.h include/kdevplatform/language/backgroundparser/parseprojectjob.h include/kdevplatform/language/backgroundparser/urlparselock.h include/kdevplatform/language/checks/controlflowgraph.h include/kdevplatform/language/checks/controlflownode.h include/kdevplatform/language/checks/dataaccess.h include/kdevplatform/language/checks/dataaccessrepository.h include/kdevplatform/language/classmodel/allclassesfolder.h include/kdevplatform/language/classmodel/classmodel.h include/kdevplatform/language/classmodel/classmodelnode.h include/kdevplatform/language/classmodel/classmodelnodescontroller.h include/kdevplatform/language/classmodel/documentclassesfolder.h include/kdevplatform/language/classmodel/projectfolder.h include/kdevplatform/language/codecompletion/abstractincludefilecompletionitem.h include/kdevplatform/language/codecompletion/codecompletion.h include/kdevplatform/language/codecompletion/codecompletioncontext.h include/kdevplatform/language/codecompletion/codecompletionhelper.h include/kdevplatform/language/codecompletion/codecompletionitem.h include/kdevplatform/language/codecompletion/codecompletionitemgrouper.h include/kdevplatform/language/codecompletion/codecompletionmodel.h include/kdevplatform/language/codecompletion/codecompletiontesthelper.h include/kdevplatform/language/codecompletion/codecompletionworker.h include/kdevplatform/language/codecompletion/normaldeclarationcompletionitem.h include/kdevplatform/language/codegen/applychangeswidget.h include/kdevplatform/language/codegen/astchangeset.h include/kdevplatform/language/codegen/basicrefactoring.h include/kdevplatform/language/codegen/codedescription.h include/kdevplatform/language/codegen/coderepresentation.h include/kdevplatform/language/codegen/documentchangeset.h include/kdevplatform/language/codegen/duchainchangeset.h include/kdevplatform/language/codegen/sourcefiletemplate.h include/kdevplatform/language/codegen/templateclassgenerator.h include/kdevplatform/language/codegen/templateengine.h include/kdevplatform/language/codegen/templatepreviewicon.h include/kdevplatform/language/codegen/templaterenderer.h include/kdevplatform/language/codegen/templatesmodel.h include/kdevplatform/language/codegen/utilities.h include/kdevplatform/language/duchain/abstractfunctiondeclaration.h include/kdevplatform/language/duchain/aliasdeclaration.h include/kdevplatform/language/duchain/appendedlist.h include/kdevplatform/language/duchain/builders/abstractcontextbuilder.h include/kdevplatform/language/duchain/builders/abstractdeclarationbuilder.h include/kdevplatform/language/duchain/builders/abstracttypebuilder.h include/kdevplatform/language/duchain/builders/abstractusebuilder.h include/kdevplatform/language/duchain/builders/dynamiclanguageexpressionvisitor.h include/kdevplatform/language/duchain/classdeclaration.h include/kdevplatform/language/duchain/classfunctiondeclaration.h include/kdevplatform/language/duchain/classmemberdeclaration.h include/kdevplatform/language/duchain/classmemberdeclarationdata.h include/kdevplatform/language/duchain/codemodel.h include/kdevplatform/language/duchain/declaration.h include/kdevplatform/language/duchain/declarationdata.h include/kdevplatform/language/duchain/declarationid.h include/kdevplatform/language/duchain/definitions.h include/kdevplatform/language/duchain/duchain.h include/kdevplatform/language/duchain/duchainbase.h include/kdevplatform/language/duchain/duchaindumper.h include/kdevplatform/language/duchain/duchainlock.h include/kdevplatform/language/duchain/duchainpointer.h include/kdevplatform/language/duchain/duchainregister.h include/kdevplatform/language/duchain/duchainutils.h include/kdevplatform/language/duchain/ducontext.h include/kdevplatform/language/duchain/ducontextdata.h include/kdevplatform/language/duchain/dumpdotgraph.h include/kdevplatform/language/duchain/forwarddeclaration.h include/kdevplatform/language/duchain/functiondeclaration.h include/kdevplatform/language/duchain/functiondefinition.h include/kdevplatform/language/duchain/identifier.h include/kdevplatform/language/duchain/indexeddeclaration.h include/kdevplatform/language/duchain/indexedducontext.h include/kdevplatform/language/duchain/indexedtopducontext.h include/kdevplatform/language/duchain/instantiationinformation.h include/kdevplatform/language/duchain/localindexeddeclaration.h include/kdevplatform/language/duchain/localindexedducontext.h include/kdevplatform/language/duchain/namespacealiasdeclaration.h include/kdevplatform/language/duchain/navigation/abstractdeclarationnavigationcontext.h include/kdevplatform/language/duchain/navigation/abstractincludenavigationcontext.h include/kdevplatform/language/duchain/navigation/abstractnavigationcontext.h include/kdevplatform/language/duchain/navigation/abstractnavigationwidget.h include/kdevplatform/language/duchain/navigation/navigationaction.h include/kdevplatform/language/duchain/navigation/usescollector.h include/kdevplatform/language/duchain/navigation/usesnavigationcontext.h include/kdevplatform/language/duchain/navigation/useswidget.h include/kdevplatform/language/duchain/parsingenvironment.h include/kdevplatform/language/duchain/persistentsymboltable.h include/kdevplatform/language/duchain/problem.h include/kdevplatform/language/duchain/specializationstore.h include/kdevplatform/language/duchain/stringhelpers.h include/kdevplatform/language/duchain/topducontext.h include/kdevplatform/language/duchain/topducontextdata.h include/kdevplatform/language/duchain/topducontextutils.h include/kdevplatform/language/duchain/types/abstracttype.h include/kdevplatform/language/duchain/types/alltypes.h include/kdevplatform/language/duchain/types/arraytype.h include/kdevplatform/language/duchain/types/constantintegraltype.h include/kdevplatform/language/duchain/types/containertypes.h include/kdevplatform/language/duchain/types/delayedtype.h include/kdevplatform/language/duchain/types/enumerationtype.h include/kdevplatform/language/duchain/types/enumeratortype.h include/kdevplatform/language/duchain/types/functiontype.h include/kdevplatform/language/duchain/types/identifiedtype.h include/kdevplatform/language/duchain/types/indexedtype.h include/kdevplatform/language/duchain/types/integraltype.h include/kdevplatform/language/duchain/types/pointertype.h include/kdevplatform/language/duchain/types/referencetype.h include/kdevplatform/language/duchain/types/structuretype.h include/kdevplatform/language/duchain/types/typealiastype.h include/kdevplatform/language/duchain/types/typepointer.h include/kdevplatform/language/duchain/types/typeregister.h include/kdevplatform/language/duchain/types/typerepository.h include/kdevplatform/language/duchain/types/typesystem.h include/kdevplatform/language/duchain/types/typesystemdata.h include/kdevplatform/language/duchain/types/typeutils.h include/kdevplatform/language/duchain/types/unsuretype.h include/kdevplatform/language/duchain/use.h include/kdevplatform/language/editor/cursorinrevision.h include/kdevplatform/language/editor/documentcursor.h include/kdevplatform/language/editor/documentrange.h include/kdevplatform/language/editor/modificationrevision.h include/kdevplatform/language/editor/modificationrevisionset.h include/kdevplatform/language/editor/persistentmovingrange.h include/kdevplatform/language/editor/rangeinrevision.h include/kdevplatform/language/highlighting/codehighlighting.h include/kdevplatform/language/highlighting/colorcache.h include/kdevplatform/language/highlighting/configurablecolors.h include/kdevplatform/language/interfaces/abbreviations.h include/kdevplatform/language/interfaces/codecontext.h include/kdevplatform/language/interfaces/editorcontext.h include/kdevplatform/language/interfaces/iastcontainer.h include/kdevplatform/language/interfaces/icodehighlighting.h include/kdevplatform/language/interfaces/icontextbrowser.h include/kdevplatform/language/interfaces/icreateclasshelper.h include/kdevplatform/language/interfaces/ilanguagesupport.h include/kdevplatform/language/interfaces/iquickopen.h include/kdevplatform/language/interfaces/quickopendataprovider.h include/kdevplatform/language/interfaces/quickopenfilter.h include/kdevplatform/language/languageexport.h include/kdevplatform/language/util/basicsetrepository.h include/kdevplatform/language/util/debuglanguageparserhelper.h include/kdevplatform/language/util/includeitem.h include/kdevplatform/language/util/kdevhash.h include/kdevplatform/language/util/navigationtooltip.h include/kdevplatform/language/util/setrepository.h include/kdevplatform/openwith/iopenwith.h include/kdevplatform/outputview/filtereditem.h include/kdevplatform/outputview/ifilterstrategy.h include/kdevplatform/outputview/ioutputview.h include/kdevplatform/outputview/ioutputviewmodel.h include/kdevplatform/outputview/outputdelegate.h include/kdevplatform/outputview/outputexecutejob.h include/kdevplatform/outputview/outputfilteringstrategies.h include/kdevplatform/outputview/outputjob.h include/kdevplatform/outputview/outputmodel.h include/kdevplatform/outputview/outputviewexport.h include/kdevplatform/project/abstractfilemanagerplugin.h include/kdevplatform/project/builderjob.h include/kdevplatform/project/helper.h include/kdevplatform/project/importprojectjob.h include/kdevplatform/project/interfaces/ibuildsystemmanager.h include/kdevplatform/project/interfaces/iprojectbuilder.h include/kdevplatform/project/interfaces/iprojectfilemanager.h include/kdevplatform/project/interfaces/iprojectfilter.h include/kdevplatform/project/interfaces/iprojectfilterprovider.h include/kdevplatform/project/projectbuildsetmodel.h include/kdevplatform/project/projectchangesmodel.h include/kdevplatform/project/projectconfigpage.h include/kdevplatform/project/projectconfigskeleton.h include/kdevplatform/project/projectexport.h include/kdevplatform/project/projectfiltermanager.h include/kdevplatform/project/projectitemlineedit.h include/kdevplatform/project/projectmodel.h include/kdevplatform/project/projectutils.h include/kdevplatform/project/widgets/dependencieswidget.h include/kdevplatform/serialization/abstractitemrepository.h include/kdevplatform/serialization/indexedstring.h include/kdevplatform/serialization/itemrepository.h include/kdevplatform/serialization/itemrepositoryexampleitem.h include/kdevplatform/serialization/itemrepositoryreferencecounting.h include/kdevplatform/serialization/itemrepositoryregistry.h include/kdevplatform/serialization/referencecounting.h include/kdevplatform/serialization/repositorymanager.h include/kdevplatform/serialization/serializationexport.h include/kdevplatform/shell/checkerstatus.h include/kdevplatform/shell/colorschemechooser.h include/kdevplatform/shell/core.h include/kdevplatform/shell/documentcontroller.h include/kdevplatform/shell/environmentconfigurebutton.h include/kdevplatform/shell/filteredproblemstore.h include/kdevplatform/shell/languagecontroller.h include/kdevplatform/shell/launchconfiguration.h include/kdevplatform/shell/mainwindow.h include/kdevplatform/shell/partcontroller.h include/kdevplatform/shell/partdocument.h include/kdevplatform/shell/plugincontroller.h include/kdevplatform/shell/problem.h include/kdevplatform/shell/problemconstants.h include/kdevplatform/shell/problemmodel.h include/kdevplatform/shell/problemmodelset.h include/kdevplatform/shell/problemstore.h include/kdevplatform/shell/project.h include/kdevplatform/shell/projectcontroller.h include/kdevplatform/shell/runcontroller.h include/kdevplatform/shell/selectioncontroller.h include/kdevplatform/shell/session.h include/kdevplatform/shell/sessioncontroller.h include/kdevplatform/shell/sessionlock.h include/kdevplatform/shell/shellexport.h include/kdevplatform/shell/shellextension.h include/kdevplatform/shell/sourceformattercontroller.h include/kdevplatform/shell/sourceformatterselectionedit.h include/kdevplatform/shell/textdocument.h include/kdevplatform/shell/uicontroller.h include/kdevplatform/sublime/area.h include/kdevplatform/sublime/areaindex.h include/kdevplatform/sublime/areawalkers.h include/kdevplatform/sublime/container.h include/kdevplatform/sublime/controller.h include/kdevplatform/sublime/document.h include/kdevplatform/sublime/mainwindow.h include/kdevplatform/sublime/mainwindowoperator.h include/kdevplatform/sublime/message.h include/kdevplatform/sublime/sublimedefs.h include/kdevplatform/sublime/sublimeexport.h include/kdevplatform/sublime/tooldocument.h include/kdevplatform/sublime/urldocument.h include/kdevplatform/sublime/view.h include/kdevplatform/sublime/viewbarcontainer.h include/kdevplatform/util/activetooltip.h include/kdevplatform/util/algorithm.h include/kdevplatform/util/autoorientedsplitter.h include/kdevplatform/util/commandexecutor.h include/kdevplatform/util/convenientfreelist.h include/kdevplatform/util/embeddedfreetree.h include/kdevplatform/util/environmentprofilelist.h include/kdevplatform/util/environmentselectionwidget.h include/kdevplatform/util/executecompositejob.h include/kdevplatform/util/filesystemhelpers.h include/kdevplatform/util/focusedtreeview.h include/kdevplatform/util/foregroundlock.h include/kdevplatform/util/formattinghelpers.h include/kdevplatform/util/jobstatus.h include/kdevplatform/util/kdevstringhandler.h include/kdevplatform/util/kdevvarlengtharray.h include/kdevplatform/util/ksharedobject.h include/kdevplatform/util/multilevellistview.h include/kdevplatform/util/objectlist.h include/kdevplatform/util/owningrawpointercontainer.h include/kdevplatform/util/path.h include/kdevplatform/util/placeholderitemproxymodel.h include/kdevplatform/util/processlinemaker.h include/kdevplatform/util/projecttestjob.h include/kdevplatform/util/pushvalue.h include/kdevplatform/util/stack.h include/kdevplatform/util/texteditorhelpers.h include/kdevplatform/util/utilexport.h include/kdevplatform/util/widgetcolorizer.h include/kdevplatform/util/wildcardhelpers.h include/kdevplatform/util/zoomcontroller.h include/kdevplatform/vcs/dvcs/dvcsevent.h include/kdevplatform/vcs/dvcs/dvcsjob.h include/kdevplatform/vcs/dvcs/dvcsplugin.h include/kdevplatform/vcs/dvcs/ui/dvcsimportmetadatawidget.h include/kdevplatform/vcs/interfaces/ibasicversioncontrol.h include/kdevplatform/vcs/interfaces/ibranchingversioncontrol.h include/kdevplatform/vcs/interfaces/ibrowsableversioncontrol.h include/kdevplatform/vcs/interfaces/icentralizedversioncontrol.h include/kdevplatform/vcs/interfaces/idistributedversioncontrol.h include/kdevplatform/vcs/interfaces/ipatchdocument.h include/kdevplatform/vcs/interfaces/ipatchsource.h include/kdevplatform/vcs/interfaces/irepositoryversioncontrol.h include/kdevplatform/vcs/models/brancheslistmodel.h include/kdevplatform/vcs/models/vcsannotationmodel.h include/kdevplatform/vcs/models/vcseventmodel.h include/kdevplatform/vcs/models/vcsfilechangesmodel.h include/kdevplatform/vcs/models/vcsitemeventmodel.h include/kdevplatform/vcs/vcsannotation.h include/kdevplatform/vcs/vcsdiff.h include/kdevplatform/vcs/vcsevent.h include/kdevplatform/vcs/vcsexport.h include/kdevplatform/vcs/vcsjob.h include/kdevplatform/vcs/vcslocation.h include/kdevplatform/vcs/vcspluginhelper.h include/kdevplatform/vcs/vcsrevision.h include/kdevplatform/vcs/vcsstatusinfo.h include/kdevplatform/vcs/widgets/standardvcslocationwidget.h include/kdevplatform/vcs/widgets/vcscommitdialog.h include/kdevplatform/vcs/widgets/vcsdiffwidget.h include/kdevplatform/vcs/widgets/vcseventwidget.h include/kdevplatform/vcs/widgets/vcsimportmetadatawidget.h include/kdevplatform/vcs/widgets/vcslocationwidget.h lib/cmake/KDevPlatform/KDevPlatformConfig.cmake lib/cmake/KDevPlatform/KDevPlatformConfigVersion.cmake lib/cmake/KDevPlatform/KDevPlatformMacros.cmake lib/cmake/KDevPlatform/KDevPlatformTargets-%%CMAKE_BUILD_TYPE%%.cmake lib/cmake/KDevPlatform/KDevPlatformTargets.cmake lib/cmake/KDevelop/KDevelopConfig.cmake lib/cmake/KDevelop/KDevelopConfigVersion.cmake lib/cmake/KDevelop/KDevelopTargets.cmake lib/libKDevCMakeCommon.so.%%SO_VER%% lib/libKDevClangPrivate.so.%%SO_VER%% lib/libKDevCompileAnalyzerCommon.so.%%SO_VER%% lib/libKDevPlatformDebugger.so lib/libKDevPlatformDebugger.so.%%SO_VER_LONG%% lib/libKDevPlatformDebugger.so.%%SO_VER%% lib/libKDevPlatformDocumentation.so lib/libKDevPlatformDocumentation.so.%%SO_VER_LONG%% lib/libKDevPlatformDocumentation.so.%%SO_VER%% lib/libKDevPlatformInterfaces.so lib/libKDevPlatformInterfaces.so.%%SO_VER_LONG%% lib/libKDevPlatformInterfaces.so.%%SO_VER%% lib/libKDevPlatformLanguage.so lib/libKDevPlatformLanguage.so.%%SO_VER_LONG%% lib/libKDevPlatformLanguage.so.%%SO_VER%% lib/libKDevPlatformOutputView.so lib/libKDevPlatformOutputView.so.%%SO_VER_LONG%% lib/libKDevPlatformOutputView.so.%%SO_VER%% lib/libKDevPlatformProject.so lib/libKDevPlatformProject.so.%%SO_VER_LONG%% lib/libKDevPlatformProject.so.%%SO_VER%% lib/libKDevPlatformSerialization.so lib/libKDevPlatformSerialization.so.%%SO_VER_LONG%% lib/libKDevPlatformSerialization.so.%%SO_VER%% lib/libKDevPlatformShell.so lib/libKDevPlatformShell.so.%%SO_VER_LONG%% lib/libKDevPlatformShell.so.%%SO_VER%% lib/libKDevPlatformSublime.so lib/libKDevPlatformSublime.so.%%SO_VER_LONG%% lib/libKDevPlatformSublime.so.%%SO_VER%% lib/libKDevPlatformUtil.so lib/libKDevPlatformUtil.so.%%SO_VER_LONG%% lib/libKDevPlatformUtil.so.%%SO_VER%% lib/libKDevPlatformVcs.so lib/libKDevPlatformVcs.so.%%SO_VER_LONG%% lib/libKDevPlatformVcs.so.%%SO_VER%% lib/libKDevelopSessionsWatch.so %%QT_PLUGINDIR%%/grantlee/%%GRANTLEE_VERSION_SHORT%%/kdev_filters.so %%QT_PLUGINDIR%%/kdevplatform/%%SO_VER%%/kdevandroid.so %%QT_PLUGINDIR%%/kdevplatform/%%SO_VER%%/kdevappwizard.so %%QT_PLUGINDIR%%/kdevplatform/%%SO_VER%%/kdevastyle.so %%QT_PLUGINDIR%%/kdevplatform/%%SO_VER%%/kdevbazaar.so %%QT_PLUGINDIR%%/kdevplatform/%%SO_VER%%/kdevclangsupport.so %%QT_PLUGINDIR%%/kdevplatform/%%SO_VER%%/kdevclangtidy.so %%QT_PLUGINDIR%%/kdevplatform/%%SO_VER%%/kdevclassbrowser.so %%QT_PLUGINDIR%%/kdevplatform/%%SO_VER%%/kdevclazy.so %%QT_PLUGINDIR%%/kdevplatform/%%SO_VER%%/kdevcmakebuilder.so %%QT_PLUGINDIR%%/kdevplatform/%%SO_VER%%/kdevcmakedocumentation.so %%QT_PLUGINDIR%%/kdevplatform/%%SO_VER%%/kdevcmakemanager.so %%QT_PLUGINDIR%%/kdevplatform/%%SO_VER%%/kdevcodeutils.so %%QT_PLUGINDIR%%/kdevplatform/%%SO_VER%%/kdevcontextbrowser.so %%QT_PLUGINDIR%%/kdevplatform/%%SO_VER%%/kdevcppcheck.so %%QT_PLUGINDIR%%/kdevplatform/%%SO_VER%%/kdevcraft.so %%QT_PLUGINDIR%%/kdevplatform/%%SO_VER%%/kdevcustombuildsystem.so %%QT_PLUGINDIR%%/kdevplatform/%%SO_VER%%/kdevcustommakemanager.so %%QT_PLUGINDIR%%/kdevplatform/%%SO_VER%%/kdevcustomscript.so %%QT_PLUGINDIR%%/kdevplatform/%%SO_VER%%/kdevdefinesandincludesmanager.so %%QT_PLUGINDIR%%/kdevplatform/%%SO_VER%%/kdevdocker.so %%QT_PLUGINDIR%%/kdevplatform/%%SO_VER%%/kdevdocumentswitcher.so %%QT_PLUGINDIR%%/kdevplatform/%%SO_VER%%/kdevdocumentview.so %%QT_PLUGINDIR%%/kdevplatform/%%SO_VER%%/kdevexecute.so %%QT_PLUGINDIR%%/kdevplatform/%%SO_VER%%/kdevexecuteplasmoid.so %%QT_PLUGINDIR%%/kdevplatform/%%SO_VER%%/kdevexecutescript.so %%QT_PLUGINDIR%%/kdevplatform/%%SO_VER%%/kdevexternalscript.so %%QT_PLUGINDIR%%/kdevplatform/%%SO_VER%%/kdevfilemanager.so %%QT_PLUGINDIR%%/kdevplatform/%%SO_VER%%/kdevfiletemplates.so %%QT_PLUGINDIR%%/kdevplatform/%%SO_VER%%/kdevflatpak.so %%QT_PLUGINDIR%%/kdevplatform/%%SO_VER%%/kdevgdb.so %%QT_PLUGINDIR%%/kdevplatform/%%SO_VER%%/kdevgenericmanager.so %%QT_PLUGINDIR%%/kdevplatform/%%SO_VER%%/kdevghprovider.so %%QT_PLUGINDIR%%/kdevplatform/%%SO_VER%%/kdevgit.so %%QT_PLUGINDIR%%/kdevplatform/%%SO_VER%%/kdevgrepview.so %%QT_PLUGINDIR%%/kdevplatform/%%SO_VER%%/kdevheaptrack.so %%QT_PLUGINDIR%%/kdevplatform/%%SO_VER%%/kdevkonsoleview.so %%QT_PLUGINDIR%%/kdevplatform/%%SO_VER%%/kdevlldb.so %%QT_PLUGINDIR%%/kdevplatform/%%SO_VER%%/kdevmakebuilder.so %%QT_PLUGINDIR%%/kdevplatform/%%SO_VER%%/kdevmanpage.so %%QT_PLUGINDIR%%/kdevplatform/%%SO_VER%%/kdevmesonmanager.so %%QT_PLUGINDIR%%/kdevplatform/%%SO_VER%%/kdevninja.so %%QT_PLUGINDIR%%/kdevplatform/%%SO_VER%%/kdevokteta.so %%QT_PLUGINDIR%%/kdevplatform/%%SO_VER%%/kdevopenwith.so %%QT_PLUGINDIR%%/kdevplatform/%%SO_VER%%/kdevoutlineview.so %%QT_PLUGINDIR%%/kdevplatform/%%SO_VER%%/kdevpatchreview.so %%QT_PLUGINDIR%%/kdevplatform/%%SO_VER%%/kdevperforce.so %%QT_PLUGINDIR%%/kdevplatform/%%SO_VER%%/kdevproblemreporter.so %%QT_PLUGINDIR%%/kdevplatform/%%SO_VER%%/kdevprojectfilter.so %%QT_PLUGINDIR%%/kdevplatform/%%SO_VER%%/kdevprojectmanagerview.so %%QT_PLUGINDIR%%/kdevplatform/%%SO_VER%%/kdevqmakebuilder.so %%QT_PLUGINDIR%%/kdevplatform/%%SO_VER%%/kdevqmakemanager.so %%QT_PLUGINDIR%%/kdevplatform/%%SO_VER%%/kdevqmljslanguagesupport.so %%QT_PLUGINDIR%%/kdevplatform/%%SO_VER%%/kdevqthelp.so %%QT_PLUGINDIR%%/kdevplatform/%%SO_VER%%/kdevquickopen.so %%QT_PLUGINDIR%%/kdevplatform/%%SO_VER%%/kdevscratchpad.so %%QT_PLUGINDIR%%/kdevplatform/%%SO_VER%%/kdevsourceformatter.so %%QT_PLUGINDIR%%/kdevplatform/%%SO_VER%%/kdevstandardoutputview.so %%QT_PLUGINDIR%%/kdevplatform/%%SO_VER%%/kdevsubversion.so %%QT_PLUGINDIR%%/kdevplatform/%%SO_VER%%/kdevswitchtobuddy.so %%QT_PLUGINDIR%%/kdevplatform/%%SO_VER%%/kdevtestview.so %%QT_PLUGINDIR%%/kdevplatform/%%SO_VER%%/kdevvcschangesviewplugin.so %%QT_PLUGINDIR%%/kdevplatform/%%SO_VER%%/kdevwelcomepage.so %%QT_PLUGINDIR%%/kf5/krunner/krunner_kdevelopsessions.so %%QT_QMLDIR%%/org/kde/kdevplatform/libkdevelopdashboarddeclarativeplugin.so %%QT_QMLDIR%%/org/kde/kdevplatform/qmldir %%QT_QMLDIR%%/org/kde/plasma/private/kdevelopsessions/libkdevelopsessionsplugin.so %%QT_QMLDIR%%/org/kde/plasma/private/kdevelopsessions/qmldir share/applications/org.kde.kdevelop.desktop share/applications/org.kde.kdevelop_bzr.desktop share/applications/org.kde.kdevelop_git.desktop share/applications/org.kde.kdevelop_kdev4.desktop share/applications/org.kde.kdevelop_ps.desktop share/applications/org.kde.kdevelop_svn.desktop share/doc/HTML/ca/kdevelop/index.cache.bz2 share/doc/HTML/ca/kdevelop/index.docbook share/doc/HTML/ca/kdevelop/kdevelop4_sessionsprojectsworkingsets.png share/doc/HTML/en/kdevelop/Icon-folder.png share/doc/HTML/en/kdevelop/Icon-list-add.png share/doc/HTML/en/kdevelop/Icon-list-remove.png share/doc/HTML/en/kdevelop/index.cache.bz2 share/doc/HTML/en/kdevelop/index.docbook share/doc/HTML/en/kdevelop/kdevelop-10.png share/doc/HTML/en/kdevelop/kdevelop-11.png share/doc/HTML/en/kdevelop/kdevelop-12.png share/doc/HTML/en/kdevelop/kdevelop-13.png share/doc/HTML/en/kdevelop/kdevelop-14.png share/doc/HTML/en/kdevelop/kdevelop-15.png share/doc/HTML/en/kdevelop/kdevelop-16.png share/doc/HTML/en/kdevelop/kdevelop-17.png share/doc/HTML/en/kdevelop/kdevelop-18.png share/doc/HTML/en/kdevelop/kdevelop-19.png share/doc/HTML/en/kdevelop/kdevelop-1a.png share/doc/HTML/en/kdevelop/kdevelop-2.png share/doc/HTML/en/kdevelop/kdevelop-20.png share/doc/HTML/en/kdevelop/kdevelop-23.png share/doc/HTML/en/kdevelop/kdevelop-24.png share/doc/HTML/en/kdevelop/kdevelop-25.png share/doc/HTML/en/kdevelop/kdevelop-26.png share/doc/HTML/en/kdevelop/kdevelop-3.png share/doc/HTML/en/kdevelop/kdevelop-30.png share/doc/HTML/en/kdevelop/kdevelop-31.png share/doc/HTML/en/kdevelop/kdevelop-32.png share/doc/HTML/en/kdevelop/kdevelop-33.png share/doc/HTML/en/kdevelop/kdevelop-34.png share/doc/HTML/en/kdevelop/kdevelop-35.png share/doc/HTML/en/kdevelop/kdevelop-36.png share/doc/HTML/en/kdevelop/kdevelop-37.png share/doc/HTML/en/kdevelop/kdevelop-38.png share/doc/HTML/en/kdevelop/kdevelop-39.png share/doc/HTML/en/kdevelop/kdevelop-4.png share/doc/HTML/en/kdevelop/kdevelop-40.png share/doc/HTML/en/kdevelop/kdevelop-41.png share/doc/HTML/en/kdevelop/kdevelop-42.png share/doc/HTML/en/kdevelop/kdevelop-43.png share/doc/HTML/en/kdevelop/kdevelop-5.png share/doc/HTML/en/kdevelop/kdevelop-6.png share/doc/HTML/en/kdevelop/kdevelop-7.png share/doc/HTML/en/kdevelop/kdevelop-8.png share/doc/HTML/en/kdevelop/kdevelop-9.png share/doc/HTML/en/kdevelop/kdevelop-project-dialog.png share/doc/HTML/en/kdevelop/kdevelop-template-inheritance.png share/doc/HTML/en/kdevelop/kdevelop-template-manager.png share/doc/HTML/en/kdevelop/kdevelop-template-members.png share/doc/HTML/en/kdevelop/kdevelop-template-result.png share/doc/HTML/en/kdevelop/kdevelop-template-selection.png share/doc/HTML/en/kdevelop/kdevelop4_noworkingset.png share/doc/HTML/en/kdevelop/kdevelop4_sessionsprojectsworkingsets.png share/doc/HTML/es/kdevelop/index.cache.bz2 share/doc/HTML/es/kdevelop/index.docbook share/doc/HTML/it/kdevelop/index.cache.bz2 share/doc/HTML/it/kdevelop/index.docbook share/doc/HTML/nl/kdevelop/index.cache.bz2 share/doc/HTML/nl/kdevelop/index.docbook share/doc/HTML/pt/kdevelop/index.cache.bz2 share/doc/HTML/pt/kdevelop/index.docbook share/doc/HTML/pt_BR/kdevelop/index.cache.bz2 share/doc/HTML/pt_BR/kdevelop/index.docbook share/doc/HTML/ru/kdevelop/index.cache.bz2 share/doc/HTML/ru/kdevelop/index.docbook share/doc/HTML/sv/kdevelop/index.cache.bz2 share/doc/HTML/sv/kdevelop/index.docbook share/doc/HTML/uk/kdevelop/index.cache.bz2 share/doc/HTML/uk/kdevelop/index.docbook share/icons/hicolor/1024x1024/apps/kdevelop.png share/icons/hicolor/128x128/apps/bazaar.png share/icons/hicolor/128x128/apps/clazy.png share/icons/hicolor/128x128/apps/cmake.png share/icons/hicolor/128x128/apps/cppcheck.png share/icons/hicolor/128x128/apps/kdevelop.png share/icons/hicolor/16x16/actions/breakpoint.png share/icons/hicolor/16x16/apps/cmake.png share/icons/hicolor/16x16/apps/github-forked.png share/icons/hicolor/16x16/apps/github-private.png share/icons/hicolor/16x16/apps/github-repo.png share/icons/hicolor/16x16/apps/kdevelop.png share/icons/hicolor/16x16/apps/kdevgh.png share/icons/hicolor/16x16/apps/subversion.png -share/icons/hicolor/%%KDE_APPLICATIONS_VERSION_SHORT%%x%%KDE_APPLICATIONS_VERSION_SHORT%%/actions/breakpoint.png +share/icons/hicolor/22x22/actions/breakpoint.png share/icons/hicolor/256x256/apps/kdevelop.png share/icons/hicolor/32x32/actions/breakpoint.png share/icons/hicolor/32x32/apps/cmake.png share/icons/hicolor/32x32/apps/kdevelop.png share/icons/hicolor/32x32/apps/kdevgh.png share/icons/hicolor/32x32/apps/subversion.png share/icons/hicolor/48x48/apps/kdevelop.png share/icons/hicolor/512x512/apps/kdevelop.png share/icons/hicolor/64x64/apps/cmake.png share/icons/hicolor/64x64/apps/kdevelop.png share/icons/hicolor/64x64/apps/subversion.png share/icons/hicolor/scalable/actions/breakpoint.svg share/icons/hicolor/scalable/apps/git.svg share/icons/hicolor/scalable/apps/kdevelop.svg share/icons/hicolor/scalable/apps/qtlogo.svg share/icons/hicolor/scalable/apps/subversion.svg share/kdevappwizard/templates/cmake_kdevplugin.tar.bz2 share/kdevappwizard/templates/cmake_plainc.tar.bz2 share/kdevappwizard/templates/cmake_plaincpp.tar.bz2 share/kdevappwizard/templates/cmake_qt5-qml2.tar.bz2 share/kdevappwizard/templates/cmake_qt5guiapp.tar.bz2 share/kdevappwizard/templates/empty.tar.bz2 share/kdevappwizard/templates/file_template_template.tar.bz2 share/kdevappwizard/templates/meson_plainc.tar.bz2 share/kdevappwizard/templates/meson_plaincpp.tar.bz2 share/kdevappwizard/templates/qmake_qt5guiapp.tar.bz2 share/kdevappwizard/templates/qt5-qml2.tar.bz2 share/kdevclangsupport/wrappedQtHeaders/QtCore/qobjectdefs.h share/kdevcodegen/licenses/Apache v2 share/kdevcodegen/licenses/BSD share/kdevcodegen/licenses/Boost share/kdevcodegen/licenses/GPL v2 share/kdevcodegen/licenses/GPL v2+ (KDE) share/kdevcodegen/licenses/GPL v3 share/kdevcodegen/licenses/LGPL v2 share/kdevcodegen/licenses/LGPL v2+ (KDE) share/kdevcodegen/licenses/LGPL v3 share/kdevcodegen/licenses/MIT X11 share/kdevcodegen/licenses/Mozilla v1.1 share/kdevcodegen/templates/arguments_names.txt share/kdevcodegen/templates/arguments_types_names.txt share/kdevcodegen/templates/class_declaration_apidox_cpp.txt share/kdevcodegen/templates/class_declaration_cpp.txt share/kdevcodegen/templates/class_method_declaration_apidox_cpp.txt share/kdevcodegen/templates/class_method_declaration_cpp.txt share/kdevcodegen/templates/class_property_getter_declaration_apidox_cpp.txt share/kdevcodegen/templates/class_property_getter_declaration_cpp.txt share/kdevcodegen/templates/class_property_getter_definition_cpp.txt share/kdevcodegen/templates/class_property_setter_declaration_apidox_cpp.txt share/kdevcodegen/templates/class_property_setter_declaration_cpp.txt share/kdevcodegen/templates/class_property_setter_definition_cpp.txt share/kdevcodegen/templates/class_property_signal_declaration_cpp.txt share/kdevcodegen/templates/class_qproperty_declaration_cpp.txt share/kdevcodegen/templates/cpp_header.h share/kdevcodegen/templates/cpp_header_onlyfunctions.h share/kdevcodegen/templates/cpp_implementation.cpp share/kdevcodegen/templates/cpp_qobject_header.h share/kdevcodegen/templates/cpp_qobject_implementation.cpp share/kdevcodegen/templates/cpp_qobject_pimpl_header.h share/kdevcodegen/templates/cpp_qobject_pimpl_implementation.cpp share/kdevcodegen/templates/cpp_qobject_pimpl_p_header.h share/kdevcodegen/templates/include_guard_cpp.txt share/kdevcodegen/templates/license_header_cpp.txt share/kdevcodegen/templates/method_declaration_cpp.txt share/kdevcodegen/templates/method_definition_cpp.txt share/kdevcodegen/templates/namespace_close_cpp.txt share/kdevcodegen/templates/namespace_open_cpp.txt share/kdevcodegen/templates/namespace_use_cpp.txt share/kdevcodeutils/templates/doxygen_cpp.txt share/kdevcodeutils/templates/phpdoc_php.txt share/kdevcodeutils/templates/rest_python.txt %%DATADIR%%/icons/hicolor/16x16/actions/classnew.png %%DATADIR%%/icons/hicolor/16x16/actions/dirsync.png %%DATADIR%%/icons/hicolor/16x16/actions/methodnew.png %%DATADIR%%/icons/hicolor/16x16/actions/variablenew.png -%%DATADIR%%/icons/hicolor/%%KDE_APPLICATIONS_VERSION_SHORT%%x%%KDE_APPLICATIONS_VERSION_SHORT%%/actions/classnew.png +%%DATADIR%%/icons/hicolor/22x22/actions/classnew.png %%DATADIR%%/icons/hicolor/32x32/actions/classnew.png %%DATADIR%%/kdevflatpak/replicate.sh %%DATADIR%%/pics/CTchildren.png %%DATADIR%%/pics/CTclients.png %%DATADIR%%/pics/CTdisconnected_parents.png %%DATADIR%%/pics/CTparents.png %%DATADIR%%/pics/CTsuppliers.png %%DATADIR%%/pics/CTvirtuals.png %%DATADIR%%/pics/CVclass.png %%DATADIR%%/pics/CVglobal_meth.png %%DATADIR%%/pics/CVglobal_var.png %%DATADIR%%/pics/CVnamespace.png %%DATADIR%%/pics/CVpackage_meth.png %%DATADIR%%/pics/CVpackage_var.png %%DATADIR%%/pics/CVprivate_meth.png %%DATADIR%%/pics/CVprivate_signal.png %%DATADIR%%/pics/CVprivate_slot.png %%DATADIR%%/pics/CVprivate_var.png %%DATADIR%%/pics/CVprotected_meth.png %%DATADIR%%/pics/CVprotected_signal.png %%DATADIR%%/pics/CVprotected_slot.png %%DATADIR%%/pics/CVprotected_var.png %%DATADIR%%/pics/CVpublic_meth.png %%DATADIR%%/pics/CVpublic_signal.png %%DATADIR%%/pics/CVpublic_slot.png %%DATADIR%%/pics/CVpublic_var.png %%DATADIR%%/pics/CVstruct.png %%DATADIR%%/pics/CVtypedef.png %%DATADIR%%/pics/code-class.png %%DATADIR%%/pics/code-function.png %%DATADIR%%/pics/enum.png %%DATADIR%%/pics/field.png %%DATADIR%%/pics/namespace.png %%DATADIR%%/pics/private_class.png %%DATADIR%%/pics/private_enum.png %%DATADIR%%/pics/private_field.png %%DATADIR%%/pics/private_function.png %%DATADIR%%/pics/private_struct.png %%DATADIR%%/pics/private_union.png %%DATADIR%%/pics/protected_class.png %%DATADIR%%/pics/protected_enum.png %%DATADIR%%/pics/protected_field.png %%DATADIR%%/pics/protected_function.png %%DATADIR%%/pics/protected_struct.png %%DATADIR%%/pics/protected_union.png %%DATADIR%%/pics/signal.png %%DATADIR%%/pics/slot.png %%DATADIR%%/pics/struct.png %%DATADIR%%/pics/typedef.png %%DATADIR%%/pics/union.png %%DATADIR%%/shortcuts/QtCreator share/kdevfiletemplates/templates/c_gobject.tar.bz2 share/kdevfiletemplates/templates/c_gobject_private.tar.bz2 share/kdevfiletemplates/templates/c_gobject_properties.tar.bz2 share/kdevfiletemplates/templates/cmake_module.tar.bz2 share/kdevfiletemplates/templates/cpp_basic.tar.bz2 share/kdevfiletemplates/templates/cpp_cpputest.tar.bz2 share/kdevfiletemplates/templates/cpp_gtest.tar.bz2 share/kdevfiletemplates/templates/cpp_qtestlib.tar.bz2 share/kdevfiletemplates/templates/cpp_qtestlib_kdevelop.tar.bz2 share/kdevfiletemplates/templates/dockerfile-template.tar.bz2 share/kdevfiletemplates/templates/flatpak-template.tar.bz2 share/kdevfiletemplates/templates/php_phpunit.tar.bz2 share/kdevfiletemplates/templates/private_pointer.tar.bz2 share/kdevfiletemplates/templates/python_basic.tar.bz2 share/kdevfiletemplates/templates/python_pyunit.tar.bz2 share/kdevfiletemplates/templates/qabstractitemmodel.tar.bz2 share/kdevfiletemplates/templates/qabstractitemmodel_pimpl.tar.bz2 share/kdevfiletemplates/templates/qdialog.tar.bz2 share/kdevfiletemplates/templates/qdialog_pimpl.tar.bz2 share/kdevfiletemplates/templates/qobject.tar.bz2 share/kdevfiletemplates/templates/qobject_pimpl.tar.bz2 share/kdevfiletemplates/templates/qt_interface.tar.bz2 share/kdevfiletemplates/templates/qt_shared.tar.bz2 share/kdevfiletemplates/templates/qt_widget.tar.bz2 share/kdevfiletemplates/templates/qwidget_pimpl.tar.bz2 share/kdevgdb/printers/gdbinit share/kdevgdb/printers/helper.py share/kdevgdb/printers/kde.py share/kdevgdb/printers/qt.py share/kdevlldb/formatters/all.py share/kdevlldb/formatters/helpers.py share/kdevlldb/formatters/kde.py share/kdevlldb/formatters/qt.py share/kdevmanpage/manpagedocumentation.css share/kdevplatform/shellutils/.zshrc share/kdevqmljssupport/nodejsmodules/__builtin_dom.js share/kdevqmljssupport/nodejsmodules/__builtin_ecmascript.js share/kdevqmljssupport/nodejsmodules/__builtin_qml.qml share/kdevqmljssupport/nodejsmodules/buffer.js share/kdevqmljssupport/nodejsmodules/child_process.js share/kdevqmljssupport/nodejsmodules/common.js share/kdevqmljssupport/nodejsmodules/console.js share/kdevqmljssupport/nodejsmodules/crypto.js share/kdevqmljssupport/nodejsmodules/dgram.js share/kdevqmljssupport/nodejsmodules/dns.js share/kdevqmljssupport/nodejsmodules/domain.js share/kdevqmljssupport/nodejsmodules/event.js share/kdevqmljssupport/nodejsmodules/fs.js share/kdevqmljssupport/nodejsmodules/http.js share/kdevqmljssupport/nodejsmodules/https.js share/kdevqmljssupport/nodejsmodules/net.js share/kdevqmljssupport/nodejsmodules/os.js share/kdevqmljssupport/nodejsmodules/path.js share/kdevqmljssupport/nodejsmodules/punycode.js share/kdevqmljssupport/nodejsmodules/querystring.js share/kdevqmljssupport/nodejsmodules/readline.js share/kdevqmljssupport/nodejsmodules/stream.js share/kdevqmljssupport/nodejsmodules/string_decoder.js share/kdevqmljssupport/nodejsmodules/tls.js share/kdevqmljssupport/nodejsmodules/tty.js share/kdevqmljssupport/nodejsmodules/url.js share/kdevqmljssupport/nodejsmodules/util.js share/kdevqmljssupport/nodejsmodules/vm.js share/kdevqmljssupport/nodejsmodules/zlib.js share/kdevqmljssupport/propertywidgets/ColorPicker.qml share/kdevqmljssupport/propertywidgets/Duration.qml share/kdevqmljssupport/propertywidgets/FontFamily.qml share/kdevqmljssupport/propertywidgets/FontSize.qml share/kdevqmljssupport/propertywidgets/Height.qml share/kdevqmljssupport/propertywidgets/Opacity.qml share/kdevqmljssupport/propertywidgets/PropertyWidget.qml share/kdevqmljssupport/propertywidgets/README share/kdevqmljssupport/propertywidgets/Spacing.qml share/kdevqmljssupport/propertywidgets/Width.qml share/knotifications5/kdevelop.notifyrc share/knsrcfiles/kdevappwizard.knsrc share/knsrcfiles/kdevelop-qthelp.knsrc share/knsrcfiles/kdevfiletemplates.knsrc share/kservices5/plasma-applet-kdevelopsessions.desktop share/kservicetypes5/kdevelopplugin.desktop share/locale/af/LC_MESSAGES/kdevelop.mo share/locale/ar/LC_MESSAGES/kdevclassbrowser.mo share/locale/ar/LC_MESSAGES/kdevelop.mo share/locale/ar/LC_MESSAGES/kdevexecuteplasmoid.mo share/locale/ar/LC_MESSAGES/kdevkonsole.mo share/locale/ar/LC_MESSAGES/kdevplatform.mo share/locale/ar/LC_MESSAGES/kdevqthelp.mo share/locale/ar/LC_MESSAGES/kdevwelcomepage.mo share/locale/az/LC_MESSAGES/kdevclazy.mo share/locale/az/LC_MESSAGES/kdevdebuggercommon.mo share/locale/az/LC_MESSAGES/kdevelop.mo share/locale/az/LC_MESSAGES/kdevgit.mo share/locale/az/LC_MESSAGES/kdevmesonmanager.mo share/locale/az/LC_MESSAGES/kdevplatform.mo share/locale/be/LC_MESSAGES/kdevelop.mo share/locale/bg/LC_MESSAGES/kdevandroid.mo share/locale/bg/LC_MESSAGES/kdevappwizard.mo share/locale/bg/LC_MESSAGES/kdevastyle.mo share/locale/bg/LC_MESSAGES/kdevbazaar.mo share/locale/bg/LC_MESSAGES/kdevclang.mo share/locale/bg/LC_MESSAGES/kdevclangtidy.mo share/locale/bg/LC_MESSAGES/kdevclassbrowser.mo share/locale/bg/LC_MESSAGES/kdevclazy.mo share/locale/bg/LC_MESSAGES/kdevcmake.mo share/locale/bg/LC_MESSAGES/kdevcmakebuilder.mo share/locale/bg/LC_MESSAGES/kdevcodeutils.mo share/locale/bg/LC_MESSAGES/kdevcompileanalyzercommon.mo share/locale/bg/LC_MESSAGES/kdevcontextbrowser.mo share/locale/bg/LC_MESSAGES/kdevcppcheck.mo share/locale/bg/LC_MESSAGES/kdevcustombuildsystem.mo share/locale/bg/LC_MESSAGES/kdevcustomdefinesandincludes.mo share/locale/bg/LC_MESSAGES/kdevcustommake.mo share/locale/bg/LC_MESSAGES/kdevcustomscript.mo share/locale/bg/LC_MESSAGES/kdevdebuggercommon.mo share/locale/bg/LC_MESSAGES/kdevdocker.mo share/locale/bg/LC_MESSAGES/kdevdocumentswitcher.mo share/locale/bg/LC_MESSAGES/kdevdocumentview.mo share/locale/bg/LC_MESSAGES/kdevelop.mo share/locale/bg/LC_MESSAGES/kdevexecute.mo share/locale/bg/LC_MESSAGES/kdevexecuteplasmoid.mo share/locale/bg/LC_MESSAGES/kdevexecutescript.mo share/locale/bg/LC_MESSAGES/kdevexternalscript.mo share/locale/bg/LC_MESSAGES/kdevfilemanager.mo share/locale/bg/LC_MESSAGES/kdevfiletemplates.mo share/locale/bg/LC_MESSAGES/kdevflatpak.mo share/locale/bg/LC_MESSAGES/kdevgdb.mo share/locale/bg/LC_MESSAGES/kdevghprovider.mo share/locale/bg/LC_MESSAGES/kdevgit.mo share/locale/bg/LC_MESSAGES/kdevgrepview.mo share/locale/bg/LC_MESSAGES/kdevheaptrack.mo share/locale/bg/LC_MESSAGES/kdevkonsole.mo share/locale/bg/LC_MESSAGES/kdevlldb.mo share/locale/bg/LC_MESSAGES/kdevmakebuilder.mo share/locale/bg/LC_MESSAGES/kdevmanpage.mo share/locale/bg/LC_MESSAGES/kdevmesonmanager.mo share/locale/bg/LC_MESSAGES/kdevninja.mo share/locale/bg/LC_MESSAGES/kdevokteta.mo share/locale/bg/LC_MESSAGES/kdevopenwith.mo share/locale/bg/LC_MESSAGES/kdevoutlineview.mo share/locale/bg/LC_MESSAGES/kdevpatchreview.mo share/locale/bg/LC_MESSAGES/kdevperforce.mo share/locale/bg/LC_MESSAGES/kdevplatform.mo share/locale/bg/LC_MESSAGES/kdevproblemreporter.mo share/locale/bg/LC_MESSAGES/kdevprojectfilter.mo share/locale/bg/LC_MESSAGES/kdevprojectmanagerview.mo share/locale/bg/LC_MESSAGES/kdevqmakebuilder.mo share/locale/bg/LC_MESSAGES/kdevqmakemanager.mo share/locale/bg/LC_MESSAGES/kdevqmljs.mo share/locale/bg/LC_MESSAGES/kdevqthelp.mo share/locale/bg/LC_MESSAGES/kdevquickopen.mo share/locale/bg/LC_MESSAGES/kdevscratchpad.mo share/locale/bg/LC_MESSAGES/kdevsourceformatter.mo share/locale/bg/LC_MESSAGES/kdevstandardoutputview.mo share/locale/bg/LC_MESSAGES/kdevsubversion.mo share/locale/bg/LC_MESSAGES/kdevswitchtobuddy.mo share/locale/bg/LC_MESSAGES/kdevtestview.mo share/locale/bg/LC_MESSAGES/kdevvcsprojectintegration.mo share/locale/bg/LC_MESSAGES/kdevwelcomepage.mo share/locale/bg/LC_MESSAGES/plasma_applet_kdevelopsessions.mo share/locale/bg/LC_MESSAGES/plasma_runner_kdevelopsessions.mo share/locale/br/LC_MESSAGES/kdevelop.mo share/locale/bs/LC_MESSAGES/kdevappwizard.mo share/locale/bs/LC_MESSAGES/kdevbazaar.mo share/locale/bs/LC_MESSAGES/kdevclassbrowser.mo share/locale/bs/LC_MESSAGES/kdevcmake.mo share/locale/bs/LC_MESSAGES/kdevcmakebuilder.mo share/locale/bs/LC_MESSAGES/kdevcodeutils.mo share/locale/bs/LC_MESSAGES/kdevcontextbrowser.mo share/locale/bs/LC_MESSAGES/kdevcppcheck.mo share/locale/bs/LC_MESSAGES/kdevcustombuildsystem.mo share/locale/bs/LC_MESSAGES/kdevcustommake.mo share/locale/bs/LC_MESSAGES/kdevdebuggercommon.mo share/locale/bs/LC_MESSAGES/kdevdocumentswitcher.mo share/locale/bs/LC_MESSAGES/kdevdocumentview.mo share/locale/bs/LC_MESSAGES/kdevelop.mo share/locale/bs/LC_MESSAGES/kdevexecute.mo share/locale/bs/LC_MESSAGES/kdevexecuteplasmoid.mo share/locale/bs/LC_MESSAGES/kdevexecutescript.mo share/locale/bs/LC_MESSAGES/kdevexternalscript.mo share/locale/bs/LC_MESSAGES/kdevfilemanager.mo share/locale/bs/LC_MESSAGES/kdevfiletemplates.mo share/locale/bs/LC_MESSAGES/kdevgdb.mo share/locale/bs/LC_MESSAGES/kdevghprovider.mo share/locale/bs/LC_MESSAGES/kdevgit.mo share/locale/bs/LC_MESSAGES/kdevgrepview.mo share/locale/bs/LC_MESSAGES/kdevkonsole.mo share/locale/bs/LC_MESSAGES/kdevmakebuilder.mo share/locale/bs/LC_MESSAGES/kdevmanpage.mo share/locale/bs/LC_MESSAGES/kdevninja.mo share/locale/bs/LC_MESSAGES/kdevokteta.mo share/locale/bs/LC_MESSAGES/kdevopenwith.mo share/locale/bs/LC_MESSAGES/kdevpatchreview.mo share/locale/bs/LC_MESSAGES/kdevperforce.mo share/locale/bs/LC_MESSAGES/kdevplatform.mo share/locale/bs/LC_MESSAGES/kdevproblemreporter.mo share/locale/bs/LC_MESSAGES/kdevprojectfilter.mo share/locale/bs/LC_MESSAGES/kdevprojectmanagerview.mo share/locale/bs/LC_MESSAGES/kdevqmakebuilder.mo share/locale/bs/LC_MESSAGES/kdevqmakemanager.mo share/locale/bs/LC_MESSAGES/kdevqmljs.mo share/locale/bs/LC_MESSAGES/kdevqthelp.mo share/locale/bs/LC_MESSAGES/kdevquickopen.mo share/locale/bs/LC_MESSAGES/kdevstandardoutputview.mo share/locale/bs/LC_MESSAGES/kdevsubversion.mo share/locale/bs/LC_MESSAGES/kdevswitchtobuddy.mo share/locale/bs/LC_MESSAGES/kdevtestview.mo share/locale/bs/LC_MESSAGES/kdevvcsprojectintegration.mo share/locale/bs/LC_MESSAGES/plasma_applet_kdevelopsessions.mo share/locale/bs/LC_MESSAGES/plasma_runner_kdevelopsessions.mo share/locale/ca/LC_MESSAGES/kdevandroid.mo share/locale/ca/LC_MESSAGES/kdevappwizard.mo share/locale/ca/LC_MESSAGES/kdevastyle.mo share/locale/ca/LC_MESSAGES/kdevbazaar.mo share/locale/ca/LC_MESSAGES/kdevclang.mo share/locale/ca/LC_MESSAGES/kdevclangtidy.mo share/locale/ca/LC_MESSAGES/kdevclassbrowser.mo share/locale/ca/LC_MESSAGES/kdevclazy.mo share/locale/ca/LC_MESSAGES/kdevcmake.mo share/locale/ca/LC_MESSAGES/kdevcmakebuilder.mo share/locale/ca/LC_MESSAGES/kdevcodeutils.mo share/locale/ca/LC_MESSAGES/kdevcompileanalyzercommon.mo share/locale/ca/LC_MESSAGES/kdevcontextbrowser.mo share/locale/ca/LC_MESSAGES/kdevcppcheck.mo share/locale/ca/LC_MESSAGES/kdevcustombuildsystem.mo share/locale/ca/LC_MESSAGES/kdevcustomdefinesandincludes.mo share/locale/ca/LC_MESSAGES/kdevcustommake.mo share/locale/ca/LC_MESSAGES/kdevcustomscript.mo share/locale/ca/LC_MESSAGES/kdevdebuggercommon.mo share/locale/ca/LC_MESSAGES/kdevdocker.mo share/locale/ca/LC_MESSAGES/kdevdocumentswitcher.mo share/locale/ca/LC_MESSAGES/kdevdocumentview.mo share/locale/ca/LC_MESSAGES/kdevelop.mo share/locale/ca/LC_MESSAGES/kdevexecute.mo share/locale/ca/LC_MESSAGES/kdevexecuteplasmoid.mo share/locale/ca/LC_MESSAGES/kdevexecutescript.mo share/locale/ca/LC_MESSAGES/kdevexternalscript.mo share/locale/ca/LC_MESSAGES/kdevfilemanager.mo share/locale/ca/LC_MESSAGES/kdevfiletemplates.mo share/locale/ca/LC_MESSAGES/kdevflatpak.mo share/locale/ca/LC_MESSAGES/kdevgdb.mo share/locale/ca/LC_MESSAGES/kdevghprovider.mo share/locale/ca/LC_MESSAGES/kdevgit.mo share/locale/ca/LC_MESSAGES/kdevgrepview.mo share/locale/ca/LC_MESSAGES/kdevheaptrack.mo share/locale/ca/LC_MESSAGES/kdevkonsole.mo share/locale/ca/LC_MESSAGES/kdevlldb.mo share/locale/ca/LC_MESSAGES/kdevmakebuilder.mo share/locale/ca/LC_MESSAGES/kdevmanpage.mo share/locale/ca/LC_MESSAGES/kdevmesonmanager.mo share/locale/ca/LC_MESSAGES/kdevninja.mo share/locale/ca/LC_MESSAGES/kdevokteta.mo share/locale/ca/LC_MESSAGES/kdevopenwith.mo share/locale/ca/LC_MESSAGES/kdevoutlineview.mo share/locale/ca/LC_MESSAGES/kdevpatchreview.mo share/locale/ca/LC_MESSAGES/kdevperforce.mo share/locale/ca/LC_MESSAGES/kdevplatform.mo share/locale/ca/LC_MESSAGES/kdevproblemreporter.mo share/locale/ca/LC_MESSAGES/kdevprojectfilter.mo share/locale/ca/LC_MESSAGES/kdevprojectmanagerview.mo share/locale/ca/LC_MESSAGES/kdevqmakebuilder.mo share/locale/ca/LC_MESSAGES/kdevqmakemanager.mo share/locale/ca/LC_MESSAGES/kdevqmljs.mo share/locale/ca/LC_MESSAGES/kdevqthelp.mo share/locale/ca/LC_MESSAGES/kdevquickopen.mo share/locale/ca/LC_MESSAGES/kdevscratchpad.mo share/locale/ca/LC_MESSAGES/kdevsourceformatter.mo share/locale/ca/LC_MESSAGES/kdevstandardoutputview.mo share/locale/ca/LC_MESSAGES/kdevsubversion.mo share/locale/ca/LC_MESSAGES/kdevswitchtobuddy.mo share/locale/ca/LC_MESSAGES/kdevtestview.mo share/locale/ca/LC_MESSAGES/kdevvcsprojectintegration.mo share/locale/ca/LC_MESSAGES/kdevwelcomepage.mo share/locale/ca/LC_MESSAGES/plasma_applet_kdevelopsessions.mo share/locale/ca/LC_MESSAGES/plasma_runner_kdevelopsessions.mo share/locale/ca@valencia/LC_MESSAGES/kdevandroid.mo share/locale/ca@valencia/LC_MESSAGES/kdevappwizard.mo share/locale/ca@valencia/LC_MESSAGES/kdevastyle.mo share/locale/ca@valencia/LC_MESSAGES/kdevbazaar.mo share/locale/ca@valencia/LC_MESSAGES/kdevclang.mo share/locale/ca@valencia/LC_MESSAGES/kdevclangtidy.mo share/locale/ca@valencia/LC_MESSAGES/kdevclassbrowser.mo share/locale/ca@valencia/LC_MESSAGES/kdevclazy.mo share/locale/ca@valencia/LC_MESSAGES/kdevcmake.mo share/locale/ca@valencia/LC_MESSAGES/kdevcmakebuilder.mo share/locale/ca@valencia/LC_MESSAGES/kdevcodeutils.mo share/locale/ca@valencia/LC_MESSAGES/kdevcompileanalyzercommon.mo share/locale/ca@valencia/LC_MESSAGES/kdevcontextbrowser.mo share/locale/ca@valencia/LC_MESSAGES/kdevcppcheck.mo share/locale/ca@valencia/LC_MESSAGES/kdevcustombuildsystem.mo share/locale/ca@valencia/LC_MESSAGES/kdevcustomdefinesandincludes.mo share/locale/ca@valencia/LC_MESSAGES/kdevcustommake.mo share/locale/ca@valencia/LC_MESSAGES/kdevcustomscript.mo share/locale/ca@valencia/LC_MESSAGES/kdevdebuggercommon.mo share/locale/ca@valencia/LC_MESSAGES/kdevdocker.mo share/locale/ca@valencia/LC_MESSAGES/kdevdocumentswitcher.mo share/locale/ca@valencia/LC_MESSAGES/kdevdocumentview.mo share/locale/ca@valencia/LC_MESSAGES/kdevelop.mo share/locale/ca@valencia/LC_MESSAGES/kdevexecute.mo share/locale/ca@valencia/LC_MESSAGES/kdevexecuteplasmoid.mo share/locale/ca@valencia/LC_MESSAGES/kdevexecutescript.mo share/locale/ca@valencia/LC_MESSAGES/kdevexternalscript.mo share/locale/ca@valencia/LC_MESSAGES/kdevfilemanager.mo share/locale/ca@valencia/LC_MESSAGES/kdevfiletemplates.mo share/locale/ca@valencia/LC_MESSAGES/kdevflatpak.mo share/locale/ca@valencia/LC_MESSAGES/kdevgdb.mo share/locale/ca@valencia/LC_MESSAGES/kdevghprovider.mo share/locale/ca@valencia/LC_MESSAGES/kdevgit.mo share/locale/ca@valencia/LC_MESSAGES/kdevgrepview.mo share/locale/ca@valencia/LC_MESSAGES/kdevheaptrack.mo share/locale/ca@valencia/LC_MESSAGES/kdevkonsole.mo share/locale/ca@valencia/LC_MESSAGES/kdevlldb.mo share/locale/ca@valencia/LC_MESSAGES/kdevmakebuilder.mo share/locale/ca@valencia/LC_MESSAGES/kdevmanpage.mo share/locale/ca@valencia/LC_MESSAGES/kdevmesonmanager.mo share/locale/ca@valencia/LC_MESSAGES/kdevninja.mo share/locale/ca@valencia/LC_MESSAGES/kdevokteta.mo share/locale/ca@valencia/LC_MESSAGES/kdevopenwith.mo share/locale/ca@valencia/LC_MESSAGES/kdevoutlineview.mo share/locale/ca@valencia/LC_MESSAGES/kdevpatchreview.mo share/locale/ca@valencia/LC_MESSAGES/kdevperforce.mo share/locale/ca@valencia/LC_MESSAGES/kdevplatform.mo share/locale/ca@valencia/LC_MESSAGES/kdevproblemreporter.mo share/locale/ca@valencia/LC_MESSAGES/kdevprojectfilter.mo share/locale/ca@valencia/LC_MESSAGES/kdevprojectmanagerview.mo share/locale/ca@valencia/LC_MESSAGES/kdevqmakebuilder.mo share/locale/ca@valencia/LC_MESSAGES/kdevqmakemanager.mo share/locale/ca@valencia/LC_MESSAGES/kdevqmljs.mo share/locale/ca@valencia/LC_MESSAGES/kdevqthelp.mo share/locale/ca@valencia/LC_MESSAGES/kdevquickopen.mo share/locale/ca@valencia/LC_MESSAGES/kdevscratchpad.mo share/locale/ca@valencia/LC_MESSAGES/kdevsourceformatter.mo share/locale/ca@valencia/LC_MESSAGES/kdevstandardoutputview.mo share/locale/ca@valencia/LC_MESSAGES/kdevsubversion.mo share/locale/ca@valencia/LC_MESSAGES/kdevswitchtobuddy.mo share/locale/ca@valencia/LC_MESSAGES/kdevtestview.mo share/locale/ca@valencia/LC_MESSAGES/kdevvcsprojectintegration.mo share/locale/ca@valencia/LC_MESSAGES/kdevwelcomepage.mo share/locale/ca@valencia/LC_MESSAGES/plasma_applet_kdevelopsessions.mo share/locale/ca@valencia/LC_MESSAGES/plasma_runner_kdevelopsessions.mo share/locale/cs/LC_MESSAGES/kdevandroid.mo share/locale/cs/LC_MESSAGES/kdevappwizard.mo share/locale/cs/LC_MESSAGES/kdevastyle.mo share/locale/cs/LC_MESSAGES/kdevbazaar.mo share/locale/cs/LC_MESSAGES/kdevclang.mo share/locale/cs/LC_MESSAGES/kdevclangtidy.mo share/locale/cs/LC_MESSAGES/kdevclassbrowser.mo share/locale/cs/LC_MESSAGES/kdevclazy.mo share/locale/cs/LC_MESSAGES/kdevcmake.mo share/locale/cs/LC_MESSAGES/kdevcmakebuilder.mo share/locale/cs/LC_MESSAGES/kdevcodeutils.mo share/locale/cs/LC_MESSAGES/kdevcompileanalyzercommon.mo share/locale/cs/LC_MESSAGES/kdevcontextbrowser.mo share/locale/cs/LC_MESSAGES/kdevcppcheck.mo share/locale/cs/LC_MESSAGES/kdevcustombuildsystem.mo share/locale/cs/LC_MESSAGES/kdevcustomdefinesandincludes.mo share/locale/cs/LC_MESSAGES/kdevcustommake.mo share/locale/cs/LC_MESSAGES/kdevcustomscript.mo share/locale/cs/LC_MESSAGES/kdevdebuggercommon.mo share/locale/cs/LC_MESSAGES/kdevdocker.mo share/locale/cs/LC_MESSAGES/kdevdocumentswitcher.mo share/locale/cs/LC_MESSAGES/kdevdocumentview.mo share/locale/cs/LC_MESSAGES/kdevelop.mo share/locale/cs/LC_MESSAGES/kdevexecute.mo share/locale/cs/LC_MESSAGES/kdevexecuteplasmoid.mo share/locale/cs/LC_MESSAGES/kdevexecutescript.mo share/locale/cs/LC_MESSAGES/kdevexternalscript.mo share/locale/cs/LC_MESSAGES/kdevfilemanager.mo share/locale/cs/LC_MESSAGES/kdevfiletemplates.mo share/locale/cs/LC_MESSAGES/kdevflatpak.mo share/locale/cs/LC_MESSAGES/kdevgdb.mo share/locale/cs/LC_MESSAGES/kdevghprovider.mo share/locale/cs/LC_MESSAGES/kdevgit.mo share/locale/cs/LC_MESSAGES/kdevgrepview.mo share/locale/cs/LC_MESSAGES/kdevheaptrack.mo share/locale/cs/LC_MESSAGES/kdevkonsole.mo share/locale/cs/LC_MESSAGES/kdevlldb.mo share/locale/cs/LC_MESSAGES/kdevmakebuilder.mo share/locale/cs/LC_MESSAGES/kdevmanpage.mo share/locale/cs/LC_MESSAGES/kdevmesonmanager.mo share/locale/cs/LC_MESSAGES/kdevninja.mo share/locale/cs/LC_MESSAGES/kdevokteta.mo share/locale/cs/LC_MESSAGES/kdevopenwith.mo share/locale/cs/LC_MESSAGES/kdevoutlineview.mo share/locale/cs/LC_MESSAGES/kdevpatchreview.mo share/locale/cs/LC_MESSAGES/kdevperforce.mo share/locale/cs/LC_MESSAGES/kdevplatform.mo share/locale/cs/LC_MESSAGES/kdevproblemreporter.mo share/locale/cs/LC_MESSAGES/kdevprojectfilter.mo share/locale/cs/LC_MESSAGES/kdevprojectmanagerview.mo share/locale/cs/LC_MESSAGES/kdevqmakebuilder.mo share/locale/cs/LC_MESSAGES/kdevqmakemanager.mo share/locale/cs/LC_MESSAGES/kdevqmljs.mo share/locale/cs/LC_MESSAGES/kdevqthelp.mo share/locale/cs/LC_MESSAGES/kdevquickopen.mo share/locale/cs/LC_MESSAGES/kdevscratchpad.mo share/locale/cs/LC_MESSAGES/kdevsourceformatter.mo share/locale/cs/LC_MESSAGES/kdevstandardoutputview.mo share/locale/cs/LC_MESSAGES/kdevsubversion.mo share/locale/cs/LC_MESSAGES/kdevswitchtobuddy.mo share/locale/cs/LC_MESSAGES/kdevtestview.mo share/locale/cs/LC_MESSAGES/kdevvcsprojectintegration.mo share/locale/cs/LC_MESSAGES/kdevwelcomepage.mo share/locale/cs/LC_MESSAGES/plasma_applet_kdevelopsessions.mo share/locale/cs/LC_MESSAGES/plasma_runner_kdevelopsessions.mo share/locale/cy/LC_MESSAGES/kdevelop.mo share/locale/da/LC_MESSAGES/kdevappwizard.mo share/locale/da/LC_MESSAGES/kdevclassbrowser.mo share/locale/da/LC_MESSAGES/kdevcmake.mo share/locale/da/LC_MESSAGES/kdevcmakebuilder.mo share/locale/da/LC_MESSAGES/kdevcodeutils.mo share/locale/da/LC_MESSAGES/kdevcontextbrowser.mo share/locale/da/LC_MESSAGES/kdevcustombuildsystem.mo share/locale/da/LC_MESSAGES/kdevcustommake.mo share/locale/da/LC_MESSAGES/kdevdebuggercommon.mo share/locale/da/LC_MESSAGES/kdevdocumentswitcher.mo share/locale/da/LC_MESSAGES/kdevdocumentview.mo share/locale/da/LC_MESSAGES/kdevelop.mo share/locale/da/LC_MESSAGES/kdevexecute.mo share/locale/da/LC_MESSAGES/kdevexecuteplasmoid.mo share/locale/da/LC_MESSAGES/kdevexecutescript.mo share/locale/da/LC_MESSAGES/kdevexternalscript.mo share/locale/da/LC_MESSAGES/kdevfilemanager.mo share/locale/da/LC_MESSAGES/kdevfiletemplates.mo share/locale/da/LC_MESSAGES/kdevgdb.mo share/locale/da/LC_MESSAGES/kdevghprovider.mo share/locale/da/LC_MESSAGES/kdevgit.mo share/locale/da/LC_MESSAGES/kdevgrepview.mo share/locale/da/LC_MESSAGES/kdevkonsole.mo share/locale/da/LC_MESSAGES/kdevmakebuilder.mo share/locale/da/LC_MESSAGES/kdevmanpage.mo share/locale/da/LC_MESSAGES/kdevninja.mo share/locale/da/LC_MESSAGES/kdevokteta.mo share/locale/da/LC_MESSAGES/kdevopenwith.mo share/locale/da/LC_MESSAGES/kdevpatchreview.mo share/locale/da/LC_MESSAGES/kdevperforce.mo share/locale/da/LC_MESSAGES/kdevplatform.mo share/locale/da/LC_MESSAGES/kdevproblemreporter.mo share/locale/da/LC_MESSAGES/kdevprojectfilter.mo share/locale/da/LC_MESSAGES/kdevprojectmanagerview.mo share/locale/da/LC_MESSAGES/kdevqthelp.mo share/locale/da/LC_MESSAGES/kdevquickopen.mo share/locale/da/LC_MESSAGES/kdevstandardoutputview.mo share/locale/da/LC_MESSAGES/kdevsubversion.mo share/locale/da/LC_MESSAGES/kdevswitchtobuddy.mo share/locale/da/LC_MESSAGES/kdevtestview.mo share/locale/da/LC_MESSAGES/kdevvcsprojectintegration.mo share/locale/da/LC_MESSAGES/plasma_applet_kdevelopsessions.mo share/locale/da/LC_MESSAGES/plasma_runner_kdevelopsessions.mo share/locale/de/LC_MESSAGES/kdevandroid.mo share/locale/de/LC_MESSAGES/kdevappwizard.mo share/locale/de/LC_MESSAGES/kdevastyle.mo share/locale/de/LC_MESSAGES/kdevbazaar.mo share/locale/de/LC_MESSAGES/kdevclang.mo share/locale/de/LC_MESSAGES/kdevclangtidy.mo share/locale/de/LC_MESSAGES/kdevclassbrowser.mo share/locale/de/LC_MESSAGES/kdevclazy.mo share/locale/de/LC_MESSAGES/kdevcmake.mo share/locale/de/LC_MESSAGES/kdevcmakebuilder.mo share/locale/de/LC_MESSAGES/kdevcodeutils.mo share/locale/de/LC_MESSAGES/kdevcompileanalyzercommon.mo share/locale/de/LC_MESSAGES/kdevcontextbrowser.mo share/locale/de/LC_MESSAGES/kdevcppcheck.mo share/locale/de/LC_MESSAGES/kdevcustombuildsystem.mo share/locale/de/LC_MESSAGES/kdevcustomdefinesandincludes.mo share/locale/de/LC_MESSAGES/kdevcustommake.mo share/locale/de/LC_MESSAGES/kdevcustomscript.mo share/locale/de/LC_MESSAGES/kdevdebuggercommon.mo share/locale/de/LC_MESSAGES/kdevdocker.mo share/locale/de/LC_MESSAGES/kdevdocumentswitcher.mo share/locale/de/LC_MESSAGES/kdevdocumentview.mo share/locale/de/LC_MESSAGES/kdevelop.mo share/locale/de/LC_MESSAGES/kdevexecute.mo share/locale/de/LC_MESSAGES/kdevexecuteplasmoid.mo share/locale/de/LC_MESSAGES/kdevexecutescript.mo share/locale/de/LC_MESSAGES/kdevexternalscript.mo share/locale/de/LC_MESSAGES/kdevfilemanager.mo share/locale/de/LC_MESSAGES/kdevfiletemplates.mo share/locale/de/LC_MESSAGES/kdevflatpak.mo share/locale/de/LC_MESSAGES/kdevgdb.mo share/locale/de/LC_MESSAGES/kdevghprovider.mo share/locale/de/LC_MESSAGES/kdevgit.mo share/locale/de/LC_MESSAGES/kdevgrepview.mo share/locale/de/LC_MESSAGES/kdevheaptrack.mo share/locale/de/LC_MESSAGES/kdevkonsole.mo share/locale/de/LC_MESSAGES/kdevlldb.mo share/locale/de/LC_MESSAGES/kdevmakebuilder.mo share/locale/de/LC_MESSAGES/kdevmanpage.mo share/locale/de/LC_MESSAGES/kdevmesonmanager.mo share/locale/de/LC_MESSAGES/kdevninja.mo share/locale/de/LC_MESSAGES/kdevokteta.mo share/locale/de/LC_MESSAGES/kdevopenwith.mo share/locale/de/LC_MESSAGES/kdevoutlineview.mo share/locale/de/LC_MESSAGES/kdevpatchreview.mo share/locale/de/LC_MESSAGES/kdevperforce.mo share/locale/de/LC_MESSAGES/kdevplatform.mo share/locale/de/LC_MESSAGES/kdevproblemreporter.mo share/locale/de/LC_MESSAGES/kdevprojectfilter.mo share/locale/de/LC_MESSAGES/kdevprojectmanagerview.mo share/locale/de/LC_MESSAGES/kdevqmakebuilder.mo share/locale/de/LC_MESSAGES/kdevqmakemanager.mo share/locale/de/LC_MESSAGES/kdevqmljs.mo share/locale/de/LC_MESSAGES/kdevqthelp.mo share/locale/de/LC_MESSAGES/kdevquickopen.mo share/locale/de/LC_MESSAGES/kdevscratchpad.mo share/locale/de/LC_MESSAGES/kdevsourceformatter.mo share/locale/de/LC_MESSAGES/kdevstandardoutputview.mo share/locale/de/LC_MESSAGES/kdevsubversion.mo share/locale/de/LC_MESSAGES/kdevswitchtobuddy.mo share/locale/de/LC_MESSAGES/kdevtestview.mo share/locale/de/LC_MESSAGES/kdevvcsprojectintegration.mo share/locale/de/LC_MESSAGES/kdevwelcomepage.mo share/locale/de/LC_MESSAGES/plasma_applet_kdevelopsessions.mo share/locale/de/LC_MESSAGES/plasma_runner_kdevelopsessions.mo share/locale/el/LC_MESSAGES/kdevandroid.mo share/locale/el/LC_MESSAGES/kdevappwizard.mo share/locale/el/LC_MESSAGES/kdevastyle.mo share/locale/el/LC_MESSAGES/kdevbazaar.mo share/locale/el/LC_MESSAGES/kdevclang.mo share/locale/el/LC_MESSAGES/kdevclangtidy.mo share/locale/el/LC_MESSAGES/kdevclassbrowser.mo share/locale/el/LC_MESSAGES/kdevclazy.mo share/locale/el/LC_MESSAGES/kdevcmake.mo share/locale/el/LC_MESSAGES/kdevcmakebuilder.mo share/locale/el/LC_MESSAGES/kdevcodeutils.mo share/locale/el/LC_MESSAGES/kdevcontextbrowser.mo share/locale/el/LC_MESSAGES/kdevcppcheck.mo share/locale/el/LC_MESSAGES/kdevcustombuildsystem.mo share/locale/el/LC_MESSAGES/kdevcustomdefinesandincludes.mo share/locale/el/LC_MESSAGES/kdevcustommake.mo share/locale/el/LC_MESSAGES/kdevcustomscript.mo share/locale/el/LC_MESSAGES/kdevdebuggercommon.mo share/locale/el/LC_MESSAGES/kdevdocker.mo share/locale/el/LC_MESSAGES/kdevdocumentswitcher.mo share/locale/el/LC_MESSAGES/kdevdocumentview.mo share/locale/el/LC_MESSAGES/kdevelop.mo share/locale/el/LC_MESSAGES/kdevexecute.mo share/locale/el/LC_MESSAGES/kdevexecuteplasmoid.mo share/locale/el/LC_MESSAGES/kdevexecutescript.mo share/locale/el/LC_MESSAGES/kdevexternalscript.mo share/locale/el/LC_MESSAGES/kdevfilemanager.mo share/locale/el/LC_MESSAGES/kdevgdb.mo share/locale/el/LC_MESSAGES/kdevgit.mo share/locale/el/LC_MESSAGES/kdevgrepview.mo share/locale/el/LC_MESSAGES/kdevkonsole.mo share/locale/el/LC_MESSAGES/kdevmakebuilder.mo share/locale/el/LC_MESSAGES/kdevmanpage.mo share/locale/el/LC_MESSAGES/kdevokteta.mo share/locale/el/LC_MESSAGES/kdevopenwith.mo share/locale/el/LC_MESSAGES/kdevpatchreview.mo share/locale/el/LC_MESSAGES/kdevplatform.mo share/locale/el/LC_MESSAGES/kdevproblemreporter.mo share/locale/el/LC_MESSAGES/kdevprojectmanagerview.mo share/locale/el/LC_MESSAGES/kdevqmakebuilder.mo share/locale/el/LC_MESSAGES/kdevqmakemanager.mo share/locale/el/LC_MESSAGES/kdevqthelp.mo share/locale/el/LC_MESSAGES/kdevquickopen.mo share/locale/el/LC_MESSAGES/kdevstandardoutputview.mo share/locale/el/LC_MESSAGES/kdevsubversion.mo share/locale/el/LC_MESSAGES/kdevswitchtobuddy.mo share/locale/el/LC_MESSAGES/kdevtestview.mo share/locale/el/LC_MESSAGES/kdevvcsprojectintegration.mo share/locale/el/LC_MESSAGES/plasma_applet_kdevelopsessions.mo share/locale/el/LC_MESSAGES/plasma_runner_kdevelopsessions.mo share/locale/en_GB/LC_MESSAGES/kdevandroid.mo share/locale/en_GB/LC_MESSAGES/kdevappwizard.mo share/locale/en_GB/LC_MESSAGES/kdevastyle.mo share/locale/en_GB/LC_MESSAGES/kdevbazaar.mo share/locale/en_GB/LC_MESSAGES/kdevclang.mo share/locale/en_GB/LC_MESSAGES/kdevclangtidy.mo share/locale/en_GB/LC_MESSAGES/kdevclassbrowser.mo share/locale/en_GB/LC_MESSAGES/kdevclazy.mo share/locale/en_GB/LC_MESSAGES/kdevcmake.mo share/locale/en_GB/LC_MESSAGES/kdevcmakebuilder.mo share/locale/en_GB/LC_MESSAGES/kdevcodeutils.mo share/locale/en_GB/LC_MESSAGES/kdevcompileanalyzercommon.mo share/locale/en_GB/LC_MESSAGES/kdevcontextbrowser.mo share/locale/en_GB/LC_MESSAGES/kdevcppcheck.mo share/locale/en_GB/LC_MESSAGES/kdevcustombuildsystem.mo share/locale/en_GB/LC_MESSAGES/kdevcustomdefinesandincludes.mo share/locale/en_GB/LC_MESSAGES/kdevcustommake.mo share/locale/en_GB/LC_MESSAGES/kdevcustomscript.mo share/locale/en_GB/LC_MESSAGES/kdevdebuggercommon.mo share/locale/en_GB/LC_MESSAGES/kdevdocker.mo share/locale/en_GB/LC_MESSAGES/kdevdocumentswitcher.mo share/locale/en_GB/LC_MESSAGES/kdevdocumentview.mo share/locale/en_GB/LC_MESSAGES/kdevelop.mo share/locale/en_GB/LC_MESSAGES/kdevexecute.mo share/locale/en_GB/LC_MESSAGES/kdevexecuteplasmoid.mo share/locale/en_GB/LC_MESSAGES/kdevexecutescript.mo share/locale/en_GB/LC_MESSAGES/kdevexternalscript.mo share/locale/en_GB/LC_MESSAGES/kdevfilemanager.mo share/locale/en_GB/LC_MESSAGES/kdevfiletemplates.mo share/locale/en_GB/LC_MESSAGES/kdevflatpak.mo share/locale/en_GB/LC_MESSAGES/kdevgdb.mo share/locale/en_GB/LC_MESSAGES/kdevghprovider.mo share/locale/en_GB/LC_MESSAGES/kdevgit.mo share/locale/en_GB/LC_MESSAGES/kdevgrepview.mo share/locale/en_GB/LC_MESSAGES/kdevheaptrack.mo share/locale/en_GB/LC_MESSAGES/kdevkonsole.mo share/locale/en_GB/LC_MESSAGES/kdevlldb.mo share/locale/en_GB/LC_MESSAGES/kdevmakebuilder.mo share/locale/en_GB/LC_MESSAGES/kdevmanpage.mo share/locale/en_GB/LC_MESSAGES/kdevmesonmanager.mo share/locale/en_GB/LC_MESSAGES/kdevninja.mo share/locale/en_GB/LC_MESSAGES/kdevokteta.mo share/locale/en_GB/LC_MESSAGES/kdevopenwith.mo share/locale/en_GB/LC_MESSAGES/kdevoutlineview.mo share/locale/en_GB/LC_MESSAGES/kdevpatchreview.mo share/locale/en_GB/LC_MESSAGES/kdevperforce.mo share/locale/en_GB/LC_MESSAGES/kdevplatform.mo share/locale/en_GB/LC_MESSAGES/kdevproblemreporter.mo share/locale/en_GB/LC_MESSAGES/kdevprojectfilter.mo share/locale/en_GB/LC_MESSAGES/kdevprojectmanagerview.mo share/locale/en_GB/LC_MESSAGES/kdevqmakebuilder.mo share/locale/en_GB/LC_MESSAGES/kdevqmakemanager.mo share/locale/en_GB/LC_MESSAGES/kdevqmljs.mo share/locale/en_GB/LC_MESSAGES/kdevqthelp.mo share/locale/en_GB/LC_MESSAGES/kdevquickopen.mo share/locale/en_GB/LC_MESSAGES/kdevscratchpad.mo share/locale/en_GB/LC_MESSAGES/kdevsourceformatter.mo share/locale/en_GB/LC_MESSAGES/kdevstandardoutputview.mo share/locale/en_GB/LC_MESSAGES/kdevsubversion.mo share/locale/en_GB/LC_MESSAGES/kdevswitchtobuddy.mo share/locale/en_GB/LC_MESSAGES/kdevtestview.mo share/locale/en_GB/LC_MESSAGES/kdevvcsprojectintegration.mo share/locale/en_GB/LC_MESSAGES/kdevwelcomepage.mo share/locale/en_GB/LC_MESSAGES/plasma_applet_kdevelopsessions.mo share/locale/en_GB/LC_MESSAGES/plasma_runner_kdevelopsessions.mo share/locale/eo/LC_MESSAGES/kdevappwizard.mo share/locale/eo/LC_MESSAGES/kdevbazaar.mo share/locale/eo/LC_MESSAGES/kdevclassbrowser.mo share/locale/eo/LC_MESSAGES/kdevcmake.mo share/locale/eo/LC_MESSAGES/kdevcmakebuilder.mo share/locale/eo/LC_MESSAGES/kdevcontextbrowser.mo share/locale/eo/LC_MESSAGES/kdevcustommake.mo share/locale/eo/LC_MESSAGES/kdevdebuggercommon.mo share/locale/eo/LC_MESSAGES/kdevdocumentswitcher.mo share/locale/eo/LC_MESSAGES/kdevdocumentview.mo share/locale/eo/LC_MESSAGES/kdevelop.mo share/locale/eo/LC_MESSAGES/kdevexecute.mo share/locale/eo/LC_MESSAGES/kdevexecutescript.mo share/locale/eo/LC_MESSAGES/kdevexternalscript.mo share/locale/eo/LC_MESSAGES/kdevfilemanager.mo share/locale/eo/LC_MESSAGES/kdevgdb.mo share/locale/eo/LC_MESSAGES/kdevgit.mo share/locale/eo/LC_MESSAGES/kdevgrepview.mo share/locale/eo/LC_MESSAGES/kdevkonsole.mo share/locale/eo/LC_MESSAGES/kdevmakebuilder.mo share/locale/eo/LC_MESSAGES/kdevpatchreview.mo share/locale/eo/LC_MESSAGES/kdevplatform.mo share/locale/eo/LC_MESSAGES/kdevproblemreporter.mo share/locale/eo/LC_MESSAGES/kdevprojectmanagerview.mo share/locale/eo/LC_MESSAGES/kdevqmakebuilder.mo share/locale/eo/LC_MESSAGES/kdevqmakemanager.mo share/locale/eo/LC_MESSAGES/kdevqthelp.mo share/locale/eo/LC_MESSAGES/kdevquickopen.mo share/locale/eo/LC_MESSAGES/kdevstandardoutputview.mo share/locale/eo/LC_MESSAGES/kdevsubversion.mo share/locale/es/LC_MESSAGES/kdevandroid.mo share/locale/es/LC_MESSAGES/kdevappwizard.mo share/locale/es/LC_MESSAGES/kdevastyle.mo share/locale/es/LC_MESSAGES/kdevbazaar.mo share/locale/es/LC_MESSAGES/kdevclang.mo share/locale/es/LC_MESSAGES/kdevclangtidy.mo share/locale/es/LC_MESSAGES/kdevclassbrowser.mo share/locale/es/LC_MESSAGES/kdevclazy.mo share/locale/es/LC_MESSAGES/kdevcmake.mo share/locale/es/LC_MESSAGES/kdevcmakebuilder.mo share/locale/es/LC_MESSAGES/kdevcodeutils.mo share/locale/es/LC_MESSAGES/kdevcompileanalyzercommon.mo share/locale/es/LC_MESSAGES/kdevcontextbrowser.mo share/locale/es/LC_MESSAGES/kdevcppcheck.mo share/locale/es/LC_MESSAGES/kdevcustombuildsystem.mo share/locale/es/LC_MESSAGES/kdevcustomdefinesandincludes.mo share/locale/es/LC_MESSAGES/kdevcustommake.mo share/locale/es/LC_MESSAGES/kdevcustomscript.mo share/locale/es/LC_MESSAGES/kdevdebuggercommon.mo share/locale/es/LC_MESSAGES/kdevdocker.mo share/locale/es/LC_MESSAGES/kdevdocumentswitcher.mo share/locale/es/LC_MESSAGES/kdevdocumentview.mo share/locale/es/LC_MESSAGES/kdevelop.mo share/locale/es/LC_MESSAGES/kdevexecute.mo share/locale/es/LC_MESSAGES/kdevexecuteplasmoid.mo share/locale/es/LC_MESSAGES/kdevexecutescript.mo share/locale/es/LC_MESSAGES/kdevexternalscript.mo share/locale/es/LC_MESSAGES/kdevfilemanager.mo share/locale/es/LC_MESSAGES/kdevfiletemplates.mo share/locale/es/LC_MESSAGES/kdevflatpak.mo share/locale/es/LC_MESSAGES/kdevgdb.mo share/locale/es/LC_MESSAGES/kdevghprovider.mo share/locale/es/LC_MESSAGES/kdevgit.mo share/locale/es/LC_MESSAGES/kdevgrepview.mo share/locale/es/LC_MESSAGES/kdevheaptrack.mo share/locale/es/LC_MESSAGES/kdevkonsole.mo share/locale/es/LC_MESSAGES/kdevlldb.mo share/locale/es/LC_MESSAGES/kdevmakebuilder.mo share/locale/es/LC_MESSAGES/kdevmanpage.mo share/locale/es/LC_MESSAGES/kdevmesonmanager.mo share/locale/es/LC_MESSAGES/kdevninja.mo share/locale/es/LC_MESSAGES/kdevokteta.mo share/locale/es/LC_MESSAGES/kdevopenwith.mo share/locale/es/LC_MESSAGES/kdevoutlineview.mo share/locale/es/LC_MESSAGES/kdevpatchreview.mo share/locale/es/LC_MESSAGES/kdevperforce.mo share/locale/es/LC_MESSAGES/kdevplatform.mo share/locale/es/LC_MESSAGES/kdevproblemreporter.mo share/locale/es/LC_MESSAGES/kdevprojectfilter.mo share/locale/es/LC_MESSAGES/kdevprojectmanagerview.mo share/locale/es/LC_MESSAGES/kdevqmakebuilder.mo share/locale/es/LC_MESSAGES/kdevqmakemanager.mo share/locale/es/LC_MESSAGES/kdevqmljs.mo share/locale/es/LC_MESSAGES/kdevqthelp.mo share/locale/es/LC_MESSAGES/kdevquickopen.mo share/locale/es/LC_MESSAGES/kdevscratchpad.mo share/locale/es/LC_MESSAGES/kdevsourceformatter.mo share/locale/es/LC_MESSAGES/kdevstandardoutputview.mo share/locale/es/LC_MESSAGES/kdevsubversion.mo share/locale/es/LC_MESSAGES/kdevswitchtobuddy.mo share/locale/es/LC_MESSAGES/kdevtestview.mo share/locale/es/LC_MESSAGES/kdevvcsprojectintegration.mo share/locale/es/LC_MESSAGES/kdevwelcomepage.mo share/locale/es/LC_MESSAGES/plasma_applet_kdevelopsessions.mo share/locale/es/LC_MESSAGES/plasma_runner_kdevelopsessions.mo share/locale/et/LC_MESSAGES/kdevandroid.mo share/locale/et/LC_MESSAGES/kdevappwizard.mo share/locale/et/LC_MESSAGES/kdevastyle.mo share/locale/et/LC_MESSAGES/kdevbazaar.mo share/locale/et/LC_MESSAGES/kdevclang.mo share/locale/et/LC_MESSAGES/kdevclangtidy.mo share/locale/et/LC_MESSAGES/kdevclassbrowser.mo share/locale/et/LC_MESSAGES/kdevclazy.mo share/locale/et/LC_MESSAGES/kdevcmake.mo share/locale/et/LC_MESSAGES/kdevcmakebuilder.mo share/locale/et/LC_MESSAGES/kdevcodeutils.mo share/locale/et/LC_MESSAGES/kdevcompileanalyzercommon.mo share/locale/et/LC_MESSAGES/kdevcontextbrowser.mo share/locale/et/LC_MESSAGES/kdevcppcheck.mo share/locale/et/LC_MESSAGES/kdevcustombuildsystem.mo share/locale/et/LC_MESSAGES/kdevcustomdefinesandincludes.mo share/locale/et/LC_MESSAGES/kdevcustommake.mo share/locale/et/LC_MESSAGES/kdevcustomscript.mo share/locale/et/LC_MESSAGES/kdevdebuggercommon.mo share/locale/et/LC_MESSAGES/kdevdocker.mo share/locale/et/LC_MESSAGES/kdevdocumentswitcher.mo share/locale/et/LC_MESSAGES/kdevdocumentview.mo share/locale/et/LC_MESSAGES/kdevelop.mo share/locale/et/LC_MESSAGES/kdevexecute.mo share/locale/et/LC_MESSAGES/kdevexecuteplasmoid.mo share/locale/et/LC_MESSAGES/kdevexecutescript.mo share/locale/et/LC_MESSAGES/kdevexternalscript.mo share/locale/et/LC_MESSAGES/kdevfilemanager.mo share/locale/et/LC_MESSAGES/kdevfiletemplates.mo share/locale/et/LC_MESSAGES/kdevflatpak.mo share/locale/et/LC_MESSAGES/kdevgdb.mo share/locale/et/LC_MESSAGES/kdevghprovider.mo share/locale/et/LC_MESSAGES/kdevgit.mo share/locale/et/LC_MESSAGES/kdevgrepview.mo share/locale/et/LC_MESSAGES/kdevheaptrack.mo share/locale/et/LC_MESSAGES/kdevkonsole.mo share/locale/et/LC_MESSAGES/kdevlldb.mo share/locale/et/LC_MESSAGES/kdevmakebuilder.mo share/locale/et/LC_MESSAGES/kdevmanpage.mo share/locale/et/LC_MESSAGES/kdevmesonmanager.mo share/locale/et/LC_MESSAGES/kdevninja.mo share/locale/et/LC_MESSAGES/kdevokteta.mo share/locale/et/LC_MESSAGES/kdevopenwith.mo share/locale/et/LC_MESSAGES/kdevoutlineview.mo share/locale/et/LC_MESSAGES/kdevpatchreview.mo share/locale/et/LC_MESSAGES/kdevperforce.mo share/locale/et/LC_MESSAGES/kdevplatform.mo share/locale/et/LC_MESSAGES/kdevproblemreporter.mo share/locale/et/LC_MESSAGES/kdevprojectfilter.mo share/locale/et/LC_MESSAGES/kdevprojectmanagerview.mo share/locale/et/LC_MESSAGES/kdevqmakebuilder.mo share/locale/et/LC_MESSAGES/kdevqmakemanager.mo share/locale/et/LC_MESSAGES/kdevqmljs.mo share/locale/et/LC_MESSAGES/kdevqthelp.mo share/locale/et/LC_MESSAGES/kdevquickopen.mo share/locale/et/LC_MESSAGES/kdevscratchpad.mo share/locale/et/LC_MESSAGES/kdevsourceformatter.mo share/locale/et/LC_MESSAGES/kdevstandardoutputview.mo share/locale/et/LC_MESSAGES/kdevsubversion.mo share/locale/et/LC_MESSAGES/kdevswitchtobuddy.mo share/locale/et/LC_MESSAGES/kdevtestview.mo share/locale/et/LC_MESSAGES/kdevvcsprojectintegration.mo share/locale/et/LC_MESSAGES/kdevwelcomepage.mo share/locale/et/LC_MESSAGES/plasma_applet_kdevelopsessions.mo share/locale/et/LC_MESSAGES/plasma_runner_kdevelopsessions.mo share/locale/eu/LC_MESSAGES/kdevandroid.mo share/locale/eu/LC_MESSAGES/kdevappwizard.mo share/locale/eu/LC_MESSAGES/kdevbazaar.mo share/locale/eu/LC_MESSAGES/kdevclassbrowser.mo share/locale/eu/LC_MESSAGES/kdevcodeutils.mo share/locale/eu/LC_MESSAGES/kdevcustommake.mo share/locale/eu/LC_MESSAGES/kdevcustomscript.mo share/locale/eu/LC_MESSAGES/kdevdocker.mo share/locale/eu/LC_MESSAGES/kdevdocumentswitcher.mo share/locale/eu/LC_MESSAGES/kdevdocumentview.mo share/locale/eu/LC_MESSAGES/kdevelop.mo share/locale/eu/LC_MESSAGES/kdevfilemanager.mo share/locale/eu/LC_MESSAGES/kdevflatpak.mo share/locale/eu/LC_MESSAGES/kdevgit.mo share/locale/eu/LC_MESSAGES/kdevkonsole.mo share/locale/eu/LC_MESSAGES/kdevmanpage.mo share/locale/eu/LC_MESSAGES/kdevokteta.mo share/locale/eu/LC_MESSAGES/kdevopenwith.mo share/locale/eu/LC_MESSAGES/kdevoutlineview.mo share/locale/eu/LC_MESSAGES/kdevplatform.mo share/locale/eu/LC_MESSAGES/kdevqmakebuilder.mo share/locale/eu/LC_MESSAGES/kdevsourceformatter.mo share/locale/eu/LC_MESSAGES/kdevswitchtobuddy.mo share/locale/eu/LC_MESSAGES/kdevtestview.mo share/locale/eu/LC_MESSAGES/kdevvcsprojectintegration.mo share/locale/eu/LC_MESSAGES/plasma_applet_kdevelopsessions.mo share/locale/eu/LC_MESSAGES/plasma_runner_kdevelopsessions.mo share/locale/fa/LC_MESSAGES/kdevelop.mo share/locale/fi/LC_MESSAGES/kdevandroid.mo share/locale/fi/LC_MESSAGES/kdevappwizard.mo share/locale/fi/LC_MESSAGES/kdevastyle.mo share/locale/fi/LC_MESSAGES/kdevbazaar.mo share/locale/fi/LC_MESSAGES/kdevclang.mo share/locale/fi/LC_MESSAGES/kdevclangtidy.mo share/locale/fi/LC_MESSAGES/kdevclassbrowser.mo share/locale/fi/LC_MESSAGES/kdevclazy.mo share/locale/fi/LC_MESSAGES/kdevcmake.mo share/locale/fi/LC_MESSAGES/kdevcmakebuilder.mo share/locale/fi/LC_MESSAGES/kdevcodeutils.mo share/locale/fi/LC_MESSAGES/kdevcompileanalyzercommon.mo share/locale/fi/LC_MESSAGES/kdevcontextbrowser.mo share/locale/fi/LC_MESSAGES/kdevcustombuildsystem.mo share/locale/fi/LC_MESSAGES/kdevcustommake.mo share/locale/fi/LC_MESSAGES/kdevcustomscript.mo share/locale/fi/LC_MESSAGES/kdevdebuggercommon.mo share/locale/fi/LC_MESSAGES/kdevdocumentswitcher.mo share/locale/fi/LC_MESSAGES/kdevdocumentview.mo share/locale/fi/LC_MESSAGES/kdevelop.mo share/locale/fi/LC_MESSAGES/kdevexecute.mo share/locale/fi/LC_MESSAGES/kdevexecuteplasmoid.mo share/locale/fi/LC_MESSAGES/kdevexecutescript.mo share/locale/fi/LC_MESSAGES/kdevexternalscript.mo share/locale/fi/LC_MESSAGES/kdevfilemanager.mo share/locale/fi/LC_MESSAGES/kdevfiletemplates.mo share/locale/fi/LC_MESSAGES/kdevflatpak.mo share/locale/fi/LC_MESSAGES/kdevgdb.mo share/locale/fi/LC_MESSAGES/kdevghprovider.mo share/locale/fi/LC_MESSAGES/kdevgit.mo share/locale/fi/LC_MESSAGES/kdevgrepview.mo share/locale/fi/LC_MESSAGES/kdevkonsole.mo share/locale/fi/LC_MESSAGES/kdevlldb.mo share/locale/fi/LC_MESSAGES/kdevmakebuilder.mo share/locale/fi/LC_MESSAGES/kdevmanpage.mo share/locale/fi/LC_MESSAGES/kdevmesonmanager.mo share/locale/fi/LC_MESSAGES/kdevninja.mo share/locale/fi/LC_MESSAGES/kdevokteta.mo share/locale/fi/LC_MESSAGES/kdevopenwith.mo share/locale/fi/LC_MESSAGES/kdevoutlineview.mo share/locale/fi/LC_MESSAGES/kdevpatchreview.mo share/locale/fi/LC_MESSAGES/kdevperforce.mo share/locale/fi/LC_MESSAGES/kdevplatform.mo share/locale/fi/LC_MESSAGES/kdevproblemreporter.mo share/locale/fi/LC_MESSAGES/kdevprojectfilter.mo share/locale/fi/LC_MESSAGES/kdevprojectmanagerview.mo share/locale/fi/LC_MESSAGES/kdevqmakebuilder.mo share/locale/fi/LC_MESSAGES/kdevqmakemanager.mo share/locale/fi/LC_MESSAGES/kdevqmljs.mo share/locale/fi/LC_MESSAGES/kdevqthelp.mo share/locale/fi/LC_MESSAGES/kdevquickopen.mo share/locale/fi/LC_MESSAGES/kdevscratchpad.mo share/locale/fi/LC_MESSAGES/kdevsourceformatter.mo share/locale/fi/LC_MESSAGES/kdevstandardoutputview.mo share/locale/fi/LC_MESSAGES/kdevsubversion.mo share/locale/fi/LC_MESSAGES/kdevswitchtobuddy.mo share/locale/fi/LC_MESSAGES/kdevtestview.mo share/locale/fi/LC_MESSAGES/kdevvcsprojectintegration.mo share/locale/fi/LC_MESSAGES/kdevwelcomepage.mo share/locale/fi/LC_MESSAGES/plasma_applet_kdevelopsessions.mo share/locale/fi/LC_MESSAGES/plasma_runner_kdevelopsessions.mo share/locale/fr/LC_MESSAGES/kdevandroid.mo share/locale/fr/LC_MESSAGES/kdevappwizard.mo share/locale/fr/LC_MESSAGES/kdevastyle.mo share/locale/fr/LC_MESSAGES/kdevbazaar.mo share/locale/fr/LC_MESSAGES/kdevclang.mo share/locale/fr/LC_MESSAGES/kdevclangtidy.mo share/locale/fr/LC_MESSAGES/kdevclassbrowser.mo share/locale/fr/LC_MESSAGES/kdevclazy.mo share/locale/fr/LC_MESSAGES/kdevcmake.mo share/locale/fr/LC_MESSAGES/kdevcmakebuilder.mo share/locale/fr/LC_MESSAGES/kdevcodeutils.mo share/locale/fr/LC_MESSAGES/kdevcompileanalyzercommon.mo share/locale/fr/LC_MESSAGES/kdevcontextbrowser.mo share/locale/fr/LC_MESSAGES/kdevcppcheck.mo share/locale/fr/LC_MESSAGES/kdevcustombuildsystem.mo share/locale/fr/LC_MESSAGES/kdevcustomdefinesandincludes.mo share/locale/fr/LC_MESSAGES/kdevcustommake.mo share/locale/fr/LC_MESSAGES/kdevcustomscript.mo share/locale/fr/LC_MESSAGES/kdevdebuggercommon.mo share/locale/fr/LC_MESSAGES/kdevdocker.mo share/locale/fr/LC_MESSAGES/kdevdocumentswitcher.mo share/locale/fr/LC_MESSAGES/kdevdocumentview.mo share/locale/fr/LC_MESSAGES/kdevelop.mo share/locale/fr/LC_MESSAGES/kdevexecute.mo share/locale/fr/LC_MESSAGES/kdevexecuteplasmoid.mo share/locale/fr/LC_MESSAGES/kdevexecutescript.mo share/locale/fr/LC_MESSAGES/kdevexternalscript.mo share/locale/fr/LC_MESSAGES/kdevfilemanager.mo share/locale/fr/LC_MESSAGES/kdevfiletemplates.mo share/locale/fr/LC_MESSAGES/kdevflatpak.mo share/locale/fr/LC_MESSAGES/kdevgdb.mo share/locale/fr/LC_MESSAGES/kdevghprovider.mo share/locale/fr/LC_MESSAGES/kdevgit.mo share/locale/fr/LC_MESSAGES/kdevgrepview.mo share/locale/fr/LC_MESSAGES/kdevheaptrack.mo share/locale/fr/LC_MESSAGES/kdevkonsole.mo share/locale/fr/LC_MESSAGES/kdevlldb.mo share/locale/fr/LC_MESSAGES/kdevmakebuilder.mo share/locale/fr/LC_MESSAGES/kdevmanpage.mo share/locale/fr/LC_MESSAGES/kdevmesonmanager.mo share/locale/fr/LC_MESSAGES/kdevninja.mo share/locale/fr/LC_MESSAGES/kdevokteta.mo share/locale/fr/LC_MESSAGES/kdevopenwith.mo share/locale/fr/LC_MESSAGES/kdevoutlineview.mo share/locale/fr/LC_MESSAGES/kdevpatchreview.mo share/locale/fr/LC_MESSAGES/kdevperforce.mo share/locale/fr/LC_MESSAGES/kdevplatform.mo share/locale/fr/LC_MESSAGES/kdevproblemreporter.mo share/locale/fr/LC_MESSAGES/kdevprojectfilter.mo share/locale/fr/LC_MESSAGES/kdevprojectmanagerview.mo share/locale/fr/LC_MESSAGES/kdevqmakebuilder.mo share/locale/fr/LC_MESSAGES/kdevqmakemanager.mo share/locale/fr/LC_MESSAGES/kdevqmljs.mo share/locale/fr/LC_MESSAGES/kdevqthelp.mo share/locale/fr/LC_MESSAGES/kdevquickopen.mo share/locale/fr/LC_MESSAGES/kdevscratchpad.mo share/locale/fr/LC_MESSAGES/kdevsourceformatter.mo share/locale/fr/LC_MESSAGES/kdevstandardoutputview.mo share/locale/fr/LC_MESSAGES/kdevsubversion.mo share/locale/fr/LC_MESSAGES/kdevswitchtobuddy.mo share/locale/fr/LC_MESSAGES/kdevtestview.mo share/locale/fr/LC_MESSAGES/kdevvcsprojectintegration.mo share/locale/fr/LC_MESSAGES/kdevwelcomepage.mo share/locale/fr/LC_MESSAGES/plasma_applet_kdevelopsessions.mo share/locale/fr/LC_MESSAGES/plasma_runner_kdevelopsessions.mo share/locale/ga/LC_MESSAGES/kdevappwizard.mo share/locale/ga/LC_MESSAGES/kdevbazaar.mo share/locale/ga/LC_MESSAGES/kdevclassbrowser.mo share/locale/ga/LC_MESSAGES/kdevcmake.mo share/locale/ga/LC_MESSAGES/kdevcmakebuilder.mo share/locale/ga/LC_MESSAGES/kdevcodeutils.mo share/locale/ga/LC_MESSAGES/kdevcontextbrowser.mo share/locale/ga/LC_MESSAGES/kdevcustombuildsystem.mo share/locale/ga/LC_MESSAGES/kdevcustommake.mo share/locale/ga/LC_MESSAGES/kdevdebuggercommon.mo share/locale/ga/LC_MESSAGES/kdevdocumentswitcher.mo share/locale/ga/LC_MESSAGES/kdevdocumentview.mo share/locale/ga/LC_MESSAGES/kdevelop.mo share/locale/ga/LC_MESSAGES/kdevexecute.mo share/locale/ga/LC_MESSAGES/kdevexecutescript.mo share/locale/ga/LC_MESSAGES/kdevexternalscript.mo share/locale/ga/LC_MESSAGES/kdevfilemanager.mo share/locale/ga/LC_MESSAGES/kdevgdb.mo share/locale/ga/LC_MESSAGES/kdevgit.mo share/locale/ga/LC_MESSAGES/kdevgrepview.mo share/locale/ga/LC_MESSAGES/kdevkonsole.mo share/locale/ga/LC_MESSAGES/kdevmakebuilder.mo share/locale/ga/LC_MESSAGES/kdevmanpage.mo share/locale/ga/LC_MESSAGES/kdevninja.mo share/locale/ga/LC_MESSAGES/kdevokteta.mo share/locale/ga/LC_MESSAGES/kdevopenwith.mo share/locale/ga/LC_MESSAGES/kdevpatchreview.mo share/locale/ga/LC_MESSAGES/kdevperforce.mo share/locale/ga/LC_MESSAGES/kdevplatform.mo share/locale/ga/LC_MESSAGES/kdevproblemreporter.mo share/locale/ga/LC_MESSAGES/kdevprojectmanagerview.mo share/locale/ga/LC_MESSAGES/kdevqmakebuilder.mo share/locale/ga/LC_MESSAGES/kdevqmakemanager.mo share/locale/ga/LC_MESSAGES/kdevqthelp.mo share/locale/ga/LC_MESSAGES/kdevquickopen.mo share/locale/ga/LC_MESSAGES/kdevstandardoutputview.mo share/locale/ga/LC_MESSAGES/kdevsubversion.mo share/locale/ga/LC_MESSAGES/kdevswitchtobuddy.mo share/locale/ga/LC_MESSAGES/kdevvcsprojectintegration.mo share/locale/ga/LC_MESSAGES/plasma_applet_kdevelopsessions.mo share/locale/ga/LC_MESSAGES/plasma_runner_kdevelopsessions.mo share/locale/gl/LC_MESSAGES/kdevandroid.mo share/locale/gl/LC_MESSAGES/kdevappwizard.mo share/locale/gl/LC_MESSAGES/kdevastyle.mo share/locale/gl/LC_MESSAGES/kdevbazaar.mo share/locale/gl/LC_MESSAGES/kdevclang.mo share/locale/gl/LC_MESSAGES/kdevclangtidy.mo share/locale/gl/LC_MESSAGES/kdevclassbrowser.mo share/locale/gl/LC_MESSAGES/kdevclazy.mo share/locale/gl/LC_MESSAGES/kdevcmake.mo share/locale/gl/LC_MESSAGES/kdevcmakebuilder.mo share/locale/gl/LC_MESSAGES/kdevcodeutils.mo share/locale/gl/LC_MESSAGES/kdevcompileanalyzercommon.mo share/locale/gl/LC_MESSAGES/kdevcontextbrowser.mo share/locale/gl/LC_MESSAGES/kdevcppcheck.mo share/locale/gl/LC_MESSAGES/kdevcustombuildsystem.mo share/locale/gl/LC_MESSAGES/kdevcustomdefinesandincludes.mo share/locale/gl/LC_MESSAGES/kdevcustommake.mo share/locale/gl/LC_MESSAGES/kdevcustomscript.mo share/locale/gl/LC_MESSAGES/kdevdebuggercommon.mo share/locale/gl/LC_MESSAGES/kdevdocker.mo share/locale/gl/LC_MESSAGES/kdevdocumentswitcher.mo share/locale/gl/LC_MESSAGES/kdevdocumentview.mo share/locale/gl/LC_MESSAGES/kdevelop.mo share/locale/gl/LC_MESSAGES/kdevexecute.mo share/locale/gl/LC_MESSAGES/kdevexecuteplasmoid.mo share/locale/gl/LC_MESSAGES/kdevexecutescript.mo share/locale/gl/LC_MESSAGES/kdevexternalscript.mo share/locale/gl/LC_MESSAGES/kdevfilemanager.mo share/locale/gl/LC_MESSAGES/kdevfiletemplates.mo share/locale/gl/LC_MESSAGES/kdevflatpak.mo share/locale/gl/LC_MESSAGES/kdevgdb.mo share/locale/gl/LC_MESSAGES/kdevghprovider.mo share/locale/gl/LC_MESSAGES/kdevgit.mo share/locale/gl/LC_MESSAGES/kdevgrepview.mo share/locale/gl/LC_MESSAGES/kdevheaptrack.mo share/locale/gl/LC_MESSAGES/kdevkonsole.mo share/locale/gl/LC_MESSAGES/kdevlldb.mo share/locale/gl/LC_MESSAGES/kdevmakebuilder.mo share/locale/gl/LC_MESSAGES/kdevmanpage.mo share/locale/gl/LC_MESSAGES/kdevmesonmanager.mo share/locale/gl/LC_MESSAGES/kdevninja.mo share/locale/gl/LC_MESSAGES/kdevokteta.mo share/locale/gl/LC_MESSAGES/kdevopenwith.mo share/locale/gl/LC_MESSAGES/kdevoutlineview.mo share/locale/gl/LC_MESSAGES/kdevpatchreview.mo share/locale/gl/LC_MESSAGES/kdevperforce.mo share/locale/gl/LC_MESSAGES/kdevplatform.mo share/locale/gl/LC_MESSAGES/kdevproblemreporter.mo share/locale/gl/LC_MESSAGES/kdevprojectfilter.mo share/locale/gl/LC_MESSAGES/kdevprojectmanagerview.mo share/locale/gl/LC_MESSAGES/kdevqmakebuilder.mo share/locale/gl/LC_MESSAGES/kdevqmakemanager.mo share/locale/gl/LC_MESSAGES/kdevqmljs.mo share/locale/gl/LC_MESSAGES/kdevqthelp.mo share/locale/gl/LC_MESSAGES/kdevquickopen.mo share/locale/gl/LC_MESSAGES/kdevscratchpad.mo share/locale/gl/LC_MESSAGES/kdevsourceformatter.mo share/locale/gl/LC_MESSAGES/kdevstandardoutputview.mo share/locale/gl/LC_MESSAGES/kdevsubversion.mo share/locale/gl/LC_MESSAGES/kdevswitchtobuddy.mo share/locale/gl/LC_MESSAGES/kdevtestview.mo share/locale/gl/LC_MESSAGES/kdevvcsprojectintegration.mo share/locale/gl/LC_MESSAGES/kdevwelcomepage.mo share/locale/gl/LC_MESSAGES/plasma_applet_kdevelopsessions.mo share/locale/gl/LC_MESSAGES/plasma_runner_kdevelopsessions.mo share/locale/hi/LC_MESSAGES/kdevelop.mo share/locale/hne/LC_MESSAGES/kdevelop.mo share/locale/hr/LC_MESSAGES/kdevappwizard.mo share/locale/hr/LC_MESSAGES/kdevclassbrowser.mo share/locale/hr/LC_MESSAGES/kdevcmake.mo share/locale/hr/LC_MESSAGES/kdevcmakebuilder.mo share/locale/hr/LC_MESSAGES/kdevcontextbrowser.mo share/locale/hr/LC_MESSAGES/kdevcustommake.mo share/locale/hr/LC_MESSAGES/kdevdebuggercommon.mo share/locale/hr/LC_MESSAGES/kdevdocumentswitcher.mo share/locale/hr/LC_MESSAGES/kdevdocumentview.mo share/locale/hr/LC_MESSAGES/kdevelop.mo share/locale/hr/LC_MESSAGES/kdevexecute.mo share/locale/hr/LC_MESSAGES/kdevfilemanager.mo share/locale/hr/LC_MESSAGES/kdevgdb.mo share/locale/hr/LC_MESSAGES/kdevgrepview.mo share/locale/hr/LC_MESSAGES/kdevkonsole.mo share/locale/hr/LC_MESSAGES/kdevmakebuilder.mo share/locale/hr/LC_MESSAGES/kdevpatchreview.mo share/locale/hr/LC_MESSAGES/kdevplatform.mo share/locale/hr/LC_MESSAGES/kdevproblemreporter.mo share/locale/hr/LC_MESSAGES/kdevprojectmanagerview.mo share/locale/hr/LC_MESSAGES/kdevqthelp.mo share/locale/hr/LC_MESSAGES/kdevquickopen.mo share/locale/hr/LC_MESSAGES/kdevstandardoutputview.mo share/locale/hr/LC_MESSAGES/kdevsubversion.mo share/locale/hu/LC_MESSAGES/kdevappwizard.mo share/locale/hu/LC_MESSAGES/kdevbazaar.mo share/locale/hu/LC_MESSAGES/kdevclassbrowser.mo share/locale/hu/LC_MESSAGES/kdevcmake.mo share/locale/hu/LC_MESSAGES/kdevcmakebuilder.mo share/locale/hu/LC_MESSAGES/kdevcodeutils.mo share/locale/hu/LC_MESSAGES/kdevcontextbrowser.mo share/locale/hu/LC_MESSAGES/kdevcppcheck.mo share/locale/hu/LC_MESSAGES/kdevcustombuildsystem.mo share/locale/hu/LC_MESSAGES/kdevcustommake.mo share/locale/hu/LC_MESSAGES/kdevdebuggercommon.mo share/locale/hu/LC_MESSAGES/kdevdocumentswitcher.mo share/locale/hu/LC_MESSAGES/kdevdocumentview.mo share/locale/hu/LC_MESSAGES/kdevelop.mo share/locale/hu/LC_MESSAGES/kdevexecute.mo share/locale/hu/LC_MESSAGES/kdevexecuteplasmoid.mo share/locale/hu/LC_MESSAGES/kdevexecutescript.mo share/locale/hu/LC_MESSAGES/kdevexternalscript.mo share/locale/hu/LC_MESSAGES/kdevfilemanager.mo share/locale/hu/LC_MESSAGES/kdevfiletemplates.mo share/locale/hu/LC_MESSAGES/kdevgdb.mo share/locale/hu/LC_MESSAGES/kdevghprovider.mo share/locale/hu/LC_MESSAGES/kdevgit.mo share/locale/hu/LC_MESSAGES/kdevgrepview.mo share/locale/hu/LC_MESSAGES/kdevkonsole.mo share/locale/hu/LC_MESSAGES/kdevmakebuilder.mo share/locale/hu/LC_MESSAGES/kdevmanpage.mo share/locale/hu/LC_MESSAGES/kdevninja.mo share/locale/hu/LC_MESSAGES/kdevokteta.mo share/locale/hu/LC_MESSAGES/kdevopenwith.mo share/locale/hu/LC_MESSAGES/kdevpatchreview.mo share/locale/hu/LC_MESSAGES/kdevperforce.mo share/locale/hu/LC_MESSAGES/kdevplatform.mo share/locale/hu/LC_MESSAGES/kdevproblemreporter.mo share/locale/hu/LC_MESSAGES/kdevprojectfilter.mo share/locale/hu/LC_MESSAGES/kdevprojectmanagerview.mo share/locale/hu/LC_MESSAGES/kdevqmakebuilder.mo share/locale/hu/LC_MESSAGES/kdevqmakemanager.mo share/locale/hu/LC_MESSAGES/kdevqmljs.mo share/locale/hu/LC_MESSAGES/kdevqthelp.mo share/locale/hu/LC_MESSAGES/kdevquickopen.mo share/locale/hu/LC_MESSAGES/kdevstandardoutputview.mo share/locale/hu/LC_MESSAGES/kdevsubversion.mo share/locale/hu/LC_MESSAGES/kdevswitchtobuddy.mo share/locale/hu/LC_MESSAGES/kdevtestview.mo share/locale/hu/LC_MESSAGES/kdevvcsprojectintegration.mo share/locale/hu/LC_MESSAGES/plasma_applet_kdevelopsessions.mo share/locale/hu/LC_MESSAGES/plasma_runner_kdevelopsessions.mo share/locale/is/LC_MESSAGES/kdevelop.mo share/locale/it/LC_MESSAGES/kdevandroid.mo share/locale/it/LC_MESSAGES/kdevappwizard.mo share/locale/it/LC_MESSAGES/kdevastyle.mo share/locale/it/LC_MESSAGES/kdevbazaar.mo share/locale/it/LC_MESSAGES/kdevclang.mo share/locale/it/LC_MESSAGES/kdevclangtidy.mo share/locale/it/LC_MESSAGES/kdevclassbrowser.mo share/locale/it/LC_MESSAGES/kdevclazy.mo share/locale/it/LC_MESSAGES/kdevcmake.mo share/locale/it/LC_MESSAGES/kdevcmakebuilder.mo share/locale/it/LC_MESSAGES/kdevcodeutils.mo share/locale/it/LC_MESSAGES/kdevcompileanalyzercommon.mo share/locale/it/LC_MESSAGES/kdevcontextbrowser.mo share/locale/it/LC_MESSAGES/kdevcppcheck.mo share/locale/it/LC_MESSAGES/kdevcustombuildsystem.mo share/locale/it/LC_MESSAGES/kdevcustomdefinesandincludes.mo share/locale/it/LC_MESSAGES/kdevcustommake.mo share/locale/it/LC_MESSAGES/kdevcustomscript.mo share/locale/it/LC_MESSAGES/kdevdebuggercommon.mo share/locale/it/LC_MESSAGES/kdevdocker.mo share/locale/it/LC_MESSAGES/kdevdocumentswitcher.mo share/locale/it/LC_MESSAGES/kdevdocumentview.mo share/locale/it/LC_MESSAGES/kdevelop.mo share/locale/it/LC_MESSAGES/kdevexecute.mo share/locale/it/LC_MESSAGES/kdevexecuteplasmoid.mo share/locale/it/LC_MESSAGES/kdevexecutescript.mo share/locale/it/LC_MESSAGES/kdevexternalscript.mo share/locale/it/LC_MESSAGES/kdevfilemanager.mo share/locale/it/LC_MESSAGES/kdevfiletemplates.mo share/locale/it/LC_MESSAGES/kdevflatpak.mo share/locale/it/LC_MESSAGES/kdevgdb.mo share/locale/it/LC_MESSAGES/kdevghprovider.mo share/locale/it/LC_MESSAGES/kdevgit.mo share/locale/it/LC_MESSAGES/kdevgrepview.mo share/locale/it/LC_MESSAGES/kdevheaptrack.mo share/locale/it/LC_MESSAGES/kdevkonsole.mo share/locale/it/LC_MESSAGES/kdevlldb.mo share/locale/it/LC_MESSAGES/kdevmakebuilder.mo share/locale/it/LC_MESSAGES/kdevmanpage.mo share/locale/it/LC_MESSAGES/kdevmesonmanager.mo share/locale/it/LC_MESSAGES/kdevninja.mo share/locale/it/LC_MESSAGES/kdevokteta.mo share/locale/it/LC_MESSAGES/kdevopenwith.mo share/locale/it/LC_MESSAGES/kdevoutlineview.mo share/locale/it/LC_MESSAGES/kdevpatchreview.mo share/locale/it/LC_MESSAGES/kdevperforce.mo share/locale/it/LC_MESSAGES/kdevplatform.mo share/locale/it/LC_MESSAGES/kdevproblemreporter.mo share/locale/it/LC_MESSAGES/kdevprojectfilter.mo share/locale/it/LC_MESSAGES/kdevprojectmanagerview.mo share/locale/it/LC_MESSAGES/kdevqmakebuilder.mo share/locale/it/LC_MESSAGES/kdevqmakemanager.mo share/locale/it/LC_MESSAGES/kdevqmljs.mo share/locale/it/LC_MESSAGES/kdevqthelp.mo share/locale/it/LC_MESSAGES/kdevquickopen.mo share/locale/it/LC_MESSAGES/kdevscratchpad.mo share/locale/it/LC_MESSAGES/kdevsourceformatter.mo share/locale/it/LC_MESSAGES/kdevstandardoutputview.mo share/locale/it/LC_MESSAGES/kdevsubversion.mo share/locale/it/LC_MESSAGES/kdevswitchtobuddy.mo share/locale/it/LC_MESSAGES/kdevtestview.mo share/locale/it/LC_MESSAGES/kdevvcsprojectintegration.mo share/locale/it/LC_MESSAGES/kdevwelcomepage.mo share/locale/it/LC_MESSAGES/plasma_applet_kdevelopsessions.mo share/locale/it/LC_MESSAGES/plasma_runner_kdevelopsessions.mo share/locale/ja/LC_MESSAGES/kdevandroid.mo share/locale/ja/LC_MESSAGES/kdevappwizard.mo share/locale/ja/LC_MESSAGES/kdevastyle.mo share/locale/ja/LC_MESSAGES/kdevbazaar.mo share/locale/ja/LC_MESSAGES/kdevclang.mo share/locale/ja/LC_MESSAGES/kdevclangtidy.mo share/locale/ja/LC_MESSAGES/kdevclassbrowser.mo share/locale/ja/LC_MESSAGES/kdevclazy.mo share/locale/ja/LC_MESSAGES/kdevcmake.mo share/locale/ja/LC_MESSAGES/kdevcmakebuilder.mo share/locale/ja/LC_MESSAGES/kdevcodeutils.mo share/locale/ja/LC_MESSAGES/kdevcompileanalyzercommon.mo share/locale/ja/LC_MESSAGES/kdevcontextbrowser.mo share/locale/ja/LC_MESSAGES/kdevcppcheck.mo share/locale/ja/LC_MESSAGES/kdevcustombuildsystem.mo share/locale/ja/LC_MESSAGES/kdevcustomdefinesandincludes.mo share/locale/ja/LC_MESSAGES/kdevcustommake.mo share/locale/ja/LC_MESSAGES/kdevcustomscript.mo share/locale/ja/LC_MESSAGES/kdevdebuggercommon.mo share/locale/ja/LC_MESSAGES/kdevdocker.mo share/locale/ja/LC_MESSAGES/kdevdocumentswitcher.mo share/locale/ja/LC_MESSAGES/kdevdocumentview.mo share/locale/ja/LC_MESSAGES/kdevelop.mo share/locale/ja/LC_MESSAGES/kdevexecute.mo share/locale/ja/LC_MESSAGES/kdevexecuteplasmoid.mo share/locale/ja/LC_MESSAGES/kdevexecutescript.mo share/locale/ja/LC_MESSAGES/kdevexternalscript.mo share/locale/ja/LC_MESSAGES/kdevfilemanager.mo share/locale/ja/LC_MESSAGES/kdevfiletemplates.mo share/locale/ja/LC_MESSAGES/kdevflatpak.mo share/locale/ja/LC_MESSAGES/kdevgdb.mo share/locale/ja/LC_MESSAGES/kdevghprovider.mo share/locale/ja/LC_MESSAGES/kdevgit.mo share/locale/ja/LC_MESSAGES/kdevgrepview.mo share/locale/ja/LC_MESSAGES/kdevheaptrack.mo share/locale/ja/LC_MESSAGES/kdevkonsole.mo share/locale/ja/LC_MESSAGES/kdevlldb.mo share/locale/ja/LC_MESSAGES/kdevmakebuilder.mo share/locale/ja/LC_MESSAGES/kdevmanpage.mo share/locale/ja/LC_MESSAGES/kdevmesonmanager.mo share/locale/ja/LC_MESSAGES/kdevninja.mo share/locale/ja/LC_MESSAGES/kdevokteta.mo share/locale/ja/LC_MESSAGES/kdevopenwith.mo share/locale/ja/LC_MESSAGES/kdevoutlineview.mo share/locale/ja/LC_MESSAGES/kdevpatchreview.mo share/locale/ja/LC_MESSAGES/kdevperforce.mo share/locale/ja/LC_MESSAGES/kdevplatform.mo share/locale/ja/LC_MESSAGES/kdevproblemreporter.mo share/locale/ja/LC_MESSAGES/kdevprojectfilter.mo share/locale/ja/LC_MESSAGES/kdevprojectmanagerview.mo share/locale/ja/LC_MESSAGES/kdevqmakebuilder.mo share/locale/ja/LC_MESSAGES/kdevqmakemanager.mo share/locale/ja/LC_MESSAGES/kdevqmljs.mo share/locale/ja/LC_MESSAGES/kdevqthelp.mo share/locale/ja/LC_MESSAGES/kdevquickopen.mo share/locale/ja/LC_MESSAGES/kdevscratchpad.mo share/locale/ja/LC_MESSAGES/kdevsourceformatter.mo share/locale/ja/LC_MESSAGES/kdevstandardoutputview.mo share/locale/ja/LC_MESSAGES/kdevsubversion.mo share/locale/ja/LC_MESSAGES/kdevswitchtobuddy.mo share/locale/ja/LC_MESSAGES/kdevtestview.mo share/locale/ja/LC_MESSAGES/kdevvcsprojectintegration.mo share/locale/ja/LC_MESSAGES/kdevwelcomepage.mo share/locale/ja/LC_MESSAGES/plasma_applet_kdevelopsessions.mo share/locale/ja/LC_MESSAGES/plasma_runner_kdevelopsessions.mo share/locale/ka/LC_MESSAGES/kdevandroid.mo share/locale/ka/LC_MESSAGES/kdevappwizard.mo share/locale/ka/LC_MESSAGES/kdevastyle.mo share/locale/ka/LC_MESSAGES/kdevbazaar.mo share/locale/ka/LC_MESSAGES/kdevclang.mo share/locale/ka/LC_MESSAGES/kdevclangtidy.mo share/locale/ka/LC_MESSAGES/kdevclassbrowser.mo share/locale/ka/LC_MESSAGES/kdevclazy.mo share/locale/ka/LC_MESSAGES/kdevcmake.mo share/locale/ka/LC_MESSAGES/kdevcmakebuilder.mo share/locale/ka/LC_MESSAGES/kdevcodeutils.mo share/locale/ka/LC_MESSAGES/kdevcompileanalyzercommon.mo share/locale/ka/LC_MESSAGES/kdevcontextbrowser.mo share/locale/ka/LC_MESSAGES/kdevcppcheck.mo share/locale/ka/LC_MESSAGES/kdevcustombuildsystem.mo share/locale/ka/LC_MESSAGES/kdevcustomdefinesandincludes.mo share/locale/ka/LC_MESSAGES/kdevcustommake.mo share/locale/ka/LC_MESSAGES/kdevcustomscript.mo share/locale/ka/LC_MESSAGES/kdevdebuggercommon.mo share/locale/ka/LC_MESSAGES/kdevdocker.mo share/locale/ka/LC_MESSAGES/kdevdocumentswitcher.mo share/locale/ka/LC_MESSAGES/kdevdocumentview.mo share/locale/ka/LC_MESSAGES/kdevelop.mo share/locale/ka/LC_MESSAGES/kdevexecute.mo share/locale/ka/LC_MESSAGES/kdevexecuteplasmoid.mo share/locale/ka/LC_MESSAGES/kdevexecutescript.mo share/locale/ka/LC_MESSAGES/kdevexternalscript.mo share/locale/ka/LC_MESSAGES/kdevfilemanager.mo share/locale/ka/LC_MESSAGES/kdevfiletemplates.mo share/locale/ka/LC_MESSAGES/kdevflatpak.mo share/locale/ka/LC_MESSAGES/kdevgdb.mo share/locale/ka/LC_MESSAGES/kdevghprovider.mo share/locale/ka/LC_MESSAGES/kdevgit.mo share/locale/ka/LC_MESSAGES/kdevgrepview.mo share/locale/ka/LC_MESSAGES/kdevheaptrack.mo share/locale/ka/LC_MESSAGES/kdevkonsole.mo share/locale/ka/LC_MESSAGES/kdevlldb.mo share/locale/ka/LC_MESSAGES/kdevmakebuilder.mo share/locale/ka/LC_MESSAGES/kdevmanpage.mo share/locale/ka/LC_MESSAGES/kdevmesonmanager.mo share/locale/ka/LC_MESSAGES/kdevninja.mo share/locale/ka/LC_MESSAGES/kdevokteta.mo share/locale/ka/LC_MESSAGES/kdevopenwith.mo share/locale/ka/LC_MESSAGES/kdevoutlineview.mo share/locale/ka/LC_MESSAGES/kdevpatchreview.mo share/locale/ka/LC_MESSAGES/kdevperforce.mo share/locale/ka/LC_MESSAGES/kdevplatform.mo share/locale/ka/LC_MESSAGES/kdevproblemreporter.mo share/locale/ka/LC_MESSAGES/kdevprojectfilter.mo share/locale/ka/LC_MESSAGES/kdevprojectmanagerview.mo share/locale/ka/LC_MESSAGES/kdevqmakebuilder.mo share/locale/ka/LC_MESSAGES/kdevqmakemanager.mo share/locale/ka/LC_MESSAGES/kdevqmljs.mo share/locale/ka/LC_MESSAGES/kdevqthelp.mo share/locale/ka/LC_MESSAGES/kdevquickopen.mo share/locale/ka/LC_MESSAGES/kdevscratchpad.mo share/locale/ka/LC_MESSAGES/kdevsourceformatter.mo share/locale/ka/LC_MESSAGES/kdevstandardoutputview.mo share/locale/ka/LC_MESSAGES/kdevsubversion.mo share/locale/ka/LC_MESSAGES/kdevswitchtobuddy.mo share/locale/ka/LC_MESSAGES/kdevtestview.mo share/locale/ka/LC_MESSAGES/kdevvcsprojectintegration.mo share/locale/ka/LC_MESSAGES/kdevwelcomepage.mo share/locale/ka/LC_MESSAGES/plasma_applet_kdevelopsessions.mo share/locale/ka/LC_MESSAGES/plasma_runner_kdevelopsessions.mo share/locale/kk/LC_MESSAGES/kdevappwizard.mo share/locale/kk/LC_MESSAGES/kdevclassbrowser.mo share/locale/kk/LC_MESSAGES/kdevcmake.mo share/locale/kk/LC_MESSAGES/kdevcmakebuilder.mo share/locale/kk/LC_MESSAGES/kdevcodeutils.mo share/locale/kk/LC_MESSAGES/kdevcontextbrowser.mo share/locale/kk/LC_MESSAGES/kdevcustombuildsystem.mo share/locale/kk/LC_MESSAGES/kdevcustommake.mo share/locale/kk/LC_MESSAGES/kdevdebuggercommon.mo share/locale/kk/LC_MESSAGES/kdevdocumentswitcher.mo share/locale/kk/LC_MESSAGES/kdevdocumentview.mo share/locale/kk/LC_MESSAGES/kdevelop.mo share/locale/kk/LC_MESSAGES/kdevexecute.mo share/locale/kk/LC_MESSAGES/kdevexecuteplasmoid.mo share/locale/kk/LC_MESSAGES/kdevexecutescript.mo share/locale/kk/LC_MESSAGES/kdevexternalscript.mo share/locale/kk/LC_MESSAGES/kdevfilemanager.mo share/locale/kk/LC_MESSAGES/kdevfiletemplates.mo share/locale/kk/LC_MESSAGES/kdevgdb.mo share/locale/kk/LC_MESSAGES/kdevghprovider.mo share/locale/kk/LC_MESSAGES/kdevgit.mo share/locale/kk/LC_MESSAGES/kdevgrepview.mo share/locale/kk/LC_MESSAGES/kdevkonsole.mo share/locale/kk/LC_MESSAGES/kdevmakebuilder.mo share/locale/kk/LC_MESSAGES/kdevmanpage.mo share/locale/kk/LC_MESSAGES/kdevninja.mo share/locale/kk/LC_MESSAGES/kdevokteta.mo share/locale/kk/LC_MESSAGES/kdevopenwith.mo share/locale/kk/LC_MESSAGES/kdevpatchreview.mo share/locale/kk/LC_MESSAGES/kdevplatform.mo share/locale/kk/LC_MESSAGES/kdevproblemreporter.mo share/locale/kk/LC_MESSAGES/kdevprojectfilter.mo share/locale/kk/LC_MESSAGES/kdevprojectmanagerview.mo share/locale/kk/LC_MESSAGES/kdevqthelp.mo share/locale/kk/LC_MESSAGES/kdevquickopen.mo share/locale/kk/LC_MESSAGES/kdevstandardoutputview.mo share/locale/kk/LC_MESSAGES/kdevsubversion.mo share/locale/kk/LC_MESSAGES/kdevswitchtobuddy.mo share/locale/kk/LC_MESSAGES/kdevtestview.mo share/locale/kk/LC_MESSAGES/kdevvcsprojectintegration.mo share/locale/kk/LC_MESSAGES/plasma_applet_kdevelopsessions.mo share/locale/kk/LC_MESSAGES/plasma_runner_kdevelopsessions.mo share/locale/km/LC_MESSAGES/kdevelop.mo share/locale/ko/LC_MESSAGES/kdevandroid.mo share/locale/ko/LC_MESSAGES/kdevappwizard.mo share/locale/ko/LC_MESSAGES/kdevastyle.mo share/locale/ko/LC_MESSAGES/kdevbazaar.mo share/locale/ko/LC_MESSAGES/kdevclang.mo share/locale/ko/LC_MESSAGES/kdevclangtidy.mo share/locale/ko/LC_MESSAGES/kdevclassbrowser.mo share/locale/ko/LC_MESSAGES/kdevclazy.mo share/locale/ko/LC_MESSAGES/kdevcmake.mo share/locale/ko/LC_MESSAGES/kdevcmakebuilder.mo share/locale/ko/LC_MESSAGES/kdevcodeutils.mo share/locale/ko/LC_MESSAGES/kdevcompileanalyzercommon.mo share/locale/ko/LC_MESSAGES/kdevcontextbrowser.mo share/locale/ko/LC_MESSAGES/kdevcppcheck.mo share/locale/ko/LC_MESSAGES/kdevcustombuildsystem.mo share/locale/ko/LC_MESSAGES/kdevcustomdefinesandincludes.mo share/locale/ko/LC_MESSAGES/kdevcustommake.mo share/locale/ko/LC_MESSAGES/kdevcustomscript.mo share/locale/ko/LC_MESSAGES/kdevdebuggercommon.mo share/locale/ko/LC_MESSAGES/kdevdocker.mo share/locale/ko/LC_MESSAGES/kdevdocumentswitcher.mo share/locale/ko/LC_MESSAGES/kdevdocumentview.mo share/locale/ko/LC_MESSAGES/kdevelop.mo share/locale/ko/LC_MESSAGES/kdevexecute.mo share/locale/ko/LC_MESSAGES/kdevexecuteplasmoid.mo share/locale/ko/LC_MESSAGES/kdevexecutescript.mo share/locale/ko/LC_MESSAGES/kdevexternalscript.mo share/locale/ko/LC_MESSAGES/kdevfilemanager.mo share/locale/ko/LC_MESSAGES/kdevfiletemplates.mo share/locale/ko/LC_MESSAGES/kdevflatpak.mo share/locale/ko/LC_MESSAGES/kdevgdb.mo share/locale/ko/LC_MESSAGES/kdevghprovider.mo share/locale/ko/LC_MESSAGES/kdevgit.mo share/locale/ko/LC_MESSAGES/kdevgrepview.mo share/locale/ko/LC_MESSAGES/kdevheaptrack.mo share/locale/ko/LC_MESSAGES/kdevkonsole.mo share/locale/ko/LC_MESSAGES/kdevlldb.mo share/locale/ko/LC_MESSAGES/kdevmakebuilder.mo share/locale/ko/LC_MESSAGES/kdevmanpage.mo share/locale/ko/LC_MESSAGES/kdevmesonmanager.mo share/locale/ko/LC_MESSAGES/kdevninja.mo share/locale/ko/LC_MESSAGES/kdevokteta.mo share/locale/ko/LC_MESSAGES/kdevopenwith.mo share/locale/ko/LC_MESSAGES/kdevoutlineview.mo share/locale/ko/LC_MESSAGES/kdevpatchreview.mo share/locale/ko/LC_MESSAGES/kdevperforce.mo share/locale/ko/LC_MESSAGES/kdevplatform.mo share/locale/ko/LC_MESSAGES/kdevproblemreporter.mo share/locale/ko/LC_MESSAGES/kdevprojectfilter.mo share/locale/ko/LC_MESSAGES/kdevprojectmanagerview.mo share/locale/ko/LC_MESSAGES/kdevqmakebuilder.mo share/locale/ko/LC_MESSAGES/kdevqmakemanager.mo share/locale/ko/LC_MESSAGES/kdevqmljs.mo share/locale/ko/LC_MESSAGES/kdevqthelp.mo share/locale/ko/LC_MESSAGES/kdevquickopen.mo share/locale/ko/LC_MESSAGES/kdevscratchpad.mo share/locale/ko/LC_MESSAGES/kdevsourceformatter.mo share/locale/ko/LC_MESSAGES/kdevstandardoutputview.mo share/locale/ko/LC_MESSAGES/kdevsubversion.mo share/locale/ko/LC_MESSAGES/kdevswitchtobuddy.mo share/locale/ko/LC_MESSAGES/kdevtestview.mo share/locale/ko/LC_MESSAGES/kdevvcsprojectintegration.mo share/locale/ko/LC_MESSAGES/kdevwelcomepage.mo share/locale/ko/LC_MESSAGES/plasma_applet_kdevelopsessions.mo share/locale/ko/LC_MESSAGES/plasma_runner_kdevelopsessions.mo share/locale/ku/LC_MESSAGES/kdevelop.mo share/locale/lt/LC_MESSAGES/kdevandroid.mo share/locale/lt/LC_MESSAGES/kdevappwizard.mo share/locale/lt/LC_MESSAGES/kdevastyle.mo share/locale/lt/LC_MESSAGES/kdevbazaar.mo share/locale/lt/LC_MESSAGES/kdevclang.mo share/locale/lt/LC_MESSAGES/kdevclangtidy.mo share/locale/lt/LC_MESSAGES/kdevclassbrowser.mo share/locale/lt/LC_MESSAGES/kdevclazy.mo share/locale/lt/LC_MESSAGES/kdevcmake.mo share/locale/lt/LC_MESSAGES/kdevcmakebuilder.mo share/locale/lt/LC_MESSAGES/kdevcodeutils.mo share/locale/lt/LC_MESSAGES/kdevcompileanalyzercommon.mo share/locale/lt/LC_MESSAGES/kdevcontextbrowser.mo share/locale/lt/LC_MESSAGES/kdevcppcheck.mo share/locale/lt/LC_MESSAGES/kdevcustombuildsystem.mo share/locale/lt/LC_MESSAGES/kdevcustomdefinesandincludes.mo share/locale/lt/LC_MESSAGES/kdevcustommake.mo share/locale/lt/LC_MESSAGES/kdevcustomscript.mo share/locale/lt/LC_MESSAGES/kdevdebuggercommon.mo share/locale/lt/LC_MESSAGES/kdevdocker.mo share/locale/lt/LC_MESSAGES/kdevdocumentswitcher.mo share/locale/lt/LC_MESSAGES/kdevdocumentview.mo share/locale/lt/LC_MESSAGES/kdevelop.mo share/locale/lt/LC_MESSAGES/kdevexecute.mo share/locale/lt/LC_MESSAGES/kdevexecuteplasmoid.mo share/locale/lt/LC_MESSAGES/kdevexecutescript.mo share/locale/lt/LC_MESSAGES/kdevexternalscript.mo share/locale/lt/LC_MESSAGES/kdevfilemanager.mo share/locale/lt/LC_MESSAGES/kdevfiletemplates.mo share/locale/lt/LC_MESSAGES/kdevflatpak.mo share/locale/lt/LC_MESSAGES/kdevgdb.mo share/locale/lt/LC_MESSAGES/kdevghprovider.mo share/locale/lt/LC_MESSAGES/kdevgit.mo share/locale/lt/LC_MESSAGES/kdevgrepview.mo share/locale/lt/LC_MESSAGES/kdevheaptrack.mo share/locale/lt/LC_MESSAGES/kdevkonsole.mo share/locale/lt/LC_MESSAGES/kdevlldb.mo share/locale/lt/LC_MESSAGES/kdevmakebuilder.mo share/locale/lt/LC_MESSAGES/kdevmanpage.mo share/locale/lt/LC_MESSAGES/kdevmesonmanager.mo share/locale/lt/LC_MESSAGES/kdevninja.mo share/locale/lt/LC_MESSAGES/kdevokteta.mo share/locale/lt/LC_MESSAGES/kdevopenwith.mo share/locale/lt/LC_MESSAGES/kdevoutlineview.mo share/locale/lt/LC_MESSAGES/kdevpatchreview.mo share/locale/lt/LC_MESSAGES/kdevperforce.mo share/locale/lt/LC_MESSAGES/kdevplatform.mo share/locale/lt/LC_MESSAGES/kdevproblemreporter.mo share/locale/lt/LC_MESSAGES/kdevprojectfilter.mo share/locale/lt/LC_MESSAGES/kdevprojectmanagerview.mo share/locale/lt/LC_MESSAGES/kdevqmakebuilder.mo share/locale/lt/LC_MESSAGES/kdevqmakemanager.mo share/locale/lt/LC_MESSAGES/kdevqmljs.mo share/locale/lt/LC_MESSAGES/kdevqthelp.mo share/locale/lt/LC_MESSAGES/kdevquickopen.mo share/locale/lt/LC_MESSAGES/kdevscratchpad.mo share/locale/lt/LC_MESSAGES/kdevsourceformatter.mo share/locale/lt/LC_MESSAGES/kdevstandardoutputview.mo share/locale/lt/LC_MESSAGES/kdevsubversion.mo share/locale/lt/LC_MESSAGES/kdevswitchtobuddy.mo share/locale/lt/LC_MESSAGES/kdevtestview.mo share/locale/lt/LC_MESSAGES/kdevvcsprojectintegration.mo share/locale/lt/LC_MESSAGES/kdevwelcomepage.mo share/locale/lt/LC_MESSAGES/plasma_applet_kdevelopsessions.mo share/locale/lt/LC_MESSAGES/plasma_runner_kdevelopsessions.mo share/locale/lv/LC_MESSAGES/kdevelop.mo share/locale/mai/LC_MESSAGES/kdevbazaar.mo share/locale/mai/LC_MESSAGES/kdevexecutescript.mo share/locale/mai/LC_MESSAGES/kdevqmakebuilder.mo share/locale/mai/LC_MESSAGES/kdevqmakemanager.mo share/locale/mr/LC_MESSAGES/kdevappwizard.mo share/locale/mr/LC_MESSAGES/kdevclassbrowser.mo share/locale/mr/LC_MESSAGES/kdevcmake.mo share/locale/mr/LC_MESSAGES/kdevcmakebuilder.mo share/locale/mr/LC_MESSAGES/kdevcodeutils.mo share/locale/mr/LC_MESSAGES/kdevcontextbrowser.mo share/locale/mr/LC_MESSAGES/kdevcustombuildsystem.mo share/locale/mr/LC_MESSAGES/kdevcustommake.mo share/locale/mr/LC_MESSAGES/kdevdebuggercommon.mo share/locale/mr/LC_MESSAGES/kdevdocumentswitcher.mo share/locale/mr/LC_MESSAGES/kdevdocumentview.mo share/locale/mr/LC_MESSAGES/kdevelop.mo share/locale/mr/LC_MESSAGES/kdevexecute.mo share/locale/mr/LC_MESSAGES/kdevexecutescript.mo share/locale/mr/LC_MESSAGES/kdevexternalscript.mo share/locale/mr/LC_MESSAGES/kdevfilemanager.mo share/locale/mr/LC_MESSAGES/kdevgdb.mo share/locale/mr/LC_MESSAGES/kdevgit.mo share/locale/mr/LC_MESSAGES/kdevgrepview.mo share/locale/mr/LC_MESSAGES/kdevkonsole.mo share/locale/mr/LC_MESSAGES/kdevmakebuilder.mo share/locale/mr/LC_MESSAGES/kdevmanpage.mo share/locale/mr/LC_MESSAGES/kdevokteta.mo share/locale/mr/LC_MESSAGES/kdevopenwith.mo share/locale/mr/LC_MESSAGES/kdevpatchreview.mo share/locale/mr/LC_MESSAGES/kdevperforce.mo share/locale/mr/LC_MESSAGES/kdevplatform.mo share/locale/mr/LC_MESSAGES/kdevproblemreporter.mo share/locale/mr/LC_MESSAGES/kdevprojectmanagerview.mo share/locale/mr/LC_MESSAGES/kdevqmljs.mo share/locale/mr/LC_MESSAGES/kdevqthelp.mo share/locale/mr/LC_MESSAGES/kdevquickopen.mo share/locale/mr/LC_MESSAGES/kdevstandardoutputview.mo share/locale/mr/LC_MESSAGES/kdevsubversion.mo share/locale/mr/LC_MESSAGES/kdevswitchtobuddy.mo share/locale/mr/LC_MESSAGES/kdevvcsprojectintegration.mo share/locale/mr/LC_MESSAGES/plasma_applet_kdevelopsessions.mo share/locale/mr/LC_MESSAGES/plasma_runner_kdevelopsessions.mo share/locale/ms/LC_MESSAGES/kdevappwizard.mo share/locale/ms/LC_MESSAGES/kdevclassbrowser.mo share/locale/ms/LC_MESSAGES/kdevcmake.mo share/locale/ms/LC_MESSAGES/kdevcmakebuilder.mo share/locale/ms/LC_MESSAGES/kdevcontextbrowser.mo share/locale/ms/LC_MESSAGES/kdevcustommake.mo share/locale/ms/LC_MESSAGES/kdevdocumentswitcher.mo share/locale/ms/LC_MESSAGES/kdevdocumentview.mo share/locale/ms/LC_MESSAGES/kdevelop.mo share/locale/ms/LC_MESSAGES/kdevexecute.mo share/locale/ms/LC_MESSAGES/kdevfilemanager.mo share/locale/ms/LC_MESSAGES/kdevplatform.mo share/locale/nb/LC_MESSAGES/kdevappwizard.mo share/locale/nb/LC_MESSAGES/kdevastyle.mo share/locale/nb/LC_MESSAGES/kdevbazaar.mo share/locale/nb/LC_MESSAGES/kdevclassbrowser.mo share/locale/nb/LC_MESSAGES/kdevcmake.mo share/locale/nb/LC_MESSAGES/kdevcmakebuilder.mo share/locale/nb/LC_MESSAGES/kdevcodeutils.mo share/locale/nb/LC_MESSAGES/kdevcontextbrowser.mo share/locale/nb/LC_MESSAGES/kdevcustombuildsystem.mo share/locale/nb/LC_MESSAGES/kdevcustommake.mo share/locale/nb/LC_MESSAGES/kdevcustomscript.mo share/locale/nb/LC_MESSAGES/kdevdebuggercommon.mo share/locale/nb/LC_MESSAGES/kdevdocumentswitcher.mo share/locale/nb/LC_MESSAGES/kdevdocumentview.mo share/locale/nb/LC_MESSAGES/kdevelop.mo share/locale/nb/LC_MESSAGES/kdevexecute.mo share/locale/nb/LC_MESSAGES/kdevexecuteplasmoid.mo share/locale/nb/LC_MESSAGES/kdevexecutescript.mo share/locale/nb/LC_MESSAGES/kdevexternalscript.mo share/locale/nb/LC_MESSAGES/kdevfilemanager.mo share/locale/nb/LC_MESSAGES/kdevgdb.mo share/locale/nb/LC_MESSAGES/kdevgit.mo share/locale/nb/LC_MESSAGES/kdevgrepview.mo share/locale/nb/LC_MESSAGES/kdevkonsole.mo share/locale/nb/LC_MESSAGES/kdevmakebuilder.mo share/locale/nb/LC_MESSAGES/kdevmanpage.mo share/locale/nb/LC_MESSAGES/kdevokteta.mo share/locale/nb/LC_MESSAGES/kdevopenwith.mo share/locale/nb/LC_MESSAGES/kdevpatchreview.mo share/locale/nb/LC_MESSAGES/kdevplatform.mo share/locale/nb/LC_MESSAGES/kdevproblemreporter.mo share/locale/nb/LC_MESSAGES/kdevprojectmanagerview.mo share/locale/nb/LC_MESSAGES/kdevqmakebuilder.mo share/locale/nb/LC_MESSAGES/kdevqmakemanager.mo share/locale/nb/LC_MESSAGES/kdevqthelp.mo share/locale/nb/LC_MESSAGES/kdevquickopen.mo share/locale/nb/LC_MESSAGES/kdevsourceformatter.mo share/locale/nb/LC_MESSAGES/kdevstandardoutputview.mo share/locale/nb/LC_MESSAGES/kdevsubversion.mo share/locale/nb/LC_MESSAGES/kdevvcsprojectintegration.mo share/locale/nb/LC_MESSAGES/plasma_applet_kdevelopsessions.mo share/locale/nb/LC_MESSAGES/plasma_runner_kdevelopsessions.mo share/locale/nds/LC_MESSAGES/kdevappwizard.mo share/locale/nds/LC_MESSAGES/kdevbazaar.mo share/locale/nds/LC_MESSAGES/kdevclassbrowser.mo share/locale/nds/LC_MESSAGES/kdevcmake.mo share/locale/nds/LC_MESSAGES/kdevcmakebuilder.mo share/locale/nds/LC_MESSAGES/kdevcodeutils.mo share/locale/nds/LC_MESSAGES/kdevcontextbrowser.mo share/locale/nds/LC_MESSAGES/kdevcustombuildsystem.mo share/locale/nds/LC_MESSAGES/kdevcustommake.mo share/locale/nds/LC_MESSAGES/kdevdebuggercommon.mo share/locale/nds/LC_MESSAGES/kdevdocumentswitcher.mo share/locale/nds/LC_MESSAGES/kdevdocumentview.mo share/locale/nds/LC_MESSAGES/kdevelop.mo share/locale/nds/LC_MESSAGES/kdevexecute.mo share/locale/nds/LC_MESSAGES/kdevexecuteplasmoid.mo share/locale/nds/LC_MESSAGES/kdevexecutescript.mo share/locale/nds/LC_MESSAGES/kdevexternalscript.mo share/locale/nds/LC_MESSAGES/kdevfilemanager.mo share/locale/nds/LC_MESSAGES/kdevfiletemplates.mo share/locale/nds/LC_MESSAGES/kdevgdb.mo share/locale/nds/LC_MESSAGES/kdevghprovider.mo share/locale/nds/LC_MESSAGES/kdevgit.mo share/locale/nds/LC_MESSAGES/kdevgrepview.mo share/locale/nds/LC_MESSAGES/kdevkonsole.mo share/locale/nds/LC_MESSAGES/kdevmakebuilder.mo share/locale/nds/LC_MESSAGES/kdevmanpage.mo share/locale/nds/LC_MESSAGES/kdevninja.mo share/locale/nds/LC_MESSAGES/kdevokteta.mo share/locale/nds/LC_MESSAGES/kdevopenwith.mo share/locale/nds/LC_MESSAGES/kdevpatchreview.mo share/locale/nds/LC_MESSAGES/kdevperforce.mo share/locale/nds/LC_MESSAGES/kdevplatform.mo share/locale/nds/LC_MESSAGES/kdevproblemreporter.mo share/locale/nds/LC_MESSAGES/kdevprojectfilter.mo share/locale/nds/LC_MESSAGES/kdevprojectmanagerview.mo share/locale/nds/LC_MESSAGES/kdevqmakebuilder.mo share/locale/nds/LC_MESSAGES/kdevqmakemanager.mo share/locale/nds/LC_MESSAGES/kdevqthelp.mo share/locale/nds/LC_MESSAGES/kdevquickopen.mo share/locale/nds/LC_MESSAGES/kdevstandardoutputview.mo share/locale/nds/LC_MESSAGES/kdevsubversion.mo share/locale/nds/LC_MESSAGES/kdevswitchtobuddy.mo share/locale/nds/LC_MESSAGES/kdevtestview.mo share/locale/nds/LC_MESSAGES/kdevvcsprojectintegration.mo share/locale/nds/LC_MESSAGES/plasma_applet_kdevelopsessions.mo share/locale/nds/LC_MESSAGES/plasma_runner_kdevelopsessions.mo share/locale/ne/LC_MESSAGES/kdevelop.mo share/locale/nl/LC_MESSAGES/kdevandroid.mo share/locale/nl/LC_MESSAGES/kdevappwizard.mo share/locale/nl/LC_MESSAGES/kdevastyle.mo share/locale/nl/LC_MESSAGES/kdevbazaar.mo share/locale/nl/LC_MESSAGES/kdevclang.mo share/locale/nl/LC_MESSAGES/kdevclangtidy.mo share/locale/nl/LC_MESSAGES/kdevclassbrowser.mo share/locale/nl/LC_MESSAGES/kdevclazy.mo share/locale/nl/LC_MESSAGES/kdevcmake.mo share/locale/nl/LC_MESSAGES/kdevcmakebuilder.mo share/locale/nl/LC_MESSAGES/kdevcodeutils.mo share/locale/nl/LC_MESSAGES/kdevcompileanalyzercommon.mo share/locale/nl/LC_MESSAGES/kdevcontextbrowser.mo share/locale/nl/LC_MESSAGES/kdevcppcheck.mo share/locale/nl/LC_MESSAGES/kdevcustombuildsystem.mo share/locale/nl/LC_MESSAGES/kdevcustomdefinesandincludes.mo share/locale/nl/LC_MESSAGES/kdevcustommake.mo share/locale/nl/LC_MESSAGES/kdevcustomscript.mo share/locale/nl/LC_MESSAGES/kdevdebuggercommon.mo share/locale/nl/LC_MESSAGES/kdevdocker.mo share/locale/nl/LC_MESSAGES/kdevdocumentswitcher.mo share/locale/nl/LC_MESSAGES/kdevdocumentview.mo share/locale/nl/LC_MESSAGES/kdevelop.mo share/locale/nl/LC_MESSAGES/kdevexecute.mo share/locale/nl/LC_MESSAGES/kdevexecuteplasmoid.mo share/locale/nl/LC_MESSAGES/kdevexecutescript.mo share/locale/nl/LC_MESSAGES/kdevexternalscript.mo share/locale/nl/LC_MESSAGES/kdevfilemanager.mo share/locale/nl/LC_MESSAGES/kdevfiletemplates.mo share/locale/nl/LC_MESSAGES/kdevflatpak.mo share/locale/nl/LC_MESSAGES/kdevgdb.mo share/locale/nl/LC_MESSAGES/kdevghprovider.mo share/locale/nl/LC_MESSAGES/kdevgit.mo share/locale/nl/LC_MESSAGES/kdevgrepview.mo share/locale/nl/LC_MESSAGES/kdevheaptrack.mo share/locale/nl/LC_MESSAGES/kdevkonsole.mo share/locale/nl/LC_MESSAGES/kdevlldb.mo share/locale/nl/LC_MESSAGES/kdevmakebuilder.mo share/locale/nl/LC_MESSAGES/kdevmanpage.mo share/locale/nl/LC_MESSAGES/kdevmesonmanager.mo share/locale/nl/LC_MESSAGES/kdevninja.mo share/locale/nl/LC_MESSAGES/kdevokteta.mo share/locale/nl/LC_MESSAGES/kdevopenwith.mo share/locale/nl/LC_MESSAGES/kdevoutlineview.mo share/locale/nl/LC_MESSAGES/kdevpatchreview.mo share/locale/nl/LC_MESSAGES/kdevperforce.mo share/locale/nl/LC_MESSAGES/kdevplatform.mo share/locale/nl/LC_MESSAGES/kdevproblemreporter.mo share/locale/nl/LC_MESSAGES/kdevprojectfilter.mo share/locale/nl/LC_MESSAGES/kdevprojectmanagerview.mo share/locale/nl/LC_MESSAGES/kdevqmakebuilder.mo share/locale/nl/LC_MESSAGES/kdevqmakemanager.mo share/locale/nl/LC_MESSAGES/kdevqmljs.mo share/locale/nl/LC_MESSAGES/kdevqthelp.mo share/locale/nl/LC_MESSAGES/kdevquickopen.mo share/locale/nl/LC_MESSAGES/kdevscratchpad.mo share/locale/nl/LC_MESSAGES/kdevsourceformatter.mo share/locale/nl/LC_MESSAGES/kdevstandardoutputview.mo share/locale/nl/LC_MESSAGES/kdevsubversion.mo share/locale/nl/LC_MESSAGES/kdevswitchtobuddy.mo share/locale/nl/LC_MESSAGES/kdevtestview.mo share/locale/nl/LC_MESSAGES/kdevvcsprojectintegration.mo share/locale/nl/LC_MESSAGES/kdevwelcomepage.mo share/locale/nl/LC_MESSAGES/plasma_applet_kdevelopsessions.mo share/locale/nl/LC_MESSAGES/plasma_runner_kdevelopsessions.mo share/locale/nn/LC_MESSAGES/kdevappwizard.mo share/locale/nn/LC_MESSAGES/kdevastyle.mo share/locale/nn/LC_MESSAGES/kdevbazaar.mo share/locale/nn/LC_MESSAGES/kdevclassbrowser.mo share/locale/nn/LC_MESSAGES/kdevcmake.mo share/locale/nn/LC_MESSAGES/kdevcmakebuilder.mo share/locale/nn/LC_MESSAGES/kdevcontextbrowser.mo share/locale/nn/LC_MESSAGES/kdevcustommake.mo share/locale/nn/LC_MESSAGES/kdevcustomscript.mo share/locale/nn/LC_MESSAGES/kdevdebuggercommon.mo share/locale/nn/LC_MESSAGES/kdevdocumentview.mo share/locale/nn/LC_MESSAGES/kdevelop.mo share/locale/nn/LC_MESSAGES/kdevexecute.mo share/locale/nn/LC_MESSAGES/kdevfilemanager.mo share/locale/nn/LC_MESSAGES/kdevgdb.mo share/locale/nn/LC_MESSAGES/kdevgit.mo share/locale/nn/LC_MESSAGES/kdevgrepview.mo share/locale/nn/LC_MESSAGES/kdevheaptrack.mo share/locale/nn/LC_MESSAGES/kdevkonsole.mo share/locale/nn/LC_MESSAGES/kdevmakebuilder.mo share/locale/nn/LC_MESSAGES/kdevokteta.mo share/locale/nn/LC_MESSAGES/kdevplatform.mo share/locale/nn/LC_MESSAGES/kdevproblemreporter.mo share/locale/nn/LC_MESSAGES/kdevprojectmanagerview.mo share/locale/nn/LC_MESSAGES/kdevqmakebuilder.mo share/locale/nn/LC_MESSAGES/kdevqmakemanager.mo share/locale/nn/LC_MESSAGES/kdevquickopen.mo share/locale/nn/LC_MESSAGES/kdevsourceformatter.mo share/locale/nn/LC_MESSAGES/kdevstandardoutputview.mo share/locale/nn/LC_MESSAGES/kdevsubversion.mo share/locale/nn/LC_MESSAGES/plasma_applet_kdevelopsessions.mo share/locale/nn/LC_MESSAGES/plasma_runner_kdevelopsessions.mo share/locale/oc/LC_MESSAGES/kdevelop.mo share/locale/pa/LC_MESSAGES/kdevbazaar.mo share/locale/pa/LC_MESSAGES/kdevclassbrowser.mo share/locale/pa/LC_MESSAGES/kdevcontextbrowser.mo share/locale/pa/LC_MESSAGES/kdevexecute.mo share/locale/pa/LC_MESSAGES/kdevfilemanager.mo share/locale/pa/LC_MESSAGES/kdevgit.mo share/locale/pa/LC_MESSAGES/kdevkonsole.mo share/locale/pa/LC_MESSAGES/kdevplatform.mo share/locale/pa/LC_MESSAGES/kdevquickopen.mo share/locale/pa/LC_MESSAGES/kdevsubversion.mo share/locale/pl/LC_MESSAGES/kdevandroid.mo share/locale/pl/LC_MESSAGES/kdevappwizard.mo share/locale/pl/LC_MESSAGES/kdevastyle.mo share/locale/pl/LC_MESSAGES/kdevbazaar.mo share/locale/pl/LC_MESSAGES/kdevclang.mo share/locale/pl/LC_MESSAGES/kdevclangtidy.mo share/locale/pl/LC_MESSAGES/kdevclassbrowser.mo share/locale/pl/LC_MESSAGES/kdevclazy.mo share/locale/pl/LC_MESSAGES/kdevcmake.mo share/locale/pl/LC_MESSAGES/kdevcmakebuilder.mo share/locale/pl/LC_MESSAGES/kdevcodeutils.mo share/locale/pl/LC_MESSAGES/kdevcompileanalyzercommon.mo share/locale/pl/LC_MESSAGES/kdevcontextbrowser.mo share/locale/pl/LC_MESSAGES/kdevcppcheck.mo share/locale/pl/LC_MESSAGES/kdevcustombuildsystem.mo share/locale/pl/LC_MESSAGES/kdevcustomdefinesandincludes.mo share/locale/pl/LC_MESSAGES/kdevcustommake.mo share/locale/pl/LC_MESSAGES/kdevcustomscript.mo share/locale/pl/LC_MESSAGES/kdevdebuggercommon.mo share/locale/pl/LC_MESSAGES/kdevdocker.mo share/locale/pl/LC_MESSAGES/kdevdocumentswitcher.mo share/locale/pl/LC_MESSAGES/kdevdocumentview.mo share/locale/pl/LC_MESSAGES/kdevelop.mo share/locale/pl/LC_MESSAGES/kdevexecute.mo share/locale/pl/LC_MESSAGES/kdevexecuteplasmoid.mo share/locale/pl/LC_MESSAGES/kdevexecutescript.mo share/locale/pl/LC_MESSAGES/kdevexternalscript.mo share/locale/pl/LC_MESSAGES/kdevfilemanager.mo share/locale/pl/LC_MESSAGES/kdevfiletemplates.mo share/locale/pl/LC_MESSAGES/kdevflatpak.mo share/locale/pl/LC_MESSAGES/kdevgdb.mo share/locale/pl/LC_MESSAGES/kdevghprovider.mo share/locale/pl/LC_MESSAGES/kdevgit.mo share/locale/pl/LC_MESSAGES/kdevgrepview.mo share/locale/pl/LC_MESSAGES/kdevheaptrack.mo share/locale/pl/LC_MESSAGES/kdevkonsole.mo share/locale/pl/LC_MESSAGES/kdevlldb.mo share/locale/pl/LC_MESSAGES/kdevmakebuilder.mo share/locale/pl/LC_MESSAGES/kdevmanpage.mo share/locale/pl/LC_MESSAGES/kdevmesonmanager.mo share/locale/pl/LC_MESSAGES/kdevninja.mo share/locale/pl/LC_MESSAGES/kdevokteta.mo share/locale/pl/LC_MESSAGES/kdevopenwith.mo share/locale/pl/LC_MESSAGES/kdevoutlineview.mo share/locale/pl/LC_MESSAGES/kdevpatchreview.mo share/locale/pl/LC_MESSAGES/kdevperforce.mo share/locale/pl/LC_MESSAGES/kdevplatform.mo share/locale/pl/LC_MESSAGES/kdevproblemreporter.mo share/locale/pl/LC_MESSAGES/kdevprojectfilter.mo share/locale/pl/LC_MESSAGES/kdevprojectmanagerview.mo share/locale/pl/LC_MESSAGES/kdevqmakebuilder.mo share/locale/pl/LC_MESSAGES/kdevqmakemanager.mo share/locale/pl/LC_MESSAGES/kdevqmljs.mo share/locale/pl/LC_MESSAGES/kdevqthelp.mo share/locale/pl/LC_MESSAGES/kdevquickopen.mo share/locale/pl/LC_MESSAGES/kdevscratchpad.mo share/locale/pl/LC_MESSAGES/kdevsourceformatter.mo share/locale/pl/LC_MESSAGES/kdevstandardoutputview.mo share/locale/pl/LC_MESSAGES/kdevsubversion.mo share/locale/pl/LC_MESSAGES/kdevswitchtobuddy.mo share/locale/pl/LC_MESSAGES/kdevtestview.mo share/locale/pl/LC_MESSAGES/kdevvcsprojectintegration.mo share/locale/pl/LC_MESSAGES/kdevwelcomepage.mo share/locale/pl/LC_MESSAGES/plasma_applet_kdevelopsessions.mo share/locale/pl/LC_MESSAGES/plasma_runner_kdevelopsessions.mo share/locale/pt/LC_MESSAGES/kdevandroid.mo share/locale/pt/LC_MESSAGES/kdevappwizard.mo share/locale/pt/LC_MESSAGES/kdevastyle.mo share/locale/pt/LC_MESSAGES/kdevbazaar.mo share/locale/pt/LC_MESSAGES/kdevclang.mo share/locale/pt/LC_MESSAGES/kdevclangtidy.mo share/locale/pt/LC_MESSAGES/kdevclassbrowser.mo share/locale/pt/LC_MESSAGES/kdevclazy.mo share/locale/pt/LC_MESSAGES/kdevcmake.mo share/locale/pt/LC_MESSAGES/kdevcmakebuilder.mo share/locale/pt/LC_MESSAGES/kdevcodeutils.mo share/locale/pt/LC_MESSAGES/kdevcompileanalyzercommon.mo share/locale/pt/LC_MESSAGES/kdevcontextbrowser.mo share/locale/pt/LC_MESSAGES/kdevcppcheck.mo share/locale/pt/LC_MESSAGES/kdevcustombuildsystem.mo share/locale/pt/LC_MESSAGES/kdevcustomdefinesandincludes.mo share/locale/pt/LC_MESSAGES/kdevcustommake.mo share/locale/pt/LC_MESSAGES/kdevcustomscript.mo share/locale/pt/LC_MESSAGES/kdevdebuggercommon.mo share/locale/pt/LC_MESSAGES/kdevdocker.mo share/locale/pt/LC_MESSAGES/kdevdocumentswitcher.mo share/locale/pt/LC_MESSAGES/kdevdocumentview.mo share/locale/pt/LC_MESSAGES/kdevelop.mo share/locale/pt/LC_MESSAGES/kdevexecute.mo share/locale/pt/LC_MESSAGES/kdevexecuteplasmoid.mo share/locale/pt/LC_MESSAGES/kdevexecutescript.mo share/locale/pt/LC_MESSAGES/kdevexternalscript.mo share/locale/pt/LC_MESSAGES/kdevfilemanager.mo share/locale/pt/LC_MESSAGES/kdevfiletemplates.mo share/locale/pt/LC_MESSAGES/kdevflatpak.mo share/locale/pt/LC_MESSAGES/kdevgdb.mo share/locale/pt/LC_MESSAGES/kdevghprovider.mo share/locale/pt/LC_MESSAGES/kdevgit.mo share/locale/pt/LC_MESSAGES/kdevgrepview.mo share/locale/pt/LC_MESSAGES/kdevheaptrack.mo share/locale/pt/LC_MESSAGES/kdevkonsole.mo share/locale/pt/LC_MESSAGES/kdevlldb.mo share/locale/pt/LC_MESSAGES/kdevmakebuilder.mo share/locale/pt/LC_MESSAGES/kdevmanpage.mo share/locale/pt/LC_MESSAGES/kdevmesonmanager.mo share/locale/pt/LC_MESSAGES/kdevninja.mo share/locale/pt/LC_MESSAGES/kdevokteta.mo share/locale/pt/LC_MESSAGES/kdevopenwith.mo share/locale/pt/LC_MESSAGES/kdevoutlineview.mo share/locale/pt/LC_MESSAGES/kdevpatchreview.mo share/locale/pt/LC_MESSAGES/kdevperforce.mo share/locale/pt/LC_MESSAGES/kdevplatform.mo share/locale/pt/LC_MESSAGES/kdevproblemreporter.mo share/locale/pt/LC_MESSAGES/kdevprojectfilter.mo share/locale/pt/LC_MESSAGES/kdevprojectmanagerview.mo share/locale/pt/LC_MESSAGES/kdevqmakebuilder.mo share/locale/pt/LC_MESSAGES/kdevqmakemanager.mo share/locale/pt/LC_MESSAGES/kdevqmljs.mo share/locale/pt/LC_MESSAGES/kdevqthelp.mo share/locale/pt/LC_MESSAGES/kdevquickopen.mo share/locale/pt/LC_MESSAGES/kdevscratchpad.mo share/locale/pt/LC_MESSAGES/kdevsourceformatter.mo share/locale/pt/LC_MESSAGES/kdevstandardoutputview.mo share/locale/pt/LC_MESSAGES/kdevsubversion.mo share/locale/pt/LC_MESSAGES/kdevswitchtobuddy.mo share/locale/pt/LC_MESSAGES/kdevtestview.mo share/locale/pt/LC_MESSAGES/kdevvcsprojectintegration.mo share/locale/pt/LC_MESSAGES/kdevwelcomepage.mo share/locale/pt/LC_MESSAGES/plasma_applet_kdevelopsessions.mo share/locale/pt/LC_MESSAGES/plasma_runner_kdevelopsessions.mo share/locale/pt_BR/LC_MESSAGES/kdevandroid.mo share/locale/pt_BR/LC_MESSAGES/kdevappwizard.mo share/locale/pt_BR/LC_MESSAGES/kdevastyle.mo share/locale/pt_BR/LC_MESSAGES/kdevbazaar.mo share/locale/pt_BR/LC_MESSAGES/kdevclang.mo share/locale/pt_BR/LC_MESSAGES/kdevclangtidy.mo share/locale/pt_BR/LC_MESSAGES/kdevclassbrowser.mo share/locale/pt_BR/LC_MESSAGES/kdevclazy.mo share/locale/pt_BR/LC_MESSAGES/kdevcmake.mo share/locale/pt_BR/LC_MESSAGES/kdevcmakebuilder.mo share/locale/pt_BR/LC_MESSAGES/kdevcodeutils.mo share/locale/pt_BR/LC_MESSAGES/kdevcompileanalyzercommon.mo share/locale/pt_BR/LC_MESSAGES/kdevcontextbrowser.mo share/locale/pt_BR/LC_MESSAGES/kdevcppcheck.mo share/locale/pt_BR/LC_MESSAGES/kdevcustombuildsystem.mo share/locale/pt_BR/LC_MESSAGES/kdevcustomdefinesandincludes.mo share/locale/pt_BR/LC_MESSAGES/kdevcustommake.mo share/locale/pt_BR/LC_MESSAGES/kdevcustomscript.mo share/locale/pt_BR/LC_MESSAGES/kdevdebuggercommon.mo share/locale/pt_BR/LC_MESSAGES/kdevdocker.mo share/locale/pt_BR/LC_MESSAGES/kdevdocumentswitcher.mo share/locale/pt_BR/LC_MESSAGES/kdevdocumentview.mo share/locale/pt_BR/LC_MESSAGES/kdevelop.mo share/locale/pt_BR/LC_MESSAGES/kdevexecute.mo share/locale/pt_BR/LC_MESSAGES/kdevexecuteplasmoid.mo share/locale/pt_BR/LC_MESSAGES/kdevexecutescript.mo share/locale/pt_BR/LC_MESSAGES/kdevexternalscript.mo share/locale/pt_BR/LC_MESSAGES/kdevfilemanager.mo share/locale/pt_BR/LC_MESSAGES/kdevfiletemplates.mo share/locale/pt_BR/LC_MESSAGES/kdevflatpak.mo share/locale/pt_BR/LC_MESSAGES/kdevgdb.mo share/locale/pt_BR/LC_MESSAGES/kdevghprovider.mo share/locale/pt_BR/LC_MESSAGES/kdevgit.mo share/locale/pt_BR/LC_MESSAGES/kdevgrepview.mo share/locale/pt_BR/LC_MESSAGES/kdevheaptrack.mo share/locale/pt_BR/LC_MESSAGES/kdevkonsole.mo share/locale/pt_BR/LC_MESSAGES/kdevlldb.mo share/locale/pt_BR/LC_MESSAGES/kdevmakebuilder.mo share/locale/pt_BR/LC_MESSAGES/kdevmanpage.mo share/locale/pt_BR/LC_MESSAGES/kdevmesonmanager.mo share/locale/pt_BR/LC_MESSAGES/kdevninja.mo share/locale/pt_BR/LC_MESSAGES/kdevokteta.mo share/locale/pt_BR/LC_MESSAGES/kdevopenwith.mo share/locale/pt_BR/LC_MESSAGES/kdevoutlineview.mo share/locale/pt_BR/LC_MESSAGES/kdevpatchreview.mo share/locale/pt_BR/LC_MESSAGES/kdevperforce.mo share/locale/pt_BR/LC_MESSAGES/kdevplatform.mo share/locale/pt_BR/LC_MESSAGES/kdevproblemreporter.mo share/locale/pt_BR/LC_MESSAGES/kdevprojectfilter.mo share/locale/pt_BR/LC_MESSAGES/kdevprojectmanagerview.mo share/locale/pt_BR/LC_MESSAGES/kdevqmakebuilder.mo share/locale/pt_BR/LC_MESSAGES/kdevqmakemanager.mo share/locale/pt_BR/LC_MESSAGES/kdevqmljs.mo share/locale/pt_BR/LC_MESSAGES/kdevqthelp.mo share/locale/pt_BR/LC_MESSAGES/kdevquickopen.mo share/locale/pt_BR/LC_MESSAGES/kdevscratchpad.mo share/locale/pt_BR/LC_MESSAGES/kdevsourceformatter.mo share/locale/pt_BR/LC_MESSAGES/kdevstandardoutputview.mo share/locale/pt_BR/LC_MESSAGES/kdevsubversion.mo share/locale/pt_BR/LC_MESSAGES/kdevswitchtobuddy.mo share/locale/pt_BR/LC_MESSAGES/kdevtestview.mo share/locale/pt_BR/LC_MESSAGES/kdevvcsprojectintegration.mo share/locale/pt_BR/LC_MESSAGES/kdevwelcomepage.mo share/locale/pt_BR/LC_MESSAGES/plasma_applet_kdevelopsessions.mo share/locale/pt_BR/LC_MESSAGES/plasma_runner_kdevelopsessions.mo share/locale/ro/LC_MESSAGES/kdevappwizard.mo share/locale/ro/LC_MESSAGES/kdevastyle.mo share/locale/ro/LC_MESSAGES/kdevbazaar.mo share/locale/ro/LC_MESSAGES/kdevclassbrowser.mo share/locale/ro/LC_MESSAGES/kdevcmake.mo share/locale/ro/LC_MESSAGES/kdevcmakebuilder.mo share/locale/ro/LC_MESSAGES/kdevcontextbrowser.mo share/locale/ro/LC_MESSAGES/kdevcustommake.mo share/locale/ro/LC_MESSAGES/kdevcustomscript.mo share/locale/ro/LC_MESSAGES/kdevdebuggercommon.mo share/locale/ro/LC_MESSAGES/kdevdocumentswitcher.mo share/locale/ro/LC_MESSAGES/kdevdocumentview.mo share/locale/ro/LC_MESSAGES/kdevelop.mo share/locale/ro/LC_MESSAGES/kdevexecute.mo share/locale/ro/LC_MESSAGES/kdevfilemanager.mo share/locale/ro/LC_MESSAGES/kdevgdb.mo share/locale/ro/LC_MESSAGES/kdevgit.mo share/locale/ro/LC_MESSAGES/kdevgrepview.mo share/locale/ro/LC_MESSAGES/kdevkonsole.mo share/locale/ro/LC_MESSAGES/kdevmakebuilder.mo share/locale/ro/LC_MESSAGES/kdevopenwith.mo share/locale/ro/LC_MESSAGES/kdevpatchreview.mo share/locale/ro/LC_MESSAGES/kdevplatform.mo share/locale/ro/LC_MESSAGES/kdevproblemreporter.mo share/locale/ro/LC_MESSAGES/kdevprojectmanagerview.mo share/locale/ro/LC_MESSAGES/kdevqmakebuilder.mo share/locale/ro/LC_MESSAGES/kdevqmakemanager.mo share/locale/ro/LC_MESSAGES/kdevqthelp.mo share/locale/ro/LC_MESSAGES/kdevquickopen.mo share/locale/ro/LC_MESSAGES/kdevsourceformatter.mo share/locale/ro/LC_MESSAGES/kdevstandardoutputview.mo share/locale/ro/LC_MESSAGES/kdevsubversion.mo share/locale/ru/LC_MESSAGES/kdevandroid.mo share/locale/ru/LC_MESSAGES/kdevappwizard.mo share/locale/ru/LC_MESSAGES/kdevastyle.mo share/locale/ru/LC_MESSAGES/kdevbazaar.mo share/locale/ru/LC_MESSAGES/kdevclang.mo share/locale/ru/LC_MESSAGES/kdevclangtidy.mo share/locale/ru/LC_MESSAGES/kdevclassbrowser.mo share/locale/ru/LC_MESSAGES/kdevclazy.mo share/locale/ru/LC_MESSAGES/kdevcmake.mo share/locale/ru/LC_MESSAGES/kdevcmakebuilder.mo share/locale/ru/LC_MESSAGES/kdevcodeutils.mo +share/locale/ru/LC_MESSAGES/kdevcompileanalyzercommon.mo share/locale/ru/LC_MESSAGES/kdevcontextbrowser.mo share/locale/ru/LC_MESSAGES/kdevcppcheck.mo share/locale/ru/LC_MESSAGES/kdevcustombuildsystem.mo share/locale/ru/LC_MESSAGES/kdevcustomdefinesandincludes.mo share/locale/ru/LC_MESSAGES/kdevcustommake.mo share/locale/ru/LC_MESSAGES/kdevcustomscript.mo share/locale/ru/LC_MESSAGES/kdevdebuggercommon.mo share/locale/ru/LC_MESSAGES/kdevdocumentswitcher.mo share/locale/ru/LC_MESSAGES/kdevdocumentview.mo share/locale/ru/LC_MESSAGES/kdevelop.mo share/locale/ru/LC_MESSAGES/kdevexecute.mo share/locale/ru/LC_MESSAGES/kdevexecuteplasmoid.mo share/locale/ru/LC_MESSAGES/kdevexecutescript.mo share/locale/ru/LC_MESSAGES/kdevexternalscript.mo share/locale/ru/LC_MESSAGES/kdevfilemanager.mo share/locale/ru/LC_MESSAGES/kdevfiletemplates.mo share/locale/ru/LC_MESSAGES/kdevgdb.mo share/locale/ru/LC_MESSAGES/kdevghprovider.mo share/locale/ru/LC_MESSAGES/kdevgit.mo share/locale/ru/LC_MESSAGES/kdevgrepview.mo share/locale/ru/LC_MESSAGES/kdevheaptrack.mo share/locale/ru/LC_MESSAGES/kdevkonsole.mo share/locale/ru/LC_MESSAGES/kdevlldb.mo share/locale/ru/LC_MESSAGES/kdevmakebuilder.mo share/locale/ru/LC_MESSAGES/kdevmanpage.mo share/locale/ru/LC_MESSAGES/kdevmesonmanager.mo share/locale/ru/LC_MESSAGES/kdevninja.mo share/locale/ru/LC_MESSAGES/kdevokteta.mo share/locale/ru/LC_MESSAGES/kdevopenwith.mo share/locale/ru/LC_MESSAGES/kdevoutlineview.mo share/locale/ru/LC_MESSAGES/kdevpatchreview.mo share/locale/ru/LC_MESSAGES/kdevperforce.mo share/locale/ru/LC_MESSAGES/kdevplatform.mo share/locale/ru/LC_MESSAGES/kdevproblemreporter.mo share/locale/ru/LC_MESSAGES/kdevprojectfilter.mo share/locale/ru/LC_MESSAGES/kdevprojectmanagerview.mo share/locale/ru/LC_MESSAGES/kdevqmakebuilder.mo share/locale/ru/LC_MESSAGES/kdevqmakemanager.mo share/locale/ru/LC_MESSAGES/kdevqmljs.mo share/locale/ru/LC_MESSAGES/kdevqthelp.mo share/locale/ru/LC_MESSAGES/kdevquickopen.mo share/locale/ru/LC_MESSAGES/kdevscratchpad.mo share/locale/ru/LC_MESSAGES/kdevstandardoutputview.mo share/locale/ru/LC_MESSAGES/kdevsubversion.mo share/locale/ru/LC_MESSAGES/kdevswitchtobuddy.mo share/locale/ru/LC_MESSAGES/kdevtestview.mo share/locale/ru/LC_MESSAGES/kdevvcsprojectintegration.mo share/locale/ru/LC_MESSAGES/kdevwelcomepage.mo share/locale/ru/LC_MESSAGES/plasma_applet_kdevelopsessions.mo share/locale/ru/LC_MESSAGES/plasma_runner_kdevelopsessions.mo share/locale/se/LC_MESSAGES/kdevelop.mo share/locale/sk/LC_MESSAGES/kdevandroid.mo share/locale/sk/LC_MESSAGES/kdevappwizard.mo share/locale/sk/LC_MESSAGES/kdevastyle.mo share/locale/sk/LC_MESSAGES/kdevbazaar.mo share/locale/sk/LC_MESSAGES/kdevclang.mo share/locale/sk/LC_MESSAGES/kdevclangtidy.mo share/locale/sk/LC_MESSAGES/kdevclassbrowser.mo share/locale/sk/LC_MESSAGES/kdevclazy.mo share/locale/sk/LC_MESSAGES/kdevcmake.mo share/locale/sk/LC_MESSAGES/kdevcmakebuilder.mo share/locale/sk/LC_MESSAGES/kdevcodeutils.mo share/locale/sk/LC_MESSAGES/kdevcompileanalyzercommon.mo share/locale/sk/LC_MESSAGES/kdevcontextbrowser.mo share/locale/sk/LC_MESSAGES/kdevcppcheck.mo share/locale/sk/LC_MESSAGES/kdevcustombuildsystem.mo share/locale/sk/LC_MESSAGES/kdevcustomdefinesandincludes.mo share/locale/sk/LC_MESSAGES/kdevcustommake.mo share/locale/sk/LC_MESSAGES/kdevcustomscript.mo share/locale/sk/LC_MESSAGES/kdevdebuggercommon.mo share/locale/sk/LC_MESSAGES/kdevdocker.mo share/locale/sk/LC_MESSAGES/kdevdocumentswitcher.mo share/locale/sk/LC_MESSAGES/kdevdocumentview.mo share/locale/sk/LC_MESSAGES/kdevelop.mo share/locale/sk/LC_MESSAGES/kdevexecute.mo share/locale/sk/LC_MESSAGES/kdevexecuteplasmoid.mo share/locale/sk/LC_MESSAGES/kdevexecutescript.mo share/locale/sk/LC_MESSAGES/kdevexternalscript.mo share/locale/sk/LC_MESSAGES/kdevfilemanager.mo share/locale/sk/LC_MESSAGES/kdevfiletemplates.mo share/locale/sk/LC_MESSAGES/kdevflatpak.mo share/locale/sk/LC_MESSAGES/kdevgdb.mo share/locale/sk/LC_MESSAGES/kdevghprovider.mo share/locale/sk/LC_MESSAGES/kdevgit.mo share/locale/sk/LC_MESSAGES/kdevgrepview.mo share/locale/sk/LC_MESSAGES/kdevheaptrack.mo share/locale/sk/LC_MESSAGES/kdevkonsole.mo share/locale/sk/LC_MESSAGES/kdevlldb.mo share/locale/sk/LC_MESSAGES/kdevmakebuilder.mo share/locale/sk/LC_MESSAGES/kdevmanpage.mo share/locale/sk/LC_MESSAGES/kdevmesonmanager.mo share/locale/sk/LC_MESSAGES/kdevninja.mo share/locale/sk/LC_MESSAGES/kdevokteta.mo share/locale/sk/LC_MESSAGES/kdevopenwith.mo share/locale/sk/LC_MESSAGES/kdevoutlineview.mo share/locale/sk/LC_MESSAGES/kdevpatchreview.mo share/locale/sk/LC_MESSAGES/kdevperforce.mo share/locale/sk/LC_MESSAGES/kdevplatform.mo share/locale/sk/LC_MESSAGES/kdevproblemreporter.mo share/locale/sk/LC_MESSAGES/kdevprojectfilter.mo share/locale/sk/LC_MESSAGES/kdevprojectmanagerview.mo share/locale/sk/LC_MESSAGES/kdevqmakebuilder.mo share/locale/sk/LC_MESSAGES/kdevqmakemanager.mo share/locale/sk/LC_MESSAGES/kdevqmljs.mo share/locale/sk/LC_MESSAGES/kdevqthelp.mo share/locale/sk/LC_MESSAGES/kdevquickopen.mo share/locale/sk/LC_MESSAGES/kdevscratchpad.mo share/locale/sk/LC_MESSAGES/kdevsourceformatter.mo share/locale/sk/LC_MESSAGES/kdevstandardoutputview.mo share/locale/sk/LC_MESSAGES/kdevsubversion.mo share/locale/sk/LC_MESSAGES/kdevswitchtobuddy.mo share/locale/sk/LC_MESSAGES/kdevtestview.mo share/locale/sk/LC_MESSAGES/kdevvcsprojectintegration.mo share/locale/sk/LC_MESSAGES/kdevwelcomepage.mo share/locale/sk/LC_MESSAGES/plasma_applet_kdevelopsessions.mo share/locale/sk/LC_MESSAGES/plasma_runner_kdevelopsessions.mo share/locale/sl/LC_MESSAGES/kdevandroid.mo share/locale/sl/LC_MESSAGES/kdevappwizard.mo share/locale/sl/LC_MESSAGES/kdevastyle.mo share/locale/sl/LC_MESSAGES/kdevbazaar.mo share/locale/sl/LC_MESSAGES/kdevclang.mo share/locale/sl/LC_MESSAGES/kdevclangtidy.mo share/locale/sl/LC_MESSAGES/kdevclassbrowser.mo share/locale/sl/LC_MESSAGES/kdevclazy.mo share/locale/sl/LC_MESSAGES/kdevcmake.mo share/locale/sl/LC_MESSAGES/kdevcmakebuilder.mo share/locale/sl/LC_MESSAGES/kdevcodeutils.mo share/locale/sl/LC_MESSAGES/kdevcompileanalyzercommon.mo share/locale/sl/LC_MESSAGES/kdevcontextbrowser.mo share/locale/sl/LC_MESSAGES/kdevcppcheck.mo share/locale/sl/LC_MESSAGES/kdevcustombuildsystem.mo share/locale/sl/LC_MESSAGES/kdevcustomdefinesandincludes.mo share/locale/sl/LC_MESSAGES/kdevcustommake.mo share/locale/sl/LC_MESSAGES/kdevcustomscript.mo share/locale/sl/LC_MESSAGES/kdevdebuggercommon.mo share/locale/sl/LC_MESSAGES/kdevdocker.mo share/locale/sl/LC_MESSAGES/kdevdocumentswitcher.mo share/locale/sl/LC_MESSAGES/kdevdocumentview.mo share/locale/sl/LC_MESSAGES/kdevelop.mo share/locale/sl/LC_MESSAGES/kdevexecute.mo share/locale/sl/LC_MESSAGES/kdevexecuteplasmoid.mo share/locale/sl/LC_MESSAGES/kdevexecutescript.mo share/locale/sl/LC_MESSAGES/kdevexternalscript.mo share/locale/sl/LC_MESSAGES/kdevfilemanager.mo share/locale/sl/LC_MESSAGES/kdevfiletemplates.mo share/locale/sl/LC_MESSAGES/kdevflatpak.mo share/locale/sl/LC_MESSAGES/kdevgdb.mo share/locale/sl/LC_MESSAGES/kdevghprovider.mo share/locale/sl/LC_MESSAGES/kdevgit.mo share/locale/sl/LC_MESSAGES/kdevgrepview.mo share/locale/sl/LC_MESSAGES/kdevheaptrack.mo share/locale/sl/LC_MESSAGES/kdevkonsole.mo share/locale/sl/LC_MESSAGES/kdevlldb.mo share/locale/sl/LC_MESSAGES/kdevmakebuilder.mo share/locale/sl/LC_MESSAGES/kdevmanpage.mo share/locale/sl/LC_MESSAGES/kdevmesonmanager.mo share/locale/sl/LC_MESSAGES/kdevninja.mo share/locale/sl/LC_MESSAGES/kdevokteta.mo share/locale/sl/LC_MESSAGES/kdevopenwith.mo share/locale/sl/LC_MESSAGES/kdevoutlineview.mo share/locale/sl/LC_MESSAGES/kdevpatchreview.mo share/locale/sl/LC_MESSAGES/kdevperforce.mo share/locale/sl/LC_MESSAGES/kdevplatform.mo share/locale/sl/LC_MESSAGES/kdevproblemreporter.mo share/locale/sl/LC_MESSAGES/kdevprojectfilter.mo share/locale/sl/LC_MESSAGES/kdevprojectmanagerview.mo share/locale/sl/LC_MESSAGES/kdevqmakebuilder.mo share/locale/sl/LC_MESSAGES/kdevqmakemanager.mo share/locale/sl/LC_MESSAGES/kdevqmljs.mo share/locale/sl/LC_MESSAGES/kdevqthelp.mo share/locale/sl/LC_MESSAGES/kdevquickopen.mo share/locale/sl/LC_MESSAGES/kdevscratchpad.mo share/locale/sl/LC_MESSAGES/kdevsourceformatter.mo share/locale/sl/LC_MESSAGES/kdevstandardoutputview.mo share/locale/sl/LC_MESSAGES/kdevsubversion.mo share/locale/sl/LC_MESSAGES/kdevswitchtobuddy.mo share/locale/sl/LC_MESSAGES/kdevtestview.mo share/locale/sl/LC_MESSAGES/kdevvcsprojectintegration.mo share/locale/sl/LC_MESSAGES/kdevwelcomepage.mo share/locale/sl/LC_MESSAGES/plasma_applet_kdevelopsessions.mo share/locale/sl/LC_MESSAGES/plasma_runner_kdevelopsessions.mo share/locale/sv/LC_MESSAGES/kdevandroid.mo share/locale/sv/LC_MESSAGES/kdevappwizard.mo share/locale/sv/LC_MESSAGES/kdevastyle.mo share/locale/sv/LC_MESSAGES/kdevbazaar.mo share/locale/sv/LC_MESSAGES/kdevclang.mo share/locale/sv/LC_MESSAGES/kdevclangtidy.mo share/locale/sv/LC_MESSAGES/kdevclassbrowser.mo share/locale/sv/LC_MESSAGES/kdevclazy.mo share/locale/sv/LC_MESSAGES/kdevcmake.mo share/locale/sv/LC_MESSAGES/kdevcmakebuilder.mo share/locale/sv/LC_MESSAGES/kdevcodeutils.mo share/locale/sv/LC_MESSAGES/kdevcompileanalyzercommon.mo share/locale/sv/LC_MESSAGES/kdevcontextbrowser.mo share/locale/sv/LC_MESSAGES/kdevcppcheck.mo share/locale/sv/LC_MESSAGES/kdevcustombuildsystem.mo share/locale/sv/LC_MESSAGES/kdevcustomdefinesandincludes.mo share/locale/sv/LC_MESSAGES/kdevcustommake.mo share/locale/sv/LC_MESSAGES/kdevcustomscript.mo share/locale/sv/LC_MESSAGES/kdevdebuggercommon.mo share/locale/sv/LC_MESSAGES/kdevdocker.mo share/locale/sv/LC_MESSAGES/kdevdocumentswitcher.mo share/locale/sv/LC_MESSAGES/kdevdocumentview.mo share/locale/sv/LC_MESSAGES/kdevelop.mo share/locale/sv/LC_MESSAGES/kdevexecute.mo share/locale/sv/LC_MESSAGES/kdevexecuteplasmoid.mo share/locale/sv/LC_MESSAGES/kdevexecutescript.mo share/locale/sv/LC_MESSAGES/kdevexternalscript.mo share/locale/sv/LC_MESSAGES/kdevfilemanager.mo share/locale/sv/LC_MESSAGES/kdevfiletemplates.mo share/locale/sv/LC_MESSAGES/kdevflatpak.mo share/locale/sv/LC_MESSAGES/kdevgdb.mo share/locale/sv/LC_MESSAGES/kdevghprovider.mo share/locale/sv/LC_MESSAGES/kdevgit.mo share/locale/sv/LC_MESSAGES/kdevgrepview.mo share/locale/sv/LC_MESSAGES/kdevheaptrack.mo share/locale/sv/LC_MESSAGES/kdevkonsole.mo share/locale/sv/LC_MESSAGES/kdevlldb.mo share/locale/sv/LC_MESSAGES/kdevmakebuilder.mo share/locale/sv/LC_MESSAGES/kdevmanpage.mo share/locale/sv/LC_MESSAGES/kdevmesonmanager.mo share/locale/sv/LC_MESSAGES/kdevninja.mo share/locale/sv/LC_MESSAGES/kdevokteta.mo share/locale/sv/LC_MESSAGES/kdevopenwith.mo share/locale/sv/LC_MESSAGES/kdevoutlineview.mo share/locale/sv/LC_MESSAGES/kdevpatchreview.mo share/locale/sv/LC_MESSAGES/kdevperforce.mo share/locale/sv/LC_MESSAGES/kdevplatform.mo share/locale/sv/LC_MESSAGES/kdevproblemreporter.mo share/locale/sv/LC_MESSAGES/kdevprojectfilter.mo share/locale/sv/LC_MESSAGES/kdevprojectmanagerview.mo share/locale/sv/LC_MESSAGES/kdevqmakebuilder.mo share/locale/sv/LC_MESSAGES/kdevqmakemanager.mo share/locale/sv/LC_MESSAGES/kdevqmljs.mo share/locale/sv/LC_MESSAGES/kdevqthelp.mo share/locale/sv/LC_MESSAGES/kdevquickopen.mo share/locale/sv/LC_MESSAGES/kdevscratchpad.mo share/locale/sv/LC_MESSAGES/kdevsourceformatter.mo share/locale/sv/LC_MESSAGES/kdevstandardoutputview.mo share/locale/sv/LC_MESSAGES/kdevsubversion.mo share/locale/sv/LC_MESSAGES/kdevswitchtobuddy.mo share/locale/sv/LC_MESSAGES/kdevtestview.mo share/locale/sv/LC_MESSAGES/kdevvcsprojectintegration.mo share/locale/sv/LC_MESSAGES/kdevwelcomepage.mo share/locale/sv/LC_MESSAGES/plasma_applet_kdevelopsessions.mo share/locale/sv/LC_MESSAGES/plasma_runner_kdevelopsessions.mo share/locale/ta/LC_MESSAGES/kdevelop.mo share/locale/tg/LC_MESSAGES/kdevelop.mo share/locale/tg/LC_MESSAGES/kdevplatform.mo share/locale/th/LC_MESSAGES/kdevappwizard.mo share/locale/th/LC_MESSAGES/kdevcustommake.mo share/locale/th/LC_MESSAGES/kdevkonsole.mo share/locale/th/LC_MESSAGES/kdevstandardoutputview.mo share/locale/tr/LC_MESSAGES/kdevandroid.mo share/locale/tr/LC_MESSAGES/kdevappwizard.mo share/locale/tr/LC_MESSAGES/kdevastyle.mo share/locale/tr/LC_MESSAGES/kdevbazaar.mo share/locale/tr/LC_MESSAGES/kdevclang.mo share/locale/tr/LC_MESSAGES/kdevclangtidy.mo share/locale/tr/LC_MESSAGES/kdevclassbrowser.mo share/locale/tr/LC_MESSAGES/kdevclazy.mo share/locale/tr/LC_MESSAGES/kdevcmake.mo share/locale/tr/LC_MESSAGES/kdevcmakebuilder.mo share/locale/tr/LC_MESSAGES/kdevcodeutils.mo share/locale/tr/LC_MESSAGES/kdevcompileanalyzercommon.mo share/locale/tr/LC_MESSAGES/kdevcontextbrowser.mo share/locale/tr/LC_MESSAGES/kdevcppcheck.mo share/locale/tr/LC_MESSAGES/kdevcustombuildsystem.mo share/locale/tr/LC_MESSAGES/kdevcustomdefinesandincludes.mo share/locale/tr/LC_MESSAGES/kdevcustommake.mo share/locale/tr/LC_MESSAGES/kdevcustomscript.mo share/locale/tr/LC_MESSAGES/kdevdebuggercommon.mo share/locale/tr/LC_MESSAGES/kdevdocker.mo share/locale/tr/LC_MESSAGES/kdevdocumentswitcher.mo share/locale/tr/LC_MESSAGES/kdevdocumentview.mo share/locale/tr/LC_MESSAGES/kdevelop.mo share/locale/tr/LC_MESSAGES/kdevexecute.mo share/locale/tr/LC_MESSAGES/kdevexecuteplasmoid.mo share/locale/tr/LC_MESSAGES/kdevexecutescript.mo share/locale/tr/LC_MESSAGES/kdevexternalscript.mo share/locale/tr/LC_MESSAGES/kdevfilemanager.mo share/locale/tr/LC_MESSAGES/kdevfiletemplates.mo share/locale/tr/LC_MESSAGES/kdevflatpak.mo share/locale/tr/LC_MESSAGES/kdevgdb.mo share/locale/tr/LC_MESSAGES/kdevghprovider.mo share/locale/tr/LC_MESSAGES/kdevgit.mo share/locale/tr/LC_MESSAGES/kdevgrepview.mo share/locale/tr/LC_MESSAGES/kdevheaptrack.mo share/locale/tr/LC_MESSAGES/kdevkonsole.mo share/locale/tr/LC_MESSAGES/kdevlldb.mo share/locale/tr/LC_MESSAGES/kdevmakebuilder.mo share/locale/tr/LC_MESSAGES/kdevmanpage.mo share/locale/tr/LC_MESSAGES/kdevmesonmanager.mo share/locale/tr/LC_MESSAGES/kdevninja.mo share/locale/tr/LC_MESSAGES/kdevokteta.mo share/locale/tr/LC_MESSAGES/kdevopenwith.mo share/locale/tr/LC_MESSAGES/kdevoutlineview.mo share/locale/tr/LC_MESSAGES/kdevpatchreview.mo share/locale/tr/LC_MESSAGES/kdevperforce.mo share/locale/tr/LC_MESSAGES/kdevplatform.mo share/locale/tr/LC_MESSAGES/kdevproblemreporter.mo share/locale/tr/LC_MESSAGES/kdevprojectfilter.mo share/locale/tr/LC_MESSAGES/kdevprojectmanagerview.mo share/locale/tr/LC_MESSAGES/kdevqmakebuilder.mo share/locale/tr/LC_MESSAGES/kdevqmakemanager.mo share/locale/tr/LC_MESSAGES/kdevqmljs.mo share/locale/tr/LC_MESSAGES/kdevqthelp.mo share/locale/tr/LC_MESSAGES/kdevquickopen.mo share/locale/tr/LC_MESSAGES/kdevscratchpad.mo share/locale/tr/LC_MESSAGES/kdevsourceformatter.mo share/locale/tr/LC_MESSAGES/kdevstandardoutputview.mo share/locale/tr/LC_MESSAGES/kdevsubversion.mo share/locale/tr/LC_MESSAGES/kdevswitchtobuddy.mo share/locale/tr/LC_MESSAGES/kdevtestview.mo share/locale/tr/LC_MESSAGES/kdevvcsprojectintegration.mo share/locale/tr/LC_MESSAGES/kdevwelcomepage.mo share/locale/tr/LC_MESSAGES/plasma_applet_kdevelopsessions.mo share/locale/tr/LC_MESSAGES/plasma_runner_kdevelopsessions.mo share/locale/ug/LC_MESSAGES/kdevappwizard.mo share/locale/ug/LC_MESSAGES/kdevbazaar.mo share/locale/ug/LC_MESSAGES/kdevclassbrowser.mo share/locale/ug/LC_MESSAGES/kdevcmake.mo share/locale/ug/LC_MESSAGES/kdevcmakebuilder.mo share/locale/ug/LC_MESSAGES/kdevcodeutils.mo share/locale/ug/LC_MESSAGES/kdevcontextbrowser.mo share/locale/ug/LC_MESSAGES/kdevcustombuildsystem.mo share/locale/ug/LC_MESSAGES/kdevcustommake.mo share/locale/ug/LC_MESSAGES/kdevdebuggercommon.mo share/locale/ug/LC_MESSAGES/kdevdocumentswitcher.mo share/locale/ug/LC_MESSAGES/kdevdocumentview.mo share/locale/ug/LC_MESSAGES/kdevelop.mo share/locale/ug/LC_MESSAGES/kdevexecute.mo share/locale/ug/LC_MESSAGES/kdevexecuteplasmoid.mo share/locale/ug/LC_MESSAGES/kdevexecutescript.mo share/locale/ug/LC_MESSAGES/kdevexternalscript.mo share/locale/ug/LC_MESSAGES/kdevfilemanager.mo share/locale/ug/LC_MESSAGES/kdevfiletemplates.mo share/locale/ug/LC_MESSAGES/kdevgdb.mo share/locale/ug/LC_MESSAGES/kdevgit.mo share/locale/ug/LC_MESSAGES/kdevgrepview.mo share/locale/ug/LC_MESSAGES/kdevkonsole.mo share/locale/ug/LC_MESSAGES/kdevmakebuilder.mo share/locale/ug/LC_MESSAGES/kdevmanpage.mo share/locale/ug/LC_MESSAGES/kdevninja.mo share/locale/ug/LC_MESSAGES/kdevokteta.mo share/locale/ug/LC_MESSAGES/kdevopenwith.mo share/locale/ug/LC_MESSAGES/kdevpatchreview.mo share/locale/ug/LC_MESSAGES/kdevperforce.mo share/locale/ug/LC_MESSAGES/kdevplatform.mo share/locale/ug/LC_MESSAGES/kdevproblemreporter.mo share/locale/ug/LC_MESSAGES/kdevprojectmanagerview.mo share/locale/ug/LC_MESSAGES/kdevqmakebuilder.mo share/locale/ug/LC_MESSAGES/kdevqmakemanager.mo share/locale/ug/LC_MESSAGES/kdevqmljs.mo share/locale/ug/LC_MESSAGES/kdevqthelp.mo share/locale/ug/LC_MESSAGES/kdevquickopen.mo share/locale/ug/LC_MESSAGES/kdevstandardoutputview.mo share/locale/ug/LC_MESSAGES/kdevsubversion.mo share/locale/ug/LC_MESSAGES/kdevswitchtobuddy.mo share/locale/ug/LC_MESSAGES/kdevtestview.mo share/locale/ug/LC_MESSAGES/kdevvcsprojectintegration.mo share/locale/ug/LC_MESSAGES/plasma_applet_kdevelopsessions.mo share/locale/ug/LC_MESSAGES/plasma_runner_kdevelopsessions.mo share/locale/uk/LC_MESSAGES/kdevandroid.mo share/locale/uk/LC_MESSAGES/kdevappwizard.mo share/locale/uk/LC_MESSAGES/kdevastyle.mo share/locale/uk/LC_MESSAGES/kdevbazaar.mo share/locale/uk/LC_MESSAGES/kdevclang.mo share/locale/uk/LC_MESSAGES/kdevclangtidy.mo share/locale/uk/LC_MESSAGES/kdevclassbrowser.mo share/locale/uk/LC_MESSAGES/kdevclazy.mo share/locale/uk/LC_MESSAGES/kdevcmake.mo share/locale/uk/LC_MESSAGES/kdevcmakebuilder.mo share/locale/uk/LC_MESSAGES/kdevcodeutils.mo share/locale/uk/LC_MESSAGES/kdevcompileanalyzercommon.mo share/locale/uk/LC_MESSAGES/kdevcontextbrowser.mo share/locale/uk/LC_MESSAGES/kdevcppcheck.mo share/locale/uk/LC_MESSAGES/kdevcustombuildsystem.mo share/locale/uk/LC_MESSAGES/kdevcustomdefinesandincludes.mo share/locale/uk/LC_MESSAGES/kdevcustommake.mo share/locale/uk/LC_MESSAGES/kdevcustomscript.mo share/locale/uk/LC_MESSAGES/kdevdebuggercommon.mo share/locale/uk/LC_MESSAGES/kdevdocker.mo share/locale/uk/LC_MESSAGES/kdevdocumentswitcher.mo share/locale/uk/LC_MESSAGES/kdevdocumentview.mo share/locale/uk/LC_MESSAGES/kdevelop.mo share/locale/uk/LC_MESSAGES/kdevexecute.mo share/locale/uk/LC_MESSAGES/kdevexecuteplasmoid.mo share/locale/uk/LC_MESSAGES/kdevexecutescript.mo share/locale/uk/LC_MESSAGES/kdevexternalscript.mo share/locale/uk/LC_MESSAGES/kdevfilemanager.mo share/locale/uk/LC_MESSAGES/kdevfiletemplates.mo share/locale/uk/LC_MESSAGES/kdevflatpak.mo share/locale/uk/LC_MESSAGES/kdevgdb.mo share/locale/uk/LC_MESSAGES/kdevghprovider.mo share/locale/uk/LC_MESSAGES/kdevgit.mo share/locale/uk/LC_MESSAGES/kdevgrepview.mo share/locale/uk/LC_MESSAGES/kdevheaptrack.mo share/locale/uk/LC_MESSAGES/kdevkonsole.mo share/locale/uk/LC_MESSAGES/kdevlldb.mo share/locale/uk/LC_MESSAGES/kdevmakebuilder.mo share/locale/uk/LC_MESSAGES/kdevmanpage.mo share/locale/uk/LC_MESSAGES/kdevmesonmanager.mo share/locale/uk/LC_MESSAGES/kdevninja.mo share/locale/uk/LC_MESSAGES/kdevokteta.mo share/locale/uk/LC_MESSAGES/kdevopenwith.mo share/locale/uk/LC_MESSAGES/kdevoutlineview.mo share/locale/uk/LC_MESSAGES/kdevpatchreview.mo share/locale/uk/LC_MESSAGES/kdevperforce.mo share/locale/uk/LC_MESSAGES/kdevplatform.mo share/locale/uk/LC_MESSAGES/kdevproblemreporter.mo share/locale/uk/LC_MESSAGES/kdevprojectfilter.mo share/locale/uk/LC_MESSAGES/kdevprojectmanagerview.mo share/locale/uk/LC_MESSAGES/kdevqmakebuilder.mo share/locale/uk/LC_MESSAGES/kdevqmakemanager.mo share/locale/uk/LC_MESSAGES/kdevqmljs.mo share/locale/uk/LC_MESSAGES/kdevqthelp.mo share/locale/uk/LC_MESSAGES/kdevquickopen.mo share/locale/uk/LC_MESSAGES/kdevscratchpad.mo share/locale/uk/LC_MESSAGES/kdevsourceformatter.mo share/locale/uk/LC_MESSAGES/kdevstandardoutputview.mo share/locale/uk/LC_MESSAGES/kdevsubversion.mo share/locale/uk/LC_MESSAGES/kdevswitchtobuddy.mo share/locale/uk/LC_MESSAGES/kdevtestview.mo share/locale/uk/LC_MESSAGES/kdevvcsprojectintegration.mo share/locale/uk/LC_MESSAGES/kdevwelcomepage.mo share/locale/uk/LC_MESSAGES/plasma_applet_kdevelopsessions.mo share/locale/uk/LC_MESSAGES/plasma_runner_kdevelopsessions.mo share/locale/vi/LC_MESSAGES/plasma_applet_kdevelopsessions.mo share/locale/vi/LC_MESSAGES/plasma_runner_kdevelopsessions.mo share/locale/xh/LC_MESSAGES/kdevelop.mo share/locale/zh_CN/LC_MESSAGES/kdevandroid.mo share/locale/zh_CN/LC_MESSAGES/kdevappwizard.mo share/locale/zh_CN/LC_MESSAGES/kdevastyle.mo share/locale/zh_CN/LC_MESSAGES/kdevbazaar.mo share/locale/zh_CN/LC_MESSAGES/kdevclang.mo share/locale/zh_CN/LC_MESSAGES/kdevclangtidy.mo share/locale/zh_CN/LC_MESSAGES/kdevclassbrowser.mo share/locale/zh_CN/LC_MESSAGES/kdevclazy.mo share/locale/zh_CN/LC_MESSAGES/kdevcmake.mo share/locale/zh_CN/LC_MESSAGES/kdevcmakebuilder.mo share/locale/zh_CN/LC_MESSAGES/kdevcodeutils.mo share/locale/zh_CN/LC_MESSAGES/kdevcompileanalyzercommon.mo share/locale/zh_CN/LC_MESSAGES/kdevcontextbrowser.mo share/locale/zh_CN/LC_MESSAGES/kdevcppcheck.mo share/locale/zh_CN/LC_MESSAGES/kdevcustombuildsystem.mo share/locale/zh_CN/LC_MESSAGES/kdevcustomdefinesandincludes.mo share/locale/zh_CN/LC_MESSAGES/kdevcustommake.mo share/locale/zh_CN/LC_MESSAGES/kdevcustomscript.mo share/locale/zh_CN/LC_MESSAGES/kdevdebuggercommon.mo share/locale/zh_CN/LC_MESSAGES/kdevdocker.mo share/locale/zh_CN/LC_MESSAGES/kdevdocumentswitcher.mo share/locale/zh_CN/LC_MESSAGES/kdevdocumentview.mo share/locale/zh_CN/LC_MESSAGES/kdevelop.mo share/locale/zh_CN/LC_MESSAGES/kdevexecute.mo share/locale/zh_CN/LC_MESSAGES/kdevexecuteplasmoid.mo share/locale/zh_CN/LC_MESSAGES/kdevexecutescript.mo share/locale/zh_CN/LC_MESSAGES/kdevexternalscript.mo share/locale/zh_CN/LC_MESSAGES/kdevfilemanager.mo share/locale/zh_CN/LC_MESSAGES/kdevfiletemplates.mo share/locale/zh_CN/LC_MESSAGES/kdevflatpak.mo share/locale/zh_CN/LC_MESSAGES/kdevgdb.mo share/locale/zh_CN/LC_MESSAGES/kdevghprovider.mo share/locale/zh_CN/LC_MESSAGES/kdevgit.mo share/locale/zh_CN/LC_MESSAGES/kdevgrepview.mo share/locale/zh_CN/LC_MESSAGES/kdevheaptrack.mo share/locale/zh_CN/LC_MESSAGES/kdevkonsole.mo share/locale/zh_CN/LC_MESSAGES/kdevlldb.mo share/locale/zh_CN/LC_MESSAGES/kdevmakebuilder.mo share/locale/zh_CN/LC_MESSAGES/kdevmanpage.mo share/locale/zh_CN/LC_MESSAGES/kdevmesonmanager.mo share/locale/zh_CN/LC_MESSAGES/kdevninja.mo share/locale/zh_CN/LC_MESSAGES/kdevokteta.mo share/locale/zh_CN/LC_MESSAGES/kdevopenwith.mo share/locale/zh_CN/LC_MESSAGES/kdevoutlineview.mo share/locale/zh_CN/LC_MESSAGES/kdevpatchreview.mo share/locale/zh_CN/LC_MESSAGES/kdevperforce.mo share/locale/zh_CN/LC_MESSAGES/kdevplatform.mo share/locale/zh_CN/LC_MESSAGES/kdevproblemreporter.mo share/locale/zh_CN/LC_MESSAGES/kdevprojectfilter.mo share/locale/zh_CN/LC_MESSAGES/kdevprojectmanagerview.mo share/locale/zh_CN/LC_MESSAGES/kdevqmakebuilder.mo share/locale/zh_CN/LC_MESSAGES/kdevqmakemanager.mo share/locale/zh_CN/LC_MESSAGES/kdevqmljs.mo share/locale/zh_CN/LC_MESSAGES/kdevqthelp.mo share/locale/zh_CN/LC_MESSAGES/kdevquickopen.mo share/locale/zh_CN/LC_MESSAGES/kdevscratchpad.mo share/locale/zh_CN/LC_MESSAGES/kdevsourceformatter.mo share/locale/zh_CN/LC_MESSAGES/kdevstandardoutputview.mo share/locale/zh_CN/LC_MESSAGES/kdevsubversion.mo share/locale/zh_CN/LC_MESSAGES/kdevswitchtobuddy.mo share/locale/zh_CN/LC_MESSAGES/kdevtestview.mo share/locale/zh_CN/LC_MESSAGES/kdevvcsprojectintegration.mo share/locale/zh_CN/LC_MESSAGES/kdevwelcomepage.mo share/locale/zh_CN/LC_MESSAGES/plasma_applet_kdevelopsessions.mo share/locale/zh_CN/LC_MESSAGES/plasma_runner_kdevelopsessions.mo share/locale/zh_TW/LC_MESSAGES/kdevandroid.mo share/locale/zh_TW/LC_MESSAGES/kdevappwizard.mo share/locale/zh_TW/LC_MESSAGES/kdevastyle.mo share/locale/zh_TW/LC_MESSAGES/kdevbazaar.mo share/locale/zh_TW/LC_MESSAGES/kdevclang.mo share/locale/zh_TW/LC_MESSAGES/kdevclangtidy.mo share/locale/zh_TW/LC_MESSAGES/kdevclassbrowser.mo share/locale/zh_TW/LC_MESSAGES/kdevclazy.mo share/locale/zh_TW/LC_MESSAGES/kdevcmake.mo share/locale/zh_TW/LC_MESSAGES/kdevcmakebuilder.mo share/locale/zh_TW/LC_MESSAGES/kdevcodeutils.mo share/locale/zh_TW/LC_MESSAGES/kdevcompileanalyzercommon.mo share/locale/zh_TW/LC_MESSAGES/kdevcontextbrowser.mo share/locale/zh_TW/LC_MESSAGES/kdevcppcheck.mo share/locale/zh_TW/LC_MESSAGES/kdevcustombuildsystem.mo share/locale/zh_TW/LC_MESSAGES/kdevcustomdefinesandincludes.mo share/locale/zh_TW/LC_MESSAGES/kdevcustommake.mo share/locale/zh_TW/LC_MESSAGES/kdevcustomscript.mo share/locale/zh_TW/LC_MESSAGES/kdevdebuggercommon.mo share/locale/zh_TW/LC_MESSAGES/kdevdocker.mo share/locale/zh_TW/LC_MESSAGES/kdevdocumentswitcher.mo share/locale/zh_TW/LC_MESSAGES/kdevdocumentview.mo share/locale/zh_TW/LC_MESSAGES/kdevelop.mo share/locale/zh_TW/LC_MESSAGES/kdevexecute.mo share/locale/zh_TW/LC_MESSAGES/kdevexecuteplasmoid.mo share/locale/zh_TW/LC_MESSAGES/kdevexecutescript.mo share/locale/zh_TW/LC_MESSAGES/kdevexternalscript.mo share/locale/zh_TW/LC_MESSAGES/kdevfilemanager.mo share/locale/zh_TW/LC_MESSAGES/kdevfiletemplates.mo share/locale/zh_TW/LC_MESSAGES/kdevflatpak.mo share/locale/zh_TW/LC_MESSAGES/kdevgdb.mo share/locale/zh_TW/LC_MESSAGES/kdevghprovider.mo share/locale/zh_TW/LC_MESSAGES/kdevgit.mo share/locale/zh_TW/LC_MESSAGES/kdevgrepview.mo share/locale/zh_TW/LC_MESSAGES/kdevheaptrack.mo share/locale/zh_TW/LC_MESSAGES/kdevkonsole.mo share/locale/zh_TW/LC_MESSAGES/kdevlldb.mo share/locale/zh_TW/LC_MESSAGES/kdevmakebuilder.mo share/locale/zh_TW/LC_MESSAGES/kdevmanpage.mo share/locale/zh_TW/LC_MESSAGES/kdevmesonmanager.mo share/locale/zh_TW/LC_MESSAGES/kdevninja.mo share/locale/zh_TW/LC_MESSAGES/kdevokteta.mo share/locale/zh_TW/LC_MESSAGES/kdevopenwith.mo share/locale/zh_TW/LC_MESSAGES/kdevoutlineview.mo share/locale/zh_TW/LC_MESSAGES/kdevpatchreview.mo share/locale/zh_TW/LC_MESSAGES/kdevperforce.mo share/locale/zh_TW/LC_MESSAGES/kdevplatform.mo share/locale/zh_TW/LC_MESSAGES/kdevproblemreporter.mo share/locale/zh_TW/LC_MESSAGES/kdevprojectfilter.mo share/locale/zh_TW/LC_MESSAGES/kdevprojectmanagerview.mo share/locale/zh_TW/LC_MESSAGES/kdevqmakebuilder.mo share/locale/zh_TW/LC_MESSAGES/kdevqmakemanager.mo share/locale/zh_TW/LC_MESSAGES/kdevqmljs.mo share/locale/zh_TW/LC_MESSAGES/kdevqthelp.mo share/locale/zh_TW/LC_MESSAGES/kdevquickopen.mo share/locale/zh_TW/LC_MESSAGES/kdevscratchpad.mo share/locale/zh_TW/LC_MESSAGES/kdevsourceformatter.mo share/locale/zh_TW/LC_MESSAGES/kdevstandardoutputview.mo share/locale/zh_TW/LC_MESSAGES/kdevsubversion.mo share/locale/zh_TW/LC_MESSAGES/kdevswitchtobuddy.mo share/locale/zh_TW/LC_MESSAGES/kdevtestview.mo share/locale/zh_TW/LC_MESSAGES/kdevvcsprojectintegration.mo share/locale/zh_TW/LC_MESSAGES/kdevwelcomepage.mo share/locale/zh_TW/LC_MESSAGES/plasma_applet_kdevelopsessions.mo share/locale/zh_TW/LC_MESSAGES/plasma_runner_kdevelopsessions.mo share/metainfo/org.kde.kdevelop.appdata.xml share/mime/packages/kdevclang.xml share/mime/packages/kdevelop.xml share/mime/packages/kdevgit.xml share/plasma/plasmoids/kdevelopsessions/contents/ui/kdevelopsessions.qml share/plasma/plasmoids/kdevelopsessions/metadata.desktop share/qlogging-categories5/kdevelop.categories share/qlogging-categories5/kdevplatform.categories diff --git a/devel/kio-extras/distinfo b/devel/kio-extras/distinfo index a855a06fdd18..0b2dc4a16d3e 100644 --- a/devel/kio-extras/distinfo +++ b/devel/kio-extras/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1677828143 -SHA256 (KDE/release-service/22.12.3/kio-extras-22.12.3.tar.xz) = 65437554095aa0ca2bb1a59dbb81d271bb5da3944c2cba991e4386ea0c171097 -SIZE (KDE/release-service/22.12.3/kio-extras-22.12.3.tar.xz) = 1398412 +TIMESTAMP = 1681548253 +SHA256 (KDE/release-service/23.04.0/kio-extras-23.04.0.tar.xz) = 0db97164276d609c2c03acbe3f9c24000f0330e8e4f5bf7b3fad68ecbd7b60d1 +SIZE (KDE/release-service/23.04.0/kio-extras-23.04.0.tar.xz) = 1426036 diff --git a/devel/kio-extras/pkg-plist b/devel/kio-extras/pkg-plist index eb29c1167e0f..244f37c96a09 100644 --- a/devel/kio-extras/pkg-plist +++ b/devel/kio-extras/pkg-plist @@ -1,1083 +1,1117 @@ include/KF5/kio_archivebase.h include/KF5/libkioarchive_export.h lib/cmake/KioArchive/KioArchiveConfig.cmake lib/cmake/KioArchive/KioArchiveConfigVersion.cmake lib/cmake/KioArchive/KioArchiveTargets-%%CMAKE_BUILD_TYPE%%.cmake lib/cmake/KioArchive/KioArchiveTargets.cmake %%SAMBA%%lib/libexec/kf5/smbnotifier lib/libkioarchive.so.5 lib/libkioarchive.so.5.97.0 %%QT_PLUGINDIR%%/kf5/kded/filenamesearchmodule.so %%QT_PLUGINDIR%%/kf5/kded/recentdocumentsnotifier.so %%SAMBA%%%%QT_PLUGINDIR%%/kf5/kded/smbwatcher.so %%QT_PLUGINDIR%%/kf5/kfileitemaction/kactivitymanagerd_fileitem_linking_plugin.so %%QT_PLUGINDIR%%/kf5/kio/about.so %%QT_PLUGINDIR%%/kf5/kio/activities.so %%QT_PLUGINDIR%%/kf5/kio/archive.so %%QT_PLUGINDIR%%/kf5/kio/bookmarks.so %%QT_PLUGINDIR%%/kf5/kio/filter.so %%QT_PLUGINDIR%%/kf5/kio/fish.so %%QT_PLUGINDIR%%/kf5/kio/info.so %%QT_PLUGINDIR%%/kf5/kio/kio_filenamesearch.so %%QT_PLUGINDIR%%/kf5/kio/man.so %%MTP%%%%QT_PLUGINDIR%%/kf5/kio/mtp.so %%QT_PLUGINDIR%%/kf5/kio/recentdocuments.so %%SSH%%%%QT_PLUGINDIR%%/kf5/kio/sftp.so %%SAMBA%%%%QT_PLUGINDIR%%/kf5/kio/smb.so %%QT_PLUGINDIR%%/kf5/kio/thumbnail.so %%MTP%%%%QT_PLUGINDIR%%/kf5/kiod/kmtpd.so %%TAGLIB%%%%QT_PLUGINDIR%%/kf5/thumbcreator/audiothumbnail.so %%QT_PLUGINDIR%%/kf5/thumbcreator/comicbookthumbnail.so %%QT_PLUGINDIR%%/kf5/thumbcreator/cursorthumbnail.so %%QT_PLUGINDIR%%/kf5/thumbcreator/djvuthumbnail.so %%QT_PLUGINDIR%%/kf5/thumbcreator/ebookthumbnail.so %%EXR%%%%QT_PLUGINDIR%%/kf5/thumbcreator/exrthumbnail.so %%QT_PLUGINDIR%%/kf5/thumbcreator/imagethumbnail.so %%QT_PLUGINDIR%%/kf5/thumbcreator/jpegthumbnail.so %%QT_PLUGINDIR%%/kf5/thumbcreator/kritathumbnail.so %%QT_PLUGINDIR%%/kf5/thumbcreator/opendocumentthumbnail.so %%QT_PLUGINDIR%%/kf5/thumbcreator/svgthumbnail.so %%QT_PLUGINDIR%%/kf5/thumbcreator/textthumbnail.so %%QT_PLUGINDIR%%/kf5/thumbcreator/windowsexethumbnail.so %%QT_PLUGINDIR%%/kf5/thumbcreator/windowsimagethumbnail.so %%QT_PLUGINDIR%%/kfileaudiopreview.so share/config.kcfg/jpegcreatorsettings5.kcfg %%MTP%%share/dbus-1/services/org.kde.kmtpd5.service share/kio_bookmarks/kio_bookmarks.css share/kio_docfilter/kio_docfilter.css share/kio_info/kde-info2html share/kio_info/kde-info2html.conf %%MTP%%share/konqueror/dirtree/remote/mtp-network.desktop %%SAMBA%%share/konqueror/dirtree/remote/smb-network.desktop share/kservices5/directorythumbnail.desktop share/kservicetypes5/thumbcreator.desktop share/locale/af/LC_MESSAGES/kfileaudiopreview5.mo share/locale/af/LC_MESSAGES/kio5_archive.mo share/locale/af/LC_MESSAGES/kio5_fish.mo share/locale/af/LC_MESSAGES/kio5_man.mo share/locale/af/LC_MESSAGES/kio5_nfs.mo share/locale/af/LC_MESSAGES/kio5_sftp.mo share/locale/af/LC_MESSAGES/kio5_smb.mo share/locale/af/LC_MESSAGES/kio5_thumbnail.mo share/locale/ar/LC_MESSAGES/kfileaudiopreview5.mo share/locale/ar/LC_MESSAGES/kio5_activities.mo +share/locale/ar/LC_MESSAGES/kio5_afc.mo share/locale/ar/LC_MESSAGES/kio5_archive.mo share/locale/ar/LC_MESSAGES/kio5_bookmarks.mo share/locale/ar/LC_MESSAGES/kio5_fish.mo share/locale/ar/LC_MESSAGES/kio5_info.mo share/locale/ar/LC_MESSAGES/kio5_man.mo share/locale/ar/LC_MESSAGES/kio5_mtp.mo share/locale/ar/LC_MESSAGES/kio5_nfs.mo share/locale/ar/LC_MESSAGES/kio5_recentdocuments.mo share/locale/ar/LC_MESSAGES/kio5_sftp.mo share/locale/ar/LC_MESSAGES/kio5_smb.mo share/locale/ar/LC_MESSAGES/kio5_thumbnail.mo share/locale/be/LC_MESSAGES/kfileaudiopreview5.mo +share/locale/be/LC_MESSAGES/kio5_activities.mo +share/locale/be/LC_MESSAGES/kio5_afc.mo share/locale/be/LC_MESSAGES/kio5_archive.mo +share/locale/be/LC_MESSAGES/kio5_bookmarks.mo share/locale/be/LC_MESSAGES/kio5_fish.mo +share/locale/be/LC_MESSAGES/kio5_info.mo share/locale/be/LC_MESSAGES/kio5_man.mo +share/locale/be/LC_MESSAGES/kio5_mtp.mo share/locale/be/LC_MESSAGES/kio5_nfs.mo +share/locale/be/LC_MESSAGES/kio5_recentdocuments.mo share/locale/be/LC_MESSAGES/kio5_sftp.mo share/locale/be/LC_MESSAGES/kio5_smb.mo share/locale/be/LC_MESSAGES/kio5_thumbnail.mo share/locale/be@latin/LC_MESSAGES/kio5_archive.mo share/locale/be@latin/LC_MESSAGES/kio5_bookmarks.mo share/locale/be@latin/LC_MESSAGES/kio5_fish.mo share/locale/be@latin/LC_MESSAGES/kio5_man.mo share/locale/be@latin/LC_MESSAGES/kio5_nfs.mo share/locale/be@latin/LC_MESSAGES/kio5_smb.mo share/locale/be@latin/LC_MESSAGES/kio5_thumbnail.mo share/locale/bg/LC_MESSAGES/kfileaudiopreview5.mo share/locale/bg/LC_MESSAGES/kio5_activities.mo +share/locale/bg/LC_MESSAGES/kio5_afc.mo share/locale/bg/LC_MESSAGES/kio5_archive.mo share/locale/bg/LC_MESSAGES/kio5_bookmarks.mo share/locale/bg/LC_MESSAGES/kio5_fish.mo share/locale/bg/LC_MESSAGES/kio5_info.mo share/locale/bg/LC_MESSAGES/kio5_man.mo share/locale/bg/LC_MESSAGES/kio5_mtp.mo share/locale/bg/LC_MESSAGES/kio5_nfs.mo share/locale/bg/LC_MESSAGES/kio5_recentdocuments.mo share/locale/bg/LC_MESSAGES/kio5_sftp.mo share/locale/bg/LC_MESSAGES/kio5_smb.mo share/locale/bg/LC_MESSAGES/kio5_thumbnail.mo share/locale/bn/LC_MESSAGES/kfileaudiopreview5.mo share/locale/bn/LC_MESSAGES/kio5_fish.mo share/locale/bn/LC_MESSAGES/kio5_man.mo share/locale/bn/LC_MESSAGES/kio5_nfs.mo share/locale/bn_IN/LC_MESSAGES/kio5_archive.mo share/locale/bn_IN/LC_MESSAGES/kio5_bookmarks.mo share/locale/bn_IN/LC_MESSAGES/kio5_fish.mo share/locale/bn_IN/LC_MESSAGES/kio5_man.mo share/locale/bn_IN/LC_MESSAGES/kio5_nfs.mo share/locale/bn_IN/LC_MESSAGES/kio5_sftp.mo share/locale/bn_IN/LC_MESSAGES/kio5_smb.mo share/locale/bn_IN/LC_MESSAGES/kio5_thumbnail.mo share/locale/br/LC_MESSAGES/kfileaudiopreview5.mo share/locale/br/LC_MESSAGES/kio5_fish.mo share/locale/br/LC_MESSAGES/kio5_man.mo share/locale/br/LC_MESSAGES/kio5_nfs.mo share/locale/br/LC_MESSAGES/kio5_sftp.mo share/locale/br/LC_MESSAGES/kio5_smb.mo share/locale/br/LC_MESSAGES/kio5_thumbnail.mo share/locale/bs/LC_MESSAGES/kfileaudiopreview5.mo share/locale/bs/LC_MESSAGES/kio5_activities.mo share/locale/bs/LC_MESSAGES/kio5_archive.mo share/locale/bs/LC_MESSAGES/kio5_bookmarks.mo share/locale/bs/LC_MESSAGES/kio5_fish.mo share/locale/bs/LC_MESSAGES/kio5_info.mo share/locale/bs/LC_MESSAGES/kio5_man.mo share/locale/bs/LC_MESSAGES/kio5_mtp.mo share/locale/bs/LC_MESSAGES/kio5_nfs.mo share/locale/bs/LC_MESSAGES/kio5_recentdocuments.mo share/locale/bs/LC_MESSAGES/kio5_sftp.mo share/locale/bs/LC_MESSAGES/kio5_smb.mo share/locale/bs/LC_MESSAGES/kio5_thumbnail.mo share/locale/ca/LC_MESSAGES/kfileaudiopreview5.mo share/locale/ca/LC_MESSAGES/kio5_activities.mo +share/locale/ca/LC_MESSAGES/kio5_afc.mo share/locale/ca/LC_MESSAGES/kio5_archive.mo share/locale/ca/LC_MESSAGES/kio5_bookmarks.mo share/locale/ca/LC_MESSAGES/kio5_fish.mo share/locale/ca/LC_MESSAGES/kio5_info.mo share/locale/ca/LC_MESSAGES/kio5_man.mo share/locale/ca/LC_MESSAGES/kio5_mtp.mo share/locale/ca/LC_MESSAGES/kio5_nfs.mo share/locale/ca/LC_MESSAGES/kio5_recentdocuments.mo share/locale/ca/LC_MESSAGES/kio5_sftp.mo share/locale/ca/LC_MESSAGES/kio5_smb.mo share/locale/ca/LC_MESSAGES/kio5_thumbnail.mo share/locale/ca@valencia/LC_MESSAGES/kfileaudiopreview5.mo share/locale/ca@valencia/LC_MESSAGES/kio5_activities.mo +share/locale/ca@valencia/LC_MESSAGES/kio5_afc.mo share/locale/ca@valencia/LC_MESSAGES/kio5_archive.mo share/locale/ca@valencia/LC_MESSAGES/kio5_bookmarks.mo share/locale/ca@valencia/LC_MESSAGES/kio5_fish.mo share/locale/ca@valencia/LC_MESSAGES/kio5_info.mo share/locale/ca@valencia/LC_MESSAGES/kio5_man.mo share/locale/ca@valencia/LC_MESSAGES/kio5_mtp.mo share/locale/ca@valencia/LC_MESSAGES/kio5_nfs.mo share/locale/ca@valencia/LC_MESSAGES/kio5_recentdocuments.mo share/locale/ca@valencia/LC_MESSAGES/kio5_sftp.mo share/locale/ca@valencia/LC_MESSAGES/kio5_smb.mo share/locale/ca@valencia/LC_MESSAGES/kio5_thumbnail.mo share/locale/cs/LC_MESSAGES/kfileaudiopreview5.mo share/locale/cs/LC_MESSAGES/kio5_activities.mo +share/locale/cs/LC_MESSAGES/kio5_afc.mo share/locale/cs/LC_MESSAGES/kio5_archive.mo share/locale/cs/LC_MESSAGES/kio5_bookmarks.mo share/locale/cs/LC_MESSAGES/kio5_fish.mo share/locale/cs/LC_MESSAGES/kio5_info.mo share/locale/cs/LC_MESSAGES/kio5_man.mo share/locale/cs/LC_MESSAGES/kio5_mtp.mo share/locale/cs/LC_MESSAGES/kio5_nfs.mo share/locale/cs/LC_MESSAGES/kio5_recentdocuments.mo share/locale/cs/LC_MESSAGES/kio5_sftp.mo share/locale/cs/LC_MESSAGES/kio5_smb.mo share/locale/cs/LC_MESSAGES/kio5_thumbnail.mo share/locale/csb/LC_MESSAGES/kfileaudiopreview5.mo share/locale/csb/LC_MESSAGES/kio5_archive.mo share/locale/csb/LC_MESSAGES/kio5_fish.mo share/locale/csb/LC_MESSAGES/kio5_man.mo share/locale/csb/LC_MESSAGES/kio5_nfs.mo share/locale/csb/LC_MESSAGES/kio5_sftp.mo share/locale/csb/LC_MESSAGES/kio5_smb.mo share/locale/csb/LC_MESSAGES/kio5_thumbnail.mo share/locale/cy/LC_MESSAGES/kfileaudiopreview5.mo share/locale/cy/LC_MESSAGES/kio5_fish.mo share/locale/cy/LC_MESSAGES/kio5_man.mo share/locale/cy/LC_MESSAGES/kio5_nfs.mo share/locale/cy/LC_MESSAGES/kio5_sftp.mo share/locale/cy/LC_MESSAGES/kio5_smb.mo share/locale/da/LC_MESSAGES/kfileaudiopreview5.mo share/locale/da/LC_MESSAGES/kio5_activities.mo share/locale/da/LC_MESSAGES/kio5_archive.mo share/locale/da/LC_MESSAGES/kio5_bookmarks.mo share/locale/da/LC_MESSAGES/kio5_fish.mo share/locale/da/LC_MESSAGES/kio5_info.mo share/locale/da/LC_MESSAGES/kio5_man.mo share/locale/da/LC_MESSAGES/kio5_mtp.mo share/locale/da/LC_MESSAGES/kio5_nfs.mo share/locale/da/LC_MESSAGES/kio5_recentdocuments.mo share/locale/da/LC_MESSAGES/kio5_sftp.mo share/locale/da/LC_MESSAGES/kio5_smb.mo share/locale/da/LC_MESSAGES/kio5_thumbnail.mo share/locale/de/LC_MESSAGES/kfileaudiopreview5.mo share/locale/de/LC_MESSAGES/kio5_activities.mo +share/locale/de/LC_MESSAGES/kio5_afc.mo share/locale/de/LC_MESSAGES/kio5_archive.mo share/locale/de/LC_MESSAGES/kio5_bookmarks.mo share/locale/de/LC_MESSAGES/kio5_fish.mo share/locale/de/LC_MESSAGES/kio5_info.mo share/locale/de/LC_MESSAGES/kio5_man.mo share/locale/de/LC_MESSAGES/kio5_mtp.mo share/locale/de/LC_MESSAGES/kio5_nfs.mo share/locale/de/LC_MESSAGES/kio5_recentdocuments.mo share/locale/de/LC_MESSAGES/kio5_sftp.mo share/locale/de/LC_MESSAGES/kio5_smb.mo share/locale/de/LC_MESSAGES/kio5_thumbnail.mo share/locale/el/LC_MESSAGES/kfileaudiopreview5.mo share/locale/el/LC_MESSAGES/kio5_activities.mo share/locale/el/LC_MESSAGES/kio5_archive.mo share/locale/el/LC_MESSAGES/kio5_bookmarks.mo share/locale/el/LC_MESSAGES/kio5_fish.mo share/locale/el/LC_MESSAGES/kio5_info.mo share/locale/el/LC_MESSAGES/kio5_man.mo share/locale/el/LC_MESSAGES/kio5_mtp.mo share/locale/el/LC_MESSAGES/kio5_nfs.mo share/locale/el/LC_MESSAGES/kio5_recentdocuments.mo share/locale/el/LC_MESSAGES/kio5_sftp.mo share/locale/el/LC_MESSAGES/kio5_smb.mo share/locale/el/LC_MESSAGES/kio5_thumbnail.mo share/locale/en_GB/LC_MESSAGES/kfileaudiopreview5.mo share/locale/en_GB/LC_MESSAGES/kio5_activities.mo +share/locale/en_GB/LC_MESSAGES/kio5_afc.mo share/locale/en_GB/LC_MESSAGES/kio5_archive.mo share/locale/en_GB/LC_MESSAGES/kio5_bookmarks.mo share/locale/en_GB/LC_MESSAGES/kio5_fish.mo share/locale/en_GB/LC_MESSAGES/kio5_info.mo share/locale/en_GB/LC_MESSAGES/kio5_man.mo share/locale/en_GB/LC_MESSAGES/kio5_mtp.mo share/locale/en_GB/LC_MESSAGES/kio5_nfs.mo share/locale/en_GB/LC_MESSAGES/kio5_recentdocuments.mo share/locale/en_GB/LC_MESSAGES/kio5_sftp.mo share/locale/en_GB/LC_MESSAGES/kio5_smb.mo share/locale/en_GB/LC_MESSAGES/kio5_thumbnail.mo share/locale/eo/LC_MESSAGES/kfileaudiopreview5.mo share/locale/eo/LC_MESSAGES/kio5_archive.mo share/locale/eo/LC_MESSAGES/kio5_bookmarks.mo share/locale/eo/LC_MESSAGES/kio5_fish.mo share/locale/eo/LC_MESSAGES/kio5_info.mo share/locale/eo/LC_MESSAGES/kio5_man.mo share/locale/eo/LC_MESSAGES/kio5_nfs.mo share/locale/eo/LC_MESSAGES/kio5_sftp.mo share/locale/eo/LC_MESSAGES/kio5_smb.mo share/locale/eo/LC_MESSAGES/kio5_thumbnail.mo share/locale/es/LC_MESSAGES/kfileaudiopreview5.mo share/locale/es/LC_MESSAGES/kio5_activities.mo +share/locale/es/LC_MESSAGES/kio5_afc.mo share/locale/es/LC_MESSAGES/kio5_archive.mo share/locale/es/LC_MESSAGES/kio5_bookmarks.mo share/locale/es/LC_MESSAGES/kio5_fish.mo share/locale/es/LC_MESSAGES/kio5_info.mo share/locale/es/LC_MESSAGES/kio5_man.mo share/locale/es/LC_MESSAGES/kio5_mtp.mo share/locale/es/LC_MESSAGES/kio5_nfs.mo share/locale/es/LC_MESSAGES/kio5_recentdocuments.mo share/locale/es/LC_MESSAGES/kio5_sftp.mo share/locale/es/LC_MESSAGES/kio5_smb.mo share/locale/es/LC_MESSAGES/kio5_thumbnail.mo share/locale/et/LC_MESSAGES/kfileaudiopreview5.mo share/locale/et/LC_MESSAGES/kio5_activities.mo share/locale/et/LC_MESSAGES/kio5_archive.mo share/locale/et/LC_MESSAGES/kio5_bookmarks.mo share/locale/et/LC_MESSAGES/kio5_fish.mo share/locale/et/LC_MESSAGES/kio5_info.mo share/locale/et/LC_MESSAGES/kio5_man.mo share/locale/et/LC_MESSAGES/kio5_mtp.mo share/locale/et/LC_MESSAGES/kio5_nfs.mo share/locale/et/LC_MESSAGES/kio5_recentdocuments.mo share/locale/et/LC_MESSAGES/kio5_sftp.mo share/locale/et/LC_MESSAGES/kio5_smb.mo share/locale/et/LC_MESSAGES/kio5_thumbnail.mo share/locale/eu/LC_MESSAGES/kfileaudiopreview5.mo share/locale/eu/LC_MESSAGES/kio5_activities.mo +share/locale/eu/LC_MESSAGES/kio5_afc.mo share/locale/eu/LC_MESSAGES/kio5_archive.mo share/locale/eu/LC_MESSAGES/kio5_bookmarks.mo share/locale/eu/LC_MESSAGES/kio5_fish.mo share/locale/eu/LC_MESSAGES/kio5_info.mo share/locale/eu/LC_MESSAGES/kio5_man.mo share/locale/eu/LC_MESSAGES/kio5_mtp.mo share/locale/eu/LC_MESSAGES/kio5_nfs.mo share/locale/eu/LC_MESSAGES/kio5_recentdocuments.mo share/locale/eu/LC_MESSAGES/kio5_sftp.mo share/locale/eu/LC_MESSAGES/kio5_smb.mo share/locale/eu/LC_MESSAGES/kio5_thumbnail.mo share/locale/fa/LC_MESSAGES/kfileaudiopreview5.mo share/locale/fa/LC_MESSAGES/kio5_archive.mo share/locale/fa/LC_MESSAGES/kio5_bookmarks.mo share/locale/fa/LC_MESSAGES/kio5_fish.mo share/locale/fa/LC_MESSAGES/kio5_info.mo share/locale/fa/LC_MESSAGES/kio5_man.mo share/locale/fa/LC_MESSAGES/kio5_nfs.mo share/locale/fa/LC_MESSAGES/kio5_recentdocuments.mo share/locale/fa/LC_MESSAGES/kio5_sftp.mo share/locale/fa/LC_MESSAGES/kio5_smb.mo share/locale/fa/LC_MESSAGES/kio5_thumbnail.mo share/locale/fi/LC_MESSAGES/kfileaudiopreview5.mo share/locale/fi/LC_MESSAGES/kio5_activities.mo +share/locale/fi/LC_MESSAGES/kio5_afc.mo share/locale/fi/LC_MESSAGES/kio5_archive.mo share/locale/fi/LC_MESSAGES/kio5_bookmarks.mo share/locale/fi/LC_MESSAGES/kio5_fish.mo share/locale/fi/LC_MESSAGES/kio5_info.mo share/locale/fi/LC_MESSAGES/kio5_man.mo share/locale/fi/LC_MESSAGES/kio5_mtp.mo share/locale/fi/LC_MESSAGES/kio5_nfs.mo share/locale/fi/LC_MESSAGES/kio5_recentdocuments.mo share/locale/fi/LC_MESSAGES/kio5_sftp.mo share/locale/fi/LC_MESSAGES/kio5_smb.mo share/locale/fi/LC_MESSAGES/kio5_thumbnail.mo share/locale/fr/LC_MESSAGES/kfileaudiopreview5.mo share/locale/fr/LC_MESSAGES/kio5_activities.mo +share/locale/fr/LC_MESSAGES/kio5_afc.mo share/locale/fr/LC_MESSAGES/kio5_archive.mo share/locale/fr/LC_MESSAGES/kio5_bookmarks.mo share/locale/fr/LC_MESSAGES/kio5_fish.mo share/locale/fr/LC_MESSAGES/kio5_info.mo share/locale/fr/LC_MESSAGES/kio5_man.mo share/locale/fr/LC_MESSAGES/kio5_mtp.mo share/locale/fr/LC_MESSAGES/kio5_nfs.mo share/locale/fr/LC_MESSAGES/kio5_recentdocuments.mo share/locale/fr/LC_MESSAGES/kio5_sftp.mo share/locale/fr/LC_MESSAGES/kio5_smb.mo share/locale/fr/LC_MESSAGES/kio5_thumbnail.mo share/locale/fy/LC_MESSAGES/kfileaudiopreview5.mo share/locale/fy/LC_MESSAGES/kio5_archive.mo share/locale/fy/LC_MESSAGES/kio5_bookmarks.mo share/locale/fy/LC_MESSAGES/kio5_fish.mo share/locale/fy/LC_MESSAGES/kio5_info.mo share/locale/fy/LC_MESSAGES/kio5_man.mo share/locale/fy/LC_MESSAGES/kio5_nfs.mo share/locale/fy/LC_MESSAGES/kio5_sftp.mo share/locale/fy/LC_MESSAGES/kio5_smb.mo share/locale/fy/LC_MESSAGES/kio5_thumbnail.mo share/locale/ga/LC_MESSAGES/kfileaudiopreview5.mo share/locale/ga/LC_MESSAGES/kio5_activities.mo share/locale/ga/LC_MESSAGES/kio5_archive.mo share/locale/ga/LC_MESSAGES/kio5_bookmarks.mo share/locale/ga/LC_MESSAGES/kio5_fish.mo share/locale/ga/LC_MESSAGES/kio5_info.mo share/locale/ga/LC_MESSAGES/kio5_man.mo share/locale/ga/LC_MESSAGES/kio5_nfs.mo share/locale/ga/LC_MESSAGES/kio5_recentdocuments.mo share/locale/ga/LC_MESSAGES/kio5_sftp.mo share/locale/ga/LC_MESSAGES/kio5_smb.mo share/locale/ga/LC_MESSAGES/kio5_thumbnail.mo share/locale/gd/LC_MESSAGES/kio5_activities.mo share/locale/gl/LC_MESSAGES/kfileaudiopreview5.mo share/locale/gl/LC_MESSAGES/kio5_activities.mo share/locale/gl/LC_MESSAGES/kio5_archive.mo share/locale/gl/LC_MESSAGES/kio5_bookmarks.mo share/locale/gl/LC_MESSAGES/kio5_fish.mo share/locale/gl/LC_MESSAGES/kio5_info.mo share/locale/gl/LC_MESSAGES/kio5_man.mo share/locale/gl/LC_MESSAGES/kio5_mtp.mo share/locale/gl/LC_MESSAGES/kio5_nfs.mo share/locale/gl/LC_MESSAGES/kio5_recentdocuments.mo share/locale/gl/LC_MESSAGES/kio5_sftp.mo share/locale/gl/LC_MESSAGES/kio5_smb.mo share/locale/gl/LC_MESSAGES/kio5_thumbnail.mo share/locale/gu/LC_MESSAGES/kfileaudiopreview5.mo share/locale/gu/LC_MESSAGES/kio5_activities.mo share/locale/gu/LC_MESSAGES/kio5_archive.mo share/locale/gu/LC_MESSAGES/kio5_bookmarks.mo share/locale/gu/LC_MESSAGES/kio5_fish.mo share/locale/gu/LC_MESSAGES/kio5_info.mo share/locale/gu/LC_MESSAGES/kio5_man.mo share/locale/gu/LC_MESSAGES/kio5_nfs.mo share/locale/gu/LC_MESSAGES/kio5_sftp.mo share/locale/gu/LC_MESSAGES/kio5_smb.mo share/locale/gu/LC_MESSAGES/kio5_thumbnail.mo share/locale/he/LC_MESSAGES/kfileaudiopreview5.mo share/locale/he/LC_MESSAGES/kio5_activities.mo share/locale/he/LC_MESSAGES/kio5_archive.mo share/locale/he/LC_MESSAGES/kio5_bookmarks.mo share/locale/he/LC_MESSAGES/kio5_fish.mo share/locale/he/LC_MESSAGES/kio5_info.mo share/locale/he/LC_MESSAGES/kio5_man.mo share/locale/he/LC_MESSAGES/kio5_nfs.mo share/locale/he/LC_MESSAGES/kio5_recentdocuments.mo share/locale/he/LC_MESSAGES/kio5_sftp.mo share/locale/he/LC_MESSAGES/kio5_smb.mo share/locale/he/LC_MESSAGES/kio5_thumbnail.mo share/locale/hi/LC_MESSAGES/kfileaudiopreview5.mo share/locale/hi/LC_MESSAGES/kio5_activities.mo share/locale/hi/LC_MESSAGES/kio5_archive.mo share/locale/hi/LC_MESSAGES/kio5_bookmarks.mo share/locale/hi/LC_MESSAGES/kio5_fish.mo share/locale/hi/LC_MESSAGES/kio5_info.mo share/locale/hi/LC_MESSAGES/kio5_man.mo share/locale/hi/LC_MESSAGES/kio5_nfs.mo share/locale/hi/LC_MESSAGES/kio5_recentdocuments.mo share/locale/hi/LC_MESSAGES/kio5_sftp.mo share/locale/hi/LC_MESSAGES/kio5_smb.mo share/locale/hi/LC_MESSAGES/kio5_thumbnail.mo share/locale/hne/LC_MESSAGES/kio5_archive.mo share/locale/hne/LC_MESSAGES/kio5_fish.mo share/locale/hne/LC_MESSAGES/kio5_man.mo share/locale/hne/LC_MESSAGES/kio5_nfs.mo share/locale/hne/LC_MESSAGES/kio5_sftp.mo share/locale/hne/LC_MESSAGES/kio5_smb.mo share/locale/hne/LC_MESSAGES/kio5_thumbnail.mo share/locale/hr/LC_MESSAGES/kfileaudiopreview5.mo share/locale/hr/LC_MESSAGES/kio5_activities.mo share/locale/hr/LC_MESSAGES/kio5_archive.mo share/locale/hr/LC_MESSAGES/kio5_bookmarks.mo share/locale/hr/LC_MESSAGES/kio5_fish.mo share/locale/hr/LC_MESSAGES/kio5_info.mo share/locale/hr/LC_MESSAGES/kio5_man.mo share/locale/hr/LC_MESSAGES/kio5_nfs.mo share/locale/hr/LC_MESSAGES/kio5_sftp.mo share/locale/hr/LC_MESSAGES/kio5_smb.mo share/locale/hr/LC_MESSAGES/kio5_thumbnail.mo share/locale/hsb/LC_MESSAGES/kfileaudiopreview5.mo share/locale/hsb/LC_MESSAGES/kio5_archive.mo share/locale/hsb/LC_MESSAGES/kio5_bookmarks.mo share/locale/hsb/LC_MESSAGES/kio5_fish.mo share/locale/hsb/LC_MESSAGES/kio5_man.mo share/locale/hsb/LC_MESSAGES/kio5_nfs.mo share/locale/hsb/LC_MESSAGES/kio5_sftp.mo share/locale/hsb/LC_MESSAGES/kio5_smb.mo share/locale/hsb/LC_MESSAGES/kio5_thumbnail.mo share/locale/hu/LC_MESSAGES/kfileaudiopreview5.mo share/locale/hu/LC_MESSAGES/kio5_activities.mo share/locale/hu/LC_MESSAGES/kio5_archive.mo share/locale/hu/LC_MESSAGES/kio5_bookmarks.mo share/locale/hu/LC_MESSAGES/kio5_fish.mo share/locale/hu/LC_MESSAGES/kio5_info.mo share/locale/hu/LC_MESSAGES/kio5_man.mo share/locale/hu/LC_MESSAGES/kio5_mtp.mo share/locale/hu/LC_MESSAGES/kio5_nfs.mo share/locale/hu/LC_MESSAGES/kio5_recentdocuments.mo share/locale/hu/LC_MESSAGES/kio5_sftp.mo share/locale/hu/LC_MESSAGES/kio5_smb.mo share/locale/hu/LC_MESSAGES/kio5_thumbnail.mo share/locale/hy/LC_MESSAGES/kfileaudiopreview5.mo share/locale/hy/LC_MESSAGES/kio5_fish.mo share/locale/ia/LC_MESSAGES/kfileaudiopreview5.mo share/locale/ia/LC_MESSAGES/kio5_activities.mo +share/locale/ia/LC_MESSAGES/kio5_afc.mo share/locale/ia/LC_MESSAGES/kio5_archive.mo share/locale/ia/LC_MESSAGES/kio5_bookmarks.mo share/locale/ia/LC_MESSAGES/kio5_fish.mo share/locale/ia/LC_MESSAGES/kio5_info.mo share/locale/ia/LC_MESSAGES/kio5_man.mo share/locale/ia/LC_MESSAGES/kio5_mtp.mo share/locale/ia/LC_MESSAGES/kio5_nfs.mo share/locale/ia/LC_MESSAGES/kio5_recentdocuments.mo share/locale/ia/LC_MESSAGES/kio5_sftp.mo share/locale/ia/LC_MESSAGES/kio5_smb.mo share/locale/ia/LC_MESSAGES/kio5_thumbnail.mo share/locale/id/LC_MESSAGES/kfileaudiopreview5.mo share/locale/id/LC_MESSAGES/kio5_activities.mo share/locale/id/LC_MESSAGES/kio5_archive.mo share/locale/id/LC_MESSAGES/kio5_bookmarks.mo share/locale/id/LC_MESSAGES/kio5_fish.mo share/locale/id/LC_MESSAGES/kio5_info.mo share/locale/id/LC_MESSAGES/kio5_man.mo share/locale/id/LC_MESSAGES/kio5_mtp.mo share/locale/id/LC_MESSAGES/kio5_nfs.mo share/locale/id/LC_MESSAGES/kio5_recentdocuments.mo share/locale/id/LC_MESSAGES/kio5_sftp.mo share/locale/id/LC_MESSAGES/kio5_smb.mo share/locale/id/LC_MESSAGES/kio5_thumbnail.mo share/locale/ie/LC_MESSAGES/kfileaudiopreview5.mo share/locale/ie/LC_MESSAGES/kio5_archive.mo share/locale/ie/LC_MESSAGES/kio5_mtp.mo share/locale/is/LC_MESSAGES/kfileaudiopreview5.mo share/locale/is/LC_MESSAGES/kio5_activities.mo share/locale/is/LC_MESSAGES/kio5_archive.mo share/locale/is/LC_MESSAGES/kio5_bookmarks.mo share/locale/is/LC_MESSAGES/kio5_fish.mo share/locale/is/LC_MESSAGES/kio5_info.mo share/locale/is/LC_MESSAGES/kio5_man.mo share/locale/is/LC_MESSAGES/kio5_nfs.mo share/locale/is/LC_MESSAGES/kio5_recentdocuments.mo share/locale/is/LC_MESSAGES/kio5_sftp.mo share/locale/is/LC_MESSAGES/kio5_smb.mo share/locale/is/LC_MESSAGES/kio5_thumbnail.mo share/locale/it/LC_MESSAGES/kfileaudiopreview5.mo share/locale/it/LC_MESSAGES/kio5_activities.mo +share/locale/it/LC_MESSAGES/kio5_afc.mo share/locale/it/LC_MESSAGES/kio5_archive.mo share/locale/it/LC_MESSAGES/kio5_bookmarks.mo share/locale/it/LC_MESSAGES/kio5_fish.mo share/locale/it/LC_MESSAGES/kio5_info.mo share/locale/it/LC_MESSAGES/kio5_man.mo share/locale/it/LC_MESSAGES/kio5_mtp.mo share/locale/it/LC_MESSAGES/kio5_nfs.mo share/locale/it/LC_MESSAGES/kio5_recentdocuments.mo share/locale/it/LC_MESSAGES/kio5_sftp.mo share/locale/it/LC_MESSAGES/kio5_smb.mo share/locale/it/LC_MESSAGES/kio5_thumbnail.mo share/locale/ja/LC_MESSAGES/kfileaudiopreview5.mo share/locale/ja/LC_MESSAGES/kio5_activities.mo +share/locale/ja/LC_MESSAGES/kio5_afc.mo share/locale/ja/LC_MESSAGES/kio5_archive.mo share/locale/ja/LC_MESSAGES/kio5_bookmarks.mo share/locale/ja/LC_MESSAGES/kio5_fish.mo share/locale/ja/LC_MESSAGES/kio5_info.mo share/locale/ja/LC_MESSAGES/kio5_man.mo share/locale/ja/LC_MESSAGES/kio5_mtp.mo share/locale/ja/LC_MESSAGES/kio5_nfs.mo share/locale/ja/LC_MESSAGES/kio5_recentdocuments.mo share/locale/ja/LC_MESSAGES/kio5_sftp.mo share/locale/ja/LC_MESSAGES/kio5_smb.mo share/locale/ja/LC_MESSAGES/kio5_thumbnail.mo share/locale/ka/LC_MESSAGES/kfileaudiopreview5.mo share/locale/ka/LC_MESSAGES/kio5_activities.mo +share/locale/ka/LC_MESSAGES/kio5_afc.mo share/locale/ka/LC_MESSAGES/kio5_archive.mo share/locale/ka/LC_MESSAGES/kio5_bookmarks.mo share/locale/ka/LC_MESSAGES/kio5_fish.mo share/locale/ka/LC_MESSAGES/kio5_info.mo share/locale/ka/LC_MESSAGES/kio5_man.mo share/locale/ka/LC_MESSAGES/kio5_mtp.mo share/locale/ka/LC_MESSAGES/kio5_nfs.mo share/locale/ka/LC_MESSAGES/kio5_recentdocuments.mo share/locale/ka/LC_MESSAGES/kio5_sftp.mo share/locale/ka/LC_MESSAGES/kio5_smb.mo share/locale/ka/LC_MESSAGES/kio5_thumbnail.mo share/locale/kk/LC_MESSAGES/kfileaudiopreview5.mo share/locale/kk/LC_MESSAGES/kio5_activities.mo share/locale/kk/LC_MESSAGES/kio5_archive.mo share/locale/kk/LC_MESSAGES/kio5_bookmarks.mo share/locale/kk/LC_MESSAGES/kio5_fish.mo share/locale/kk/LC_MESSAGES/kio5_info.mo share/locale/kk/LC_MESSAGES/kio5_man.mo share/locale/kk/LC_MESSAGES/kio5_nfs.mo share/locale/kk/LC_MESSAGES/kio5_recentdocuments.mo share/locale/kk/LC_MESSAGES/kio5_sftp.mo share/locale/kk/LC_MESSAGES/kio5_smb.mo share/locale/kk/LC_MESSAGES/kio5_thumbnail.mo share/locale/km/LC_MESSAGES/kfileaudiopreview5.mo share/locale/km/LC_MESSAGES/kio5_activities.mo share/locale/km/LC_MESSAGES/kio5_archive.mo share/locale/km/LC_MESSAGES/kio5_bookmarks.mo share/locale/km/LC_MESSAGES/kio5_fish.mo share/locale/km/LC_MESSAGES/kio5_info.mo share/locale/km/LC_MESSAGES/kio5_man.mo share/locale/km/LC_MESSAGES/kio5_nfs.mo share/locale/km/LC_MESSAGES/kio5_recentdocuments.mo share/locale/km/LC_MESSAGES/kio5_sftp.mo share/locale/km/LC_MESSAGES/kio5_smb.mo share/locale/km/LC_MESSAGES/kio5_thumbnail.mo share/locale/kn/LC_MESSAGES/kfileaudiopreview5.mo share/locale/kn/LC_MESSAGES/kio5_activities.mo share/locale/kn/LC_MESSAGES/kio5_archive.mo share/locale/kn/LC_MESSAGES/kio5_bookmarks.mo share/locale/kn/LC_MESSAGES/kio5_fish.mo share/locale/kn/LC_MESSAGES/kio5_info.mo share/locale/kn/LC_MESSAGES/kio5_man.mo share/locale/kn/LC_MESSAGES/kio5_nfs.mo share/locale/kn/LC_MESSAGES/kio5_sftp.mo share/locale/kn/LC_MESSAGES/kio5_smb.mo share/locale/kn/LC_MESSAGES/kio5_thumbnail.mo share/locale/ko/LC_MESSAGES/kfileaudiopreview5.mo share/locale/ko/LC_MESSAGES/kio5_activities.mo share/locale/ko/LC_MESSAGES/kio5_archive.mo share/locale/ko/LC_MESSAGES/kio5_bookmarks.mo share/locale/ko/LC_MESSAGES/kio5_fish.mo share/locale/ko/LC_MESSAGES/kio5_info.mo share/locale/ko/LC_MESSAGES/kio5_man.mo share/locale/ko/LC_MESSAGES/kio5_mtp.mo share/locale/ko/LC_MESSAGES/kio5_nfs.mo share/locale/ko/LC_MESSAGES/kio5_recentdocuments.mo share/locale/ko/LC_MESSAGES/kio5_sftp.mo share/locale/ko/LC_MESSAGES/kio5_smb.mo share/locale/ko/LC_MESSAGES/kio5_thumbnail.mo share/locale/ku/LC_MESSAGES/kfileaudiopreview5.mo share/locale/ku/LC_MESSAGES/kio5_archive.mo share/locale/ku/LC_MESSAGES/kio5_bookmarks.mo share/locale/ku/LC_MESSAGES/kio5_fish.mo share/locale/ku/LC_MESSAGES/kio5_man.mo share/locale/ku/LC_MESSAGES/kio5_nfs.mo share/locale/ku/LC_MESSAGES/kio5_sftp.mo share/locale/ku/LC_MESSAGES/kio5_smb.mo share/locale/ku/LC_MESSAGES/kio5_thumbnail.mo share/locale/lb/LC_MESSAGES/kfileaudiopreview5.mo share/locale/lb/LC_MESSAGES/kio5_archive.mo share/locale/lb/LC_MESSAGES/kio5_nfs.mo share/locale/lt/LC_MESSAGES/kfileaudiopreview5.mo share/locale/lt/LC_MESSAGES/kio5_activities.mo +share/locale/lt/LC_MESSAGES/kio5_afc.mo share/locale/lt/LC_MESSAGES/kio5_archive.mo share/locale/lt/LC_MESSAGES/kio5_bookmarks.mo share/locale/lt/LC_MESSAGES/kio5_fish.mo share/locale/lt/LC_MESSAGES/kio5_info.mo share/locale/lt/LC_MESSAGES/kio5_man.mo share/locale/lt/LC_MESSAGES/kio5_mtp.mo share/locale/lt/LC_MESSAGES/kio5_nfs.mo share/locale/lt/LC_MESSAGES/kio5_recentdocuments.mo share/locale/lt/LC_MESSAGES/kio5_sftp.mo share/locale/lt/LC_MESSAGES/kio5_smb.mo share/locale/lt/LC_MESSAGES/kio5_thumbnail.mo share/locale/lv/LC_MESSAGES/kfileaudiopreview5.mo share/locale/lv/LC_MESSAGES/kio5_activities.mo share/locale/lv/LC_MESSAGES/kio5_archive.mo share/locale/lv/LC_MESSAGES/kio5_bookmarks.mo share/locale/lv/LC_MESSAGES/kio5_fish.mo share/locale/lv/LC_MESSAGES/kio5_info.mo share/locale/lv/LC_MESSAGES/kio5_man.mo share/locale/lv/LC_MESSAGES/kio5_nfs.mo share/locale/lv/LC_MESSAGES/kio5_recentdocuments.mo share/locale/lv/LC_MESSAGES/kio5_sftp.mo share/locale/lv/LC_MESSAGES/kio5_smb.mo share/locale/lv/LC_MESSAGES/kio5_thumbnail.mo share/locale/mai/LC_MESSAGES/kfileaudiopreview5.mo share/locale/mai/LC_MESSAGES/kio5_archive.mo share/locale/mai/LC_MESSAGES/kio5_bookmarks.mo share/locale/mai/LC_MESSAGES/kio5_fish.mo share/locale/mai/LC_MESSAGES/kio5_info.mo share/locale/mai/LC_MESSAGES/kio5_man.mo share/locale/mai/LC_MESSAGES/kio5_nfs.mo share/locale/mai/LC_MESSAGES/kio5_sftp.mo share/locale/mai/LC_MESSAGES/kio5_smb.mo share/locale/mai/LC_MESSAGES/kio5_thumbnail.mo share/locale/mk/LC_MESSAGES/kfileaudiopreview5.mo share/locale/mk/LC_MESSAGES/kio5_archive.mo share/locale/mk/LC_MESSAGES/kio5_bookmarks.mo share/locale/mk/LC_MESSAGES/kio5_fish.mo share/locale/mk/LC_MESSAGES/kio5_man.mo share/locale/mk/LC_MESSAGES/kio5_nfs.mo share/locale/mk/LC_MESSAGES/kio5_sftp.mo share/locale/mk/LC_MESSAGES/kio5_smb.mo share/locale/mk/LC_MESSAGES/kio5_thumbnail.mo share/locale/ml/LC_MESSAGES/kfileaudiopreview5.mo share/locale/ml/LC_MESSAGES/kio5_archive.mo share/locale/ml/LC_MESSAGES/kio5_bookmarks.mo share/locale/ml/LC_MESSAGES/kio5_fish.mo share/locale/ml/LC_MESSAGES/kio5_info.mo share/locale/ml/LC_MESSAGES/kio5_man.mo share/locale/ml/LC_MESSAGES/kio5_nfs.mo share/locale/ml/LC_MESSAGES/kio5_sftp.mo share/locale/ml/LC_MESSAGES/kio5_smb.mo share/locale/ml/LC_MESSAGES/kio5_thumbnail.mo share/locale/mr/LC_MESSAGES/kfileaudiopreview5.mo share/locale/mr/LC_MESSAGES/kio5_activities.mo share/locale/mr/LC_MESSAGES/kio5_archive.mo share/locale/mr/LC_MESSAGES/kio5_bookmarks.mo share/locale/mr/LC_MESSAGES/kio5_fish.mo share/locale/mr/LC_MESSAGES/kio5_info.mo share/locale/mr/LC_MESSAGES/kio5_man.mo share/locale/mr/LC_MESSAGES/kio5_nfs.mo share/locale/mr/LC_MESSAGES/kio5_recentdocuments.mo share/locale/mr/LC_MESSAGES/kio5_sftp.mo share/locale/mr/LC_MESSAGES/kio5_smb.mo share/locale/mr/LC_MESSAGES/kio5_thumbnail.mo share/locale/ms/LC_MESSAGES/kfileaudiopreview5.mo share/locale/ms/LC_MESSAGES/kio5_activities.mo share/locale/ms/LC_MESSAGES/kio5_archive.mo share/locale/ms/LC_MESSAGES/kio5_bookmarks.mo share/locale/ms/LC_MESSAGES/kio5_fish.mo share/locale/ms/LC_MESSAGES/kio5_info.mo share/locale/ms/LC_MESSAGES/kio5_man.mo share/locale/ms/LC_MESSAGES/kio5_nfs.mo share/locale/ms/LC_MESSAGES/kio5_sftp.mo share/locale/ms/LC_MESSAGES/kio5_smb.mo share/locale/ms/LC_MESSAGES/kio5_thumbnail.mo share/locale/nb/LC_MESSAGES/kfileaudiopreview5.mo share/locale/nb/LC_MESSAGES/kio5_activities.mo share/locale/nb/LC_MESSAGES/kio5_archive.mo share/locale/nb/LC_MESSAGES/kio5_bookmarks.mo share/locale/nb/LC_MESSAGES/kio5_fish.mo share/locale/nb/LC_MESSAGES/kio5_info.mo share/locale/nb/LC_MESSAGES/kio5_man.mo share/locale/nb/LC_MESSAGES/kio5_nfs.mo share/locale/nb/LC_MESSAGES/kio5_recentdocuments.mo share/locale/nb/LC_MESSAGES/kio5_sftp.mo share/locale/nb/LC_MESSAGES/kio5_smb.mo share/locale/nb/LC_MESSAGES/kio5_thumbnail.mo share/locale/nds/LC_MESSAGES/kfileaudiopreview5.mo share/locale/nds/LC_MESSAGES/kio5_activities.mo share/locale/nds/LC_MESSAGES/kio5_archive.mo share/locale/nds/LC_MESSAGES/kio5_bookmarks.mo share/locale/nds/LC_MESSAGES/kio5_fish.mo share/locale/nds/LC_MESSAGES/kio5_info.mo share/locale/nds/LC_MESSAGES/kio5_man.mo share/locale/nds/LC_MESSAGES/kio5_nfs.mo share/locale/nds/LC_MESSAGES/kio5_recentdocuments.mo share/locale/nds/LC_MESSAGES/kio5_sftp.mo share/locale/nds/LC_MESSAGES/kio5_smb.mo share/locale/nds/LC_MESSAGES/kio5_thumbnail.mo share/locale/ne/LC_MESSAGES/kfileaudiopreview5.mo share/locale/ne/LC_MESSAGES/kio5_archive.mo share/locale/ne/LC_MESSAGES/kio5_fish.mo share/locale/ne/LC_MESSAGES/kio5_man.mo share/locale/ne/LC_MESSAGES/kio5_nfs.mo share/locale/ne/LC_MESSAGES/kio5_sftp.mo share/locale/ne/LC_MESSAGES/kio5_smb.mo share/locale/ne/LC_MESSAGES/kio5_thumbnail.mo share/locale/nl/LC_MESSAGES/kfileaudiopreview5.mo share/locale/nl/LC_MESSAGES/kio5_activities.mo +share/locale/nl/LC_MESSAGES/kio5_afc.mo share/locale/nl/LC_MESSAGES/kio5_archive.mo share/locale/nl/LC_MESSAGES/kio5_bookmarks.mo share/locale/nl/LC_MESSAGES/kio5_fish.mo share/locale/nl/LC_MESSAGES/kio5_info.mo share/locale/nl/LC_MESSAGES/kio5_man.mo share/locale/nl/LC_MESSAGES/kio5_mtp.mo share/locale/nl/LC_MESSAGES/kio5_nfs.mo share/locale/nl/LC_MESSAGES/kio5_recentdocuments.mo share/locale/nl/LC_MESSAGES/kio5_sftp.mo share/locale/nl/LC_MESSAGES/kio5_smb.mo share/locale/nl/LC_MESSAGES/kio5_thumbnail.mo share/locale/nn/LC_MESSAGES/kfileaudiopreview5.mo share/locale/nn/LC_MESSAGES/kio5_activities.mo share/locale/nn/LC_MESSAGES/kio5_archive.mo share/locale/nn/LC_MESSAGES/kio5_bookmarks.mo share/locale/nn/LC_MESSAGES/kio5_fish.mo share/locale/nn/LC_MESSAGES/kio5_info.mo share/locale/nn/LC_MESSAGES/kio5_man.mo share/locale/nn/LC_MESSAGES/kio5_mtp.mo share/locale/nn/LC_MESSAGES/kio5_nfs.mo share/locale/nn/LC_MESSAGES/kio5_recentdocuments.mo share/locale/nn/LC_MESSAGES/kio5_sftp.mo share/locale/nn/LC_MESSAGES/kio5_smb.mo share/locale/nn/LC_MESSAGES/kio5_thumbnail.mo share/locale/oc/LC_MESSAGES/kio5_archive.mo share/locale/oc/LC_MESSAGES/kio5_fish.mo share/locale/oc/LC_MESSAGES/kio5_man.mo share/locale/oc/LC_MESSAGES/kio5_nfs.mo share/locale/oc/LC_MESSAGES/kio5_sftp.mo share/locale/oc/LC_MESSAGES/kio5_smb.mo share/locale/oc/LC_MESSAGES/kio5_thumbnail.mo share/locale/or/LC_MESSAGES/kio5_archive.mo share/locale/or/LC_MESSAGES/kio5_bookmarks.mo share/locale/or/LC_MESSAGES/kio5_fish.mo share/locale/or/LC_MESSAGES/kio5_man.mo share/locale/or/LC_MESSAGES/kio5_nfs.mo share/locale/or/LC_MESSAGES/kio5_sftp.mo share/locale/or/LC_MESSAGES/kio5_smb.mo share/locale/or/LC_MESSAGES/kio5_thumbnail.mo share/locale/pa/LC_MESSAGES/kfileaudiopreview5.mo share/locale/pa/LC_MESSAGES/kio5_activities.mo share/locale/pa/LC_MESSAGES/kio5_archive.mo share/locale/pa/LC_MESSAGES/kio5_bookmarks.mo share/locale/pa/LC_MESSAGES/kio5_fish.mo share/locale/pa/LC_MESSAGES/kio5_info.mo share/locale/pa/LC_MESSAGES/kio5_man.mo share/locale/pa/LC_MESSAGES/kio5_mtp.mo share/locale/pa/LC_MESSAGES/kio5_nfs.mo share/locale/pa/LC_MESSAGES/kio5_recentdocuments.mo share/locale/pa/LC_MESSAGES/kio5_sftp.mo share/locale/pa/LC_MESSAGES/kio5_smb.mo share/locale/pa/LC_MESSAGES/kio5_thumbnail.mo share/locale/pl/LC_MESSAGES/kfileaudiopreview5.mo share/locale/pl/LC_MESSAGES/kio5_activities.mo +share/locale/pl/LC_MESSAGES/kio5_afc.mo share/locale/pl/LC_MESSAGES/kio5_archive.mo share/locale/pl/LC_MESSAGES/kio5_bookmarks.mo share/locale/pl/LC_MESSAGES/kio5_fish.mo share/locale/pl/LC_MESSAGES/kio5_info.mo share/locale/pl/LC_MESSAGES/kio5_man.mo share/locale/pl/LC_MESSAGES/kio5_mtp.mo share/locale/pl/LC_MESSAGES/kio5_nfs.mo share/locale/pl/LC_MESSAGES/kio5_recentdocuments.mo share/locale/pl/LC_MESSAGES/kio5_sftp.mo share/locale/pl/LC_MESSAGES/kio5_smb.mo share/locale/pl/LC_MESSAGES/kio5_thumbnail.mo share/locale/pt/LC_MESSAGES/kfileaudiopreview5.mo share/locale/pt/LC_MESSAGES/kio5_activities.mo +share/locale/pt/LC_MESSAGES/kio5_afc.mo share/locale/pt/LC_MESSAGES/kio5_archive.mo share/locale/pt/LC_MESSAGES/kio5_bookmarks.mo share/locale/pt/LC_MESSAGES/kio5_fish.mo share/locale/pt/LC_MESSAGES/kio5_info.mo share/locale/pt/LC_MESSAGES/kio5_man.mo share/locale/pt/LC_MESSAGES/kio5_mtp.mo share/locale/pt/LC_MESSAGES/kio5_nfs.mo share/locale/pt/LC_MESSAGES/kio5_recentdocuments.mo share/locale/pt/LC_MESSAGES/kio5_sftp.mo share/locale/pt/LC_MESSAGES/kio5_smb.mo share/locale/pt/LC_MESSAGES/kio5_thumbnail.mo share/locale/pt_BR/LC_MESSAGES/kfileaudiopreview5.mo share/locale/pt_BR/LC_MESSAGES/kio5_activities.mo +share/locale/pt_BR/LC_MESSAGES/kio5_afc.mo share/locale/pt_BR/LC_MESSAGES/kio5_archive.mo share/locale/pt_BR/LC_MESSAGES/kio5_bookmarks.mo share/locale/pt_BR/LC_MESSAGES/kio5_fish.mo share/locale/pt_BR/LC_MESSAGES/kio5_info.mo share/locale/pt_BR/LC_MESSAGES/kio5_man.mo share/locale/pt_BR/LC_MESSAGES/kio5_mtp.mo share/locale/pt_BR/LC_MESSAGES/kio5_nfs.mo share/locale/pt_BR/LC_MESSAGES/kio5_recentdocuments.mo share/locale/pt_BR/LC_MESSAGES/kio5_sftp.mo share/locale/pt_BR/LC_MESSAGES/kio5_smb.mo share/locale/pt_BR/LC_MESSAGES/kio5_thumbnail.mo share/locale/ro/LC_MESSAGES/kfileaudiopreview5.mo share/locale/ro/LC_MESSAGES/kio5_activities.mo share/locale/ro/LC_MESSAGES/kio5_archive.mo share/locale/ro/LC_MESSAGES/kio5_bookmarks.mo share/locale/ro/LC_MESSAGES/kio5_fish.mo share/locale/ro/LC_MESSAGES/kio5_info.mo share/locale/ro/LC_MESSAGES/kio5_man.mo share/locale/ro/LC_MESSAGES/kio5_mtp.mo share/locale/ro/LC_MESSAGES/kio5_nfs.mo share/locale/ro/LC_MESSAGES/kio5_recentdocuments.mo share/locale/ro/LC_MESSAGES/kio5_sftp.mo share/locale/ro/LC_MESSAGES/kio5_smb.mo share/locale/ro/LC_MESSAGES/kio5_thumbnail.mo share/locale/ru/LC_MESSAGES/kfileaudiopreview5.mo share/locale/ru/LC_MESSAGES/kio5_activities.mo +share/locale/ru/LC_MESSAGES/kio5_afc.mo share/locale/ru/LC_MESSAGES/kio5_archive.mo share/locale/ru/LC_MESSAGES/kio5_bookmarks.mo share/locale/ru/LC_MESSAGES/kio5_fish.mo share/locale/ru/LC_MESSAGES/kio5_info.mo share/locale/ru/LC_MESSAGES/kio5_man.mo share/locale/ru/LC_MESSAGES/kio5_mtp.mo share/locale/ru/LC_MESSAGES/kio5_nfs.mo share/locale/ru/LC_MESSAGES/kio5_recentdocuments.mo share/locale/ru/LC_MESSAGES/kio5_sftp.mo share/locale/ru/LC_MESSAGES/kio5_smb.mo share/locale/ru/LC_MESSAGES/kio5_thumbnail.mo share/locale/se/LC_MESSAGES/kfileaudiopreview5.mo share/locale/se/LC_MESSAGES/kio5_activities.mo share/locale/se/LC_MESSAGES/kio5_fish.mo share/locale/se/LC_MESSAGES/kio5_man.mo share/locale/se/LC_MESSAGES/kio5_nfs.mo share/locale/se/LC_MESSAGES/kio5_sftp.mo share/locale/se/LC_MESSAGES/kio5_smb.mo share/locale/se/LC_MESSAGES/kio5_thumbnail.mo share/locale/si/LC_MESSAGES/kio5_archive.mo share/locale/si/LC_MESSAGES/kio5_bookmarks.mo share/locale/si/LC_MESSAGES/kio5_fish.mo share/locale/si/LC_MESSAGES/kio5_info.mo share/locale/si/LC_MESSAGES/kio5_man.mo share/locale/si/LC_MESSAGES/kio5_nfs.mo share/locale/si/LC_MESSAGES/kio5_sftp.mo share/locale/si/LC_MESSAGES/kio5_smb.mo share/locale/si/LC_MESSAGES/kio5_thumbnail.mo share/locale/sk/LC_MESSAGES/kfileaudiopreview5.mo share/locale/sk/LC_MESSAGES/kio5_activities.mo +share/locale/sk/LC_MESSAGES/kio5_afc.mo share/locale/sk/LC_MESSAGES/kio5_archive.mo share/locale/sk/LC_MESSAGES/kio5_bookmarks.mo share/locale/sk/LC_MESSAGES/kio5_fish.mo share/locale/sk/LC_MESSAGES/kio5_info.mo share/locale/sk/LC_MESSAGES/kio5_man.mo share/locale/sk/LC_MESSAGES/kio5_mtp.mo share/locale/sk/LC_MESSAGES/kio5_nfs.mo share/locale/sk/LC_MESSAGES/kio5_recentdocuments.mo share/locale/sk/LC_MESSAGES/kio5_sftp.mo share/locale/sk/LC_MESSAGES/kio5_smb.mo share/locale/sk/LC_MESSAGES/kio5_thumbnail.mo share/locale/sl/LC_MESSAGES/kfileaudiopreview5.mo share/locale/sl/LC_MESSAGES/kio5_activities.mo +share/locale/sl/LC_MESSAGES/kio5_afc.mo share/locale/sl/LC_MESSAGES/kio5_archive.mo share/locale/sl/LC_MESSAGES/kio5_bookmarks.mo share/locale/sl/LC_MESSAGES/kio5_fish.mo share/locale/sl/LC_MESSAGES/kio5_info.mo share/locale/sl/LC_MESSAGES/kio5_man.mo share/locale/sl/LC_MESSAGES/kio5_mtp.mo share/locale/sl/LC_MESSAGES/kio5_nfs.mo share/locale/sl/LC_MESSAGES/kio5_recentdocuments.mo share/locale/sl/LC_MESSAGES/kio5_sftp.mo share/locale/sl/LC_MESSAGES/kio5_smb.mo share/locale/sl/LC_MESSAGES/kio5_thumbnail.mo share/locale/sq/LC_MESSAGES/kfileaudiopreview5.mo share/locale/sq/LC_MESSAGES/kio5_archive.mo share/locale/sq/LC_MESSAGES/kio5_bookmarks.mo share/locale/sq/LC_MESSAGES/kio5_fish.mo share/locale/sq/LC_MESSAGES/kio5_info.mo share/locale/sq/LC_MESSAGES/kio5_man.mo share/locale/sq/LC_MESSAGES/kio5_nfs.mo share/locale/sq/LC_MESSAGES/kio5_sftp.mo share/locale/sq/LC_MESSAGES/kio5_smb.mo share/locale/sq/LC_MESSAGES/kio5_thumbnail.mo share/locale/sr/LC_MESSAGES/kfileaudiopreview5.mo share/locale/sr/LC_MESSAGES/kio5_activities.mo share/locale/sr/LC_MESSAGES/kio5_archive.mo share/locale/sr/LC_MESSAGES/kio5_bookmarks.mo share/locale/sr/LC_MESSAGES/kio5_fish.mo share/locale/sr/LC_MESSAGES/kio5_info.mo share/locale/sr/LC_MESSAGES/kio5_man.mo share/locale/sr/LC_MESSAGES/kio5_mtp.mo share/locale/sr/LC_MESSAGES/kio5_nfs.mo share/locale/sr/LC_MESSAGES/kio5_recentdocuments.mo share/locale/sr/LC_MESSAGES/kio5_sftp.mo share/locale/sr/LC_MESSAGES/kio5_smb.mo share/locale/sr/LC_MESSAGES/kio5_thumbnail.mo share/locale/sr@ijekavian/LC_MESSAGES/kfileaudiopreview5.mo share/locale/sr@ijekavian/LC_MESSAGES/kio5_activities.mo share/locale/sr@ijekavian/LC_MESSAGES/kio5_archive.mo share/locale/sr@ijekavian/LC_MESSAGES/kio5_bookmarks.mo share/locale/sr@ijekavian/LC_MESSAGES/kio5_fish.mo share/locale/sr@ijekavian/LC_MESSAGES/kio5_info.mo share/locale/sr@ijekavian/LC_MESSAGES/kio5_man.mo share/locale/sr@ijekavian/LC_MESSAGES/kio5_mtp.mo share/locale/sr@ijekavian/LC_MESSAGES/kio5_nfs.mo share/locale/sr@ijekavian/LC_MESSAGES/kio5_recentdocuments.mo share/locale/sr@ijekavian/LC_MESSAGES/kio5_sftp.mo share/locale/sr@ijekavian/LC_MESSAGES/kio5_smb.mo share/locale/sr@ijekavian/LC_MESSAGES/kio5_thumbnail.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kfileaudiopreview5.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kio5_activities.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kio5_archive.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kio5_bookmarks.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kio5_fish.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kio5_info.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kio5_man.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kio5_mtp.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kio5_nfs.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kio5_recentdocuments.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kio5_sftp.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kio5_smb.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kio5_thumbnail.mo share/locale/sr@latin/LC_MESSAGES/kfileaudiopreview5.mo share/locale/sr@latin/LC_MESSAGES/kio5_activities.mo share/locale/sr@latin/LC_MESSAGES/kio5_archive.mo share/locale/sr@latin/LC_MESSAGES/kio5_bookmarks.mo share/locale/sr@latin/LC_MESSAGES/kio5_fish.mo share/locale/sr@latin/LC_MESSAGES/kio5_info.mo share/locale/sr@latin/LC_MESSAGES/kio5_man.mo share/locale/sr@latin/LC_MESSAGES/kio5_mtp.mo share/locale/sr@latin/LC_MESSAGES/kio5_nfs.mo share/locale/sr@latin/LC_MESSAGES/kio5_recentdocuments.mo share/locale/sr@latin/LC_MESSAGES/kio5_sftp.mo share/locale/sr@latin/LC_MESSAGES/kio5_smb.mo share/locale/sr@latin/LC_MESSAGES/kio5_thumbnail.mo share/locale/sv/LC_MESSAGES/kfileaudiopreview5.mo share/locale/sv/LC_MESSAGES/kio5_activities.mo share/locale/sv/LC_MESSAGES/kio5_archive.mo share/locale/sv/LC_MESSAGES/kio5_bookmarks.mo share/locale/sv/LC_MESSAGES/kio5_fish.mo share/locale/sv/LC_MESSAGES/kio5_info.mo share/locale/sv/LC_MESSAGES/kio5_man.mo share/locale/sv/LC_MESSAGES/kio5_mtp.mo share/locale/sv/LC_MESSAGES/kio5_nfs.mo share/locale/sv/LC_MESSAGES/kio5_recentdocuments.mo share/locale/sv/LC_MESSAGES/kio5_sftp.mo share/locale/sv/LC_MESSAGES/kio5_smb.mo share/locale/sv/LC_MESSAGES/kio5_thumbnail.mo share/locale/ta/LC_MESSAGES/kfileaudiopreview5.mo share/locale/ta/LC_MESSAGES/kio5_activities.mo share/locale/ta/LC_MESSAGES/kio5_archive.mo share/locale/ta/LC_MESSAGES/kio5_bookmarks.mo share/locale/ta/LC_MESSAGES/kio5_fish.mo share/locale/ta/LC_MESSAGES/kio5_info.mo share/locale/ta/LC_MESSAGES/kio5_man.mo share/locale/ta/LC_MESSAGES/kio5_mtp.mo share/locale/ta/LC_MESSAGES/kio5_nfs.mo share/locale/ta/LC_MESSAGES/kio5_recentdocuments.mo share/locale/ta/LC_MESSAGES/kio5_sftp.mo share/locale/ta/LC_MESSAGES/kio5_smb.mo share/locale/ta/LC_MESSAGES/kio5_thumbnail.mo share/locale/te/LC_MESSAGES/kfileaudiopreview5.mo share/locale/te/LC_MESSAGES/kio5_archive.mo share/locale/te/LC_MESSAGES/kio5_bookmarks.mo share/locale/te/LC_MESSAGES/kio5_fish.mo share/locale/te/LC_MESSAGES/kio5_man.mo share/locale/te/LC_MESSAGES/kio5_nfs.mo share/locale/te/LC_MESSAGES/kio5_sftp.mo share/locale/te/LC_MESSAGES/kio5_smb.mo share/locale/te/LC_MESSAGES/kio5_thumbnail.mo share/locale/tg/LC_MESSAGES/kfileaudiopreview5.mo share/locale/tg/LC_MESSAGES/kio5_activities.mo share/locale/tg/LC_MESSAGES/kio5_archive.mo share/locale/tg/LC_MESSAGES/kio5_bookmarks.mo share/locale/tg/LC_MESSAGES/kio5_fish.mo share/locale/tg/LC_MESSAGES/kio5_info.mo share/locale/tg/LC_MESSAGES/kio5_man.mo share/locale/tg/LC_MESSAGES/kio5_nfs.mo share/locale/tg/LC_MESSAGES/kio5_sftp.mo share/locale/tg/LC_MESSAGES/kio5_smb.mo share/locale/tg/LC_MESSAGES/kio5_thumbnail.mo share/locale/th/LC_MESSAGES/kfileaudiopreview5.mo share/locale/th/LC_MESSAGES/kio5_activities.mo share/locale/th/LC_MESSAGES/kio5_archive.mo share/locale/th/LC_MESSAGES/kio5_bookmarks.mo share/locale/th/LC_MESSAGES/kio5_fish.mo share/locale/th/LC_MESSAGES/kio5_info.mo share/locale/th/LC_MESSAGES/kio5_man.mo share/locale/th/LC_MESSAGES/kio5_nfs.mo share/locale/th/LC_MESSAGES/kio5_sftp.mo share/locale/th/LC_MESSAGES/kio5_smb.mo share/locale/th/LC_MESSAGES/kio5_thumbnail.mo share/locale/tr/LC_MESSAGES/kfileaudiopreview5.mo share/locale/tr/LC_MESSAGES/kio5_activities.mo +share/locale/tr/LC_MESSAGES/kio5_afc.mo share/locale/tr/LC_MESSAGES/kio5_archive.mo share/locale/tr/LC_MESSAGES/kio5_bookmarks.mo share/locale/tr/LC_MESSAGES/kio5_fish.mo share/locale/tr/LC_MESSAGES/kio5_info.mo share/locale/tr/LC_MESSAGES/kio5_man.mo share/locale/tr/LC_MESSAGES/kio5_mtp.mo share/locale/tr/LC_MESSAGES/kio5_nfs.mo share/locale/tr/LC_MESSAGES/kio5_recentdocuments.mo share/locale/tr/LC_MESSAGES/kio5_sftp.mo share/locale/tr/LC_MESSAGES/kio5_smb.mo share/locale/tr/LC_MESSAGES/kio5_thumbnail.mo share/locale/ug/LC_MESSAGES/kfileaudiopreview5.mo share/locale/ug/LC_MESSAGES/kio5_activities.mo share/locale/ug/LC_MESSAGES/kio5_archive.mo share/locale/ug/LC_MESSAGES/kio5_bookmarks.mo share/locale/ug/LC_MESSAGES/kio5_fish.mo share/locale/ug/LC_MESSAGES/kio5_info.mo share/locale/ug/LC_MESSAGES/kio5_man.mo share/locale/ug/LC_MESSAGES/kio5_nfs.mo share/locale/ug/LC_MESSAGES/kio5_recentdocuments.mo share/locale/ug/LC_MESSAGES/kio5_sftp.mo share/locale/ug/LC_MESSAGES/kio5_smb.mo share/locale/ug/LC_MESSAGES/kio5_thumbnail.mo share/locale/uk/LC_MESSAGES/kfileaudiopreview5.mo share/locale/uk/LC_MESSAGES/kio5_activities.mo +share/locale/uk/LC_MESSAGES/kio5_afc.mo share/locale/uk/LC_MESSAGES/kio5_archive.mo share/locale/uk/LC_MESSAGES/kio5_bookmarks.mo share/locale/uk/LC_MESSAGES/kio5_fish.mo share/locale/uk/LC_MESSAGES/kio5_info.mo share/locale/uk/LC_MESSAGES/kio5_man.mo share/locale/uk/LC_MESSAGES/kio5_mtp.mo share/locale/uk/LC_MESSAGES/kio5_nfs.mo share/locale/uk/LC_MESSAGES/kio5_recentdocuments.mo share/locale/uk/LC_MESSAGES/kio5_sftp.mo share/locale/uk/LC_MESSAGES/kio5_smb.mo share/locale/uk/LC_MESSAGES/kio5_thumbnail.mo share/locale/uz/LC_MESSAGES/kfileaudiopreview5.mo share/locale/uz/LC_MESSAGES/kio5_archive.mo share/locale/uz/LC_MESSAGES/kio5_fish.mo share/locale/uz/LC_MESSAGES/kio5_man.mo share/locale/uz/LC_MESSAGES/kio5_nfs.mo share/locale/uz/LC_MESSAGES/kio5_sftp.mo share/locale/uz/LC_MESSAGES/kio5_smb.mo share/locale/uz/LC_MESSAGES/kio5_thumbnail.mo share/locale/uz@cyrillic/LC_MESSAGES/kfileaudiopreview5.mo share/locale/uz@cyrillic/LC_MESSAGES/kio5_archive.mo share/locale/uz@cyrillic/LC_MESSAGES/kio5_fish.mo share/locale/uz@cyrillic/LC_MESSAGES/kio5_man.mo share/locale/uz@cyrillic/LC_MESSAGES/kio5_nfs.mo share/locale/uz@cyrillic/LC_MESSAGES/kio5_sftp.mo share/locale/uz@cyrillic/LC_MESSAGES/kio5_smb.mo share/locale/uz@cyrillic/LC_MESSAGES/kio5_thumbnail.mo share/locale/vi/LC_MESSAGES/kfileaudiopreview5.mo share/locale/vi/LC_MESSAGES/kio5_activities.mo +share/locale/vi/LC_MESSAGES/kio5_afc.mo share/locale/vi/LC_MESSAGES/kio5_archive.mo share/locale/vi/LC_MESSAGES/kio5_bookmarks.mo share/locale/vi/LC_MESSAGES/kio5_fish.mo share/locale/vi/LC_MESSAGES/kio5_info.mo share/locale/vi/LC_MESSAGES/kio5_man.mo share/locale/vi/LC_MESSAGES/kio5_mtp.mo share/locale/vi/LC_MESSAGES/kio5_nfs.mo share/locale/vi/LC_MESSAGES/kio5_recentdocuments.mo share/locale/vi/LC_MESSAGES/kio5_sftp.mo share/locale/vi/LC_MESSAGES/kio5_smb.mo share/locale/vi/LC_MESSAGES/kio5_thumbnail.mo share/locale/wa/LC_MESSAGES/kfileaudiopreview5.mo share/locale/wa/LC_MESSAGES/kio5_activities.mo share/locale/wa/LC_MESSAGES/kio5_archive.mo share/locale/wa/LC_MESSAGES/kio5_bookmarks.mo share/locale/wa/LC_MESSAGES/kio5_fish.mo share/locale/wa/LC_MESSAGES/kio5_info.mo share/locale/wa/LC_MESSAGES/kio5_man.mo share/locale/wa/LC_MESSAGES/kio5_nfs.mo share/locale/wa/LC_MESSAGES/kio5_sftp.mo share/locale/wa/LC_MESSAGES/kio5_smb.mo share/locale/wa/LC_MESSAGES/kio5_thumbnail.mo share/locale/xh/LC_MESSAGES/kio5_man.mo share/locale/xh/LC_MESSAGES/kio5_nfs.mo share/locale/xh/LC_MESSAGES/kio5_sftp.mo share/locale/xh/LC_MESSAGES/kio5_smb.mo share/locale/zh_CN/LC_MESSAGES/kfileaudiopreview5.mo share/locale/zh_CN/LC_MESSAGES/kio5_activities.mo +share/locale/zh_CN/LC_MESSAGES/kio5_afc.mo share/locale/zh_CN/LC_MESSAGES/kio5_archive.mo share/locale/zh_CN/LC_MESSAGES/kio5_bookmarks.mo share/locale/zh_CN/LC_MESSAGES/kio5_fish.mo share/locale/zh_CN/LC_MESSAGES/kio5_info.mo share/locale/zh_CN/LC_MESSAGES/kio5_man.mo share/locale/zh_CN/LC_MESSAGES/kio5_mtp.mo share/locale/zh_CN/LC_MESSAGES/kio5_nfs.mo share/locale/zh_CN/LC_MESSAGES/kio5_recentdocuments.mo share/locale/zh_CN/LC_MESSAGES/kio5_sftp.mo share/locale/zh_CN/LC_MESSAGES/kio5_smb.mo share/locale/zh_CN/LC_MESSAGES/kio5_thumbnail.mo share/locale/zh_HK/LC_MESSAGES/kfileaudiopreview5.mo share/locale/zh_TW/LC_MESSAGES/kfileaudiopreview5.mo share/locale/zh_TW/LC_MESSAGES/kio5_activities.mo +share/locale/zh_TW/LC_MESSAGES/kio5_afc.mo share/locale/zh_TW/LC_MESSAGES/kio5_archive.mo share/locale/zh_TW/LC_MESSAGES/kio5_bookmarks.mo share/locale/zh_TW/LC_MESSAGES/kio5_fish.mo share/locale/zh_TW/LC_MESSAGES/kio5_info.mo share/locale/zh_TW/LC_MESSAGES/kio5_man.mo share/locale/zh_TW/LC_MESSAGES/kio5_mtp.mo share/locale/zh_TW/LC_MESSAGES/kio5_nfs.mo share/locale/zh_TW/LC_MESSAGES/kio5_recentdocuments.mo share/locale/zh_TW/LC_MESSAGES/kio5_sftp.mo share/locale/zh_TW/LC_MESSAGES/kio5_smb.mo share/locale/zh_TW/LC_MESSAGES/kio5_thumbnail.mo %%SAMBA%%share/mime/packages/org.kde.kio.smb.xml share/qlogging-categories5/kio-extras.categories share/qlogging-categories5/kio-extras.renamecategories %%MTP%%share/remoteview/mtp-network.desktop %%SAMBA%%share/remoteview/smb-network.desktop %%MTP%%share/solid/actions/solid_mtp.desktop diff --git a/devel/kirigami-gallery/distinfo b/devel/kirigami-gallery/distinfo index c2bc1ce1c212..95fc28a24c2d 100644 --- a/devel/kirigami-gallery/distinfo +++ b/devel/kirigami-gallery/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1677828132 -SHA256 (KDE/release-service/22.12.3/kirigami-gallery-22.12.3.tar.xz) = 9a960d0e94cc13102ecdaacb46c1721ffeeb598bc7ca09b1e313db22b4b37afd -SIZE (KDE/release-service/22.12.3/kirigami-gallery-22.12.3.tar.xz) = 350212 +TIMESTAMP = 1681548254 +SHA256 (KDE/release-service/23.04.0/kirigami-gallery-23.04.0.tar.xz) = 1020f81c6376b194e678484bc6e565f09e5601a546d75a4d1065cad2ad37d0ad +SIZE (KDE/release-service/23.04.0/kirigami-gallery-23.04.0.tar.xz) = 350224 diff --git a/devel/kpublictransport/distinfo b/devel/kpublictransport/distinfo index f4093b493fd4..6768bad4a2a1 100644 --- a/devel/kpublictransport/distinfo +++ b/devel/kpublictransport/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1677828145 -SHA256 (KDE/release-service/22.12.3/kpublictransport-22.12.3.tar.xz) = 8c5f79f4672965defe3db8e0a0bc6755b2a0e9b7906219ea6af366425bf95dd2 -SIZE (KDE/release-service/22.12.3/kpublictransport-22.12.3.tar.xz) = 490936 +TIMESTAMP = 1681548272 +SHA256 (KDE/release-service/23.04.0/kpublictransport-23.04.0.tar.xz) = 1f1030bbd5520a574e9d426cc12d88d68c5f08864031f26327ce49d664650603 +SIZE (KDE/release-service/23.04.0/kpublictransport-23.04.0.tar.xz) = 533660 diff --git a/devel/kpublictransport/pkg-plist b/devel/kpublictransport/pkg-plist index e554c1018086..b66d529077a3 100644 --- a/devel/kpublictransport/pkg-plist +++ b/devel/kpublictransport/pkg-plist @@ -1,91 +1,91 @@ include/KPublicTransport/KPublicTransport/AbstractQueryModel include/KPublicTransport/KPublicTransport/Attribution include/KPublicTransport/KPublicTransport/Backend include/KPublicTransport/KPublicTransport/BackendModel include/KPublicTransport/KPublicTransport/CoverageArea include/KPublicTransport/KPublicTransport/Datatypes -include/KPublicTransport/KPublicTransport/Departure -include/KPublicTransport/KPublicTransport/DepartureQueryModel -include/KPublicTransport/KPublicTransport/DepartureReply -include/KPublicTransport/KPublicTransport/DepartureRequest include/KPublicTransport/KPublicTransport/Disruption include/KPublicTransport/KPublicTransport/Equipment include/KPublicTransport/KPublicTransport/IndividualTransport include/KPublicTransport/KPublicTransport/Journey include/KPublicTransport/KPublicTransport/JourneyQueryModel include/KPublicTransport/KPublicTransport/JourneyReply include/KPublicTransport/KPublicTransport/JourneyRequest include/KPublicTransport/KPublicTransport/Line include/KPublicTransport/KPublicTransport/Load include/KPublicTransport/KPublicTransport/Location include/KPublicTransport/KPublicTransport/LocationHistoryModel include/KPublicTransport/KPublicTransport/LocationQueryModel include/KPublicTransport/KPublicTransport/LocationReply include/KPublicTransport/KPublicTransport/LocationRequest include/KPublicTransport/KPublicTransport/Manager +include/KPublicTransport/KPublicTransport/OnboardStatus include/KPublicTransport/KPublicTransport/Path include/KPublicTransport/KPublicTransport/PathModel include/KPublicTransport/KPublicTransport/Platform include/KPublicTransport/KPublicTransport/RentalVehicle include/KPublicTransport/KPublicTransport/Reply include/KPublicTransport/KPublicTransport/Stopover include/KPublicTransport/KPublicTransport/StopoverQueryModel include/KPublicTransport/KPublicTransport/StopoverReply include/KPublicTransport/KPublicTransport/StopoverRequest include/KPublicTransport/KPublicTransport/Vehicle include/KPublicTransport/KPublicTransport/VehicleLayoutQueryModel include/KPublicTransport/KPublicTransport/VehicleLayoutReply include/KPublicTransport/KPublicTransport/VehicleLayoutRequest include/KPublicTransport/kpublictransport/abstractquerymodel.h include/KPublicTransport/kpublictransport/attribution.h include/KPublicTransport/kpublictransport/backend.h include/KPublicTransport/kpublictransport/backendmodel.h include/KPublicTransport/kpublictransport/coveragearea.h include/KPublicTransport/kpublictransport/datatypes.h -include/KPublicTransport/kpublictransport/departure.h -include/KPublicTransport/kpublictransport/departurequerymodel.h -include/KPublicTransport/kpublictransport/departurereply.h -include/KPublicTransport/kpublictransport/departurerequest.h include/KPublicTransport/kpublictransport/disruption.h include/KPublicTransport/kpublictransport/equipment.h include/KPublicTransport/kpublictransport/individualtransport.h include/KPublicTransport/kpublictransport/journey.h include/KPublicTransport/kpublictransport/journeyquerymodel.h include/KPublicTransport/kpublictransport/journeyreply.h include/KPublicTransport/kpublictransport/journeyrequest.h include/KPublicTransport/kpublictransport/kpublictransport_export.h +include/KPublicTransport/kpublictransport/kpublictransportonboard_export.h include/KPublicTransport/kpublictransport/line.h include/KPublicTransport/kpublictransport/load.h include/KPublicTransport/kpublictransport/location.h include/KPublicTransport/kpublictransport/locationhistorymodel.h include/KPublicTransport/kpublictransport/locationquerymodel.h include/KPublicTransport/kpublictransport/locationreply.h include/KPublicTransport/kpublictransport/locationrequest.h include/KPublicTransport/kpublictransport/manager.h include/KPublicTransport/kpublictransport/path.h include/KPublicTransport/kpublictransport/pathmodel.h include/KPublicTransport/kpublictransport/platform.h include/KPublicTransport/kpublictransport/rentalvehicle.h include/KPublicTransport/kpublictransport/reply.h include/KPublicTransport/kpublictransport/stopover.h include/KPublicTransport/kpublictransport/stopoverquerymodel.h include/KPublicTransport/kpublictransport/stopoverreply.h include/KPublicTransport/kpublictransport/stopoverrequest.h include/KPublicTransport/kpublictransport/vehicle.h include/KPublicTransport/kpublictransport/vehiclelayoutquerymodel.h include/KPublicTransport/kpublictransport/vehiclelayoutreply.h include/KPublicTransport/kpublictransport/vehiclelayoutrequest.h include/KPublicTransport/kpublictransport_version.h lib/cmake/KPublicTransport/KPublicTransportConfig.cmake lib/cmake/KPublicTransport/KPublicTransportConfigVersion.cmake lib/cmake/KPublicTransport/KPublicTransportTargets-%%CMAKE_BUILD_TYPE%%.cmake lib/cmake/KPublicTransport/KPublicTransportTargets.cmake lib/libKPublicTransport.so lib/libKPublicTransport.so.1 lib/libKPublicTransport.so.%%KDE_APPLICATIONS_SHLIB_VER%% +lib/libKPublicTransportOnboard.so +lib/libKPublicTransportOnboard.so.1 +lib/libKPublicTransportOnboard.so.%%KDE_APPLICATIONS_VERSION%% %%QT_QMLDIR%%/org/kde/kpublictransport/libkpublictransportqmlplugin.so +%%QT_QMLDIR%%/org/kde/kpublictransport/onboard/libkpublictransportonboardqmlplugin.so +%%QT_QMLDIR%%/org/kde/kpublictransport/onboard/qmldir %%QT_QMLDIR%%/org/kde/kpublictransport/qmldir %%QT_QMLDIR%%/org/kde/kpublictransport/ui/VehicleSectionItem.qml %%QT_QMLDIR%%/org/kde/kpublictransport/ui/libkpublictransportquickplugin.so %%QT_QMLDIR%%/org/kde/kpublictransport/ui/qmldir share/qlogging-categories5/org_kde_kpublictransport.categories +share/qlogging-categories5/org_kde_kpublictransport_onboard.categories diff --git a/devel/lokalize/distinfo b/devel/lokalize/distinfo index fa1549ecdab9..52de0e7bbfec 100644 --- a/devel/lokalize/distinfo +++ b/devel/lokalize/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1677828142 -SHA256 (KDE/release-service/22.12.3/lokalize-22.12.3.tar.xz) = c141f4a26d402a392f2a589e0e29be3b91e061c18cb688b412ffd662fa8c1733 -SIZE (KDE/release-service/22.12.3/lokalize-22.12.3.tar.xz) = 2115776 +TIMESTAMP = 1681548271 +SHA256 (KDE/release-service/23.04.0/lokalize-23.04.0.tar.xz) = fb6501c258f2132dfa9c3fe17b4f75eb3ab3b363746dd22d9408504f2ac90707 +SIZE (KDE/release-service/23.04.0/lokalize-23.04.0.tar.xz) = 2116400 diff --git a/devel/lokalize/pkg-plist b/devel/lokalize/pkg-plist index 5b7aced5b85e..d7b4607014a8 100644 --- a/devel/lokalize/pkg-plist +++ b/devel/lokalize/pkg-plist @@ -1,207 +1,207 @@ bin/lokalize share/applications/org.kde.lokalize.desktop share/config.kcfg/lokalize.kcfg share/icons/hicolor/128x128/apps/lokalize.png share/icons/hicolor/32x32/apps/lokalize.png share/icons/hicolor/64x64/apps/lokalize.png share/icons/hicolor/scalable/apps/lokalize.svgz share/knotifications5/lokalize.notifyrc share/kxmlgui5/lokalize/editorui.rc share/kxmlgui5/lokalize/filesearchtabui.rc share/kxmlgui5/lokalize/lokalizemainwindowui.rc share/kxmlgui5/lokalize/projectmanagerui.rc share/kxmlgui5/lokalize/scriptsui.rc share/kxmlgui5/lokalize/translationmemoryrui.rc share/locale/ar/LC_MESSAGES/lokalize.mo share/locale/az/LC_MESSAGES/lokalize.mo share/locale/be/LC_MESSAGES/lokalize.mo share/locale/bg/LC_MESSAGES/lokalize.mo share/locale/bs/LC_MESSAGES/lokalize.mo share/locale/ca/LC_MESSAGES/lokalize.mo share/locale/ca@valencia/LC_MESSAGES/lokalize.mo share/locale/cs/LC_MESSAGES/lokalize.mo share/locale/csb/LC_MESSAGES/lokalize.mo share/locale/da/LC_MESSAGES/lokalize.mo share/locale/de/LC_MESSAGES/lokalize.mo share/locale/el/LC_MESSAGES/lokalize.mo share/locale/en_GB/LC_MESSAGES/lokalize.mo share/locale/eo/LC_MESSAGES/lokalize.mo share/locale/es/LC_MESSAGES/lokalize.mo share/locale/et/LC_MESSAGES/lokalize.mo share/locale/eu/LC_MESSAGES/lokalize.mo share/locale/fi/LC_MESSAGES/lokalize.mo share/locale/fr/LC_MESSAGES/lokalize.mo share/locale/ga/LC_MESSAGES/lokalize.mo share/locale/gl/LC_MESSAGES/lokalize.mo share/locale/he/LC_MESSAGES/lokalize.mo share/locale/hr/LC_MESSAGES/lokalize.mo share/locale/hu/LC_MESSAGES/lokalize.mo share/locale/ia/LC_MESSAGES/lokalize.mo share/locale/id/LC_MESSAGES/lokalize.mo share/locale/ie/LC_MESSAGES/lokalize.mo share/locale/is/LC_MESSAGES/lokalize.mo share/locale/it/LC_MESSAGES/lokalize.mo share/locale/ja/LC_MESSAGES/lokalize.mo share/locale/ka/LC_MESSAGES/lokalize.mo share/locale/kk/LC_MESSAGES/lokalize.mo share/locale/km/LC_MESSAGES/lokalize.mo share/locale/ko/LC_MESSAGES/lokalize.mo share/locale/ku/LC_MESSAGES/lokalize.mo share/locale/lt/LC_MESSAGES/lokalize.mo share/locale/lv/LC_MESSAGES/lokalize.mo share/locale/mai/LC_MESSAGES/lokalize.mo share/locale/mr/LC_MESSAGES/lokalize.mo share/locale/my/LC_MESSAGES/lokalize.mo share/locale/nb/LC_MESSAGES/lokalize.mo share/locale/nds/LC_MESSAGES/lokalize.mo share/locale/nl/LC_MESSAGES/lokalize.mo share/locale/nn/LC_MESSAGES/lokalize.mo share/locale/oc/LC_MESSAGES/lokalize.mo share/locale/pa/LC_MESSAGES/lokalize.mo share/locale/pl/LC_MESSAGES/lokalize.mo share/locale/pt/LC_MESSAGES/lokalize.mo share/locale/pt_BR/LC_MESSAGES/lokalize.mo share/locale/ro/LC_MESSAGES/lokalize.mo share/locale/ru/LC_MESSAGES/lokalize.mo share/locale/sk/LC_MESSAGES/lokalize.mo share/locale/sl/LC_MESSAGES/lokalize.mo share/locale/sq/LC_MESSAGES/lokalize.mo share/locale/sr/LC_MESSAGES/lokalize.mo share/locale/sr@ijekavian/LC_MESSAGES/lokalize.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/lokalize.mo share/locale/sr@latin/LC_MESSAGES/lokalize.mo share/locale/sv/LC_MESSAGES/lokalize.mo share/locale/th/LC_MESSAGES/lokalize.mo share/locale/tr/LC_MESSAGES/lokalize.mo share/locale/ug/LC_MESSAGES/lokalize.mo share/locale/uk/LC_MESSAGES/lokalize.mo share/locale/vi/LC_MESSAGES/lokalize.mo share/locale/wa/LC_MESSAGES/lokalize.mo share/locale/zh_CN/LC_MESSAGES/lokalize.mo share/locale/zh_TW/LC_MESSAGES/lokalize.mo %%DATADIR%%/icons/hicolor/16x16/actions/approved.png %%DATADIR%%/icons/hicolor/16x16/actions/insert_arg.png %%DATADIR%%/icons/hicolor/16x16/actions/insert_tag.png %%DATADIR%%/icons/hicolor/16x16/actions/l10n/sr/approved.png %%DATADIR%%/icons/hicolor/16x16/actions/l10n/sr@ijekavian/approved.png %%DATADIR%%/icons/hicolor/16x16/actions/l10n/sr@ijekavianlatin/approved.png %%DATADIR%%/icons/hicolor/16x16/actions/l10n/sr@latin/approved.png %%DATADIR%%/icons/hicolor/16x16/actions/msgid2msgstr.png %%DATADIR%%/icons/hicolor/16x16/actions/nexterror.png %%DATADIR%%/icons/hicolor/16x16/actions/nextfuzzy.png %%DATADIR%%/icons/hicolor/16x16/actions/nextfuzzyuntrans.png %%DATADIR%%/icons/hicolor/16x16/actions/nextpo.png %%DATADIR%%/icons/hicolor/16x16/actions/nexttemplate.png %%DATADIR%%/icons/hicolor/16x16/actions/nextuntranslated.png %%DATADIR%%/icons/hicolor/16x16/actions/preverror.png %%DATADIR%%/icons/hicolor/16x16/actions/prevfuzzy.png %%DATADIR%%/icons/hicolor/16x16/actions/prevfuzzyuntrans.png %%DATADIR%%/icons/hicolor/16x16/actions/prevpo.png %%DATADIR%%/icons/hicolor/16x16/actions/prevtemplate.png %%DATADIR%%/icons/hicolor/16x16/actions/prevuntranslated.png %%DATADIR%%/icons/hicolor/16x16/actions/search2msgstr.png %%DATADIR%%/icons/hicolor/16x16/actions/transsearch.png %%DATADIR%%/icons/hicolor/22x22/actions/approved.png %%DATADIR%%/icons/hicolor/22x22/actions/catalogmanager.png %%DATADIR%%/icons/hicolor/22x22/actions/insert_arg.png %%DATADIR%%/icons/hicolor/22x22/actions/insert_tag.png %%DATADIR%%/icons/hicolor/22x22/actions/l10n/sr/approved.png -%%DATADIR%%/icons/hicolor/%%KDE_APPLICATIONS_VERSION_SHORT%%x%%KDE_APPLICATIONS_VERSION_SHORT%%/actions/l10n/sr@ijekavian/approved.png -%%DATADIR%%/icons/hicolor/%%KDE_APPLICATIONS_VERSION_SHORT%%x%%KDE_APPLICATIONS_VERSION_SHORT%%/actions/l10n/sr@ijekavianlatin/approved.png -%%DATADIR%%/icons/hicolor/%%KDE_APPLICATIONS_VERSION_SHORT%%x%%KDE_APPLICATIONS_VERSION_SHORT%%/actions/l10n/sr@latin/approved.png +%%DATADIR%%/icons/hicolor/22x22/actions/l10n/sr@ijekavian/approved.png +%%DATADIR%%/icons/hicolor/22x22/actions/l10n/sr@ijekavianlatin/approved.png +%%DATADIR%%/icons/hicolor/22x22/actions/l10n/sr@latin/approved.png %%DATADIR%%/icons/hicolor/22x22/actions/msgid2msgstr.png %%DATADIR%%/icons/hicolor/22x22/actions/nexterror.png %%DATADIR%%/icons/hicolor/22x22/actions/nextfuzzy.png %%DATADIR%%/icons/hicolor/22x22/actions/nextfuzzyuntrans.png %%DATADIR%%/icons/hicolor/22x22/actions/nextpo.png %%DATADIR%%/icons/hicolor/22x22/actions/nexttemplate.png %%DATADIR%%/icons/hicolor/22x22/actions/nextuntranslated.png %%DATADIR%%/icons/hicolor/22x22/actions/preverror.png %%DATADIR%%/icons/hicolor/22x22/actions/prevfuzzy.png %%DATADIR%%/icons/hicolor/22x22/actions/prevfuzzyuntrans.png %%DATADIR%%/icons/hicolor/22x22/actions/prevpo.png %%DATADIR%%/icons/hicolor/22x22/actions/prevtemplate.png %%DATADIR%%/icons/hicolor/22x22/actions/prevuntranslated.png %%DATADIR%%/icons/hicolor/22x22/actions/search2msgstr.png %%DATADIR%%/icons/hicolor/22x22/actions/transsearch.png %%DATADIR%%/icons/hicolor/32x32/actions/approved.png %%DATADIR%%/icons/hicolor/32x32/actions/catalogmanager.png %%DATADIR%%/icons/hicolor/32x32/actions/diff.png %%DATADIR%%/icons/hicolor/32x32/actions/insert_arg.png %%DATADIR%%/icons/hicolor/32x32/actions/insert_tag.png %%DATADIR%%/icons/hicolor/32x32/actions/l10n/sr/approved.png %%DATADIR%%/icons/hicolor/32x32/actions/l10n/sr@ijekavian/approved.png %%DATADIR%%/icons/hicolor/32x32/actions/l10n/sr@ijekavianlatin/approved.png %%DATADIR%%/icons/hicolor/32x32/actions/l10n/sr@latin/approved.png %%DATADIR%%/icons/hicolor/32x32/actions/msgid2msgstr.png %%DATADIR%%/icons/hicolor/32x32/actions/nexterror.png %%DATADIR%%/icons/hicolor/32x32/actions/nextfuzzy.png %%DATADIR%%/icons/hicolor/32x32/actions/nextfuzzyuntrans.png %%DATADIR%%/icons/hicolor/32x32/actions/nextpo.png %%DATADIR%%/icons/hicolor/32x32/actions/nexttemplate.png %%DATADIR%%/icons/hicolor/32x32/actions/nextuntranslated.png %%DATADIR%%/icons/hicolor/32x32/actions/preverror.png %%DATADIR%%/icons/hicolor/32x32/actions/prevfuzzy.png %%DATADIR%%/icons/hicolor/32x32/actions/prevfuzzyuntrans.png %%DATADIR%%/icons/hicolor/32x32/actions/prevpo.png %%DATADIR%%/icons/hicolor/32x32/actions/prevtemplate.png %%DATADIR%%/icons/hicolor/32x32/actions/prevuntranslated.png %%DATADIR%%/icons/hicolor/32x32/actions/search2msgstr.png %%DATADIR%%/icons/hicolor/32x32/actions/transsearch.png %%DATADIR%%/icons/hicolor/48x48/actions/approved.png %%DATADIR%%/icons/hicolor/48x48/actions/l10n/sr/approved.png %%DATADIR%%/icons/hicolor/48x48/actions/l10n/sr@ijekavian/approved.png %%DATADIR%%/icons/hicolor/48x48/actions/l10n/sr@ijekavianlatin/approved.png %%DATADIR%%/icons/hicolor/48x48/actions/l10n/sr@latin/approved.png %%DATADIR%%/icons/hicolor/scalable/actions/approved.svgz %%DATADIR%%/icons/hicolor/scalable/actions/l10n/sr/approved.svgz %%DATADIR%%/icons/hicolor/scalable/actions/l10n/sr@ijekavian/approved.svgz %%DATADIR%%/icons/hicolor/scalable/actions/l10n/sr@ijekavianlatin/approved.svgz %%DATADIR%%/icons/hicolor/scalable/actions/l10n/sr@latin/approved.svgz %%DATADIR%%/icons/locolor/16x16/actions/catalogmanager.png %%DATADIR%%/icons/locolor/16x16/actions/diff.png %%DATADIR%%/icons/locolor/16x16/actions/insert_arg.png %%DATADIR%%/icons/locolor/16x16/actions/insert_tag.png %%DATADIR%%/icons/locolor/16x16/actions/msgid2msgstr.png %%DATADIR%%/icons/locolor/16x16/actions/nexterror.png %%DATADIR%%/icons/locolor/16x16/actions/nextfuzzy.png %%DATADIR%%/icons/locolor/16x16/actions/nextfuzzyuntrans.png %%DATADIR%%/icons/locolor/16x16/actions/nextpo.png %%DATADIR%%/icons/locolor/16x16/actions/nexttemplate.png %%DATADIR%%/icons/locolor/16x16/actions/nextuntranslated.png %%DATADIR%%/icons/locolor/16x16/actions/preverror.png %%DATADIR%%/icons/locolor/16x16/actions/prevfuzzy.png %%DATADIR%%/icons/locolor/16x16/actions/prevfuzzyuntrans.png %%DATADIR%%/icons/locolor/16x16/actions/prevpo.png %%DATADIR%%/icons/locolor/16x16/actions/prevtemplate.png %%DATADIR%%/icons/locolor/16x16/actions/prevuntranslated.png %%DATADIR%%/icons/locolor/16x16/actions/search2msgstr.png %%DATADIR%%/icons/locolor/16x16/actions/transsearch.png %%DATADIR%%/icons/locolor/32x32/actions/catalogmanager.png %%DATADIR%%/icons/locolor/32x32/actions/diff.png %%DATADIR%%/icons/locolor/32x32/actions/insert_arg.png %%DATADIR%%/icons/locolor/32x32/actions/insert_tag.png %%DATADIR%%/icons/locolor/32x32/actions/msgid2msgstr.png %%DATADIR%%/icons/locolor/32x32/actions/nexterror.png %%DATADIR%%/icons/locolor/32x32/actions/nextfuzzy.png %%DATADIR%%/icons/locolor/32x32/actions/nextfuzzyuntrans.png %%DATADIR%%/icons/locolor/32x32/actions/nextpo.png %%DATADIR%%/icons/locolor/32x32/actions/nexttemplate.png %%DATADIR%%/icons/locolor/32x32/actions/nextuntranslated.png %%DATADIR%%/icons/locolor/32x32/actions/preverror.png %%DATADIR%%/icons/locolor/32x32/actions/prevfuzzy.png %%DATADIR%%/icons/locolor/32x32/actions/prevfuzzyuntrans.png %%DATADIR%%/icons/locolor/32x32/actions/prevpo.png %%DATADIR%%/icons/locolor/32x32/actions/prevtemplate.png %%DATADIR%%/icons/locolor/32x32/actions/prevuntranslated.png %%DATADIR%%/icons/locolor/32x32/actions/search2msgstr.png %%DATADIR%%/icons/locolor/32x32/actions/transsearch.png %%DATADIR%%/scripts/find-gui-text.sh %%DATADIR%%/scripts/msgmerge.py %%DATADIR%%/scripts/msgmerge.rc %%DATADIR%%/scripts/odf/xliff2odf-standalone.py %%DATADIR%%/scripts/odf/xliff2odf.py %%DATADIR%%/scripts/odf/xliff2odf.rc %%DATADIR%%/scripts/odf/xliffmerge.py share/metainfo/org.kde.lokalize.appdata.xml share/qlogging-categories5/lokalize.categories diff --git a/devel/massif-visualizer/distinfo b/devel/massif-visualizer/distinfo index 266340209e03..7f05529bd819 100644 --- a/devel/massif-visualizer/distinfo +++ b/devel/massif-visualizer/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1681373447 -SHA256 (KDE/release-service/22.12.3/kde-massif-visualizer-0.7.0-v0.7.0_GH0.tar.gz) = 922c1c4e4ece49ba270fdf67c665a63fd6dd171208dc0ed292199320497ac65d -SIZE (KDE/release-service/22.12.3/kde-massif-visualizer-0.7.0-v0.7.0_GH0.tar.gz) = 543854 +TIMESTAMP = 1681548259 +SHA256 (KDE/release-service/23.04.0/kde-massif-visualizer-0.7.0-v0.7.0_GH0.tar.gz) = 922c1c4e4ece49ba270fdf67c665a63fd6dd171208dc0ed292199320497ac65d +SIZE (KDE/release-service/23.04.0/kde-massif-visualizer-0.7.0-v0.7.0_GH0.tar.gz) = 543854 diff --git a/devel/massif-visualizer/pkg-plist b/devel/massif-visualizer/pkg-plist index f6c51bbfe156..9077a889efea 100644 --- a/devel/massif-visualizer/pkg-plist +++ b/devel/massif-visualizer/pkg-plist @@ -1,11 +1,11 @@ bin/massif-visualizer share/applications/org.kde.massif-visualizer.desktop share/config.kcfg/massif-visualizer-settings.kcfg share/icons/hicolor/scalable/apps/massif-visualizer.svg share/kxmlgui5/massif-visualizer/callgraphtabui.rc share/kxmlgui5/massif-visualizer/charttabui.rc share/kxmlgui5/massif-visualizer/documentwidgetui.rc share/kxmlgui5/massif-visualizer/massif-visualizerui.rc -%%DATADIR%%/icons/hicolor/%%KDE_APPLICATIONS_VERSION_SHORT%%x%%KDE_APPLICATIONS_VERSION_SHORT%%/actions/shortentemplates.png +%%DATADIR%%/icons/hicolor/22x22/actions/shortentemplates.png share/metainfo/org.kde.massif-visualizer.appdata.xml share/mime/packages/massif.xml diff --git a/devel/poxml/distinfo b/devel/poxml/distinfo index c83109a797d6..5ebc2ba8d8f8 100644 --- a/devel/poxml/distinfo +++ b/devel/poxml/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1677828130 -SHA256 (KDE/release-service/22.12.3/poxml-22.12.3.tar.xz) = 20797933138c613ddaa55c3aa56766b2a282ff4017e70502b3557b74f1ccd50f -SIZE (KDE/release-service/22.12.3/poxml-22.12.3.tar.xz) = 44100 +TIMESTAMP = 1681548265 +SHA256 (KDE/release-service/23.04.0/poxml-23.04.0.tar.xz) = 6a484959cf9b32feb3927fb08cc09b99bf866462aec425788782512c99b113f9 +SIZE (KDE/release-service/23.04.0/poxml-23.04.0.tar.xz) = 44276 diff --git a/devel/umbrello/distinfo b/devel/umbrello/distinfo index 2004188690bd..2e21ba11d6b1 100644 --- a/devel/umbrello/distinfo +++ b/devel/umbrello/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1677828134 -SHA256 (KDE/release-service/22.12.3/umbrello-22.12.3.tar.xz) = ab100ca227b8fe67343e9ffab8f135aef8c1c9ccbd1fef3c040631499d4df044 -SIZE (KDE/release-service/22.12.3/umbrello-22.12.3.tar.xz) = 5801500 +TIMESTAMP = 1681548255 +SHA256 (KDE/release-service/23.04.0/umbrello-23.04.0.tar.xz) = e8209ed8579e983016e1f4dae3a961a0a7a81892d6be00922c0bb07bb464a445 +SIZE (KDE/release-service/23.04.0/umbrello-23.04.0.tar.xz) = 5774008 diff --git a/devel/umbrello/pkg-plist b/devel/umbrello/pkg-plist index 94fadc3f60d6..f4badba2bf4a 100644 --- a/devel/umbrello/pkg-plist +++ b/devel/umbrello/pkg-plist @@ -1,199 +1,165 @@ 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/be/LC_MESSAGES/umbrello.mo share/locale/bg/LC_MESSAGES/umbrello.mo -share/locale/bg/LC_MESSAGES/umbrello_kdevphp.mo share/locale/bg/LC_MESSAGES/umbrello_kdevphp5.mo share/locale/br/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/cy/LC_MESSAGES/umbrello.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_kdevphp.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_kdevphp.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/hne/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_kdevphp.mo share/locale/hu/LC_MESSAGES/umbrello_kdevphp5.mo share/locale/ia/LC_MESSAGES/umbrello.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/ka/LC_MESSAGES/umbrello.mo -share/locale/ka/LC_MESSAGES/umbrello_kdevphp.mo share/locale/ka/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_kdevphp.mo share/locale/ko/LC_MESSAGES/umbrello_kdevphp5.mo share/locale/lt/LC_MESSAGES/umbrello.mo -share/locale/lt/LC_MESSAGES/umbrello_kdevphp.mo share/locale/lt/LC_MESSAGES/umbrello_kdevphp5.mo share/locale/mai/LC_MESSAGES/umbrello.mo share/locale/mk/LC_MESSAGES/umbrello.mo share/locale/mr/LC_MESSAGES/umbrello.mo share/locale/mr/LC_MESSAGES/umbrello_kdevphp5.mo share/locale/ms/LC_MESSAGES/umbrello.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/ne/LC_MESSAGES/umbrello.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/nn/LC_MESSAGES/umbrello_kdevphp.mo share/locale/nn/LC_MESSAGES/umbrello_kdevphp5.mo share/locale/oc/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_kdevphp.mo share/locale/ro/LC_MESSAGES/umbrello_kdevphp5.mo share/locale/ru/LC_MESSAGES/umbrello.mo -share/locale/ru/LC_MESSAGES/umbrello_kdevphp.mo share/locale/ru/LC_MESSAGES/umbrello_kdevphp5.mo share/locale/se/LC_MESSAGES/umbrello.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/sq/LC_MESSAGES/umbrello.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/ta/LC_MESSAGES/umbrello.mo share/locale/tg/LC_MESSAGES/umbrello.mo share/locale/th/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/component-horizontal.desktop share/umbrello5/layouts/component-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-horizontal.desktop share/umbrello5/layouts/state-vertical.desktop share/umbrello5/layouts/usecase-default.desktop share/umbrello5/simple4125/sdbcent.mod share/umbrello5/simple4125/sdbhier.mod share/umbrello5/simple4125/sdbpool.mod share/umbrello5/simple4125/sdocbook-custom.dtd share/umbrello5/simple4125/sdocbook.css share/umbrello5/simple4125/sdocbook.dtd share/umbrello5/simple4125/sdocbookref-custom.dtd share/umbrello5/simple4125/sdocbookref.dtd share/umbrello5/simple4125/sinclist.mod share/umbrello5/xmi.css share/umbrello5/xmi1docbook.xsl share/umbrello5/xmi2docbook.xsl diff --git a/editors/kate/distinfo b/editors/kate/distinfo index ae460b5f5888..13f27b1c3fdb 100644 --- a/editors/kate/distinfo +++ b/editors/kate/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1677828172 -SHA256 (KDE/release-service/22.12.3/kate-22.12.3.tar.xz) = 5bfb05b8dad0c3c7301da0a1998d41de7acf0ec18f40912a59b3e855188f443e -SIZE (KDE/release-service/22.12.3/kate-22.12.3.tar.xz) = 7888764 +TIMESTAMP = 1681548449 +SHA256 (KDE/release-service/23.04.0/kate-23.04.0.tar.xz) = 589c33501f98fa7937a7e3075c155e22a31f746ce4e5f15022b509c5fc1c1c0d +SIZE (KDE/release-service/23.04.0/kate-23.04.0.tar.xz) = 7984356 diff --git a/editors/kate/pkg-plist b/editors/kate/pkg-plist index a621dba7a019..ba8643cbe90b 100644 --- a/editors/kate/pkg-plist +++ b/editors/kate/pkg-plist @@ -1,1477 +1,1499 @@ bin/kate bin/kwrite lib/libkateprivate.so.%%KDE_APPLICATIONS_VERSION%% %%QT_PLUGINDIR%%/ktexteditor/cmaketoolsplugin.so %%QT_PLUGINDIR%%/ktexteditor/compilerexplorer.so +%%QT_PLUGINDIR%%/ktexteditor/eslintplugin.so %%QT_PLUGINDIR%%/ktexteditor/externaltoolsplugin.so +%%QT_PLUGINDIR%%/ktexteditor/formatplugin.so %%QT_PLUGINDIR%%/ktexteditor/katebacktracebrowserplugin.so %%QT_PLUGINDIR%%/ktexteditor/katebuildplugin.so %%QT_PLUGINDIR%%/ktexteditor/katecloseexceptplugin.so %%QT_PLUGINDIR%%/ktexteditor/katecolorpickerplugin.so %%QT_PLUGINDIR%%/ktexteditor/katectagsplugin.so %%QT_PLUGINDIR%%/ktexteditor/katefilebrowserplugin.so %%QT_PLUGINDIR%%/ktexteditor/katefiletreeplugin.so %%QT_PLUGINDIR%%/ktexteditor/kategdbplugin.so %%QT_PLUGINDIR%%/ktexteditor/kategitblameplugin.so %%QT_PLUGINDIR%%/ktexteditor/katekonsoleplugin.so %%QT_PLUGINDIR%%/ktexteditor/kateprojectplugin.so %%QT_PLUGINDIR%%/ktexteditor/katereplicodeplugin.so %%QT_PLUGINDIR%%/ktexteditor/katesearchplugin.so %%QT_PLUGINDIR%%/ktexteditor/katesnippetsplugin.so %%QT_PLUGINDIR%%/ktexteditor/katesqlplugin.so %%QT_PLUGINDIR%%/ktexteditor/katesymbolviewerplugin.so %%QT_PLUGINDIR%%/ktexteditor/katexmlcheckplugin.so %%QT_PLUGINDIR%%/ktexteditor/katexmltoolsplugin.so %%QT_PLUGINDIR%%/ktexteditor/keyboardmacrosplugin.so %%QT_PLUGINDIR%%/ktexteditor/ktexteditorpreviewplugin.so %%QT_PLUGINDIR%%/ktexteditor/latexcompletionplugin.so %%QT_PLUGINDIR%%/ktexteditor/lspclientplugin.so %%QT_PLUGINDIR%%/ktexteditor/rainbowparens.so %%QT_PLUGINDIR%%/ktexteditor/tabswitcherplugin.so %%QT_PLUGINDIR%%/ktexteditor/textfilterplugin.so man/ca/man1/kate.1.gz man/de/man1/kate.1.gz man/es/man1/kate.1.gz man/it/man1/kate.1.gz man/man1/kate.1.gz man/nl/man1/kate.1.gz man/pt/man1/kate.1.gz man/pt_BR/man1/kate.1.gz man/ru/man1/kate.1.gz man/sv/man1/kate.1.gz man/uk/man1/kate.1.gz share/applications/org.kde.kate.desktop share/applications/org.kde.kwrite.desktop share/icons/hicolor/128x128/apps/kate.png share/icons/hicolor/128x128/apps/kwrite.png share/icons/hicolor/150x150/apps/kate.png share/icons/hicolor/150x150/apps/kwrite.png share/icons/hicolor/16x16/apps/kate.png share/icons/hicolor/16x16/apps/kwrite.png share/icons/hicolor/22x22/apps/kate.png share/icons/hicolor/22x22/apps/kwrite.png share/icons/hicolor/256x256/apps/kate.png share/icons/hicolor/256x256/apps/kwrite.png share/icons/hicolor/310x310/apps/kate.png share/icons/hicolor/310x310/apps/kwrite.png share/icons/hicolor/32x32/apps/kate.png share/icons/hicolor/32x32/apps/kwrite.png share/icons/hicolor/44x44/apps/kate.png share/icons/hicolor/44x44/apps/kwrite.png share/icons/hicolor/48x48/apps/kate.png share/icons/hicolor/48x48/apps/kwrite.png share/icons/hicolor/512x512/apps/kate.png share/icons/hicolor/512x512/apps/kwrite.png share/icons/hicolor/64x64/apps/kate.png share/icons/hicolor/64x64/apps/kwrite.png share/icons/hicolor/scalable/apps/kate.svg share/icons/hicolor/scalable/apps/kwrite.svg share/kateproject/kateproject.example share/katexmltools/html4-loose.dtd.xml share/katexmltools/html4-strict.dtd.xml share/katexmltools/kcfg.dtd.xml share/katexmltools/kde-docbook.dtd.xml share/katexmltools/kpartgui.dtd.xml share/katexmltools/language.dtd.xml share/katexmltools/simplify_dtd.xsl share/katexmltools/testcases.xml share/katexmltools/xhtml1-frameset.dtd.xml share/katexmltools/xhtml1-strict.dtd.xml share/katexmltools/xhtml1-transitional.dtd.xml share/katexmltools/xslt-1.0.dtd.xml share/kconf_update/katesession_migration.upd share/kconf_update/migrate_kate_sessions_applet_to_kdeplasma-addons.sh share/locale/af/LC_MESSAGES/kate.mo share/locale/af/LC_MESSAGES/katetextfilter.mo share/locale/af/LC_MESSAGES/katexmltools.mo share/locale/ar/LC_MESSAGES/kate-ctags-plugin.mo share/locale/ar/LC_MESSAGES/kate-replicode-plugin.mo share/locale/ar/LC_MESSAGES/kate.mo share/locale/ar/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/ar/LC_MESSAGES/katebuild-plugin.mo share/locale/ar/LC_MESSAGES/katecloseexceptplugin.mo share/locale/ar/LC_MESSAGES/katecolorpickerplugin.mo share/locale/ar/LC_MESSAGES/katefilebrowserplugin.mo share/locale/ar/LC_MESSAGES/katefiletree.mo share/locale/ar/LC_MESSAGES/kategdbplugin.mo share/locale/ar/LC_MESSAGES/katekonsoleplugin.mo share/locale/ar/LC_MESSAGES/kateproject.mo share/locale/ar/LC_MESSAGES/katesearch.mo share/locale/ar/LC_MESSAGES/katesnippetsplugin.mo share/locale/ar/LC_MESSAGES/katesql.mo share/locale/ar/LC_MESSAGES/katesymbolviewer.mo share/locale/ar/LC_MESSAGES/katetextfilter.mo share/locale/ar/LC_MESSAGES/katexmlcheck.mo share/locale/ar/LC_MESSAGES/katexmltools.mo share/locale/ar/LC_MESSAGES/ktexteditorpreviewplugin.mo share/locale/ar/LC_MESSAGES/tabswitcherplugin.mo share/locale/az/LC_MESSAGES/kate-ctags-plugin.mo share/locale/az/LC_MESSAGES/kate-replicode-plugin.mo share/locale/az/LC_MESSAGES/kate.mo share/locale/az/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/az/LC_MESSAGES/katebuild-plugin.mo share/locale/az/LC_MESSAGES/katecloseexceptplugin.mo share/locale/az/LC_MESSAGES/katecolorpickerplugin.mo share/locale/az/LC_MESSAGES/kateexternaltoolsplugin.mo share/locale/az/LC_MESSAGES/katefilebrowserplugin.mo share/locale/az/LC_MESSAGES/katefiletree.mo share/locale/az/LC_MESSAGES/kategdbplugin.mo share/locale/az/LC_MESSAGES/kategitblameplugin.mo share/locale/az/LC_MESSAGES/katekonsoleplugin.mo share/locale/az/LC_MESSAGES/kateproject.mo share/locale/az/LC_MESSAGES/katesearch.mo share/locale/az/LC_MESSAGES/katesnippetsplugin.mo share/locale/az/LC_MESSAGES/katesql.mo share/locale/az/LC_MESSAGES/katesymbolviewer.mo share/locale/az/LC_MESSAGES/katetextfilter.mo share/locale/az/LC_MESSAGES/katexmlcheck.mo share/locale/az/LC_MESSAGES/katexmltools.mo share/locale/az/LC_MESSAGES/ktexteditorpreviewplugin.mo share/locale/az/LC_MESSAGES/lspclient.mo share/locale/az/LC_MESSAGES/tabswitcherplugin.mo share/locale/be/LC_MESSAGES/kate.mo share/locale/be/LC_MESSAGES/katefilebrowserplugin.mo share/locale/be/LC_MESSAGES/katekonsoleplugin.mo share/locale/be/LC_MESSAGES/katesymbolviewer.mo share/locale/be/LC_MESSAGES/katetextfilter.mo share/locale/be/LC_MESSAGES/katexmltools.mo share/locale/bg/LC_MESSAGES/kate-ctags-plugin.mo share/locale/bg/LC_MESSAGES/kate-replicode-plugin.mo share/locale/bg/LC_MESSAGES/kate.mo share/locale/bg/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/bg/LC_MESSAGES/katebuild-plugin.mo share/locale/bg/LC_MESSAGES/katecloseexceptplugin.mo share/locale/bg/LC_MESSAGES/katecolorpickerplugin.mo share/locale/bg/LC_MESSAGES/kateexternaltoolsplugin.mo share/locale/bg/LC_MESSAGES/katefilebrowserplugin.mo share/locale/bg/LC_MESSAGES/katefiletree.mo share/locale/bg/LC_MESSAGES/kategdbplugin.mo share/locale/bg/LC_MESSAGES/kategitblameplugin.mo +share/locale/bg/LC_MESSAGES/katekeyboardmacros.mo share/locale/bg/LC_MESSAGES/katekonsoleplugin.mo share/locale/bg/LC_MESSAGES/kateproject.mo share/locale/bg/LC_MESSAGES/katesearch.mo share/locale/bg/LC_MESSAGES/katesnippetsplugin.mo share/locale/bg/LC_MESSAGES/katesql.mo share/locale/bg/LC_MESSAGES/katesymbolviewer.mo share/locale/bg/LC_MESSAGES/katetextfilter.mo share/locale/bg/LC_MESSAGES/katexmlcheck.mo share/locale/bg/LC_MESSAGES/katexmltools.mo share/locale/bg/LC_MESSAGES/ktexteditorpreviewplugin.mo share/locale/bg/LC_MESSAGES/lspclient.mo share/locale/bg/LC_MESSAGES/tabswitcherplugin.mo share/locale/br/LC_MESSAGES/kate.mo share/locale/br/LC_MESSAGES/katesymbolviewer.mo share/locale/br/LC_MESSAGES/katetextfilter.mo share/locale/br/LC_MESSAGES/katexmltools.mo share/locale/bs/LC_MESSAGES/kate-ctags-plugin.mo share/locale/bs/LC_MESSAGES/kate.mo share/locale/bs/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/bs/LC_MESSAGES/katebuild-plugin.mo share/locale/bs/LC_MESSAGES/katecloseexceptplugin.mo share/locale/bs/LC_MESSAGES/katefilebrowserplugin.mo share/locale/bs/LC_MESSAGES/katefiletree.mo share/locale/bs/LC_MESSAGES/kategdbplugin.mo share/locale/bs/LC_MESSAGES/katekonsoleplugin.mo share/locale/bs/LC_MESSAGES/kateproject.mo share/locale/bs/LC_MESSAGES/katesearch.mo share/locale/bs/LC_MESSAGES/katesnippetsplugin.mo share/locale/bs/LC_MESSAGES/katesql.mo share/locale/bs/LC_MESSAGES/katesymbolviewer.mo share/locale/bs/LC_MESSAGES/katetextfilter.mo share/locale/bs/LC_MESSAGES/katexmltools.mo share/locale/bs/LC_MESSAGES/tabswitcherplugin.mo share/locale/ca/LC_MESSAGES/kate-ctags-plugin.mo share/locale/ca/LC_MESSAGES/kate-replicode-plugin.mo share/locale/ca/LC_MESSAGES/kate.mo share/locale/ca/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/ca/LC_MESSAGES/katebuild-plugin.mo share/locale/ca/LC_MESSAGES/katecloseexceptplugin.mo share/locale/ca/LC_MESSAGES/katecolorpickerplugin.mo share/locale/ca/LC_MESSAGES/kateexternaltoolsplugin.mo share/locale/ca/LC_MESSAGES/katefilebrowserplugin.mo share/locale/ca/LC_MESSAGES/katefiletree.mo share/locale/ca/LC_MESSAGES/kategdbplugin.mo share/locale/ca/LC_MESSAGES/kategitblameplugin.mo share/locale/ca/LC_MESSAGES/katekeyboardmacros.mo share/locale/ca/LC_MESSAGES/katekonsoleplugin.mo share/locale/ca/LC_MESSAGES/kateproject.mo share/locale/ca/LC_MESSAGES/katesearch.mo share/locale/ca/LC_MESSAGES/katesnippetsplugin.mo share/locale/ca/LC_MESSAGES/katesql.mo share/locale/ca/LC_MESSAGES/katesymbolviewer.mo share/locale/ca/LC_MESSAGES/katetextfilter.mo share/locale/ca/LC_MESSAGES/katexmlcheck.mo share/locale/ca/LC_MESSAGES/katexmltools.mo share/locale/ca/LC_MESSAGES/ktexteditorpreviewplugin.mo share/locale/ca/LC_MESSAGES/lspclient.mo share/locale/ca/LC_MESSAGES/tabswitcherplugin.mo share/locale/ca@valencia/LC_MESSAGES/kate-ctags-plugin.mo share/locale/ca@valencia/LC_MESSAGES/kate-replicode-plugin.mo share/locale/ca@valencia/LC_MESSAGES/kate.mo share/locale/ca@valencia/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/ca@valencia/LC_MESSAGES/katebuild-plugin.mo share/locale/ca@valencia/LC_MESSAGES/katecloseexceptplugin.mo share/locale/ca@valencia/LC_MESSAGES/katecolorpickerplugin.mo share/locale/ca@valencia/LC_MESSAGES/kateexternaltoolsplugin.mo share/locale/ca@valencia/LC_MESSAGES/katefilebrowserplugin.mo share/locale/ca@valencia/LC_MESSAGES/katefiletree.mo share/locale/ca@valencia/LC_MESSAGES/kategdbplugin.mo share/locale/ca@valencia/LC_MESSAGES/kategitblameplugin.mo share/locale/ca@valencia/LC_MESSAGES/katekeyboardmacros.mo share/locale/ca@valencia/LC_MESSAGES/katekonsoleplugin.mo share/locale/ca@valencia/LC_MESSAGES/kateproject.mo share/locale/ca@valencia/LC_MESSAGES/katesearch.mo share/locale/ca@valencia/LC_MESSAGES/katesnippetsplugin.mo share/locale/ca@valencia/LC_MESSAGES/katesql.mo share/locale/ca@valencia/LC_MESSAGES/katesymbolviewer.mo share/locale/ca@valencia/LC_MESSAGES/katetextfilter.mo share/locale/ca@valencia/LC_MESSAGES/katexmlcheck.mo share/locale/ca@valencia/LC_MESSAGES/katexmltools.mo share/locale/ca@valencia/LC_MESSAGES/ktexteditorpreviewplugin.mo share/locale/ca@valencia/LC_MESSAGES/lspclient.mo share/locale/ca@valencia/LC_MESSAGES/tabswitcherplugin.mo share/locale/cs/LC_MESSAGES/kate-ctags-plugin.mo share/locale/cs/LC_MESSAGES/kate-replicode-plugin.mo share/locale/cs/LC_MESSAGES/kate.mo share/locale/cs/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/cs/LC_MESSAGES/katebuild-plugin.mo share/locale/cs/LC_MESSAGES/katecloseexceptplugin.mo share/locale/cs/LC_MESSAGES/katecolorpickerplugin.mo share/locale/cs/LC_MESSAGES/kateexternaltoolsplugin.mo share/locale/cs/LC_MESSAGES/katefilebrowserplugin.mo share/locale/cs/LC_MESSAGES/katefiletree.mo share/locale/cs/LC_MESSAGES/kategdbplugin.mo share/locale/cs/LC_MESSAGES/kategitblameplugin.mo share/locale/cs/LC_MESSAGES/katekeyboardmacros.mo share/locale/cs/LC_MESSAGES/katekonsoleplugin.mo share/locale/cs/LC_MESSAGES/kateproject.mo share/locale/cs/LC_MESSAGES/katesearch.mo share/locale/cs/LC_MESSAGES/katesnippetsplugin.mo share/locale/cs/LC_MESSAGES/katesql.mo share/locale/cs/LC_MESSAGES/katesymbolviewer.mo share/locale/cs/LC_MESSAGES/katetextfilter.mo share/locale/cs/LC_MESSAGES/katexmlcheck.mo share/locale/cs/LC_MESSAGES/katexmltools.mo share/locale/cs/LC_MESSAGES/ktexteditorpreviewplugin.mo share/locale/cs/LC_MESSAGES/lspclient.mo share/locale/cs/LC_MESSAGES/tabswitcherplugin.mo share/locale/csb/LC_MESSAGES/kate.mo share/locale/cy/LC_MESSAGES/kate.mo share/locale/cy/LC_MESSAGES/katesymbolviewer.mo share/locale/cy/LC_MESSAGES/katetextfilter.mo share/locale/cy/LC_MESSAGES/katexmltools.mo share/locale/da/LC_MESSAGES/kate-ctags-plugin.mo share/locale/da/LC_MESSAGES/kate-replicode-plugin.mo share/locale/da/LC_MESSAGES/kate.mo share/locale/da/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/da/LC_MESSAGES/katebuild-plugin.mo share/locale/da/LC_MESSAGES/katecloseexceptplugin.mo share/locale/da/LC_MESSAGES/kateexternaltoolsplugin.mo share/locale/da/LC_MESSAGES/katefilebrowserplugin.mo share/locale/da/LC_MESSAGES/katefiletree.mo share/locale/da/LC_MESSAGES/kategdbplugin.mo share/locale/da/LC_MESSAGES/katekonsoleplugin.mo share/locale/da/LC_MESSAGES/kateproject.mo share/locale/da/LC_MESSAGES/katesearch.mo share/locale/da/LC_MESSAGES/katesnippetsplugin.mo share/locale/da/LC_MESSAGES/katesql.mo share/locale/da/LC_MESSAGES/katesymbolviewer.mo share/locale/da/LC_MESSAGES/katetextfilter.mo share/locale/da/LC_MESSAGES/katexmlcheck.mo share/locale/da/LC_MESSAGES/katexmltools.mo share/locale/da/LC_MESSAGES/ktexteditorpreviewplugin.mo share/locale/da/LC_MESSAGES/lspclient.mo share/locale/da/LC_MESSAGES/tabswitcherplugin.mo share/locale/de/LC_MESSAGES/kate-ctags-plugin.mo share/locale/de/LC_MESSAGES/kate-replicode-plugin.mo share/locale/de/LC_MESSAGES/kate.mo share/locale/de/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/de/LC_MESSAGES/katebuild-plugin.mo share/locale/de/LC_MESSAGES/katecloseexceptplugin.mo share/locale/de/LC_MESSAGES/katecolorpickerplugin.mo share/locale/de/LC_MESSAGES/kateexternaltoolsplugin.mo share/locale/de/LC_MESSAGES/katefilebrowserplugin.mo share/locale/de/LC_MESSAGES/katefiletree.mo share/locale/de/LC_MESSAGES/kategdbplugin.mo share/locale/de/LC_MESSAGES/kategitblameplugin.mo share/locale/de/LC_MESSAGES/katekeyboardmacros.mo share/locale/de/LC_MESSAGES/katekonsoleplugin.mo share/locale/de/LC_MESSAGES/kateproject.mo share/locale/de/LC_MESSAGES/katesearch.mo share/locale/de/LC_MESSAGES/katesnippetsplugin.mo share/locale/de/LC_MESSAGES/katesql.mo share/locale/de/LC_MESSAGES/katesymbolviewer.mo share/locale/de/LC_MESSAGES/katetextfilter.mo share/locale/de/LC_MESSAGES/katexmlcheck.mo share/locale/de/LC_MESSAGES/katexmltools.mo share/locale/de/LC_MESSAGES/ktexteditorpreviewplugin.mo share/locale/de/LC_MESSAGES/lspclient.mo share/locale/de/LC_MESSAGES/tabswitcherplugin.mo share/locale/el/LC_MESSAGES/kate-ctags-plugin.mo share/locale/el/LC_MESSAGES/kate-replicode-plugin.mo share/locale/el/LC_MESSAGES/kate.mo share/locale/el/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/el/LC_MESSAGES/katebuild-plugin.mo share/locale/el/LC_MESSAGES/katecloseexceptplugin.mo share/locale/el/LC_MESSAGES/katecolorpickerplugin.mo share/locale/el/LC_MESSAGES/kateexternaltoolsplugin.mo share/locale/el/LC_MESSAGES/katefilebrowserplugin.mo share/locale/el/LC_MESSAGES/katefiletree.mo share/locale/el/LC_MESSAGES/kategdbplugin.mo share/locale/el/LC_MESSAGES/kategitblameplugin.mo share/locale/el/LC_MESSAGES/katekeyboardmacros.mo share/locale/el/LC_MESSAGES/katekonsoleplugin.mo share/locale/el/LC_MESSAGES/kateproject.mo share/locale/el/LC_MESSAGES/katesearch.mo share/locale/el/LC_MESSAGES/katesnippetsplugin.mo share/locale/el/LC_MESSAGES/katesql.mo share/locale/el/LC_MESSAGES/katesymbolviewer.mo share/locale/el/LC_MESSAGES/katetextfilter.mo share/locale/el/LC_MESSAGES/katexmlcheck.mo share/locale/el/LC_MESSAGES/katexmltools.mo share/locale/el/LC_MESSAGES/ktexteditorpreviewplugin.mo share/locale/el/LC_MESSAGES/lspclient.mo share/locale/el/LC_MESSAGES/tabswitcherplugin.mo share/locale/en_GB/LC_MESSAGES/kate-ctags-plugin.mo share/locale/en_GB/LC_MESSAGES/kate-replicode-plugin.mo share/locale/en_GB/LC_MESSAGES/kate.mo share/locale/en_GB/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/en_GB/LC_MESSAGES/katebuild-plugin.mo share/locale/en_GB/LC_MESSAGES/katecloseexceptplugin.mo share/locale/en_GB/LC_MESSAGES/katecolorpickerplugin.mo share/locale/en_GB/LC_MESSAGES/kateexternaltoolsplugin.mo share/locale/en_GB/LC_MESSAGES/katefilebrowserplugin.mo share/locale/en_GB/LC_MESSAGES/katefiletree.mo share/locale/en_GB/LC_MESSAGES/kategdbplugin.mo share/locale/en_GB/LC_MESSAGES/kategitblameplugin.mo share/locale/en_GB/LC_MESSAGES/katekeyboardmacros.mo share/locale/en_GB/LC_MESSAGES/katekonsoleplugin.mo share/locale/en_GB/LC_MESSAGES/kateproject.mo share/locale/en_GB/LC_MESSAGES/katesearch.mo share/locale/en_GB/LC_MESSAGES/katesnippetsplugin.mo share/locale/en_GB/LC_MESSAGES/katesql.mo share/locale/en_GB/LC_MESSAGES/katesymbolviewer.mo share/locale/en_GB/LC_MESSAGES/katetextfilter.mo share/locale/en_GB/LC_MESSAGES/katexmlcheck.mo share/locale/en_GB/LC_MESSAGES/katexmltools.mo share/locale/en_GB/LC_MESSAGES/ktexteditorpreviewplugin.mo share/locale/en_GB/LC_MESSAGES/lspclient.mo share/locale/en_GB/LC_MESSAGES/tabswitcherplugin.mo share/locale/eo/LC_MESSAGES/kate-ctags-plugin.mo +share/locale/eo/LC_MESSAGES/kate-replicode-plugin.mo share/locale/eo/LC_MESSAGES/kate.mo share/locale/eo/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/eo/LC_MESSAGES/katebuild-plugin.mo +share/locale/eo/LC_MESSAGES/katecloseexceptplugin.mo +share/locale/eo/LC_MESSAGES/katecolorpickerplugin.mo +share/locale/eo/LC_MESSAGES/kateexternaltoolsplugin.mo share/locale/eo/LC_MESSAGES/katefilebrowserplugin.mo +share/locale/eo/LC_MESSAGES/katefiletree.mo +share/locale/eo/LC_MESSAGES/kategdbplugin.mo +share/locale/eo/LC_MESSAGES/kategitblameplugin.mo +share/locale/eo/LC_MESSAGES/katekeyboardmacros.mo share/locale/eo/LC_MESSAGES/katekonsoleplugin.mo +share/locale/eo/LC_MESSAGES/kateproject.mo +share/locale/eo/LC_MESSAGES/katesearch.mo +share/locale/eo/LC_MESSAGES/katesnippetsplugin.mo +share/locale/eo/LC_MESSAGES/katesql.mo share/locale/eo/LC_MESSAGES/katesymbolviewer.mo share/locale/eo/LC_MESSAGES/katetextfilter.mo +share/locale/eo/LC_MESSAGES/katexmlcheck.mo share/locale/eo/LC_MESSAGES/katexmltools.mo +share/locale/eo/LC_MESSAGES/ktexteditorpreviewplugin.mo +share/locale/eo/LC_MESSAGES/lspclient.mo +share/locale/eo/LC_MESSAGES/tabswitcherplugin.mo share/locale/es/LC_MESSAGES/kate-ctags-plugin.mo share/locale/es/LC_MESSAGES/kate-replicode-plugin.mo share/locale/es/LC_MESSAGES/kate.mo share/locale/es/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/es/LC_MESSAGES/katebuild-plugin.mo share/locale/es/LC_MESSAGES/katecloseexceptplugin.mo share/locale/es/LC_MESSAGES/katecolorpickerplugin.mo share/locale/es/LC_MESSAGES/kateexternaltoolsplugin.mo share/locale/es/LC_MESSAGES/katefilebrowserplugin.mo share/locale/es/LC_MESSAGES/katefiletree.mo share/locale/es/LC_MESSAGES/kategdbplugin.mo share/locale/es/LC_MESSAGES/kategitblameplugin.mo share/locale/es/LC_MESSAGES/katekeyboardmacros.mo share/locale/es/LC_MESSAGES/katekonsoleplugin.mo share/locale/es/LC_MESSAGES/kateproject.mo share/locale/es/LC_MESSAGES/katesearch.mo share/locale/es/LC_MESSAGES/katesnippetsplugin.mo share/locale/es/LC_MESSAGES/katesql.mo share/locale/es/LC_MESSAGES/katesymbolviewer.mo share/locale/es/LC_MESSAGES/katetextfilter.mo share/locale/es/LC_MESSAGES/katexmlcheck.mo share/locale/es/LC_MESSAGES/katexmltools.mo share/locale/es/LC_MESSAGES/ktexteditorpreviewplugin.mo share/locale/es/LC_MESSAGES/lspclient.mo share/locale/es/LC_MESSAGES/tabswitcherplugin.mo share/locale/et/LC_MESSAGES/kate-ctags-plugin.mo share/locale/et/LC_MESSAGES/kate-replicode-plugin.mo share/locale/et/LC_MESSAGES/kate.mo share/locale/et/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/et/LC_MESSAGES/katebuild-plugin.mo share/locale/et/LC_MESSAGES/katecloseexceptplugin.mo share/locale/et/LC_MESSAGES/kateexternaltoolsplugin.mo share/locale/et/LC_MESSAGES/katefilebrowserplugin.mo share/locale/et/LC_MESSAGES/katefiletree.mo share/locale/et/LC_MESSAGES/kategdbplugin.mo share/locale/et/LC_MESSAGES/katekonsoleplugin.mo share/locale/et/LC_MESSAGES/kateproject.mo share/locale/et/LC_MESSAGES/katesearch.mo share/locale/et/LC_MESSAGES/katesnippetsplugin.mo share/locale/et/LC_MESSAGES/katesql.mo share/locale/et/LC_MESSAGES/katesymbolviewer.mo share/locale/et/LC_MESSAGES/katetextfilter.mo share/locale/et/LC_MESSAGES/katexmlcheck.mo share/locale/et/LC_MESSAGES/katexmltools.mo share/locale/et/LC_MESSAGES/ktexteditorpreviewplugin.mo share/locale/et/LC_MESSAGES/lspclient.mo share/locale/et/LC_MESSAGES/tabswitcherplugin.mo share/locale/eu/LC_MESSAGES/kate-ctags-plugin.mo share/locale/eu/LC_MESSAGES/kate-replicode-plugin.mo share/locale/eu/LC_MESSAGES/kate.mo share/locale/eu/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/eu/LC_MESSAGES/katebuild-plugin.mo share/locale/eu/LC_MESSAGES/katecloseexceptplugin.mo share/locale/eu/LC_MESSAGES/katecolorpickerplugin.mo share/locale/eu/LC_MESSAGES/kateexternaltoolsplugin.mo share/locale/eu/LC_MESSAGES/katefilebrowserplugin.mo share/locale/eu/LC_MESSAGES/katefiletree.mo share/locale/eu/LC_MESSAGES/kategdbplugin.mo share/locale/eu/LC_MESSAGES/kategitblameplugin.mo share/locale/eu/LC_MESSAGES/katekeyboardmacros.mo share/locale/eu/LC_MESSAGES/katekonsoleplugin.mo share/locale/eu/LC_MESSAGES/kateproject.mo share/locale/eu/LC_MESSAGES/katesearch.mo share/locale/eu/LC_MESSAGES/katesnippetsplugin.mo share/locale/eu/LC_MESSAGES/katesql.mo share/locale/eu/LC_MESSAGES/katesymbolviewer.mo share/locale/eu/LC_MESSAGES/katetextfilter.mo share/locale/eu/LC_MESSAGES/katexmlcheck.mo share/locale/eu/LC_MESSAGES/katexmltools.mo share/locale/eu/LC_MESSAGES/ktexteditorpreviewplugin.mo share/locale/eu/LC_MESSAGES/lspclient.mo share/locale/eu/LC_MESSAGES/tabswitcherplugin.mo share/locale/fa/LC_MESSAGES/kate-ctags-plugin.mo share/locale/fa/LC_MESSAGES/kate.mo share/locale/fa/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/fa/LC_MESSAGES/katebuild-plugin.mo share/locale/fa/LC_MESSAGES/katecloseexceptplugin.mo share/locale/fa/LC_MESSAGES/katefilebrowserplugin.mo share/locale/fa/LC_MESSAGES/kategdbplugin.mo share/locale/fa/LC_MESSAGES/katekonsoleplugin.mo share/locale/fa/LC_MESSAGES/katetextfilter.mo share/locale/fa/LC_MESSAGES/katexmltools.mo share/locale/fi/LC_MESSAGES/kate-ctags-plugin.mo share/locale/fi/LC_MESSAGES/kate-replicode-plugin.mo share/locale/fi/LC_MESSAGES/kate.mo share/locale/fi/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/fi/LC_MESSAGES/katebuild-plugin.mo share/locale/fi/LC_MESSAGES/katecloseexceptplugin.mo share/locale/fi/LC_MESSAGES/katecolorpickerplugin.mo share/locale/fi/LC_MESSAGES/kateexternaltoolsplugin.mo share/locale/fi/LC_MESSAGES/katefilebrowserplugin.mo share/locale/fi/LC_MESSAGES/katefiletree.mo share/locale/fi/LC_MESSAGES/kategdbplugin.mo share/locale/fi/LC_MESSAGES/kategitblameplugin.mo share/locale/fi/LC_MESSAGES/katekeyboardmacros.mo share/locale/fi/LC_MESSAGES/katekonsoleplugin.mo share/locale/fi/LC_MESSAGES/kateproject.mo share/locale/fi/LC_MESSAGES/katesearch.mo share/locale/fi/LC_MESSAGES/katesnippetsplugin.mo share/locale/fi/LC_MESSAGES/katesql.mo share/locale/fi/LC_MESSAGES/katesymbolviewer.mo share/locale/fi/LC_MESSAGES/katetextfilter.mo share/locale/fi/LC_MESSAGES/katexmlcheck.mo share/locale/fi/LC_MESSAGES/katexmltools.mo share/locale/fi/LC_MESSAGES/ktexteditorpreviewplugin.mo share/locale/fi/LC_MESSAGES/lspclient.mo share/locale/fi/LC_MESSAGES/tabswitcherplugin.mo share/locale/fr/LC_MESSAGES/kate-ctags-plugin.mo share/locale/fr/LC_MESSAGES/kate-replicode-plugin.mo share/locale/fr/LC_MESSAGES/kate.mo share/locale/fr/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/fr/LC_MESSAGES/katebuild-plugin.mo share/locale/fr/LC_MESSAGES/katecloseexceptplugin.mo share/locale/fr/LC_MESSAGES/katecolorpickerplugin.mo share/locale/fr/LC_MESSAGES/kateexternaltoolsplugin.mo share/locale/fr/LC_MESSAGES/katefilebrowserplugin.mo share/locale/fr/LC_MESSAGES/katefiletree.mo share/locale/fr/LC_MESSAGES/kategdbplugin.mo share/locale/fr/LC_MESSAGES/kategitblameplugin.mo share/locale/fr/LC_MESSAGES/katekeyboardmacros.mo share/locale/fr/LC_MESSAGES/katekonsoleplugin.mo share/locale/fr/LC_MESSAGES/kateproject.mo share/locale/fr/LC_MESSAGES/katesearch.mo share/locale/fr/LC_MESSAGES/katesnippetsplugin.mo share/locale/fr/LC_MESSAGES/katesql.mo share/locale/fr/LC_MESSAGES/katesymbolviewer.mo share/locale/fr/LC_MESSAGES/katetextfilter.mo share/locale/fr/LC_MESSAGES/katexmlcheck.mo share/locale/fr/LC_MESSAGES/katexmltools.mo share/locale/fr/LC_MESSAGES/ktexteditorpreviewplugin.mo share/locale/fr/LC_MESSAGES/lspclient.mo share/locale/fr/LC_MESSAGES/tabswitcherplugin.mo share/locale/fy/LC_MESSAGES/kate.mo share/locale/fy/LC_MESSAGES/katesymbolviewer.mo share/locale/fy/LC_MESSAGES/katetextfilter.mo share/locale/fy/LC_MESSAGES/katexmltools.mo share/locale/ga/LC_MESSAGES/kate-ctags-plugin.mo share/locale/ga/LC_MESSAGES/kate.mo share/locale/ga/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/ga/LC_MESSAGES/katebuild-plugin.mo share/locale/ga/LC_MESSAGES/katefilebrowserplugin.mo share/locale/ga/LC_MESSAGES/kategdbplugin.mo share/locale/ga/LC_MESSAGES/katekonsoleplugin.mo share/locale/ga/LC_MESSAGES/kateproject.mo share/locale/ga/LC_MESSAGES/katesearch.mo share/locale/ga/LC_MESSAGES/katesnippetsplugin.mo share/locale/ga/LC_MESSAGES/katesql.mo share/locale/ga/LC_MESSAGES/katesymbolviewer.mo share/locale/ga/LC_MESSAGES/katetextfilter.mo share/locale/ga/LC_MESSAGES/katexmltools.mo share/locale/gl/LC_MESSAGES/kate-ctags-plugin.mo share/locale/gl/LC_MESSAGES/kate-replicode-plugin.mo share/locale/gl/LC_MESSAGES/kate.mo share/locale/gl/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/gl/LC_MESSAGES/katebuild-plugin.mo share/locale/gl/LC_MESSAGES/katecloseexceptplugin.mo share/locale/gl/LC_MESSAGES/katefilebrowserplugin.mo share/locale/gl/LC_MESSAGES/katefiletree.mo share/locale/gl/LC_MESSAGES/kategdbplugin.mo share/locale/gl/LC_MESSAGES/katekonsoleplugin.mo share/locale/gl/LC_MESSAGES/kateproject.mo share/locale/gl/LC_MESSAGES/katesearch.mo share/locale/gl/LC_MESSAGES/katesnippetsplugin.mo share/locale/gl/LC_MESSAGES/katesql.mo share/locale/gl/LC_MESSAGES/katesymbolviewer.mo share/locale/gl/LC_MESSAGES/katetextfilter.mo share/locale/gl/LC_MESSAGES/katexmlcheck.mo share/locale/gl/LC_MESSAGES/katexmltools.mo share/locale/gl/LC_MESSAGES/ktexteditorpreviewplugin.mo share/locale/gl/LC_MESSAGES/lspclient.mo share/locale/gl/LC_MESSAGES/tabswitcherplugin.mo share/locale/he/LC_MESSAGES/kate-ctags-plugin.mo share/locale/he/LC_MESSAGES/kate-replicode-plugin.mo share/locale/he/LC_MESSAGES/kate.mo share/locale/he/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/he/LC_MESSAGES/katebuild-plugin.mo share/locale/he/LC_MESSAGES/katecloseexceptplugin.mo share/locale/he/LC_MESSAGES/katefilebrowserplugin.mo share/locale/he/LC_MESSAGES/katekonsoleplugin.mo share/locale/he/LC_MESSAGES/kateproject.mo share/locale/he/LC_MESSAGES/katesearch.mo share/locale/he/LC_MESSAGES/katesymbolviewer.mo share/locale/he/LC_MESSAGES/katetextfilter.mo share/locale/he/LC_MESSAGES/katexmltools.mo share/locale/hi/LC_MESSAGES/kate.mo share/locale/hi/LC_MESSAGES/katefilebrowserplugin.mo share/locale/hi/LC_MESSAGES/katekonsoleplugin.mo share/locale/hi/LC_MESSAGES/katesymbolviewer.mo share/locale/hi/LC_MESSAGES/katetextfilter.mo share/locale/hi/LC_MESSAGES/katexmltools.mo share/locale/hne/LC_MESSAGES/kate.mo share/locale/hne/LC_MESSAGES/katefilebrowserplugin.mo share/locale/hne/LC_MESSAGES/katekonsoleplugin.mo share/locale/hne/LC_MESSAGES/katesymbolviewer.mo share/locale/hne/LC_MESSAGES/katetextfilter.mo share/locale/hne/LC_MESSAGES/katexmltools.mo share/locale/hr/LC_MESSAGES/kate.mo share/locale/hr/LC_MESSAGES/katesymbolviewer.mo share/locale/hr/LC_MESSAGES/katetextfilter.mo share/locale/hr/LC_MESSAGES/katexmltools.mo share/locale/hsb/LC_MESSAGES/kate.mo share/locale/hu/LC_MESSAGES/kate-ctags-plugin.mo share/locale/hu/LC_MESSAGES/kate-replicode-plugin.mo share/locale/hu/LC_MESSAGES/kate.mo share/locale/hu/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/hu/LC_MESSAGES/katebuild-plugin.mo share/locale/hu/LC_MESSAGES/katecloseexceptplugin.mo share/locale/hu/LC_MESSAGES/katecolorpickerplugin.mo share/locale/hu/LC_MESSAGES/kateexternaltoolsplugin.mo share/locale/hu/LC_MESSAGES/katefilebrowserplugin.mo share/locale/hu/LC_MESSAGES/katefiletree.mo share/locale/hu/LC_MESSAGES/kategdbplugin.mo share/locale/hu/LC_MESSAGES/kategitblameplugin.mo share/locale/hu/LC_MESSAGES/katekonsoleplugin.mo share/locale/hu/LC_MESSAGES/kateproject.mo share/locale/hu/LC_MESSAGES/katesearch.mo share/locale/hu/LC_MESSAGES/katesnippetsplugin.mo share/locale/hu/LC_MESSAGES/katesql.mo share/locale/hu/LC_MESSAGES/katesymbolviewer.mo share/locale/hu/LC_MESSAGES/katetextfilter.mo share/locale/hu/LC_MESSAGES/katexmlcheck.mo share/locale/hu/LC_MESSAGES/katexmltools.mo share/locale/hu/LC_MESSAGES/ktexteditorpreviewplugin.mo share/locale/hu/LC_MESSAGES/lspclient.mo share/locale/hu/LC_MESSAGES/tabswitcherplugin.mo share/locale/ia/LC_MESSAGES/kate-ctags-plugin.mo share/locale/ia/LC_MESSAGES/kate-replicode-plugin.mo share/locale/ia/LC_MESSAGES/kate.mo share/locale/ia/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/ia/LC_MESSAGES/katebuild-plugin.mo share/locale/ia/LC_MESSAGES/katecloseexceptplugin.mo share/locale/ia/LC_MESSAGES/katecolorpickerplugin.mo share/locale/ia/LC_MESSAGES/kateexternaltoolsplugin.mo share/locale/ia/LC_MESSAGES/katefilebrowserplugin.mo share/locale/ia/LC_MESSAGES/katefiletree.mo share/locale/ia/LC_MESSAGES/kategdbplugin.mo share/locale/ia/LC_MESSAGES/kategitblameplugin.mo share/locale/ia/LC_MESSAGES/katekeyboardmacros.mo share/locale/ia/LC_MESSAGES/katekonsoleplugin.mo share/locale/ia/LC_MESSAGES/kateproject.mo share/locale/ia/LC_MESSAGES/katesearch.mo share/locale/ia/LC_MESSAGES/katesnippetsplugin.mo share/locale/ia/LC_MESSAGES/katesql.mo share/locale/ia/LC_MESSAGES/katesymbolviewer.mo share/locale/ia/LC_MESSAGES/katetextfilter.mo share/locale/ia/LC_MESSAGES/katexmlcheck.mo share/locale/ia/LC_MESSAGES/katexmltools.mo share/locale/ia/LC_MESSAGES/ktexteditorpreviewplugin.mo share/locale/ia/LC_MESSAGES/lspclient.mo share/locale/ia/LC_MESSAGES/tabswitcherplugin.mo share/locale/id/LC_MESSAGES/kate-ctags-plugin.mo share/locale/id/LC_MESSAGES/kate-replicode-plugin.mo share/locale/id/LC_MESSAGES/kate.mo share/locale/id/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/id/LC_MESSAGES/katebuild-plugin.mo share/locale/id/LC_MESSAGES/katecloseexceptplugin.mo share/locale/id/LC_MESSAGES/katecolorpickerplugin.mo share/locale/id/LC_MESSAGES/kateexternaltoolsplugin.mo share/locale/id/LC_MESSAGES/katefilebrowserplugin.mo share/locale/id/LC_MESSAGES/katefiletree.mo share/locale/id/LC_MESSAGES/kategdbplugin.mo share/locale/id/LC_MESSAGES/kategitblameplugin.mo share/locale/id/LC_MESSAGES/katekeyboardmacros.mo share/locale/id/LC_MESSAGES/katekonsoleplugin.mo share/locale/id/LC_MESSAGES/kateproject.mo share/locale/id/LC_MESSAGES/katesearch.mo share/locale/id/LC_MESSAGES/katesnippetsplugin.mo share/locale/id/LC_MESSAGES/katesql.mo share/locale/id/LC_MESSAGES/katesymbolviewer.mo share/locale/id/LC_MESSAGES/katetextfilter.mo share/locale/id/LC_MESSAGES/katexmlcheck.mo share/locale/id/LC_MESSAGES/katexmltools.mo share/locale/id/LC_MESSAGES/ktexteditorpreviewplugin.mo share/locale/id/LC_MESSAGES/lspclient.mo share/locale/id/LC_MESSAGES/tabswitcherplugin.mo share/locale/ie/LC_MESSAGES/kate.mo share/locale/ie/LC_MESSAGES/katefiletree.mo share/locale/ie/LC_MESSAGES/kategitblameplugin.mo share/locale/ie/LC_MESSAGES/katesnippetsplugin.mo share/locale/ie/LC_MESSAGES/katesymbolviewer.mo share/locale/ie/LC_MESSAGES/katetextfilter.mo share/locale/ie/LC_MESSAGES/katexmlcheck.mo share/locale/ie/LC_MESSAGES/katexmltools.mo share/locale/is/LC_MESSAGES/kate.mo share/locale/is/LC_MESSAGES/katefilebrowserplugin.mo share/locale/is/LC_MESSAGES/katekonsoleplugin.mo share/locale/is/LC_MESSAGES/katesearch.mo share/locale/is/LC_MESSAGES/katesymbolviewer.mo share/locale/is/LC_MESSAGES/katetextfilter.mo share/locale/is/LC_MESSAGES/katexmltools.mo share/locale/it/LC_MESSAGES/kate-ctags-plugin.mo share/locale/it/LC_MESSAGES/kate-replicode-plugin.mo share/locale/it/LC_MESSAGES/kate.mo share/locale/it/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/it/LC_MESSAGES/katebuild-plugin.mo share/locale/it/LC_MESSAGES/katecloseexceptplugin.mo share/locale/it/LC_MESSAGES/katecolorpickerplugin.mo share/locale/it/LC_MESSAGES/kateexternaltoolsplugin.mo share/locale/it/LC_MESSAGES/katefilebrowserplugin.mo share/locale/it/LC_MESSAGES/katefiletree.mo share/locale/it/LC_MESSAGES/kategdbplugin.mo share/locale/it/LC_MESSAGES/kategitblameplugin.mo share/locale/it/LC_MESSAGES/katekeyboardmacros.mo share/locale/it/LC_MESSAGES/katekonsoleplugin.mo share/locale/it/LC_MESSAGES/kateproject.mo share/locale/it/LC_MESSAGES/katesearch.mo share/locale/it/LC_MESSAGES/katesnippetsplugin.mo share/locale/it/LC_MESSAGES/katesql.mo share/locale/it/LC_MESSAGES/katesymbolviewer.mo share/locale/it/LC_MESSAGES/katetextfilter.mo share/locale/it/LC_MESSAGES/katexmlcheck.mo share/locale/it/LC_MESSAGES/katexmltools.mo share/locale/it/LC_MESSAGES/ktexteditorpreviewplugin.mo share/locale/it/LC_MESSAGES/lspclient.mo share/locale/it/LC_MESSAGES/tabswitcherplugin.mo share/locale/ja/LC_MESSAGES/kate-ctags-plugin.mo share/locale/ja/LC_MESSAGES/kate-replicode-plugin.mo share/locale/ja/LC_MESSAGES/kate.mo share/locale/ja/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/ja/LC_MESSAGES/katebuild-plugin.mo share/locale/ja/LC_MESSAGES/katecloseexceptplugin.mo share/locale/ja/LC_MESSAGES/katecolorpickerplugin.mo share/locale/ja/LC_MESSAGES/kateexternaltoolsplugin.mo share/locale/ja/LC_MESSAGES/katefilebrowserplugin.mo share/locale/ja/LC_MESSAGES/katefiletree.mo share/locale/ja/LC_MESSAGES/kategdbplugin.mo share/locale/ja/LC_MESSAGES/kategitblameplugin.mo share/locale/ja/LC_MESSAGES/katekeyboardmacros.mo share/locale/ja/LC_MESSAGES/katekonsoleplugin.mo share/locale/ja/LC_MESSAGES/kateproject.mo share/locale/ja/LC_MESSAGES/katesearch.mo share/locale/ja/LC_MESSAGES/katesnippetsplugin.mo share/locale/ja/LC_MESSAGES/katesql.mo share/locale/ja/LC_MESSAGES/katesymbolviewer.mo share/locale/ja/LC_MESSAGES/katetextfilter.mo share/locale/ja/LC_MESSAGES/katexmlcheck.mo share/locale/ja/LC_MESSAGES/katexmltools.mo share/locale/ja/LC_MESSAGES/ktexteditorpreviewplugin.mo share/locale/ja/LC_MESSAGES/lspclient.mo share/locale/ja/LC_MESSAGES/tabswitcherplugin.mo share/locale/ka/LC_MESSAGES/kate-ctags-plugin.mo share/locale/ka/LC_MESSAGES/kate-replicode-plugin.mo share/locale/ka/LC_MESSAGES/kate.mo share/locale/ka/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/ka/LC_MESSAGES/katebuild-plugin.mo share/locale/ka/LC_MESSAGES/katecloseexceptplugin.mo share/locale/ka/LC_MESSAGES/katecolorpickerplugin.mo share/locale/ka/LC_MESSAGES/kateexternaltoolsplugin.mo share/locale/ka/LC_MESSAGES/katefilebrowserplugin.mo share/locale/ka/LC_MESSAGES/katefiletree.mo share/locale/ka/LC_MESSAGES/kategdbplugin.mo share/locale/ka/LC_MESSAGES/kategitblameplugin.mo share/locale/ka/LC_MESSAGES/katekeyboardmacros.mo share/locale/ka/LC_MESSAGES/katekonsoleplugin.mo share/locale/ka/LC_MESSAGES/kateproject.mo share/locale/ka/LC_MESSAGES/katesearch.mo share/locale/ka/LC_MESSAGES/katesnippetsplugin.mo share/locale/ka/LC_MESSAGES/katesql.mo share/locale/ka/LC_MESSAGES/katesymbolviewer.mo share/locale/ka/LC_MESSAGES/katetextfilter.mo share/locale/ka/LC_MESSAGES/katexmlcheck.mo share/locale/ka/LC_MESSAGES/katexmltools.mo share/locale/ka/LC_MESSAGES/ktexteditorpreviewplugin.mo share/locale/ka/LC_MESSAGES/lspclient.mo share/locale/ka/LC_MESSAGES/tabswitcherplugin.mo share/locale/kk/LC_MESSAGES/kate-ctags-plugin.mo share/locale/kk/LC_MESSAGES/kate.mo share/locale/kk/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/kk/LC_MESSAGES/katebuild-plugin.mo share/locale/kk/LC_MESSAGES/katecloseexceptplugin.mo share/locale/kk/LC_MESSAGES/katefilebrowserplugin.mo share/locale/kk/LC_MESSAGES/kategdbplugin.mo share/locale/kk/LC_MESSAGES/katekonsoleplugin.mo share/locale/kk/LC_MESSAGES/kateproject.mo share/locale/kk/LC_MESSAGES/katesearch.mo share/locale/kk/LC_MESSAGES/katesnippetsplugin.mo share/locale/kk/LC_MESSAGES/katesql.mo share/locale/kk/LC_MESSAGES/katesymbolviewer.mo share/locale/kk/LC_MESSAGES/katetextfilter.mo share/locale/kk/LC_MESSAGES/katexmltools.mo share/locale/km/LC_MESSAGES/kate-ctags-plugin.mo share/locale/km/LC_MESSAGES/kate.mo share/locale/km/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/km/LC_MESSAGES/katebuild-plugin.mo share/locale/km/LC_MESSAGES/katefilebrowserplugin.mo share/locale/km/LC_MESSAGES/kategdbplugin.mo share/locale/km/LC_MESSAGES/katekonsoleplugin.mo share/locale/km/LC_MESSAGES/katesearch.mo share/locale/km/LC_MESSAGES/katesql.mo share/locale/km/LC_MESSAGES/katesymbolviewer.mo share/locale/km/LC_MESSAGES/katetextfilter.mo share/locale/km/LC_MESSAGES/katexmltools.mo share/locale/ko/LC_MESSAGES/kate-ctags-plugin.mo share/locale/ko/LC_MESSAGES/kate-replicode-plugin.mo share/locale/ko/LC_MESSAGES/kate.mo share/locale/ko/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/ko/LC_MESSAGES/katebuild-plugin.mo share/locale/ko/LC_MESSAGES/katecloseexceptplugin.mo share/locale/ko/LC_MESSAGES/katecolorpickerplugin.mo share/locale/ko/LC_MESSAGES/kateexternaltoolsplugin.mo share/locale/ko/LC_MESSAGES/katefilebrowserplugin.mo share/locale/ko/LC_MESSAGES/katefiletree.mo share/locale/ko/LC_MESSAGES/kategdbplugin.mo share/locale/ko/LC_MESSAGES/kategitblameplugin.mo share/locale/ko/LC_MESSAGES/katekonsoleplugin.mo share/locale/ko/LC_MESSAGES/kateproject.mo share/locale/ko/LC_MESSAGES/katesearch.mo share/locale/ko/LC_MESSAGES/katesnippetsplugin.mo share/locale/ko/LC_MESSAGES/katesql.mo share/locale/ko/LC_MESSAGES/katesymbolviewer.mo share/locale/ko/LC_MESSAGES/katetextfilter.mo share/locale/ko/LC_MESSAGES/katexmlcheck.mo share/locale/ko/LC_MESSAGES/katexmltools.mo share/locale/ko/LC_MESSAGES/ktexteditorpreviewplugin.mo share/locale/ko/LC_MESSAGES/lspclient.mo share/locale/ko/LC_MESSAGES/tabswitcherplugin.mo share/locale/ku/LC_MESSAGES/kate.mo share/locale/lt/LC_MESSAGES/kate-ctags-plugin.mo share/locale/lt/LC_MESSAGES/kate-replicode-plugin.mo share/locale/lt/LC_MESSAGES/kate.mo share/locale/lt/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/lt/LC_MESSAGES/katebuild-plugin.mo share/locale/lt/LC_MESSAGES/katecloseexceptplugin.mo +share/locale/lt/LC_MESSAGES/katecolorpickerplugin.mo share/locale/lt/LC_MESSAGES/kateexternaltoolsplugin.mo share/locale/lt/LC_MESSAGES/katefilebrowserplugin.mo share/locale/lt/LC_MESSAGES/katefiletree.mo share/locale/lt/LC_MESSAGES/kategdbplugin.mo +share/locale/lt/LC_MESSAGES/kategitblameplugin.mo +share/locale/lt/LC_MESSAGES/katekeyboardmacros.mo share/locale/lt/LC_MESSAGES/katekonsoleplugin.mo share/locale/lt/LC_MESSAGES/kateproject.mo share/locale/lt/LC_MESSAGES/katesearch.mo share/locale/lt/LC_MESSAGES/katesnippetsplugin.mo share/locale/lt/LC_MESSAGES/katesql.mo share/locale/lt/LC_MESSAGES/katesymbolviewer.mo share/locale/lt/LC_MESSAGES/katetextfilter.mo share/locale/lt/LC_MESSAGES/katexmlcheck.mo share/locale/lt/LC_MESSAGES/katexmltools.mo share/locale/lt/LC_MESSAGES/ktexteditorpreviewplugin.mo share/locale/lt/LC_MESSAGES/lspclient.mo share/locale/lt/LC_MESSAGES/tabswitcherplugin.mo share/locale/lv/LC_MESSAGES/kate-ctags-plugin.mo share/locale/lv/LC_MESSAGES/kate.mo share/locale/lv/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/lv/LC_MESSAGES/katebuild-plugin.mo share/locale/lv/LC_MESSAGES/katefilebrowserplugin.mo share/locale/lv/LC_MESSAGES/kategdbplugin.mo share/locale/lv/LC_MESSAGES/katekonsoleplugin.mo share/locale/lv/LC_MESSAGES/katesearch.mo share/locale/lv/LC_MESSAGES/katesql.mo share/locale/lv/LC_MESSAGES/katesymbolviewer.mo share/locale/lv/LC_MESSAGES/katetextfilter.mo share/locale/lv/LC_MESSAGES/katexmltools.mo share/locale/mai/LC_MESSAGES/kate-ctags-plugin.mo share/locale/mai/LC_MESSAGES/kate.mo share/locale/mai/LC_MESSAGES/katesql.mo share/locale/mai/LC_MESSAGES/katesymbolviewer.mo share/locale/mk/LC_MESSAGES/kate.mo share/locale/mk/LC_MESSAGES/katetextfilter.mo share/locale/mk/LC_MESSAGES/katexmltools.mo share/locale/ml/LC_MESSAGES/kate-ctags-plugin.mo share/locale/ml/LC_MESSAGES/kate-replicode-plugin.mo share/locale/ml/LC_MESSAGES/kate.mo share/locale/ml/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/ml/LC_MESSAGES/katebuild-plugin.mo share/locale/ml/LC_MESSAGES/katecloseexceptplugin.mo share/locale/ml/LC_MESSAGES/kateexternaltoolsplugin.mo share/locale/ml/LC_MESSAGES/katefilebrowserplugin.mo share/locale/ml/LC_MESSAGES/katefiletree.mo share/locale/ml/LC_MESSAGES/kategdbplugin.mo share/locale/ml/LC_MESSAGES/katekonsoleplugin.mo share/locale/ml/LC_MESSAGES/kateproject.mo share/locale/ml/LC_MESSAGES/katesearch.mo share/locale/ml/LC_MESSAGES/katesnippetsplugin.mo share/locale/ml/LC_MESSAGES/katesql.mo share/locale/ml/LC_MESSAGES/katesymbolviewer.mo share/locale/ml/LC_MESSAGES/katetextfilter.mo share/locale/ml/LC_MESSAGES/katexmlcheck.mo share/locale/ml/LC_MESSAGES/katexmltools.mo share/locale/ml/LC_MESSAGES/ktexteditorpreviewplugin.mo share/locale/ml/LC_MESSAGES/lspclient.mo share/locale/ml/LC_MESSAGES/tabswitcherplugin.mo share/locale/mr/LC_MESSAGES/kate-ctags-plugin.mo share/locale/mr/LC_MESSAGES/kate.mo share/locale/mr/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/mr/LC_MESSAGES/katebuild-plugin.mo share/locale/mr/LC_MESSAGES/katecloseexceptplugin.mo share/locale/mr/LC_MESSAGES/katefilebrowserplugin.mo share/locale/mr/LC_MESSAGES/kategdbplugin.mo share/locale/mr/LC_MESSAGES/katekonsoleplugin.mo share/locale/mr/LC_MESSAGES/kateproject.mo share/locale/mr/LC_MESSAGES/katesearch.mo share/locale/mr/LC_MESSAGES/katesnippetsplugin.mo share/locale/mr/LC_MESSAGES/katesql.mo share/locale/mr/LC_MESSAGES/katesymbolviewer.mo share/locale/mr/LC_MESSAGES/katetextfilter.mo share/locale/mr/LC_MESSAGES/katexmltools.mo share/locale/ms/LC_MESSAGES/kate-ctags-plugin.mo share/locale/ms/LC_MESSAGES/kate.mo share/locale/ms/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/ms/LC_MESSAGES/katebuild-plugin.mo share/locale/ms/LC_MESSAGES/katefilebrowserplugin.mo share/locale/ms/LC_MESSAGES/kategdbplugin.mo share/locale/ms/LC_MESSAGES/katekonsoleplugin.mo share/locale/ms/LC_MESSAGES/katesymbolviewer.mo share/locale/ms/LC_MESSAGES/katetextfilter.mo share/locale/ms/LC_MESSAGES/katexmltools.mo share/locale/my/LC_MESSAGES/kate-ctags-plugin.mo share/locale/my/LC_MESSAGES/kate-replicode-plugin.mo share/locale/my/LC_MESSAGES/kate.mo share/locale/my/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/my/LC_MESSAGES/katebuild-plugin.mo share/locale/my/LC_MESSAGES/katecloseexceptplugin.mo share/locale/my/LC_MESSAGES/katecolorpickerplugin.mo share/locale/my/LC_MESSAGES/kateexternaltoolsplugin.mo share/locale/my/LC_MESSAGES/katefilebrowserplugin.mo share/locale/my/LC_MESSAGES/katefiletree.mo share/locale/my/LC_MESSAGES/kategdbplugin.mo share/locale/my/LC_MESSAGES/kategitblameplugin.mo share/locale/my/LC_MESSAGES/katekonsoleplugin.mo share/locale/my/LC_MESSAGES/kateproject.mo share/locale/my/LC_MESSAGES/katesearch.mo share/locale/my/LC_MESSAGES/katesnippetsplugin.mo share/locale/my/LC_MESSAGES/katesql.mo share/locale/my/LC_MESSAGES/katesymbolviewer.mo share/locale/my/LC_MESSAGES/katetextfilter.mo share/locale/my/LC_MESSAGES/katexmlcheck.mo share/locale/my/LC_MESSAGES/katexmltools.mo share/locale/my/LC_MESSAGES/ktexteditorpreviewplugin.mo share/locale/my/LC_MESSAGES/lspclient.mo share/locale/my/LC_MESSAGES/tabswitcherplugin.mo share/locale/nb/LC_MESSAGES/kate-ctags-plugin.mo share/locale/nb/LC_MESSAGES/kate-replicode-plugin.mo share/locale/nb/LC_MESSAGES/kate.mo share/locale/nb/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/nb/LC_MESSAGES/katebuild-plugin.mo share/locale/nb/LC_MESSAGES/katecloseexceptplugin.mo share/locale/nb/LC_MESSAGES/katefilebrowserplugin.mo share/locale/nb/LC_MESSAGES/katefiletree.mo share/locale/nb/LC_MESSAGES/kategdbplugin.mo share/locale/nb/LC_MESSAGES/katekonsoleplugin.mo share/locale/nb/LC_MESSAGES/kateproject.mo share/locale/nb/LC_MESSAGES/katesearch.mo share/locale/nb/LC_MESSAGES/katesnippetsplugin.mo share/locale/nb/LC_MESSAGES/katesql.mo share/locale/nb/LC_MESSAGES/katesymbolviewer.mo share/locale/nb/LC_MESSAGES/katetextfilter.mo share/locale/nb/LC_MESSAGES/katexmltools.mo share/locale/nb/LC_MESSAGES/tabswitcherplugin.mo share/locale/nds/LC_MESSAGES/kate-ctags-plugin.mo share/locale/nds/LC_MESSAGES/kate.mo share/locale/nds/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/nds/LC_MESSAGES/katebuild-plugin.mo share/locale/nds/LC_MESSAGES/katecloseexceptplugin.mo share/locale/nds/LC_MESSAGES/katefilebrowserplugin.mo share/locale/nds/LC_MESSAGES/katefiletree.mo share/locale/nds/LC_MESSAGES/kategdbplugin.mo share/locale/nds/LC_MESSAGES/katekonsoleplugin.mo share/locale/nds/LC_MESSAGES/kateproject.mo share/locale/nds/LC_MESSAGES/katesearch.mo share/locale/nds/LC_MESSAGES/katesnippetsplugin.mo share/locale/nds/LC_MESSAGES/katesql.mo share/locale/nds/LC_MESSAGES/katesymbolviewer.mo share/locale/nds/LC_MESSAGES/katetextfilter.mo share/locale/nds/LC_MESSAGES/katexmltools.mo share/locale/nds/LC_MESSAGES/tabswitcherplugin.mo share/locale/ne/LC_MESSAGES/kate.mo share/locale/nl/LC_MESSAGES/kate-ctags-plugin.mo share/locale/nl/LC_MESSAGES/kate-replicode-plugin.mo share/locale/nl/LC_MESSAGES/kate.mo share/locale/nl/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/nl/LC_MESSAGES/katebuild-plugin.mo share/locale/nl/LC_MESSAGES/katecloseexceptplugin.mo share/locale/nl/LC_MESSAGES/katecolorpickerplugin.mo share/locale/nl/LC_MESSAGES/kateexternaltoolsplugin.mo share/locale/nl/LC_MESSAGES/katefilebrowserplugin.mo share/locale/nl/LC_MESSAGES/katefiletree.mo share/locale/nl/LC_MESSAGES/kategdbplugin.mo share/locale/nl/LC_MESSAGES/kategitblameplugin.mo share/locale/nl/LC_MESSAGES/katekeyboardmacros.mo share/locale/nl/LC_MESSAGES/katekonsoleplugin.mo share/locale/nl/LC_MESSAGES/kateproject.mo share/locale/nl/LC_MESSAGES/katesearch.mo share/locale/nl/LC_MESSAGES/katesnippetsplugin.mo share/locale/nl/LC_MESSAGES/katesql.mo share/locale/nl/LC_MESSAGES/katesymbolviewer.mo share/locale/nl/LC_MESSAGES/katetextfilter.mo share/locale/nl/LC_MESSAGES/katexmlcheck.mo share/locale/nl/LC_MESSAGES/katexmltools.mo share/locale/nl/LC_MESSAGES/ktexteditorpreviewplugin.mo share/locale/nl/LC_MESSAGES/lspclient.mo share/locale/nl/LC_MESSAGES/tabswitcherplugin.mo share/locale/nn/LC_MESSAGES/kate-ctags-plugin.mo share/locale/nn/LC_MESSAGES/kate-replicode-plugin.mo share/locale/nn/LC_MESSAGES/kate.mo share/locale/nn/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/nn/LC_MESSAGES/katebuild-plugin.mo share/locale/nn/LC_MESSAGES/katecloseexceptplugin.mo share/locale/nn/LC_MESSAGES/katecolorpickerplugin.mo share/locale/nn/LC_MESSAGES/kateexternaltoolsplugin.mo share/locale/nn/LC_MESSAGES/katefilebrowserplugin.mo share/locale/nn/LC_MESSAGES/katefiletree.mo share/locale/nn/LC_MESSAGES/kategdbplugin.mo share/locale/nn/LC_MESSAGES/katekonsoleplugin.mo share/locale/nn/LC_MESSAGES/kateproject.mo share/locale/nn/LC_MESSAGES/katesearch.mo share/locale/nn/LC_MESSAGES/katesnippetsplugin.mo share/locale/nn/LC_MESSAGES/katesql.mo share/locale/nn/LC_MESSAGES/katesymbolviewer.mo share/locale/nn/LC_MESSAGES/katetextfilter.mo share/locale/nn/LC_MESSAGES/katexmlcheck.mo share/locale/nn/LC_MESSAGES/katexmltools.mo share/locale/nn/LC_MESSAGES/ktexteditorpreviewplugin.mo share/locale/nn/LC_MESSAGES/lspclient.mo share/locale/nn/LC_MESSAGES/tabswitcherplugin.mo share/locale/oc/LC_MESSAGES/kate.mo share/locale/oc/LC_MESSAGES/katefilebrowserplugin.mo share/locale/oc/LC_MESSAGES/katekonsoleplugin.mo share/locale/oc/LC_MESSAGES/katesymbolviewer.mo share/locale/oc/LC_MESSAGES/katetextfilter.mo share/locale/oc/LC_MESSAGES/katexmltools.mo share/locale/pa/LC_MESSAGES/kate-ctags-plugin.mo share/locale/pa/LC_MESSAGES/kate.mo share/locale/pa/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/pa/LC_MESSAGES/katebuild-plugin.mo share/locale/pa/LC_MESSAGES/katecloseexceptplugin.mo share/locale/pa/LC_MESSAGES/katefilebrowserplugin.mo share/locale/pa/LC_MESSAGES/katefiletree.mo share/locale/pa/LC_MESSAGES/kategdbplugin.mo share/locale/pa/LC_MESSAGES/katekonsoleplugin.mo share/locale/pa/LC_MESSAGES/kateproject.mo share/locale/pa/LC_MESSAGES/katesearch.mo share/locale/pa/LC_MESSAGES/katesnippetsplugin.mo share/locale/pa/LC_MESSAGES/katesql.mo share/locale/pa/LC_MESSAGES/katesymbolviewer.mo share/locale/pa/LC_MESSAGES/katetextfilter.mo share/locale/pa/LC_MESSAGES/katexmltools.mo share/locale/pa/LC_MESSAGES/tabswitcherplugin.mo share/locale/pl/LC_MESSAGES/kate-ctags-plugin.mo share/locale/pl/LC_MESSAGES/kate-replicode-plugin.mo share/locale/pl/LC_MESSAGES/kate.mo share/locale/pl/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/pl/LC_MESSAGES/katebuild-plugin.mo share/locale/pl/LC_MESSAGES/katecloseexceptplugin.mo share/locale/pl/LC_MESSAGES/katecolorpickerplugin.mo share/locale/pl/LC_MESSAGES/kateexternaltoolsplugin.mo share/locale/pl/LC_MESSAGES/katefilebrowserplugin.mo share/locale/pl/LC_MESSAGES/katefiletree.mo share/locale/pl/LC_MESSAGES/kategdbplugin.mo share/locale/pl/LC_MESSAGES/kategitblameplugin.mo share/locale/pl/LC_MESSAGES/katekeyboardmacros.mo share/locale/pl/LC_MESSAGES/katekonsoleplugin.mo share/locale/pl/LC_MESSAGES/kateproject.mo share/locale/pl/LC_MESSAGES/katesearch.mo share/locale/pl/LC_MESSAGES/katesnippetsplugin.mo share/locale/pl/LC_MESSAGES/katesql.mo share/locale/pl/LC_MESSAGES/katesymbolviewer.mo share/locale/pl/LC_MESSAGES/katetextfilter.mo share/locale/pl/LC_MESSAGES/katexmlcheck.mo share/locale/pl/LC_MESSAGES/katexmltools.mo share/locale/pl/LC_MESSAGES/ktexteditorpreviewplugin.mo share/locale/pl/LC_MESSAGES/lspclient.mo share/locale/pl/LC_MESSAGES/tabswitcherplugin.mo share/locale/pt/LC_MESSAGES/kate-ctags-plugin.mo share/locale/pt/LC_MESSAGES/kate-replicode-plugin.mo share/locale/pt/LC_MESSAGES/kate.mo share/locale/pt/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/pt/LC_MESSAGES/katebuild-plugin.mo share/locale/pt/LC_MESSAGES/katecloseexceptplugin.mo share/locale/pt/LC_MESSAGES/katecolorpickerplugin.mo share/locale/pt/LC_MESSAGES/kateexternaltoolsplugin.mo share/locale/pt/LC_MESSAGES/katefilebrowserplugin.mo share/locale/pt/LC_MESSAGES/katefiletree.mo share/locale/pt/LC_MESSAGES/kategdbplugin.mo share/locale/pt/LC_MESSAGES/kategitblameplugin.mo share/locale/pt/LC_MESSAGES/katekeyboardmacros.mo share/locale/pt/LC_MESSAGES/katekonsoleplugin.mo share/locale/pt/LC_MESSAGES/kateproject.mo share/locale/pt/LC_MESSAGES/katesearch.mo share/locale/pt/LC_MESSAGES/katesnippetsplugin.mo share/locale/pt/LC_MESSAGES/katesql.mo share/locale/pt/LC_MESSAGES/katesymbolviewer.mo share/locale/pt/LC_MESSAGES/katetextfilter.mo share/locale/pt/LC_MESSAGES/katexmlcheck.mo share/locale/pt/LC_MESSAGES/katexmltools.mo share/locale/pt/LC_MESSAGES/ktexteditorpreviewplugin.mo share/locale/pt/LC_MESSAGES/lspclient.mo share/locale/pt/LC_MESSAGES/tabswitcherplugin.mo share/locale/pt_BR/LC_MESSAGES/kate-ctags-plugin.mo share/locale/pt_BR/LC_MESSAGES/kate-replicode-plugin.mo share/locale/pt_BR/LC_MESSAGES/kate.mo share/locale/pt_BR/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/pt_BR/LC_MESSAGES/katebuild-plugin.mo share/locale/pt_BR/LC_MESSAGES/katecloseexceptplugin.mo share/locale/pt_BR/LC_MESSAGES/katecolorpickerplugin.mo share/locale/pt_BR/LC_MESSAGES/kateexternaltoolsplugin.mo share/locale/pt_BR/LC_MESSAGES/katefilebrowserplugin.mo share/locale/pt_BR/LC_MESSAGES/katefiletree.mo share/locale/pt_BR/LC_MESSAGES/kategdbplugin.mo share/locale/pt_BR/LC_MESSAGES/kategitblameplugin.mo share/locale/pt_BR/LC_MESSAGES/katekeyboardmacros.mo share/locale/pt_BR/LC_MESSAGES/katekonsoleplugin.mo share/locale/pt_BR/LC_MESSAGES/kateproject.mo share/locale/pt_BR/LC_MESSAGES/katesearch.mo share/locale/pt_BR/LC_MESSAGES/katesnippetsplugin.mo share/locale/pt_BR/LC_MESSAGES/katesql.mo share/locale/pt_BR/LC_MESSAGES/katesymbolviewer.mo share/locale/pt_BR/LC_MESSAGES/katetextfilter.mo share/locale/pt_BR/LC_MESSAGES/katexmlcheck.mo share/locale/pt_BR/LC_MESSAGES/katexmltools.mo share/locale/pt_BR/LC_MESSAGES/ktexteditorpreviewplugin.mo share/locale/pt_BR/LC_MESSAGES/lspclient.mo share/locale/pt_BR/LC_MESSAGES/tabswitcherplugin.mo share/locale/ro/LC_MESSAGES/kate-ctags-plugin.mo share/locale/ro/LC_MESSAGES/kate.mo share/locale/ro/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/ro/LC_MESSAGES/katebuild-plugin.mo share/locale/ro/LC_MESSAGES/katecloseexceptplugin.mo share/locale/ro/LC_MESSAGES/kateexternaltoolsplugin.mo share/locale/ro/LC_MESSAGES/katefilebrowserplugin.mo share/locale/ro/LC_MESSAGES/katefiletree.mo share/locale/ro/LC_MESSAGES/kategdbplugin.mo share/locale/ro/LC_MESSAGES/katekonsoleplugin.mo share/locale/ro/LC_MESSAGES/kateproject.mo share/locale/ro/LC_MESSAGES/katesearch.mo share/locale/ro/LC_MESSAGES/katesnippetsplugin.mo share/locale/ro/LC_MESSAGES/katesql.mo share/locale/ro/LC_MESSAGES/katesymbolviewer.mo share/locale/ro/LC_MESSAGES/katetextfilter.mo share/locale/ro/LC_MESSAGES/katexmlcheck.mo share/locale/ro/LC_MESSAGES/katexmltools.mo share/locale/ro/LC_MESSAGES/ktexteditorpreviewplugin.mo share/locale/ro/LC_MESSAGES/lspclient.mo share/locale/ro/LC_MESSAGES/tabswitcherplugin.mo share/locale/ru/LC_MESSAGES/kate-ctags-plugin.mo share/locale/ru/LC_MESSAGES/kate-replicode-plugin.mo share/locale/ru/LC_MESSAGES/kate.mo share/locale/ru/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/ru/LC_MESSAGES/katebuild-plugin.mo share/locale/ru/LC_MESSAGES/katecloseexceptplugin.mo share/locale/ru/LC_MESSAGES/katecolorpickerplugin.mo share/locale/ru/LC_MESSAGES/kateexternaltoolsplugin.mo share/locale/ru/LC_MESSAGES/katefilebrowserplugin.mo share/locale/ru/LC_MESSAGES/katefiletree.mo share/locale/ru/LC_MESSAGES/kategdbplugin.mo share/locale/ru/LC_MESSAGES/kategitblameplugin.mo share/locale/ru/LC_MESSAGES/katekeyboardmacros.mo share/locale/ru/LC_MESSAGES/katekonsoleplugin.mo share/locale/ru/LC_MESSAGES/kateproject.mo share/locale/ru/LC_MESSAGES/katesearch.mo share/locale/ru/LC_MESSAGES/katesnippetsplugin.mo share/locale/ru/LC_MESSAGES/katesql.mo share/locale/ru/LC_MESSAGES/katesymbolviewer.mo share/locale/ru/LC_MESSAGES/katetextfilter.mo share/locale/ru/LC_MESSAGES/katexmlcheck.mo share/locale/ru/LC_MESSAGES/katexmltools.mo share/locale/ru/LC_MESSAGES/ktexteditorpreviewplugin.mo share/locale/ru/LC_MESSAGES/lspclient.mo share/locale/ru/LC_MESSAGES/tabswitcherplugin.mo share/locale/se/LC_MESSAGES/kate.mo share/locale/se/LC_MESSAGES/katefilebrowserplugin.mo share/locale/se/LC_MESSAGES/katefiletree.mo share/locale/se/LC_MESSAGES/katekonsoleplugin.mo share/locale/se/LC_MESSAGES/katesymbolviewer.mo share/locale/se/LC_MESSAGES/katetextfilter.mo share/locale/se/LC_MESSAGES/katexmltools.mo share/locale/si/LC_MESSAGES/kate.mo share/locale/si/LC_MESSAGES/katebuild-plugin.mo share/locale/si/LC_MESSAGES/katefilebrowserplugin.mo share/locale/si/LC_MESSAGES/katekonsoleplugin.mo share/locale/si/LC_MESSAGES/katesearch.mo share/locale/si/LC_MESSAGES/katesql.mo share/locale/si/LC_MESSAGES/katesymbolviewer.mo share/locale/si/LC_MESSAGES/katexmltools.mo share/locale/sk/LC_MESSAGES/kate-ctags-plugin.mo share/locale/sk/LC_MESSAGES/kate-replicode-plugin.mo share/locale/sk/LC_MESSAGES/kate.mo share/locale/sk/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/sk/LC_MESSAGES/katebuild-plugin.mo share/locale/sk/LC_MESSAGES/katecloseexceptplugin.mo share/locale/sk/LC_MESSAGES/katecolorpickerplugin.mo share/locale/sk/LC_MESSAGES/kateexternaltoolsplugin.mo share/locale/sk/LC_MESSAGES/katefilebrowserplugin.mo share/locale/sk/LC_MESSAGES/katefiletree.mo share/locale/sk/LC_MESSAGES/kategdbplugin.mo share/locale/sk/LC_MESSAGES/kategitblameplugin.mo share/locale/sk/LC_MESSAGES/katekeyboardmacros.mo share/locale/sk/LC_MESSAGES/katekonsoleplugin.mo share/locale/sk/LC_MESSAGES/kateproject.mo share/locale/sk/LC_MESSAGES/katesearch.mo share/locale/sk/LC_MESSAGES/katesnippetsplugin.mo share/locale/sk/LC_MESSAGES/katesql.mo share/locale/sk/LC_MESSAGES/katesymbolviewer.mo share/locale/sk/LC_MESSAGES/katetextfilter.mo share/locale/sk/LC_MESSAGES/katexmlcheck.mo share/locale/sk/LC_MESSAGES/katexmltools.mo share/locale/sk/LC_MESSAGES/ktexteditorpreviewplugin.mo share/locale/sk/LC_MESSAGES/lspclient.mo share/locale/sk/LC_MESSAGES/tabswitcherplugin.mo share/locale/sl/LC_MESSAGES/kate-ctags-plugin.mo share/locale/sl/LC_MESSAGES/kate-replicode-plugin.mo share/locale/sl/LC_MESSAGES/kate.mo share/locale/sl/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/sl/LC_MESSAGES/katebuild-plugin.mo share/locale/sl/LC_MESSAGES/katecloseexceptplugin.mo share/locale/sl/LC_MESSAGES/katecolorpickerplugin.mo share/locale/sl/LC_MESSAGES/kateexternaltoolsplugin.mo share/locale/sl/LC_MESSAGES/katefilebrowserplugin.mo share/locale/sl/LC_MESSAGES/katefiletree.mo share/locale/sl/LC_MESSAGES/kategdbplugin.mo share/locale/sl/LC_MESSAGES/kategitblameplugin.mo share/locale/sl/LC_MESSAGES/katekeyboardmacros.mo share/locale/sl/LC_MESSAGES/katekonsoleplugin.mo share/locale/sl/LC_MESSAGES/kateproject.mo share/locale/sl/LC_MESSAGES/katesearch.mo share/locale/sl/LC_MESSAGES/katesnippetsplugin.mo share/locale/sl/LC_MESSAGES/katesql.mo share/locale/sl/LC_MESSAGES/katesymbolviewer.mo share/locale/sl/LC_MESSAGES/katetextfilter.mo share/locale/sl/LC_MESSAGES/katexmlcheck.mo share/locale/sl/LC_MESSAGES/katexmltools.mo share/locale/sl/LC_MESSAGES/ktexteditorpreviewplugin.mo share/locale/sl/LC_MESSAGES/lspclient.mo share/locale/sl/LC_MESSAGES/tabswitcherplugin.mo share/locale/sq/LC_MESSAGES/kate-ctags-plugin.mo share/locale/sq/LC_MESSAGES/kate.mo share/locale/sq/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/sq/LC_MESSAGES/katebuild-plugin.mo share/locale/sq/LC_MESSAGES/katefilebrowserplugin.mo share/locale/sq/LC_MESSAGES/katekonsoleplugin.mo share/locale/sq/LC_MESSAGES/katesymbolviewer.mo share/locale/sq/LC_MESSAGES/katetextfilter.mo share/locale/sq/LC_MESSAGES/katexmltools.mo share/locale/sr/LC_MESSAGES/kate-ctags-plugin.mo share/locale/sr/LC_MESSAGES/kate-replicode-plugin.mo share/locale/sr/LC_MESSAGES/kate.mo share/locale/sr/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/sr/LC_MESSAGES/katebuild-plugin.mo share/locale/sr/LC_MESSAGES/katecloseexceptplugin.mo share/locale/sr/LC_MESSAGES/katefilebrowserplugin.mo share/locale/sr/LC_MESSAGES/katefiletree.mo share/locale/sr/LC_MESSAGES/kategdbplugin.mo share/locale/sr/LC_MESSAGES/katekonsoleplugin.mo share/locale/sr/LC_MESSAGES/kateproject.mo share/locale/sr/LC_MESSAGES/katesearch.mo share/locale/sr/LC_MESSAGES/katesnippetsplugin.mo share/locale/sr/LC_MESSAGES/katesql.mo share/locale/sr/LC_MESSAGES/katesymbolviewer.mo share/locale/sr/LC_MESSAGES/katetextfilter.mo share/locale/sr/LC_MESSAGES/katexmlcheck.mo share/locale/sr/LC_MESSAGES/katexmltools.mo share/locale/sr/LC_MESSAGES/ktexteditorpreviewplugin.mo share/locale/sr/LC_MESSAGES/tabswitcherplugin.mo share/locale/sr@ijekavian/LC_MESSAGES/kate-ctags-plugin.mo share/locale/sr@ijekavian/LC_MESSAGES/kate-replicode-plugin.mo share/locale/sr@ijekavian/LC_MESSAGES/kate.mo share/locale/sr@ijekavian/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/sr@ijekavian/LC_MESSAGES/katebuild-plugin.mo share/locale/sr@ijekavian/LC_MESSAGES/katecloseexceptplugin.mo share/locale/sr@ijekavian/LC_MESSAGES/katefilebrowserplugin.mo share/locale/sr@ijekavian/LC_MESSAGES/katefiletree.mo share/locale/sr@ijekavian/LC_MESSAGES/kategdbplugin.mo share/locale/sr@ijekavian/LC_MESSAGES/katekonsoleplugin.mo share/locale/sr@ijekavian/LC_MESSAGES/kateproject.mo share/locale/sr@ijekavian/LC_MESSAGES/katesearch.mo share/locale/sr@ijekavian/LC_MESSAGES/katesnippetsplugin.mo share/locale/sr@ijekavian/LC_MESSAGES/katesql.mo share/locale/sr@ijekavian/LC_MESSAGES/katesymbolviewer.mo share/locale/sr@ijekavian/LC_MESSAGES/katetextfilter.mo share/locale/sr@ijekavian/LC_MESSAGES/katexmlcheck.mo share/locale/sr@ijekavian/LC_MESSAGES/katexmltools.mo share/locale/sr@ijekavian/LC_MESSAGES/ktexteditorpreviewplugin.mo share/locale/sr@ijekavian/LC_MESSAGES/tabswitcherplugin.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kate-ctags-plugin.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kate-replicode-plugin.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kate.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/katebuild-plugin.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/katecloseexceptplugin.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/katefilebrowserplugin.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/katefiletree.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kategdbplugin.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/katekonsoleplugin.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kateproject.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/katesearch.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/katesnippetsplugin.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/katesql.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/katesymbolviewer.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/katetextfilter.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/katexmlcheck.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/katexmltools.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/ktexteditorpreviewplugin.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/tabswitcherplugin.mo share/locale/sr@latin/LC_MESSAGES/kate-ctags-plugin.mo share/locale/sr@latin/LC_MESSAGES/kate-replicode-plugin.mo share/locale/sr@latin/LC_MESSAGES/kate.mo share/locale/sr@latin/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/sr@latin/LC_MESSAGES/katebuild-plugin.mo share/locale/sr@latin/LC_MESSAGES/katecloseexceptplugin.mo share/locale/sr@latin/LC_MESSAGES/katefilebrowserplugin.mo share/locale/sr@latin/LC_MESSAGES/katefiletree.mo share/locale/sr@latin/LC_MESSAGES/kategdbplugin.mo share/locale/sr@latin/LC_MESSAGES/katekonsoleplugin.mo share/locale/sr@latin/LC_MESSAGES/kateproject.mo share/locale/sr@latin/LC_MESSAGES/katesearch.mo share/locale/sr@latin/LC_MESSAGES/katesnippetsplugin.mo share/locale/sr@latin/LC_MESSAGES/katesql.mo share/locale/sr@latin/LC_MESSAGES/katesymbolviewer.mo share/locale/sr@latin/LC_MESSAGES/katetextfilter.mo share/locale/sr@latin/LC_MESSAGES/katexmlcheck.mo share/locale/sr@latin/LC_MESSAGES/katexmltools.mo share/locale/sr@latin/LC_MESSAGES/ktexteditorpreviewplugin.mo share/locale/sr@latin/LC_MESSAGES/tabswitcherplugin.mo share/locale/sv/LC_MESSAGES/kate-ctags-plugin.mo share/locale/sv/LC_MESSAGES/kate-replicode-plugin.mo share/locale/sv/LC_MESSAGES/kate.mo share/locale/sv/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/sv/LC_MESSAGES/katebuild-plugin.mo share/locale/sv/LC_MESSAGES/katecloseexceptplugin.mo share/locale/sv/LC_MESSAGES/katecolorpickerplugin.mo share/locale/sv/LC_MESSAGES/kateexternaltoolsplugin.mo share/locale/sv/LC_MESSAGES/katefilebrowserplugin.mo share/locale/sv/LC_MESSAGES/katefiletree.mo share/locale/sv/LC_MESSAGES/kategdbplugin.mo share/locale/sv/LC_MESSAGES/kategitblameplugin.mo share/locale/sv/LC_MESSAGES/katekeyboardmacros.mo share/locale/sv/LC_MESSAGES/katekonsoleplugin.mo share/locale/sv/LC_MESSAGES/kateproject.mo share/locale/sv/LC_MESSAGES/katesearch.mo share/locale/sv/LC_MESSAGES/katesnippetsplugin.mo share/locale/sv/LC_MESSAGES/katesql.mo share/locale/sv/LC_MESSAGES/katesymbolviewer.mo share/locale/sv/LC_MESSAGES/katetextfilter.mo share/locale/sv/LC_MESSAGES/katexmlcheck.mo share/locale/sv/LC_MESSAGES/katexmltools.mo share/locale/sv/LC_MESSAGES/ktexteditorpreviewplugin.mo share/locale/sv/LC_MESSAGES/lspclient.mo share/locale/sv/LC_MESSAGES/tabswitcherplugin.mo share/locale/ta/LC_MESSAGES/kate.mo share/locale/ta/LC_MESSAGES/katecloseexceptplugin.mo share/locale/ta/LC_MESSAGES/katecolorpickerplugin.mo share/locale/ta/LC_MESSAGES/katefilebrowserplugin.mo share/locale/ta/LC_MESSAGES/katefiletree.mo share/locale/ta/LC_MESSAGES/kategitblameplugin.mo share/locale/ta/LC_MESSAGES/katekonsoleplugin.mo share/locale/ta/LC_MESSAGES/katesearch.mo share/locale/ta/LC_MESSAGES/katesymbolviewer.mo share/locale/ta/LC_MESSAGES/katetextfilter.mo share/locale/ta/LC_MESSAGES/katexmltools.mo share/locale/ta/LC_MESSAGES/ktexteditorpreviewplugin.mo share/locale/ta/LC_MESSAGES/lspclient.mo share/locale/ta/LC_MESSAGES/tabswitcherplugin.mo share/locale/te/LC_MESSAGES/kate.mo share/locale/tg/LC_MESSAGES/kate.mo share/locale/tg/LC_MESSAGES/katesymbolviewer.mo share/locale/tg/LC_MESSAGES/katetextfilter.mo share/locale/tg/LC_MESSAGES/katexmltools.mo share/locale/th/LC_MESSAGES/kate.mo share/locale/th/LC_MESSAGES/katebuild-plugin.mo share/locale/th/LC_MESSAGES/katefilebrowserplugin.mo share/locale/th/LC_MESSAGES/katekonsoleplugin.mo share/locale/tr/LC_MESSAGES/kate-ctags-plugin.mo share/locale/tr/LC_MESSAGES/kate-replicode-plugin.mo share/locale/tr/LC_MESSAGES/kate.mo share/locale/tr/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/tr/LC_MESSAGES/katebuild-plugin.mo share/locale/tr/LC_MESSAGES/katecloseexceptplugin.mo share/locale/tr/LC_MESSAGES/katecolorpickerplugin.mo share/locale/tr/LC_MESSAGES/kateexternaltoolsplugin.mo share/locale/tr/LC_MESSAGES/katefilebrowserplugin.mo share/locale/tr/LC_MESSAGES/katefiletree.mo share/locale/tr/LC_MESSAGES/kategdbplugin.mo share/locale/tr/LC_MESSAGES/kategitblameplugin.mo share/locale/tr/LC_MESSAGES/katekeyboardmacros.mo share/locale/tr/LC_MESSAGES/katekonsoleplugin.mo share/locale/tr/LC_MESSAGES/kateproject.mo share/locale/tr/LC_MESSAGES/katesearch.mo share/locale/tr/LC_MESSAGES/katesnippetsplugin.mo share/locale/tr/LC_MESSAGES/katesql.mo share/locale/tr/LC_MESSAGES/katesymbolviewer.mo share/locale/tr/LC_MESSAGES/katetextfilter.mo share/locale/tr/LC_MESSAGES/katexmlcheck.mo share/locale/tr/LC_MESSAGES/katexmltools.mo share/locale/tr/LC_MESSAGES/ktexteditorpreviewplugin.mo share/locale/tr/LC_MESSAGES/lspclient.mo share/locale/tr/LC_MESSAGES/tabswitcherplugin.mo share/locale/ug/LC_MESSAGES/kate-ctags-plugin.mo share/locale/ug/LC_MESSAGES/kate.mo share/locale/ug/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/ug/LC_MESSAGES/katebuild-plugin.mo share/locale/ug/LC_MESSAGES/katecloseexceptplugin.mo share/locale/ug/LC_MESSAGES/katefilebrowserplugin.mo share/locale/ug/LC_MESSAGES/kategdbplugin.mo share/locale/ug/LC_MESSAGES/katekonsoleplugin.mo share/locale/ug/LC_MESSAGES/kateproject.mo share/locale/ug/LC_MESSAGES/katesearch.mo share/locale/ug/LC_MESSAGES/katesnippetsplugin.mo share/locale/ug/LC_MESSAGES/katesql.mo share/locale/ug/LC_MESSAGES/katesymbolviewer.mo share/locale/ug/LC_MESSAGES/katetextfilter.mo share/locale/ug/LC_MESSAGES/katexmltools.mo share/locale/uk/LC_MESSAGES/kate-ctags-plugin.mo share/locale/uk/LC_MESSAGES/kate-replicode-plugin.mo share/locale/uk/LC_MESSAGES/kate.mo share/locale/uk/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/uk/LC_MESSAGES/katebuild-plugin.mo share/locale/uk/LC_MESSAGES/katecloseexceptplugin.mo share/locale/uk/LC_MESSAGES/katecolorpickerplugin.mo share/locale/uk/LC_MESSAGES/kateexternaltoolsplugin.mo share/locale/uk/LC_MESSAGES/katefilebrowserplugin.mo share/locale/uk/LC_MESSAGES/katefiletree.mo share/locale/uk/LC_MESSAGES/kategdbplugin.mo share/locale/uk/LC_MESSAGES/kategitblameplugin.mo share/locale/uk/LC_MESSAGES/katekeyboardmacros.mo share/locale/uk/LC_MESSAGES/katekonsoleplugin.mo share/locale/uk/LC_MESSAGES/kateproject.mo share/locale/uk/LC_MESSAGES/katesearch.mo share/locale/uk/LC_MESSAGES/katesnippetsplugin.mo share/locale/uk/LC_MESSAGES/katesql.mo share/locale/uk/LC_MESSAGES/katesymbolviewer.mo share/locale/uk/LC_MESSAGES/katetextfilter.mo share/locale/uk/LC_MESSAGES/katexmlcheck.mo share/locale/uk/LC_MESSAGES/katexmltools.mo share/locale/uk/LC_MESSAGES/ktexteditorpreviewplugin.mo share/locale/uk/LC_MESSAGES/lspclient.mo share/locale/uk/LC_MESSAGES/tabswitcherplugin.mo share/locale/uz/LC_MESSAGES/kate.mo share/locale/uz/LC_MESSAGES/katetextfilter.mo share/locale/uz@cyrillic/LC_MESSAGES/kate.mo share/locale/uz@cyrillic/LC_MESSAGES/katetextfilter.mo share/locale/vi/LC_MESSAGES/kate-ctags-plugin.mo share/locale/vi/LC_MESSAGES/kate-replicode-plugin.mo share/locale/vi/LC_MESSAGES/kate.mo share/locale/vi/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/vi/LC_MESSAGES/katebuild-plugin.mo share/locale/vi/LC_MESSAGES/katecloseexceptplugin.mo share/locale/vi/LC_MESSAGES/katecolorpickerplugin.mo share/locale/vi/LC_MESSAGES/kateexternaltoolsplugin.mo share/locale/vi/LC_MESSAGES/katefilebrowserplugin.mo share/locale/vi/LC_MESSAGES/katefiletree.mo share/locale/vi/LC_MESSAGES/kategdbplugin.mo share/locale/vi/LC_MESSAGES/kategitblameplugin.mo share/locale/vi/LC_MESSAGES/katekeyboardmacros.mo share/locale/vi/LC_MESSAGES/katekonsoleplugin.mo share/locale/vi/LC_MESSAGES/kateproject.mo share/locale/vi/LC_MESSAGES/katesearch.mo share/locale/vi/LC_MESSAGES/katesnippetsplugin.mo share/locale/vi/LC_MESSAGES/katesql.mo share/locale/vi/LC_MESSAGES/katesymbolviewer.mo share/locale/vi/LC_MESSAGES/katetextfilter.mo share/locale/vi/LC_MESSAGES/katexmlcheck.mo share/locale/vi/LC_MESSAGES/katexmltools.mo share/locale/vi/LC_MESSAGES/ktexteditorpreviewplugin.mo share/locale/vi/LC_MESSAGES/lspclient.mo share/locale/vi/LC_MESSAGES/tabswitcherplugin.mo share/locale/wa/LC_MESSAGES/kate.mo share/locale/wa/LC_MESSAGES/katekonsoleplugin.mo share/locale/xh/LC_MESSAGES/kate.mo share/locale/xh/LC_MESSAGES/katetextfilter.mo share/locale/xh/LC_MESSAGES/katexmltools.mo share/locale/zh_CN/LC_MESSAGES/kate-ctags-plugin.mo share/locale/zh_CN/LC_MESSAGES/kate-replicode-plugin.mo share/locale/zh_CN/LC_MESSAGES/kate.mo share/locale/zh_CN/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/zh_CN/LC_MESSAGES/katebuild-plugin.mo share/locale/zh_CN/LC_MESSAGES/katecloseexceptplugin.mo share/locale/zh_CN/LC_MESSAGES/katecolorpickerplugin.mo share/locale/zh_CN/LC_MESSAGES/kateexternaltoolsplugin.mo share/locale/zh_CN/LC_MESSAGES/katefilebrowserplugin.mo share/locale/zh_CN/LC_MESSAGES/katefiletree.mo share/locale/zh_CN/LC_MESSAGES/kategdbplugin.mo share/locale/zh_CN/LC_MESSAGES/kategitblameplugin.mo share/locale/zh_CN/LC_MESSAGES/katekeyboardmacros.mo share/locale/zh_CN/LC_MESSAGES/katekonsoleplugin.mo share/locale/zh_CN/LC_MESSAGES/kateproject.mo share/locale/zh_CN/LC_MESSAGES/katesearch.mo share/locale/zh_CN/LC_MESSAGES/katesnippetsplugin.mo share/locale/zh_CN/LC_MESSAGES/katesql.mo share/locale/zh_CN/LC_MESSAGES/katesymbolviewer.mo share/locale/zh_CN/LC_MESSAGES/katetextfilter.mo share/locale/zh_CN/LC_MESSAGES/katexmlcheck.mo share/locale/zh_CN/LC_MESSAGES/katexmltools.mo share/locale/zh_CN/LC_MESSAGES/ktexteditorpreviewplugin.mo share/locale/zh_CN/LC_MESSAGES/lspclient.mo share/locale/zh_CN/LC_MESSAGES/tabswitcherplugin.mo share/locale/zh_TW/LC_MESSAGES/kate-ctags-plugin.mo share/locale/zh_TW/LC_MESSAGES/kate-replicode-plugin.mo share/locale/zh_TW/LC_MESSAGES/kate.mo share/locale/zh_TW/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/zh_TW/LC_MESSAGES/katebuild-plugin.mo share/locale/zh_TW/LC_MESSAGES/katecloseexceptplugin.mo share/locale/zh_TW/LC_MESSAGES/katecolorpickerplugin.mo share/locale/zh_TW/LC_MESSAGES/kateexternaltoolsplugin.mo share/locale/zh_TW/LC_MESSAGES/katefilebrowserplugin.mo share/locale/zh_TW/LC_MESSAGES/katefiletree.mo share/locale/zh_TW/LC_MESSAGES/kategdbplugin.mo share/locale/zh_TW/LC_MESSAGES/kategitblameplugin.mo share/locale/zh_TW/LC_MESSAGES/katekonsoleplugin.mo share/locale/zh_TW/LC_MESSAGES/kateproject.mo share/locale/zh_TW/LC_MESSAGES/katesearch.mo share/locale/zh_TW/LC_MESSAGES/katesnippetsplugin.mo share/locale/zh_TW/LC_MESSAGES/katesql.mo share/locale/zh_TW/LC_MESSAGES/katesymbolviewer.mo share/locale/zh_TW/LC_MESSAGES/katetextfilter.mo share/locale/zh_TW/LC_MESSAGES/katexmlcheck.mo share/locale/zh_TW/LC_MESSAGES/katexmltools.mo share/locale/zh_TW/LC_MESSAGES/ktexteditorpreviewplugin.mo share/locale/zh_TW/LC_MESSAGES/lspclient.mo share/locale/zh_TW/LC_MESSAGES/tabswitcherplugin.mo share/metainfo/org.kde.kate.appdata.xml share/metainfo/org.kde.kwrite.appdata.xml diff --git a/games/blinken/distinfo b/games/blinken/distinfo index 1ade583d5666..017760bf2a63 100644 --- a/games/blinken/distinfo +++ b/games/blinken/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1677828210 -SHA256 (KDE/release-service/22.12.3/blinken-22.12.3.tar.xz) = 06a06d4654869e8c7044daf546bcf2517120a86c89954383bdb325fe5424c04e -SIZE (KDE/release-service/22.12.3/blinken-22.12.3.tar.xz) = 2723364 +TIMESTAMP = 1681548422 +SHA256 (KDE/release-service/23.04.0/blinken-23.04.0.tar.xz) = 5ddcd6f04997beb4cb1703e30b67da6f71682d2c54ae228a7a92e1c60ab4560f +SIZE (KDE/release-service/23.04.0/blinken-23.04.0.tar.xz) = 2723596 diff --git a/games/bomber/distinfo b/games/bomber/distinfo index 0c7ac45d8c8e..a9fa51d9b298 100644 --- a/games/bomber/distinfo +++ b/games/bomber/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1677828265 -SHA256 (KDE/release-service/22.12.3/bomber-22.12.3.tar.xz) = 4d8ea1f717f01871e31603d6c98e31e8030d0808418839057972602a14cb8f4b -SIZE (KDE/release-service/22.12.3/bomber-22.12.3.tar.xz) = 838116 +TIMESTAMP = 1681548425 +SHA256 (KDE/release-service/23.04.0/bomber-23.04.0.tar.xz) = 1e3761129189b15de12abe34e7d51e87f995f71e5eb4f8a4eba0f6399f2a2f53 +SIZE (KDE/release-service/23.04.0/bomber-23.04.0.tar.xz) = 838404 diff --git a/games/bovo/distinfo b/games/bovo/distinfo index 46f04892ef19..f092f2df9852 100644 --- a/games/bovo/distinfo +++ b/games/bovo/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1677828238 -SHA256 (KDE/release-service/22.12.3/bovo-22.12.3.tar.xz) = fa27290d997a1b14efbf1820037ae376e40b036da553c746fc7569a879772e8b -SIZE (KDE/release-service/22.12.3/bovo-22.12.3.tar.xz) = 214716 +TIMESTAMP = 1681548428 +SHA256 (KDE/release-service/23.04.0/bovo-23.04.0.tar.xz) = 61ec2be3a81bd2fb3e0b7ef2d54c5a5f415e39a0d14623c70ac432a82a71fcd4 +SIZE (KDE/release-service/23.04.0/bovo-23.04.0.tar.xz) = 214824 diff --git a/games/granatier/distinfo b/games/granatier/distinfo index fde6e8e5fc6c..9a7e9b037b45 100644 --- a/games/granatier/distinfo +++ b/games/granatier/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1677828218 -SHA256 (KDE/release-service/22.12.3/granatier-22.12.3.tar.xz) = b43f5b362d6f1128ff526aa3c9cf785b2da5697cb19081b0c7d4408bb34b1cd1 -SIZE (KDE/release-service/22.12.3/granatier-22.12.3.tar.xz) = 2112288 +TIMESTAMP = 1681548440 +SHA256 (KDE/release-service/23.04.0/granatier-23.04.0.tar.xz) = b0057680492466b90031f17de74d4bb68f9153a28bc57495c816cbdf616ae762 +SIZE (KDE/release-service/23.04.0/granatier-23.04.0.tar.xz) = 2112592 diff --git a/games/kanagram/distinfo b/games/kanagram/distinfo index a40f65b4c1d1..f532655458f7 100644 --- a/games/kanagram/distinfo +++ b/games/kanagram/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1677828248 -SHA256 (KDE/release-service/22.12.3/kanagram-22.12.3.tar.xz) = 149e7c85ea7381338bcd3c997b4deac60c43359e5c040047091a6a1ae45591b2 -SIZE (KDE/release-service/22.12.3/kanagram-22.12.3.tar.xz) = 8063060 +TIMESTAMP = 1681548433 +SHA256 (KDE/release-service/23.04.0/kanagram-23.04.0.tar.xz) = 5a312c4b0e84ef5f392da06a34351a0fd29c6ebfef6c30f895ea96d0002d1dca +SIZE (KDE/release-service/23.04.0/kanagram-23.04.0.tar.xz) = 8062432 diff --git a/games/kapman/distinfo b/games/kapman/distinfo index 4799407c90ed..1aa4167a45dd 100644 --- a/games/kapman/distinfo +++ b/games/kapman/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1677828254 -SHA256 (KDE/release-service/22.12.3/kapman-22.12.3.tar.xz) = a7f278f3c6be8486775ee941fa1898c5136058eed2003c4b2286f2fb8059c173 -SIZE (KDE/release-service/22.12.3/kapman-22.12.3.tar.xz) = 2480568 +TIMESTAMP = 1681548430 +SHA256 (KDE/release-service/23.04.0/kapman-23.04.0.tar.xz) = 889cb37cdc643eb6c8f43d55a9faf85c25e01e737e371ebec396fee4353a6034 +SIZE (KDE/release-service/23.04.0/kapman-23.04.0.tar.xz) = 2480888 diff --git a/games/katomic/distinfo b/games/katomic/distinfo index ad0d46fc4966..3729496511b9 100644 --- a/games/katomic/distinfo +++ b/games/katomic/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1677828268 -SHA256 (KDE/release-service/22.12.3/katomic-22.12.3.tar.xz) = a8aaa9d7bf5c6783175e3bd94ff307771cd02b16e54a099c003c7fc14c839318 -SIZE (KDE/release-service/22.12.3/katomic-22.12.3.tar.xz) = 1450968 +TIMESTAMP = 1681548408 +SHA256 (KDE/release-service/23.04.0/katomic-23.04.0.tar.xz) = d3ad78f02a34f34f6e32ad910f6f61abb9b8d2f78e5e0c706f79a2c2093bd59b +SIZE (KDE/release-service/23.04.0/katomic-23.04.0.tar.xz) = 1451060 diff --git a/games/kblackbox/distinfo b/games/kblackbox/distinfo index 4a92c8c0461b..b7bd09037bb9 100644 --- a/games/kblackbox/distinfo +++ b/games/kblackbox/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1677828233 -SHA256 (KDE/release-service/22.12.3/kblackbox-22.12.3.tar.xz) = b1ff10a6db28d1f8c01e1b7289632cb85901515f4d48cd9c2c2386af8a9cc13e -SIZE (KDE/release-service/22.12.3/kblackbox-22.12.3.tar.xz) = 550300 +TIMESTAMP = 1681548399 +SHA256 (KDE/release-service/23.04.0/kblackbox-23.04.0.tar.xz) = 4949c82e5bf0326b3be7ebdd1c8ddff975cee2c5530ecad2da75a66edf76b3e2 +SIZE (KDE/release-service/23.04.0/kblackbox-23.04.0.tar.xz) = 550376 diff --git a/games/kblocks/distinfo b/games/kblocks/distinfo index 0de069f511cd..dab64f7e4cc4 100644 --- a/games/kblocks/distinfo +++ b/games/kblocks/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1677828232 -SHA256 (KDE/release-service/22.12.3/kblocks-22.12.3.tar.xz) = a42f0be57ea6292946e6159f65978914e0c852000b58e7b242cb3113ee69ca5e -SIZE (KDE/release-service/22.12.3/kblocks-22.12.3.tar.xz) = 2107748 +TIMESTAMP = 1681548402 +SHA256 (KDE/release-service/23.04.0/kblocks-23.04.0.tar.xz) = 52f0811116de393a3d84cfe744e7f09cc037ff074a9a6f7d210ad59eb8e67d12 +SIZE (KDE/release-service/23.04.0/kblocks-23.04.0.tar.xz) = 2107700 diff --git a/games/kbounce/distinfo b/games/kbounce/distinfo index 8449dfc3336d..612ae88b6544 100644 --- a/games/kbounce/distinfo +++ b/games/kbounce/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1677828257 -SHA256 (KDE/release-service/22.12.3/kbounce-22.12.3.tar.xz) = f17eeef9810ec06968fe223b585e57db7ae8285eae21d0b0c9beefc8c14b5cc2 -SIZE (KDE/release-service/22.12.3/kbounce-22.12.3.tar.xz) = 3543472 +TIMESTAMP = 1681548397 +SHA256 (KDE/release-service/23.04.0/kbounce-23.04.0.tar.xz) = 99fb3489c98bfce08fbcfc31b27064486b7c52f3c7ba57ffaf21bcb5c8b1bf55 +SIZE (KDE/release-service/23.04.0/kbounce-23.04.0.tar.xz) = 3544448 diff --git a/games/kbreakout/distinfo b/games/kbreakout/distinfo index b5b047c38f17..141de1b3abdb 100644 --- a/games/kbreakout/distinfo +++ b/games/kbreakout/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1677828219 -SHA256 (KDE/release-service/22.12.3/kbreakout-22.12.3.tar.xz) = ba5bd171e578a97ca4dcc86aa649dd4a3da0df8ff991d508a1782ada06766268 -SIZE (KDE/release-service/22.12.3/kbreakout-22.12.3.tar.xz) = 2558620 +TIMESTAMP = 1681548441 +SHA256 (KDE/release-service/23.04.0/kbreakout-23.04.0.tar.xz) = 9309aeeb5b3c55f5809e0789cc0f229182018017eb46c347e50ccf21ef47aa44 +SIZE (KDE/release-service/23.04.0/kbreakout-23.04.0.tar.xz) = 2559248 diff --git a/games/kdiamond/distinfo b/games/kdiamond/distinfo index e8b19bd5c643..6343dfdfc669 100644 --- a/games/kdiamond/distinfo +++ b/games/kdiamond/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1677828222 -SHA256 (KDE/release-service/22.12.3/kdiamond-22.12.3.tar.xz) = cce464b6dab1730527b09324d45d3a67146891e7c4eb10f1fe9b9b8aad7ac475 -SIZE (KDE/release-service/22.12.3/kdiamond-22.12.3.tar.xz) = 4708024 +TIMESTAMP = 1681548396 +SHA256 (KDE/release-service/23.04.0/kdiamond-23.04.0.tar.xz) = 0dd7284bbcbc9857ba2c969b197be523bbd890f1a020d1fc2122e3a93d56adff +SIZE (KDE/release-service/23.04.0/kdiamond-23.04.0.tar.xz) = 4708520 diff --git a/games/kfourinline/distinfo b/games/kfourinline/distinfo index 5647fae23f32..8ede5e5d63a3 100644 --- a/games/kfourinline/distinfo +++ b/games/kfourinline/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1677828272 -SHA256 (KDE/release-service/22.12.3/kfourinline-22.12.3.tar.xz) = fafe2fbf7772c7803bcbb2a0819d5ef4f2c1240f62ca89f240ad2274ac491cad -SIZE (KDE/release-service/22.12.3/kfourinline-22.12.3.tar.xz) = 738928 +TIMESTAMP = 1681548409 +SHA256 (KDE/release-service/23.04.0/kfourinline-23.04.0.tar.xz) = cc83133ec4fa17453ef698f2717d856599c5414f01d98b7cbfea5ee131222cb6 +SIZE (KDE/release-service/23.04.0/kfourinline-23.04.0.tar.xz) = 739504 diff --git a/games/kgoldrunner/distinfo b/games/kgoldrunner/distinfo index e7028730aebc..99db7d218205 100644 --- a/games/kgoldrunner/distinfo +++ b/games/kgoldrunner/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1677828275 -SHA256 (KDE/release-service/22.12.3/kgoldrunner-22.12.3.tar.xz) = 36cb6f7e2269958bebcdd80e5df57f4f29f7c24b46ba5d751977e809492fe881 -SIZE (KDE/release-service/22.12.3/kgoldrunner-22.12.3.tar.xz) = 4904948 +TIMESTAMP = 1681548412 +SHA256 (KDE/release-service/23.04.0/kgoldrunner-23.04.0.tar.xz) = 50ac174eb2e86ae8955d5c0ac92df59d257d82efda1d3bf234d1764ce5ee9b8f +SIZE (KDE/release-service/23.04.0/kgoldrunner-23.04.0.tar.xz) = 4904008 diff --git a/games/kgoldrunner/pkg-plist b/games/kgoldrunner/pkg-plist index 0db78c333be2..c8b2f0483b3b 100644 --- a/games/kgoldrunner/pkg-plist +++ b/games/kgoldrunner/pkg-plist @@ -1,148 +1,147 @@ bin/kgoldrunner share/applications/org.kde.kgoldrunner.desktop share/icons/hicolor/128x128/apps/kgoldrunner.png share/icons/hicolor/16x16/apps/kgoldrunner.png share/icons/hicolor/22x22/apps/kgoldrunner.png share/icons/hicolor/32x32/apps/kgoldrunner.png share/icons/hicolor/48x48/apps/kgoldrunner.png share/icons/hicolor/64x64/apps/kgoldrunner.png %%DATADIR%%/system/game_CM.txt %%DATADIR%%/system/game_GMEP.txt %%DATADIR%%/system/game_GMGR.txt %%DATADIR%%/system/game_GRII.txt %%DATADIR%%/system/game_GotD.txt %%DATADIR%%/system/game_MAZ.txt %%DATADIR%%/system/game_blb.txt %%DATADIR%%/system/game_cnt.txt %%DATADIR%%/system/game_ende.txt %%DATADIR%%/system/game_fd.txt %%DATADIR%%/system/game_kgr.txt %%DATADIR%%/system/game_lars.txt %%DATADIR%%/system/game_plws.txt %%DATADIR%%/system/game_plwv.txt %%DATADIR%%/system/game_sot.txt %%DATADIR%%/system/game_tute.txt %%DATADIR%%/system/game_tutea.txt %%DATADIR%%/system/game_wad.txt %%DATADIR%%/system/hi_kgr.dat %%DATADIR%%/system/hi_plws.dat %%DATADIR%%/system/hi_plwv.dat %%DATADIR%%/system/hi_wad.dat %%DATADIR%%/system/rec_GMGR.txt %%DATADIR%%/system/rec_GRII.txt %%DATADIR%%/system/rec_demo.txt %%DATADIR%%/system/sol_GotD.txt %%DATADIR%%/system/sol_blb.txt %%DATADIR%%/system/sol_fd.txt %%DATADIR%%/system/sol_kgr.txt %%DATADIR%%/system/sol_plws.txt %%DATADIR%%/system/sol_tute.txt %%DATADIR%%/system/sol_tutea.txt %%DATADIR%%/themes/README %%DATADIR%%/themes/accessible/black-on-white-actors.svgz %%DATADIR%%/themes/accessible/black-on-white-set.svgz %%DATADIR%%/themes/accessible/black-on-white.png %%DATADIR%%/themes/black-on-white.desktop %%DATADIR%%/themes/default.desktop %%DATADIR%%/themes/default/actors.svgz %%DATADIR%%/themes/default/climb.wav %%DATADIR%%/themes/default/completed.ogg %%DATADIR%%/themes/default/death.ogg %%DATADIR%%/themes/default/default.png %%DATADIR%%/themes/default/dig.ogg %%DATADIR%%/themes/default/falling.ogg %%DATADIR%%/themes/default/gameover.ogg %%DATADIR%%/themes/default/gold.ogg %%DATADIR%%/themes/default/ladder.ogg %%DATADIR%%/themes/default/set.svgz %%DATADIR%%/themes/default/step.wav %%DATADIR%%/themes/default/victory.ogg %%DATADIR%%/themes/egypt.desktop %%DATADIR%%/themes/egypt/actors.svgz %%DATADIR%%/themes/egypt/egypt.png %%DATADIR%%/themes/egypt/egypt_kgr.svgz %%DATADIR%%/themes/kgr_geek.desktop %%DATADIR%%/themes/kgr_geek/actors.svgz %%DATADIR%%/themes/kgr_geek/kgr_geek.png %%DATADIR%%/themes/kgr_geek/set.svgz %%DATADIR%%/themes/nostalgia-blues.desktop %%DATADIR%%/themes/nostalgia.desktop %%DATADIR%%/themes/nostalgia/actors.svgz %%DATADIR%%/themes/nostalgia/blue-actors.svgz %%DATADIR%%/themes/nostalgia/blue-set.svgz %%DATADIR%%/themes/nostalgia/nostalgia-blues.png %%DATADIR%%/themes/nostalgia/nostalgia.png %%DATADIR%%/themes/nostalgia/set.svgz share/knsrcfiles/kgoldrunner.knsrc share/locale/ar/LC_MESSAGES/kgoldrunner.mo share/locale/be/LC_MESSAGES/kgoldrunner.mo share/locale/bg/LC_MESSAGES/kgoldrunner.mo share/locale/bn/LC_MESSAGES/kgoldrunner.mo share/locale/br/LC_MESSAGES/kgoldrunner.mo share/locale/bs/LC_MESSAGES/kgoldrunner.mo share/locale/ca/LC_MESSAGES/kgoldrunner.mo share/locale/ca@valencia/LC_MESSAGES/kgoldrunner.mo share/locale/cs/LC_MESSAGES/kgoldrunner.mo share/locale/cy/LC_MESSAGES/kgoldrunner.mo share/locale/da/LC_MESSAGES/kgoldrunner.mo share/locale/de/LC_MESSAGES/kgoldrunner.mo share/locale/el/LC_MESSAGES/kgoldrunner.mo share/locale/en_GB/LC_MESSAGES/kgoldrunner.mo share/locale/eo/LC_MESSAGES/kgoldrunner.mo share/locale/es/LC_MESSAGES/kgoldrunner.mo share/locale/et/LC_MESSAGES/kgoldrunner.mo share/locale/eu/LC_MESSAGES/kgoldrunner.mo share/locale/fa/LC_MESSAGES/kgoldrunner.mo share/locale/fi/LC_MESSAGES/kgoldrunner.mo share/locale/fr/LC_MESSAGES/kgoldrunner.mo share/locale/ga/LC_MESSAGES/kgoldrunner.mo share/locale/gl/LC_MESSAGES/kgoldrunner.mo share/locale/hi/LC_MESSAGES/kgoldrunner.mo share/locale/hne/LC_MESSAGES/kgoldrunner.mo share/locale/hr/LC_MESSAGES/kgoldrunner.mo share/locale/hu/LC_MESSAGES/kgoldrunner.mo share/locale/id/LC_MESSAGES/kgoldrunner.mo share/locale/is/LC_MESSAGES/kgoldrunner.mo share/locale/it/LC_MESSAGES/kgoldrunner.mo share/locale/ja/LC_MESSAGES/kgoldrunner.mo -share/locale/ka/LC_MESSAGES/kgoldrunner.mo share/locale/kk/LC_MESSAGES/kgoldrunner.mo share/locale/km/LC_MESSAGES/kgoldrunner.mo share/locale/ko/LC_MESSAGES/kgoldrunner.mo share/locale/lt/LC_MESSAGES/kgoldrunner.mo share/locale/lv/LC_MESSAGES/kgoldrunner.mo share/locale/mai/LC_MESSAGES/kgoldrunner.mo share/locale/mk/LC_MESSAGES/kgoldrunner.mo share/locale/ml/LC_MESSAGES/kgoldrunner.mo share/locale/mr/LC_MESSAGES/kgoldrunner.mo share/locale/nb/LC_MESSAGES/kgoldrunner.mo share/locale/nds/LC_MESSAGES/kgoldrunner.mo share/locale/ne/LC_MESSAGES/kgoldrunner.mo share/locale/nl/LC_MESSAGES/kgoldrunner.mo share/locale/nn/LC_MESSAGES/kgoldrunner.mo share/locale/oc/LC_MESSAGES/kgoldrunner.mo share/locale/pa/LC_MESSAGES/kgoldrunner.mo share/locale/pl/LC_MESSAGES/kgoldrunner.mo share/locale/pt/LC_MESSAGES/kgoldrunner.mo share/locale/pt_BR/LC_MESSAGES/kgoldrunner.mo share/locale/ro/LC_MESSAGES/kgoldrunner.mo share/locale/ru/LC_MESSAGES/kgoldrunner.mo share/locale/se/LC_MESSAGES/kgoldrunner.mo share/locale/sk/LC_MESSAGES/kgoldrunner.mo share/locale/sl/LC_MESSAGES/kgoldrunner.mo share/locale/sq/LC_MESSAGES/kgoldrunner.mo share/locale/sr/LC_MESSAGES/kgoldrunner.mo share/locale/sr@ijekavian/LC_MESSAGES/kgoldrunner.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kgoldrunner.mo share/locale/sr@latin/LC_MESSAGES/kgoldrunner.mo share/locale/sv/LC_MESSAGES/kgoldrunner.mo share/locale/ta/LC_MESSAGES/kgoldrunner.mo share/locale/te/LC_MESSAGES/kgoldrunner.mo share/locale/tg/LC_MESSAGES/kgoldrunner.mo share/locale/tr/LC_MESSAGES/kgoldrunner.mo share/locale/ug/LC_MESSAGES/kgoldrunner.mo share/locale/uk/LC_MESSAGES/kgoldrunner.mo share/locale/zh_CN/LC_MESSAGES/kgoldrunner.mo share/locale/zh_TW/LC_MESSAGES/kgoldrunner.mo share/metainfo/org.kde.kgoldrunner.appdata.xml share/qlogging-categories5/kgoldrunner.categories diff --git a/games/khangman/distinfo b/games/khangman/distinfo index 1381f9c89209..55aa24511ce6 100644 --- a/games/khangman/distinfo +++ b/games/khangman/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1677828229 -SHA256 (KDE/release-service/22.12.3/khangman-22.12.3.tar.xz) = fd275ef231a7833cc07534b461441180df7dd5b3ec2c6b5a5c4bc3a6e3ff3adc -SIZE (KDE/release-service/22.12.3/khangman-22.12.3.tar.xz) = 7435304 +TIMESTAMP = 1681548443 +SHA256 (KDE/release-service/23.04.0/khangman-23.04.0.tar.xz) = a231b4b8c7a1745887bcfbfe5493f997647155f2f2322f1ac92cfa4efd7cb8a1 +SIZE (KDE/release-service/23.04.0/khangman-23.04.0.tar.xz) = 7444304 diff --git a/games/kigo/distinfo b/games/kigo/distinfo index 24ed52995def..e2513f1c315f 100644 --- a/games/kigo/distinfo +++ b/games/kigo/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1677828240 -SHA256 (KDE/release-service/22.12.3/kigo-22.12.3.tar.xz) = efa5202b6285cb2a3438b0a2a1d5ac1465b232e0d46d4596399899e521bdb7c8 -SIZE (KDE/release-service/22.12.3/kigo-22.12.3.tar.xz) = 5264344 +TIMESTAMP = 1681548427 +SHA256 (KDE/release-service/23.04.0/kigo-23.04.0.tar.xz) = f8e18030092f54876c6fd00470c621a1aa5961e6625ed0c4c7653f825aa5880c +SIZE (KDE/release-service/23.04.0/kigo-23.04.0.tar.xz) = 5264712 diff --git a/games/killbots/distinfo b/games/killbots/distinfo index 5cfb451806eb..b5744e285416 100644 --- a/games/killbots/distinfo +++ b/games/killbots/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1677828243 -SHA256 (KDE/release-service/22.12.3/killbots-22.12.3.tar.xz) = d1974b7de2f743ae7905ea255aed79f7cec6230d5562e0d8ff2a18bd6e7c90f5 -SIZE (KDE/release-service/22.12.3/killbots-22.12.3.tar.xz) = 1202428 +TIMESTAMP = 1681548432 +SHA256 (KDE/release-service/23.04.0/killbots-23.04.0.tar.xz) = f74fb2059b8a5b054aa5209c272ffbc15d3dfa7075ea88c8e4c5f40d82eefa3a +SIZE (KDE/release-service/23.04.0/killbots-23.04.0.tar.xz) = 1202108 diff --git a/games/kiriki/distinfo b/games/kiriki/distinfo index bc2b82c14e02..6098b558a5eb 100644 --- a/games/kiriki/distinfo +++ b/games/kiriki/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1677828250 -SHA256 (KDE/release-service/22.12.3/kiriki-22.12.3.tar.xz) = c78d004f0b05fe1fad056c88e6f9e1663c898f5be6651ad49bc5b6793cae9a15 -SIZE (KDE/release-service/22.12.3/kiriki-22.12.3.tar.xz) = 369488 +TIMESTAMP = 1681548435 +SHA256 (KDE/release-service/23.04.0/kiriki-23.04.0.tar.xz) = 6753faaa899c7b27c689715c6df5e39a6546ff29f3083ce87a4a95c6c013de45 +SIZE (KDE/release-service/23.04.0/kiriki-23.04.0.tar.xz) = 369796 diff --git a/games/kjumpingcube/distinfo b/games/kjumpingcube/distinfo index acd61eca19bf..d04ee0fd2cea 100644 --- a/games/kjumpingcube/distinfo +++ b/games/kjumpingcube/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1677828208 -SHA256 (KDE/release-service/22.12.3/kjumpingcube-22.12.3.tar.xz) = 5f3d378f0524f7b05b0a75c4c7e79197c7bdb2880ac2811d769c2c2fd2048f27 -SIZE (KDE/release-service/22.12.3/kjumpingcube-22.12.3.tar.xz) = 336576 +TIMESTAMP = 1681548414 +SHA256 (KDE/release-service/23.04.0/kjumpingcube-23.04.0.tar.xz) = bcd1041ce1ecd022f5c08266c24b5d59d23ef2bf114195fb41ed2087ebb38f6b +SIZE (KDE/release-service/23.04.0/kjumpingcube-23.04.0.tar.xz) = 336864 diff --git a/games/klickety/distinfo b/games/klickety/distinfo index 6f19e107a5da..db374f2c5bb3 100644 --- a/games/klickety/distinfo +++ b/games/klickety/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1677828260 -SHA256 (KDE/release-service/22.12.3/klickety-22.12.3.tar.xz) = f10f23d92c9e2d133db78dd7c8baee09992e74d7182d78b87bc787ec43e3b183 -SIZE (KDE/release-service/22.12.3/klickety-22.12.3.tar.xz) = 1499796 +TIMESTAMP = 1681548429 +SHA256 (KDE/release-service/23.04.0/klickety-23.04.0.tar.xz) = d339b01094e1318bc385276dc0c1de052f50d4ee015b18d488ffae934e7aada9 +SIZE (KDE/release-service/23.04.0/klickety-23.04.0.tar.xz) = 1499972 diff --git a/games/klines/distinfo b/games/klines/distinfo index 9fadd243dba1..107233bf9aac 100644 --- a/games/klines/distinfo +++ b/games/klines/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1677828215 -SHA256 (KDE/release-service/22.12.3/klines-22.12.3.tar.xz) = df809b06a6139a4d92faef11749c606f02df1220bf1c9a3731ea492d5e2472d0 -SIZE (KDE/release-service/22.12.3/klines-22.12.3.tar.xz) = 1737676 +TIMESTAMP = 1681548407 +SHA256 (KDE/release-service/23.04.0/klines-23.04.0.tar.xz) = 49fc6527a6f050c69739652683792af2ecdb3d8138ea7e7b9d67603f4f81fa20 +SIZE (KDE/release-service/23.04.0/klines-23.04.0.tar.xz) = 1737916 diff --git a/games/kmahjongg/distinfo b/games/kmahjongg/distinfo index ee65e6c5628b..5e9728d460a3 100644 --- a/games/kmahjongg/distinfo +++ b/games/kmahjongg/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1677828235 -SHA256 (KDE/release-service/22.12.3/kmahjongg-22.12.3.tar.xz) = b9dbcf415cd44ae781417f4e70f97e8f7bbc4ca528d246c13be217e437985be7 -SIZE (KDE/release-service/22.12.3/kmahjongg-22.12.3.tar.xz) = 4095896 +TIMESTAMP = 1681548401 +SHA256 (KDE/release-service/23.04.0/kmahjongg-23.04.0.tar.xz) = d582eceb763ce563cd9e71495de1ef4951287c2d830a66b100a0883a3ce499e4 +SIZE (KDE/release-service/23.04.0/kmahjongg-23.04.0.tar.xz) = 4096424 diff --git a/games/kmines/distinfo b/games/kmines/distinfo index 3828f757a5e1..294c75c5996c 100644 --- a/games/kmines/distinfo +++ b/games/kmines/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1677828221 -SHA256 (KDE/release-service/22.12.3/kmines-22.12.3.tar.xz) = c6e9630df5c62f87a714d4a0fca08b465ae669a86243d1e588afad04e087f517 -SIZE (KDE/release-service/22.12.3/kmines-22.12.3.tar.xz) = 1008748 +TIMESTAMP = 1681548395 +SHA256 (KDE/release-service/23.04.0/kmines-23.04.0.tar.xz) = ae3f8a6dd1b439a1f8a2757e91d3c9734fed43d6ee874de77da2b5711f4278c3 +SIZE (KDE/release-service/23.04.0/kmines-23.04.0.tar.xz) = 1008832 diff --git a/games/knavalbattle/distinfo b/games/knavalbattle/distinfo index cbd8640f8705..2db3dd581c78 100644 --- a/games/knavalbattle/distinfo +++ b/games/knavalbattle/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1677828262 -SHA256 (KDE/release-service/22.12.3/knavalbattle-22.12.3.tar.xz) = 0e630b251f8a60a79af320f026146359dde6152a890d33bb72ad3361cfacfa9f -SIZE (KDE/release-service/22.12.3/knavalbattle-22.12.3.tar.xz) = 1400900 +TIMESTAMP = 1681548424 +SHA256 (KDE/release-service/23.04.0/knavalbattle-23.04.0.tar.xz) = 30fa94938b32c42ee67d6519f8f5fc567309785f7334e40bde6817562ee2188a +SIZE (KDE/release-service/23.04.0/knavalbattle-23.04.0.tar.xz) = 1401024 diff --git a/games/knetwalk/distinfo b/games/knetwalk/distinfo index 77a0b36abb22..836c8d704463 100644 --- a/games/knetwalk/distinfo +++ b/games/knetwalk/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1677828230 -SHA256 (KDE/release-service/22.12.3/knetwalk-22.12.3.tar.xz) = d28fb0a31761c569bbde5e44780d225eba8b1aaa21edf7c8761cc1807b3ce59a -SIZE (KDE/release-service/22.12.3/knetwalk-22.12.3.tar.xz) = 1104488 +TIMESTAMP = 1681548445 +SHA256 (KDE/release-service/23.04.0/knetwalk-23.04.0.tar.xz) = ba32b15a3037d4c2fa8ef15afc904e5c324741cd005ba25c7f2bed454b27592c +SIZE (KDE/release-service/23.04.0/knetwalk-23.04.0.tar.xz) = 1104640 diff --git a/games/knights/distinfo b/games/knights/distinfo index bac8e7a72441..38631366c3fb 100644 --- a/games/knights/distinfo +++ b/games/knights/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1677828259 -SHA256 (KDE/release-service/22.12.3/knights-22.12.3.tar.xz) = d25650f149d4b4fe5db562dc0e2515b3a2e4191bace4be96c5cc066d56ee82e5 -SIZE (KDE/release-service/22.12.3/knights-22.12.3.tar.xz) = 3329560 +TIMESTAMP = 1681548413 +SHA256 (KDE/release-service/23.04.0/knights-23.04.0.tar.xz) = 067f470c3e8168e1e0f78981b193e97dae45d7532bdd9b5c104087336a809825 +SIZE (KDE/release-service/23.04.0/knights-23.04.0.tar.xz) = 3329600 diff --git a/games/kolf/distinfo b/games/kolf/distinfo index d882a0b4c036..9b22a070762c 100644 --- a/games/kolf/distinfo +++ b/games/kolf/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1677828251 -SHA256 (KDE/release-service/22.12.3/kolf-22.12.3.tar.xz) = 749ba4df86b1453b9c05319c9f28289f924af0131efd2558f3566efc84b69f05 -SIZE (KDE/release-service/22.12.3/kolf-22.12.3.tar.xz) = 1070736 +TIMESTAMP = 1681548418 +SHA256 (KDE/release-service/23.04.0/kolf-23.04.0.tar.xz) = 8f7ea0d877482f989e0a21ebadba29597b60cd290df478c07fe85c7e6888eaa5 +SIZE (KDE/release-service/23.04.0/kolf-23.04.0.tar.xz) = 1071084 diff --git a/games/kollision/distinfo b/games/kollision/distinfo index 8f11e00b7b60..34b3392fcadf 100644 --- a/games/kollision/distinfo +++ b/games/kollision/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1677828216 -SHA256 (KDE/release-service/22.12.3/kollision-22.12.3.tar.xz) = 18a356efbe1a1b786788546b8d004bb70b0715d14c7a87b6039efaf4e023d9b5 -SIZE (KDE/release-service/22.12.3/kollision-22.12.3.tar.xz) = 306460 +TIMESTAMP = 1681548439 +SHA256 (KDE/release-service/23.04.0/kollision-23.04.0.tar.xz) = ac3936c17b75f90ea1e6a0348c6fbbf69be47629f54b31fb7dfd1d931212d352 +SIZE (KDE/release-service/23.04.0/kollision-23.04.0.tar.xz) = 306776 diff --git a/games/konquest/distinfo b/games/konquest/distinfo index dd9f11e4a25f..5c599a4d2921 100644 --- a/games/konquest/distinfo +++ b/games/konquest/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1677828266 -SHA256 (KDE/release-service/22.12.3/konquest-22.12.3.tar.xz) = d1aacaa358b6666ac9b421baf881bc8a8833dd1400b4b2c078fd5c90e40e505c -SIZE (KDE/release-service/22.12.3/konquest-22.12.3.tar.xz) = 875568 +TIMESTAMP = 1681548421 +SHA256 (KDE/release-service/23.04.0/konquest-23.04.0.tar.xz) = 2fde4180d68d493a2cdda168920cb076f84aae2a2ba4034fb0a88ce3456d3f00 +SIZE (KDE/release-service/23.04.0/konquest-23.04.0.tar.xz) = 875664 diff --git a/games/kpat/distinfo b/games/kpat/distinfo index c921f96491e7..dd62f292f97e 100644 --- a/games/kpat/distinfo +++ b/games/kpat/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1677828253 -SHA256 (KDE/release-service/22.12.3/kpat-22.12.3.tar.xz) = eea12d664d146c7e0ed48bdf52383e8d37329ce7532ef34f3fb4f3641ce31355 -SIZE (KDE/release-service/22.12.3/kpat-22.12.3.tar.xz) = 3751384 +TIMESTAMP = 1681548417 +SHA256 (KDE/release-service/23.04.0/kpat-23.04.0.tar.xz) = 9fae8b86624b44714751f14ecea652b6ef2be338beb08a6a698a0f516ad35239 +SIZE (KDE/release-service/23.04.0/kpat-23.04.0.tar.xz) = 3752000 diff --git a/games/kreversi/distinfo b/games/kreversi/distinfo index 9adf595669a4..73e3f4dc5d3a 100644 --- a/games/kreversi/distinfo +++ b/games/kreversi/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1677828256 -SHA256 (KDE/release-service/22.12.3/kreversi-22.12.3.tar.xz) = 93c6b1c8bf30ee6c2753b94e7178315f726a54022c3aad303fcd9242a14f94b3 -SIZE (KDE/release-service/22.12.3/kreversi-22.12.3.tar.xz) = 1077132 +TIMESTAMP = 1681548431 +SHA256 (KDE/release-service/23.04.0/kreversi-23.04.0.tar.xz) = 8d519a3ab9b472792783d76d47a8909501924192a165e67384d1614a9b7c4d17 +SIZE (KDE/release-service/23.04.0/kreversi-23.04.0.tar.xz) = 1077412 diff --git a/games/kshisen/distinfo b/games/kshisen/distinfo index 5875e9e9d737..4d1519b3056b 100644 --- a/games/kshisen/distinfo +++ b/games/kshisen/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1677828271 -SHA256 (KDE/release-service/22.12.3/kshisen-22.12.3.tar.xz) = cbbf128d03db44e34c51a6db2b00486bd5c888b26bbbb479b74d03b8f1c1fb58 -SIZE (KDE/release-service/22.12.3/kshisen-22.12.3.tar.xz) = 1007600 +TIMESTAMP = 1681548403 +SHA256 (KDE/release-service/23.04.0/kshisen-23.04.0.tar.xz) = 3ac642c2a3643b1a463a0db4701c362b4afc591fbea91b3e7aece288ce12b8f2 +SIZE (KDE/release-service/23.04.0/kshisen-23.04.0.tar.xz) = 1007892 diff --git a/games/ksirk/distinfo b/games/ksirk/distinfo index af3ee2c7407e..93bd4f6239e3 100644 --- a/games/ksirk/distinfo +++ b/games/ksirk/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1677828227 -SHA256 (KDE/release-service/22.12.3/ksirk-22.12.3.tar.xz) = e178046107d5e5b610223a850aff6e704a9004d42e84e04c44d108703ba6d96f -SIZE (KDE/release-service/22.12.3/ksirk-22.12.3.tar.xz) = 7047492 +TIMESTAMP = 1681548436 +SHA256 (KDE/release-service/23.04.0/ksirk-23.04.0.tar.xz) = a2742f8b0b7e6b649a142ec212f14eff6e07bfa2d773f5e64432206241d20d13 +SIZE (KDE/release-service/23.04.0/ksirk-23.04.0.tar.xz) = 7047220 diff --git a/games/ksnakeduel/distinfo b/games/ksnakeduel/distinfo index de87afd9ac83..14a03744a9fb 100644 --- a/games/ksnakeduel/distinfo +++ b/games/ksnakeduel/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1677828207 -SHA256 (KDE/release-service/22.12.3/ksnakeduel-22.12.3.tar.xz) = cc2dbeb0370a685f91a35ef2fbcfd5225547bc69a6727f4e0913c4ebec8c11e9 -SIZE (KDE/release-service/22.12.3/ksnakeduel-22.12.3.tar.xz) = 611380 +TIMESTAMP = 1681548438 +SHA256 (KDE/release-service/23.04.0/ksnakeduel-23.04.0.tar.xz) = 6deeabe263fbe6b23b7e175e19397b41bd8b88b5380d78b7db33afa0a705c718 +SIZE (KDE/release-service/23.04.0/ksnakeduel-23.04.0.tar.xz) = 602040 diff --git a/games/kspaceduel/distinfo b/games/kspaceduel/distinfo index e451146cce94..1a3b8c2c0509 100644 --- a/games/kspaceduel/distinfo +++ b/games/kspaceduel/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1677828224 -SHA256 (KDE/release-service/22.12.3/kspaceduel-22.12.3.tar.xz) = b72ab4495a24856a6329c9932d8b7ab7f81dbc17fb0f1d83fdf20e1d05377fd2 -SIZE (KDE/release-service/22.12.3/kspaceduel-22.12.3.tar.xz) = 659984 +TIMESTAMP = 1681548416 +SHA256 (KDE/release-service/23.04.0/kspaceduel-23.04.0.tar.xz) = 39ecd7c5718df518d2e07bb773418d072e16cb2fa8396dcda59a34b05e8fa800 +SIZE (KDE/release-service/23.04.0/kspaceduel-23.04.0.tar.xz) = 660164 diff --git a/games/ksquares/distinfo b/games/ksquares/distinfo index 723525dd5c4e..2e0f091978b2 100644 --- a/games/ksquares/distinfo +++ b/games/ksquares/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1677828225 -SHA256 (KDE/release-service/22.12.3/ksquares-22.12.3.tar.xz) = 7144a282e046304e3c493ad3484ea806d97d51b691803080f2d3df1597090cb7 -SIZE (KDE/release-service/22.12.3/ksquares-22.12.3.tar.xz) = 312272 +TIMESTAMP = 1681548398 +SHA256 (KDE/release-service/23.04.0/ksquares-23.04.0.tar.xz) = a7340c91992c790c5413433155c406cc1b0655b59fcacd574e4ad5d9cda6693b +SIZE (KDE/release-service/23.04.0/ksquares-23.04.0.tar.xz) = 312524 diff --git a/games/ksudoku/distinfo b/games/ksudoku/distinfo index 073da84d1163..ae69cbb74125 100644 --- a/games/ksudoku/distinfo +++ b/games/ksudoku/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1677828263 -SHA256 (KDE/release-service/22.12.3/ksudoku-22.12.3.tar.xz) = 69715ef186c01570fac4c40bd01eb70355b47bdba95e1e4aa6edc9208a6667ea -SIZE (KDE/release-service/22.12.3/ksudoku-22.12.3.tar.xz) = 1703052 +TIMESTAMP = 1681548415 +SHA256 (KDE/release-service/23.04.0/ksudoku-23.04.0.tar.xz) = b0145f0f409657529eb007525b1b08de2994ee3a1a91bb151cb3908b512f0f68 +SIZE (KDE/release-service/23.04.0/ksudoku-23.04.0.tar.xz) = 1702492 diff --git a/games/ktuberling/distinfo b/games/ktuberling/distinfo index 92c2b0a1ea3d..6fe6df8a85ab 100644 --- a/games/ktuberling/distinfo +++ b/games/ktuberling/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1677828247 -SHA256 (KDE/release-service/22.12.3/ktuberling-22.12.3.tar.xz) = 498f4aca8a65b3529445997bfe2e5530fb4beb3d4fd61c19da653e7fcf1b545a -SIZE (KDE/release-service/22.12.3/ktuberling-22.12.3.tar.xz) = 71422716 +TIMESTAMP = 1681548405 +SHA256 (KDE/release-service/23.04.0/ktuberling-23.04.0.tar.xz) = 5f276bbe3d5295ccc6e684e37ac0b9c131152b1909884069ecc5a6b87f34db11 +SIZE (KDE/release-service/23.04.0/ktuberling-23.04.0.tar.xz) = 71402176 diff --git a/games/kubrick/distinfo b/games/kubrick/distinfo index 38e451585b0f..19ed3deea6fb 100644 --- a/games/kubrick/distinfo +++ b/games/kubrick/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1677828212 -SHA256 (KDE/release-service/22.12.3/kubrick-22.12.3.tar.xz) = 4cc9523999a8ddc62ada54c0447e12dd3e1fecce0598cb1fc91940a3542b7b2c -SIZE (KDE/release-service/22.12.3/kubrick-22.12.3.tar.xz) = 348236 +TIMESTAMP = 1681548423 +SHA256 (KDE/release-service/23.04.0/kubrick-23.04.0.tar.xz) = 0a4282cad560522639bf31ec29342bebcdb8e23a7c0f6a9bbd26a54a95216f94 +SIZE (KDE/release-service/23.04.0/kubrick-23.04.0.tar.xz) = 348332 diff --git a/games/libkdegames/distinfo b/games/libkdegames/distinfo index ff457ed266f6..07c1f7cb99c4 100644 --- a/games/libkdegames/distinfo +++ b/games/libkdegames/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1677828274 -SHA256 (KDE/release-service/22.12.3/libkdegames-22.12.3.tar.xz) = 9c8f6e92902d9e231c37f3db8f20321c46d0fbb66f50178840dd687dee525f1c -SIZE (KDE/release-service/22.12.3/libkdegames-22.12.3.tar.xz) = 6012748 +TIMESTAMP = 1681548410 +SHA256 (KDE/release-service/23.04.0/libkdegames-23.04.0.tar.xz) = 26c3afffd24b1efe41ebb839daba7ecbd7feceb290281e5b9ea5195a80bf55f2 +SIZE (KDE/release-service/23.04.0/libkdegames-23.04.0.tar.xz) = 5980828 diff --git a/games/libkmahjongg/distinfo b/games/libkmahjongg/distinfo index 77e53a9063cc..527c8c4d7c8d 100644 --- a/games/libkmahjongg/distinfo +++ b/games/libkmahjongg/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1677828241 -SHA256 (KDE/release-service/22.12.3/libkmahjongg-22.12.3.tar.xz) = a01a64970d18bd5e53ecac10f980a374b6d4c1bd17009e3c8cab692bcc304c13 -SIZE (KDE/release-service/22.12.3/libkmahjongg-22.12.3.tar.xz) = 1687372 +TIMESTAMP = 1681548444 +SHA256 (KDE/release-service/23.04.0/libkmahjongg-23.04.0.tar.xz) = 995b4d8ea15293de092f8dc0257d9f0fbb6c95e65575fb5e826c07516d9ec3fa +SIZE (KDE/release-service/23.04.0/libkmahjongg-23.04.0.tar.xz) = 1686992 diff --git a/games/lskat/distinfo b/games/lskat/distinfo index 634ddc77c1d6..4dd3bf2c2517 100644 --- a/games/lskat/distinfo +++ b/games/lskat/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1677828236 -SHA256 (KDE/release-service/22.12.3/lskat-22.12.3.tar.xz) = b609d66e45ee057f150c0d465c0a696433ea5be2f8dc8f8592fd922769078d66 -SIZE (KDE/release-service/22.12.3/lskat-22.12.3.tar.xz) = 1249884 +TIMESTAMP = 1681548437 +SHA256 (KDE/release-service/23.04.0/lskat-23.04.0.tar.xz) = 0972ab69a2b8ec53fed751790a1a42463bd620b531f949a0b134fb6b6995798e +SIZE (KDE/release-service/23.04.0/lskat-23.04.0.tar.xz) = 1249976 diff --git a/games/palapeli/distinfo b/games/palapeli/distinfo index 254c4bc6de32..74eee460ae1e 100644 --- a/games/palapeli/distinfo +++ b/games/palapeli/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1677828213 -SHA256 (KDE/release-service/22.12.3/palapeli-22.12.3.tar.xz) = 32c7c0bfd4800f2c0cfb4d9ab16ed700cc6f2cb6ac1f81e424cf91330c029972 -SIZE (KDE/release-service/22.12.3/palapeli-22.12.3.tar.xz) = 2111000 +TIMESTAMP = 1681548406 +SHA256 (KDE/release-service/23.04.0/palapeli-23.04.0.tar.xz) = d1730ed006e66af24bab06bc74a8455852f395a1629fab58dd636ded9008c96e +SIZE (KDE/release-service/23.04.0/palapeli-23.04.0.tar.xz) = 2111396 diff --git a/games/picmi/distinfo b/games/picmi/distinfo index ac51206b64e5..2628b723811e 100644 --- a/games/picmi/distinfo +++ b/games/picmi/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1677828269 -SHA256 (KDE/release-service/22.12.3/picmi-22.12.3.tar.xz) = a078b3c0fc9754644e92d989f971e4a1cceac8e51b870bf26391a45ee8f7f979 -SIZE (KDE/release-service/22.12.3/picmi-22.12.3.tar.xz) = 1539996 +TIMESTAMP = 1681548420 +SHA256 (KDE/release-service/23.04.0/picmi-23.04.0.tar.xz) = 9730ad59b6e78aa6dcaaf52a28aa9e1ff333b9916cf0c058456eab4b97d8dc89 +SIZE (KDE/release-service/23.04.0/picmi-23.04.0.tar.xz) = 1540240 diff --git a/graphics/gwenview/Makefile b/graphics/gwenview/Makefile index 76984c3ebca9..8e73d15c2c93 100644 --- a/graphics/gwenview/Makefile +++ b/graphics/gwenview/Makefile @@ -1,34 +1,35 @@ PORTNAME= gwenview DISTVERSION= ${KDE_APPLICATIONS_VERSION} CATEGORIES= graphics kde kde-applications MAINTAINER= kde@FreeBSD.org COMMENT= Image viewer and browser for KDE WWW= http://gwenview.sourceforge.net BUILD_DEPENDS= ${LOCALBASE}/share/xsl/docbook/html/docbook.xsl:textproc/docbook-xsl \ - docbook-xml>0:textproc/docbook-xml + docbook-xml>0:textproc/docbook-xml \ + wayland-protocols>=0:graphics/wayland-protocols LIB_DEPENDS= libexiv2.so:graphics/exiv2 \ liblcms2.so:graphics/lcms2 \ libpng.so:graphics/png \ libtiff.so:graphics/tiff \ libkImageAnnotator.so:graphics/kimageannotator RUN_DEPENDS= kipi-plugins>=0:graphics/kipi-plugins USES= compiler:c++11-lang cmake desktop-file-utils gettext jpeg pkgconfig \ kde:5 qt:5 tar:xz xorg USE_KDE= activities auth baloo bookmarks codecs completion config \ configwidgets coreaddons emoticons filemetadata guiaddons i18n \ iconthemes init itemmodels itemviews jobwidgets \ kdelibs4support kimageformats kio libkdcraw libkipi \ notifications parts service solid sonnet textwidgets \ widgetsaddons windowsystem xmlgui \ ecm:build USE_QT= concurrent core dbus gui network opengl phonon4 printsupport \ svg widgets x11extras xml \ buildtools:build qmake:build USE_XORG= x11 OPTIONS_DEFINE= DOCS .include diff --git a/graphics/gwenview/distinfo b/graphics/gwenview/distinfo index 596076c62c0e..686666cd646c 100644 --- a/graphics/gwenview/distinfo +++ b/graphics/gwenview/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1677828306 -SHA256 (KDE/release-service/22.12.3/gwenview-22.12.3.tar.xz) = 4a1dc70956d7f6c3c5fab57efde119086bb736dce36a864db5d4f0ab7e005460 -SIZE (KDE/release-service/22.12.3/gwenview-22.12.3.tar.xz) = 6877352 +TIMESTAMP = 1681548392 +SHA256 (KDE/release-service/23.04.0/gwenview-23.04.0.tar.xz) = b63d81b4471bd37526b0da8f283373df3f60c9a5ea7c9cc40d3baa599c76a50c +SIZE (KDE/release-service/23.04.0/gwenview-23.04.0.tar.xz) = 6890860 diff --git a/graphics/kamera/Makefile b/graphics/kamera/Makefile index 73982ee92b53..6dc5d647a7c8 100644 --- a/graphics/kamera/Makefile +++ b/graphics/kamera/Makefile @@ -1,20 +1,20 @@ PORTNAME= kamera DISTVERSION= ${KDE_APPLICATIONS_VERSION} CATEGORIES= graphics kde kde-applications MAINTAINER= kde@FreeBSD.org COMMENT= Digital camera manager for KDE WWW= https://www.kde.org LIB_DEPENDS= libgphoto2.so:graphics/libgphoto2 USES= cmake compiler:c++11-lang gettext kde:5 localbase qt:5 tar:xz USE_KDE= auth codecs config configwidgets coreaddons doctools i18n \ - kio service widgetsaddons xmlgui \ + kcmutils kio service widgetsaddons xmlgui \ ecm:build USE_QT= concurrent core dbus gui network widgets xml \ buildtools:build qmake:build OPTIONS_DEFINE= DOCS .include diff --git a/graphics/kamera/distinfo b/graphics/kamera/distinfo index 1a5b2973530c..8f9a46af99e6 100644 --- a/graphics/kamera/distinfo +++ b/graphics/kamera/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1677828286 -SHA256 (KDE/release-service/22.12.3/kamera-22.12.3.tar.xz) = 1095c486285d5d808645864c6ff24749b3923bf7a86ee91fab73fab132620e0e -SIZE (KDE/release-service/22.12.3/kamera-22.12.3.tar.xz) = 131912 +TIMESTAMP = 1681548387 +SHA256 (KDE/release-service/23.04.0/kamera-23.04.0.tar.xz) = 12be6f3d0de644a9c4252a166a1a19fc2fe565f5f170b1d5aec2b054bb481da8 +SIZE (KDE/release-service/23.04.0/kamera-23.04.0.tar.xz) = 129864 diff --git a/graphics/kamera/pkg-plist b/graphics/kamera/pkg-plist index c8919f7525a2..2e985ba09281 100644 --- a/graphics/kamera/pkg-plist +++ b/graphics/kamera/pkg-plist @@ -1,118 +1,119 @@ %%QT_PLUGINDIR%%/kf5/kio/kio_kamera.so -%%QT_PLUGINDIR%%/plasma/kcms/systemsettings_qwidgets/kamera.so -share/applications/kamera.desktop +%%QT_PLUGINDIR%%/plasma/kcms/systemsettings_qwidgets/kcm_kamera.so +share/applications/kcm_kamera.desktop share/locale/af/LC_MESSAGES/kcmkamera.mo share/locale/ar/LC_MESSAGES/kcmkamera.mo share/locale/ar/LC_MESSAGES/kio5_kamera.mo share/locale/az/LC_MESSAGES/kcmkamera.mo share/locale/az/LC_MESSAGES/kio5_kamera.mo share/locale/be/LC_MESSAGES/kcmkamera.mo share/locale/bg/LC_MESSAGES/kcmkamera.mo share/locale/bg/LC_MESSAGES/kio5_kamera.mo share/locale/br/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/cy/LC_MESSAGES/kcmkamera.mo share/locale/da/LC_MESSAGES/kcmkamera.mo share/locale/da/LC_MESSAGES/kio5_kamera.mo share/locale/de/LC_MESSAGES/kcmkamera.mo share/locale/de/LC_MESSAGES/kio5_kamera.mo share/locale/el/LC_MESSAGES/kcmkamera.mo share/locale/el/LC_MESSAGES/kio5_kamera.mo share/locale/en_GB/LC_MESSAGES/kcmkamera.mo share/locale/en_GB/LC_MESSAGES/kio5_kamera.mo share/locale/eo/LC_MESSAGES/kcmkamera.mo share/locale/es/LC_MESSAGES/kcmkamera.mo share/locale/es/LC_MESSAGES/kio5_kamera.mo share/locale/et/LC_MESSAGES/kcmkamera.mo share/locale/et/LC_MESSAGES/kio5_kamera.mo share/locale/eu/LC_MESSAGES/kcmkamera.mo share/locale/eu/LC_MESSAGES/kio5_kamera.mo share/locale/fa/LC_MESSAGES/kcmkamera.mo share/locale/fi/LC_MESSAGES/kcmkamera.mo share/locale/fi/LC_MESSAGES/kio5_kamera.mo share/locale/fr/LC_MESSAGES/kcmkamera.mo share/locale/fr/LC_MESSAGES/kio5_kamera.mo share/locale/fy/LC_MESSAGES/kcmkamera.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/hne/LC_MESSAGES/kcmkamera.mo share/locale/hr/LC_MESSAGES/kcmkamera.mo share/locale/hu/LC_MESSAGES/kcmkamera.mo share/locale/hu/LC_MESSAGES/kio5_kamera.mo share/locale/ia/LC_MESSAGES/kcmkamera.mo share/locale/ia/LC_MESSAGES/kio5_kamera.mo share/locale/is/LC_MESSAGES/kcmkamera.mo share/locale/is/LC_MESSAGES/kio5_kamera.mo share/locale/it/LC_MESSAGES/kcmkamera.mo share/locale/it/LC_MESSAGES/kio5_kamera.mo share/locale/ja/LC_MESSAGES/kcmkamera.mo share/locale/ja/LC_MESSAGES/kio5_kamera.mo share/locale/ka/LC_MESSAGES/kcmkamera.mo share/locale/ka/LC_MESSAGES/kio5_kamera.mo share/locale/kk/LC_MESSAGES/kcmkamera.mo share/locale/km/LC_MESSAGES/kcmkamera.mo share/locale/ko/LC_MESSAGES/kcmkamera.mo share/locale/ko/LC_MESSAGES/kio5_kamera.mo share/locale/lt/LC_MESSAGES/kcmkamera.mo share/locale/lt/LC_MESSAGES/kio5_kamera.mo share/locale/lv/LC_MESSAGES/kcmkamera.mo share/locale/mk/LC_MESSAGES/kcmkamera.mo share/locale/ml/LC_MESSAGES/kcmkamera.mo share/locale/ml/LC_MESSAGES/kio5_kamera.mo share/locale/mr/LC_MESSAGES/kcmkamera.mo share/locale/ms/LC_MESSAGES/kcmkamera.mo share/locale/nb/LC_MESSAGES/kcmkamera.mo share/locale/nds/LC_MESSAGES/kcmkamera.mo share/locale/ne/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/oc/LC_MESSAGES/kcmkamera.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/ro/LC_MESSAGES/kio5_kamera.mo share/locale/ru/LC_MESSAGES/kcmkamera.mo share/locale/ru/LC_MESSAGES/kio5_kamera.mo share/locale/se/LC_MESSAGES/kcmkamera.mo share/locale/si/LC_MESSAGES/kcmkamera.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/sl/LC_MESSAGES/kio5_kamera.mo share/locale/sq/LC_MESSAGES/kcmkamera.mo share/locale/sv/LC_MESSAGES/kcmkamera.mo share/locale/sv/LC_MESSAGES/kio5_kamera.mo share/locale/ta/LC_MESSAGES/kcmkamera.mo share/locale/tg/LC_MESSAGES/kcmkamera.mo share/locale/th/LC_MESSAGES/kcmkamera.mo share/locale/tr/LC_MESSAGES/kcmkamera.mo share/locale/tr/LC_MESSAGES/kio5_kamera.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/vi/LC_MESSAGES/kcmkamera.mo share/locale/vi/LC_MESSAGES/kio5_kamera.mo share/locale/xh/LC_MESSAGES/kcmkamera.mo share/locale/zh_CN/LC_MESSAGES/kcmkamera.mo share/locale/zh_CN/LC_MESSAGES/kio5_kamera.mo share/locale/zh_HK/LC_MESSAGES/kcmkamera.mo share/locale/zh_TW/LC_MESSAGES/kcmkamera.mo share/locale/zh_TW/LC_MESSAGES/kio5_kamera.mo share/metainfo/org.kde.kamera.metainfo.xml +share/qlogging-categories5/kamera.categories share/solid/actions/solid_camera.desktop diff --git a/graphics/kcolorchooser/distinfo b/graphics/kcolorchooser/distinfo index 2dddc2f46038..266f98918919 100644 --- a/graphics/kcolorchooser/distinfo +++ b/graphics/kcolorchooser/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1677828296 -SHA256 (KDE/release-service/22.12.3/kcolorchooser-22.12.3.tar.xz) = a046417a2c5cb85e5248aa4a61956ff7455c04c27a0bbb27293ad8344e26da40 -SIZE (KDE/release-service/22.12.3/kcolorchooser-22.12.3.tar.xz) = 32724 +TIMESTAMP = 1681548382 +SHA256 (KDE/release-service/23.04.0/kcolorchooser-23.04.0.tar.xz) = 3996cf25caa91b33cb366b13ca4f4ad7edf5e36e114274335e2825ace0c89342 +SIZE (KDE/release-service/23.04.0/kcolorchooser-23.04.0.tar.xz) = 33224 diff --git a/graphics/kdegraphics-mobipocket/distinfo b/graphics/kdegraphics-mobipocket/distinfo index 3bc785f755dd..1455573287b1 100644 --- a/graphics/kdegraphics-mobipocket/distinfo +++ b/graphics/kdegraphics-mobipocket/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1677828293 -SHA256 (KDE/release-service/22.12.3/kdegraphics-mobipocket-22.12.3.tar.xz) = 4f4023d639b12703c2992861ffd408fac2366adfae8b0b1f0f497b36a5f8a8f1 -SIZE (KDE/release-service/22.12.3/kdegraphics-mobipocket-22.12.3.tar.xz) = 12608 +TIMESTAMP = 1681548380 +SHA256 (KDE/release-service/23.04.0/kdegraphics-mobipocket-23.04.0.tar.xz) = 257839a383614098fc60031d689145bf1d99844c835aacbc08bf34d21542b0c2 +SIZE (KDE/release-service/23.04.0/kdegraphics-mobipocket-23.04.0.tar.xz) = 12852 diff --git a/graphics/kdegraphics-mobipocket/pkg-plist b/graphics/kdegraphics-mobipocket/pkg-plist index cab31168d5e1..ddc051f14194 100644 --- a/graphics/kdegraphics-mobipocket/pkg-plist +++ b/graphics/kdegraphics-mobipocket/pkg-plist @@ -1,10 +1,11 @@ -include/qmobipocket/mobipocket.h -include/qmobipocket/qfilestream.h -include/qmobipocket/qmobipocket_export.h +include/QMobipocket/qmobipocket/mobipocket.h +include/QMobipocket/qmobipocket/qfilestream.h +include/QMobipocket/qmobipocket/qmobipocket_export.h +include/QMobipocket/qmobipocket_version.h lib/cmake/QMobipocket/QMobipocketConfig.cmake lib/cmake/QMobipocket/QMobipocketConfigVersion.cmake lib/cmake/QMobipocket/QMobipocketTargets-%%CMAKE_BUILD_TYPE%%.cmake lib/cmake/QMobipocket/QMobipocketTargets.cmake lib/libqmobipocket.so lib/libqmobipocket.so.2 -lib/libqmobipocket.so.2.0.0 +lib/libqmobipocket.so.2.1.0 diff --git a/graphics/kdegraphics-svgpart/distinfo b/graphics/kdegraphics-svgpart/distinfo index c8c0fd852620..014749aefeff 100644 --- a/graphics/kdegraphics-svgpart/distinfo +++ b/graphics/kdegraphics-svgpart/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1677828301 -SHA256 (KDE/release-service/22.12.3/svgpart-22.12.3.tar.xz) = b353aef787ee4f53ca7bb6d44414b9cb6c3823ce3fd59cce040e9482e5b71e74 -SIZE (KDE/release-service/22.12.3/svgpart-22.12.3.tar.xz) = 28352 +TIMESTAMP = 1681548383 +SHA256 (KDE/release-service/23.04.0/svgpart-23.04.0.tar.xz) = 51c8f20eb1d18b4edc8d130d4132818f11e3f8dc5eb12aff505714448ab298cb +SIZE (KDE/release-service/23.04.0/svgpart-23.04.0.tar.xz) = 28568 diff --git a/graphics/kdegraphics-svgpart/pkg-plist b/graphics/kdegraphics-svgpart/pkg-plist index 7aa7165e953c..31894bca49d9 100644 --- a/graphics/kdegraphics-svgpart/pkg-plist +++ b/graphics/kdegraphics-svgpart/pkg-plist @@ -1,64 +1,65 @@ %%QT_PLUGINDIR%%/kf5/parts/svgpart.so share/kservices5/svgpart.desktop share/locale/ar/LC_MESSAGES/svgpart.mo share/locale/be/LC_MESSAGES/svgpart.mo share/locale/bg/LC_MESSAGES/svgpart.mo share/locale/bs/LC_MESSAGES/svgpart.mo share/locale/ca/LC_MESSAGES/svgpart.mo share/locale/ca@valencia/LC_MESSAGES/svgpart.mo share/locale/cs/LC_MESSAGES/svgpart.mo share/locale/da/LC_MESSAGES/svgpart.mo share/locale/de/LC_MESSAGES/svgpart.mo share/locale/el/LC_MESSAGES/svgpart.mo share/locale/en_GB/LC_MESSAGES/svgpart.mo share/locale/eo/LC_MESSAGES/svgpart.mo share/locale/es/LC_MESSAGES/svgpart.mo share/locale/et/LC_MESSAGES/svgpart.mo share/locale/eu/LC_MESSAGES/svgpart.mo share/locale/fi/LC_MESSAGES/svgpart.mo share/locale/fr/LC_MESSAGES/svgpart.mo share/locale/ga/LC_MESSAGES/svgpart.mo share/locale/gl/LC_MESSAGES/svgpart.mo share/locale/hi/LC_MESSAGES/svgpart.mo share/locale/hr/LC_MESSAGES/svgpart.mo share/locale/hu/LC_MESSAGES/svgpart.mo share/locale/ia/LC_MESSAGES/svgpart.mo share/locale/id/LC_MESSAGES/svgpart.mo +share/locale/ie/LC_MESSAGES/svgpart.mo share/locale/is/LC_MESSAGES/svgpart.mo share/locale/it/LC_MESSAGES/svgpart.mo share/locale/ja/LC_MESSAGES/svgpart.mo share/locale/ka/LC_MESSAGES/svgpart.mo share/locale/kk/LC_MESSAGES/svgpart.mo share/locale/km/LC_MESSAGES/svgpart.mo share/locale/ko/LC_MESSAGES/svgpart.mo share/locale/ku/LC_MESSAGES/svgpart.mo share/locale/lt/LC_MESSAGES/svgpart.mo share/locale/lv/LC_MESSAGES/svgpart.mo share/locale/mk/LC_MESSAGES/svgpart.mo share/locale/ml/LC_MESSAGES/svgpart.mo share/locale/mr/LC_MESSAGES/svgpart.mo share/locale/nb/LC_MESSAGES/svgpart.mo share/locale/nds/LC_MESSAGES/svgpart.mo share/locale/nl/LC_MESSAGES/svgpart.mo share/locale/nn/LC_MESSAGES/svgpart.mo share/locale/pa/LC_MESSAGES/svgpart.mo share/locale/pl/LC_MESSAGES/svgpart.mo share/locale/pt/LC_MESSAGES/svgpart.mo share/locale/pt_BR/LC_MESSAGES/svgpart.mo share/locale/ro/LC_MESSAGES/svgpart.mo share/locale/ru/LC_MESSAGES/svgpart.mo share/locale/si/LC_MESSAGES/svgpart.mo share/locale/sk/LC_MESSAGES/svgpart.mo share/locale/sl/LC_MESSAGES/svgpart.mo share/locale/sq/LC_MESSAGES/svgpart.mo share/locale/sv/LC_MESSAGES/svgpart.mo share/locale/ta/LC_MESSAGES/svgpart.mo share/locale/th/LC_MESSAGES/svgpart.mo share/locale/tr/LC_MESSAGES/svgpart.mo share/locale/ug/LC_MESSAGES/svgpart.mo share/locale/uk/LC_MESSAGES/svgpart.mo share/locale/vi/LC_MESSAGES/svgpart.mo share/locale/wa/LC_MESSAGES/svgpart.mo share/locale/zh_CN/LC_MESSAGES/svgpart.mo share/locale/zh_TW/LC_MESSAGES/svgpart.mo share/metainfo/org.kde.svgpart.metainfo.xml diff --git a/graphics/kdegraphics-thumbnailers/distinfo b/graphics/kdegraphics-thumbnailers/distinfo index 87c4adaedd68..22834825c446 100644 --- a/graphics/kdegraphics-thumbnailers/distinfo +++ b/graphics/kdegraphics-thumbnailers/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1677828282 -SHA256 (KDE/release-service/22.12.3/kdegraphics-thumbnailers-22.12.3.tar.xz) = 07028f6fa26de5e97520850699a1ba6ceac89cf3542939f72d282487c6a6f008 -SIZE (KDE/release-service/22.12.3/kdegraphics-thumbnailers-22.12.3.tar.xz) = 49028 +TIMESTAMP = 1681548374 +SHA256 (KDE/release-service/23.04.0/kdegraphics-thumbnailers-23.04.0.tar.xz) = bdbf4873402a8f0400abd661d18b94209e63d471e4bc6dbbfba6deb5d036d562 +SIZE (KDE/release-service/23.04.0/kdegraphics-thumbnailers-23.04.0.tar.xz) = 49272 diff --git a/graphics/kimagemapeditor/distinfo b/graphics/kimagemapeditor/distinfo index 539dbc3e4a1f..5365a37b4c8e 100644 --- a/graphics/kimagemapeditor/distinfo +++ b/graphics/kimagemapeditor/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1677828294 -SHA256 (KDE/release-service/22.12.3/kimagemapeditor-22.12.3.tar.xz) = bd221e4e4ac728e0a3609ca318b8a142d7303a80e1b95ec8a0f831ca858b5638 -SIZE (KDE/release-service/22.12.3/kimagemapeditor-22.12.3.tar.xz) = 1103200 +TIMESTAMP = 1681548384 +SHA256 (KDE/release-service/23.04.0/kimagemapeditor-23.04.0.tar.xz) = 6bec57851381b937f2136c732e95ee46abbfefcf176024b3b7d4805361e34f39 +SIZE (KDE/release-service/23.04.0/kimagemapeditor-23.04.0.tar.xz) = 1103272 diff --git a/graphics/kipi-plugins/distinfo b/graphics/kipi-plugins/distinfo index fef948d7aa63..67967b050f1c 100644 --- a/graphics/kipi-plugins/distinfo +++ b/graphics/kipi-plugins/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1677828290 -SHA256 (KDE/release-service/22.12.3/kipi-plugins-22.12.3.tar.xz) = 5b9d090d7d878f9bf272b8fad532ba38cba6c56ba88435e87bb7b7165701d7fd -SIZE (KDE/release-service/22.12.3/kipi-plugins-22.12.3.tar.xz) = 1562584 +TIMESTAMP = 1681548372 +SHA256 (KDE/release-service/23.04.0/kipi-plugins-23.04.0.tar.xz) = 50514e83254c1b1be739a216774da094530152ca765db99f813ec0b180c859a6 +SIZE (KDE/release-service/23.04.0/kipi-plugins-23.04.0.tar.xz) = 1563700 diff --git a/graphics/kolourpaint/distinfo b/graphics/kolourpaint/distinfo index b6d534e0b670..dd076ed94b94 100644 --- a/graphics/kolourpaint/distinfo +++ b/graphics/kolourpaint/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1677828298 -SHA256 (KDE/release-service/22.12.3/kolourpaint-22.12.3.tar.xz) = 98cf0424ec1596a37af4117be2ab7a77897309250d9686824aa4c3b0727197bf -SIZE (KDE/release-service/22.12.3/kolourpaint-22.12.3.tar.xz) = 5785072 +TIMESTAMP = 1681548375 +SHA256 (KDE/release-service/23.04.0/kolourpaint-23.04.0.tar.xz) = 8e03434746ac62b367ea945edb10f37cbe51e73ed08339059a03ea041f7d2268 +SIZE (KDE/release-service/23.04.0/kolourpaint-23.04.0.tar.xz) = 5785388 diff --git a/graphics/kontrast/distinfo b/graphics/kontrast/distinfo index 7bcd51923505..f45e7d31ed0f 100644 --- a/graphics/kontrast/distinfo +++ b/graphics/kontrast/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1677828302 -SHA256 (KDE/release-service/22.12.3/kontrast-22.12.3.tar.xz) = 8cc5370c41dd53f8f640fd4a9ef88e90895f3f6d2876d9ced6f7a2759b9415c2 -SIZE (KDE/release-service/22.12.3/kontrast-22.12.3.tar.xz) = 201576 +TIMESTAMP = 1681548389 +SHA256 (KDE/release-service/23.04.0/kontrast-23.04.0.tar.xz) = b1019d07c424963a01bd8c3c3afa72bf35c42fb1742b2e9258d7c7f62a131254 +SIZE (KDE/release-service/23.04.0/kontrast-23.04.0.tar.xz) = 205192 diff --git a/graphics/kqtquickcharts/distinfo b/graphics/kqtquickcharts/distinfo index a23f9c4bdd17..d0c7003137e4 100644 --- a/graphics/kqtquickcharts/distinfo +++ b/graphics/kqtquickcharts/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1677828305 -SHA256 (KDE/release-service/22.12.3/kqtquickcharts-22.12.3.tar.xz) = a1c982981330f892b89ced55ae6e1be9bb2110a48606f97adb50fea3b67264e7 -SIZE (KDE/release-service/22.12.3/kqtquickcharts-22.12.3.tar.xz) = 30856 +TIMESTAMP = 1681548391 +SHA256 (KDE/release-service/23.04.0/kqtquickcharts-23.04.0.tar.xz) = 21797552c32393fe385060e856afac8d3f9abf60a5502cc61c66ab9306869a2d +SIZE (KDE/release-service/23.04.0/kqtquickcharts-23.04.0.tar.xz) = 30868 diff --git a/graphics/ksanecore/distinfo b/graphics/ksanecore/distinfo index f7b6a130b0b5..c7eb76c63f9d 100644 --- a/graphics/ksanecore/distinfo +++ b/graphics/ksanecore/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1677828292 -SHA256 (KDE/release-service/22.12.3/ksanecore-22.12.3.tar.xz) = ef1b1cb5d93b5412afbcb02f97b4eeaf7d757b39abc7e6cfc32170be435f6d54 -SIZE (KDE/release-service/22.12.3/ksanecore-22.12.3.tar.xz) = 47072 +TIMESTAMP = 1681548373 +SHA256 (KDE/release-service/23.04.0/ksanecore-23.04.0.tar.xz) = 2434460fe67cf38293a1c90568ace1e52ffc8c3b6a1a57581d079d8237f482d8 +SIZE (KDE/release-service/23.04.0/ksanecore-23.04.0.tar.xz) = 50028 diff --git a/graphics/ksanecore/pkg-plist b/graphics/ksanecore/pkg-plist index e681a3a71d53..17bc94e60e8b 100644 --- a/graphics/ksanecore/pkg-plist +++ b/graphics/ksanecore/pkg-plist @@ -1,44 +1,46 @@ include/KSaneCore/DeviceInformation include/KSaneCore/Interface include/KSaneCore/Option include/KSaneCore/deviceinformation.h include/KSaneCore/interface.h include/KSaneCore/ksanecore_export.h include/KSaneCore/ksanecore_version.h include/KSaneCore/option.h lib/cmake/KSaneCore/KSaneCoreConfig.cmake lib/cmake/KSaneCore/KSaneCoreConfigVersion.cmake lib/cmake/KSaneCore/KSaneCoreTargets-%%CMAKE_BUILD_TYPE%%.cmake lib/cmake/KSaneCore/KSaneCoreTargets.cmake lib/libKSaneCore.so lib/libKSaneCore.so.1 lib/libKSaneCore.so.%%KDE_APPLICATIONS_VERSION%% share/locale/ar/LC_MESSAGES/ksanecore.mo share/locale/bg/LC_MESSAGES/ksanecore.mo share/locale/ca/LC_MESSAGES/ksanecore.mo share/locale/ca@valencia/LC_MESSAGES/ksanecore.mo share/locale/cs/LC_MESSAGES/ksanecore.mo share/locale/de/LC_MESSAGES/ksanecore.mo share/locale/en_GB/LC_MESSAGES/ksanecore.mo share/locale/es/LC_MESSAGES/ksanecore.mo share/locale/eu/LC_MESSAGES/ksanecore.mo share/locale/fi/LC_MESSAGES/ksanecore.mo share/locale/fr/LC_MESSAGES/ksanecore.mo share/locale/hi/LC_MESSAGES/ksanecore.mo share/locale/it/LC_MESSAGES/ksanecore.mo share/locale/ja/LC_MESSAGES/ksanecore.mo share/locale/ka/LC_MESSAGES/ksanecore.mo share/locale/ko/LC_MESSAGES/ksanecore.mo +share/locale/lt/LC_MESSAGES/ksanecore.mo share/locale/nl/LC_MESSAGES/ksanecore.mo +share/locale/nn/LC_MESSAGES/ksanecore.mo share/locale/pl/LC_MESSAGES/ksanecore.mo share/locale/pt/LC_MESSAGES/ksanecore.mo share/locale/pt_BR/LC_MESSAGES/ksanecore.mo share/locale/ro/LC_MESSAGES/ksanecore.mo share/locale/ru/LC_MESSAGES/ksanecore.mo share/locale/sk/LC_MESSAGES/ksanecore.mo share/locale/sl/LC_MESSAGES/ksanecore.mo share/locale/sv/LC_MESSAGES/ksanecore.mo share/locale/tr/LC_MESSAGES/ksanecore.mo share/locale/uk/LC_MESSAGES/ksanecore.mo share/locale/zh_CN/LC_MESSAGES/ksanecore.mo share/locale/zh_TW/LC_MESSAGES/ksanecore.mo diff --git a/graphics/libkdcraw/distinfo b/graphics/libkdcraw/distinfo index f4aba1163d89..4167c283926a 100644 --- a/graphics/libkdcraw/distinfo +++ b/graphics/libkdcraw/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1677828304 -SHA256 (KDE/release-service/22.12.3/libkdcraw-22.12.3.tar.xz) = 0e64c591ae2d9b11f433d7578b528753bf38d0aa9b8c06fb4a0675c0ad940789 -SIZE (KDE/release-service/22.12.3/libkdcraw-22.12.3.tar.xz) = 37480 +TIMESTAMP = 1681548388 +SHA256 (KDE/release-service/23.04.0/libkdcraw-23.04.0.tar.xz) = f7af5d51721c8852236ca875a969f7ad6ba223eaae1564614d7470582a901ba8 +SIZE (KDE/release-service/23.04.0/libkdcraw-23.04.0.tar.xz) = 37304 diff --git a/graphics/libkdcraw/pkg-plist b/graphics/libkdcraw/pkg-plist index e7639437a71f..6a3b2b2f3f76 100644 --- a/graphics/libkdcraw/pkg-plist +++ b/graphics/libkdcraw/pkg-plist @@ -1,18 +1,18 @@ include/KF5/KDCRAW/KDCRAW/DcrawInfoContainer include/KF5/KDCRAW/KDCRAW/KDcraw include/KF5/KDCRAW/KDCRAW/RawDecodingSettings include/KF5/KDCRAW/KDCRAW/RawFiles include/KF5/KDCRAW/kdcraw/dcrawinfocontainer.h include/KF5/KDCRAW/kdcraw/kdcraw.h include/KF5/KDCRAW/kdcraw/libkdcraw_export.h include/KF5/KDCRAW/kdcraw/rawdecodingsettings.h include/KF5/KDCRAW/kdcraw/rawfiles.h -include/KF5/libkdcraw_version.h +include/KF5/KDCRAW/libkdcraw_version.h lib/cmake/KF5KDcraw/KF5KDcrawConfig.cmake lib/cmake/KF5KDcraw/KF5KDcrawConfigVersion.cmake lib/cmake/KF5KDcraw/KF5KDcrawTargets-%%CMAKE_BUILD_TYPE%%.cmake lib/cmake/KF5KDcraw/KF5KDcrawTargets.cmake lib/libKF5KDcraw.so lib/libKF5KDcraw.so.5 lib/libKF5KDcraw.so.5.0.0 share/qlogging-categories5/libkdcraw.categories diff --git a/graphics/libkexiv2/distinfo b/graphics/libkexiv2/distinfo index a1c2126b2faf..90eaa49ae768 100644 --- a/graphics/libkexiv2/distinfo +++ b/graphics/libkexiv2/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1677828284 -SHA256 (KDE/release-service/22.12.3/libkexiv2-22.12.3.tar.xz) = 6f9d6e28bb6e6dc73cbbbb0b0f788b6ada328616568a023b286126ce67332a94 -SIZE (KDE/release-service/22.12.3/libkexiv2-22.12.3.tar.xz) = 60000 +TIMESTAMP = 1681548381 +SHA256 (KDE/release-service/23.04.0/libkexiv2-23.04.0.tar.xz) = 18d3eed06df9d1e31d8434ed9887e305aba176d0856e19a8cd3bdb555b80d391 +SIZE (KDE/release-service/23.04.0/libkexiv2-23.04.0.tar.xz) = 60016 diff --git a/graphics/libkexiv2/pkg-plist b/graphics/libkexiv2/pkg-plist index 56f51d42284a..05ea91de27d0 100644 --- a/graphics/libkexiv2/pkg-plist +++ b/graphics/libkexiv2/pkg-plist @@ -1,18 +1,18 @@ include/KF5/KExiv2/KExiv2/KExiv2 include/KF5/KExiv2/KExiv2/KExiv2Data include/KF5/KExiv2/KExiv2/KExiv2Previews include/KF5/KExiv2/KExiv2/RotationMatrix include/KF5/KExiv2/kexiv2/kexiv2.h include/KF5/KExiv2/kexiv2/kexiv2data.h include/KF5/KExiv2/kexiv2/kexiv2previews.h include/KF5/KExiv2/kexiv2/libkexiv2_export.h include/KF5/KExiv2/kexiv2/rotationmatrix.h -include/KF5/libkexiv2_version.h +include/KF5/KExiv2/libkexiv2_version.h lib/cmake/KF5KExiv2/KF5KExiv2Config.cmake lib/cmake/KF5KExiv2/KF5KExiv2ConfigVersion.cmake lib/cmake/KF5KExiv2/KF5KExiv2Targets-%%CMAKE_BUILD_TYPE%%.cmake lib/cmake/KF5KExiv2/KF5KExiv2Targets.cmake lib/libKF5KExiv2.so -lib/libKF5KExiv2.so.5.0.0 lib/libKF5KExiv2.so.15.0.0 +lib/libKF5KExiv2.so.5.0.0 share/qlogging-categories5/libkexiv2.categories diff --git a/graphics/libkipi/distinfo b/graphics/libkipi/distinfo index e28c068c531e..a70e774ebb32 100644 --- a/graphics/libkipi/distinfo +++ b/graphics/libkipi/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1677828283 -SHA256 (KDE/release-service/22.12.3/libkipi-22.12.3.tar.xz) = 5467a4268f82464083bfb0128ba3332601486b14ec2945515534eabce363265d -SIZE (KDE/release-service/22.12.3/libkipi-22.12.3.tar.xz) = 88496 +TIMESTAMP = 1681548390 +SHA256 (KDE/release-service/23.04.0/libkipi-23.04.0.tar.xz) = a07859eed5cb9c130a6abc1f1b8c1ec895a32e735d13be609e26ca722deacca6 +SIZE (KDE/release-service/23.04.0/libkipi-23.04.0.tar.xz) = 88524 diff --git a/graphics/libksane/distinfo b/graphics/libksane/distinfo index 394d0d5eddd3..d4cb7bd143b2 100644 --- a/graphics/libksane/distinfo +++ b/graphics/libksane/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1677828289 -SHA256 (KDE/release-service/22.12.3/libksane-22.12.3.tar.xz) = cdd0330474e14a6f8753196a0cf0a6534285cf02a227f6d72b92e7f61e81dbcd -SIZE (KDE/release-service/22.12.3/libksane-22.12.3.tar.xz) = 153092 +TIMESTAMP = 1681548376 +SHA256 (KDE/release-service/23.04.0/libksane-23.04.0.tar.xz) = 9e0d6e9afc34b09fe40144c289638a373955d7ecf533c07b83629b9c1daec75e +SIZE (KDE/release-service/23.04.0/libksane-23.04.0.tar.xz) = 154684 diff --git a/graphics/okular/distinfo b/graphics/okular/distinfo index 22842c162a08..0ff0c7ceca3a 100644 --- a/graphics/okular/distinfo +++ b/graphics/okular/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1677828300 -SHA256 (KDE/release-service/22.12.3/okular-22.12.3.tar.xz) = 01ef28755993ce0d5acd22a8a25d80497d813ffc399c87bb0bf76ee32a46da02 -SIZE (KDE/release-service/22.12.3/okular-22.12.3.tar.xz) = 8382200 +TIMESTAMP = 1681548377 +SHA256 (KDE/release-service/23.04.0/okular-23.04.0.tar.xz) = 6c0dff299abf86df88d86e7d31d1dac2633775a2cca801ab3ca5104fafbcd40c +SIZE (KDE/release-service/23.04.0/okular-23.04.0.tar.xz) = 8477996 diff --git a/graphics/okular/pkg-plist b/graphics/okular/pkg-plist index c7bd6e23f438..475eff205ed9 100644 --- a/graphics/okular/pkg-plist +++ b/graphics/okular/pkg-plist @@ -1,1325 +1,1338 @@ bin/okular include/okular/core/action.h include/okular/core/annotations.h include/okular/core/area.h include/okular/core/document.h include/okular/core/fileprinter.h include/okular/core/fontinfo.h include/okular/core/form.h include/okular/core/generator.h include/okular/core/global.h include/okular/core/observer.h include/okular/core/okularcore_export.h include/okular/core/page.h include/okular/core/pagesize.h include/okular/core/pagetransition.h include/okular/core/printoptionswidget.h include/okular/core/settings_core.h include/okular/core/signatureutils.h include/okular/core/sound.h include/okular/core/sourcereference.h include/okular/core/textdocumentgenerator.h include/okular/core/textdocumentsettings.h include/okular/core/textpage.h include/okular/core/tile.h include/okular/core/utils.h include/okular/core/version.h include/okular/interfaces/configinterface.h include/okular/interfaces/guiinterface.h include/okular/interfaces/printinterface.h include/okular/interfaces/saveinterface.h include/okular/interfaces/viewerinterface.h lib/cmake/Okular5/Okular5Config.cmake lib/cmake/Okular5/Okular5ConfigVersion.cmake lib/cmake/Okular5/Okular5Targets-%%CMAKE_BUILD_TYPE%%.cmake lib/cmake/Okular5/Okular5Targets.cmake lib/libOkular5Core.so lib/libOkular5Core.so.10 lib/libOkular5Core.so.10.0.0 %%QT_PLUGINDIR%%/kf5/kio/kio_msits.so %%QT_PLUGINDIR%%/okular/generators/okularGenerator_chmlib.so %%QT_PLUGINDIR%%/okular/generators/okularGenerator_comicbook.so %%QT_PLUGINDIR%%/okular/generators/okularGenerator_djvu.so %%QT_PLUGINDIR%%/okular/generators/okularGenerator_dvi.so %%QT_PLUGINDIR%%/okular/generators/okularGenerator_epub.so %%QT_PLUGINDIR%%/okular/generators/okularGenerator_fax.so %%QT_PLUGINDIR%%/okular/generators/okularGenerator_fb.so %%QT_PLUGINDIR%%/okular/generators/okularGenerator_ghostview.so %%QT_PLUGINDIR%%/okular/generators/okularGenerator_kimgio.so %%QT_PLUGINDIR%%/okular/generators/okularGenerator_md.so %%QT_PLUGINDIR%%/okular/generators/okularGenerator_mobi.so %%QT_PLUGINDIR%%/okular/generators/okularGenerator_plucker.so %%QT_PLUGINDIR%%/okular/generators/okularGenerator_poppler.so %%QT_PLUGINDIR%%/okular/generators/okularGenerator_tiff.so %%QT_PLUGINDIR%%/okular/generators/okularGenerator_txt.so %%QT_PLUGINDIR%%/okular/generators/okularGenerator_xps.so %%QT_PLUGINDIR%%/okularpart.so man/ca/man1/okular.1.gz man/de/man1/okular.1.gz man/es/man1/okular.1.gz man/et/man1/okular.1.gz man/fr/man1/okular.1.gz man/it/man1/okular.1.gz man/man1/okular.1.gz man/nl/man1/okular.1.gz man/pt/man1/okular.1.gz man/pt_BR/man1/okular.1.gz man/ru/man1/okular.1.gz man/sv/man1/okular.1.gz man/uk/man1/okular.1.gz share/applications/okularApplication_chm.desktop share/applications/okularApplication_comicbook.desktop share/applications/okularApplication_djvu.desktop share/applications/okularApplication_dvi.desktop share/applications/okularApplication_epub.desktop share/applications/okularApplication_fax.desktop share/applications/okularApplication_fb.desktop share/applications/okularApplication_ghostview.desktop share/applications/okularApplication_kimgio.desktop share/applications/okularApplication_md.desktop share/applications/okularApplication_mobi.desktop share/applications/okularApplication_pdf.desktop share/applications/okularApplication_plucker.desktop share/applications/okularApplication_tiff.desktop share/applications/okularApplication_txt.desktop share/applications/okularApplication_xps.desktop share/applications/org.kde.mobile.okular_chm.desktop share/applications/org.kde.mobile.okular_comicbook.desktop share/applications/org.kde.mobile.okular_djvu.desktop share/applications/org.kde.mobile.okular_dvi.desktop share/applications/org.kde.mobile.okular_epub.desktop share/applications/org.kde.mobile.okular_fax.desktop share/applications/org.kde.mobile.okular_fb.desktop share/applications/org.kde.mobile.okular_ghostview.desktop share/applications/org.kde.mobile.okular_kimgio.desktop share/applications/org.kde.mobile.okular_md.desktop share/applications/org.kde.mobile.okular_mobi.desktop share/applications/org.kde.mobile.okular_pdf.desktop share/applications/org.kde.mobile.okular_plucker.desktop share/applications/org.kde.mobile.okular_tiff.desktop share/applications/org.kde.mobile.okular_txt.desktop share/applications/org.kde.mobile.okular_xps.desktop share/applications/org.kde.okular.desktop share/config.kcfg/gssettings.kcfg share/config.kcfg/okular.kcfg share/config.kcfg/okular_core.kcfg share/config.kcfg/pdfsettings.kcfg share/icons/hicolor/128x128/apps/okular.png share/icons/hicolor/16x16/apps/okular.png share/icons/hicolor/22x22/apps/okular.png share/icons/hicolor/32x32/apps/okular.png share/icons/hicolor/48x48/apps/okular.png share/icons/hicolor/64x64/apps/okular.png share/kconf_update/okular.upd share/kservices5/okularChm.desktop share/kservices5/okularComicbook.desktop share/kservices5/okularDjvu.desktop share/kservices5/okularDvi.desktop share/kservices5/okularEPub.desktop share/kservices5/okularFax.desktop share/kservices5/okularFb.desktop share/kservices5/okularGhostview.desktop share/kservices5/okularKimgio.desktop share/kservices5/okularMd.desktop share/kservices5/okularMobi.desktop share/kservices5/okularPlucker.desktop share/kservices5/okularPoppler.desktop share/kservices5/okularTiff.desktop share/kservices5/okularTxt.desktop share/kservices5/okularXps.desktop share/kservices5/okular_part.desktop share/kservicetypes5/okularGenerator.desktop share/kxmlgui5/okular/part-viewermode.rc share/kxmlgui5/okular/part.rc share/kxmlgui5/okular/shell.rc share/locale/ar/LC_MESSAGES/okular.mo share/locale/ar/LC_MESSAGES/okular_chm.mo share/locale/ar/LC_MESSAGES/okular_comicbook.mo share/locale/ar/LC_MESSAGES/okular_djvu.mo share/locale/ar/LC_MESSAGES/okular_dvi.mo share/locale/ar/LC_MESSAGES/okular_epub.mo share/locale/ar/LC_MESSAGES/okular_fax.mo share/locale/ar/LC_MESSAGES/okular_fictionbook.mo share/locale/ar/LC_MESSAGES/okular_ghostview.mo share/locale/ar/LC_MESSAGES/okular_kimgio.mo share/locale/ar/LC_MESSAGES/okular_markdown.mo share/locale/ar/LC_MESSAGES/okular_mobi.mo share/locale/ar/LC_MESSAGES/okular_plucker.mo share/locale/ar/LC_MESSAGES/okular_poppler.mo share/locale/ar/LC_MESSAGES/okular_tiff.mo share/locale/ar/LC_MESSAGES/okular_txt.mo share/locale/ar/LC_MESSAGES/okular_xps.mo share/locale/ar/LC_MESSAGES/org.kde.active.documentviewer.mo share/locale/az/LC_MESSAGES/okular.mo share/locale/az/LC_MESSAGES/okular_chm.mo share/locale/az/LC_MESSAGES/okular_comicbook.mo share/locale/az/LC_MESSAGES/okular_djvu.mo share/locale/az/LC_MESSAGES/okular_dvi.mo share/locale/az/LC_MESSAGES/okular_epub.mo share/locale/az/LC_MESSAGES/okular_fax.mo share/locale/az/LC_MESSAGES/okular_fictionbook.mo share/locale/az/LC_MESSAGES/okular_ghostview.mo share/locale/az/LC_MESSAGES/okular_kimgio.mo share/locale/az/LC_MESSAGES/okular_markdown.mo share/locale/az/LC_MESSAGES/okular_mobi.mo share/locale/az/LC_MESSAGES/okular_plucker.mo share/locale/az/LC_MESSAGES/okular_poppler.mo share/locale/az/LC_MESSAGES/okular_tiff.mo share/locale/az/LC_MESSAGES/okular_txt.mo share/locale/az/LC_MESSAGES/okular_xps.mo share/locale/az/LC_MESSAGES/org.kde.active.documentviewer.mo share/locale/be/LC_MESSAGES/okular.mo share/locale/be/LC_MESSAGES/okular_chm.mo +share/locale/be/LC_MESSAGES/okular_comicbook.mo share/locale/be/LC_MESSAGES/okular_djvu.mo share/locale/be/LC_MESSAGES/okular_dvi.mo +share/locale/be/LC_MESSAGES/okular_epub.mo +share/locale/be/LC_MESSAGES/okular_fax.mo share/locale/be/LC_MESSAGES/okular_fictionbook.mo share/locale/be/LC_MESSAGES/okular_ghostview.mo share/locale/be/LC_MESSAGES/okular_kimgio.mo +share/locale/be/LC_MESSAGES/okular_markdown.mo +share/locale/be/LC_MESSAGES/okular_mobi.mo share/locale/be/LC_MESSAGES/okular_plucker.mo share/locale/be/LC_MESSAGES/okular_poppler.mo +share/locale/be/LC_MESSAGES/okular_tiff.mo +share/locale/be/LC_MESSAGES/okular_txt.mo share/locale/be/LC_MESSAGES/okular_xps.mo +share/locale/be/LC_MESSAGES/org.kde.active.documentviewer.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_markdown.mo share/locale/bg/LC_MESSAGES/okular_mobi.mo share/locale/bg/LC_MESSAGES/okular_plucker.mo share/locale/bg/LC_MESSAGES/okular_poppler.mo share/locale/bg/LC_MESSAGES/okular_tiff.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/br/LC_MESSAGES/okular.mo share/locale/bs/LC_MESSAGES/okular.mo share/locale/bs/LC_MESSAGES/okular_chm.mo share/locale/bs/LC_MESSAGES/okular_comicbook.mo share/locale/bs/LC_MESSAGES/okular_djvu.mo share/locale/bs/LC_MESSAGES/okular_dvi.mo share/locale/bs/LC_MESSAGES/okular_epub.mo share/locale/bs/LC_MESSAGES/okular_fax.mo share/locale/bs/LC_MESSAGES/okular_fictionbook.mo share/locale/bs/LC_MESSAGES/okular_ghostview.mo share/locale/bs/LC_MESSAGES/okular_kimgio.mo share/locale/bs/LC_MESSAGES/okular_mobi.mo share/locale/bs/LC_MESSAGES/okular_plucker.mo share/locale/bs/LC_MESSAGES/okular_poppler.mo share/locale/bs/LC_MESSAGES/okular_txt.mo share/locale/bs/LC_MESSAGES/okular_xps.mo share/locale/bs/LC_MESSAGES/org.kde.active.documentviewer.mo share/locale/ca/LC_MESSAGES/okular.mo share/locale/ca/LC_MESSAGES/okular_chm.mo share/locale/ca/LC_MESSAGES/okular_comicbook.mo share/locale/ca/LC_MESSAGES/okular_djvu.mo share/locale/ca/LC_MESSAGES/okular_dvi.mo share/locale/ca/LC_MESSAGES/okular_epub.mo share/locale/ca/LC_MESSAGES/okular_fax.mo share/locale/ca/LC_MESSAGES/okular_fictionbook.mo share/locale/ca/LC_MESSAGES/okular_ghostview.mo share/locale/ca/LC_MESSAGES/okular_kimgio.mo share/locale/ca/LC_MESSAGES/okular_markdown.mo share/locale/ca/LC_MESSAGES/okular_mobi.mo share/locale/ca/LC_MESSAGES/okular_plucker.mo share/locale/ca/LC_MESSAGES/okular_poppler.mo share/locale/ca/LC_MESSAGES/okular_tiff.mo share/locale/ca/LC_MESSAGES/okular_txt.mo share/locale/ca/LC_MESSAGES/okular_xps.mo share/locale/ca/LC_MESSAGES/org.kde.active.documentviewer.mo share/locale/ca@valencia/LC_MESSAGES/okular.mo share/locale/ca@valencia/LC_MESSAGES/okular_chm.mo share/locale/ca@valencia/LC_MESSAGES/okular_comicbook.mo share/locale/ca@valencia/LC_MESSAGES/okular_djvu.mo share/locale/ca@valencia/LC_MESSAGES/okular_dvi.mo share/locale/ca@valencia/LC_MESSAGES/okular_epub.mo share/locale/ca@valencia/LC_MESSAGES/okular_fax.mo share/locale/ca@valencia/LC_MESSAGES/okular_fictionbook.mo share/locale/ca@valencia/LC_MESSAGES/okular_ghostview.mo share/locale/ca@valencia/LC_MESSAGES/okular_kimgio.mo share/locale/ca@valencia/LC_MESSAGES/okular_markdown.mo share/locale/ca@valencia/LC_MESSAGES/okular_mobi.mo share/locale/ca@valencia/LC_MESSAGES/okular_plucker.mo share/locale/ca@valencia/LC_MESSAGES/okular_poppler.mo share/locale/ca@valencia/LC_MESSAGES/okular_tiff.mo share/locale/ca@valencia/LC_MESSAGES/okular_txt.mo share/locale/ca@valencia/LC_MESSAGES/okular_xps.mo share/locale/ca@valencia/LC_MESSAGES/org.kde.active.documentviewer.mo share/locale/cs/LC_MESSAGES/okular.mo share/locale/cs/LC_MESSAGES/okular_chm.mo share/locale/cs/LC_MESSAGES/okular_comicbook.mo share/locale/cs/LC_MESSAGES/okular_djvu.mo share/locale/cs/LC_MESSAGES/okular_dvi.mo share/locale/cs/LC_MESSAGES/okular_epub.mo share/locale/cs/LC_MESSAGES/okular_fax.mo share/locale/cs/LC_MESSAGES/okular_fictionbook.mo share/locale/cs/LC_MESSAGES/okular_ghostview.mo share/locale/cs/LC_MESSAGES/okular_kimgio.mo share/locale/cs/LC_MESSAGES/okular_markdown.mo share/locale/cs/LC_MESSAGES/okular_mobi.mo share/locale/cs/LC_MESSAGES/okular_plucker.mo share/locale/cs/LC_MESSAGES/okular_poppler.mo share/locale/cs/LC_MESSAGES/okular_tiff.mo share/locale/cs/LC_MESSAGES/okular_txt.mo share/locale/cs/LC_MESSAGES/okular_xps.mo share/locale/cs/LC_MESSAGES/org.kde.active.documentviewer.mo share/locale/cy/LC_MESSAGES/okular.mo share/locale/da/LC_MESSAGES/okular.mo share/locale/da/LC_MESSAGES/okular_chm.mo share/locale/da/LC_MESSAGES/okular_comicbook.mo share/locale/da/LC_MESSAGES/okular_djvu.mo share/locale/da/LC_MESSAGES/okular_dvi.mo share/locale/da/LC_MESSAGES/okular_epub.mo share/locale/da/LC_MESSAGES/okular_fax.mo share/locale/da/LC_MESSAGES/okular_fictionbook.mo share/locale/da/LC_MESSAGES/okular_ghostview.mo share/locale/da/LC_MESSAGES/okular_kimgio.mo share/locale/da/LC_MESSAGES/okular_markdown.mo share/locale/da/LC_MESSAGES/okular_mobi.mo share/locale/da/LC_MESSAGES/okular_plucker.mo share/locale/da/LC_MESSAGES/okular_poppler.mo share/locale/da/LC_MESSAGES/okular_txt.mo share/locale/da/LC_MESSAGES/okular_xps.mo share/locale/da/LC_MESSAGES/org.kde.active.documentviewer.mo share/locale/de/LC_MESSAGES/okular.mo share/locale/de/LC_MESSAGES/okular_chm.mo share/locale/de/LC_MESSAGES/okular_comicbook.mo share/locale/de/LC_MESSAGES/okular_djvu.mo share/locale/de/LC_MESSAGES/okular_dvi.mo share/locale/de/LC_MESSAGES/okular_epub.mo share/locale/de/LC_MESSAGES/okular_fax.mo share/locale/de/LC_MESSAGES/okular_fictionbook.mo share/locale/de/LC_MESSAGES/okular_ghostview.mo share/locale/de/LC_MESSAGES/okular_kimgio.mo share/locale/de/LC_MESSAGES/okular_markdown.mo share/locale/de/LC_MESSAGES/okular_mobi.mo share/locale/de/LC_MESSAGES/okular_plucker.mo share/locale/de/LC_MESSAGES/okular_poppler.mo share/locale/de/LC_MESSAGES/okular_tiff.mo share/locale/de/LC_MESSAGES/okular_txt.mo share/locale/de/LC_MESSAGES/okular_xps.mo share/locale/de/LC_MESSAGES/org.kde.active.documentviewer.mo share/locale/el/LC_MESSAGES/okular.mo share/locale/el/LC_MESSAGES/okular_chm.mo share/locale/el/LC_MESSAGES/okular_comicbook.mo share/locale/el/LC_MESSAGES/okular_djvu.mo share/locale/el/LC_MESSAGES/okular_dvi.mo share/locale/el/LC_MESSAGES/okular_epub.mo share/locale/el/LC_MESSAGES/okular_fax.mo share/locale/el/LC_MESSAGES/okular_fictionbook.mo share/locale/el/LC_MESSAGES/okular_ghostview.mo share/locale/el/LC_MESSAGES/okular_kimgio.mo share/locale/el/LC_MESSAGES/okular_markdown.mo share/locale/el/LC_MESSAGES/okular_mobi.mo share/locale/el/LC_MESSAGES/okular_plucker.mo share/locale/el/LC_MESSAGES/okular_poppler.mo share/locale/el/LC_MESSAGES/okular_tiff.mo share/locale/el/LC_MESSAGES/okular_txt.mo share/locale/el/LC_MESSAGES/okular_xps.mo share/locale/el/LC_MESSAGES/org.kde.active.documentviewer.mo share/locale/en_GB/LC_MESSAGES/okular.mo share/locale/en_GB/LC_MESSAGES/okular_chm.mo share/locale/en_GB/LC_MESSAGES/okular_comicbook.mo share/locale/en_GB/LC_MESSAGES/okular_djvu.mo share/locale/en_GB/LC_MESSAGES/okular_dvi.mo share/locale/en_GB/LC_MESSAGES/okular_epub.mo share/locale/en_GB/LC_MESSAGES/okular_fax.mo share/locale/en_GB/LC_MESSAGES/okular_fictionbook.mo share/locale/en_GB/LC_MESSAGES/okular_ghostview.mo share/locale/en_GB/LC_MESSAGES/okular_kimgio.mo share/locale/en_GB/LC_MESSAGES/okular_markdown.mo share/locale/en_GB/LC_MESSAGES/okular_mobi.mo share/locale/en_GB/LC_MESSAGES/okular_plucker.mo share/locale/en_GB/LC_MESSAGES/okular_poppler.mo share/locale/en_GB/LC_MESSAGES/okular_tiff.mo share/locale/en_GB/LC_MESSAGES/okular_txt.mo share/locale/en_GB/LC_MESSAGES/okular_xps.mo share/locale/en_GB/LC_MESSAGES/org.kde.active.documentviewer.mo share/locale/eo/LC_MESSAGES/okular.mo share/locale/eo/LC_MESSAGES/okular_chm.mo share/locale/eo/LC_MESSAGES/okular_comicbook.mo share/locale/eo/LC_MESSAGES/okular_djvu.mo share/locale/eo/LC_MESSAGES/okular_dvi.mo share/locale/eo/LC_MESSAGES/okular_epub.mo share/locale/eo/LC_MESSAGES/okular_fax.mo share/locale/eo/LC_MESSAGES/okular_fictionbook.mo share/locale/eo/LC_MESSAGES/okular_ghostview.mo share/locale/eo/LC_MESSAGES/okular_kimgio.mo +share/locale/eo/LC_MESSAGES/okular_markdown.mo share/locale/eo/LC_MESSAGES/okular_mobi.mo share/locale/eo/LC_MESSAGES/okular_plucker.mo share/locale/eo/LC_MESSAGES/okular_poppler.mo +share/locale/eo/LC_MESSAGES/okular_tiff.mo +share/locale/eo/LC_MESSAGES/okular_txt.mo share/locale/eo/LC_MESSAGES/okular_xps.mo +share/locale/eo/LC_MESSAGES/org.kde.active.documentviewer.mo share/locale/es/LC_MESSAGES/okular.mo share/locale/es/LC_MESSAGES/okular_chm.mo share/locale/es/LC_MESSAGES/okular_comicbook.mo share/locale/es/LC_MESSAGES/okular_djvu.mo share/locale/es/LC_MESSAGES/okular_dvi.mo share/locale/es/LC_MESSAGES/okular_epub.mo share/locale/es/LC_MESSAGES/okular_fax.mo share/locale/es/LC_MESSAGES/okular_fictionbook.mo share/locale/es/LC_MESSAGES/okular_ghostview.mo share/locale/es/LC_MESSAGES/okular_kimgio.mo share/locale/es/LC_MESSAGES/okular_markdown.mo share/locale/es/LC_MESSAGES/okular_mobi.mo share/locale/es/LC_MESSAGES/okular_plucker.mo share/locale/es/LC_MESSAGES/okular_poppler.mo share/locale/es/LC_MESSAGES/okular_tiff.mo share/locale/es/LC_MESSAGES/okular_txt.mo share/locale/es/LC_MESSAGES/okular_xps.mo share/locale/es/LC_MESSAGES/org.kde.active.documentviewer.mo share/locale/et/LC_MESSAGES/okular.mo share/locale/et/LC_MESSAGES/okular_chm.mo share/locale/et/LC_MESSAGES/okular_comicbook.mo share/locale/et/LC_MESSAGES/okular_djvu.mo share/locale/et/LC_MESSAGES/okular_dvi.mo share/locale/et/LC_MESSAGES/okular_epub.mo share/locale/et/LC_MESSAGES/okular_fax.mo share/locale/et/LC_MESSAGES/okular_fictionbook.mo share/locale/et/LC_MESSAGES/okular_ghostview.mo share/locale/et/LC_MESSAGES/okular_kimgio.mo share/locale/et/LC_MESSAGES/okular_markdown.mo share/locale/et/LC_MESSAGES/okular_mobi.mo share/locale/et/LC_MESSAGES/okular_plucker.mo share/locale/et/LC_MESSAGES/okular_poppler.mo share/locale/et/LC_MESSAGES/okular_txt.mo share/locale/et/LC_MESSAGES/okular_xps.mo share/locale/et/LC_MESSAGES/org.kde.active.documentviewer.mo share/locale/eu/LC_MESSAGES/okular.mo share/locale/eu/LC_MESSAGES/okular_chm.mo share/locale/eu/LC_MESSAGES/okular_comicbook.mo share/locale/eu/LC_MESSAGES/okular_djvu.mo share/locale/eu/LC_MESSAGES/okular_dvi.mo share/locale/eu/LC_MESSAGES/okular_epub.mo share/locale/eu/LC_MESSAGES/okular_fax.mo share/locale/eu/LC_MESSAGES/okular_fictionbook.mo share/locale/eu/LC_MESSAGES/okular_ghostview.mo share/locale/eu/LC_MESSAGES/okular_kimgio.mo share/locale/eu/LC_MESSAGES/okular_markdown.mo share/locale/eu/LC_MESSAGES/okular_mobi.mo share/locale/eu/LC_MESSAGES/okular_plucker.mo share/locale/eu/LC_MESSAGES/okular_poppler.mo share/locale/eu/LC_MESSAGES/okular_tiff.mo share/locale/eu/LC_MESSAGES/okular_txt.mo share/locale/eu/LC_MESSAGES/okular_xps.mo share/locale/eu/LC_MESSAGES/org.kde.active.documentviewer.mo share/locale/fa/LC_MESSAGES/okular.mo share/locale/fi/LC_MESSAGES/okular.mo share/locale/fi/LC_MESSAGES/okular_chm.mo share/locale/fi/LC_MESSAGES/okular_comicbook.mo share/locale/fi/LC_MESSAGES/okular_djvu.mo share/locale/fi/LC_MESSAGES/okular_dvi.mo share/locale/fi/LC_MESSAGES/okular_epub.mo share/locale/fi/LC_MESSAGES/okular_fax.mo share/locale/fi/LC_MESSAGES/okular_fictionbook.mo share/locale/fi/LC_MESSAGES/okular_ghostview.mo share/locale/fi/LC_MESSAGES/okular_kimgio.mo share/locale/fi/LC_MESSAGES/okular_markdown.mo share/locale/fi/LC_MESSAGES/okular_mobi.mo share/locale/fi/LC_MESSAGES/okular_plucker.mo share/locale/fi/LC_MESSAGES/okular_poppler.mo share/locale/fi/LC_MESSAGES/okular_tiff.mo share/locale/fi/LC_MESSAGES/okular_txt.mo share/locale/fi/LC_MESSAGES/okular_xps.mo share/locale/fi/LC_MESSAGES/org.kde.active.documentviewer.mo share/locale/fr/LC_MESSAGES/okular.mo share/locale/fr/LC_MESSAGES/okular_chm.mo share/locale/fr/LC_MESSAGES/okular_comicbook.mo share/locale/fr/LC_MESSAGES/okular_djvu.mo share/locale/fr/LC_MESSAGES/okular_dvi.mo share/locale/fr/LC_MESSAGES/okular_epub.mo share/locale/fr/LC_MESSAGES/okular_fax.mo share/locale/fr/LC_MESSAGES/okular_fictionbook.mo share/locale/fr/LC_MESSAGES/okular_ghostview.mo share/locale/fr/LC_MESSAGES/okular_kimgio.mo share/locale/fr/LC_MESSAGES/okular_markdown.mo share/locale/fr/LC_MESSAGES/okular_mobi.mo share/locale/fr/LC_MESSAGES/okular_plucker.mo share/locale/fr/LC_MESSAGES/okular_poppler.mo share/locale/fr/LC_MESSAGES/okular_tiff.mo share/locale/fr/LC_MESSAGES/okular_txt.mo share/locale/fr/LC_MESSAGES/okular_xps.mo share/locale/fr/LC_MESSAGES/org.kde.active.documentviewer.mo share/locale/fy/LC_MESSAGES/okular.mo share/locale/ga/LC_MESSAGES/okular.mo share/locale/ga/LC_MESSAGES/okular_chm.mo share/locale/ga/LC_MESSAGES/okular_comicbook.mo share/locale/ga/LC_MESSAGES/okular_djvu.mo share/locale/ga/LC_MESSAGES/okular_dvi.mo share/locale/ga/LC_MESSAGES/okular_epub.mo share/locale/ga/LC_MESSAGES/okular_fax.mo share/locale/ga/LC_MESSAGES/okular_fictionbook.mo share/locale/ga/LC_MESSAGES/okular_ghostview.mo share/locale/ga/LC_MESSAGES/okular_kimgio.mo share/locale/ga/LC_MESSAGES/okular_mobi.mo share/locale/ga/LC_MESSAGES/okular_plucker.mo share/locale/ga/LC_MESSAGES/okular_poppler.mo share/locale/ga/LC_MESSAGES/okular_xps.mo share/locale/ga/LC_MESSAGES/org.kde.active.documentviewer.mo share/locale/gl/LC_MESSAGES/okular.mo share/locale/gl/LC_MESSAGES/okular_chm.mo share/locale/gl/LC_MESSAGES/okular_comicbook.mo share/locale/gl/LC_MESSAGES/okular_djvu.mo share/locale/gl/LC_MESSAGES/okular_dvi.mo share/locale/gl/LC_MESSAGES/okular_epub.mo share/locale/gl/LC_MESSAGES/okular_fax.mo share/locale/gl/LC_MESSAGES/okular_fictionbook.mo share/locale/gl/LC_MESSAGES/okular_ghostview.mo share/locale/gl/LC_MESSAGES/okular_kimgio.mo share/locale/gl/LC_MESSAGES/okular_markdown.mo share/locale/gl/LC_MESSAGES/okular_mobi.mo share/locale/gl/LC_MESSAGES/okular_plucker.mo share/locale/gl/LC_MESSAGES/okular_poppler.mo +share/locale/gl/LC_MESSAGES/okular_tiff.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_comicbook.mo share/locale/hi/LC_MESSAGES/okular_djvu.mo share/locale/hi/LC_MESSAGES/okular_dvi.mo share/locale/hi/LC_MESSAGES/okular_epub.mo share/locale/hi/LC_MESSAGES/okular_fax.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_markdown.mo share/locale/hi/LC_MESSAGES/okular_mobi.mo share/locale/hi/LC_MESSAGES/okular_plucker.mo share/locale/hi/LC_MESSAGES/okular_poppler.mo share/locale/hi/LC_MESSAGES/okular_tiff.mo share/locale/hi/LC_MESSAGES/okular_txt.mo share/locale/hi/LC_MESSAGES/okular_xps.mo share/locale/hi/LC_MESSAGES/org.kde.active.documentviewer.mo share/locale/hne/LC_MESSAGES/okular.mo share/locale/hne/LC_MESSAGES/okular_chm.mo share/locale/hne/LC_MESSAGES/okular_djvu.mo share/locale/hne/LC_MESSAGES/okular_dvi.mo share/locale/hne/LC_MESSAGES/okular_fictionbook.mo share/locale/hne/LC_MESSAGES/okular_ghostview.mo share/locale/hne/LC_MESSAGES/okular_kimgio.mo share/locale/hne/LC_MESSAGES/okular_plucker.mo share/locale/hne/LC_MESSAGES/okular_poppler.mo share/locale/hne/LC_MESSAGES/okular_xps.mo share/locale/hr/LC_MESSAGES/okular.mo share/locale/hr/LC_MESSAGES/okular_chm.mo share/locale/hr/LC_MESSAGES/okular_comicbook.mo share/locale/hr/LC_MESSAGES/okular_djvu.mo share/locale/hr/LC_MESSAGES/okular_dvi.mo share/locale/hr/LC_MESSAGES/okular_epub.mo share/locale/hr/LC_MESSAGES/okular_fax.mo share/locale/hr/LC_MESSAGES/okular_fictionbook.mo share/locale/hr/LC_MESSAGES/okular_ghostview.mo share/locale/hr/LC_MESSAGES/okular_kimgio.mo share/locale/hr/LC_MESSAGES/okular_mobi.mo share/locale/hr/LC_MESSAGES/okular_plucker.mo share/locale/hr/LC_MESSAGES/okular_poppler.mo share/locale/hr/LC_MESSAGES/okular_xps.mo share/locale/hsb/LC_MESSAGES/okular.mo share/locale/hu/LC_MESSAGES/okular.mo share/locale/hu/LC_MESSAGES/okular_chm.mo share/locale/hu/LC_MESSAGES/okular_comicbook.mo share/locale/hu/LC_MESSAGES/okular_djvu.mo share/locale/hu/LC_MESSAGES/okular_dvi.mo share/locale/hu/LC_MESSAGES/okular_epub.mo share/locale/hu/LC_MESSAGES/okular_fax.mo share/locale/hu/LC_MESSAGES/okular_fictionbook.mo share/locale/hu/LC_MESSAGES/okular_ghostview.mo share/locale/hu/LC_MESSAGES/okular_kimgio.mo share/locale/hu/LC_MESSAGES/okular_markdown.mo share/locale/hu/LC_MESSAGES/okular_mobi.mo share/locale/hu/LC_MESSAGES/okular_plucker.mo share/locale/hu/LC_MESSAGES/okular_poppler.mo share/locale/hu/LC_MESSAGES/okular_tiff.mo share/locale/hu/LC_MESSAGES/okular_txt.mo share/locale/hu/LC_MESSAGES/okular_xps.mo share/locale/hu/LC_MESSAGES/org.kde.active.documentviewer.mo share/locale/ia/LC_MESSAGES/okular.mo share/locale/ia/LC_MESSAGES/okular_chm.mo share/locale/ia/LC_MESSAGES/okular_comicbook.mo share/locale/ia/LC_MESSAGES/okular_djvu.mo share/locale/ia/LC_MESSAGES/okular_dvi.mo share/locale/ia/LC_MESSAGES/okular_epub.mo share/locale/ia/LC_MESSAGES/okular_fax.mo share/locale/ia/LC_MESSAGES/okular_fictionbook.mo share/locale/ia/LC_MESSAGES/okular_ghostview.mo share/locale/ia/LC_MESSAGES/okular_kimgio.mo share/locale/ia/LC_MESSAGES/okular_markdown.mo share/locale/ia/LC_MESSAGES/okular_mobi.mo share/locale/ia/LC_MESSAGES/okular_plucker.mo share/locale/ia/LC_MESSAGES/okular_poppler.mo share/locale/ia/LC_MESSAGES/okular_tiff.mo share/locale/ia/LC_MESSAGES/okular_txt.mo share/locale/ia/LC_MESSAGES/okular_xps.mo share/locale/ia/LC_MESSAGES/org.kde.active.documentviewer.mo share/locale/id/LC_MESSAGES/okular.mo share/locale/ie/LC_MESSAGES/okular.mo share/locale/ie/LC_MESSAGES/okular_chm.mo share/locale/ie/LC_MESSAGES/okular_comicbook.mo share/locale/ie/LC_MESSAGES/okular_djvu.mo share/locale/ie/LC_MESSAGES/okular_epub.mo share/locale/ie/LC_MESSAGES/okular_fax.mo share/locale/ie/LC_MESSAGES/okular_fictionbook.mo share/locale/ie/LC_MESSAGES/okular_ghostview.mo share/locale/ie/LC_MESSAGES/okular_kimgio.mo share/locale/ie/LC_MESSAGES/okular_markdown.mo share/locale/ie/LC_MESSAGES/okular_mobi.mo share/locale/ie/LC_MESSAGES/okular_plucker.mo share/locale/ie/LC_MESSAGES/okular_txt.mo share/locale/ie/LC_MESSAGES/okular_xps.mo share/locale/is/LC_MESSAGES/okular.mo share/locale/is/LC_MESSAGES/okular_chm.mo share/locale/is/LC_MESSAGES/okular_comicbook.mo share/locale/is/LC_MESSAGES/okular_djvu.mo share/locale/is/LC_MESSAGES/okular_dvi.mo share/locale/is/LC_MESSAGES/okular_epub.mo share/locale/is/LC_MESSAGES/okular_fax.mo share/locale/is/LC_MESSAGES/okular_fictionbook.mo share/locale/is/LC_MESSAGES/okular_ghostview.mo share/locale/is/LC_MESSAGES/okular_kimgio.mo share/locale/is/LC_MESSAGES/okular_mobi.mo share/locale/is/LC_MESSAGES/okular_plucker.mo share/locale/is/LC_MESSAGES/okular_poppler.mo share/locale/is/LC_MESSAGES/okular_xps.mo share/locale/is/LC_MESSAGES/org.kde.active.documentviewer.mo share/locale/it/LC_MESSAGES/okular.mo share/locale/it/LC_MESSAGES/okular_chm.mo share/locale/it/LC_MESSAGES/okular_comicbook.mo share/locale/it/LC_MESSAGES/okular_djvu.mo share/locale/it/LC_MESSAGES/okular_dvi.mo share/locale/it/LC_MESSAGES/okular_epub.mo share/locale/it/LC_MESSAGES/okular_fax.mo share/locale/it/LC_MESSAGES/okular_fictionbook.mo share/locale/it/LC_MESSAGES/okular_ghostview.mo share/locale/it/LC_MESSAGES/okular_kimgio.mo share/locale/it/LC_MESSAGES/okular_markdown.mo share/locale/it/LC_MESSAGES/okular_mobi.mo share/locale/it/LC_MESSAGES/okular_plucker.mo share/locale/it/LC_MESSAGES/okular_poppler.mo share/locale/it/LC_MESSAGES/okular_tiff.mo share/locale/it/LC_MESSAGES/okular_txt.mo share/locale/it/LC_MESSAGES/okular_xps.mo share/locale/it/LC_MESSAGES/org.kde.active.documentviewer.mo share/locale/ja/LC_MESSAGES/okular.mo share/locale/ja/LC_MESSAGES/okular_chm.mo share/locale/ja/LC_MESSAGES/okular_comicbook.mo share/locale/ja/LC_MESSAGES/okular_djvu.mo share/locale/ja/LC_MESSAGES/okular_dvi.mo share/locale/ja/LC_MESSAGES/okular_epub.mo share/locale/ja/LC_MESSAGES/okular_fax.mo share/locale/ja/LC_MESSAGES/okular_fictionbook.mo share/locale/ja/LC_MESSAGES/okular_ghostview.mo share/locale/ja/LC_MESSAGES/okular_kimgio.mo share/locale/ja/LC_MESSAGES/okular_markdown.mo share/locale/ja/LC_MESSAGES/okular_mobi.mo share/locale/ja/LC_MESSAGES/okular_plucker.mo share/locale/ja/LC_MESSAGES/okular_poppler.mo share/locale/ja/LC_MESSAGES/okular_tiff.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/ka/LC_MESSAGES/okular.mo share/locale/ka/LC_MESSAGES/okular_chm.mo share/locale/ka/LC_MESSAGES/okular_comicbook.mo share/locale/ka/LC_MESSAGES/okular_djvu.mo share/locale/ka/LC_MESSAGES/okular_dvi.mo share/locale/ka/LC_MESSAGES/okular_epub.mo share/locale/ka/LC_MESSAGES/okular_fax.mo share/locale/ka/LC_MESSAGES/okular_fictionbook.mo share/locale/ka/LC_MESSAGES/okular_ghostview.mo share/locale/ka/LC_MESSAGES/okular_kimgio.mo share/locale/ka/LC_MESSAGES/okular_markdown.mo share/locale/ka/LC_MESSAGES/okular_mobi.mo share/locale/ka/LC_MESSAGES/okular_plucker.mo share/locale/ka/LC_MESSAGES/okular_poppler.mo share/locale/ka/LC_MESSAGES/okular_tiff.mo share/locale/ka/LC_MESSAGES/okular_txt.mo share/locale/ka/LC_MESSAGES/okular_xps.mo share/locale/ka/LC_MESSAGES/org.kde.active.documentviewer.mo share/locale/kk/LC_MESSAGES/okular.mo share/locale/kk/LC_MESSAGES/okular_chm.mo share/locale/kk/LC_MESSAGES/okular_comicbook.mo share/locale/kk/LC_MESSAGES/okular_djvu.mo share/locale/kk/LC_MESSAGES/okular_dvi.mo share/locale/kk/LC_MESSAGES/okular_epub.mo share/locale/kk/LC_MESSAGES/okular_fax.mo share/locale/kk/LC_MESSAGES/okular_fictionbook.mo share/locale/kk/LC_MESSAGES/okular_ghostview.mo share/locale/kk/LC_MESSAGES/okular_kimgio.mo share/locale/kk/LC_MESSAGES/okular_mobi.mo share/locale/kk/LC_MESSAGES/okular_plucker.mo share/locale/kk/LC_MESSAGES/okular_poppler.mo share/locale/kk/LC_MESSAGES/okular_txt.mo share/locale/kk/LC_MESSAGES/okular_xps.mo share/locale/kk/LC_MESSAGES/org.kde.active.documentviewer.mo share/locale/km/LC_MESSAGES/okular.mo share/locale/km/LC_MESSAGES/okular_chm.mo share/locale/km/LC_MESSAGES/okular_comicbook.mo share/locale/km/LC_MESSAGES/okular_djvu.mo share/locale/km/LC_MESSAGES/okular_dvi.mo share/locale/km/LC_MESSAGES/okular_epub.mo share/locale/km/LC_MESSAGES/okular_fax.mo share/locale/km/LC_MESSAGES/okular_fictionbook.mo share/locale/km/LC_MESSAGES/okular_ghostview.mo share/locale/km/LC_MESSAGES/okular_kimgio.mo share/locale/km/LC_MESSAGES/okular_mobi.mo share/locale/km/LC_MESSAGES/okular_plucker.mo share/locale/km/LC_MESSAGES/okular_poppler.mo share/locale/km/LC_MESSAGES/okular_xps.mo share/locale/ko/LC_MESSAGES/okular.mo share/locale/ko/LC_MESSAGES/okular_chm.mo share/locale/ko/LC_MESSAGES/okular_comicbook.mo share/locale/ko/LC_MESSAGES/okular_djvu.mo share/locale/ko/LC_MESSAGES/okular_dvi.mo share/locale/ko/LC_MESSAGES/okular_epub.mo share/locale/ko/LC_MESSAGES/okular_fax.mo share/locale/ko/LC_MESSAGES/okular_fictionbook.mo share/locale/ko/LC_MESSAGES/okular_ghostview.mo share/locale/ko/LC_MESSAGES/okular_kimgio.mo share/locale/ko/LC_MESSAGES/okular_markdown.mo share/locale/ko/LC_MESSAGES/okular_mobi.mo share/locale/ko/LC_MESSAGES/okular_plucker.mo share/locale/ko/LC_MESSAGES/okular_poppler.mo share/locale/ko/LC_MESSAGES/okular_tiff.mo share/locale/ko/LC_MESSAGES/okular_txt.mo share/locale/ko/LC_MESSAGES/okular_xps.mo share/locale/ko/LC_MESSAGES/org.kde.active.documentviewer.mo share/locale/ku/LC_MESSAGES/okular.mo share/locale/ku/LC_MESSAGES/okular_chm.mo share/locale/ku/LC_MESSAGES/okular_comicbook.mo share/locale/ku/LC_MESSAGES/okular_djvu.mo share/locale/ku/LC_MESSAGES/okular_epub.mo share/locale/ku/LC_MESSAGES/okular_fax.mo share/locale/ku/LC_MESSAGES/okular_fictionbook.mo share/locale/ku/LC_MESSAGES/okular_ghostview.mo share/locale/ku/LC_MESSAGES/okular_kimgio.mo share/locale/ku/LC_MESSAGES/okular_plucker.mo share/locale/ku/LC_MESSAGES/okular_xps.mo share/locale/lt/LC_MESSAGES/okular.mo share/locale/lt/LC_MESSAGES/okular_chm.mo share/locale/lt/LC_MESSAGES/okular_comicbook.mo share/locale/lt/LC_MESSAGES/okular_djvu.mo share/locale/lt/LC_MESSAGES/okular_dvi.mo share/locale/lt/LC_MESSAGES/okular_epub.mo share/locale/lt/LC_MESSAGES/okular_fax.mo share/locale/lt/LC_MESSAGES/okular_fictionbook.mo share/locale/lt/LC_MESSAGES/okular_ghostview.mo share/locale/lt/LC_MESSAGES/okular_kimgio.mo share/locale/lt/LC_MESSAGES/okular_markdown.mo share/locale/lt/LC_MESSAGES/okular_mobi.mo share/locale/lt/LC_MESSAGES/okular_plucker.mo share/locale/lt/LC_MESSAGES/okular_poppler.mo share/locale/lt/LC_MESSAGES/okular_tiff.mo share/locale/lt/LC_MESSAGES/okular_txt.mo share/locale/lt/LC_MESSAGES/okular_xps.mo share/locale/lt/LC_MESSAGES/org.kde.active.documentviewer.mo share/locale/lv/LC_MESSAGES/okular.mo share/locale/lv/LC_MESSAGES/okular_chm.mo share/locale/lv/LC_MESSAGES/okular_comicbook.mo share/locale/lv/LC_MESSAGES/okular_djvu.mo share/locale/lv/LC_MESSAGES/okular_dvi.mo share/locale/lv/LC_MESSAGES/okular_epub.mo share/locale/lv/LC_MESSAGES/okular_fax.mo share/locale/lv/LC_MESSAGES/okular_fictionbook.mo share/locale/lv/LC_MESSAGES/okular_ghostview.mo share/locale/lv/LC_MESSAGES/okular_kimgio.mo share/locale/lv/LC_MESSAGES/okular_mobi.mo share/locale/lv/LC_MESSAGES/okular_plucker.mo share/locale/lv/LC_MESSAGES/okular_poppler.mo share/locale/lv/LC_MESSAGES/okular_xps.mo share/locale/mk/LC_MESSAGES/okular.mo share/locale/mk/LC_MESSAGES/okular_chm.mo share/locale/mk/LC_MESSAGES/okular_djvu.mo share/locale/mk/LC_MESSAGES/okular_fictionbook.mo share/locale/mk/LC_MESSAGES/okular_ghostview.mo share/locale/mk/LC_MESSAGES/okular_kimgio.mo share/locale/mk/LC_MESSAGES/okular_plucker.mo share/locale/mk/LC_MESSAGES/okular_poppler.mo share/locale/mk/LC_MESSAGES/okular_xps.mo share/locale/ml/LC_MESSAGES/okular.mo share/locale/ml/LC_MESSAGES/okular_chm.mo share/locale/ml/LC_MESSAGES/okular_comicbook.mo share/locale/ml/LC_MESSAGES/okular_djvu.mo share/locale/ml/LC_MESSAGES/okular_dvi.mo share/locale/ml/LC_MESSAGES/okular_epub.mo share/locale/ml/LC_MESSAGES/okular_fax.mo share/locale/ml/LC_MESSAGES/okular_fictionbook.mo share/locale/ml/LC_MESSAGES/okular_ghostview.mo share/locale/ml/LC_MESSAGES/okular_kimgio.mo share/locale/ml/LC_MESSAGES/okular_markdown.mo share/locale/ml/LC_MESSAGES/okular_mobi.mo share/locale/ml/LC_MESSAGES/okular_plucker.mo share/locale/ml/LC_MESSAGES/okular_poppler.mo share/locale/ml/LC_MESSAGES/okular_txt.mo share/locale/ml/LC_MESSAGES/okular_xps.mo share/locale/ml/LC_MESSAGES/org.kde.active.documentviewer.mo share/locale/mr/LC_MESSAGES/okular.mo share/locale/mr/LC_MESSAGES/okular_chm.mo share/locale/mr/LC_MESSAGES/okular_comicbook.mo share/locale/mr/LC_MESSAGES/okular_djvu.mo share/locale/mr/LC_MESSAGES/okular_dvi.mo share/locale/mr/LC_MESSAGES/okular_epub.mo share/locale/mr/LC_MESSAGES/okular_fax.mo share/locale/mr/LC_MESSAGES/okular_fictionbook.mo share/locale/mr/LC_MESSAGES/okular_ghostview.mo share/locale/mr/LC_MESSAGES/okular_kimgio.mo share/locale/mr/LC_MESSAGES/okular_mobi.mo share/locale/mr/LC_MESSAGES/okular_plucker.mo share/locale/mr/LC_MESSAGES/okular_poppler.mo share/locale/mr/LC_MESSAGES/okular_xps.mo share/locale/mr/LC_MESSAGES/org.kde.active.documentviewer.mo share/locale/ms/LC_MESSAGES/okular.mo share/locale/nb/LC_MESSAGES/okular.mo share/locale/nb/LC_MESSAGES/okular_chm.mo share/locale/nb/LC_MESSAGES/okular_comicbook.mo share/locale/nb/LC_MESSAGES/okular_djvu.mo share/locale/nb/LC_MESSAGES/okular_dvi.mo share/locale/nb/LC_MESSAGES/okular_epub.mo share/locale/nb/LC_MESSAGES/okular_fax.mo share/locale/nb/LC_MESSAGES/okular_fictionbook.mo share/locale/nb/LC_MESSAGES/okular_ghostview.mo share/locale/nb/LC_MESSAGES/okular_kimgio.mo share/locale/nb/LC_MESSAGES/okular_mobi.mo share/locale/nb/LC_MESSAGES/okular_plucker.mo share/locale/nb/LC_MESSAGES/okular_poppler.mo share/locale/nb/LC_MESSAGES/okular_txt.mo share/locale/nb/LC_MESSAGES/okular_xps.mo share/locale/nb/LC_MESSAGES/org.kde.active.documentviewer.mo share/locale/nds/LC_MESSAGES/okular.mo share/locale/nds/LC_MESSAGES/okular_chm.mo share/locale/nds/LC_MESSAGES/okular_comicbook.mo share/locale/nds/LC_MESSAGES/okular_djvu.mo share/locale/nds/LC_MESSAGES/okular_dvi.mo share/locale/nds/LC_MESSAGES/okular_epub.mo share/locale/nds/LC_MESSAGES/okular_fax.mo share/locale/nds/LC_MESSAGES/okular_fictionbook.mo share/locale/nds/LC_MESSAGES/okular_ghostview.mo share/locale/nds/LC_MESSAGES/okular_kimgio.mo share/locale/nds/LC_MESSAGES/okular_mobi.mo share/locale/nds/LC_MESSAGES/okular_plucker.mo share/locale/nds/LC_MESSAGES/okular_poppler.mo share/locale/nds/LC_MESSAGES/okular_txt.mo share/locale/nds/LC_MESSAGES/okular_xps.mo share/locale/nds/LC_MESSAGES/org.kde.active.documentviewer.mo share/locale/ne/LC_MESSAGES/okular.mo share/locale/nl/LC_MESSAGES/okular.mo share/locale/nl/LC_MESSAGES/okular_chm.mo share/locale/nl/LC_MESSAGES/okular_comicbook.mo share/locale/nl/LC_MESSAGES/okular_djvu.mo share/locale/nl/LC_MESSAGES/okular_dvi.mo share/locale/nl/LC_MESSAGES/okular_epub.mo share/locale/nl/LC_MESSAGES/okular_fax.mo share/locale/nl/LC_MESSAGES/okular_fictionbook.mo share/locale/nl/LC_MESSAGES/okular_ghostview.mo share/locale/nl/LC_MESSAGES/okular_kimgio.mo share/locale/nl/LC_MESSAGES/okular_markdown.mo share/locale/nl/LC_MESSAGES/okular_mobi.mo share/locale/nl/LC_MESSAGES/okular_plucker.mo share/locale/nl/LC_MESSAGES/okular_poppler.mo share/locale/nl/LC_MESSAGES/okular_tiff.mo share/locale/nl/LC_MESSAGES/okular_txt.mo share/locale/nl/LC_MESSAGES/okular_xps.mo share/locale/nl/LC_MESSAGES/org.kde.active.documentviewer.mo share/locale/nn/LC_MESSAGES/okular.mo share/locale/nn/LC_MESSAGES/okular_chm.mo share/locale/nn/LC_MESSAGES/okular_comicbook.mo share/locale/nn/LC_MESSAGES/okular_djvu.mo share/locale/nn/LC_MESSAGES/okular_dvi.mo share/locale/nn/LC_MESSAGES/okular_epub.mo share/locale/nn/LC_MESSAGES/okular_fax.mo share/locale/nn/LC_MESSAGES/okular_fictionbook.mo share/locale/nn/LC_MESSAGES/okular_ghostview.mo share/locale/nn/LC_MESSAGES/okular_kimgio.mo share/locale/nn/LC_MESSAGES/okular_markdown.mo share/locale/nn/LC_MESSAGES/okular_mobi.mo share/locale/nn/LC_MESSAGES/okular_plucker.mo share/locale/nn/LC_MESSAGES/okular_poppler.mo share/locale/nn/LC_MESSAGES/okular_tiff.mo share/locale/nn/LC_MESSAGES/okular_txt.mo share/locale/nn/LC_MESSAGES/okular_xps.mo share/locale/nn/LC_MESSAGES/org.kde.active.documentviewer.mo share/locale/oc/LC_MESSAGES/okular.mo share/locale/oc/LC_MESSAGES/okular_chm.mo share/locale/oc/LC_MESSAGES/okular_djvu.mo share/locale/oc/LC_MESSAGES/okular_dvi.mo share/locale/oc/LC_MESSAGES/okular_fictionbook.mo share/locale/oc/LC_MESSAGES/okular_ghostview.mo share/locale/oc/LC_MESSAGES/okular_kimgio.mo share/locale/oc/LC_MESSAGES/okular_plucker.mo share/locale/oc/LC_MESSAGES/okular_poppler.mo share/locale/oc/LC_MESSAGES/okular_xps.mo share/locale/pa/LC_MESSAGES/okular.mo share/locale/pa/LC_MESSAGES/okular_chm.mo share/locale/pa/LC_MESSAGES/okular_comicbook.mo share/locale/pa/LC_MESSAGES/okular_djvu.mo share/locale/pa/LC_MESSAGES/okular_dvi.mo share/locale/pa/LC_MESSAGES/okular_epub.mo share/locale/pa/LC_MESSAGES/okular_fax.mo share/locale/pa/LC_MESSAGES/okular_fictionbook.mo share/locale/pa/LC_MESSAGES/okular_ghostview.mo share/locale/pa/LC_MESSAGES/okular_kimgio.mo share/locale/pa/LC_MESSAGES/okular_mobi.mo share/locale/pa/LC_MESSAGES/okular_plucker.mo share/locale/pa/LC_MESSAGES/okular_poppler.mo share/locale/pa/LC_MESSAGES/okular_txt.mo share/locale/pa/LC_MESSAGES/okular_xps.mo share/locale/pa/LC_MESSAGES/org.kde.active.documentviewer.mo share/locale/pl/LC_MESSAGES/okular.mo share/locale/pl/LC_MESSAGES/okular_chm.mo share/locale/pl/LC_MESSAGES/okular_comicbook.mo share/locale/pl/LC_MESSAGES/okular_djvu.mo share/locale/pl/LC_MESSAGES/okular_dvi.mo share/locale/pl/LC_MESSAGES/okular_epub.mo share/locale/pl/LC_MESSAGES/okular_fax.mo share/locale/pl/LC_MESSAGES/okular_fictionbook.mo share/locale/pl/LC_MESSAGES/okular_ghostview.mo share/locale/pl/LC_MESSAGES/okular_kimgio.mo share/locale/pl/LC_MESSAGES/okular_markdown.mo share/locale/pl/LC_MESSAGES/okular_mobi.mo share/locale/pl/LC_MESSAGES/okular_plucker.mo share/locale/pl/LC_MESSAGES/okular_poppler.mo share/locale/pl/LC_MESSAGES/okular_tiff.mo share/locale/pl/LC_MESSAGES/okular_txt.mo share/locale/pl/LC_MESSAGES/okular_xps.mo share/locale/pl/LC_MESSAGES/org.kde.active.documentviewer.mo share/locale/pt/LC_MESSAGES/okular.mo share/locale/pt/LC_MESSAGES/okular_chm.mo share/locale/pt/LC_MESSAGES/okular_comicbook.mo share/locale/pt/LC_MESSAGES/okular_djvu.mo share/locale/pt/LC_MESSAGES/okular_dvi.mo share/locale/pt/LC_MESSAGES/okular_epub.mo share/locale/pt/LC_MESSAGES/okular_fax.mo share/locale/pt/LC_MESSAGES/okular_fictionbook.mo share/locale/pt/LC_MESSAGES/okular_ghostview.mo share/locale/pt/LC_MESSAGES/okular_kimgio.mo share/locale/pt/LC_MESSAGES/okular_markdown.mo share/locale/pt/LC_MESSAGES/okular_mobi.mo share/locale/pt/LC_MESSAGES/okular_plucker.mo share/locale/pt/LC_MESSAGES/okular_poppler.mo share/locale/pt/LC_MESSAGES/okular_tiff.mo share/locale/pt/LC_MESSAGES/okular_txt.mo share/locale/pt/LC_MESSAGES/okular_xps.mo share/locale/pt/LC_MESSAGES/org.kde.active.documentviewer.mo share/locale/pt_BR/LC_MESSAGES/okular.mo share/locale/pt_BR/LC_MESSAGES/okular_chm.mo share/locale/pt_BR/LC_MESSAGES/okular_comicbook.mo share/locale/pt_BR/LC_MESSAGES/okular_djvu.mo share/locale/pt_BR/LC_MESSAGES/okular_dvi.mo share/locale/pt_BR/LC_MESSAGES/okular_epub.mo share/locale/pt_BR/LC_MESSAGES/okular_fax.mo share/locale/pt_BR/LC_MESSAGES/okular_fictionbook.mo share/locale/pt_BR/LC_MESSAGES/okular_ghostview.mo share/locale/pt_BR/LC_MESSAGES/okular_kimgio.mo share/locale/pt_BR/LC_MESSAGES/okular_markdown.mo share/locale/pt_BR/LC_MESSAGES/okular_mobi.mo share/locale/pt_BR/LC_MESSAGES/okular_plucker.mo share/locale/pt_BR/LC_MESSAGES/okular_poppler.mo share/locale/pt_BR/LC_MESSAGES/okular_tiff.mo share/locale/pt_BR/LC_MESSAGES/okular_txt.mo share/locale/pt_BR/LC_MESSAGES/okular_xps.mo share/locale/pt_BR/LC_MESSAGES/org.kde.active.documentviewer.mo share/locale/ro/LC_MESSAGES/okular.mo share/locale/ro/LC_MESSAGES/okular_chm.mo share/locale/ro/LC_MESSAGES/okular_comicbook.mo share/locale/ro/LC_MESSAGES/okular_djvu.mo share/locale/ro/LC_MESSAGES/okular_dvi.mo share/locale/ro/LC_MESSAGES/okular_epub.mo share/locale/ro/LC_MESSAGES/okular_fax.mo share/locale/ro/LC_MESSAGES/okular_fictionbook.mo share/locale/ro/LC_MESSAGES/okular_ghostview.mo share/locale/ro/LC_MESSAGES/okular_kimgio.mo share/locale/ro/LC_MESSAGES/okular_markdown.mo share/locale/ro/LC_MESSAGES/okular_mobi.mo share/locale/ro/LC_MESSAGES/okular_plucker.mo share/locale/ro/LC_MESSAGES/okular_poppler.mo share/locale/ro/LC_MESSAGES/okular_tiff.mo share/locale/ro/LC_MESSAGES/okular_txt.mo share/locale/ro/LC_MESSAGES/okular_xps.mo share/locale/ro/LC_MESSAGES/org.kde.active.documentviewer.mo share/locale/ru/LC_MESSAGES/okular.mo share/locale/ru/LC_MESSAGES/okular_chm.mo share/locale/ru/LC_MESSAGES/okular_comicbook.mo share/locale/ru/LC_MESSAGES/okular_djvu.mo share/locale/ru/LC_MESSAGES/okular_dvi.mo share/locale/ru/LC_MESSAGES/okular_epub.mo share/locale/ru/LC_MESSAGES/okular_fax.mo share/locale/ru/LC_MESSAGES/okular_fictionbook.mo share/locale/ru/LC_MESSAGES/okular_ghostview.mo share/locale/ru/LC_MESSAGES/okular_kimgio.mo share/locale/ru/LC_MESSAGES/okular_markdown.mo share/locale/ru/LC_MESSAGES/okular_mobi.mo share/locale/ru/LC_MESSAGES/okular_plucker.mo share/locale/ru/LC_MESSAGES/okular_poppler.mo share/locale/ru/LC_MESSAGES/okular_tiff.mo share/locale/ru/LC_MESSAGES/okular_txt.mo share/locale/ru/LC_MESSAGES/okular_xps.mo share/locale/ru/LC_MESSAGES/org.kde.active.documentviewer.mo share/locale/se/LC_MESSAGES/okular.mo share/locale/se/LC_MESSAGES/okular_chm.mo share/locale/se/LC_MESSAGES/okular_djvu.mo share/locale/se/LC_MESSAGES/okular_dvi.mo share/locale/se/LC_MESSAGES/okular_fictionbook.mo share/locale/se/LC_MESSAGES/okular_ghostview.mo share/locale/se/LC_MESSAGES/okular_kimgio.mo share/locale/se/LC_MESSAGES/okular_plucker.mo share/locale/se/LC_MESSAGES/okular_poppler.mo share/locale/se/LC_MESSAGES/okular_xps.mo share/locale/si/LC_MESSAGES/okular.mo share/locale/si/LC_MESSAGES/okular_chm.mo share/locale/si/LC_MESSAGES/okular_comicbook.mo share/locale/si/LC_MESSAGES/okular_djvu.mo share/locale/si/LC_MESSAGES/okular_dvi.mo share/locale/si/LC_MESSAGES/okular_epub.mo share/locale/si/LC_MESSAGES/okular_fax.mo share/locale/si/LC_MESSAGES/okular_fictionbook.mo share/locale/si/LC_MESSAGES/okular_ghostview.mo share/locale/si/LC_MESSAGES/okular_kimgio.mo share/locale/si/LC_MESSAGES/okular_mobi.mo share/locale/si/LC_MESSAGES/okular_plucker.mo share/locale/si/LC_MESSAGES/okular_poppler.mo share/locale/si/LC_MESSAGES/okular_xps.mo share/locale/sk/LC_MESSAGES/okular.mo share/locale/sk/LC_MESSAGES/okular_chm.mo share/locale/sk/LC_MESSAGES/okular_comicbook.mo share/locale/sk/LC_MESSAGES/okular_djvu.mo share/locale/sk/LC_MESSAGES/okular_dvi.mo share/locale/sk/LC_MESSAGES/okular_epub.mo share/locale/sk/LC_MESSAGES/okular_fax.mo share/locale/sk/LC_MESSAGES/okular_fictionbook.mo share/locale/sk/LC_MESSAGES/okular_ghostview.mo share/locale/sk/LC_MESSAGES/okular_kimgio.mo share/locale/sk/LC_MESSAGES/okular_markdown.mo share/locale/sk/LC_MESSAGES/okular_mobi.mo share/locale/sk/LC_MESSAGES/okular_plucker.mo share/locale/sk/LC_MESSAGES/okular_poppler.mo share/locale/sk/LC_MESSAGES/okular_tiff.mo share/locale/sk/LC_MESSAGES/okular_txt.mo share/locale/sk/LC_MESSAGES/okular_xps.mo share/locale/sk/LC_MESSAGES/org.kde.active.documentviewer.mo share/locale/sl/LC_MESSAGES/okular.mo share/locale/sl/LC_MESSAGES/okular_chm.mo share/locale/sl/LC_MESSAGES/okular_comicbook.mo share/locale/sl/LC_MESSAGES/okular_djvu.mo share/locale/sl/LC_MESSAGES/okular_dvi.mo share/locale/sl/LC_MESSAGES/okular_epub.mo share/locale/sl/LC_MESSAGES/okular_fax.mo share/locale/sl/LC_MESSAGES/okular_fictionbook.mo share/locale/sl/LC_MESSAGES/okular_ghostview.mo share/locale/sl/LC_MESSAGES/okular_kimgio.mo share/locale/sl/LC_MESSAGES/okular_markdown.mo share/locale/sl/LC_MESSAGES/okular_mobi.mo share/locale/sl/LC_MESSAGES/okular_plucker.mo share/locale/sl/LC_MESSAGES/okular_poppler.mo share/locale/sl/LC_MESSAGES/okular_tiff.mo share/locale/sl/LC_MESSAGES/okular_txt.mo share/locale/sl/LC_MESSAGES/okular_xps.mo share/locale/sl/LC_MESSAGES/org.kde.active.documentviewer.mo share/locale/sq/LC_MESSAGES/okular_chm.mo share/locale/sq/LC_MESSAGES/okular_comicbook.mo share/locale/sq/LC_MESSAGES/okular_djvu.mo share/locale/sq/LC_MESSAGES/okular_dvi.mo share/locale/sq/LC_MESSAGES/okular_epub.mo share/locale/sq/LC_MESSAGES/okular_fax.mo share/locale/sq/LC_MESSAGES/okular_fictionbook.mo share/locale/sq/LC_MESSAGES/okular_ghostview.mo share/locale/sq/LC_MESSAGES/okular_kimgio.mo share/locale/sq/LC_MESSAGES/okular_mobi.mo share/locale/sq/LC_MESSAGES/okular_plucker.mo share/locale/sq/LC_MESSAGES/okular_poppler.mo share/locale/sq/LC_MESSAGES/okular_xps.mo share/locale/sr/LC_MESSAGES/okular.mo share/locale/sr/LC_MESSAGES/okular_chm.mo share/locale/sr/LC_MESSAGES/okular_comicbook.mo share/locale/sr/LC_MESSAGES/okular_djvu.mo share/locale/sr/LC_MESSAGES/okular_dvi.mo share/locale/sr/LC_MESSAGES/okular_epub.mo share/locale/sr/LC_MESSAGES/okular_fax.mo share/locale/sr/LC_MESSAGES/okular_fictionbook.mo share/locale/sr/LC_MESSAGES/okular_ghostview.mo share/locale/sr/LC_MESSAGES/okular_kimgio.mo share/locale/sr/LC_MESSAGES/okular_markdown.mo share/locale/sr/LC_MESSAGES/okular_mobi.mo share/locale/sr/LC_MESSAGES/okular_plucker.mo share/locale/sr/LC_MESSAGES/okular_poppler.mo share/locale/sr/LC_MESSAGES/okular_txt.mo share/locale/sr/LC_MESSAGES/okular_xps.mo share/locale/sr@ijekavian/LC_MESSAGES/okular.mo share/locale/sr@ijekavian/LC_MESSAGES/okular_chm.mo share/locale/sr@ijekavian/LC_MESSAGES/okular_comicbook.mo share/locale/sr@ijekavian/LC_MESSAGES/okular_djvu.mo share/locale/sr@ijekavian/LC_MESSAGES/okular_dvi.mo share/locale/sr@ijekavian/LC_MESSAGES/okular_epub.mo share/locale/sr@ijekavian/LC_MESSAGES/okular_fax.mo share/locale/sr@ijekavian/LC_MESSAGES/okular_fictionbook.mo share/locale/sr@ijekavian/LC_MESSAGES/okular_ghostview.mo share/locale/sr@ijekavian/LC_MESSAGES/okular_kimgio.mo share/locale/sr@ijekavian/LC_MESSAGES/okular_markdown.mo share/locale/sr@ijekavian/LC_MESSAGES/okular_mobi.mo share/locale/sr@ijekavian/LC_MESSAGES/okular_plucker.mo share/locale/sr@ijekavian/LC_MESSAGES/okular_poppler.mo share/locale/sr@ijekavian/LC_MESSAGES/okular_txt.mo share/locale/sr@ijekavian/LC_MESSAGES/okular_xps.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/okular.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/okular_chm.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/okular_comicbook.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/okular_djvu.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/okular_dvi.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/okular_epub.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/okular_fax.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/okular_fictionbook.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/okular_ghostview.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/okular_kimgio.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/okular_markdown.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/okular_mobi.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/okular_plucker.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/okular_poppler.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/okular_txt.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/okular_xps.mo share/locale/sr@latin/LC_MESSAGES/okular.mo share/locale/sr@latin/LC_MESSAGES/okular_chm.mo share/locale/sr@latin/LC_MESSAGES/okular_comicbook.mo share/locale/sr@latin/LC_MESSAGES/okular_djvu.mo share/locale/sr@latin/LC_MESSAGES/okular_dvi.mo share/locale/sr@latin/LC_MESSAGES/okular_epub.mo share/locale/sr@latin/LC_MESSAGES/okular_fax.mo share/locale/sr@latin/LC_MESSAGES/okular_fictionbook.mo share/locale/sr@latin/LC_MESSAGES/okular_ghostview.mo share/locale/sr@latin/LC_MESSAGES/okular_kimgio.mo share/locale/sr@latin/LC_MESSAGES/okular_markdown.mo share/locale/sr@latin/LC_MESSAGES/okular_mobi.mo share/locale/sr@latin/LC_MESSAGES/okular_plucker.mo share/locale/sr@latin/LC_MESSAGES/okular_poppler.mo share/locale/sr@latin/LC_MESSAGES/okular_txt.mo share/locale/sr@latin/LC_MESSAGES/okular_xps.mo share/locale/sv/LC_MESSAGES/okular.mo share/locale/sv/LC_MESSAGES/okular_chm.mo share/locale/sv/LC_MESSAGES/okular_comicbook.mo share/locale/sv/LC_MESSAGES/okular_djvu.mo share/locale/sv/LC_MESSAGES/okular_dvi.mo share/locale/sv/LC_MESSAGES/okular_epub.mo share/locale/sv/LC_MESSAGES/okular_fax.mo share/locale/sv/LC_MESSAGES/okular_fictionbook.mo share/locale/sv/LC_MESSAGES/okular_ghostview.mo share/locale/sv/LC_MESSAGES/okular_kimgio.mo share/locale/sv/LC_MESSAGES/okular_markdown.mo share/locale/sv/LC_MESSAGES/okular_mobi.mo share/locale/sv/LC_MESSAGES/okular_plucker.mo share/locale/sv/LC_MESSAGES/okular_poppler.mo share/locale/sv/LC_MESSAGES/okular_tiff.mo share/locale/sv/LC_MESSAGES/okular_txt.mo share/locale/sv/LC_MESSAGES/okular_xps.mo share/locale/sv/LC_MESSAGES/org.kde.active.documentviewer.mo share/locale/ta/LC_MESSAGES/okular.mo share/locale/ta/LC_MESSAGES/okular_djvu.mo share/locale/ta/LC_MESSAGES/okular_epub.mo share/locale/ta/LC_MESSAGES/okular_fax.mo share/locale/ta/LC_MESSAGES/okular_fictionbook.mo share/locale/ta/LC_MESSAGES/okular_ghostview.mo share/locale/ta/LC_MESSAGES/okular_kimgio.mo share/locale/ta/LC_MESSAGES/okular_markdown.mo share/locale/ta/LC_MESSAGES/okular_plucker.mo share/locale/ta/LC_MESSAGES/okular_poppler.mo share/locale/ta/LC_MESSAGES/okular_tiff.mo share/locale/ta/LC_MESSAGES/okular_txt.mo share/locale/ta/LC_MESSAGES/okular_xps.mo share/locale/ta/LC_MESSAGES/org.kde.active.documentviewer.mo share/locale/tg/LC_MESSAGES/okular.mo share/locale/th/LC_MESSAGES/okular.mo share/locale/th/LC_MESSAGES/okular_chm.mo share/locale/th/LC_MESSAGES/okular_comicbook.mo share/locale/th/LC_MESSAGES/okular_djvu.mo share/locale/th/LC_MESSAGES/okular_dvi.mo share/locale/th/LC_MESSAGES/okular_epub.mo share/locale/th/LC_MESSAGES/okular_fax.mo share/locale/th/LC_MESSAGES/okular_fictionbook.mo share/locale/th/LC_MESSAGES/okular_ghostview.mo share/locale/th/LC_MESSAGES/okular_kimgio.mo share/locale/th/LC_MESSAGES/okular_mobi.mo share/locale/th/LC_MESSAGES/okular_plucker.mo share/locale/th/LC_MESSAGES/okular_poppler.mo share/locale/th/LC_MESSAGES/okular_xps.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_markdown.mo share/locale/tr/LC_MESSAGES/okular_mobi.mo share/locale/tr/LC_MESSAGES/okular_plucker.mo share/locale/tr/LC_MESSAGES/okular_poppler.mo share/locale/tr/LC_MESSAGES/okular_tiff.mo share/locale/tr/LC_MESSAGES/okular_txt.mo share/locale/tr/LC_MESSAGES/okular_xps.mo share/locale/tr/LC_MESSAGES/org.kde.active.documentviewer.mo share/locale/ug/LC_MESSAGES/okular.mo share/locale/ug/LC_MESSAGES/okular_chm.mo share/locale/ug/LC_MESSAGES/okular_comicbook.mo share/locale/ug/LC_MESSAGES/okular_djvu.mo share/locale/ug/LC_MESSAGES/okular_dvi.mo share/locale/ug/LC_MESSAGES/okular_epub.mo share/locale/ug/LC_MESSAGES/okular_fax.mo share/locale/ug/LC_MESSAGES/okular_fictionbook.mo share/locale/ug/LC_MESSAGES/okular_ghostview.mo share/locale/ug/LC_MESSAGES/okular_kimgio.mo share/locale/ug/LC_MESSAGES/okular_mobi.mo share/locale/ug/LC_MESSAGES/okular_plucker.mo share/locale/ug/LC_MESSAGES/okular_poppler.mo share/locale/ug/LC_MESSAGES/okular_txt.mo share/locale/ug/LC_MESSAGES/okular_xps.mo share/locale/ug/LC_MESSAGES/org.kde.active.documentviewer.mo share/locale/uk/LC_MESSAGES/okular.mo share/locale/uk/LC_MESSAGES/okular_chm.mo share/locale/uk/LC_MESSAGES/okular_comicbook.mo share/locale/uk/LC_MESSAGES/okular_djvu.mo share/locale/uk/LC_MESSAGES/okular_dvi.mo share/locale/uk/LC_MESSAGES/okular_epub.mo share/locale/uk/LC_MESSAGES/okular_fax.mo share/locale/uk/LC_MESSAGES/okular_fictionbook.mo share/locale/uk/LC_MESSAGES/okular_ghostview.mo share/locale/uk/LC_MESSAGES/okular_kimgio.mo share/locale/uk/LC_MESSAGES/okular_markdown.mo share/locale/uk/LC_MESSAGES/okular_mobi.mo share/locale/uk/LC_MESSAGES/okular_plucker.mo share/locale/uk/LC_MESSAGES/okular_poppler.mo share/locale/uk/LC_MESSAGES/okular_tiff.mo share/locale/uk/LC_MESSAGES/okular_txt.mo share/locale/uk/LC_MESSAGES/okular_xps.mo share/locale/uk/LC_MESSAGES/org.kde.active.documentviewer.mo share/locale/vi/LC_MESSAGES/okular.mo share/locale/vi/LC_MESSAGES/okular_chm.mo share/locale/vi/LC_MESSAGES/okular_comicbook.mo share/locale/vi/LC_MESSAGES/okular_djvu.mo share/locale/vi/LC_MESSAGES/okular_dvi.mo share/locale/vi/LC_MESSAGES/okular_epub.mo share/locale/vi/LC_MESSAGES/okular_fax.mo share/locale/vi/LC_MESSAGES/okular_fictionbook.mo share/locale/vi/LC_MESSAGES/okular_ghostview.mo share/locale/vi/LC_MESSAGES/okular_kimgio.mo share/locale/vi/LC_MESSAGES/okular_markdown.mo share/locale/vi/LC_MESSAGES/okular_mobi.mo share/locale/vi/LC_MESSAGES/okular_plucker.mo share/locale/vi/LC_MESSAGES/okular_poppler.mo share/locale/vi/LC_MESSAGES/okular_tiff.mo share/locale/vi/LC_MESSAGES/okular_txt.mo share/locale/vi/LC_MESSAGES/okular_xps.mo share/locale/vi/LC_MESSAGES/org.kde.active.documentviewer.mo share/locale/wa/LC_MESSAGES/okular.mo share/locale/wa/LC_MESSAGES/okular_chm.mo share/locale/wa/LC_MESSAGES/okular_comicbook.mo share/locale/wa/LC_MESSAGES/okular_djvu.mo share/locale/wa/LC_MESSAGES/okular_epub.mo share/locale/wa/LC_MESSAGES/okular_fax.mo share/locale/wa/LC_MESSAGES/okular_fictionbook.mo share/locale/wa/LC_MESSAGES/okular_ghostview.mo share/locale/wa/LC_MESSAGES/okular_kimgio.mo share/locale/wa/LC_MESSAGES/okular_mobi.mo share/locale/wa/LC_MESSAGES/okular_plucker.mo share/locale/wa/LC_MESSAGES/okular_poppler.mo share/locale/wa/LC_MESSAGES/okular_xps.mo share/locale/xh/LC_MESSAGES/okular.mo share/locale/zh_CN/LC_MESSAGES/okular.mo share/locale/zh_CN/LC_MESSAGES/okular_chm.mo share/locale/zh_CN/LC_MESSAGES/okular_comicbook.mo share/locale/zh_CN/LC_MESSAGES/okular_djvu.mo share/locale/zh_CN/LC_MESSAGES/okular_dvi.mo share/locale/zh_CN/LC_MESSAGES/okular_epub.mo share/locale/zh_CN/LC_MESSAGES/okular_fax.mo share/locale/zh_CN/LC_MESSAGES/okular_fictionbook.mo share/locale/zh_CN/LC_MESSAGES/okular_ghostview.mo share/locale/zh_CN/LC_MESSAGES/okular_kimgio.mo share/locale/zh_CN/LC_MESSAGES/okular_markdown.mo share/locale/zh_CN/LC_MESSAGES/okular_mobi.mo share/locale/zh_CN/LC_MESSAGES/okular_plucker.mo share/locale/zh_CN/LC_MESSAGES/okular_poppler.mo share/locale/zh_CN/LC_MESSAGES/okular_tiff.mo share/locale/zh_CN/LC_MESSAGES/okular_txt.mo share/locale/zh_CN/LC_MESSAGES/okular_xps.mo share/locale/zh_CN/LC_MESSAGES/org.kde.active.documentviewer.mo share/locale/zh_HK/LC_MESSAGES/okular.mo share/locale/zh_TW/LC_MESSAGES/okular.mo share/locale/zh_TW/LC_MESSAGES/okular_chm.mo share/locale/zh_TW/LC_MESSAGES/okular_comicbook.mo share/locale/zh_TW/LC_MESSAGES/okular_djvu.mo share/locale/zh_TW/LC_MESSAGES/okular_dvi.mo share/locale/zh_TW/LC_MESSAGES/okular_epub.mo share/locale/zh_TW/LC_MESSAGES/okular_fax.mo share/locale/zh_TW/LC_MESSAGES/okular_fictionbook.mo share/locale/zh_TW/LC_MESSAGES/okular_ghostview.mo share/locale/zh_TW/LC_MESSAGES/okular_kimgio.mo share/locale/zh_TW/LC_MESSAGES/okular_markdown.mo share/locale/zh_TW/LC_MESSAGES/okular_mobi.mo share/locale/zh_TW/LC_MESSAGES/okular_plucker.mo share/locale/zh_TW/LC_MESSAGES/okular_poppler.mo share/locale/zh_TW/LC_MESSAGES/okular_tiff.mo share/locale/zh_TW/LC_MESSAGES/okular_txt.mo share/locale/zh_TW/LC_MESSAGES/okular_xps.mo share/locale/zh_TW/LC_MESSAGES/org.kde.active.documentviewer.mo share/metainfo/org.kde.okular-chm.metainfo.xml share/metainfo/org.kde.okular-comicbook.metainfo.xml share/metainfo/org.kde.okular-djvu.metainfo.xml share/metainfo/org.kde.okular-dvi.metainfo.xml share/metainfo/org.kde.okular-epub.metainfo.xml share/metainfo/org.kde.okular-fax.metainfo.xml share/metainfo/org.kde.okular-fb.metainfo.xml share/metainfo/org.kde.okular-kimgio.metainfo.xml share/metainfo/org.kde.okular-md.metainfo.xml share/metainfo/org.kde.okular-mobipocket.metainfo.xml share/metainfo/org.kde.okular-plucker.metainfo.xml share/metainfo/org.kde.okular-poppler.metainfo.xml share/metainfo/org.kde.okular-spectre.metainfo.xml share/metainfo/org.kde.okular-tiff.metainfo.xml share/metainfo/org.kde.okular-txt.metainfo.xml share/metainfo/org.kde.okular-xps.metainfo.xml share/metainfo/org.kde.okular.appdata.xml %%DATADIR%%/drawingtools.xml %%DATADIR%%/icons/hicolor/16x16/apps/okular-fb2.png %%DATADIR%%/icons/hicolor/16x16/apps/okular-gv.png %%DATADIR%%/icons/hicolor/32x32/apps/okular-fb2.png %%DATADIR%%/icons/hicolor/32x32/apps/okular-gv.png %%DATADIR%%/icons/hicolor/48x48/apps/okular-fb2.png %%DATADIR%%/pics/checkmark.png %%DATADIR%%/pics/circle.png %%DATADIR%%/pics/comment.png %%DATADIR%%/pics/cross.png %%DATADIR%%/pics/help.png %%DATADIR%%/pics/insert.png %%DATADIR%%/pics/key.png %%DATADIR%%/pics/newparagraph.png %%DATADIR%%/pics/note.png %%DATADIR%%/pics/okular-epub-movie.png %%DATADIR%%/pics/okular-epub-sound-icon.png %%DATADIR%%/pics/paperclip.png %%DATADIR%%/pics/paragraph.png %%DATADIR%%/pics/pushpin.png %%DATADIR%%/pics/rightarrow.png %%DATADIR%%/pics/rightpointer.png %%DATADIR%%/pics/stamps.svg %%DATADIR%%/pics/star.png %%DATADIR%%/pics/tool-base-okular.png %%DATADIR%%/pics/tool-base-okular@2x.png %%DATADIR%%/pics/tool-highlighter-okular-colorizable.png %%DATADIR%%/pics/tool-highlighter-okular-colorizable@2x.png %%DATADIR%%/pics/tool-ink-okular-colorizable.png %%DATADIR%%/pics/tool-ink-okular-colorizable@2x.png %%DATADIR%%/pics/tool-note-inline-okular-colorizable.png %%DATADIR%%/pics/tool-note-inline-okular-colorizable@2x.png %%DATADIR%%/pics/tool-note-inline.png %%DATADIR%%/pics/tool-note-okular-colorizable.png %%DATADIR%%/pics/tool-note-okular-colorizable@2x.png %%DATADIR%%/pics/tool-note.png %%DATADIR%%/pics/tool-typewriter-okular-colorizable.png %%DATADIR%%/pics/tool-typewriter-okular-colorizable@2x.png %%DATADIR%%/pics/uparrow.png %%DATADIR%%/pics/upleftarrow.png %%DATADIR%%/tools.xml %%DATADIR%%/toolsQuick.xml share/qlogging-categories5/okular.categories diff --git a/graphics/skanlite/distinfo b/graphics/skanlite/distinfo index f447c8c21ba6..a5d22e8d0929 100644 --- a/graphics/skanlite/distinfo +++ b/graphics/skanlite/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1677828308 -SHA256 (KDE/release-service/22.12.3/skanlite-22.12.3.tar.xz) = 3fefac3625643c0fd8a5e52966d2540176a0b098bb0d4ba30cb841419039c7cd -SIZE (KDE/release-service/22.12.3/skanlite-22.12.3.tar.xz) = 2448488 +TIMESTAMP = 1681548394 +SHA256 (KDE/release-service/23.04.0/skanlite-23.04.0.tar.xz) = 9f8198d25eb275e35ea597bf2cbcff7410117614e8e5141a4bada3942fd7dd8c +SIZE (KDE/release-service/23.04.0/skanlite-23.04.0.tar.xz) = 2449616 diff --git a/graphics/skanpage/distinfo b/graphics/skanpage/distinfo index 640b25a03f1e..bc727a59443c 100644 --- a/graphics/skanpage/distinfo +++ b/graphics/skanpage/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1677828310 -SHA256 (KDE/release-service/22.12.3/skanpage-22.12.3.tar.xz) = ff67119af25a224ccb419caf7da2a427e89420b3778c4d5f7d43bf04e2e95f41 -SIZE (KDE/release-service/22.12.3/skanpage-22.12.3.tar.xz) = 1295700 +TIMESTAMP = 1681548386 +SHA256 (KDE/release-service/23.04.0/skanpage-23.04.0.tar.xz) = 99399f56840965ac664b7a3437eca2b425694c136541891bf743f72d274e24e4 +SIZE (KDE/release-service/23.04.0/skanpage-23.04.0.tar.xz) = 1297420 diff --git a/graphics/skanpage/pkg-plist b/graphics/skanpage/pkg-plist index 66701875171d..cff308730861 100644 --- a/graphics/skanpage/pkg-plist +++ b/graphics/skanpage/pkg-plist @@ -1,37 +1,39 @@ bin/skanpage share/applications/org.kde.skanpage.desktop share/icons/hicolor/48x48/apps/skanpage.png share/icons/hicolor/scalable/apps/skanpage.svg share/locale/ar/LC_MESSAGES/skanpage.mo +share/locale/be/LC_MESSAGES/skanpage.mo share/locale/bg/LC_MESSAGES/skanpage.mo share/locale/ca/LC_MESSAGES/skanpage.mo share/locale/ca@valencia/LC_MESSAGES/skanpage.mo share/locale/cs/LC_MESSAGES/skanpage.mo share/locale/de/LC_MESSAGES/skanpage.mo share/locale/el/LC_MESSAGES/skanpage.mo share/locale/en_GB/LC_MESSAGES/skanpage.mo share/locale/es/LC_MESSAGES/skanpage.mo share/locale/eu/LC_MESSAGES/skanpage.mo share/locale/fi/LC_MESSAGES/skanpage.mo share/locale/fr/LC_MESSAGES/skanpage.mo share/locale/ia/LC_MESSAGES/skanpage.mo share/locale/id/LC_MESSAGES/skanpage.mo share/locale/is/LC_MESSAGES/skanpage.mo share/locale/it/LC_MESSAGES/skanpage.mo share/locale/ja/LC_MESSAGES/skanpage.mo share/locale/ka/LC_MESSAGES/skanpage.mo share/locale/ko/LC_MESSAGES/skanpage.mo +share/locale/lt/LC_MESSAGES/skanpage.mo share/locale/nl/LC_MESSAGES/skanpage.mo share/locale/pl/LC_MESSAGES/skanpage.mo share/locale/pt/LC_MESSAGES/skanpage.mo share/locale/pt_BR/LC_MESSAGES/skanpage.mo share/locale/ru/LC_MESSAGES/skanpage.mo share/locale/sk/LC_MESSAGES/skanpage.mo share/locale/sl/LC_MESSAGES/skanpage.mo share/locale/sv/LC_MESSAGES/skanpage.mo share/locale/tr/LC_MESSAGES/skanpage.mo share/locale/uk/LC_MESSAGES/skanpage.mo share/locale/zh_CN/LC_MESSAGES/skanpage.mo share/locale/zh_TW/LC_MESSAGES/skanpage.mo share/metainfo/org.kde.skanpage.appdata.xml share/qlogging-categories5/skanpage.categories diff --git a/graphics/spectacle/Makefile b/graphics/spectacle/Makefile index 1a9873b6986d..f5a19f1ac42e 100644 --- a/graphics/spectacle/Makefile +++ b/graphics/spectacle/Makefile @@ -1,28 +1,29 @@ PORTNAME= spectacle DISTVERSION= ${KDE_APPLICATIONS_VERSION} CATEGORIES= graphics kde kde-applications MAINTAINER= kde@FreeBSD.org COMMENT= KDE screen capture program WWW= https://projects.kde.org/projects/kde/kdegraphics/spectacle LIB_DEPENDS= libxcb-cursor.so:x11/xcb-util-cursor \ libxcb-image.so:x11/xcb-util-image \ libxcb-util.so:x11/xcb-util \ libkImageAnnotator.so:graphics/kimageannotator RUN_DEPENDS= kipi-plugins>=0:graphics/kipi-plugins -USES= cmake compiler:c++11-lang gettext kde:5 pkgconfig qt:5 tar:xz xorg +USES= cmake compiler:c++11-lang gettext kde:5 pkgconfig qt:5 tar:xz \ + xorg USE_KDE= attica auth codecs completion config configwidgets coreaddons \ - dbusaddons globalaccel guiaddons i18n jobwidgets kdeclarative kio \ - libkipi newstuff notifications package purpose service solid wayland \ - widgetsaddons windowsystem xmlgui \ + dbusaddons globalaccel guiaddons i18n jobwidgets kdeclarative \ + kio kpipewire libkipi newstuff notifications package purpose \ + service solid wayland widgetsaddons windowsystem xmlgui \ doctools:build ecm:build -USE_QT= core concurrent dbus declarative gui network printsupport \ +USE_QT= concurrent core dbus declarative gui network printsupport \ quickcontrols svg widgets x11extras xml \ buildtools:build qmake:build testlib:build USE_XORG= x11 xcb xext xfixes OPTIONS_DEFINE= DOCS .include diff --git a/graphics/spectacle/distinfo b/graphics/spectacle/distinfo index 90ca9e12ef24..d50c7a1b75c6 100644 --- a/graphics/spectacle/distinfo +++ b/graphics/spectacle/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1677828287 -SHA256 (KDE/release-service/22.12.3/spectacle-22.12.3.tar.xz) = 497e4b71f4ca3b20456213a66db3cd2b31c3c3040c924aa6fc2b05304717cd07 -SIZE (KDE/release-service/22.12.3/spectacle-22.12.3.tar.xz) = 1272768 +TIMESTAMP = 1681548379 +SHA256 (KDE/release-service/23.04.0/spectacle-23.04.0.tar.xz) = db8d4a668b532847b0031038037b42c83d2d600b5084eb40fe29698131d14b17 +SIZE (KDE/release-service/23.04.0/spectacle-23.04.0.tar.xz) = 1338656 diff --git a/irc/konversation/distinfo b/irc/konversation/distinfo index 367023ccc508..203cd5eed51d 100644 --- a/irc/konversation/distinfo +++ b/irc/konversation/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1677828093 -SHA256 (KDE/release-service/22.12.3/konversation-22.12.3.tar.xz) = 74323d033f94e5490e1b6eb619bf16d02e5dab469dbf49004f3f6ad82e27805c -SIZE (KDE/release-service/22.12.3/konversation-22.12.3.tar.xz) = 4454000 +TIMESTAMP = 1681548456 +SHA256 (KDE/release-service/23.04.0/konversation-23.04.0.tar.xz) = 9b644c4c609c195aa98e3d59e3b8b89e7add3dbe34e1182981ddd260c8aa4765 +SIZE (KDE/release-service/23.04.0/konversation-23.04.0.tar.xz) = 4455096 diff --git a/japanese/kiten/distinfo b/japanese/kiten/distinfo index 0303e230625d..d56fe516abee 100644 --- a/japanese/kiten/distinfo +++ b/japanese/kiten/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1677828204 -SHA256 (KDE/release-service/22.12.3/kiten-22.12.3.tar.xz) = 760a6435062bee604c751972773be71826b9ceacf93f1e7fc84a63caa1301277 -SIZE (KDE/release-service/22.12.3/kiten-22.12.3.tar.xz) = 11335232 +TIMESTAMP = 1681548476 +SHA256 (KDE/release-service/23.04.0/kiten-23.04.0.tar.xz) = 6e288302801ad3693bd4cc80185868b5d57f1beb265e948d8537017a743c43a9 +SIZE (KDE/release-service/23.04.0/kiten-23.04.0.tar.xz) = 11333712 diff --git a/lang/kross-interpreters/distinfo b/lang/kross-interpreters/distinfo index 1a3ad871429f..2f25f6f83df2 100644 --- a/lang/kross-interpreters/distinfo +++ b/lang/kross-interpreters/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1677828124 -SHA256 (KDE/release-service/22.12.3/kross-interpreters-22.12.3.tar.xz) = 880b2ead15b5c5dbfa8a498a5cffba7dd61763d24f7f93fb1080572b4c0ef1fa -SIZE (KDE/release-service/22.12.3/kross-interpreters-22.12.3.tar.xz) = 151760 +TIMESTAMP = 1681548478 +SHA256 (KDE/release-service/23.04.0/kross-interpreters-23.04.0.tar.xz) = 5eabd316af011e8d24616f604db1e4015a5058d7cab8d9838cc0a9c68d54de37 +SIZE (KDE/release-service/23.04.0/kross-interpreters-23.04.0.tar.xz) = 151724 diff --git a/lang/kturtle/distinfo b/lang/kturtle/distinfo index 107f21353202..0b0f2527a8aa 100644 --- a/lang/kturtle/distinfo +++ b/lang/kturtle/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1677828122 -SHA256 (KDE/release-service/22.12.3/kturtle-22.12.3.tar.xz) = 624d0a2edb1e5c211c7987ca314df16067df8d866e37ad591fa2bbf17b75ab45 -SIZE (KDE/release-service/22.12.3/kturtle-22.12.3.tar.xz) = 2000428 +TIMESTAMP = 1681548477 +SHA256 (KDE/release-service/23.04.0/kturtle-23.04.0.tar.xz) = 8ed5580324dd0f5a65f64f95e5ce7387de9160f543e59818bffca2a35385258b +SIZE (KDE/release-service/23.04.0/kturtle-23.04.0.tar.xz) = 2001000 diff --git a/math/analitza/distinfo b/math/analitza/distinfo index 3e6bd8bfef54..be3d2e68f58d 100644 --- a/math/analitza/distinfo +++ b/math/analitza/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1677828077 -SHA256 (KDE/release-service/22.12.3/analitza-22.12.3.tar.xz) = 79ac266ebcafb1942b31702f2f6bb33f983a0cd753ecaaee2a8e29f268d9b994 -SIZE (KDE/release-service/22.12.3/analitza-22.12.3.tar.xz) = 352896 +TIMESTAMP = 1681548323 +SHA256 (KDE/release-service/23.04.0/analitza-23.04.0.tar.xz) = 7d79eb0d33079767a5a200b19bd0fd27d7fff5d81d9dbae601c047cf2bc0f18c +SIZE (KDE/release-service/23.04.0/analitza-23.04.0.tar.xz) = 353124 diff --git a/math/cantor/distinfo b/math/cantor/distinfo index e89fe6bffd2f..e5775a3d818e 100644 --- a/math/cantor/distinfo +++ b/math/cantor/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1677828088 -SHA256 (KDE/release-service/22.12.3/cantor-22.12.3.tar.xz) = b677e2c0b68f7399617fb8ee010375ddf562d01b17faaaef1b00f8cdb1a5922b -SIZE (KDE/release-service/22.12.3/cantor-22.12.3.tar.xz) = 9251596 +TIMESTAMP = 1681548326 +SHA256 (KDE/release-service/23.04.0/cantor-23.04.0.tar.xz) = 449e3bc0065ecd9333a940147b1afb2c078766ac28023b280ab05b4d7648fca7 +SIZE (KDE/release-service/23.04.0/cantor-23.04.0.tar.xz) = 9266376 diff --git a/math/cantor/pkg-plist b/math/cantor/pkg-plist index 1d490620b376..6b5033fe7a76 100644 --- a/math/cantor/pkg-plist +++ b/math/cantor/pkg-plist @@ -1,183 +1,183 @@ bin/cantor bin/cantor_pythonserver %%R%%bin/cantor_rserver bin/cantor_scripteditor include/cantor/animationresult.h include/cantor/backend.h include/cantor/cantor_export.h include/cantor/cantor_macros.h include/cantor/cantorlibs_version.h include/cantor/completionobject.h include/cantor/defaulthighlighter.h include/cantor/defaultvariablemodel.h include/cantor/epsresult.h include/cantor/expression.h include/cantor/extension.h include/cantor/graphicpackage.h include/cantor/helpresult.h include/cantor/htmlresult.h include/cantor/imageresult.h include/cantor/jupyterutils.h include/cantor/latexresult.h include/cantor/mimeresult.h include/cantor/panelplugin.h include/cantor/panelpluginhandler.h include/cantor/renderer.h include/cantor/result.h include/cantor/session.h include/cantor/syntaxhelpobject.h include/cantor/textresult.h include/cantor/worksheetaccess.h lib/cantor_pythonbackend.so lib/cmake/Cantor/CantorConfig.cmake lib/cmake/Cantor/CantorConfigVersion.cmake lib/cmake/Cantor/CantorTargets-%%CMAKE_BUILD_TYPE%%.cmake lib/cmake/Cantor/CantorTargets.cmake lib/libcantor_config.so lib/libcantorlibs.so lib/libcantorlibs.so.%%KDE_APPLICATIONS_VERSION%% lib/libcantorlibs.so.28 %%QT_PLUGINDIR%%/cantor/assistants/cantor_advancedplotassistant.so %%QT_PLUGINDIR%%/cantor/assistants/cantor_creatematrixassistant.so %%QT_PLUGINDIR%%/cantor/assistants/cantor_differentiateassistant.so %%QT_PLUGINDIR%%/cantor/assistants/cantor_eigenvaluesassistant.so %%QT_PLUGINDIR%%/cantor/assistants/cantor_eigenvectorsassistant.so %%QT_PLUGINDIR%%/cantor/assistants/cantor_importpackageassistant.so %%QT_PLUGINDIR%%/cantor/assistants/cantor_integrateassistant.so %%QT_PLUGINDIR%%/cantor/assistants/cantor_invertmatrixassistant.so %%QT_PLUGINDIR%%/cantor/assistants/cantor_plot2dassistant.so %%QT_PLUGINDIR%%/cantor/assistants/cantor_plot3dassistant.so %%QT_PLUGINDIR%%/cantor/assistants/cantor_qalculateplotassistant.so %%QT_PLUGINDIR%%/cantor/assistants/cantor_runscriptassistant.so %%QT_PLUGINDIR%%/cantor/assistants/cantor_solveassistant.so %%QT_PLUGINDIR%%/cantor/backends/cantor_kalgebrabackend.so %%LUAJIT%%%%QT_PLUGINDIR%%/cantor/backends/cantor_luabackend.so %%QT_PLUGINDIR%%/cantor/backends/cantor_maximabackend.so %%QT_PLUGINDIR%%/cantor/backends/cantor_octavebackend.so %%QT_PLUGINDIR%%/cantor/backends/cantor_pythonbackend.so %%QT_PLUGINDIR%%/cantor/backends/cantor_qalculatebackend.so %%R%%%%QT_PLUGINDIR%%/cantor/backends/cantor_rbackend.so %%QT_PLUGINDIR%%/cantor/backends/cantor_sagebackend.so %%QT_PLUGINDIR%%/cantor/backends/cantor_scilabbackend.so %%QT_PLUGINDIR%%/cantor/panels/cantor_documentationpanelplugin.so %%QT_PLUGINDIR%%/cantor/panels/cantor_filebrowserpanelplugin.so %%QT_PLUGINDIR%%/cantor/panels/cantor_helppanelplugin.so %%QT_PLUGINDIR%%/cantor/panels/cantor_tocpanelplugin.so %%QT_PLUGINDIR%%/cantor/panels/cantor_variablemanagerplugin.so %%QT_PLUGINDIR%%/kf5/parts/cantorpart.so share/applications/org.kde.cantor.desktop %%DATADIR%%/latex/preview.sty %%DATADIR%%/maximabackend/cantor-initmaxima.lisp %%DATADIR%%/octave/graphic_packages.xml %%DATADIR%%/octavebackend/cantor_eigenvectors.m %%DATADIR%%/octavebackend/cantor_plot2d.m %%DATADIR%%/octavebackend/cantor_plot3d.m -%%DATADIR%%/octavebackend/cantor_print.m %%DATADIR%%/python/graphic_packages.xml %%DATADIR%%/sagebackend/cantor-execsage %%DATADIR%%/xslt/latex.xsl share/config.kcfg/cantor.kcfg share/config.kcfg/cantor_libs.kcfg share/config.kcfg/kalgebrabackend.kcfg %%LUAJIT%%share/config.kcfg/luabackend.kcfg share/config.kcfg/maximabackend.kcfg share/config.kcfg/octavebackend.kcfg.in share/config.kcfg/pythonbackend.kcfg share/config.kcfg/qalculatebackend.kcfg %%R%%share/config.kcfg/rserver.kcfg share/config.kcfg/sagebackend.kcfg share/config.kcfg/scilabbackend.kcfg +share/icons/hicolor/128x128/apps/cantor.png share/icons/hicolor/16x16/apps/cantor.png share/icons/hicolor/22x22/apps/cantor.png share/icons/hicolor/32x32/apps/cantor.png share/icons/hicolor/48x48/apps/cantor.png share/icons/hicolor/48x48/apps/juliabackend.png share/icons/hicolor/48x48/apps/kalgebrabackend.png share/icons/hicolor/48x48/apps/luabackend.png share/icons/hicolor/48x48/apps/maximabackend.png share/icons/hicolor/48x48/apps/octavebackend.png share/icons/hicolor/48x48/apps/pythonbackend.png share/icons/hicolor/48x48/apps/qalculatebackend.png share/icons/hicolor/48x48/apps/rbackend.png share/icons/hicolor/48x48/apps/sagebackend.png share/icons/hicolor/48x48/apps/scilabbackend.png share/icons/hicolor/64x64/apps/cantor.png -share/icons/hicolor/128x128/apps/cantor.png share/knsrcfiles/cantor-documentation.knsrc share/knsrcfiles/cantor.knsrc share/knsrcfiles/cantor_kalgebra.knsrc %%LUAJIT%%share/knsrcfiles/cantor_lua.knsrc share/knsrcfiles/cantor_maxima.knsrc share/knsrcfiles/cantor_octave.knsrc share/knsrcfiles/cantor_python.knsrc share/knsrcfiles/cantor_qalculate.knsrc %%R%%share/knsrcfiles/cantor_r.knsrc share/knsrcfiles/cantor_sage.knsrc share/knsrcfiles/cantor_scilab.knsrc share/kxmlgui5/cantor/cantor_advancedplot_assistant.rc share/kxmlgui5/cantor/cantor_create_matrix_assistant.rc share/kxmlgui5/cantor/cantor_differentiate_assistant.rc share/kxmlgui5/cantor/cantor_eigenvalues_assistant.rc share/kxmlgui5/cantor/cantor_eigenvectors_assistant.rc share/kxmlgui5/cantor/cantor_import_package_assistant.rc share/kxmlgui5/cantor/cantor_integrate_assistant.rc share/kxmlgui5/cantor/cantor_invert_matrix_assistant.rc share/kxmlgui5/cantor/cantor_part.rc share/kxmlgui5/cantor/cantor_plot2d_assistant.rc share/kxmlgui5/cantor/cantor_plot3d_assistant.rc share/kxmlgui5/cantor/cantor_qalculateplotassistant.rc share/kxmlgui5/cantor/cantor_runscript_assistant.rc share/kxmlgui5/cantor/cantor_scripteditor.rc share/kxmlgui5/cantor/cantor_shell.rc share/kxmlgui5/cantor/cantor_solve_assistant.rc share/locale/ar/LC_MESSAGES/cantor.mo share/locale/bg/LC_MESSAGES/cantor.mo share/locale/bs/LC_MESSAGES/cantor.mo share/locale/ca/LC_MESSAGES/cantor.mo share/locale/ca@valencia/LC_MESSAGES/cantor.mo share/locale/cs/LC_MESSAGES/cantor.mo share/locale/da/LC_MESSAGES/cantor.mo share/locale/de/LC_MESSAGES/cantor.mo share/locale/el/LC_MESSAGES/cantor.mo share/locale/en_GB/LC_MESSAGES/cantor.mo share/locale/eo/LC_MESSAGES/cantor.mo share/locale/es/LC_MESSAGES/cantor.mo share/locale/et/LC_MESSAGES/cantor.mo share/locale/eu/LC_MESSAGES/cantor.mo share/locale/fi/LC_MESSAGES/cantor.mo share/locale/fr/LC_MESSAGES/cantor.mo share/locale/ga/LC_MESSAGES/cantor.mo share/locale/gl/LC_MESSAGES/cantor.mo share/locale/hr/LC_MESSAGES/cantor.mo share/locale/hu/LC_MESSAGES/cantor.mo share/locale/ia/LC_MESSAGES/cantor.mo share/locale/it/LC_MESSAGES/cantor.mo share/locale/ja/LC_MESSAGES/cantor.mo share/locale/ka/LC_MESSAGES/cantor.mo share/locale/kk/LC_MESSAGES/cantor.mo share/locale/ko/LC_MESSAGES/cantor.mo share/locale/lt/LC_MESSAGES/cantor.mo share/locale/lv/LC_MESSAGES/cantor.mo share/locale/ml/LC_MESSAGES/cantor.mo share/locale/mr/LC_MESSAGES/cantor.mo share/locale/nb/LC_MESSAGES/cantor.mo share/locale/nds/LC_MESSAGES/cantor.mo share/locale/nl/LC_MESSAGES/cantor.mo share/locale/nn/LC_MESSAGES/cantor.mo share/locale/pa/LC_MESSAGES/cantor.mo share/locale/pl/LC_MESSAGES/cantor.mo share/locale/pt/LC_MESSAGES/cantor.mo share/locale/pt_BR/LC_MESSAGES/cantor.mo share/locale/ro/LC_MESSAGES/cantor.mo share/locale/ru/LC_MESSAGES/cantor.mo share/locale/sk/LC_MESSAGES/cantor.mo share/locale/sl/LC_MESSAGES/cantor.mo share/locale/sv/LC_MESSAGES/cantor.mo +share/locale/ta/LC_MESSAGES/cantor.mo share/locale/th/LC_MESSAGES/cantor.mo share/locale/tr/LC_MESSAGES/cantor.mo share/locale/ug/LC_MESSAGES/cantor.mo share/locale/uk/LC_MESSAGES/cantor.mo share/locale/zh_CN/LC_MESSAGES/cantor.mo share/locale/zh_TW/LC_MESSAGES/cantor.mo share/metainfo/org.kde.cantor.appdata.xml share/mime/packages/cantor.xml diff --git a/math/kalgebra/distinfo b/math/kalgebra/distinfo index c8d509a59885..5c17b25312ed 100644 --- a/math/kalgebra/distinfo +++ b/math/kalgebra/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1677828085 -SHA256 (KDE/release-service/22.12.3/kalgebra-22.12.3.tar.xz) = de34313947c62e4dad97e9f107e598cb406d6b9aa1d54c49f58bfff0071367e7 -SIZE (KDE/release-service/22.12.3/kalgebra-22.12.3.tar.xz) = 1035488 +TIMESTAMP = 1681548331 +SHA256 (KDE/release-service/23.04.0/kalgebra-23.04.0.tar.xz) = b485e18efe383dcc37783d5976ffa30ca416aea0ed4c1ebe3ef374be30d1fb9a +SIZE (KDE/release-service/23.04.0/kalgebra-23.04.0.tar.xz) = 1036388 diff --git a/math/kbruch/distinfo b/math/kbruch/distinfo index 0e76d7d4355a..452fbac9e270 100644 --- a/math/kbruch/distinfo +++ b/math/kbruch/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1677828082 -SHA256 (KDE/release-service/22.12.3/kbruch-22.12.3.tar.xz) = af37e47c89bc4154fcafb2a93b21ed1ac81a43d425d21e6f729c33740121215f -SIZE (KDE/release-service/22.12.3/kbruch-22.12.3.tar.xz) = 5655508 +TIMESTAMP = 1681548330 +SHA256 (KDE/release-service/23.04.0/kbruch-23.04.0.tar.xz) = 7054f48afd366cb774fb221b32400fce62098e267a63263c8382eb4b7d3cf655 +SIZE (KDE/release-service/23.04.0/kbruch-23.04.0.tar.xz) = 5655772 diff --git a/math/kcalc/distinfo b/math/kcalc/distinfo index c3e65ccf4d10..164f2a17a180 100644 --- a/math/kcalc/distinfo +++ b/math/kcalc/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1677828076 -SHA256 (KDE/release-service/22.12.3/kcalc-22.12.3.tar.xz) = 52e63925e6510e4097656de1957296c7335ed05f59b712622a8fe1e66dbffd99 -SIZE (KDE/release-service/22.12.3/kcalc-22.12.3.tar.xz) = 434980 +TIMESTAMP = 1681548324 +SHA256 (KDE/release-service/23.04.0/kcalc-23.04.0.tar.xz) = d269b3d43c8fa26beda1007ab8f46a94e378337ad8261b6900565bc3e977da6a +SIZE (KDE/release-service/23.04.0/kcalc-23.04.0.tar.xz) = 436504 diff --git a/math/kig/distinfo b/math/kig/distinfo index efc158497723..c321286fdc4c 100644 --- a/math/kig/distinfo +++ b/math/kig/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1677828079 -SHA256 (KDE/release-service/22.12.3/kig-22.12.3.tar.xz) = 657adb23885f755af40a085ff8eeb45571a7756e576ba2a3c05c2df15ee5b1d9 -SIZE (KDE/release-service/22.12.3/kig-22.12.3.tar.xz) = 3281480 +TIMESTAMP = 1681548328 +SHA256 (KDE/release-service/23.04.0/kig-23.04.0.tar.xz) = e4da80c064c0b30e200168c49e6b826d03670ba3bf87e73c9ad6049aa0c36265 +SIZE (KDE/release-service/23.04.0/kig-23.04.0.tar.xz) = 3281420 diff --git a/math/kig/pkg-plist b/math/kig/pkg-plist index c3a25b64202e..37a19a1375ca 100644 --- a/math/kig/pkg-plist +++ b/math/kig/pkg-plist @@ -1,384 +1,383 @@ bin/kig bin/pykig.py %%QT_PLUGINDIR%%/kf5/parts/kigpart.so man/ca/man1/kig.1.gz man/de/man1/kig.1.gz man/es/man1/kig.1.gz man/et/man1/kig.1.gz man/fr/man1/kig.1.gz man/it/man1/kig.1.gz man/man1/kig.1.gz man/nl/man1/kig.1.gz man/pt_BR/man1/kig.1.gz man/ru/man1/kig.1.gz man/sv/man1/kig.1.gz man/uk/man1/kig.1.gz share/applications/org.kde.kig.desktop share/icons/hicolor/128x128/apps/kig.png share/icons/hicolor/128x128/mimetypes/application-x-kig.png share/icons/hicolor/16x16/apps/kig.png share/icons/hicolor/16x16/mimetypes/application-x-kig.png share/icons/hicolor/22x22/apps/kig.png share/icons/hicolor/22x22/mimetypes/application-x-kig.png share/icons/hicolor/32x32/apps/kig.png share/icons/hicolor/32x32/mimetypes/application-x-kig.png share/icons/hicolor/48x48/apps/kig.png share/icons/hicolor/48x48/mimetypes/application-x-kig.png share/icons/hicolor/64x64/apps/kig.png share/icons/hicolor/64x64/mimetypes/application-x-kig.png share/icons/hicolor/scalable/apps/kig.svgz share/icons/hicolor/scalable/mimetypes/application-x-kig.svgz share/katepart5/syntax/python-kig.xml %%DATADIR%%/builtin-macros/circle_by_center_and_line.kigt %%DATADIR%%/builtin-macros/circle_by_point_and_diameter.kigt %%DATADIR%%/builtin-macros/equitriangle.kigt %%DATADIR%%/builtin-macros/evolute.kigt %%DATADIR%%/builtin-macros/osculating_circle.kigt %%DATADIR%%/builtin-macros/square.kigt %%DATADIR%%/builtin-macros/vector_difference.kigt %%DATADIR%%/icons/hicolor/16x16/actions/kig_xfig.png %%DATADIR%%/icons/hicolor/22x22/actions/angle.png %%DATADIR%%/icons/hicolor/22x22/actions/angle_bisector.png %%DATADIR%%/icons/hicolor/22x22/actions/angle_size.png %%DATADIR%%/icons/hicolor/22x22/actions/arc.png %%DATADIR%%/icons/hicolor/22x22/actions/arc_center.png %%DATADIR%%/icons/hicolor/22x22/actions/areaCircle.png %%DATADIR%%/icons/hicolor/22x22/actions/attacher.png %%DATADIR%%/icons/hicolor/22x22/actions/baseCircle.png %%DATADIR%%/icons/hicolor/22x22/actions/bezier3.png %%DATADIR%%/icons/hicolor/22x22/actions/bezier4.png %%DATADIR%%/icons/hicolor/22x22/actions/bezierN.png %%DATADIR%%/icons/hicolor/22x22/actions/beziercurves.png %%DATADIR%%/icons/hicolor/22x22/actions/bisection.png %%DATADIR%%/icons/hicolor/22x22/actions/centerofcurvature.png %%DATADIR%%/icons/hicolor/22x22/actions/centralsymmetry.png %%DATADIR%%/icons/hicolor/22x22/actions/circlebcl.png %%DATADIR%%/icons/hicolor/22x22/actions/circlebcp.png %%DATADIR%%/icons/hicolor/22x22/actions/circlebpd.png %%DATADIR%%/icons/hicolor/22x22/actions/circlebps.png %%DATADIR%%/icons/hicolor/22x22/actions/circlebtp.png %%DATADIR%%/icons/hicolor/22x22/actions/circlelineintersection.png %%DATADIR%%/icons/hicolor/22x22/actions/circumference.png %%DATADIR%%/icons/hicolor/22x22/actions/conicasymptotes.png %%DATADIR%%/icons/hicolor/22x22/actions/conicb5p.png %%DATADIR%%/icons/hicolor/22x22/actions/coniclineintersection.png %%DATADIR%%/icons/hicolor/22x22/actions/conicsradicalline.png %%DATADIR%%/icons/hicolor/22x22/actions/controlpolygon.png %%DATADIR%%/icons/hicolor/22x22/actions/convexhull.png %%DATADIR%%/icons/hicolor/22x22/actions/curvelineintersection.png %%DATADIR%%/icons/hicolor/22x22/actions/directrix.png %%DATADIR%%/icons/hicolor/22x22/actions/distance.png %%DATADIR%%/icons/hicolor/22x22/actions/ellipsebffp.png %%DATADIR%%/icons/hicolor/22x22/actions/en.png %%DATADIR%%/icons/hicolor/22x22/actions/equilateralhyperbolab4p.png %%DATADIR%%/icons/hicolor/22x22/actions/equitriangle.png %%DATADIR%%/icons/hicolor/22x22/actions/genericaffinity.png %%DATADIR%%/icons/hicolor/22x22/actions/genericprojectivity.png %%DATADIR%%/icons/hicolor/22x22/actions/halflinebyvector.png %%DATADIR%%/icons/hicolor/22x22/actions/harmonichomology.png %%DATADIR%%/icons/hicolor/22x22/actions/hexagonbcv.png %%DATADIR%%/icons/hicolor/22x22/actions/hyperbolabffp.png %%DATADIR%%/icons/hicolor/22x22/actions/intersection.png %%DATADIR%%/icons/hicolor/22x22/actions/inversion.png %%DATADIR%%/icons/hicolor/22x22/actions/kig_numericvalue.png %%DATADIR%%/icons/hicolor/22x22/actions/kig_polygon.png %%DATADIR%%/icons/hicolor/22x22/actions/kig_text.png %%DATADIR%%/icons/hicolor/22x22/actions/line.png %%DATADIR%%/icons/hicolor/22x22/actions/linebyvector.png %%DATADIR%%/icons/hicolor/22x22/actions/locus.png %%DATADIR%%/icons/hicolor/22x22/actions/mirrorpoint.png %%DATADIR%%/icons/hicolor/22x22/actions/openpolygon.png %%DATADIR%%/icons/hicolor/22x22/actions/paint.png %%DATADIR%%/icons/hicolor/22x22/actions/parabolabtp.png %%DATADIR%%/icons/hicolor/22x22/actions/parallel.png %%DATADIR%%/icons/hicolor/22x22/actions/perpendicular.png %%DATADIR%%/icons/hicolor/22x22/actions/point.png %%DATADIR%%/icons/hicolor/22x22/actions/pointOnLine.png %%DATADIR%%/icons/hicolor/22x22/actions/pointxy.png %%DATADIR%%/icons/hicolor/22x22/actions/polygonsides.png %%DATADIR%%/icons/hicolor/22x22/actions/polygonvertices.png %%DATADIR%%/icons/hicolor/22x22/actions/projection.png %%DATADIR%%/icons/hicolor/22x22/actions/python.png %%DATADIR%%/icons/hicolor/22x22/actions/radicalline.png %%DATADIR%%/icons/hicolor/22x22/actions/ray.png %%DATADIR%%/icons/hicolor/22x22/actions/rbezier3.png %%DATADIR%%/icons/hicolor/22x22/actions/rbezier4.png %%DATADIR%%/icons/hicolor/22x22/actions/rbezierN.png %%DATADIR%%/icons/hicolor/22x22/actions/rotation.png %%DATADIR%%/icons/hicolor/22x22/actions/scale.png %%DATADIR%%/icons/hicolor/22x22/actions/segment.png %%DATADIR%%/icons/hicolor/22x22/actions/segment_golden_point.png %%DATADIR%%/icons/hicolor/22x22/actions/segment_midpoint.png %%DATADIR%%/icons/hicolor/22x22/actions/segmentaxis.png %%DATADIR%%/icons/hicolor/22x22/actions/similitude.png %%DATADIR%%/icons/hicolor/22x22/actions/sizer.png %%DATADIR%%/icons/hicolor/22x22/actions/slope.png %%DATADIR%%/icons/hicolor/22x22/actions/square.png %%DATADIR%%/icons/hicolor/22x22/actions/stretch.png %%DATADIR%%/icons/hicolor/22x22/actions/tangent.png %%DATADIR%%/icons/hicolor/22x22/actions/test.png %%DATADIR%%/icons/hicolor/22x22/actions/testcollinear.png %%DATADIR%%/icons/hicolor/22x22/actions/testcontains.png %%DATADIR%%/icons/hicolor/22x22/actions/testdistance.png %%DATADIR%%/icons/hicolor/22x22/actions/testorthogonal.png %%DATADIR%%/icons/hicolor/22x22/actions/testparallel.png %%DATADIR%%/icons/hicolor/22x22/actions/translation.png %%DATADIR%%/icons/hicolor/22x22/actions/triangle.png %%DATADIR%%/icons/hicolor/22x22/actions/vector.png %%DATADIR%%/icons/hicolor/22x22/actions/vectordifference.png %%DATADIR%%/icons/hicolor/22x22/actions/vectorsum.png %%DATADIR%%/icons/hicolor/22x22/actions/view_fit_to_page.png %%DATADIR%%/icons/hicolor/22x22/actions/w.png %%DATADIR%%/icons/hicolor/32x32/actions/angle.png %%DATADIR%%/icons/hicolor/32x32/actions/angle_bisector.png %%DATADIR%%/icons/hicolor/32x32/actions/angle_size.png %%DATADIR%%/icons/hicolor/32x32/actions/arc.png %%DATADIR%%/icons/hicolor/32x32/actions/arc_center.png %%DATADIR%%/icons/hicolor/32x32/actions/areaCircle.png %%DATADIR%%/icons/hicolor/32x32/actions/attacher.png %%DATADIR%%/icons/hicolor/32x32/actions/baseCircle.png %%DATADIR%%/icons/hicolor/32x32/actions/bezier3.png %%DATADIR%%/icons/hicolor/32x32/actions/bezier4.png %%DATADIR%%/icons/hicolor/32x32/actions/bezierN.png %%DATADIR%%/icons/hicolor/32x32/actions/beziercurves.png %%DATADIR%%/icons/hicolor/32x32/actions/bisection.png %%DATADIR%%/icons/hicolor/32x32/actions/centerofcurvature.png %%DATADIR%%/icons/hicolor/32x32/actions/centralsymmetry.png %%DATADIR%%/icons/hicolor/32x32/actions/circlebcl.png %%DATADIR%%/icons/hicolor/32x32/actions/circlebcp.png %%DATADIR%%/icons/hicolor/32x32/actions/circlebpd.png %%DATADIR%%/icons/hicolor/32x32/actions/circlebps.png %%DATADIR%%/icons/hicolor/32x32/actions/circlebtp.png %%DATADIR%%/icons/hicolor/32x32/actions/circlelineintersection.png %%DATADIR%%/icons/hicolor/32x32/actions/circumference.png %%DATADIR%%/icons/hicolor/32x32/actions/conicasymptotes.png %%DATADIR%%/icons/hicolor/32x32/actions/conicb5p.png %%DATADIR%%/icons/hicolor/32x32/actions/coniclineintersection.png %%DATADIR%%/icons/hicolor/32x32/actions/conicsradicalline.png %%DATADIR%%/icons/hicolor/32x32/actions/controlpolygon.png %%DATADIR%%/icons/hicolor/32x32/actions/convexhull.png %%DATADIR%%/icons/hicolor/32x32/actions/curvelineintersection.png %%DATADIR%%/icons/hicolor/32x32/actions/directrix.png %%DATADIR%%/icons/hicolor/32x32/actions/distance.png %%DATADIR%%/icons/hicolor/32x32/actions/ellipsebffp.png %%DATADIR%%/icons/hicolor/32x32/actions/en.png %%DATADIR%%/icons/hicolor/32x32/actions/equilateralhyperbolab4p.png %%DATADIR%%/icons/hicolor/32x32/actions/equitriangle.png %%DATADIR%%/icons/hicolor/32x32/actions/genericaffinity.png %%DATADIR%%/icons/hicolor/32x32/actions/genericprojectivity.png %%DATADIR%%/icons/hicolor/32x32/actions/halflinebyvector.png %%DATADIR%%/icons/hicolor/32x32/actions/harmonichomology.png %%DATADIR%%/icons/hicolor/32x32/actions/hexagonbcv.png %%DATADIR%%/icons/hicolor/32x32/actions/hyperbolabffp.png %%DATADIR%%/icons/hicolor/32x32/actions/intersection.png %%DATADIR%%/icons/hicolor/32x32/actions/inversion.png %%DATADIR%%/icons/hicolor/32x32/actions/kig_numericvalue.png %%DATADIR%%/icons/hicolor/32x32/actions/kig_polygon.png %%DATADIR%%/icons/hicolor/32x32/actions/kig_text.png %%DATADIR%%/icons/hicolor/32x32/actions/line.png %%DATADIR%%/icons/hicolor/32x32/actions/linebyvector.png %%DATADIR%%/icons/hicolor/32x32/actions/locus.png %%DATADIR%%/icons/hicolor/32x32/actions/mirrorpoint.png %%DATADIR%%/icons/hicolor/32x32/actions/openpolygon.png %%DATADIR%%/icons/hicolor/32x32/actions/paint.png %%DATADIR%%/icons/hicolor/32x32/actions/parabolabtp.png %%DATADIR%%/icons/hicolor/32x32/actions/parallel.png %%DATADIR%%/icons/hicolor/32x32/actions/perpendicular.png %%DATADIR%%/icons/hicolor/32x32/actions/point.png %%DATADIR%%/icons/hicolor/32x32/actions/pointOnLine.png %%DATADIR%%/icons/hicolor/32x32/actions/pointxy.png %%DATADIR%%/icons/hicolor/32x32/actions/polygonsides.png %%DATADIR%%/icons/hicolor/32x32/actions/polygonvertices.png %%DATADIR%%/icons/hicolor/32x32/actions/projection.png %%DATADIR%%/icons/hicolor/32x32/actions/python.png %%DATADIR%%/icons/hicolor/32x32/actions/radicalline.png %%DATADIR%%/icons/hicolor/32x32/actions/ray.png %%DATADIR%%/icons/hicolor/32x32/actions/rbezier3.png %%DATADIR%%/icons/hicolor/32x32/actions/rbezier4.png %%DATADIR%%/icons/hicolor/32x32/actions/rbezierN.png %%DATADIR%%/icons/hicolor/32x32/actions/rotation.png %%DATADIR%%/icons/hicolor/32x32/actions/scale.png %%DATADIR%%/icons/hicolor/32x32/actions/segment.png %%DATADIR%%/icons/hicolor/32x32/actions/segment_golden_point.png %%DATADIR%%/icons/hicolor/32x32/actions/segment_midpoint.png %%DATADIR%%/icons/hicolor/32x32/actions/segmentaxis.png %%DATADIR%%/icons/hicolor/32x32/actions/similitude.png %%DATADIR%%/icons/hicolor/32x32/actions/sizer.png %%DATADIR%%/icons/hicolor/32x32/actions/slope.png %%DATADIR%%/icons/hicolor/32x32/actions/square.png %%DATADIR%%/icons/hicolor/32x32/actions/stretch.png %%DATADIR%%/icons/hicolor/32x32/actions/tangent.png %%DATADIR%%/icons/hicolor/32x32/actions/test.png %%DATADIR%%/icons/hicolor/32x32/actions/testcollinear.png %%DATADIR%%/icons/hicolor/32x32/actions/testcontains.png %%DATADIR%%/icons/hicolor/32x32/actions/testdistance.png %%DATADIR%%/icons/hicolor/32x32/actions/testorthogonal.png %%DATADIR%%/icons/hicolor/32x32/actions/testparallel.png %%DATADIR%%/icons/hicolor/32x32/actions/translation.png %%DATADIR%%/icons/hicolor/32x32/actions/triangle.png %%DATADIR%%/icons/hicolor/32x32/actions/vector.png %%DATADIR%%/icons/hicolor/32x32/actions/vectordifference.png %%DATADIR%%/icons/hicolor/32x32/actions/vectorsum.png %%DATADIR%%/icons/hicolor/32x32/actions/w.png %%DATADIR%%/icons/hicolor/scalable/actions/angle.svgz %%DATADIR%%/icons/hicolor/scalable/actions/angle_bisector.svgz %%DATADIR%%/icons/hicolor/scalable/actions/angle_size.svgz %%DATADIR%%/icons/hicolor/scalable/actions/arc.svgz %%DATADIR%%/icons/hicolor/scalable/actions/arc_center.svgz %%DATADIR%%/icons/hicolor/scalable/actions/areaCircle.svgz %%DATADIR%%/icons/hicolor/scalable/actions/attacher.svgz %%DATADIR%%/icons/hicolor/scalable/actions/baseCircle.svgz %%DATADIR%%/icons/hicolor/scalable/actions/bezier3.svgz %%DATADIR%%/icons/hicolor/scalable/actions/bezier4.svgz %%DATADIR%%/icons/hicolor/scalable/actions/bezierN.svgz %%DATADIR%%/icons/hicolor/scalable/actions/beziercurves.svgz %%DATADIR%%/icons/hicolor/scalable/actions/bisection.svgz %%DATADIR%%/icons/hicolor/scalable/actions/centerofcurvature.svgz %%DATADIR%%/icons/hicolor/scalable/actions/centralsymmetry.svgz %%DATADIR%%/icons/hicolor/scalable/actions/circlebcl.svgz %%DATADIR%%/icons/hicolor/scalable/actions/circlebcp.svgz %%DATADIR%%/icons/hicolor/scalable/actions/circlebpd.svgz %%DATADIR%%/icons/hicolor/scalable/actions/circlebps.svgz %%DATADIR%%/icons/hicolor/scalable/actions/circlebtp.svgz %%DATADIR%%/icons/hicolor/scalable/actions/circlelineintersection.svgz %%DATADIR%%/icons/hicolor/scalable/actions/circumference.svgz %%DATADIR%%/icons/hicolor/scalable/actions/conicasymptotes.svgz %%DATADIR%%/icons/hicolor/scalable/actions/conicb5p.svgz %%DATADIR%%/icons/hicolor/scalable/actions/coniclineintersection.svgz %%DATADIR%%/icons/hicolor/scalable/actions/conicsradicalline.svgz %%DATADIR%%/icons/hicolor/scalable/actions/controlpolygon.svgz %%DATADIR%%/icons/hicolor/scalable/actions/convexhull.svgz %%DATADIR%%/icons/hicolor/scalable/actions/curvelineintersection.svgz %%DATADIR%%/icons/hicolor/scalable/actions/directrix.svgz %%DATADIR%%/icons/hicolor/scalable/actions/distance.svgz %%DATADIR%%/icons/hicolor/scalable/actions/ellipsebffp.svgz %%DATADIR%%/icons/hicolor/scalable/actions/en.svgz %%DATADIR%%/icons/hicolor/scalable/actions/equilateralhyperbolab4p.svgz %%DATADIR%%/icons/hicolor/scalable/actions/equitriangle.svgz %%DATADIR%%/icons/hicolor/scalable/actions/genericaffinity.svgz %%DATADIR%%/icons/hicolor/scalable/actions/genericprojectivity.svgz %%DATADIR%%/icons/hicolor/scalable/actions/halflinebyvector.svgz %%DATADIR%%/icons/hicolor/scalable/actions/harmonichomology.svgz %%DATADIR%%/icons/hicolor/scalable/actions/hexagonbcv.svgz %%DATADIR%%/icons/hicolor/scalable/actions/hyperbolabffp.svgz %%DATADIR%%/icons/hicolor/scalable/actions/intersection.svgz %%DATADIR%%/icons/hicolor/scalable/actions/inversion.svgz %%DATADIR%%/icons/hicolor/scalable/actions/kig_numericvalue.svgz %%DATADIR%%/icons/hicolor/scalable/actions/kig_polygon.svgz %%DATADIR%%/icons/hicolor/scalable/actions/kig_text.svgz %%DATADIR%%/icons/hicolor/scalable/actions/line.svgz %%DATADIR%%/icons/hicolor/scalable/actions/linebyvector.svgz %%DATADIR%%/icons/hicolor/scalable/actions/locus.svgz %%DATADIR%%/icons/hicolor/scalable/actions/mirrorpoint.svgz %%DATADIR%%/icons/hicolor/scalable/actions/openpolygon.svgz %%DATADIR%%/icons/hicolor/scalable/actions/paint.svgz %%DATADIR%%/icons/hicolor/scalable/actions/parabolabtp.svgz %%DATADIR%%/icons/hicolor/scalable/actions/parallel.svgz %%DATADIR%%/icons/hicolor/scalable/actions/perpendicular.svgz %%DATADIR%%/icons/hicolor/scalable/actions/point.svgz %%DATADIR%%/icons/hicolor/scalable/actions/pointOnLine.svgz %%DATADIR%%/icons/hicolor/scalable/actions/pointxy.svgz %%DATADIR%%/icons/hicolor/scalable/actions/polygonsides.svgz %%DATADIR%%/icons/hicolor/scalable/actions/polygonvertices.svgz %%DATADIR%%/icons/hicolor/scalable/actions/projection.svgz %%DATADIR%%/icons/hicolor/scalable/actions/python.svgz %%DATADIR%%/icons/hicolor/scalable/actions/radicalline.svgz %%DATADIR%%/icons/hicolor/scalable/actions/ray.svgz %%DATADIR%%/icons/hicolor/scalable/actions/rbezier3.svgz %%DATADIR%%/icons/hicolor/scalable/actions/rbezier4.svgz %%DATADIR%%/icons/hicolor/scalable/actions/rbezierN.svgz %%DATADIR%%/icons/hicolor/scalable/actions/rotation.svgz %%DATADIR%%/icons/hicolor/scalable/actions/scale.svgz %%DATADIR%%/icons/hicolor/scalable/actions/segment.svgz %%DATADIR%%/icons/hicolor/scalable/actions/segment_golden_point.svgz %%DATADIR%%/icons/hicolor/scalable/actions/segment_midpoint.svgz %%DATADIR%%/icons/hicolor/scalable/actions/segmentaxis.svgz %%DATADIR%%/icons/hicolor/scalable/actions/similitude.svgz %%DATADIR%%/icons/hicolor/scalable/actions/sizer.svgz %%DATADIR%%/icons/hicolor/scalable/actions/slope.svgz %%DATADIR%%/icons/hicolor/scalable/actions/square.svgz %%DATADIR%%/icons/hicolor/scalable/actions/stretch.svgz %%DATADIR%%/icons/hicolor/scalable/actions/tangent.svgz %%DATADIR%%/icons/hicolor/scalable/actions/test.svgz %%DATADIR%%/icons/hicolor/scalable/actions/testcollinear.svgz %%DATADIR%%/icons/hicolor/scalable/actions/testcontains.svgz %%DATADIR%%/icons/hicolor/scalable/actions/testdistance.svgz %%DATADIR%%/icons/hicolor/scalable/actions/testorthogonal.svgz %%DATADIR%%/icons/hicolor/scalable/actions/testparallel.svgz %%DATADIR%%/icons/hicolor/scalable/actions/translation.svgz %%DATADIR%%/icons/hicolor/scalable/actions/triangle.svgz %%DATADIR%%/icons/hicolor/scalable/actions/vector.svgz %%DATADIR%%/icons/hicolor/scalable/actions/vectordifference.svgz %%DATADIR%%/icons/hicolor/scalable/actions/vectorsum.svgz %%DATADIR%%/icons/hicolor/scalable/actions/w.svgz %%DATADIR%%/tips -share/kservices5/kig_part.desktop share/kxmlgui5/kig/kigpartui.rc share/kxmlgui5/kig/kigui.rc share/locale/ar/LC_MESSAGES/kig.mo share/locale/be/LC_MESSAGES/kig.mo share/locale/bg/LC_MESSAGES/kig.mo share/locale/bn/LC_MESSAGES/kig.mo share/locale/br/LC_MESSAGES/kig.mo share/locale/bs/LC_MESSAGES/kig.mo share/locale/ca/LC_MESSAGES/kig.mo share/locale/ca@valencia/LC_MESSAGES/kig.mo share/locale/cs/LC_MESSAGES/kig.mo share/locale/cy/LC_MESSAGES/kig.mo share/locale/da/LC_MESSAGES/kig.mo share/locale/de/LC_MESSAGES/kig.mo share/locale/el/LC_MESSAGES/kig.mo share/locale/en_GB/LC_MESSAGES/kig.mo share/locale/eo/LC_MESSAGES/kig.mo share/locale/es/LC_MESSAGES/kig.mo share/locale/et/LC_MESSAGES/kig.mo share/locale/eu/LC_MESSAGES/kig.mo share/locale/fa/LC_MESSAGES/kig.mo share/locale/fi/LC_MESSAGES/kig.mo share/locale/fr/LC_MESSAGES/kig.mo share/locale/ga/LC_MESSAGES/kig.mo share/locale/gl/LC_MESSAGES/kig.mo share/locale/hi/LC_MESSAGES/kig.mo share/locale/hne/LC_MESSAGES/kig.mo share/locale/hr/LC_MESSAGES/kig.mo share/locale/hu/LC_MESSAGES/kig.mo share/locale/is/LC_MESSAGES/kig.mo share/locale/it/LC_MESSAGES/kig.mo share/locale/ja/LC_MESSAGES/kig.mo share/locale/ka/LC_MESSAGES/kig.mo share/locale/kk/LC_MESSAGES/kig.mo share/locale/km/LC_MESSAGES/kig.mo share/locale/lt/LC_MESSAGES/kig.mo share/locale/lv/LC_MESSAGES/kig.mo share/locale/mai/LC_MESSAGES/kig.mo share/locale/mk/LC_MESSAGES/kig.mo share/locale/ml/LC_MESSAGES/kig.mo share/locale/mr/LC_MESSAGES/kig.mo share/locale/ms/LC_MESSAGES/kig.mo share/locale/nb/LC_MESSAGES/kig.mo share/locale/nds/LC_MESSAGES/kig.mo share/locale/ne/LC_MESSAGES/kig.mo share/locale/nl/LC_MESSAGES/kig.mo share/locale/nn/LC_MESSAGES/kig.mo share/locale/oc/LC_MESSAGES/kig.mo share/locale/pa/LC_MESSAGES/kig.mo share/locale/pl/LC_MESSAGES/kig.mo share/locale/pt/LC_MESSAGES/kig.mo share/locale/pt_BR/LC_MESSAGES/kig.mo share/locale/ro/LC_MESSAGES/kig.mo share/locale/ru/LC_MESSAGES/kig.mo share/locale/se/LC_MESSAGES/kig.mo share/locale/si/LC_MESSAGES/kig.mo share/locale/sk/LC_MESSAGES/kig.mo share/locale/sl/LC_MESSAGES/kig.mo share/locale/sq/LC_MESSAGES/kig.mo share/locale/sv/LC_MESSAGES/kig.mo share/locale/ta/LC_MESSAGES/kig.mo share/locale/tg/LC_MESSAGES/kig.mo share/locale/tr/LC_MESSAGES/kig.mo share/locale/ug/LC_MESSAGES/kig.mo share/locale/uk/LC_MESSAGES/kig.mo share/locale/xh/LC_MESSAGES/kig.mo share/locale/zh_CN/LC_MESSAGES/kig.mo share/locale/zh_TW/LC_MESSAGES/kig.mo share/metainfo/org.kde.kig.appdata.xml diff --git a/math/kmplot/distinfo b/math/kmplot/distinfo index 6aeb0770f034..a12a9677f827 100644 --- a/math/kmplot/distinfo +++ b/math/kmplot/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1677828083 -SHA256 (KDE/release-service/22.12.3/kmplot-22.12.3.tar.xz) = 129802c91095752a52bae99eb41fe785578a0929e12e274f3b137e6f1e3ee741 -SIZE (KDE/release-service/22.12.3/kmplot-22.12.3.tar.xz) = 3100420 +TIMESTAMP = 1681548325 +SHA256 (KDE/release-service/23.04.0/kmplot-23.04.0.tar.xz) = 5dcf70414bd2b912edfeae8ef45b5a10b5542a9d46260a5ca8597ba0783576bc +SIZE (KDE/release-service/23.04.0/kmplot-23.04.0.tar.xz) = 3100136 diff --git a/math/rocs/distinfo b/math/rocs/distinfo index f6278f5068cd..f60c56ecec7f 100644 --- a/math/rocs/distinfo +++ b/math/rocs/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1677828086 -SHA256 (KDE/release-service/22.12.3/rocs-22.12.3.tar.xz) = 87b41926bafae107feaebb890203232994b9b4e11c11952074dae282dbdefa5d -SIZE (KDE/release-service/22.12.3/rocs-22.12.3.tar.xz) = 1566224 +TIMESTAMP = 1681548329 +SHA256 (KDE/release-service/23.04.0/rocs-23.04.0.tar.xz) = 70a05dbffc3d1bca86037cbda6f94b1990d54382b146b27a4843c5432aee9fd6 +SIZE (KDE/release-service/23.04.0/rocs-23.04.0.tar.xz) = 1569396 diff --git a/misc/artikulate/distinfo b/misc/artikulate/distinfo index 93711e472bbe..8d091d7cc315 100644 --- a/misc/artikulate/distinfo +++ b/misc/artikulate/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1677828375 -SHA256 (KDE/release-service/22.12.3/artikulate-22.12.3.tar.xz) = 329aea81259c0b99c0a86431b61d9379b589a8f0effd9e54e7d06bc7784efdd2 -SIZE (KDE/release-service/22.12.3/artikulate-22.12.3.tar.xz) = 1094164 +TIMESTAMP = 1681548309 +SHA256 (KDE/release-service/23.04.0/artikulate-23.04.0.tar.xz) = d41d6f2ca3e9fb2621dd5d6754b4310b864d714fc1abbf405702a7bb6a7ea14d +SIZE (KDE/release-service/23.04.0/artikulate-23.04.0.tar.xz) = 1093712 diff --git a/misc/kdeedu-data/distinfo b/misc/kdeedu-data/distinfo index 199a09e08f8d..be1356caa8c5 100644 --- a/misc/kdeedu-data/distinfo +++ b/misc/kdeedu-data/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1677828377 -SHA256 (KDE/release-service/22.12.3/kdeedu-data-22.12.3.tar.xz) = 83149499c7eae49ce0ee8d08f4fcfe1575f975081ed67ed085b8f40c31419dc8 -SIZE (KDE/release-service/22.12.3/kdeedu-data-22.12.3.tar.xz) = 333556 +TIMESTAMP = 1681548305 +SHA256 (KDE/release-service/23.04.0/kdeedu-data-23.04.0.tar.xz) = af8b8bd6e40fd6171c16300bf2cc67c7f76ff61093d5792b8063a5b95ba75a5a +SIZE (KDE/release-service/23.04.0/kdeedu-data-23.04.0.tar.xz) = 333512 diff --git a/misc/kgeography/distinfo b/misc/kgeography/distinfo index cb84eb7fb03e..f23519d866a0 100644 --- a/misc/kgeography/distinfo +++ b/misc/kgeography/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1677828376 -SHA256 (KDE/release-service/22.12.3/kgeography-22.12.3.tar.xz) = a202fdf72bc882e109c34e948f02a282bb4a30455cf03f32dd0f5ea18615ed44 -SIZE (KDE/release-service/22.12.3/kgeography-22.12.3.tar.xz) = 12554560 +TIMESTAMP = 1681548311 +SHA256 (KDE/release-service/23.04.0/kgeography-23.04.0.tar.xz) = 7f3fc982d38e39cf51bc4cabfb66760b6b35060c09f960293eb07e75eb75b582 +SIZE (KDE/release-service/23.04.0/kgeography-23.04.0.tar.xz) = 12550548 diff --git a/misc/klettres/distinfo b/misc/klettres/distinfo index 51cd3ef7351c..5ae524ea045f 100644 --- a/misc/klettres/distinfo +++ b/misc/klettres/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1677828373 -SHA256 (KDE/release-service/22.12.3/klettres-22.12.3.tar.xz) = 622bc5a33b33cf2ddc926ad4a072e68badbc3fcd046d732a94292f887d744227 -SIZE (KDE/release-service/22.12.3/klettres-22.12.3.tar.xz) = 47838856 +TIMESTAMP = 1681548307 +SHA256 (KDE/release-service/23.04.0/klettres-23.04.0.tar.xz) = f2787e70720853593a557f70c24a8705bb35c8921585a037a27a576da1755128 +SIZE (KDE/release-service/23.04.0/klettres-23.04.0.tar.xz) = 47839176 diff --git a/misc/ktouch/distinfo b/misc/ktouch/distinfo index cc58206370ee..0354dcb2da08 100644 --- a/misc/ktouch/distinfo +++ b/misc/ktouch/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1677828367 -SHA256 (KDE/release-service/22.12.3/ktouch-22.12.3.tar.xz) = d589ab59c901b7a85e467ca6ee9867b19800d10fc08ad2e6a10b70d22d05ff43 -SIZE (KDE/release-service/22.12.3/ktouch-22.12.3.tar.xz) = 5034456 +TIMESTAMP = 1681548304 +SHA256 (KDE/release-service/23.04.0/ktouch-23.04.0.tar.xz) = 629dd0de1378bbd817722c8a8bebde455b6504abe6f5998f0a10fa091615d805 +SIZE (KDE/release-service/23.04.0/ktouch-23.04.0.tar.xz) = 5035780 diff --git a/misc/kwordquiz/distinfo b/misc/kwordquiz/distinfo index b3a82493f5fc..38ba68c970f9 100644 --- a/misc/kwordquiz/distinfo +++ b/misc/kwordquiz/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1677828370 -SHA256 (KDE/release-service/22.12.3/kwordquiz-22.12.3.tar.xz) = d2886eff8ec509ada7dec4a81e0cf2c690b3bf2a18cc6a14e965c9c79ceed09c -SIZE (KDE/release-service/22.12.3/kwordquiz-22.12.3.tar.xz) = 4261976 +TIMESTAMP = 1681548308 +SHA256 (KDE/release-service/23.04.0/kwordquiz-23.04.0.tar.xz) = 10d3c664ee6b5c0ddf33c1436f9cef0391ae53345f72796ee781044e059b1f9c +SIZE (KDE/release-service/23.04.0/kwordquiz-23.04.0.tar.xz) = 4262332 diff --git a/misc/libkeduvocdocument/distinfo b/misc/libkeduvocdocument/distinfo index dacebd8f4647..ea9571de9909 100644 --- a/misc/libkeduvocdocument/distinfo +++ b/misc/libkeduvocdocument/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1677828368 -SHA256 (KDE/release-service/22.12.3/libkeduvocdocument-22.12.3.tar.xz) = 4f747290922bfa24c9303a061715c06828e5a026c1711292e457f8726bef2f12 -SIZE (KDE/release-service/22.12.3/libkeduvocdocument-22.12.3.tar.xz) = 230248 +TIMESTAMP = 1681548305 +SHA256 (KDE/release-service/23.04.0/libkeduvocdocument-23.04.0.tar.xz) = 770fb78e046e135bd1f697f166fddbc9139903a5bda744837e8a6e3258d54bf8 +SIZE (KDE/release-service/23.04.0/libkeduvocdocument-23.04.0.tar.xz) = 230360 diff --git a/misc/libkeduvocdocument/pkg-plist b/misc/libkeduvocdocument/pkg-plist index c753e6fa084a..362c5ae4b819 100644 --- a/misc/libkeduvocdocument/pkg-plist +++ b/misc/libkeduvocdocument/pkg-plist @@ -1,109 +1,110 @@ include/libkeduvocdocument/KEduVocArticle include/libkeduvocdocument/KEduVocConjugation include/libkeduvocdocument/KEduVocContainer include/libkeduvocdocument/KEduVocDeclension include/libkeduvocdocument/KEduVocDocument include/libkeduvocdocument/KEduVocExpression include/libkeduvocdocument/KEduVocIdentifier include/libkeduvocdocument/KEduVocKVTML2Writer include/libkeduvocdocument/KEduVocLeitnerBox include/libkeduvocdocument/KEduVocLesson include/libkeduvocdocument/KEduVocMultipleChoice include/libkeduvocdocument/KEduVocPersonalPronoun include/libkeduvocdocument/KEduVocText include/libkeduvocdocument/KEduVocTranslation include/libkeduvocdocument/KEduVocWordFlags include/libkeduvocdocument/KEduVocWordtype include/libkeduvocdocument/SharedKVTMLFiles include/libkeduvocdocument/keduvocarticle.h include/libkeduvocdocument/keduvocconjugation.h include/libkeduvocdocument/keduvoccontainer.h include/libkeduvocdocument/keduvocdeclension.h include/libkeduvocdocument/keduvocdocument.h include/libkeduvocdocument/keduvocdocument_export.h +include/libkeduvocdocument/keduvocdocument_version.h include/libkeduvocdocument/keduvocexpression.h include/libkeduvocdocument/keduvocidentifier.h include/libkeduvocdocument/keduvockvtml2writer.h include/libkeduvocdocument/keduvocleitnerbox.h include/libkeduvocdocument/keduvoclesson.h include/libkeduvocdocument/keduvocmultiplechoice.h include/libkeduvocdocument/keduvocpersonalpronoun.h include/libkeduvocdocument/keduvoctext.h include/libkeduvocdocument/keduvoctranslation.h include/libkeduvocdocument/keduvocwordflags.h include/libkeduvocdocument/keduvocwordtype.h include/libkeduvocdocument/sharedkvtmlfiles.h lib/cmake/libkeduvocdocument/LibKEduVocDocumentConfig.cmake lib/cmake/libkeduvocdocument/LibKEduVocDocumentTargets-%%CMAKE_BUILD_TYPE%%.cmake lib/cmake/libkeduvocdocument/LibKEduVocDocumentTargets.cmake lib/libKEduVocDocument.so lib/libKEduVocDocument.so.5 -lib/libKEduVocDocument.so.5.0.0 +lib/libKEduVocDocument.so.5.1.0 share/locale/ar/LC_MESSAGES/libkeduvocdocument.mo share/locale/az/LC_MESSAGES/libkeduvocdocument.mo share/locale/be/LC_MESSAGES/libkeduvocdocument.mo share/locale/bg/LC_MESSAGES/libkeduvocdocument.mo share/locale/br/LC_MESSAGES/libkeduvocdocument.mo share/locale/bs/LC_MESSAGES/libkeduvocdocument.mo share/locale/ca/LC_MESSAGES/libkeduvocdocument.mo share/locale/ca@valencia/LC_MESSAGES/libkeduvocdocument.mo share/locale/cs/LC_MESSAGES/libkeduvocdocument.mo share/locale/cy/LC_MESSAGES/libkeduvocdocument.mo share/locale/da/LC_MESSAGES/libkeduvocdocument.mo share/locale/de/LC_MESSAGES/libkeduvocdocument.mo share/locale/el/LC_MESSAGES/libkeduvocdocument.mo share/locale/en_GB/LC_MESSAGES/libkeduvocdocument.mo share/locale/eo/LC_MESSAGES/libkeduvocdocument.mo share/locale/es/LC_MESSAGES/libkeduvocdocument.mo share/locale/et/LC_MESSAGES/libkeduvocdocument.mo share/locale/eu/LC_MESSAGES/libkeduvocdocument.mo share/locale/fa/LC_MESSAGES/libkeduvocdocument.mo share/locale/fi/LC_MESSAGES/libkeduvocdocument.mo share/locale/fr/LC_MESSAGES/libkeduvocdocument.mo share/locale/ga/LC_MESSAGES/libkeduvocdocument.mo share/locale/gl/LC_MESSAGES/libkeduvocdocument.mo share/locale/he/LC_MESSAGES/libkeduvocdocument.mo share/locale/hi/LC_MESSAGES/libkeduvocdocument.mo share/locale/hne/LC_MESSAGES/libkeduvocdocument.mo share/locale/hr/LC_MESSAGES/libkeduvocdocument.mo share/locale/hu/LC_MESSAGES/libkeduvocdocument.mo share/locale/is/LC_MESSAGES/libkeduvocdocument.mo share/locale/it/LC_MESSAGES/libkeduvocdocument.mo share/locale/ja/LC_MESSAGES/libkeduvocdocument.mo share/locale/ka/LC_MESSAGES/libkeduvocdocument.mo share/locale/kk/LC_MESSAGES/libkeduvocdocument.mo share/locale/km/LC_MESSAGES/libkeduvocdocument.mo share/locale/ko/LC_MESSAGES/libkeduvocdocument.mo share/locale/lt/LC_MESSAGES/libkeduvocdocument.mo share/locale/lv/LC_MESSAGES/libkeduvocdocument.mo share/locale/mai/LC_MESSAGES/libkeduvocdocument.mo share/locale/mk/LC_MESSAGES/libkeduvocdocument.mo share/locale/ml/LC_MESSAGES/libkeduvocdocument.mo share/locale/mr/LC_MESSAGES/libkeduvocdocument.mo share/locale/ms/LC_MESSAGES/libkeduvocdocument.mo share/locale/nb/LC_MESSAGES/libkeduvocdocument.mo share/locale/nds/LC_MESSAGES/libkeduvocdocument.mo share/locale/ne/LC_MESSAGES/libkeduvocdocument.mo share/locale/nl/LC_MESSAGES/libkeduvocdocument.mo share/locale/nn/LC_MESSAGES/libkeduvocdocument.mo share/locale/oc/LC_MESSAGES/libkeduvocdocument.mo share/locale/pa/LC_MESSAGES/libkeduvocdocument.mo share/locale/pl/LC_MESSAGES/libkeduvocdocument.mo share/locale/pt/LC_MESSAGES/libkeduvocdocument.mo share/locale/pt_BR/LC_MESSAGES/libkeduvocdocument.mo share/locale/ro/LC_MESSAGES/libkeduvocdocument.mo share/locale/ru/LC_MESSAGES/libkeduvocdocument.mo share/locale/se/LC_MESSAGES/libkeduvocdocument.mo share/locale/si/LC_MESSAGES/libkeduvocdocument.mo share/locale/sk/LC_MESSAGES/libkeduvocdocument.mo share/locale/sl/LC_MESSAGES/libkeduvocdocument.mo share/locale/sq/LC_MESSAGES/libkeduvocdocument.mo share/locale/sv/LC_MESSAGES/libkeduvocdocument.mo share/locale/tg/LC_MESSAGES/libkeduvocdocument.mo share/locale/th/LC_MESSAGES/libkeduvocdocument.mo share/locale/tr/LC_MESSAGES/libkeduvocdocument.mo share/locale/ug/LC_MESSAGES/libkeduvocdocument.mo share/locale/uk/LC_MESSAGES/libkeduvocdocument.mo share/locale/vi/LC_MESSAGES/libkeduvocdocument.mo share/locale/zh_CN/LC_MESSAGES/libkeduvocdocument.mo share/locale/zh_TW/LC_MESSAGES/libkeduvocdocument.mo diff --git a/misc/parley/distinfo b/misc/parley/distinfo index 68aeee7e6a4f..0331d296d478 100644 --- a/misc/parley/distinfo +++ b/misc/parley/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1677828369 -SHA256 (KDE/release-service/22.12.3/parley-22.12.3.tar.xz) = 0d3e11496bc8094e3be0b2d66cf68b0e28cceeabbcf9ea6abbf41cc6dd6b2d4b -SIZE (KDE/release-service/22.12.3/parley-22.12.3.tar.xz) = 8592972 +TIMESTAMP = 1681548303 +SHA256 (KDE/release-service/23.04.0/parley-23.04.0.tar.xz) = c24bfe8fe55d9e51272f855ed2a897cec272fbc7d057e6a2381447e988023d95 +SIZE (KDE/release-service/23.04.0/parley-23.04.0.tar.xz) = 8594460 diff --git a/multimedia/dragon/distinfo b/multimedia/dragon/distinfo index edaf0914136c..b21c07216096 100644 --- a/multimedia/dragon/distinfo +++ b/multimedia/dragon/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1677828094 -SHA256 (KDE/release-service/22.12.3/dragon-22.12.3.tar.xz) = 9af6ba20b741e587538cc805aae0bebee7d1506e0aee2e3ecb5387ca8d3038e2 -SIZE (KDE/release-service/22.12.3/dragon-22.12.3.tar.xz) = 1675272 +TIMESTAMP = 1681548301 +SHA256 (KDE/release-service/23.04.0/dragon-23.04.0.tar.xz) = c4c5c3d78be99c23efbf274ab45ee84f175ac494e78f9a18e2c1c1e2c9c9a9bb +SIZE (KDE/release-service/23.04.0/dragon-23.04.0.tar.xz) = 1668584 diff --git a/multimedia/dragon/pkg-plist b/multimedia/dragon/pkg-plist index e1fe3c7485a5..8377558bd6c6 100644 --- a/multimedia/dragon/pkg-plist +++ b/multimedia/dragon/pkg-plist @@ -1,96 +1,96 @@ bin/dragon etc/xdg/dragonplayerrc %%QT_PLUGINDIR%%/kf5/parts/dragonpart.so man/ca/man1/dragon.1.gz man/de/man1/dragon.1.gz man/es/man1/dragon.1.gz man/et/man1/dragon.1.gz man/fr/man1/dragon.1.gz man/it/man1/dragon.1.gz man/man1/dragon.1.gz man/nl/man1/dragon.1.gz man/pt/man1/dragon.1.gz man/pt_BR/man1/dragon.1.gz man/sr/man1/dragon.1.gz man/sr@latin/man1/dragon.1.gz man/sv/man1/dragon.1.gz +man/tr/man1/dragon.1.gz man/uk/man1/dragon.1.gz share/applications/org.kde.dragonplayer.desktop share/icons/hicolor/128x128/apps/dragonplayer.png share/icons/hicolor/16x16/apps/dragonplayer.png share/icons/hicolor/22x22/apps/dragonplayer.png share/icons/hicolor/32x32/apps/dragonplayer.png share/icons/hicolor/48x48/apps/dragonplayer.png share/icons/hicolor/64x64/apps/dragonplayer.png share/icons/hicolor/scalable/apps/dragonplayer.svgz share/icons/oxygen/16x16/actions/player-volume-muted.png share/icons/oxygen/22x22/actions/player-volume-muted.png share/icons/oxygen/32x32/actions/player-volume-muted.png share/icons/oxygen/48x48/actions/player-volume-muted.png share/icons/oxygen/scalable/actions/player-volume-muted.svgz share/kservices5/ServiceMenus/dragonplayer_play_dvd.desktop -share/kservices5/dragonplayer_part.desktop share/locale/ar/LC_MESSAGES/dragonplayer.mo share/locale/be/LC_MESSAGES/dragonplayer.mo share/locale/bg/LC_MESSAGES/dragonplayer.mo share/locale/bs/LC_MESSAGES/dragonplayer.mo share/locale/ca/LC_MESSAGES/dragonplayer.mo share/locale/ca@valencia/LC_MESSAGES/dragonplayer.mo share/locale/cs/LC_MESSAGES/dragonplayer.mo share/locale/da/LC_MESSAGES/dragonplayer.mo share/locale/de/LC_MESSAGES/dragonplayer.mo share/locale/el/LC_MESSAGES/dragonplayer.mo share/locale/en_GB/LC_MESSAGES/dragonplayer.mo share/locale/eo/LC_MESSAGES/dragonplayer.mo share/locale/es/LC_MESSAGES/dragonplayer.mo share/locale/et/LC_MESSAGES/dragonplayer.mo share/locale/eu/LC_MESSAGES/dragonplayer.mo share/locale/fi/LC_MESSAGES/dragonplayer.mo share/locale/fr/LC_MESSAGES/dragonplayer.mo share/locale/ga/LC_MESSAGES/dragonplayer.mo share/locale/gl/LC_MESSAGES/dragonplayer.mo share/locale/he/LC_MESSAGES/dragonplayer.mo share/locale/hr/LC_MESSAGES/dragonplayer.mo share/locale/hu/LC_MESSAGES/dragonplayer.mo share/locale/ia/LC_MESSAGES/dragonplayer.mo share/locale/id/LC_MESSAGES/dragonplayer.mo share/locale/is/LC_MESSAGES/dragonplayer.mo share/locale/it/LC_MESSAGES/dragonplayer.mo share/locale/ja/LC_MESSAGES/dragonplayer.mo share/locale/ka/LC_MESSAGES/dragonplayer.mo share/locale/kk/LC_MESSAGES/dragonplayer.mo share/locale/km/LC_MESSAGES/dragonplayer.mo share/locale/ko/LC_MESSAGES/dragonplayer.mo share/locale/ku/LC_MESSAGES/dragonplayer.mo share/locale/lt/LC_MESSAGES/dragonplayer.mo share/locale/lv/LC_MESSAGES/dragonplayer.mo share/locale/mr/LC_MESSAGES/dragonplayer.mo share/locale/nb/LC_MESSAGES/dragonplayer.mo share/locale/nds/LC_MESSAGES/dragonplayer.mo share/locale/nl/LC_MESSAGES/dragonplayer.mo share/locale/nn/LC_MESSAGES/dragonplayer.mo share/locale/oc/LC_MESSAGES/dragonplayer.mo share/locale/pa/LC_MESSAGES/dragonplayer.mo share/locale/pl/LC_MESSAGES/dragonplayer.mo share/locale/pt/LC_MESSAGES/dragonplayer.mo share/locale/pt_BR/LC_MESSAGES/dragonplayer.mo share/locale/ro/LC_MESSAGES/dragonplayer.mo share/locale/ru/LC_MESSAGES/dragonplayer.mo share/locale/sk/LC_MESSAGES/dragonplayer.mo share/locale/sl/LC_MESSAGES/dragonplayer.mo share/locale/sq/LC_MESSAGES/dragonplayer.mo share/locale/sr/LC_MESSAGES/dragonplayer.mo share/locale/sr@ijekavian/LC_MESSAGES/dragonplayer.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/dragonplayer.mo share/locale/sr@latin/LC_MESSAGES/dragonplayer.mo share/locale/sv/LC_MESSAGES/dragonplayer.mo share/locale/th/LC_MESSAGES/dragonplayer.mo share/locale/tr/LC_MESSAGES/dragonplayer.mo share/locale/ug/LC_MESSAGES/dragonplayer.mo share/locale/uk/LC_MESSAGES/dragonplayer.mo share/locale/wa/LC_MESSAGES/dragonplayer.mo share/locale/zh_CN/LC_MESSAGES/dragonplayer.mo share/locale/zh_TW/LC_MESSAGES/dragonplayer.mo share/metainfo/org.kde.dragonplayer.appdata.xml share/solid/actions/dragonplayer-openaudiocd.desktop share/solid/actions/dragonplayer-opendvd.desktop diff --git a/multimedia/kamoso/distinfo b/multimedia/kamoso/distinfo index 0e9979f5b746..5a1bafcece79 100644 --- a/multimedia/kamoso/distinfo +++ b/multimedia/kamoso/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1677828096 -SHA256 (KDE/release-service/22.12.3/kamoso-22.12.3.tar.xz) = e41e8a910a937b854b985ad16a3bb8b3050e0ce35269bd2192e934c4ca963ade -SIZE (KDE/release-service/22.12.3/kamoso-22.12.3.tar.xz) = 228984 +TIMESTAMP = 1681548298 +SHA256 (KDE/release-service/23.04.0/kamoso-23.04.0.tar.xz) = 6ab8690e45616087e205c7fc80accc27a8a887108f58477877b66e24061c12f2 +SIZE (KDE/release-service/23.04.0/kamoso-23.04.0.tar.xz) = 231684 diff --git a/multimedia/kamoso/pkg-plist b/multimedia/kamoso/pkg-plist index 2a4282793968..1918dbe641e8 100644 --- a/multimedia/kamoso/pkg-plist +++ b/multimedia/kamoso/pkg-plist @@ -1,63 +1,64 @@ bin/kamoso lib/gstreamer-1.0/gstkamosoqt5videosink.so share/applications/org.kde.kamoso.desktop share/icons/hicolor/128x128/apps/kamoso.png share/icons/hicolor/16x16/apps/kamoso.png share/icons/hicolor/22x22/apps/kamoso.png share/icons/hicolor/32x32/apps/kamoso.png share/icons/hicolor/48x48/apps/kamoso.png share/icons/hicolor/64x64/apps/kamoso.png share/icons/hicolor/scalable/actions/burst.svgz share/icons/hicolor/scalable/apps/kamoso.svgz share/knotifications5/kamoso.notifyrc share/locale/ar/LC_MESSAGES/kamoso.mo share/locale/bg/LC_MESSAGES/kamoso.mo share/locale/bs/LC_MESSAGES/kamoso.mo share/locale/ca/LC_MESSAGES/kamoso.mo share/locale/ca@valencia/LC_MESSAGES/kamoso.mo share/locale/cs/LC_MESSAGES/kamoso.mo share/locale/da/LC_MESSAGES/kamoso.mo share/locale/de/LC_MESSAGES/kamoso.mo share/locale/el/LC_MESSAGES/kamoso.mo share/locale/en_GB/LC_MESSAGES/kamoso.mo share/locale/eo/LC_MESSAGES/kamoso.mo share/locale/es/LC_MESSAGES/kamoso.mo share/locale/et/LC_MESSAGES/kamoso.mo share/locale/eu/LC_MESSAGES/kamoso.mo share/locale/fi/LC_MESSAGES/kamoso.mo share/locale/fr/LC_MESSAGES/kamoso.mo share/locale/ga/LC_MESSAGES/kamoso.mo share/locale/gl/LC_MESSAGES/kamoso.mo share/locale/hu/LC_MESSAGES/kamoso.mo share/locale/ia/LC_MESSAGES/kamoso.mo share/locale/id/LC_MESSAGES/kamoso.mo +share/locale/ie/LC_MESSAGES/kamoso.mo share/locale/is/LC_MESSAGES/kamoso.mo share/locale/it/LC_MESSAGES/kamoso.mo share/locale/ja/LC_MESSAGES/kamoso.mo share/locale/ka/LC_MESSAGES/kamoso.mo share/locale/kk/LC_MESSAGES/kamoso.mo share/locale/ko/LC_MESSAGES/kamoso.mo share/locale/lt/LC_MESSAGES/kamoso.mo share/locale/lv/LC_MESSAGES/kamoso.mo share/locale/mai/LC_MESSAGES/kamoso.mo share/locale/mr/LC_MESSAGES/kamoso.mo share/locale/nb/LC_MESSAGES/kamoso.mo share/locale/nds/LC_MESSAGES/kamoso.mo share/locale/nl/LC_MESSAGES/kamoso.mo share/locale/nn/LC_MESSAGES/kamoso.mo share/locale/pa/LC_MESSAGES/kamoso.mo share/locale/pl/LC_MESSAGES/kamoso.mo share/locale/pt/LC_MESSAGES/kamoso.mo share/locale/pt_BR/LC_MESSAGES/kamoso.mo share/locale/ro/LC_MESSAGES/kamoso.mo share/locale/ru/LC_MESSAGES/kamoso.mo share/locale/sk/LC_MESSAGES/kamoso.mo share/locale/sl/LC_MESSAGES/kamoso.mo share/locale/sv/LC_MESSAGES/kamoso.mo share/locale/tr/LC_MESSAGES/kamoso.mo share/locale/ug/LC_MESSAGES/kamoso.mo share/locale/uk/LC_MESSAGES/kamoso.mo share/locale/zh_CN/LC_MESSAGES/kamoso.mo share/locale/zh_TW/LC_MESSAGES/kamoso.mo share/metainfo/org.kde.kamoso.appdata.xml share/sounds/kamoso-shutter.wav diff --git a/multimedia/kdemultimedia-ffmpegthumbs/distinfo b/multimedia/kdemultimedia-ffmpegthumbs/distinfo index 3b902a9ca780..a4c656a446a3 100644 --- a/multimedia/kdemultimedia-ffmpegthumbs/distinfo +++ b/multimedia/kdemultimedia-ffmpegthumbs/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1677828099 -SHA256 (KDE/release-service/22.12.3/ffmpegthumbs-22.12.3.tar.xz) = faf033381fbd6ecac31f46395f66cc9d1d83ebbb5e8705895e954632f6e1c193 -SIZE (KDE/release-service/22.12.3/ffmpegthumbs-22.12.3.tar.xz) = 31364 +TIMESTAMP = 1681548300 +SHA256 (KDE/release-service/23.04.0/ffmpegthumbs-23.04.0.tar.xz) = cc8d04d9f7544e550d8e4b860df499e11d6295d59712bc4fde459d7b598c6f5c +SIZE (KDE/release-service/23.04.0/ffmpegthumbs-23.04.0.tar.xz) = 32576 diff --git a/multimedia/kdenlive/distinfo b/multimedia/kdenlive/distinfo index 69e5daa0ee3e..9448566c2e47 100644 --- a/multimedia/kdenlive/distinfo +++ b/multimedia/kdenlive/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1677828098 -SHA256 (KDE/release-service/22.12.3/kdenlive-22.12.3.tar.xz) = 72ee0cbbe3302f03170049c0e0e427a5017cf995f6e5f4585f399224627c3c69 -SIZE (KDE/release-service/22.12.3/kdenlive-22.12.3.tar.xz) = 12530760 +TIMESTAMP = 1681548302 +SHA256 (KDE/release-service/23.04.0/kdenlive-23.04.0.tar.xz) = eba17db62714e56eb9433499d559dab0657677c6876b0735a756b0d9afc48e6a +SIZE (KDE/release-service/23.04.0/kdenlive-23.04.0.tar.xz) = 12560336 diff --git a/multimedia/kdenlive/pkg-plist b/multimedia/kdenlive/pkg-plist index ff5dec5e94e9..43fe64618291 100644 --- a/multimedia/kdenlive/pkg-plist +++ b/multimedia/kdenlive/pkg-plist @@ -1,545 +1,566 @@ bin/kdenlive bin/kdenlive_render -%%QT_PLUGINDIR%%/mltpreview.so +%%QT_PLUGINDIR%%/kf5/thumbcreator/mltpreview.so man/man1/kdenlive.1.gz man/man1/kdenlive_render.1.gz share/applications/org.kde.kdenlive.desktop share/config.kcfg/kdenlivesettings.kcfg %%PORTDOCS%%%%DOCSDIR%%/Kdenlive/AUTHORS %%PORTDOCS%%%%DOCSDIR%%/Kdenlive/LICENSES/BSD-3-Clause.txt +%%PORTDOCS%%%%DOCSDIR%%/Kdenlive/LICENSES/BSL-1.0.txt +%%PORTDOCS%%%%DOCSDIR%%/Kdenlive/LICENSES/CC-BY-SA-4.0.txt %%PORTDOCS%%%%DOCSDIR%%/Kdenlive/LICENSES/CC0-1.0.txt %%PORTDOCS%%%%DOCSDIR%%/Kdenlive/LICENSES/GPL-2.0-only.txt -%%PORTDOCS%%%%DOCSDIR%%/Kdenlive/LICENSES/GPL-2.0-or-later.txt %%PORTDOCS%%%%DOCSDIR%%/Kdenlive/LICENSES/GPL-3.0-only.txt %%PORTDOCS%%%%DOCSDIR%%/Kdenlive/LICENSES/GPL-3.0-or-later.txt %%PORTDOCS%%%%DOCSDIR%%/Kdenlive/LICENSES/LGPL-3.0-only.txt %%PORTDOCS%%%%DOCSDIR%%/Kdenlive/LICENSES/LicenseRef-KDE-Accepted-GPL.txt %%PORTDOCS%%%%DOCSDIR%%/Kdenlive/LICENSES/LicenseRef-KDE-Accepted-LGPL.txt %%PORTDOCS%%%%DOCSDIR%%/Kdenlive/README.md share/icons/hicolor/128x128/apps/kdenlive.png share/icons/hicolor/128x128/mimetypes/application-x-kdenlivetitle.png share/icons/hicolor/16x16/actions/add-subtitle.svg share/icons/hicolor/16x16/actions/keyframe-add.svg share/icons/hicolor/16x16/actions/keyframe-disable.svg share/icons/hicolor/16x16/actions/keyframe-duplicate.svg share/icons/hicolor/16x16/actions/keyframe-next.svg share/icons/hicolor/16x16/actions/keyframe-previous.svg share/icons/hicolor/16x16/actions/keyframe-record.svg share/icons/hicolor/16x16/actions/keyframe-remove.svg share/icons/hicolor/16x16/actions/keyframe.svg share/icons/hicolor/16x16/apps/kdenlive.png share/icons/hicolor/22x22/actions/keyframe-add.svg share/icons/hicolor/22x22/actions/keyframe-disable.svg share/icons/hicolor/22x22/actions/keyframe-duplicate.svg share/icons/hicolor/22x22/actions/keyframe-next.svg share/icons/hicolor/22x22/actions/keyframe-previous.svg share/icons/hicolor/22x22/actions/keyframe-record.svg share/icons/hicolor/22x22/actions/keyframe-remove.svg share/icons/hicolor/22x22/actions/keyframe.svg share/icons/hicolor/22x22/apps/kdenlive.png share/icons/hicolor/256x256/apps/kdenlive.png share/icons/hicolor/32x32/apps/kdenlive.png share/icons/hicolor/32x32/mimetypes/application-x-kdenlivetitle.png share/icons/hicolor/48x48/apps/kdenlive.png share/icons/hicolor/64x64/apps/kdenlive.png share/icons/hicolor/64x64/mimetypes/application-x-kdenlivetitle.png share/icons/hicolor/scalable/actions/add-subtitle.svg share/icons/hicolor/scalable/apps/kdenlive.svgz share/icons/hicolor/scalable/mimetypes/application-x-kdenlive.svgz share/icons/hicolor/scalable/mimetypes/application-x-kdenlivetitle.svgz share/icons/hicolor/scalable/mimetypes/video-mlt-playlist.svgz +%%DATADIR%%/clipjobsettings.rc %%DATADIR%%/effect-templates/secondary_color_correction.xml %%DATADIR%%/effect-templates/shut_off.xml %%DATADIR%%/effects/acompressor.xml %%DATADIR%%/effects/aecho.xml %%DATADIR%%/effects/agate.xml %%DATADIR%%/effects/audiobalance.xml %%DATADIR%%/effects/audiolevelgraph.xml %%DATADIR%%/effects/audiomap.xml %%DATADIR%%/effects/audiopan.xml %%DATADIR%%/effects/audiospectrum.xml %%DATADIR%%/effects/audiowave.xml %%DATADIR%%/effects/audiowaveform.xml %%DATADIR%%/effects/avfilter_acontrast.xml %%DATADIR%%/effects/avfilter_acrusher.xml %%DATADIR%%/effects/avfilter_alimiter.xml %%DATADIR%%/effects/avfilter_allpass.xml %%DATADIR%%/effects/avfilter_aphaser.xml %%DATADIR%%/effects/avfilter_apulsator.xml %%DATADIR%%/effects/avfilter_atadenoise.xml %%DATADIR%%/effects/avfilter_avgblur.xml %%DATADIR%%/effects/avfilter_bandpass.xml %%DATADIR%%/effects/avfilter_bandreject.xml %%DATADIR%%/effects/avfilter_bass.xml %%DATADIR%%/effects/avfilter_bilateral.xml %%DATADIR%%/effects/avfilter_boxblur.xml %%DATADIR%%/effects/avfilter_bs2b.xml %%DATADIR%%/effects/avfilter_bwdif.xml %%DATADIR%%/effects/avfilter_cas.xml %%DATADIR%%/effects/avfilter_chromahold.xml %%DATADIR%%/effects/avfilter_chromanr.xml %%DATADIR%%/effects/avfilter_chromashift.xml %%DATADIR%%/effects/avfilter_colorbalance.xml %%DATADIR%%/effects/avfilter_colorchannelmixer.xml %%DATADIR%%/effects/avfilter_colorcontrast.xml %%DATADIR%%/effects/avfilter_colorcorrect.xml %%DATADIR%%/effects/avfilter_colorhold.xml %%DATADIR%%/effects/avfilter_colorize.xml %%DATADIR%%/effects/avfilter_colorlevels.xml %%DATADIR%%/effects/avfilter_colormatrix.xml %%DATADIR%%/effects/avfilter_colorspace.xml %%DATADIR%%/effects/avfilter_colortemperature.xml %%DATADIR%%/effects/avfilter_compand.xml %%DATADIR%%/effects/avfilter_compensationdelay.xml %%DATADIR%%/effects/avfilter_crossfeed.xml %%DATADIR%%/effects/avfilter_crystalizer.xml %%DATADIR%%/effects/avfilter_datascope.xml %%DATADIR%%/effects/avfilter_dcshift.xml %%DATADIR%%/effects/avfilter_dctdnoiz.xml %%DATADIR%%/effects/avfilter_deband.xml %%DATADIR%%/effects/avfilter_deblock.xml %%DATADIR%%/effects/avfilter_dedot.xml %%DATADIR%%/effects/avfilter_deesser.xml %%DATADIR%%/effects/avfilter_deflate.xml %%DATADIR%%/effects/avfilter_delogo.xml %%DATADIR%%/effects/avfilter_derain.xml %%DATADIR%%/effects/avfilter_despill.xml %%DATADIR%%/effects/avfilter_dilation.xml %%DATADIR%%/effects/avfilter_doubleweave.xml %%DATADIR%%/effects/avfilter_drawbox.xml %%DATADIR%%/effects/avfilter_drawgrid.xml %%DATADIR%%/effects/avfilter_edgedetect.xml %%DATADIR%%/effects/avfilter_elbg.xml %%DATADIR%%/effects/avfilter_epx.xml %%DATADIR%%/effects/avfilter_eq.xml %%DATADIR%%/effects/avfilter_equalizer.xml %%DATADIR%%/effects/avfilter_erosion.xml %%DATADIR%%/effects/avfilter_exposure.xml %%DATADIR%%/effects/avfilter_extrastereo.xml %%DATADIR%%/effects/avfilter_fftdnoiz.xml %%DATADIR%%/effects/avfilter_fftfilt.xml %%DATADIR%%/effects/avfilter_field.xml %%DATADIR%%/effects/avfilter_fieldorder.xml %%DATADIR%%/effects/avfilter_fillborders.xml %%DATADIR%%/effects/avfilter_flanger.xml %%DATADIR%%/effects/avfilter_framestep.xml %%DATADIR%%/effects/avfilter_fspp.xml %%DATADIR%%/effects/avfilter_gblur.xml %%DATADIR%%/effects/avfilter_graphmonitor.xml %%DATADIR%%/effects/avfilter_haas.xml %%DATADIR%%/effects/avfilter_hflip.xml %%DATADIR%%/effects/avfilter_highpass.xml %%DATADIR%%/effects/avfilter_highshelf.xml %%DATADIR%%/effects/avfilter_histeq.xml %%DATADIR%%/effects/avfilter_histogram.xml %%DATADIR%%/effects/avfilter_hqdn3d.xml %%DATADIR%%/effects/avfilter_hqx.xml %%DATADIR%%/effects/avfilter_il.xml %%DATADIR%%/effects/avfilter_inflate.xml %%DATADIR%%/effects/avfilter_kerneldeint.xml %%DATADIR%%/effects/avfilter_kirsch.xml %%DATADIR%%/effects/avfilter_lagfun.xml %%DATADIR%%/effects/avfilter_lenscorrection.xml %%DATADIR%%/effects/avfilter_limiter.xml %%DATADIR%%/effects/avfilter_loudnorm.xml %%DATADIR%%/effects/avfilter_lowpass.xml %%DATADIR%%/effects/avfilter_lowshelf.xml %%DATADIR%%/effects/avfilter_lut3d.xml %%DATADIR%%/effects/avfilter_mcdeint.xml %%DATADIR%%/effects/avfilter_median.xml %%DATADIR%%/effects/avfilter_monochrome.xml %%DATADIR%%/effects/avfilter_negate.xml %%DATADIR%%/effects/avfilter_noise.xml %%DATADIR%%/effects/avfilter_normalize.xml %%DATADIR%%/effects/avfilter_phase.xml %%DATADIR%%/effects/avfilter_photosensitivity.xml %%DATADIR%%/effects/avfilter_prewitt.xml %%DATADIR%%/effects/avfilter_random.xml %%DATADIR%%/effects/avfilter_removegrain.xml %%DATADIR%%/effects/avfilter_rgbashift.xml %%DATADIR%%/effects/avfilter_roberts.xml %%DATADIR%%/effects/avfilter_sab.xml %%DATADIR%%/effects/avfilter_scroll.xml %%DATADIR%%/effects/avfilter_selectivecolor.xml %%DATADIR%%/effects/avfilter_separatefields.xml %%DATADIR%%/effects/avfilter_setrange.xml %%DATADIR%%/effects/avfilter_shear.xml %%DATADIR%%/effects/avfilter_shuffleplanes.xml %%DATADIR%%/effects/avfilter_smartblur.xml %%DATADIR%%/effects/avfilter_sobel.xml %%DATADIR%%/effects/avfilter_sofalizer.xml %%DATADIR%%/effects/avfilter_sr.xml %%DATADIR%%/effects/avfilter_stereo3D.xml %%DATADIR%%/effects/avfilter_stereotools.xml %%DATADIR%%/effects/avfilter_stereowiden.xml %%DATADIR%%/effects/avfilter_tmix.xml %%DATADIR%%/effects/avfilter_transpose.xml %%DATADIR%%/effects/avfilter_unsharp.xml %%DATADIR%%/effects/avfilter_vaguedenoiser.xml %%DATADIR%%/effects/avfilter_vectorscope.xml %%DATADIR%%/effects/avfilter_vflip.xml %%DATADIR%%/effects/avfilter_vibrance.xml %%DATADIR%%/effects/avfilter_vibrato.xml %%DATADIR%%/effects/avfilter_w3fdif.xml %%DATADIR%%/effects/avfilter_waveform.xml %%DATADIR%%/effects/avfilter_weave.xml %%DATADIR%%/effects/avfilter_xbr.xml %%DATADIR%%/effects/avfilter_yadif.xml %%DATADIR%%/effects/avfilter_zoompan.xml %%DATADIR%%/effects/box_blur.xml %%DATADIR%%/effects/boxblur.xml %%DATADIR%%/effects/brightness.xml %%DATADIR%%/effects/channelcopy.xml %%DATADIR%%/effects/charcoal.xml %%DATADIR%%/effects/chroma.xml %%DATADIR%%/effects/chroma_hold.xml %%DATADIR%%/effects/copychannelstostereo.xml %%DATADIR%%/effects/crop.xml %%DATADIR%%/effects/dance.xml %%DATADIR%%/effects/dust.xml %%DATADIR%%/effects/dynamic_loudness.xml %%DATADIR%%/effects/dynamictext.xml %%DATADIR%%/effects/fade_from_black.xml %%DATADIR%%/effects/fade_to_black.xml %%DATADIR%%/effects/fadein.xml %%DATADIR%%/effects/fadeout.xml %%DATADIR%%/effects/freeze.xml %%DATADIR%%/effects/frei0r_B.xml %%DATADIR%%/effects/frei0r_G.xml %%DATADIR%%/effects/frei0r_R.xml %%DATADIR%%/effects/frei0r_alpha0ps.xml %%DATADIR%%/effects/frei0r_alphagrad.xml %%DATADIR%%/effects/frei0r_alphaspot.xml %%DATADIR%%/effects/frei0r_balanc0r.xml %%DATADIR%%/effects/frei0r_baltan.xml %%DATADIR%%/effects/frei0r_bezier_curves.xml %%DATADIR%%/effects/frei0r_bgsubtract0r.xml %%DATADIR%%/effects/frei0r_bigsh0t_eq_mask.xml %%DATADIR%%/effects/frei0r_bigsh0t_eq_to_rect.xml %%DATADIR%%/effects/frei0r_bigsh0t_eq_to_stereo.xml %%DATADIR%%/effects/frei0r_bigsh0t_hemi_to_eq.xml %%DATADIR%%/effects/frei0r_bigsh0t_rect_to_eq.xml %%DATADIR%%/effects/frei0r_bigsh0t_stabilize_360.xml %%DATADIR%%/effects/frei0r_bigsh0t_transform_360.xml %%DATADIR%%/effects/frei0r_brightness.xml %%DATADIR%%/effects/frei0r_c0rners.xml %%DATADIR%%/effects/frei0r_cairogradient.xml %%DATADIR%%/effects/frei0r_cairoimagegrid.xml %%DATADIR%%/effects/frei0r_cartoon.xml %%DATADIR%%/effects/frei0r_cluster.xml %%DATADIR%%/effects/frei0r_colgate.xml %%DATADIR%%/effects/frei0r_coloradj_rgb.xml %%DATADIR%%/effects/frei0r_colordistance.xml %%DATADIR%%/effects/frei0r_colorize.xml %%DATADIR%%/effects/frei0r_colortap.xml %%DATADIR%%/effects/frei0r_contrast0r.xml %%DATADIR%%/effects/frei0r_curves.xml %%DATADIR%%/effects/frei0r_d90stairsteppingfix.xml %%DATADIR%%/effects/frei0r_defish0r.xml %%DATADIR%%/effects/frei0r_delay0r.xml %%DATADIR%%/effects/frei0r_delaygrab.xml %%DATADIR%%/effects/frei0r_distort0r.xml %%DATADIR%%/effects/frei0r_dither.xml %%DATADIR%%/effects/frei0r_edgeglow.xml %%DATADIR%%/effects/frei0r_emboss.xml %%DATADIR%%/effects/frei0r_equaliz0r.xml %%DATADIR%%/effects/frei0r_facebl0r.xml %%DATADIR%%/effects/frei0r_facedetect.xml %%DATADIR%%/effects/frei0r_flippo.xml %%DATADIR%%/effects/frei0r_glitch0r.xml %%DATADIR%%/effects/frei0r_glow.xml %%DATADIR%%/effects/frei0r_hqdn3d.xml %%DATADIR%%/effects/frei0r_hueshift0r.xml %%DATADIR%%/effects/frei0r_iirblur.xml %%DATADIR%%/effects/frei0r_keyspillm0pup.xml %%DATADIR%%/effects/frei0r_lenscorrection.xml %%DATADIR%%/effects/frei0r_letterb0xed.xml %%DATADIR%%/effects/frei0r_levels.xml %%DATADIR%%/effects/frei0r_lightgraffiti.xml %%DATADIR%%/effects/frei0r_luminance.xml %%DATADIR%%/effects/frei0r_mask0mate.xml %%DATADIR%%/effects/frei0r_medians.xml %%DATADIR%%/effects/frei0r_nervous.xml %%DATADIR%%/effects/frei0r_nosync0r.xml %%DATADIR%%/effects/frei0r_pixeliz0r.xml %%DATADIR%%/effects/frei0r_pr0be.xml %%DATADIR%%/effects/frei0r_pr0file.xml %%DATADIR%%/effects/frei0r_primaries.xml %%DATADIR%%/effects/frei0r_rgbnoise.xml %%DATADIR%%/effects/frei0r_rgbparade.xml %%DATADIR%%/effects/frei0r_rgbsplit0r.xml %%DATADIR%%/effects/frei0r_saturat0r.xml %%DATADIR%%/effects/frei0r_scale0tilt.xml %%DATADIR%%/effects/frei0r_scanline0r.xml %%DATADIR%%/effects/frei0r_select0r.xml %%DATADIR%%/effects/frei0r_sharpness.xml %%DATADIR%%/effects/frei0r_sigmoidaltransfer.xml %%DATADIR%%/effects/frei0r_sobel.xml %%DATADIR%%/effects/frei0r_softglow.xml %%DATADIR%%/effects/frei0r_sopsat.xml %%DATADIR%%/effects/frei0r_squareblur.xml %%DATADIR%%/effects/frei0r_tehroxx0r.xml %%DATADIR%%/effects/frei0r_three_point_balance.xml %%DATADIR%%/effects/frei0r_threelay0r.xml %%DATADIR%%/effects/frei0r_threshold0r.xml %%DATADIR%%/effects/frei0r_timeout.xml %%DATADIR%%/effects/frei0r_tint0r.xml %%DATADIR%%/effects/frei0r_transparency.xml %%DATADIR%%/effects/frei0r_twolay0r.xml %%DATADIR%%/effects/frei0r_vectorscope.xml %%DATADIR%%/effects/frei0r_vertigo.xml %%DATADIR%%/effects/frei0r_vignette.xml %%DATADIR%%/effects/gain.xml %%DATADIR%%/effects/gamma.xml %%DATADIR%%/effects/gpstext.xml %%DATADIR%%/effects/grain.xml %%DATADIR%%/effects/greyscale.xml %%DATADIR%%/effects/invert.xml %%DATADIR%%/effects/ladspa_declipper.xml %%DATADIR%%/effects/ladspa_equalizer.xml %%DATADIR%%/effects/ladspa_equalizer_15.xml %%DATADIR%%/effects/ladspa_librnnoise.xml %%DATADIR%%/effects/ladspa_limiter.xml %%DATADIR%%/effects/ladspa_phaser.xml %%DATADIR%%/effects/ladspa_pitch.xml %%DATADIR%%/effects/ladspa_pitch_scale.xml %%DATADIR%%/effects/ladspa_rate_scale.xml %%DATADIR%%/effects/ladspa_reverb.xml %%DATADIR%%/effects/ladspa_room_reverb.xml %%DATADIR%%/effects/ladspa_vinyl.xml %%DATADIR%%/effects/lift_gamma_gain.xml %%DATADIR%%/effects/lightshow.xml %%DATADIR%%/effects/loudness.xml %%DATADIR%%/effects/luma.xml %%DATADIR%%/effects/lumaliftgaingamma.xml %%DATADIR%%/effects/mask_apply.xml %%DATADIR%%/effects/mask_start.xml %%DATADIR%%/effects/mask_start_frei0r_alphaspot.xml %%DATADIR%%/effects/mask_start_frei0r_select0r.xml %%DATADIR%%/effects/mask_start_rotoscoping.xml %%DATADIR%%/effects/mask_start_shape.xml %%DATADIR%%/effects/mirror.xml %%DATADIR%%/effects/mono.xml %%DATADIR%%/effects/movit_blur.xml %%DATADIR%%/effects/movit_deconvolution_sharpen.xml %%DATADIR%%/effects/movit_diffusion.xml %%DATADIR%%/effects/movit_flip.xml %%DATADIR%%/effects/movit_glow.xml %%DATADIR%%/effects/movit_lift_gamma_gain.xml %%DATADIR%%/effects/movit_mirror.xml %%DATADIR%%/effects/movit_opacity.xml %%DATADIR%%/effects/movit_rect.xml %%DATADIR%%/effects/movit_saturation.xml %%DATADIR%%/effects/movit_unsharp_mask.xml %%DATADIR%%/effects/movit_vignette.xml %%DATADIR%%/effects/movit_white_balance.xml %%DATADIR%%/effects/mute.xml %%DATADIR%%/effects/normalise.xml %%DATADIR%%/effects/obscure.xml %%DATADIR%%/effects/oldfilm.xml %%DATADIR%%/effects/pan_zoom.xml %%DATADIR%%/effects/pillar_echo.xml %%DATADIR%%/effects/qtblend.xml %%DATADIR%%/effects/qtcrop.xml %%DATADIR%%/effects/rboctaveshift.xml %%DATADIR%%/effects/rbpitchscale.xml %%DATADIR%%/effects/rotation.xml %%DATADIR%%/effects/rotation_keyframable.xml %%DATADIR%%/effects/rotoscoping.xml %%DATADIR%%/effects/scratchlines.xml %%DATADIR%%/effects/sepia.xml %%DATADIR%%/effects/shape.xml %%DATADIR%%/effects/sox_band.xml %%DATADIR%%/effects/sox_bass.xml %%DATADIR%%/effects/sox_echo.xml %%DATADIR%%/effects/sox_flanger.xml %%DATADIR%%/effects/sox_gain.xml %%DATADIR%%/effects/sox_phaser.xml %%DATADIR%%/effects/sox_stretch.xml %%DATADIR%%/effects/speed.xml %%DATADIR%%/effects/spot_remover.xml %%DATADIR%%/effects/subtitles.xml %%DATADIR%%/effects/swapchannels.xml %%DATADIR%%/effects/tcolor.xml %%DATADIR%%/effects/threshold.xml +%%DATADIR%%/effects/timer.xml %%DATADIR%%/effects/tracker.xml %%DATADIR%%/effects/typewriter.xml %%DATADIR%%/effects/update/frei0r.balanc0r.js %%DATADIR%%/effects/update/frei0r.cartoon.js %%DATADIR%%/effects/update/frei0r.curves.js %%DATADIR%%/effects/update/frei0r.levels.js %%DATADIR%%/effects/update/frei0r.lightgraffiti.js %%DATADIR%%/effects/update/frei0r.select0r.js %%DATADIR%%/effects/update/frei0r.sopsat.js %%DATADIR%%/effects/update/frei0r.vertigo.js %%DATADIR%%/effects/vidstab.xml %%DATADIR%%/effects/vignette.xml %%DATADIR%%/effects/volume.xml %%DATADIR%%/effects/wave.xml %%DATADIR%%/encodingprofiles.rc %%DATADIR%%/export/profiles.xml %%DATADIR%%/externalproxies.rc %%DATADIR%%/generators/count.xml %%DATADIR%%/generators/frei0r_test_pat_b.xml %%DATADIR%%/generators/noise.xml %%DATADIR%%/kdenlivedefaultlayouts.rc %%DATADIR%%/kdenliveeffectscategory.rc %%DATADIR%%/kdenlivetranscodingrc %%DATADIR%%/lumas/HD/bi-linear_x.pgm %%DATADIR%%/lumas/HD/bi-linear_y.pgm %%DATADIR%%/lumas/HD/burst.pgm %%DATADIR%%/lumas/HD/checkerboard_small.pgm %%DATADIR%%/lumas/HD/clock.pgm %%DATADIR%%/lumas/HD/cloud.pgm %%DATADIR%%/lumas/HD/curtain.pgm %%DATADIR%%/lumas/HD/horizontal_blinds.pgm %%DATADIR%%/lumas/HD/linear_x.pgm %%DATADIR%%/lumas/HD/linear_y.pgm %%DATADIR%%/lumas/HD/radial-bars.pgm %%DATADIR%%/lumas/HD/radial.pgm %%DATADIR%%/lumas/HD/spiral.pgm %%DATADIR%%/lumas/HD/spiral2.pgm %%DATADIR%%/lumas/HD/square.pgm %%DATADIR%%/lumas/HD/square2-bars.pgm %%DATADIR%%/lumas/HD/square2.pgm %%DATADIR%%/lumas/HD/symmetric_clock.pgm %%DATADIR%%/lumas/PAL/bi-linear_x.pgm %%DATADIR%%/lumas/PAL/bi-linear_y.pgm %%DATADIR%%/lumas/PAL/burst.pgm %%DATADIR%%/lumas/PAL/checkerboard_small.pgm %%DATADIR%%/lumas/PAL/clock.pgm %%DATADIR%%/lumas/PAL/cloud.pgm %%DATADIR%%/lumas/PAL/curtain.pgm %%DATADIR%%/lumas/PAL/horizontal_blinds.pgm %%DATADIR%%/lumas/PAL/linear_x.pgm %%DATADIR%%/lumas/PAL/linear_y.pgm %%DATADIR%%/lumas/PAL/radial-bars.pgm %%DATADIR%%/lumas/PAL/radial.pgm %%DATADIR%%/lumas/PAL/spiral.pgm %%DATADIR%%/lumas/PAL/spiral2.pgm %%DATADIR%%/lumas/PAL/square.pgm %%DATADIR%%/lumas/PAL/square2-bars.pgm %%DATADIR%%/lumas/PAL/square2.pgm %%DATADIR%%/lumas/PAL/symmetric_clock.pgm %%DATADIR%%/luts/BLUE_TINT.cube %%DATADIR%%/luts/CINEMATIC.cube %%DATADIR%%/luts/GREEN_TINT.cube %%DATADIR%%/luts/TEAL_ORANGE.cube %%DATADIR%%/meta_magiclantern.png %%DATADIR%%/profiles/dci_2160p_2398 %%DATADIR%%/profiles/dci_2160p_24 %%DATADIR%%/profiles/dci_2160p_25 %%DATADIR%%/profiles/dci_2160p_2997 %%DATADIR%%/profiles/dci_2160p_30 %%DATADIR%%/profiles/dci_2160p_50 %%DATADIR%%/profiles/dci_2160p_5994 %%DATADIR%%/profiles/dci_2160p_60 %%DATADIR%%/resourceproviders/archiveorg.json %%DATADIR%%/resourceproviders/freesound.json %%DATADIR%%/resourceproviders/pexels_photo.json %%DATADIR%%/resourceproviders/pexels_video.json %%DATADIR%%/resourceproviders/pixabay_photo.json +%%DATADIR%%/scripts/checkgpu.py %%DATADIR%%/scripts/checkpackages.py %%DATADIR%%/scripts/otiointerface.py %%DATADIR%%/scripts/speech.py %%DATADIR%%/scripts/speechtotext.py +%%DATADIR%%/scripts/whispertosrt.py +%%DATADIR%%/scripts/whispertotext.py %%DATADIR%%/shortcuts/Premiere %%DATADIR%%/slideanimations.rc %%DATADIR%%/titles/simple-scroll.kdenlivetitle %%DATADIR%%/titles/simple-with-date.kdenlivetitle %%DATADIR%%/titles/simple.kdenlivetitle %%DATADIR%%/transitions/affine.xml %%DATADIR%%/transitions/composite.xml %%DATADIR%%/transitions/dissolve.xml %%DATADIR%%/transitions/frei0r_addition.xml %%DATADIR%%/transitions/frei0r_addition_alpha.xml %%DATADIR%%/transitions/frei0r_alphaatop.xml %%DATADIR%%/transitions/frei0r_alphain.xml %%DATADIR%%/transitions/frei0r_alphaout.xml %%DATADIR%%/transitions/frei0r_alphaover.xml %%DATADIR%%/transitions/frei0r_alphaxor.xml %%DATADIR%%/transitions/frei0r_burn.xml %%DATADIR%%/transitions/frei0r_cairoaffineblend.xml %%DATADIR%%/transitions/frei0r_cairoblend.xml %%DATADIR%%/transitions/frei0r_color_only.xml %%DATADIR%%/transitions/frei0r_darken.xml %%DATADIR%%/transitions/frei0r_difference.xml %%DATADIR%%/transitions/frei0r_divide.xml %%DATADIR%%/transitions/frei0r_dodge.xml %%DATADIR%%/transitions/frei0r_grain_extract.xml %%DATADIR%%/transitions/frei0r_grain_merge.xml %%DATADIR%%/transitions/frei0r_hardlight.xml %%DATADIR%%/transitions/frei0r_hue.xml %%DATADIR%%/transitions/frei0r_lighten.xml %%DATADIR%%/transitions/frei0r_multiply.xml %%DATADIR%%/transitions/frei0r_overlay.xml +%%DATADIR%%/transitions/frei0r_push-down.xml +%%DATADIR%%/transitions/frei0r_push-left.xml +%%DATADIR%%/transitions/frei0r_push-right.xml +%%DATADIR%%/transitions/frei0r_push-up.xml %%DATADIR%%/transitions/frei0r_saturation.xml %%DATADIR%%/transitions/frei0r_screen.xml +%%DATADIR%%/transitions/frei0r_slide-down.xml +%%DATADIR%%/transitions/frei0r_slide-left.xml +%%DATADIR%%/transitions/frei0r_slide-right.xml +%%DATADIR%%/transitions/frei0r_slide-up.xml %%DATADIR%%/transitions/frei0r_softlight.xml %%DATADIR%%/transitions/frei0r_subtract.xml %%DATADIR%%/transitions/frei0r_uvmap.xml %%DATADIR%%/transitions/frei0r_value.xml +%%DATADIR%%/transitions/frei0r_wipe-barn-door-h.xml +%%DATADIR%%/transitions/frei0r_wipe-barn-door-v.xml +%%DATADIR%%/transitions/frei0r_wipe-circle.xml +%%DATADIR%%/transitions/frei0r_wipe-down.xml +%%DATADIR%%/transitions/frei0r_wipe-left.xml +%%DATADIR%%/transitions/frei0r_wipe-rect.xml +%%DATADIR%%/transitions/frei0r_wipe-right.xml +%%DATADIR%%/transitions/frei0r_wipe-up.xml %%DATADIR%%/transitions/luma.xml %%DATADIR%%/transitions/matte.xml %%DATADIR%%/transitions/mix.xml %%DATADIR%%/transitions/qtblend.xml %%DATADIR%%/transitions/region.xml %%DATADIR%%/transitions/slide.xml %%DATADIR%%/transitions/vqm.xml %%DATADIR%%/transitions/wipe.xml share/knotifications5/kdenlive.notifyrc share/knsrcfiles/kdenlive_effects.knsrc share/knsrcfiles/kdenlive_keyboardschemes.knsrc share/knsrcfiles/kdenlive_luts.knsrc share/knsrcfiles/kdenlive_renderprofiles.knsrc share/knsrcfiles/kdenlive_titles.knsrc share/knsrcfiles/kdenlive_wipes.knsrc -share/kservices5/mltpreview.desktop share/kxmlgui5/kdenlive/kdenliveui.rc share/locale/ar/LC_MESSAGES/kdenlive.mo share/locale/az/LC_MESSAGES/kdenlive.mo share/locale/bs/LC_MESSAGES/kdenlive.mo share/locale/ca/LC_MESSAGES/kdenlive.mo share/locale/ca@valencia/LC_MESSAGES/kdenlive.mo share/locale/cs/LC_MESSAGES/kdenlive.mo share/locale/da/LC_MESSAGES/kdenlive.mo share/locale/de/LC_MESSAGES/kdenlive.mo share/locale/el/LC_MESSAGES/kdenlive.mo share/locale/en_GB/LC_MESSAGES/kdenlive.mo share/locale/es/LC_MESSAGES/kdenlive.mo share/locale/et/LC_MESSAGES/kdenlive.mo share/locale/eu/LC_MESSAGES/kdenlive.mo share/locale/fi/LC_MESSAGES/kdenlive.mo share/locale/fr/LC_MESSAGES/kdenlive.mo share/locale/ga/LC_MESSAGES/kdenlive.mo share/locale/gl/LC_MESSAGES/kdenlive.mo share/locale/he/LC_MESSAGES/kdenlive.mo share/locale/hr/LC_MESSAGES/kdenlive.mo share/locale/hu/LC_MESSAGES/kdenlive.mo share/locale/id/LC_MESSAGES/kdenlive.mo share/locale/it/LC_MESSAGES/kdenlive.mo share/locale/ja/LC_MESSAGES/kdenlive.mo share/locale/ka/LC_MESSAGES/kdenlive.mo share/locale/ko/LC_MESSAGES/kdenlive.mo share/locale/lt/LC_MESSAGES/kdenlive.mo share/locale/mr/LC_MESSAGES/kdenlive.mo share/locale/nb/LC_MESSAGES/kdenlive.mo share/locale/nds/LC_MESSAGES/kdenlive.mo share/locale/nl/LC_MESSAGES/kdenlive.mo share/locale/pl/LC_MESSAGES/kdenlive.mo share/locale/pt/LC_MESSAGES/kdenlive.mo share/locale/pt_BR/LC_MESSAGES/kdenlive.mo share/locale/ro/LC_MESSAGES/kdenlive.mo share/locale/ru/LC_MESSAGES/kdenlive.mo share/locale/sk/LC_MESSAGES/kdenlive.mo share/locale/sl/LC_MESSAGES/kdenlive.mo share/locale/sv/LC_MESSAGES/kdenlive.mo share/locale/tr/LC_MESSAGES/kdenlive.mo share/locale/ug/LC_MESSAGES/kdenlive.mo share/locale/uk/LC_MESSAGES/kdenlive.mo share/locale/zh_CN/LC_MESSAGES/kdenlive.mo share/locale/zh_TW/LC_MESSAGES/kdenlive.mo share/metainfo/org.kde.kdenlive.appdata.xml share/mime/packages/org.kde.kdenlive.xml share/mime/packages/westley.xml share/qlogging-categories5/kdenlive.categories diff --git a/net-im/kaccounts-integration/Makefile b/net-im/kaccounts-integration/Makefile index 9bf11365a359..069f829bfd1a 100644 --- a/net-im/kaccounts-integration/Makefile +++ b/net-im/kaccounts-integration/Makefile @@ -1,25 +1,26 @@ PORTNAME= kaccounts-integration DISTVERSION= ${KDE_APPLICATIONS_VERSION} CATEGORIES= net-im kde kde-applications MAINTAINER= kde@FreeBSD.org COMMENT= System to administer web accounts for the KDE desktop WWW= https://projects.kde.org/projects/kdereview/kaccounts-integration +BUILD_DEPENDS= ${LOCALBASE}/include/qcoro5/qcoro/qcoro.h:devel/qcoro@qt5 LIB_DEPENDS= libaccounts-glib.so:net-im/libaccounts-glib \ libaccounts-qt5.so:net-im/libaccounts-qt5 \ liboauth2plugin.so:sysutils/signon-plugin-oauth2 \ libsignon-qt5.so:sysutils/signon-qt5 \ libkeyring-kwallet.so:sysutils/signon-kwallet-extension RUN_DEPENDS= signon-ui:sysutils/signon-ui USES= cmake compiler:c++11-lang gettext pkgconfig kde:5 \ qt:5 tar:xz USE_KDE= auth codecs config configwidgets coreaddons dbusaddons \ i18n iconthemes kcmutils kdeclarative kio service wallet widgetsaddons \ akonadi \ ecm:build USE_QT= concurrent core dbus declarative gui network widgets xml \ buildtools:build qmake:build .include diff --git a/net-im/kaccounts-integration/distinfo b/net-im/kaccounts-integration/distinfo index 1d999939ea02..085dbc336152 100644 --- a/net-im/kaccounts-integration/distinfo +++ b/net-im/kaccounts-integration/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1677828115 -SHA256 (KDE/release-service/22.12.3/kaccounts-integration-22.12.3.tar.xz) = caa1b87edd65647b45901887d14397f0d07c99c13feaf07caf32af7d4e9de866 -SIZE (KDE/release-service/22.12.3/kaccounts-integration-22.12.3.tar.xz) = 89072 +TIMESTAMP = 1681548463 +SHA256 (KDE/release-service/23.04.0/kaccounts-integration-23.04.0.tar.xz) = 9a068cf7579ca376a27abee31ca0b2a6544b0a08d1f204d88a4833c41d8ae698 +SIZE (KDE/release-service/23.04.0/kaccounts-integration-23.04.0.tar.xz) = 88764 diff --git a/net-im/kaccounts-integration/pkg-plist b/net-im/kaccounts-integration/pkg-plist index f60c5858c413..73143a422320 100644 --- a/net-im/kaccounts-integration/pkg-plist +++ b/net-im/kaccounts-integration/pkg-plist @@ -1,87 +1,88 @@ include/KAccounts/AccountServiceToggleJob include/KAccounts/AccountsModel include/KAccounts/ChangeAccountDisplayNameJob include/KAccounts/Core include/KAccounts/CreateAccountJob include/KAccounts/GetCredentialsJob include/KAccounts/KAccountsDPlugin include/KAccounts/KAccountsUiPlugin include/KAccounts/ProvidersModel include/KAccounts/RemoveAccountJob include/KAccounts/ServicesModel include/KAccounts/accountservicetogglejob.h include/KAccounts/accountsmodel.h include/KAccounts/changeaccountdisplaynamejob.h include/KAccounts/core.h include/KAccounts/createaccountjob.h include/KAccounts/getcredentialsjob.h include/KAccounts/kaccounts_export.h include/KAccounts/kaccounts_version.h include/KAccounts/kaccountsdplugin.h include/KAccounts/kaccountsuiplugin.h include/KAccounts/providersmodel.h include/KAccounts/removeaccountjob.h include/KAccounts/servicesmodel.h lib/cmake/KAccounts/KAccountsConfig.cmake lib/cmake/KAccounts/KAccountsConfigVersion.cmake lib/cmake/KAccounts/KAccountsMacros.cmake lib/cmake/KAccounts/KAccountsTargets-%%CMAKE_BUILD_TYPE%%.cmake lib/cmake/KAccounts/KAccountsTargets.cmake lib/libkaccounts.so lib/libkaccounts.so.2 lib/libkaccounts.so.%%KDE_APPLICATIONS_VERSION%% %%QT_PLUGINDIR%%/kaccounts/daemonplugins/kaccounts_kio_webdav_plugin.so %%QT_PLUGINDIR%%/kf5/kded/kded_accounts.so %%QT_PLUGINDIR%%/plasma/kcms/systemsettings/kcm_kaccounts.so %%QT_QMLDIR%%/org/kde/kaccounts/libkaccountsdeclarativeplugin.so %%QT_QMLDIR%%/org/kde/kaccounts/qmldir +share/applications/kcm_kaccounts.desktop share/kpackage/kcms/kcm_kaccounts/contents/ui/AccountDetails.qml share/kpackage/kcms/kcm_kaccounts/contents/ui/AvailableAccounts.qml share/kpackage/kcms/kcm_kaccounts/contents/ui/MessageBoxSheet.qml share/kpackage/kcms/kcm_kaccounts/contents/ui/RemoveAccountDialog.qml share/kpackage/kcms/kcm_kaccounts/contents/ui/RenameAccountDialog.qml share/kpackage/kcms/kcm_kaccounts/contents/ui/main.qml share/locale/ar/LC_MESSAGES/kaccounts-integration.mo share/locale/az/LC_MESSAGES/kaccounts-integration.mo share/locale/bg/LC_MESSAGES/kaccounts-integration.mo share/locale/bs/LC_MESSAGES/kaccounts-integration.mo share/locale/ca/LC_MESSAGES/kaccounts-integration.mo share/locale/ca@valencia/LC_MESSAGES/kaccounts-integration.mo share/locale/cs/LC_MESSAGES/kaccounts-integration.mo share/locale/da/LC_MESSAGES/kaccounts-integration.mo share/locale/de/LC_MESSAGES/kaccounts-integration.mo share/locale/el/LC_MESSAGES/kaccounts-integration.mo share/locale/en_GB/LC_MESSAGES/kaccounts-integration.mo share/locale/es/LC_MESSAGES/kaccounts-integration.mo share/locale/et/LC_MESSAGES/kaccounts-integration.mo share/locale/eu/LC_MESSAGES/kaccounts-integration.mo share/locale/fi/LC_MESSAGES/kaccounts-integration.mo share/locale/fr/LC_MESSAGES/kaccounts-integration.mo share/locale/gl/LC_MESSAGES/kaccounts-integration.mo share/locale/hu/LC_MESSAGES/kaccounts-integration.mo share/locale/ia/LC_MESSAGES/kaccounts-integration.mo share/locale/id/LC_MESSAGES/kaccounts-integration.mo share/locale/it/LC_MESSAGES/kaccounts-integration.mo share/locale/ja/LC_MESSAGES/kaccounts-integration.mo share/locale/ka/LC_MESSAGES/kaccounts-integration.mo share/locale/ko/LC_MESSAGES/kaccounts-integration.mo share/locale/lt/LC_MESSAGES/kaccounts-integration.mo share/locale/nl/LC_MESSAGES/kaccounts-integration.mo share/locale/nn/LC_MESSAGES/kaccounts-integration.mo share/locale/pa/LC_MESSAGES/kaccounts-integration.mo share/locale/pl/LC_MESSAGES/kaccounts-integration.mo share/locale/pt/LC_MESSAGES/kaccounts-integration.mo share/locale/pt_BR/LC_MESSAGES/kaccounts-integration.mo share/locale/ro/LC_MESSAGES/kaccounts-integration.mo share/locale/ru/LC_MESSAGES/kaccounts-integration.mo share/locale/sk/LC_MESSAGES/kaccounts-integration.mo share/locale/sl/LC_MESSAGES/kaccounts-integration.mo share/locale/sr/LC_MESSAGES/kaccounts-integration.mo share/locale/sr@ijekavian/LC_MESSAGES/kaccounts-integration.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kaccounts-integration.mo share/locale/sr@latin/LC_MESSAGES/kaccounts-integration.mo share/locale/sv/LC_MESSAGES/kaccounts-integration.mo share/locale/tr/LC_MESSAGES/kaccounts-integration.mo share/locale/uk/LC_MESSAGES/kaccounts-integration.mo share/locale/zh_CN/LC_MESSAGES/kaccounts-integration.mo share/locale/zh_TW/LC_MESSAGES/kaccounts-integration.mo diff --git a/net-im/kaccounts-providers/distinfo b/net-im/kaccounts-providers/distinfo index 20e02fa4f02b..ecf68d48f3fb 100644 --- a/net-im/kaccounts-providers/distinfo +++ b/net-im/kaccounts-providers/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1677828108 -SHA256 (KDE/release-service/22.12.3/kaccounts-providers-22.12.3.tar.xz) = 059437f8bfeacb06d3987b9245710cd92c5a2b87d8490644f6f026ae887034f4 -SIZE (KDE/release-service/22.12.3/kaccounts-providers-22.12.3.tar.xz) = 65976 +TIMESTAMP = 1681548464 +SHA256 (KDE/release-service/23.04.0/kaccounts-providers-23.04.0.tar.xz) = cf37813acf5b1895d5a6d2315c60f186ccd7b798ef7bb3b0ad98bd6e29547b1e +SIZE (KDE/release-service/23.04.0/kaccounts-providers-23.04.0.tar.xz) = 66284 diff --git a/net-im/kopete/distinfo b/net-im/kopete/distinfo index 0e686527ebca..8d6a964af27a 100644 --- a/net-im/kopete/distinfo +++ b/net-im/kopete/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1677828111 -SHA256 (KDE/release-service/22.12.3/kopete-22.12.3.tar.xz) = 15d408046284d9b259440e16f727c95ebcc3c0c1b5a41ae12c9a4b0226cb07e5 -SIZE (KDE/release-service/22.12.3/kopete-22.12.3.tar.xz) = 10280244 +TIMESTAMP = 1681548462 +SHA256 (KDE/release-service/23.04.0/kopete-23.04.0.tar.xz) = 3f5e12f268f4a721c8482e1d2b8a06b944cd57e3decba9284efed47f4cd4c370 +SIZE (KDE/release-service/23.04.0/kopete-23.04.0.tar.xz) = 10144860 diff --git a/net-im/ktp-accounts-kcm/Makefile b/net-im/ktp-accounts-kcm/Makefile index 5b43460377c6..450914d8bbf1 100644 --- a/net-im/ktp-accounts-kcm/Makefile +++ b/net-im/ktp-accounts-kcm/Makefile @@ -1,45 +1,44 @@ PORTNAME= ktp-accounts-kcm DISTVERSION= ${KDE_APPLICATIONS_VERSION} CATEGORIES= net-im kde kde-applications MAINTAINER= kde@FreeBSD.org COMMENT= KDE instant messaging account management module WWW= https://community.kde.org/KTp LICENSE= LGPL21+ LICENSE_FILE= ${WRKSRC}/COPYING LIB_DEPENDS= libaccounts-qt5.so:net-im/libaccounts-qt5 \ libkaccounts.so:net-im/kaccounts-integration \ libtelepathy-qt5.so:net-im/telepathy-qt \ libtelepathy-logger-qt.so:net-im/telepathy-logger-qt5 \ libKTpCommonInternals.so:net-im/ktp-common-internals \ - libKF5AkonadiPrivate.so:databases/akonadi \ libsignon-qt5.so:sysutils/signon-qt5 RUN_DEPENDS= ${KDE_PREFIX}/bin/ktp-contactlist:net-im/ktp-contact-list \ ${QT_PLUGINDIR}/kaccounts/ui/owncloud_plugin_kaccounts.so:net-im/kaccounts-providers \ accounts-qml-module>=0:sysutils/accounts-qml-module -USES= compiler:c++11-lang cmake gettext gnome kde:5 \ - pkgconfig qt:5 tar:xz +USES= cmake compiler:c++11-lang gettext gnome kde:5 pkgconfig qt:5 \ + tar:xz USE_GNOME= intltool -USE_KDE= auth codecs config configwidgets coreaddons i18n \ +USE_KDE= akonadi auth codecs config configwidgets coreaddons i18n \ iconthemes itemviews kcmutils kio notifications notifyconfig \ service texteditor wallet widgetsaddons windowsystem \ ecm:build USE_QT= core dbus declarative gui network sql widgets xml \ buildtools:build qmake:build USE_LDCONFIG= yes OPTIONS_DEFINE= IRC JABBER SALUT DOCS OPTIONS_DEFAULT=JABBER IRC_DESC= Internet Relay Chat support IRC_RUN_DEPENDS= ${LOCALBASE}/libexec/telepathy-idle:net-im/telepathy-idle JABBER_RUN_DEPENDS= ${LOCALBASE}/libexec/telepathy-gabble:net-im/telepathy-gabble SALUT_DESC= Link-local (serverless) XMPP support SALUT_RUN_DEPENDS= ${LOCALBASE}/libexec/telepathy-salut:net-im/telepathy-salut .include diff --git a/net-im/ktp-accounts-kcm/distinfo b/net-im/ktp-accounts-kcm/distinfo index 9e77a98e97e8..d6fe2efaeb20 100644 --- a/net-im/ktp-accounts-kcm/distinfo +++ b/net-im/ktp-accounts-kcm/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1677828102 -SHA256 (KDE/release-service/22.12.3/ktp-accounts-kcm-22.12.3.tar.xz) = 8fa08e6bc5e3d5775792c15ee4c2e1e6ef77075976726ba3364427da4347e611 -SIZE (KDE/release-service/22.12.3/ktp-accounts-kcm-22.12.3.tar.xz) = 276944 +TIMESTAMP = 1681548472 +SHA256 (KDE/release-service/23.04.0/ktp-accounts-kcm-23.04.0.tar.xz) = 960bc75fa84fbc508a32507ad033d66cd1c15df7dab2ebba6d52afa15975c1b4 +SIZE (KDE/release-service/23.04.0/ktp-accounts-kcm-23.04.0.tar.xz) = 277648 diff --git a/net-im/ktp-approver/distinfo b/net-im/ktp-approver/distinfo index 16f239eaf141..a612b76514fb 100644 --- a/net-im/ktp-approver/distinfo +++ b/net-im/ktp-approver/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1677828113 -SHA256 (KDE/release-service/22.12.3/ktp-approver-22.12.3.tar.xz) = d0c3bbff25a5aa8c745f5be6cc85e04330c839e7d0b3af7c3edc76d1bb294819 -SIZE (KDE/release-service/22.12.3/ktp-approver-22.12.3.tar.xz) = 39192 +TIMESTAMP = 1681548471 +SHA256 (KDE/release-service/23.04.0/ktp-approver-23.04.0.tar.xz) = 187ecdf61866c1252131cbc3fa7d2c9620a276350bd3c837d3e475ece9d2f720 +SIZE (KDE/release-service/23.04.0/ktp-approver-23.04.0.tar.xz) = 39240 diff --git a/net-im/ktp-auth-handler/distinfo b/net-im/ktp-auth-handler/distinfo index d0667a12be14..97b3e962560a 100644 --- a/net-im/ktp-auth-handler/distinfo +++ b/net-im/ktp-auth-handler/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1677828121 -SHA256 (KDE/release-service/22.12.3/ktp-auth-handler-22.12.3.tar.xz) = 06e6d79835aec494b3ff271236b6567ae3b27fe950470292f948bf7898083257 -SIZE (KDE/release-service/22.12.3/ktp-auth-handler-22.12.3.tar.xz) = 49068 +TIMESTAMP = 1681548458 +SHA256 (KDE/release-service/23.04.0/ktp-auth-handler-23.04.0.tar.xz) = d8d4f8aa01973577fe248d13f7fe880b891919345e68a0a0abe40ef93a62df25 +SIZE (KDE/release-service/23.04.0/ktp-auth-handler-23.04.0.tar.xz) = 49096 diff --git a/net-im/ktp-call-ui/distinfo b/net-im/ktp-call-ui/distinfo index cbc17b9327a0..00cb69238271 100644 --- a/net-im/ktp-call-ui/distinfo +++ b/net-im/ktp-call-ui/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1677828117 -SHA256 (KDE/release-service/22.12.3/ktp-call-ui-22.12.3.tar.xz) = 42d59549e72cbac046488b0db18ce2ac6d2759e59ff75e4f56750a7281f64fa8 -SIZE (KDE/release-service/22.12.3/ktp-call-ui-22.12.3.tar.xz) = 103552 +TIMESTAMP = 1681548474 +SHA256 (KDE/release-service/23.04.0/ktp-call-ui-23.04.0.tar.xz) = 07841670d44bcd771b02a5e5e1a482b2b7674a1a30782552174ad366b290f822 +SIZE (KDE/release-service/23.04.0/ktp-call-ui-23.04.0.tar.xz) = 103564 diff --git a/net-im/ktp-common-internals/distinfo b/net-im/ktp-common-internals/distinfo index 0ee8d1a7090c..002f3e4d2199 100644 --- a/net-im/ktp-common-internals/distinfo +++ b/net-im/ktp-common-internals/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1677828109 -SHA256 (KDE/release-service/22.12.3/ktp-common-internals-22.12.3.tar.xz) = 83b3dc549ce2449244d5ed0286fcbc017c50835efb2c9e94522fef1548e05765 -SIZE (KDE/release-service/22.12.3/ktp-common-internals-22.12.3.tar.xz) = 459116 +TIMESTAMP = 1681548457 +SHA256 (KDE/release-service/23.04.0/ktp-common-internals-23.04.0.tar.xz) = 256c7d8ec8f5370750b8d785be7fd53e28e559433ed882f98ca99d5fcf723c8d +SIZE (KDE/release-service/23.04.0/ktp-common-internals-23.04.0.tar.xz) = 459240 diff --git a/net-im/ktp-contact-list/distinfo b/net-im/ktp-contact-list/distinfo index 73ebc4d86838..5e83dd0c6fee 100644 --- a/net-im/ktp-contact-list/distinfo +++ b/net-im/ktp-contact-list/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1677828118 -SHA256 (KDE/release-service/22.12.3/ktp-contact-list-22.12.3.tar.xz) = 1b39a2b878ca15e2045a11d86d818c54c56c07eda7e941e64751c01634222d9c -SIZE (KDE/release-service/22.12.3/ktp-contact-list-22.12.3.tar.xz) = 160568 +TIMESTAMP = 1681548465 +SHA256 (KDE/release-service/23.04.0/ktp-contact-list-23.04.0.tar.xz) = 8cfc2bbee3320d37d9cdaf0082c050c3488cc621d7a1b3d6e4a43f1ad5a5f642 +SIZE (KDE/release-service/23.04.0/ktp-contact-list-23.04.0.tar.xz) = 160532 diff --git a/net-im/ktp-contact-runner/distinfo b/net-im/ktp-contact-runner/distinfo index daef391b7d29..589e16d88eb5 100644 --- a/net-im/ktp-contact-runner/distinfo +++ b/net-im/ktp-contact-runner/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1677828101 -SHA256 (KDE/release-service/22.12.3/ktp-contact-runner-22.12.3.tar.xz) = 6dd00e7a15b3d505a233344d8e5dfb5a0aaebda2f6b1e02848223139b0828b28 -SIZE (KDE/release-service/22.12.3/ktp-contact-runner-22.12.3.tar.xz) = 45732 +TIMESTAMP = 1681548461 +SHA256 (KDE/release-service/23.04.0/ktp-contact-runner-23.04.0.tar.xz) = 04c7a110f6dcc228ff00119e0d4c0dedd215afe8d2c3a3a3f8371b889b790068 +SIZE (KDE/release-service/23.04.0/ktp-contact-runner-23.04.0.tar.xz) = 45748 diff --git a/net-im/ktp-desktop-applets/distinfo b/net-im/ktp-desktop-applets/distinfo index 289e0f706df4..ca4e81dc4055 100644 --- a/net-im/ktp-desktop-applets/distinfo +++ b/net-im/ktp-desktop-applets/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1677828114 -SHA256 (KDE/release-service/22.12.3/ktp-desktop-applets-22.12.3.tar.xz) = 02febe057185acdaef919ec3e06347212ae6ac3d7b155cf9abb07b730c6e84a3 -SIZE (KDE/release-service/22.12.3/ktp-desktop-applets-22.12.3.tar.xz) = 45064 +TIMESTAMP = 1681548470 +SHA256 (KDE/release-service/23.04.0/ktp-desktop-applets-23.04.0.tar.xz) = 7ab6e4b6da27c90b4ad0bf74a34e30ed72a2fab05977c428954c60053d73c034 +SIZE (KDE/release-service/23.04.0/ktp-desktop-applets-23.04.0.tar.xz) = 45060 diff --git a/net-im/ktp-filetransfer-handler/distinfo b/net-im/ktp-filetransfer-handler/distinfo index f6a28f920376..059b0ce83fb7 100644 --- a/net-im/ktp-filetransfer-handler/distinfo +++ b/net-im/ktp-filetransfer-handler/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1677828105 -SHA256 (KDE/release-service/22.12.3/ktp-filetransfer-handler-22.12.3.tar.xz) = 6083935f05a88a0ae8439a4592599d6ed4f14a19b66fcf7eccdf0a51e1129de2 -SIZE (KDE/release-service/22.12.3/ktp-filetransfer-handler-22.12.3.tar.xz) = 47992 +TIMESTAMP = 1681548469 +SHA256 (KDE/release-service/23.04.0/ktp-filetransfer-handler-23.04.0.tar.xz) = f592d51ee106fdc5c483c541ccf82b1f526e76c2e31cba3c5a10a8e218c0fb90 +SIZE (KDE/release-service/23.04.0/ktp-filetransfer-handler-23.04.0.tar.xz) = 48020 diff --git a/net-im/ktp-kded-module/distinfo b/net-im/ktp-kded-module/distinfo index 1fa0b5a9016d..4c47729a4105 100644 --- a/net-im/ktp-kded-module/distinfo +++ b/net-im/ktp-kded-module/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1677828120 -SHA256 (KDE/release-service/22.12.3/ktp-kded-module-22.12.3.tar.xz) = edde448f2b04f43ddb2622da1f34ec0585808da25a3639da2cba19117c1e18e6 -SIZE (KDE/release-service/22.12.3/ktp-kded-module-22.12.3.tar.xz) = 103972 +TIMESTAMP = 1681548460 +SHA256 (KDE/release-service/23.04.0/ktp-kded-module-23.04.0.tar.xz) = 3007f042ab092d35eb3c3c84fadc4103169fd8eb35a5cb953a186bfbb12e3abf +SIZE (KDE/release-service/23.04.0/ktp-kded-module-23.04.0.tar.xz) = 103984 diff --git a/net-im/ktp-send-file/distinfo b/net-im/ktp-send-file/distinfo index bb00b0683e21..0134ca85c0cd 100644 --- a/net-im/ktp-send-file/distinfo +++ b/net-im/ktp-send-file/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1677828106 -SHA256 (KDE/release-service/22.12.3/ktp-send-file-22.12.3.tar.xz) = dc28f52d54486ddbc240c7c182cb801732631c2aff691feca09a941ac32f9c62 -SIZE (KDE/release-service/22.12.3/ktp-send-file-22.12.3.tar.xz) = 29616 +TIMESTAMP = 1681548467 +SHA256 (KDE/release-service/23.04.0/ktp-send-file-23.04.0.tar.xz) = a280437bc6cb18ef9978bcd2ad0106bd3544c1ebcf5b1c934ef84b4e1a40ac90 +SIZE (KDE/release-service/23.04.0/ktp-send-file-23.04.0.tar.xz) = 29936 diff --git a/net-im/ktp-send-file/pkg-plist b/net-im/ktp-send-file/pkg-plist index 0c1e120c01c7..e19ec58302ec 100644 --- a/net-im/ktp-send-file/pkg-plist +++ b/net-im/ktp-send-file/pkg-plist @@ -1,51 +1,52 @@ bin/ktp-send-file share/locale/ar/LC_MESSAGES/ktp-send-file.mo share/locale/bs/LC_MESSAGES/ktp-send-file.mo share/locale/ca/LC_MESSAGES/ktp-send-file.mo share/locale/ca@valencia/LC_MESSAGES/ktp-send-file.mo share/locale/cs/LC_MESSAGES/ktp-send-file.mo share/locale/da/LC_MESSAGES/ktp-send-file.mo share/locale/de/LC_MESSAGES/ktp-send-file.mo share/locale/el/LC_MESSAGES/ktp-send-file.mo share/locale/en_GB/LC_MESSAGES/ktp-send-file.mo share/locale/es/LC_MESSAGES/ktp-send-file.mo share/locale/et/LC_MESSAGES/ktp-send-file.mo share/locale/eu/LC_MESSAGES/ktp-send-file.mo share/locale/fi/LC_MESSAGES/ktp-send-file.mo share/locale/fr/LC_MESSAGES/ktp-send-file.mo share/locale/ga/LC_MESSAGES/ktp-send-file.mo share/locale/gl/LC_MESSAGES/ktp-send-file.mo share/locale/hi/LC_MESSAGES/ktp-send-file.mo share/locale/hu/LC_MESSAGES/ktp-send-file.mo share/locale/ia/LC_MESSAGES/ktp-send-file.mo +share/locale/is/LC_MESSAGES/ktp-send-file.mo share/locale/it/LC_MESSAGES/ktp-send-file.mo share/locale/ja/LC_MESSAGES/ktp-send-file.mo share/locale/ka/LC_MESSAGES/ktp-send-file.mo share/locale/kk/LC_MESSAGES/ktp-send-file.mo share/locale/km/LC_MESSAGES/ktp-send-file.mo share/locale/ko/LC_MESSAGES/ktp-send-file.mo share/locale/lt/LC_MESSAGES/ktp-send-file.mo share/locale/mr/LC_MESSAGES/ktp-send-file.mo share/locale/nb/LC_MESSAGES/ktp-send-file.mo share/locale/nds/LC_MESSAGES/ktp-send-file.mo share/locale/nl/LC_MESSAGES/ktp-send-file.mo share/locale/nn/LC_MESSAGES/ktp-send-file.mo share/locale/pa/LC_MESSAGES/ktp-send-file.mo share/locale/pl/LC_MESSAGES/ktp-send-file.mo share/locale/pt/LC_MESSAGES/ktp-send-file.mo share/locale/pt_BR/LC_MESSAGES/ktp-send-file.mo share/locale/ro/LC_MESSAGES/ktp-send-file.mo share/locale/ru/LC_MESSAGES/ktp-send-file.mo share/locale/sk/LC_MESSAGES/ktp-send-file.mo share/locale/sl/LC_MESSAGES/ktp-send-file.mo share/locale/sr/LC_MESSAGES/ktp-send-file.mo share/locale/sr@ijekavian/LC_MESSAGES/ktp-send-file.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/ktp-send-file.mo share/locale/sr@latin/LC_MESSAGES/ktp-send-file.mo share/locale/sv/LC_MESSAGES/ktp-send-file.mo share/locale/tr/LC_MESSAGES/ktp-send-file.mo share/locale/ug/LC_MESSAGES/ktp-send-file.mo share/locale/uk/LC_MESSAGES/ktp-send-file.mo share/locale/vi/LC_MESSAGES/ktp-send-file.mo share/locale/zh_CN/LC_MESSAGES/ktp-send-file.mo share/locale/zh_TW/LC_MESSAGES/ktp-send-file.mo diff --git a/net-im/ktp-text-ui/distinfo b/net-im/ktp-text-ui/distinfo index 808bdfdf5976..3fb3f6a6402d 100644 --- a/net-im/ktp-text-ui/distinfo +++ b/net-im/ktp-text-ui/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1677828103 -SHA256 (KDE/release-service/22.12.3/ktp-text-ui-22.12.3.tar.xz) = 81af88d8763022171f591a72e5b9c332238a7ba64159f260f152d2c76cd3ea7a -SIZE (KDE/release-service/22.12.3/ktp-text-ui-22.12.3.tar.xz) = 486460 +TIMESTAMP = 1681548468 +SHA256 (KDE/release-service/23.04.0/ktp-text-ui-23.04.0.tar.xz) = cb31f12669b25749882220a0943e696d5b59b298b33245b17fe9293087702487 +SIZE (KDE/release-service/23.04.0/ktp-text-ui-23.04.0.tar.xz) = 486476 diff --git a/net-p2p/ktorrent/distinfo b/net-p2p/ktorrent/distinfo index 1069713f7ada..a67df0d65e74 100644 --- a/net-p2p/ktorrent/distinfo +++ b/net-p2p/ktorrent/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1677828186 -SHA256 (KDE/release-service/22.12.3/ktorrent-22.12.3.tar.xz) = 85ae133afa93750a75f7255b74d4364aa833325fc61ed4e49cdcf31f08e0f71e -SIZE (KDE/release-service/22.12.3/ktorrent-22.12.3.tar.xz) = 2144172 +TIMESTAMP = 1681548480 +SHA256 (KDE/release-service/23.04.0/ktorrent-23.04.0.tar.xz) = a06a23eea3a0db8a543bbe477493ebeb8396b78b9e0f86384c3ef1eb8d7fb53e +SIZE (KDE/release-service/23.04.0/ktorrent-23.04.0.tar.xz) = 2150160 diff --git a/net-p2p/libktorrent/distinfo b/net-p2p/libktorrent/distinfo index b30cbe37ad6d..4b477ddfdca8 100644 --- a/net-p2p/libktorrent/distinfo +++ b/net-p2p/libktorrent/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1677828185 -SHA256 (KDE/release-service/22.12.3/libktorrent-22.12.3.tar.xz) = 9cc2bfe05ffbaf145311ce691b2a2cffe7a558647cb28990c675d0e11fc1c965 -SIZE (KDE/release-service/22.12.3/libktorrent-22.12.3.tar.xz) = 616864 +TIMESTAMP = 1681548481 +SHA256 (KDE/release-service/23.04.0/libktorrent-23.04.0.tar.xz) = 92428a9c24fd562fa722a345850afd0b2b3f94a32a0b7d743cd4df5e392f7a9a +SIZE (KDE/release-service/23.04.0/libktorrent-23.04.0.tar.xz) = 603984 diff --git a/net/akonadi-calendar/distinfo b/net/akonadi-calendar/distinfo index 5268422349e5..dc1cc4348f3c 100644 --- a/net/akonadi-calendar/distinfo +++ b/net/akonadi-calendar/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1677828411 -SHA256 (KDE/release-service/22.12.3/akonadi-calendar-22.12.3.tar.xz) = ebe2c4739fc329fd1ad4f9dee98b48149f26af05699e4f4b01147f0cdf6a7aae -SIZE (KDE/release-service/22.12.3/akonadi-calendar-22.12.3.tar.xz) = 410132 +TIMESTAMP = 1681548243 +SHA256 (KDE/release-service/23.04.0/akonadi-calendar-23.04.0.tar.xz) = ee58cf76e820af9c51d14121a4b2e4a171c6ef702655aaa111ac96aadb0e6cda +SIZE (KDE/release-service/23.04.0/akonadi-calendar-23.04.0.tar.xz) = 411532 diff --git a/net/akonadi-calendar/pkg-plist b/net/akonadi-calendar/pkg-plist index 1635a671b567..66da53fdd8cf 100644 --- a/net/akonadi-calendar/pkg-plist +++ b/net/akonadi-calendar/pkg-plist @@ -1,188 +1,193 @@ bin/kalendarac etc/xdg/autostart/org.kde.kalendarac.desktop -include/KF5/AkonadiCalendar/Akonadi/BlockAlarmsAttribute -include/KF5/AkonadiCalendar/Akonadi/CalendarBase -include/KF5/AkonadiCalendar/Akonadi/CalendarClipboard -include/KF5/AkonadiCalendar/Akonadi/CalendarUtils -include/KF5/AkonadiCalendar/Akonadi/ETMCalendar -include/KF5/AkonadiCalendar/Akonadi/FetchJobCalendar -include/KF5/AkonadiCalendar/Akonadi/FreeBusyManager -include/KF5/AkonadiCalendar/Akonadi/FreeBusyProviderBase -include/KF5/AkonadiCalendar/Akonadi/History -include/KF5/AkonadiCalendar/Akonadi/ICalImporter -include/KF5/AkonadiCalendar/Akonadi/ITIPHandler -include/KF5/AkonadiCalendar/Akonadi/IncidenceChanger -include/KF5/AkonadiCalendar/Akonadi/IncidenceTreeModel -include/KF5/AkonadiCalendar/Akonadi/PublishDialog -include/KF5/AkonadiCalendar/Akonadi/StandardCalendarActionManager -include/KF5/AkonadiCalendar/Akonadi/TodoPurger -include/KF5/AkonadiCalendar/akonadi-calendar_version.h -include/KF5/AkonadiCalendar/akonadi/akonadi-calendar_export.h -include/KF5/AkonadiCalendar/akonadi/blockalarmsattribute.h -include/KF5/AkonadiCalendar/akonadi/calendarbase.h -include/KF5/AkonadiCalendar/akonadi/calendarclipboard.h -include/KF5/AkonadiCalendar/akonadi/calendarsettings.h -include/KF5/AkonadiCalendar/akonadi/calendarutils.h -include/KF5/AkonadiCalendar/akonadi/etmcalendar.h -include/KF5/AkonadiCalendar/akonadi/fetchjobcalendar.h -include/KF5/AkonadiCalendar/akonadi/freebusymanager.h -include/KF5/AkonadiCalendar/akonadi/freebusyproviderbase.h -include/KF5/AkonadiCalendar/akonadi/history.h -include/KF5/AkonadiCalendar/akonadi/icalimporter.h -include/KF5/AkonadiCalendar/akonadi/incidencechanger.h -include/KF5/AkonadiCalendar/akonadi/incidencetreemodel.h -include/KF5/AkonadiCalendar/akonadi/itiphandler.h -include/KF5/AkonadiCalendar/akonadi/publishdialog.h -include/KF5/AkonadiCalendar/akonadi/standardcalendaractionmanager.h -include/KF5/AkonadiCalendar/akonadi/todopurger.h +include/KPim5/AkonadiCalendar/Akonadi/BlockAlarmsAttribute +include/KPim5/AkonadiCalendar/Akonadi/CalendarBase +include/KPim5/AkonadiCalendar/Akonadi/CalendarClipboard +include/KPim5/AkonadiCalendar/Akonadi/CalendarUtils +include/KPim5/AkonadiCalendar/Akonadi/ETMCalendar +include/KPim5/AkonadiCalendar/Akonadi/FetchJobCalendar +include/KPim5/AkonadiCalendar/Akonadi/FreeBusyManager +include/KPim5/AkonadiCalendar/Akonadi/FreeBusyProviderBase +include/KPim5/AkonadiCalendar/Akonadi/History +include/KPim5/AkonadiCalendar/Akonadi/ICalImporter +include/KPim5/AkonadiCalendar/Akonadi/ITIPHandler +include/KPim5/AkonadiCalendar/Akonadi/IncidenceChanger +include/KPim5/AkonadiCalendar/Akonadi/IncidenceTreeModel +include/KPim5/AkonadiCalendar/Akonadi/PublishDialog +include/KPim5/AkonadiCalendar/Akonadi/StandardCalendarActionManager +include/KPim5/AkonadiCalendar/Akonadi/TodoPurger +include/KPim5/AkonadiCalendar/akonadi-calendar_version.h +include/KPim5/AkonadiCalendar/akonadi/akonadi-calendar_export.h +include/KPim5/AkonadiCalendar/akonadi/blockalarmsattribute.h +include/KPim5/AkonadiCalendar/akonadi/calendarbase.h +include/KPim5/AkonadiCalendar/akonadi/calendarclipboard.h +include/KPim5/AkonadiCalendar/akonadi/calendarsettings.h +include/KPim5/AkonadiCalendar/akonadi/calendarutils.h +include/KPim5/AkonadiCalendar/akonadi/etmcalendar.h +include/KPim5/AkonadiCalendar/akonadi/fetchjobcalendar.h +include/KPim5/AkonadiCalendar/akonadi/freebusymanager.h +include/KPim5/AkonadiCalendar/akonadi/freebusyproviderbase.h +include/KPim5/AkonadiCalendar/akonadi/history.h +include/KPim5/AkonadiCalendar/akonadi/icalimporter.h +include/KPim5/AkonadiCalendar/akonadi/incidencechanger.h +include/KPim5/AkonadiCalendar/akonadi/incidencetreemodel.h +include/KPim5/AkonadiCalendar/akonadi/itiphandler.h +include/KPim5/AkonadiCalendar/akonadi/publishdialog.h +include/KPim5/AkonadiCalendar/akonadi/standardcalendaractionmanager.h +include/KPim5/AkonadiCalendar/akonadi/todopurger.h lib/cmake/KF5AkonadiCalendar/KF5AkonadiCalendarConfig.cmake lib/cmake/KF5AkonadiCalendar/KF5AkonadiCalendarConfigVersion.cmake -lib/cmake/KF5AkonadiCalendar/KF5AkonadiCalendarTargets-%%CMAKE_BUILD_TYPE%%.cmake -lib/cmake/KF5AkonadiCalendar/KF5AkonadiCalendarTargets.cmake -lib/libKF5AkonadiCalendar.so -lib/libKF5AkonadiCalendar.so.5 -lib/libKF5AkonadiCalendar.so.%%KDE_APPLICATIONS_SHLIB_VER%% +lib/cmake/KF5AkonadiCalendar/KPim5AkonadiCalendarTargets-%%CMAKE_BUILD_TYPE%%.cmake +lib/cmake/KF5AkonadiCalendar/KPim5AkonadiCalendarTargets.cmake +lib/cmake/KPim5AkonadiCalendar/KPim5AkonadiCalendarConfig.cmake +lib/cmake/KPim5AkonadiCalendar/KPim5AkonadiCalendarConfigVersion.cmake +lib/cmake/KPim5AkonadiCalendar/KPim5AkonadiCalendarTargets-%%CMAKE_BUILD_TYPE%%.cmake +lib/cmake/KPim5AkonadiCalendar/KPim5AkonadiCalendarTargets.cmake +lib/libKPim5AkonadiCalendar.so +lib/libKPim5AkonadiCalendar.so.5 +lib/libKPim5AkonadiCalendar.so.%%KDE_APPLICATIONS_SHLIB_VER%% %%QT_MKSPECDIR%%/modules/qt_AkonadiCalendar.pri %%QT_PLUGINDIR%%/akonadi_serializer_kcalcore.so %%QT_PLUGINDIR%%/kf5/org.kde.kcalendarcore.calendars/libakonadicalendarplugin.so share/akonadi/plugins/serializer/akonadi_serializer_kcalcore.desktop share/dbus-1/services/org.kde.kalendarac.service share/knotifications5/kalendarac.notifyrc share/locale/ar/LC_MESSAGES/kalendarac.mo share/locale/ar/LC_MESSAGES/libakonadi-calendar5-serializer.mo share/locale/ar/LC_MESSAGES/libakonadi-calendar5.mo share/locale/az/LC_MESSAGES/kalendarac.mo share/locale/az/LC_MESSAGES/libakonadi-calendar5-serializer.mo share/locale/az/LC_MESSAGES/libakonadi-calendar5.mo share/locale/bg/LC_MESSAGES/kalendarac.mo share/locale/bg/LC_MESSAGES/libakonadi-calendar5-serializer.mo share/locale/bg/LC_MESSAGES/libakonadi-calendar5.mo share/locale/bs/LC_MESSAGES/libakonadi-calendar5-serializer.mo share/locale/bs/LC_MESSAGES/libakonadi-calendar5.mo share/locale/ca/LC_MESSAGES/kalendarac.mo share/locale/ca/LC_MESSAGES/libakonadi-calendar5-serializer.mo share/locale/ca/LC_MESSAGES/libakonadi-calendar5.mo share/locale/ca@valencia/LC_MESSAGES/kalendarac.mo share/locale/ca@valencia/LC_MESSAGES/libakonadi-calendar5-serializer.mo share/locale/ca@valencia/LC_MESSAGES/libakonadi-calendar5.mo share/locale/cs/LC_MESSAGES/kalendarac.mo share/locale/cs/LC_MESSAGES/libakonadi-calendar5-serializer.mo share/locale/cs/LC_MESSAGES/libakonadi-calendar5.mo share/locale/da/LC_MESSAGES/libakonadi-calendar5-serializer.mo share/locale/da/LC_MESSAGES/libakonadi-calendar5.mo share/locale/de/LC_MESSAGES/kalendarac.mo share/locale/de/LC_MESSAGES/libakonadi-calendar5-serializer.mo share/locale/de/LC_MESSAGES/libakonadi-calendar5.mo share/locale/el/LC_MESSAGES/kalendarac.mo share/locale/el/LC_MESSAGES/libakonadi-calendar5-serializer.mo share/locale/el/LC_MESSAGES/libakonadi-calendar5.mo share/locale/en_GB/LC_MESSAGES/kalendarac.mo share/locale/en_GB/LC_MESSAGES/libakonadi-calendar5-serializer.mo share/locale/en_GB/LC_MESSAGES/libakonadi-calendar5.mo share/locale/es/LC_MESSAGES/kalendarac.mo share/locale/es/LC_MESSAGES/libakonadi-calendar5-serializer.mo share/locale/es/LC_MESSAGES/libakonadi-calendar5.mo share/locale/et/LC_MESSAGES/libakonadi-calendar5-serializer.mo share/locale/et/LC_MESSAGES/libakonadi-calendar5.mo share/locale/eu/LC_MESSAGES/kalendarac.mo share/locale/eu/LC_MESSAGES/libakonadi-calendar5-serializer.mo share/locale/eu/LC_MESSAGES/libakonadi-calendar5.mo share/locale/fi/LC_MESSAGES/kalendarac.mo share/locale/fi/LC_MESSAGES/libakonadi-calendar5-serializer.mo share/locale/fi/LC_MESSAGES/libakonadi-calendar5.mo share/locale/fr/LC_MESSAGES/kalendarac.mo share/locale/fr/LC_MESSAGES/libakonadi-calendar5-serializer.mo share/locale/fr/LC_MESSAGES/libakonadi-calendar5.mo share/locale/ga/LC_MESSAGES/libakonadi-calendar5-serializer.mo share/locale/ga/LC_MESSAGES/libakonadi-calendar5.mo share/locale/gl/LC_MESSAGES/libakonadi-calendar5-serializer.mo share/locale/gl/LC_MESSAGES/libakonadi-calendar5.mo share/locale/hu/LC_MESSAGES/libakonadi-calendar5-serializer.mo share/locale/hu/LC_MESSAGES/libakonadi-calendar5.mo share/locale/ia/LC_MESSAGES/kalendarac.mo share/locale/ia/LC_MESSAGES/libakonadi-calendar5-serializer.mo share/locale/ia/LC_MESSAGES/libakonadi-calendar5.mo share/locale/id/LC_MESSAGES/kalendarac.mo share/locale/id/LC_MESSAGES/libakonadi-calendar5-serializer.mo share/locale/id/LC_MESSAGES/libakonadi-calendar5.mo share/locale/it/LC_MESSAGES/kalendarac.mo share/locale/it/LC_MESSAGES/libakonadi-calendar5-serializer.mo share/locale/it/LC_MESSAGES/libakonadi-calendar5.mo share/locale/ja/LC_MESSAGES/kalendarac.mo share/locale/ja/LC_MESSAGES/libakonadi-calendar5-serializer.mo share/locale/ja/LC_MESSAGES/libakonadi-calendar5.mo share/locale/ka/LC_MESSAGES/kalendarac.mo share/locale/ka/LC_MESSAGES/libakonadi-calendar5-serializer.mo share/locale/ka/LC_MESSAGES/libakonadi-calendar5.mo share/locale/kk/LC_MESSAGES/libakonadi-calendar5-serializer.mo share/locale/kk/LC_MESSAGES/libakonadi-calendar5.mo share/locale/km/LC_MESSAGES/libakonadi-calendar5-serializer.mo share/locale/km/LC_MESSAGES/libakonadi-calendar5.mo share/locale/ko/LC_MESSAGES/kalendarac.mo share/locale/ko/LC_MESSAGES/libakonadi-calendar5-serializer.mo share/locale/ko/LC_MESSAGES/libakonadi-calendar5.mo +share/locale/lt/LC_MESSAGES/kalendarac.mo share/locale/lt/LC_MESSAGES/libakonadi-calendar5-serializer.mo share/locale/lt/LC_MESSAGES/libakonadi-calendar5.mo share/locale/lv/LC_MESSAGES/libakonadi-calendar5-serializer.mo share/locale/mai/LC_MESSAGES/libakonadi-calendar5.mo share/locale/mr/LC_MESSAGES/libakonadi-calendar5-serializer.mo share/locale/mr/LC_MESSAGES/libakonadi-calendar5.mo share/locale/nb/LC_MESSAGES/libakonadi-calendar5-serializer.mo share/locale/nb/LC_MESSAGES/libakonadi-calendar5.mo share/locale/nds/LC_MESSAGES/libakonadi-calendar5-serializer.mo share/locale/nds/LC_MESSAGES/libakonadi-calendar5.mo share/locale/nl/LC_MESSAGES/kalendarac.mo share/locale/nl/LC_MESSAGES/libakonadi-calendar5-serializer.mo share/locale/nl/LC_MESSAGES/libakonadi-calendar5.mo share/locale/pa/LC_MESSAGES/libakonadi-calendar5-serializer.mo share/locale/pl/LC_MESSAGES/kalendarac.mo share/locale/pl/LC_MESSAGES/libakonadi-calendar5-serializer.mo share/locale/pl/LC_MESSAGES/libakonadi-calendar5.mo share/locale/pt/LC_MESSAGES/kalendarac.mo share/locale/pt/LC_MESSAGES/libakonadi-calendar5-serializer.mo share/locale/pt/LC_MESSAGES/libakonadi-calendar5.mo share/locale/pt_BR/LC_MESSAGES/kalendarac.mo share/locale/pt_BR/LC_MESSAGES/libakonadi-calendar5-serializer.mo share/locale/pt_BR/LC_MESSAGES/libakonadi-calendar5.mo share/locale/ro/LC_MESSAGES/libakonadi-calendar5-serializer.mo share/locale/ro/LC_MESSAGES/libakonadi-calendar5.mo share/locale/ru/LC_MESSAGES/kalendarac.mo share/locale/ru/LC_MESSAGES/libakonadi-calendar5-serializer.mo share/locale/ru/LC_MESSAGES/libakonadi-calendar5.mo share/locale/sk/LC_MESSAGES/kalendarac.mo share/locale/sk/LC_MESSAGES/libakonadi-calendar5-serializer.mo share/locale/sk/LC_MESSAGES/libakonadi-calendar5.mo share/locale/sl/LC_MESSAGES/kalendarac.mo share/locale/sl/LC_MESSAGES/libakonadi-calendar5-serializer.mo share/locale/sl/LC_MESSAGES/libakonadi-calendar5.mo share/locale/sr/LC_MESSAGES/libakonadi-calendar5-serializer.mo share/locale/sr/LC_MESSAGES/libakonadi-calendar5.mo share/locale/sr@ijekavian/LC_MESSAGES/libakonadi-calendar5-serializer.mo share/locale/sr@ijekavian/LC_MESSAGES/libakonadi-calendar5.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/libakonadi-calendar5-serializer.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/libakonadi-calendar5.mo share/locale/sr@latin/LC_MESSAGES/libakonadi-calendar5-serializer.mo share/locale/sr@latin/LC_MESSAGES/libakonadi-calendar5.mo share/locale/sv/LC_MESSAGES/kalendarac.mo share/locale/sv/LC_MESSAGES/libakonadi-calendar5-serializer.mo share/locale/sv/LC_MESSAGES/libakonadi-calendar5.mo share/locale/ta/LC_MESSAGES/kalendarac.mo share/locale/ta/LC_MESSAGES/libakonadi-calendar5-serializer.mo share/locale/ta/LC_MESSAGES/libakonadi-calendar5.mo share/locale/tr/LC_MESSAGES/kalendarac.mo share/locale/tr/LC_MESSAGES/libakonadi-calendar5-serializer.mo share/locale/tr/LC_MESSAGES/libakonadi-calendar5.mo share/locale/ug/LC_MESSAGES/libakonadi-calendar5-serializer.mo share/locale/ug/LC_MESSAGES/libakonadi-calendar5.mo share/locale/uk/LC_MESSAGES/kalendarac.mo share/locale/uk/LC_MESSAGES/libakonadi-calendar5-serializer.mo share/locale/uk/LC_MESSAGES/libakonadi-calendar5.mo share/locale/zh_CN/LC_MESSAGES/kalendarac.mo share/locale/zh_CN/LC_MESSAGES/libakonadi-calendar5-serializer.mo share/locale/zh_CN/LC_MESSAGES/libakonadi-calendar5.mo share/locale/zh_TW/LC_MESSAGES/kalendarac.mo share/locale/zh_TW/LC_MESSAGES/libakonadi-calendar5-serializer.mo share/locale/zh_TW/LC_MESSAGES/libakonadi-calendar5.mo share/qlogging-categories5/akonadi-calendar.categories share/qlogging-categories5/akonadi-calendar.renamecategories share/qlogging-categories5/org_kde_kalendarac.categories diff --git a/net/akonadi-contacts/distinfo b/net/akonadi-contacts/distinfo index dfa51878c154..f12ecef7f38f 100644 --- a/net/akonadi-contacts/distinfo +++ b/net/akonadi-contacts/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1677828414 -SHA256 (KDE/release-service/22.12.3/akonadi-contacts-22.12.3.tar.xz) = 778c8dfd778feceb6ce2154d9e5b83199047779f6ae8dbd7a1541563ce2303ee -SIZE (KDE/release-service/22.12.3/akonadi-contacts-22.12.3.tar.xz) = 440240 +TIMESTAMP = 1681548237 +SHA256 (KDE/release-service/23.04.0/akonadi-contacts-23.04.0.tar.xz) = afd816058723d4fda79b61f0f052b24d47b822699695522db21c1a2141d7f83b +SIZE (KDE/release-service/23.04.0/akonadi-contacts-23.04.0.tar.xz) = 442408 diff --git a/net/akonadi-contacts/pkg-plist b/net/akonadi-contacts/pkg-plist index 464b7c7c2517..63fda24c6869 100644 --- a/net/akonadi-contacts/pkg-plist +++ b/net/akonadi-contacts/pkg-plist @@ -1,267 +1,274 @@ -include/KF5/AkonadiContact/Akonadi/AbstractContactFormatter -include/KF5/AkonadiContact/Akonadi/AbstractContactGroupFormatter -include/KF5/AkonadiContact/Akonadi/AbstractEmailAddressSelectionDialog -include/KF5/AkonadiContact/Akonadi/AddContactJob -include/KF5/AkonadiContact/Akonadi/AddEmailAddressJob -include/KF5/AkonadiContact/Akonadi/AddEmailDisplayJob -include/KF5/AkonadiContact/Akonadi/ContactDefaultActions -include/KF5/AkonadiContact/Akonadi/ContactEditor -include/KF5/AkonadiContact/Akonadi/ContactEditorDialog -include/KF5/AkonadiContact/Akonadi/ContactGrantleeWrapper -include/KF5/AkonadiContact/Akonadi/ContactGroupEditor -include/KF5/AkonadiContact/Akonadi/ContactGroupEditorDialog -include/KF5/AkonadiContact/Akonadi/ContactGroupExpandJob -include/KF5/AkonadiContact/Akonadi/ContactGroupSearchJob -include/KF5/AkonadiContact/Akonadi/ContactGroupViewer -include/KF5/AkonadiContact/Akonadi/ContactParts -include/KF5/AkonadiContact/Akonadi/ContactSearchJob -include/KF5/AkonadiContact/Akonadi/ContactViewer -include/KF5/AkonadiContact/Akonadi/ContactViewerDialog -include/KF5/AkonadiContact/Akonadi/ContactsFilterProxyModel -include/KF5/AkonadiContact/Akonadi/ContactsTreeModel -include/KF5/AkonadiContact/Akonadi/EmailAddressRequester -include/KF5/AkonadiContact/Akonadi/EmailAddressSelection -include/KF5/AkonadiContact/Akonadi/EmailAddressSelectionDialog -include/KF5/AkonadiContact/Akonadi/EmailAddressSelectionModel -include/KF5/AkonadiContact/Akonadi/EmailAddressSelectionWidget -include/KF5/AkonadiContact/Akonadi/GrantleeContactFormatter -include/KF5/AkonadiContact/Akonadi/GrantleeContactGroupFormatter -include/KF5/AkonadiContact/Akonadi/GrantleeContactViewer -include/KF5/AkonadiContact/Akonadi/GrantleePrint -include/KF5/AkonadiContact/Akonadi/OpenEmailAddressJob -include/KF5/AkonadiContact/Akonadi/RecipientsEditorManager -include/KF5/AkonadiContact/Akonadi/RecipientsPickerWidget -include/KF5/AkonadiContact/Akonadi/SelectAddressBookDialog -include/KF5/AkonadiContact/Akonadi/StandardContactActionManager -include/KF5/AkonadiContact/Akonadi/StandardContactFormatter -include/KF5/AkonadiContact/Akonadi/StandardContactGroupFormatter -include/KF5/AkonadiContact/akonadi-contact_version.h -include/KF5/AkonadiContact/akonadi/abstractcontactformatter.h -include/KF5/AkonadiContact/akonadi/abstractcontactgroupformatter.h -include/KF5/AkonadiContact/akonadi/abstractemailaddressselectiondialog.h -include/KF5/AkonadiContact/akonadi/addcontactjob.h -include/KF5/AkonadiContact/akonadi/addemailaddressjob.h -include/KF5/AkonadiContact/akonadi/addemaildisplayjob.h -include/KF5/AkonadiContact/akonadi/akonadi-contact_export.h -include/KF5/AkonadiContact/akonadi/contactdefaultactions.h -include/KF5/AkonadiContact/akonadi/contacteditor.h -include/KF5/AkonadiContact/akonadi/contacteditordialog.h -include/KF5/AkonadiContact/akonadi/contactgrantleewrapper.h -include/KF5/AkonadiContact/akonadi/contactgroupeditor.h -include/KF5/AkonadiContact/akonadi/contactgroupeditordialog.h -include/KF5/AkonadiContact/akonadi/contactgroupexpandjob.h -include/KF5/AkonadiContact/akonadi/contactgroupsearchjob.h -include/KF5/AkonadiContact/akonadi/contactgroupviewer.h -include/KF5/AkonadiContact/akonadi/contactparts.h -include/KF5/AkonadiContact/akonadi/contactsearchjob.h -include/KF5/AkonadiContact/akonadi/contactsfilterproxymodel.h -include/KF5/AkonadiContact/akonadi/contactstreemodel.h -include/KF5/AkonadiContact/akonadi/contactviewer.h -include/KF5/AkonadiContact/akonadi/contactviewerdialog.h -include/KF5/AkonadiContact/akonadi/emailaddressrequester.h -include/KF5/AkonadiContact/akonadi/emailaddressselection.h -include/KF5/AkonadiContact/akonadi/emailaddressselectiondialog.h -include/KF5/AkonadiContact/akonadi/emailaddressselectionmodel.h -include/KF5/AkonadiContact/akonadi/emailaddressselectionwidget.h -include/KF5/AkonadiContact/akonadi/grantleecontactformatter.h -include/KF5/AkonadiContact/akonadi/grantleecontactgroupformatter.h -include/KF5/AkonadiContact/akonadi/grantleecontactviewer.h -include/KF5/AkonadiContact/akonadi/grantleeprint.h -include/KF5/AkonadiContact/akonadi/openemailaddressjob.h -include/KF5/AkonadiContact/akonadi/recipientseditormanager.h -include/KF5/AkonadiContact/akonadi/recipientspickerwidget.h -include/KF5/AkonadiContact/akonadi/selectaddressbookdialog.h -include/KF5/AkonadiContact/akonadi/standardcontactactionmanager.h -include/KF5/AkonadiContact/akonadi/standardcontactformatter.h -include/KF5/AkonadiContact/akonadi/standardcontactgroupformatter.h -include/KF5/AkonadiContactEditor/Akonadi/CategoriesEditAbstractWidget -include/KF5/AkonadiContactEditor/Akonadi/ContactEditorPagePlugin -include/KF5/AkonadiContactEditor/akonadi-contact-editor_version.h -include/KF5/AkonadiContactEditor/akonadi/categorieseditabstractwidget.h -include/KF5/AkonadiContactEditor/akonadi/contacteditor_export.h -include/KF5/AkonadiContactEditor/akonadi/contacteditorpageplugin.h +include/KPim5/AkonadiContact/Akonadi/AbstractContactFormatter +include/KPim5/AkonadiContact/Akonadi/AbstractContactGroupFormatter +include/KPim5/AkonadiContact/Akonadi/AbstractEmailAddressSelectionDialog +include/KPim5/AkonadiContact/Akonadi/AddContactJob +include/KPim5/AkonadiContact/Akonadi/AddEmailAddressJob +include/KPim5/AkonadiContact/Akonadi/AddEmailDisplayJob +include/KPim5/AkonadiContact/Akonadi/ContactDefaultActions +include/KPim5/AkonadiContact/Akonadi/ContactEditor +include/KPim5/AkonadiContact/Akonadi/ContactEditorDialog +include/KPim5/AkonadiContact/Akonadi/ContactGrantleeWrapper +include/KPim5/AkonadiContact/Akonadi/ContactGroupEditor +include/KPim5/AkonadiContact/Akonadi/ContactGroupEditorDialog +include/KPim5/AkonadiContact/Akonadi/ContactGroupExpandJob +include/KPim5/AkonadiContact/Akonadi/ContactGroupSearchJob +include/KPim5/AkonadiContact/Akonadi/ContactGroupViewer +include/KPim5/AkonadiContact/Akonadi/ContactParts +include/KPim5/AkonadiContact/Akonadi/ContactSearchJob +include/KPim5/AkonadiContact/Akonadi/ContactViewer +include/KPim5/AkonadiContact/Akonadi/ContactViewerDialog +include/KPim5/AkonadiContact/Akonadi/ContactsFilterProxyModel +include/KPim5/AkonadiContact/Akonadi/ContactsTreeModel +include/KPim5/AkonadiContact/Akonadi/EmailAddressRequester +include/KPim5/AkonadiContact/Akonadi/EmailAddressSelection +include/KPim5/AkonadiContact/Akonadi/EmailAddressSelectionDialog +include/KPim5/AkonadiContact/Akonadi/EmailAddressSelectionModel +include/KPim5/AkonadiContact/Akonadi/EmailAddressSelectionWidget +include/KPim5/AkonadiContact/Akonadi/GrantleeContactFormatter +include/KPim5/AkonadiContact/Akonadi/GrantleeContactGroupFormatter +include/KPim5/AkonadiContact/Akonadi/GrantleeContactViewer +include/KPim5/AkonadiContact/Akonadi/GrantleePrint +include/KPim5/AkonadiContact/Akonadi/OpenEmailAddressJob +include/KPim5/AkonadiContact/Akonadi/RecipientsEditorManager +include/KPim5/AkonadiContact/Akonadi/RecipientsPickerWidget +include/KPim5/AkonadiContact/Akonadi/SelectAddressBookDialog +include/KPim5/AkonadiContact/Akonadi/StandardContactActionManager +include/KPim5/AkonadiContact/Akonadi/StandardContactFormatter +include/KPim5/AkonadiContact/Akonadi/StandardContactGroupFormatter +include/KPim5/AkonadiContact/akonadi-contact_version.h +include/KPim5/AkonadiContact/akonadi/abstractcontactformatter.h +include/KPim5/AkonadiContact/akonadi/abstractcontactgroupformatter.h +include/KPim5/AkonadiContact/akonadi/abstractemailaddressselectiondialog.h +include/KPim5/AkonadiContact/akonadi/addcontactjob.h +include/KPim5/AkonadiContact/akonadi/addemailaddressjob.h +include/KPim5/AkonadiContact/akonadi/addemaildisplayjob.h +include/KPim5/AkonadiContact/akonadi/akonadi-contact_export.h +include/KPim5/AkonadiContact/akonadi/contactdefaultactions.h +include/KPim5/AkonadiContact/akonadi/contacteditor.h +include/KPim5/AkonadiContact/akonadi/contacteditordialog.h +include/KPim5/AkonadiContact/akonadi/contactgrantleewrapper.h +include/KPim5/AkonadiContact/akonadi/contactgroupeditor.h +include/KPim5/AkonadiContact/akonadi/contactgroupeditordialog.h +include/KPim5/AkonadiContact/akonadi/contactgroupexpandjob.h +include/KPim5/AkonadiContact/akonadi/contactgroupsearchjob.h +include/KPim5/AkonadiContact/akonadi/contactgroupviewer.h +include/KPim5/AkonadiContact/akonadi/contactparts.h +include/KPim5/AkonadiContact/akonadi/contactsearchjob.h +include/KPim5/AkonadiContact/akonadi/contactsfilterproxymodel.h +include/KPim5/AkonadiContact/akonadi/contactstreemodel.h +include/KPim5/AkonadiContact/akonadi/contactviewer.h +include/KPim5/AkonadiContact/akonadi/contactviewerdialog.h +include/KPim5/AkonadiContact/akonadi/emailaddressrequester.h +include/KPim5/AkonadiContact/akonadi/emailaddressselection.h +include/KPim5/AkonadiContact/akonadi/emailaddressselectiondialog.h +include/KPim5/AkonadiContact/akonadi/emailaddressselectionmodel.h +include/KPim5/AkonadiContact/akonadi/emailaddressselectionwidget.h +include/KPim5/AkonadiContact/akonadi/grantleecontactformatter.h +include/KPim5/AkonadiContact/akonadi/grantleecontactgroupformatter.h +include/KPim5/AkonadiContact/akonadi/grantleecontactviewer.h +include/KPim5/AkonadiContact/akonadi/grantleeprint.h +include/KPim5/AkonadiContact/akonadi/openemailaddressjob.h +include/KPim5/AkonadiContact/akonadi/recipientseditormanager.h +include/KPim5/AkonadiContact/akonadi/recipientspickerwidget.h +include/KPim5/AkonadiContact/akonadi/selectaddressbookdialog.h +include/KPim5/AkonadiContact/akonadi/standardcontactactionmanager.h +include/KPim5/AkonadiContact/akonadi/standardcontactformatter.h +include/KPim5/AkonadiContact/akonadi/standardcontactgroupformatter.h +include/KPim5/AkonadiContactEditor/Akonadi/CategoriesEditAbstractWidget +include/KPim5/AkonadiContactEditor/Akonadi/ContactEditorPagePlugin +include/KPim5/AkonadiContactEditor/akonadi-contact-editor_version.h +include/KPim5/AkonadiContactEditor/akonadi/categorieseditabstractwidget.h +include/KPim5/AkonadiContactEditor/akonadi/contacteditor_export.h +include/KPim5/AkonadiContactEditor/akonadi/contacteditorpageplugin.h lib/cmake/KF5AkonadiContact/KF5AkonadiContactConfig.cmake lib/cmake/KF5AkonadiContact/KF5AkonadiContactConfigVersion.cmake -lib/cmake/KF5AkonadiContact/KF5AkonadiContactTargets-%%CMAKE_BUILD_TYPE%%.cmake -lib/cmake/KF5AkonadiContact/KF5AkonadiContactTargets.cmake -lib/cmake/KF5ContactEditor/KF5ContactEditorConfig.cmake -lib/cmake/KF5ContactEditor/KF5ContactEditorConfigVersion.cmake -lib/cmake/KF5ContactEditor/KF5ContactEditorTargets-%%CMAKE_BUILD_TYPE%%.cmake -lib/cmake/KF5ContactEditor/KF5ContactEditorTargets.cmake -lib/libKF5AkonadiContact.so -lib/libKF5AkonadiContact.so.5 -lib/libKF5AkonadiContact.so.%%KDE_APPLICATIONS_SHLIB_VER%% -lib/libKF5ContactEditor.so -lib/libKF5ContactEditor.so.5 -lib/libKF5ContactEditor.so.%%KDE_APPLICATIONS_SHLIB_VER%% +lib/cmake/KF5AkonadiContact/KPim5AkonadiContactTargets-%%CMAKE_BUILD_TYPE%%.cmake +lib/cmake/KF5AkonadiContact/KPim5AkonadiContactTargets.cmake +lib/cmake/KF5AkonadiContactEditor/KF5ContactEditorConfig.cmake +lib/cmake/KF5AkonadiContactEditor/KF5ContactEditorConfigVersion.cmake +lib/cmake/KPim5AkonadiContact/KPim5AkonadiContactConfig.cmake +lib/cmake/KPim5AkonadiContact/KPim5AkonadiContactConfigVersion.cmake +lib/cmake/KPim5AkonadiContact/KPim5AkonadiContactTargets-%%CMAKE_BUILD_TYPE%%.cmake +lib/cmake/KPim5AkonadiContact/KPim5AkonadiContactTargets.cmake +lib/cmake/KPim5ContactEditor/KPim5ContactEditorConfig.cmake +lib/cmake/KPim5ContactEditor/KPim5ContactEditorConfigVersion.cmake +lib/cmake/KPim5ContactEditor/KPim5ContactEditorTargets-%%CMAKE_BUILD_TYPE%%.cmake +lib/cmake/KPim5ContactEditor/KPim5ContactEditorTargets.cmake +lib/libKPim5AkonadiContact.so +lib/libKPim5AkonadiContact.so.5 +lib/libKPim5AkonadiContact.so.%%KDE_APPLICATIONS_SHLIB_VER%% +lib/libKPim5ContactEditor.so +lib/libKPim5ContactEditor.so.5 +lib/libKPim5ContactEditor.so.%%KDE_APPLICATIONS_SHLIB_VER%% %%QT_MKSPECDIR%%/modules/qt_AkonadiContact.pri %%QT_MKSPECDIR%%/modules/qt_ContactEditor.pri %%QT_PLUGINDIR%%/akonadi_serializer_addressee.so %%QT_PLUGINDIR%%/akonadi_serializer_contactgroup.so %%QT_PLUGINDIR%%/pim5/akonadi/contacts/plugins/categorieseditwidgetplugin.so %%QT_PLUGINDIR%%/pim5/kcms/kaddressbook/kcm_akonadicontact_actions.so share/akonadi/plugins/serializer/akonadi_serializer_addressee.desktop share/akonadi/plugins/serializer/akonadi_serializer_contactgroup.desktop share/kf5/akonadi/contact/data/zone.tab share/kf5/akonadi/contact/pics/world.jpg share/locale/ar/LC_MESSAGES/akonadicontact5-serializer.mo share/locale/ar/LC_MESSAGES/akonadicontact5.mo share/locale/ar/LC_MESSAGES/kcm_akonadicontact_actions.mo share/locale/az/LC_MESSAGES/akonadicontact5-serializer.mo share/locale/az/LC_MESSAGES/akonadicontact5.mo share/locale/az/LC_MESSAGES/kcm_akonadicontact_actions.mo share/locale/bg/LC_MESSAGES/akonadicontact5-serializer.mo share/locale/bg/LC_MESSAGES/akonadicontact5.mo share/locale/bg/LC_MESSAGES/kcm_akonadicontact_actions.mo share/locale/bs/LC_MESSAGES/akonadicontact5-serializer.mo share/locale/bs/LC_MESSAGES/akonadicontact5.mo share/locale/bs/LC_MESSAGES/kcm_akonadicontact_actions.mo share/locale/ca/LC_MESSAGES/akonadicontact5-serializer.mo share/locale/ca/LC_MESSAGES/akonadicontact5.mo share/locale/ca/LC_MESSAGES/kcm_akonadicontact_actions.mo share/locale/ca@valencia/LC_MESSAGES/akonadicontact5-serializer.mo share/locale/ca@valencia/LC_MESSAGES/akonadicontact5.mo share/locale/ca@valencia/LC_MESSAGES/kcm_akonadicontact_actions.mo share/locale/cs/LC_MESSAGES/akonadicontact5-serializer.mo share/locale/cs/LC_MESSAGES/akonadicontact5.mo share/locale/cs/LC_MESSAGES/kcm_akonadicontact_actions.mo share/locale/da/LC_MESSAGES/akonadicontact5-serializer.mo share/locale/da/LC_MESSAGES/akonadicontact5.mo share/locale/da/LC_MESSAGES/kcm_akonadicontact_actions.mo share/locale/de/LC_MESSAGES/akonadicontact5-serializer.mo share/locale/de/LC_MESSAGES/akonadicontact5.mo share/locale/de/LC_MESSAGES/kcm_akonadicontact_actions.mo share/locale/el/LC_MESSAGES/akonadicontact5-serializer.mo share/locale/el/LC_MESSAGES/akonadicontact5.mo share/locale/el/LC_MESSAGES/kcm_akonadicontact_actions.mo share/locale/en_GB/LC_MESSAGES/akonadicontact5-serializer.mo share/locale/en_GB/LC_MESSAGES/akonadicontact5.mo share/locale/en_GB/LC_MESSAGES/kcm_akonadicontact_actions.mo +share/locale/eo/LC_MESSAGES/akonadicontact5-serializer.mo share/locale/eo/LC_MESSAGES/akonadicontact5.mo share/locale/eo/LC_MESSAGES/kcm_akonadicontact_actions.mo share/locale/es/LC_MESSAGES/akonadicontact5-serializer.mo share/locale/es/LC_MESSAGES/akonadicontact5.mo share/locale/es/LC_MESSAGES/kcm_akonadicontact_actions.mo share/locale/et/LC_MESSAGES/akonadicontact5-serializer.mo share/locale/et/LC_MESSAGES/akonadicontact5.mo share/locale/et/LC_MESSAGES/kcm_akonadicontact_actions.mo share/locale/eu/LC_MESSAGES/akonadicontact5-serializer.mo share/locale/eu/LC_MESSAGES/akonadicontact5.mo share/locale/eu/LC_MESSAGES/kcm_akonadicontact_actions.mo share/locale/fi/LC_MESSAGES/akonadicontact5-serializer.mo share/locale/fi/LC_MESSAGES/akonadicontact5.mo share/locale/fi/LC_MESSAGES/kcm_akonadicontact_actions.mo share/locale/fr/LC_MESSAGES/akonadicontact5-serializer.mo share/locale/fr/LC_MESSAGES/akonadicontact5.mo share/locale/fr/LC_MESSAGES/kcm_akonadicontact_actions.mo share/locale/ga/LC_MESSAGES/akonadicontact5-serializer.mo share/locale/ga/LC_MESSAGES/akonadicontact5.mo share/locale/ga/LC_MESSAGES/kcm_akonadicontact_actions.mo share/locale/gl/LC_MESSAGES/akonadicontact5-serializer.mo share/locale/gl/LC_MESSAGES/akonadicontact5.mo share/locale/gl/LC_MESSAGES/kcm_akonadicontact_actions.mo share/locale/he/LC_MESSAGES/akonadicontact5.mo share/locale/he/LC_MESSAGES/kcm_akonadicontact_actions.mo share/locale/hr/LC_MESSAGES/akonadicontact5.mo share/locale/hu/LC_MESSAGES/akonadicontact5-serializer.mo share/locale/hu/LC_MESSAGES/akonadicontact5.mo share/locale/hu/LC_MESSAGES/kcm_akonadicontact_actions.mo share/locale/ia/LC_MESSAGES/akonadicontact5-serializer.mo share/locale/ia/LC_MESSAGES/akonadicontact5.mo share/locale/ia/LC_MESSAGES/kcm_akonadicontact_actions.mo share/locale/it/LC_MESSAGES/akonadicontact5-serializer.mo share/locale/it/LC_MESSAGES/akonadicontact5.mo share/locale/it/LC_MESSAGES/kcm_akonadicontact_actions.mo share/locale/ja/LC_MESSAGES/akonadicontact5-serializer.mo share/locale/ja/LC_MESSAGES/akonadicontact5.mo share/locale/ja/LC_MESSAGES/kcm_akonadicontact_actions.mo share/locale/ka/LC_MESSAGES/akonadicontact5-serializer.mo share/locale/ka/LC_MESSAGES/akonadicontact5.mo share/locale/ka/LC_MESSAGES/kcm_akonadicontact_actions.mo share/locale/kk/LC_MESSAGES/akonadicontact5-serializer.mo share/locale/kk/LC_MESSAGES/akonadicontact5.mo share/locale/kk/LC_MESSAGES/kcm_akonadicontact_actions.mo share/locale/km/LC_MESSAGES/akonadicontact5-serializer.mo share/locale/km/LC_MESSAGES/akonadicontact5.mo share/locale/km/LC_MESSAGES/kcm_akonadicontact_actions.mo share/locale/ko/LC_MESSAGES/akonadicontact5-serializer.mo share/locale/ko/LC_MESSAGES/akonadicontact5.mo share/locale/ko/LC_MESSAGES/kcm_akonadicontact_actions.mo share/locale/lt/LC_MESSAGES/akonadicontact5-serializer.mo share/locale/lt/LC_MESSAGES/akonadicontact5.mo share/locale/lt/LC_MESSAGES/kcm_akonadicontact_actions.mo share/locale/lv/LC_MESSAGES/akonadicontact5-serializer.mo share/locale/lv/LC_MESSAGES/akonadicontact5.mo share/locale/lv/LC_MESSAGES/kcm_akonadicontact_actions.mo share/locale/mai/LC_MESSAGES/akonadicontact5.mo share/locale/mr/LC_MESSAGES/akonadicontact5-serializer.mo share/locale/mr/LC_MESSAGES/akonadicontact5.mo share/locale/mr/LC_MESSAGES/kcm_akonadicontact_actions.mo share/locale/nb/LC_MESSAGES/akonadicontact5-serializer.mo share/locale/nb/LC_MESSAGES/akonadicontact5.mo share/locale/nb/LC_MESSAGES/kcm_akonadicontact_actions.mo share/locale/nds/LC_MESSAGES/akonadicontact5-serializer.mo share/locale/nds/LC_MESSAGES/akonadicontact5.mo share/locale/nds/LC_MESSAGES/kcm_akonadicontact_actions.mo share/locale/nl/LC_MESSAGES/akonadicontact5-serializer.mo share/locale/nl/LC_MESSAGES/akonadicontact5.mo share/locale/nl/LC_MESSAGES/kcm_akonadicontact_actions.mo share/locale/nn/LC_MESSAGES/akonadicontact5.mo share/locale/nn/LC_MESSAGES/kcm_akonadicontact_actions.mo share/locale/pa/LC_MESSAGES/akonadicontact5-serializer.mo share/locale/pa/LC_MESSAGES/akonadicontact5.mo share/locale/pa/LC_MESSAGES/kcm_akonadicontact_actions.mo share/locale/pl/LC_MESSAGES/akonadicontact5-serializer.mo share/locale/pl/LC_MESSAGES/akonadicontact5.mo share/locale/pl/LC_MESSAGES/kcm_akonadicontact_actions.mo share/locale/pt/LC_MESSAGES/akonadicontact5-serializer.mo share/locale/pt/LC_MESSAGES/akonadicontact5.mo share/locale/pt/LC_MESSAGES/kcm_akonadicontact_actions.mo share/locale/pt_BR/LC_MESSAGES/akonadicontact5-serializer.mo share/locale/pt_BR/LC_MESSAGES/akonadicontact5.mo share/locale/pt_BR/LC_MESSAGES/kcm_akonadicontact_actions.mo share/locale/ro/LC_MESSAGES/akonadicontact5-serializer.mo share/locale/ro/LC_MESSAGES/akonadicontact5.mo share/locale/ro/LC_MESSAGES/kcm_akonadicontact_actions.mo share/locale/ru/LC_MESSAGES/akonadicontact5-serializer.mo share/locale/ru/LC_MESSAGES/akonadicontact5.mo share/locale/ru/LC_MESSAGES/kcm_akonadicontact_actions.mo share/locale/sk/LC_MESSAGES/akonadicontact5-serializer.mo share/locale/sk/LC_MESSAGES/akonadicontact5.mo share/locale/sk/LC_MESSAGES/kcm_akonadicontact_actions.mo share/locale/sl/LC_MESSAGES/akonadicontact5-serializer.mo share/locale/sl/LC_MESSAGES/akonadicontact5.mo share/locale/sl/LC_MESSAGES/kcm_akonadicontact_actions.mo share/locale/sr/LC_MESSAGES/akonadicontact5-serializer.mo share/locale/sr/LC_MESSAGES/akonadicontact5.mo share/locale/sr/LC_MESSAGES/kcm_akonadicontact_actions.mo share/locale/sr@ijekavian/LC_MESSAGES/akonadicontact5-serializer.mo share/locale/sr@ijekavian/LC_MESSAGES/akonadicontact5.mo share/locale/sr@ijekavian/LC_MESSAGES/kcm_akonadicontact_actions.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/akonadicontact5-serializer.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/akonadicontact5.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kcm_akonadicontact_actions.mo share/locale/sr@latin/LC_MESSAGES/akonadicontact5-serializer.mo share/locale/sr@latin/LC_MESSAGES/akonadicontact5.mo share/locale/sr@latin/LC_MESSAGES/kcm_akonadicontact_actions.mo share/locale/sv/LC_MESSAGES/akonadicontact5-serializer.mo share/locale/sv/LC_MESSAGES/akonadicontact5.mo share/locale/sv/LC_MESSAGES/kcm_akonadicontact_actions.mo share/locale/th/LC_MESSAGES/kcm_akonadicontact_actions.mo share/locale/tr/LC_MESSAGES/akonadicontact5-serializer.mo share/locale/tr/LC_MESSAGES/akonadicontact5.mo share/locale/tr/LC_MESSAGES/kcm_akonadicontact_actions.mo share/locale/ug/LC_MESSAGES/akonadicontact5-serializer.mo share/locale/ug/LC_MESSAGES/akonadicontact5.mo share/locale/ug/LC_MESSAGES/kcm_akonadicontact_actions.mo share/locale/uk/LC_MESSAGES/akonadicontact5-serializer.mo share/locale/uk/LC_MESSAGES/akonadicontact5.mo share/locale/uk/LC_MESSAGES/kcm_akonadicontact_actions.mo share/locale/zh_CN/LC_MESSAGES/akonadicontact5-serializer.mo share/locale/zh_CN/LC_MESSAGES/akonadicontact5.mo share/locale/zh_CN/LC_MESSAGES/kcm_akonadicontact_actions.mo share/locale/zh_TW/LC_MESSAGES/akonadicontact5-serializer.mo share/locale/zh_TW/LC_MESSAGES/akonadicontact5.mo share/locale/zh_TW/LC_MESSAGES/kcm_akonadicontact_actions.mo share/qlogging-categories5/akonadi-contacts.categories share/qlogging-categories5/akonadi-contacts.renamecategories diff --git a/net/akonadi-mime/distinfo b/net/akonadi-mime/distinfo index f33c27cc491e..d26cdd0af296 100644 --- a/net/akonadi-mime/distinfo +++ b/net/akonadi-mime/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1677828426 -SHA256 (KDE/release-service/22.12.3/akonadi-mime-22.12.3.tar.xz) = 85dcc208e61116c236531d3eecde090c88f10f2af189528808c7b7fd6de2c103 -SIZE (KDE/release-service/22.12.3/akonadi-mime-22.12.3.tar.xz) = 153716 +TIMESTAMP = 1681548236 +SHA256 (KDE/release-service/23.04.0/akonadi-mime-23.04.0.tar.xz) = a91275c5ce277eefc9da76430c2228cdea90ffee0cb523432fcccb01c695b780 +SIZE (KDE/release-service/23.04.0/akonadi-mime-23.04.0.tar.xz) = 155436 diff --git a/net/akonadi-mime/pkg-plist b/net/akonadi-mime/pkg-plist index 7c0a0cda730d..13450e0759e1 100644 --- a/net/akonadi-mime/pkg-plist +++ b/net/akonadi-mime/pkg-plist @@ -1,99 +1,104 @@ -include/KF5/AkonadiMime/Akonadi/AddressAttribute -include/KF5/AkonadiMime/Akonadi/CommandBase -include/KF5/AkonadiMime/Akonadi/MDNStateAttribute -include/KF5/AkonadiMime/Akonadi/MarkAsCommand -include/KF5/AkonadiMime/Akonadi/MessageFlags -include/KF5/AkonadiMime/Akonadi/MessageFolderAttribute -include/KF5/AkonadiMime/Akonadi/MessageModel -include/KF5/AkonadiMime/Akonadi/MessageParts -include/KF5/AkonadiMime/Akonadi/MessageStatus -include/KF5/AkonadiMime/Akonadi/MoveCommand -include/KF5/AkonadiMime/Akonadi/NewMailNotifierAttribute -include/KF5/AkonadiMime/Akonadi/Pop3ResourceAttribute -include/KF5/AkonadiMime/Akonadi/RemoveDuplicatesJob -include/KF5/AkonadiMime/Akonadi/SpecialMailCollections -include/KF5/AkonadiMime/Akonadi/SpecialMailCollectionsDiscoveryJob -include/KF5/AkonadiMime/Akonadi/SpecialMailCollectionsRequestJob -include/KF5/AkonadiMime/Akonadi/StandardMailActionManager -include/KF5/AkonadiMime/akonadi-mime_version.h -include/KF5/AkonadiMime/akonadi/addressattribute.h -include/KF5/AkonadiMime/akonadi/akonadi-mime_export.h -include/KF5/AkonadiMime/akonadi/commandbase.h -include/KF5/AkonadiMime/akonadi/markascommand.h -include/KF5/AkonadiMime/akonadi/mdnstateattribute.h -include/KF5/AkonadiMime/akonadi/messageflags.h -include/KF5/AkonadiMime/akonadi/messagefolderattribute.h -include/KF5/AkonadiMime/akonadi/messagemodel.h -include/KF5/AkonadiMime/akonadi/messageparts.h -include/KF5/AkonadiMime/akonadi/messagestatus.h -include/KF5/AkonadiMime/akonadi/movecommand.h -include/KF5/AkonadiMime/akonadi/newmailnotifierattribute.h -include/KF5/AkonadiMime/akonadi/pop3resourceattribute.h -include/KF5/AkonadiMime/akonadi/removeduplicatesjob.h -include/KF5/AkonadiMime/akonadi/specialmailcollections.h -include/KF5/AkonadiMime/akonadi/specialmailcollectionsdiscoveryjob.h -include/KF5/AkonadiMime/akonadi/specialmailcollectionsrequestjob.h -include/KF5/AkonadiMime/akonadi/standardmailactionmanager.h +include/KPim5/AkonadiMime/Akonadi/AddressAttribute +include/KPim5/AkonadiMime/Akonadi/CommandBase +include/KPim5/AkonadiMime/Akonadi/MDNStateAttribute +include/KPim5/AkonadiMime/Akonadi/MarkAsCommand +include/KPim5/AkonadiMime/Akonadi/MessageFlags +include/KPim5/AkonadiMime/Akonadi/MessageFolderAttribute +include/KPim5/AkonadiMime/Akonadi/MessageModel +include/KPim5/AkonadiMime/Akonadi/MessageParts +include/KPim5/AkonadiMime/Akonadi/MessageStatus +include/KPim5/AkonadiMime/Akonadi/MoveCommand +include/KPim5/AkonadiMime/Akonadi/NewMailNotifierAttribute +include/KPim5/AkonadiMime/Akonadi/Pop3ResourceAttribute +include/KPim5/AkonadiMime/Akonadi/RemoveDuplicatesJob +include/KPim5/AkonadiMime/Akonadi/SpecialMailCollections +include/KPim5/AkonadiMime/Akonadi/SpecialMailCollectionsDiscoveryJob +include/KPim5/AkonadiMime/Akonadi/SpecialMailCollectionsRequestJob +include/KPim5/AkonadiMime/Akonadi/StandardMailActionManager +include/KPim5/AkonadiMime/akonadi-mime_version.h +include/KPim5/AkonadiMime/akonadi/addressattribute.h +include/KPim5/AkonadiMime/akonadi/akonadi-mime_export.h +include/KPim5/AkonadiMime/akonadi/commandbase.h +include/KPim5/AkonadiMime/akonadi/markascommand.h +include/KPim5/AkonadiMime/akonadi/mdnstateattribute.h +include/KPim5/AkonadiMime/akonadi/messageflags.h +include/KPim5/AkonadiMime/akonadi/messagefolderattribute.h +include/KPim5/AkonadiMime/akonadi/messagemodel.h +include/KPim5/AkonadiMime/akonadi/messageparts.h +include/KPim5/AkonadiMime/akonadi/messagestatus.h +include/KPim5/AkonadiMime/akonadi/movecommand.h +include/KPim5/AkonadiMime/akonadi/newmailnotifierattribute.h +include/KPim5/AkonadiMime/akonadi/pop3resourceattribute.h +include/KPim5/AkonadiMime/akonadi/removeduplicatesjob.h +include/KPim5/AkonadiMime/akonadi/specialmailcollections.h +include/KPim5/AkonadiMime/akonadi/specialmailcollectionsdiscoveryjob.h +include/KPim5/AkonadiMime/akonadi/specialmailcollectionsrequestjob.h +include/KPim5/AkonadiMime/akonadi/standardmailactionmanager.h lib/cmake/KF5AkonadiMime/KF5AkonadiMimeConfig.cmake lib/cmake/KF5AkonadiMime/KF5AkonadiMimeConfigVersion.cmake -lib/cmake/KF5AkonadiMime/KF5AkonadiMimeTargets-%%CMAKE_BUILD_TYPE%%.cmake -lib/cmake/KF5AkonadiMime/KF5AkonadiMimeTargets.cmake -lib/libKF5AkonadiMime.so -lib/libKF5AkonadiMime.so.5 -lib/libKF5AkonadiMime.so.%%KDE_APPLICATIONS_SHLIB_VER%% +lib/cmake/KF5AkonadiMime/KPim5AkonadiMimeTargets-%%CMAKE_BUILD_TYPE%%.cmake +lib/cmake/KF5AkonadiMime/KPim5AkonadiMimeTargets.cmake +lib/cmake/KPim5AkonadiMime/KPim5AkonadiMimeConfig.cmake +lib/cmake/KPim5AkonadiMime/KPim5AkonadiMimeConfigVersion.cmake +lib/cmake/KPim5AkonadiMime/KPim5AkonadiMimeTargets-%%CMAKE_BUILD_TYPE%%.cmake +lib/cmake/KPim5AkonadiMime/KPim5AkonadiMimeTargets.cmake +lib/libKPim5AkonadiMime.so +lib/libKPim5AkonadiMime.so.5 +lib/libKPim5AkonadiMime.so.%%KDE_APPLICATIONS_SHLIB_VER%% %%QT_MKSPECDIR%%/modules/qt_AkonadiMime.pri %%QT_PLUGINDIR%%/akonadi_serializer_mail.so share/akonadi/plugins/serializer/akonadi_serializer_mail.desktop share/config.kcfg/specialmailcollections.kcfg share/locale/ar/LC_MESSAGES/libakonadi-kmime5.mo share/locale/az/LC_MESSAGES/libakonadi-kmime5.mo share/locale/bg/LC_MESSAGES/libakonadi-kmime5.mo share/locale/bs/LC_MESSAGES/libakonadi-kmime5.mo share/locale/ca/LC_MESSAGES/libakonadi-kmime5.mo share/locale/ca@valencia/LC_MESSAGES/libakonadi-kmime5.mo share/locale/cs/LC_MESSAGES/libakonadi-kmime5.mo share/locale/da/LC_MESSAGES/libakonadi-kmime5.mo share/locale/de/LC_MESSAGES/libakonadi-kmime5.mo share/locale/el/LC_MESSAGES/libakonadi-kmime5.mo share/locale/en_GB/LC_MESSAGES/libakonadi-kmime5.mo share/locale/es/LC_MESSAGES/libakonadi-kmime5.mo share/locale/et/LC_MESSAGES/libakonadi-kmime5.mo share/locale/eu/LC_MESSAGES/libakonadi-kmime5.mo share/locale/fi/LC_MESSAGES/libakonadi-kmime5.mo share/locale/fr/LC_MESSAGES/libakonadi-kmime5.mo share/locale/ga/LC_MESSAGES/libakonadi-kmime5.mo share/locale/gl/LC_MESSAGES/libakonadi-kmime5.mo share/locale/hu/LC_MESSAGES/libakonadi-kmime5.mo share/locale/ia/LC_MESSAGES/libakonadi-kmime5.mo +share/locale/ie/LC_MESSAGES/libakonadi-kmime5.mo share/locale/it/LC_MESSAGES/libakonadi-kmime5.mo share/locale/ja/LC_MESSAGES/libakonadi-kmime5.mo share/locale/ka/LC_MESSAGES/libakonadi-kmime5.mo share/locale/kk/LC_MESSAGES/libakonadi-kmime5.mo share/locale/km/LC_MESSAGES/libakonadi-kmime5.mo share/locale/ko/LC_MESSAGES/libakonadi-kmime5.mo share/locale/lt/LC_MESSAGES/libakonadi-kmime5.mo share/locale/mai/LC_MESSAGES/libakonadi-kmime5.mo share/locale/mr/LC_MESSAGES/libakonadi-kmime5.mo share/locale/nb/LC_MESSAGES/libakonadi-kmime5.mo share/locale/nds/LC_MESSAGES/libakonadi-kmime5.mo share/locale/nl/LC_MESSAGES/libakonadi-kmime5.mo share/locale/nn/LC_MESSAGES/libakonadi-kmime5.mo share/locale/pl/LC_MESSAGES/libakonadi-kmime5.mo share/locale/pt/LC_MESSAGES/libakonadi-kmime5.mo share/locale/pt_BR/LC_MESSAGES/libakonadi-kmime5.mo share/locale/ro/LC_MESSAGES/libakonadi-kmime5.mo share/locale/ru/LC_MESSAGES/libakonadi-kmime5.mo share/locale/sk/LC_MESSAGES/libakonadi-kmime5.mo share/locale/sl/LC_MESSAGES/libakonadi-kmime5.mo share/locale/sr/LC_MESSAGES/libakonadi-kmime5.mo share/locale/sr@ijekavian/LC_MESSAGES/libakonadi-kmime5.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/libakonadi-kmime5.mo share/locale/sr@latin/LC_MESSAGES/libakonadi-kmime5.mo share/locale/sv/LC_MESSAGES/libakonadi-kmime5.mo share/locale/tr/LC_MESSAGES/libakonadi-kmime5.mo share/locale/ug/LC_MESSAGES/libakonadi-kmime5.mo share/locale/uk/LC_MESSAGES/libakonadi-kmime5.mo share/locale/zh_CN/LC_MESSAGES/libakonadi-kmime5.mo share/locale/zh_TW/LC_MESSAGES/libakonadi-kmime5.mo share/mime/packages/x-vnd.kde.contactgroup.xml share/qlogging-categories5/akonadi-mime.categories diff --git a/net/akonadi-notes/distinfo b/net/akonadi-notes/distinfo index 67fbb24af7c7..f5bccde84582 100644 --- a/net/akonadi-notes/distinfo +++ b/net/akonadi-notes/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1677828384 -SHA256 (KDE/release-service/22.12.3/akonadi-notes-22.12.3.tar.xz) = 4792f507285c1169231af0085b4a2d94c0e47cc287b36388020862956144ec8d -SIZE (KDE/release-service/22.12.3/akonadi-notes-22.12.3.tar.xz) = 27792 +TIMESTAMP = 1681548251 +SHA256 (KDE/release-service/23.04.0/akonadi-notes-23.04.0.tar.xz) = c4f64ff89816ae14d8fc93e02ab0971d9beda6ae69dd710443d4efd0d94ff93f +SIZE (KDE/release-service/23.04.0/akonadi-notes-23.04.0.tar.xz) = 28540 diff --git a/net/akonadi-notes/pkg-plist b/net/akonadi-notes/pkg-plist index 025ddd8c1596..98e79d023911 100644 --- a/net/akonadi-notes/pkg-plist +++ b/net/akonadi-notes/pkg-plist @@ -1,67 +1,73 @@ -include/KF5/AkonadiNotes/Akonadi/NoteUtils -include/KF5/AkonadiNotes/akonadi-notes_version.h -include/KF5/AkonadiNotes/akonadi/NoteUtils -include/KF5/AkonadiNotes/akonadi/akonadi-notes_export.h -include/KF5/AkonadiNotes/akonadi/noteutils.h +include/KPim5/AkonadiNotes/Akonadi/NoteUtils +include/KPim5/AkonadiNotes/akonadi-notes_version.h +include/KPim5/AkonadiNotes/akonadi/NoteUtils +include/KPim5/AkonadiNotes/akonadi/akonadi-notes_export.h +include/KPim5/AkonadiNotes/akonadi/noteutils.h lib/cmake/KF5AkonadiNotes/KF5AkonadiNotesConfig.cmake lib/cmake/KF5AkonadiNotes/KF5AkonadiNotesConfigVersion.cmake -lib/cmake/KF5AkonadiNotes/KF5AkonadiNotesTargets-%%CMAKE_BUILD_TYPE%%.cmake -lib/cmake/KF5AkonadiNotes/KF5AkonadiNotesTargets.cmake -lib/libKF5AkonadiNotes.so -lib/libKF5AkonadiNotes.so.5 -lib/libKF5AkonadiNotes.so.%%KDE_APPLICATIONS_SHLIB_VER%% +lib/cmake/KF5AkonadiNotes/KPim5AkonadiNotesTargets-%%CMAKE_BUILD_TYPE%%.cmake +lib/cmake/KF5AkonadiNotes/KPim5AkonadiNotesTargets.cmake +lib/cmake/KPim5AkonadiNotes/KPim5AkonadiNotesConfig.cmake +lib/cmake/KPim5AkonadiNotes/KPim5AkonadiNotesConfigVersion.cmake +lib/cmake/KPim5AkonadiNotes/KPim5AkonadiNotesTargets-%%CMAKE_BUILD_TYPE%%.cmake +lib/cmake/KPim5AkonadiNotes/KPim5AkonadiNotesTargets.cmake +lib/libKPim5AkonadiNotes.so +lib/libKPim5AkonadiNotes.so.5 +lib/libKPim5AkonadiNotes.so.%%KDE_APPLICATIONS_SHLIB_VER%% %%QT_MKSPECDIR%%/modules/qt_AkonadiNotes.pri share/locale/ar/LC_MESSAGES/akonadinotes5.mo +share/locale/ast/LC_MESSAGES/akonadinotes5.mo share/locale/az/LC_MESSAGES/akonadinotes5.mo share/locale/bg/LC_MESSAGES/akonadinotes5.mo share/locale/bs/LC_MESSAGES/akonadinotes5.mo share/locale/ca/LC_MESSAGES/akonadinotes5.mo share/locale/ca@valencia/LC_MESSAGES/akonadinotes5.mo share/locale/cs/LC_MESSAGES/akonadinotes5.mo share/locale/da/LC_MESSAGES/akonadinotes5.mo share/locale/de/LC_MESSAGES/akonadinotes5.mo share/locale/el/LC_MESSAGES/akonadinotes5.mo share/locale/en_GB/LC_MESSAGES/akonadinotes5.mo share/locale/es/LC_MESSAGES/akonadinotes5.mo share/locale/et/LC_MESSAGES/akonadinotes5.mo share/locale/eu/LC_MESSAGES/akonadinotes5.mo share/locale/fi/LC_MESSAGES/akonadinotes5.mo share/locale/fr/LC_MESSAGES/akonadinotes5.mo share/locale/ga/LC_MESSAGES/akonadinotes5.mo share/locale/gl/LC_MESSAGES/akonadinotes5.mo share/locale/he/LC_MESSAGES/akonadinotes5.mo share/locale/hi/LC_MESSAGES/akonadinotes5.mo share/locale/hsb/LC_MESSAGES/akonadinotes5.mo share/locale/hu/LC_MESSAGES/akonadinotes5.mo share/locale/ia/LC_MESSAGES/akonadinotes5.mo +share/locale/is/LC_MESSAGES/akonadinotes5.mo share/locale/it/LC_MESSAGES/akonadinotes5.mo share/locale/ja/LC_MESSAGES/akonadinotes5.mo share/locale/ka/LC_MESSAGES/akonadinotes5.mo share/locale/kk/LC_MESSAGES/akonadinotes5.mo share/locale/km/LC_MESSAGES/akonadinotes5.mo share/locale/ko/LC_MESSAGES/akonadinotes5.mo share/locale/lt/LC_MESSAGES/akonadinotes5.mo share/locale/mr/LC_MESSAGES/akonadinotes5.mo share/locale/nb/LC_MESSAGES/akonadinotes5.mo share/locale/nds/LC_MESSAGES/akonadinotes5.mo share/locale/nl/LC_MESSAGES/akonadinotes5.mo share/locale/nn/LC_MESSAGES/akonadinotes5.mo share/locale/pl/LC_MESSAGES/akonadinotes5.mo share/locale/pt/LC_MESSAGES/akonadinotes5.mo share/locale/pt_BR/LC_MESSAGES/akonadinotes5.mo share/locale/ro/LC_MESSAGES/akonadinotes5.mo share/locale/ru/LC_MESSAGES/akonadinotes5.mo share/locale/sk/LC_MESSAGES/akonadinotes5.mo share/locale/sl/LC_MESSAGES/akonadinotes5.mo share/locale/sr/LC_MESSAGES/akonadinotes5.mo share/locale/sr@ijekavian/LC_MESSAGES/akonadinotes5.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/akonadinotes5.mo share/locale/sr@latin/LC_MESSAGES/akonadinotes5.mo share/locale/sv/LC_MESSAGES/akonadinotes5.mo share/locale/tg/LC_MESSAGES/akonadinotes5.mo share/locale/tr/LC_MESSAGES/akonadinotes5.mo share/locale/ug/LC_MESSAGES/akonadinotes5.mo share/locale/uk/LC_MESSAGES/akonadinotes5.mo share/locale/vi/LC_MESSAGES/akonadinotes5.mo share/locale/zh_CN/LC_MESSAGES/akonadinotes5.mo share/locale/zh_TW/LC_MESSAGES/akonadinotes5.mo diff --git a/net/akonadi-search/distinfo b/net/akonadi-search/distinfo index 4d77a9f7bee7..6010b8ca3f8d 100644 --- a/net/akonadi-search/distinfo +++ b/net/akonadi-search/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1677828392 -SHA256 (KDE/release-service/22.12.3/akonadi-search-22.12.3.tar.xz) = 1b579069e9de6fdd74870d8ea5b381300aad797f06179211addc15c40956e5c2 -SIZE (KDE/release-service/22.12.3/akonadi-search-22.12.3.tar.xz) = 101448 +TIMESTAMP = 1681548224 +SHA256 (KDE/release-service/23.04.0/akonadi-search-23.04.0.tar.xz) = 46d1893902ec874251b659b256e8b6e63b68de3862988d998e5307022c166fa1 +SIZE (KDE/release-service/23.04.0/akonadi-search-23.04.0.tar.xz) = 102176 diff --git a/net/akonadi-search/pkg-plist b/net/akonadi-search/pkg-plist index 5812a75676e3..d1eb1b4c3b3c 100644 --- a/net/akonadi-search/pkg-plist +++ b/net/akonadi-search/pkg-plist @@ -1,99 +1,103 @@ bin/akonadi_indexing_agent -include/KF5/AkonadiSearch/Core/Query -include/KF5/AkonadiSearch/Core/ResultIterator -include/KF5/AkonadiSearch/Core/SearchStore -include/KF5/AkonadiSearch/Core/Term -include/KF5/AkonadiSearch/Debug/akonadisearchdebugdialog.h -include/KF5/AkonadiSearch/Debug/akonadisearchdebugsearchpathcombobox.h -include/KF5/AkonadiSearch/Debug/search_debug_export.h -include/KF5/AkonadiSearch/PIM/collectionquery.h -include/KF5/AkonadiSearch/PIM/contactcompleter.h -include/KF5/AkonadiSearch/PIM/contactquery.h -include/KF5/AkonadiSearch/PIM/emailquery.h -include/KF5/AkonadiSearch/PIM/indexeditems.h -include/KF5/AkonadiSearch/PIM/notequery.h -include/KF5/AkonadiSearch/PIM/query.h -include/KF5/AkonadiSearch/PIM/resultiterator.h -include/KF5/AkonadiSearch/PIM/search_pim_export.h -include/KF5/AkonadiSearch/Xapian/search_xapian_export.h -include/KF5/AkonadiSearch/Xapian/xapiandatabase.h -include/KF5/AkonadiSearch/Xapian/xapiandocument.h -include/KF5/AkonadiSearch/Xapian/xapianqueryparser.h -include/KF5/AkonadiSearch/Xapian/xapiansearchstore.h -include/KF5/AkonadiSearch/Xapian/xapiantermgenerator.h -include/KF5/AkonadiSearch/akonadi_search_version.h -include/KF5/AkonadiSearch/core/query.h -include/KF5/AkonadiSearch/core/resultiterator.h -include/KF5/AkonadiSearch/core/searchstore.h -include/KF5/AkonadiSearch/core/term.h -include/KF5/AkonadiSearch/search_core_export.h +include/KPim5/AkonadiSearch/Core/Query +include/KPim5/AkonadiSearch/Core/ResultIterator +include/KPim5/AkonadiSearch/Core/SearchStore +include/KPim5/AkonadiSearch/Core/Term +include/KPim5/AkonadiSearch/Debug/akonadisearchdebugdialog.h +include/KPim5/AkonadiSearch/Debug/akonadisearchdebugsearchpathcombobox.h +include/KPim5/AkonadiSearch/Debug/search_debug_export.h +include/KPim5/AkonadiSearch/PIM/collectionquery.h +include/KPim5/AkonadiSearch/PIM/contactcompleter.h +include/KPim5/AkonadiSearch/PIM/contactquery.h +include/KPim5/AkonadiSearch/PIM/emailquery.h +include/KPim5/AkonadiSearch/PIM/indexeditems.h +include/KPim5/AkonadiSearch/PIM/notequery.h +include/KPim5/AkonadiSearch/PIM/query.h +include/KPim5/AkonadiSearch/PIM/resultiterator.h +include/KPim5/AkonadiSearch/PIM/search_pim_export.h +include/KPim5/AkonadiSearch/Xapian/search_xapian_export.h +include/KPim5/AkonadiSearch/Xapian/xapiandatabase.h +include/KPim5/AkonadiSearch/Xapian/xapiandocument.h +include/KPim5/AkonadiSearch/Xapian/xapianqueryparser.h +include/KPim5/AkonadiSearch/Xapian/xapiansearchstore.h +include/KPim5/AkonadiSearch/Xapian/xapiantermgenerator.h +include/KPim5/AkonadiSearch/akonadi_search_version.h +include/KPim5/AkonadiSearch/core/query.h +include/KPim5/AkonadiSearch/core/resultiterator.h +include/KPim5/AkonadiSearch/core/searchstore.h +include/KPim5/AkonadiSearch/core/term.h +include/KPim5/AkonadiSearch/search_core_export.h lib/cmake/KF5AkonadiSearch/KF5AkonadiSearchConfig.cmake lib/cmake/KF5AkonadiSearch/KF5AkonadiSearchConfigVersion.cmake -lib/cmake/KF5AkonadiSearch/KF5AkonadiSearchTargets-%%CMAKE_BUILD_TYPE%%.cmake -lib/cmake/KF5AkonadiSearch/KF5AkonadiSearchTargets.cmake -lib/libKF5AkonadiSearchCore.so -lib/libKF5AkonadiSearchCore.so.5 -lib/libKF5AkonadiSearchCore.so.%%KDE_APPLICATIONS_SHLIB_VER%% -lib/libKF5AkonadiSearchDebug.so -lib/libKF5AkonadiSearchDebug.so.5 -lib/libKF5AkonadiSearchDebug.so.%%KDE_APPLICATIONS_SHLIB_VER%% -lib/libKF5AkonadiSearchPIM.so -lib/libKF5AkonadiSearchPIM.so.5 -lib/libKF5AkonadiSearchPIM.so.%%KDE_APPLICATIONS_SHLIB_VER%% -lib/libKF5AkonadiSearchXapian.so -lib/libKF5AkonadiSearchXapian.so.5 -lib/libKF5AkonadiSearchXapian.so.%%KDE_APPLICATIONS_SHLIB_VER%% +lib/cmake/KF5AkonadiSearch/KPim5AkonadiSearchTargets-%%CMAKE_BUILD_TYPE%%.cmake +lib/cmake/KF5AkonadiSearch/KPim5AkonadiSearchTargets.cmake +lib/cmake/KPim5AkonadiSearch/KPim5AkonadiSearchConfig.cmake +lib/cmake/KPim5AkonadiSearch/KPim5AkonadiSearchConfigVersion.cmake +lib/cmake/KPim5AkonadiSearch/KPim5AkonadiSearchTargets-%%CMAKE_BUILD_TYPE%%.cmake +lib/cmake/KPim5AkonadiSearch/KPim5AkonadiSearchTargets.cmake +lib/libKPim5AkonadiSearchCore.so +lib/libKPim5AkonadiSearchCore.so.5 +lib/libKPim5AkonadiSearchCore.so.%%KDE_APPLICATIONS_SHLIB_VER%% +lib/libKPim5AkonadiSearchDebug.so +lib/libKPim5AkonadiSearchDebug.so.5 +lib/libKPim5AkonadiSearchDebug.so.%%KDE_APPLICATIONS_SHLIB_VER%% +lib/libKPim5AkonadiSearchPIM.so +lib/libKPim5AkonadiSearchPIM.so.5 +lib/libKPim5AkonadiSearchPIM.so.%%KDE_APPLICATIONS_SHLIB_VER%% +lib/libKPim5AkonadiSearchXapian.so +lib/libKPim5AkonadiSearchXapian.so.5 +lib/libKPim5AkonadiSearchXapian.so.%%KDE_APPLICATIONS_SHLIB_VER%% %%QT_PLUGINDIR%%/kf5/krunner/kcms/kcm_krunner_pimcontacts.so %%QT_PLUGINDIR%%/kf5/krunner/krunner_pimcontacts.so %%QT_PLUGINDIR%%/pim5/akonadi/akonadi_search_plugin.so %%QT_PLUGINDIR%%/pim5/akonadi/calendarsearchstore.so %%QT_PLUGINDIR%%/pim5/akonadi/contactsearchstore.so %%QT_PLUGINDIR%%/pim5/akonadi/emailsearchstore.so %%QT_PLUGINDIR%%/pim5/akonadi/notesearchstore.so share/akonadi/agents/akonadiindexingagent.desktop share/locale/ar/LC_MESSAGES/akonadi_search.mo share/locale/az/LC_MESSAGES/akonadi_search.mo share/locale/bg/LC_MESSAGES/akonadi_search.mo share/locale/ca/LC_MESSAGES/akonadi_search.mo share/locale/ca@valencia/LC_MESSAGES/akonadi_search.mo share/locale/cs/LC_MESSAGES/akonadi_search.mo share/locale/da/LC_MESSAGES/akonadi_search.mo share/locale/de/LC_MESSAGES/akonadi_search.mo share/locale/el/LC_MESSAGES/akonadi_search.mo share/locale/en_GB/LC_MESSAGES/akonadi_search.mo share/locale/es/LC_MESSAGES/akonadi_search.mo share/locale/et/LC_MESSAGES/akonadi_search.mo share/locale/eu/LC_MESSAGES/akonadi_search.mo share/locale/fi/LC_MESSAGES/akonadi_search.mo share/locale/fr/LC_MESSAGES/akonadi_search.mo share/locale/gl/LC_MESSAGES/akonadi_search.mo share/locale/hi/LC_MESSAGES/akonadi_search.mo share/locale/hsb/LC_MESSAGES/akonadi_search.mo share/locale/hu/LC_MESSAGES/akonadi_search.mo share/locale/ia/LC_MESSAGES/akonadi_search.mo share/locale/it/LC_MESSAGES/akonadi_search.mo share/locale/ja/LC_MESSAGES/akonadi_search.mo share/locale/ka/LC_MESSAGES/akonadi_search.mo share/locale/ko/LC_MESSAGES/akonadi_search.mo share/locale/lt/LC_MESSAGES/akonadi_search.mo share/locale/nb/LC_MESSAGES/akonadi_search.mo share/locale/nl/LC_MESSAGES/akonadi_search.mo share/locale/nn/LC_MESSAGES/akonadi_search.mo share/locale/pl/LC_MESSAGES/akonadi_search.mo share/locale/pt/LC_MESSAGES/akonadi_search.mo share/locale/pt_BR/LC_MESSAGES/akonadi_search.mo share/locale/ro/LC_MESSAGES/akonadi_search.mo share/locale/ru/LC_MESSAGES/akonadi_search.mo share/locale/sk/LC_MESSAGES/akonadi_search.mo share/locale/sl/LC_MESSAGES/akonadi_search.mo share/locale/sr/LC_MESSAGES/akonadi_search.mo share/locale/sr@ijekavian/LC_MESSAGES/akonadi_search.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/akonadi_search.mo share/locale/sr@latin/LC_MESSAGES/akonadi_search.mo share/locale/sv/LC_MESSAGES/akonadi_search.mo share/locale/tr/LC_MESSAGES/akonadi_search.mo share/locale/uk/LC_MESSAGES/akonadi_search.mo share/locale/zh_CN/LC_MESSAGES/akonadi_search.mo share/locale/zh_TW/LC_MESSAGES/akonadi_search.mo share/qlogging-categories5/akonadi-search.categories share/qlogging-categories5/akonadi-search.renamecategories diff --git a/net/calendarsupport/distinfo b/net/calendarsupport/distinfo index 3a63dfcb48bd..101abe9dc9bf 100644 --- a/net/calendarsupport/distinfo +++ b/net/calendarsupport/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1677828420 -SHA256 (KDE/release-service/22.12.3/calendarsupport-22.12.3.tar.xz) = 6a2205b2a89d10562fed0db4dd3888022ca1dd73180ab854ac241f926cb07bb5 -SIZE (KDE/release-service/22.12.3/calendarsupport-22.12.3.tar.xz) = 987512 +TIMESTAMP = 1681548250 +SHA256 (KDE/release-service/23.04.0/calendarsupport-23.04.0.tar.xz) = 2af0ccc66ec8d8b58a74da575413bf8b58bfee1619e82caa895343dc901232ca +SIZE (KDE/release-service/23.04.0/calendarsupport-23.04.0.tar.xz) = 988276 diff --git a/net/calendarsupport/pkg-plist b/net/calendarsupport/pkg-plist index 409f610cf52a..3ed853628a9c 100644 --- a/net/calendarsupport/pkg-plist +++ b/net/calendarsupport/pkg-plist @@ -1,139 +1,143 @@ -include/KF5/CalendarSupport/CalendarSupport/ArchiveDialog -include/KF5/CalendarSupport/CalendarSupport/CalPrintDefaultPlugins -include/KF5/CalendarSupport/CalendarSupport/CalPrintPluginBase -include/KF5/CalendarSupport/CalendarSupport/CalPrinter -include/KF5/CalendarSupport/CalendarSupport/CalendarSingleton -include/KF5/CalendarSupport/CalendarSupport/CategoryHierarchyReader -include/KF5/CalendarSupport/CalendarSupport/CellItem -include/KF5/CalendarSupport/CalendarSupport/CollectionSelection -include/KF5/CalendarSupport/CalendarSupport/EventArchiver -include/KF5/CalendarSupport/CalendarSupport/FreeBusyCalendar -include/KF5/CalendarSupport/CalendarSupport/FreeBusyItem -include/KF5/CalendarSupport/CalendarSupport/FreeBusyItemModel -include/KF5/CalendarSupport/CalendarSupport/FreePeriodModel -include/KF5/CalendarSupport/CalendarSupport/IdentityManager -include/KF5/CalendarSupport/CalendarSupport/IncidenceViewer -include/KF5/CalendarSupport/CalendarSupport/KCalPrefs -include/KF5/CalendarSupport/CalendarSupport/MessageWidget -include/KF5/CalendarSupport/CalendarSupport/NoteEditDialog -include/KF5/CalendarSupport/CalendarSupport/PrintPlugin -include/KF5/CalendarSupport/CalendarSupport/UriHandler -include/KF5/CalendarSupport/CalendarSupport/Utils -include/KF5/CalendarSupport/calendarsupport/archivedialog.h -include/KF5/CalendarSupport/calendarsupport/calendarsingleton.h -include/KF5/CalendarSupport/calendarsupport/calendarsupport_export.h -include/KF5/CalendarSupport/calendarsupport/calprintdefaultplugins.h -include/KF5/CalendarSupport/calendarsupport/calprinter.h -include/KF5/CalendarSupport/calendarsupport/calprintpluginbase.h -include/KF5/CalendarSupport/calendarsupport/categoryhierarchyreader.h -include/KF5/CalendarSupport/calendarsupport/cellitem.h -include/KF5/CalendarSupport/calendarsupport/collectionselection.h -include/KF5/CalendarSupport/calendarsupport/eventarchiver.h -include/KF5/CalendarSupport/calendarsupport/freebusycalendar.h -include/KF5/CalendarSupport/calendarsupport/freebusyitem.h -include/KF5/CalendarSupport/calendarsupport/freebusyitemmodel.h -include/KF5/CalendarSupport/calendarsupport/freeperiodmodel.h -include/KF5/CalendarSupport/calendarsupport/identitymanager.h -include/KF5/CalendarSupport/calendarsupport/incidenceviewer.h -include/KF5/CalendarSupport/calendarsupport/kcalprefs.h -include/KF5/CalendarSupport/calendarsupport/kcalprefs_base.h -include/KF5/CalendarSupport/calendarsupport/messagewidget.h -include/KF5/CalendarSupport/calendarsupport/noteeditdialog.h -include/KF5/CalendarSupport/calendarsupport/printplugin.h -include/KF5/CalendarSupport/calendarsupport/ui_calprintdayconfig_base.h -include/KF5/CalendarSupport/calendarsupport/ui_calprintincidenceconfig_base.h -include/KF5/CalendarSupport/calendarsupport/ui_calprintmonthconfig_base.h -include/KF5/CalendarSupport/calendarsupport/ui_calprinttodoconfig_base.h -include/KF5/CalendarSupport/calendarsupport/ui_calprintweekconfig_base.h -include/KF5/CalendarSupport/calendarsupport/urihandler.h -include/KF5/CalendarSupport/calendarsupport/utils.h -include/KF5/CalendarSupport/calendarsupport_version.h +include/KPim5/CalendarSupport/CalendarSupport/ArchiveDialog +include/KPim5/CalendarSupport/CalendarSupport/CalPrintDefaultPlugins +include/KPim5/CalendarSupport/CalendarSupport/CalPrintPluginBase +include/KPim5/CalendarSupport/CalendarSupport/CalPrinter +include/KPim5/CalendarSupport/CalendarSupport/CalendarSingleton +include/KPim5/CalendarSupport/CalendarSupport/CategoryHierarchyReader +include/KPim5/CalendarSupport/CalendarSupport/CellItem +include/KPim5/CalendarSupport/CalendarSupport/CollectionSelection +include/KPim5/CalendarSupport/CalendarSupport/EventArchiver +include/KPim5/CalendarSupport/CalendarSupport/FreeBusyCalendar +include/KPim5/CalendarSupport/CalendarSupport/FreeBusyItem +include/KPim5/CalendarSupport/CalendarSupport/FreeBusyItemModel +include/KPim5/CalendarSupport/CalendarSupport/FreePeriodModel +include/KPim5/CalendarSupport/CalendarSupport/IdentityManager +include/KPim5/CalendarSupport/CalendarSupport/IncidenceViewer +include/KPim5/CalendarSupport/CalendarSupport/KCalPrefs +include/KPim5/CalendarSupport/CalendarSupport/MessageWidget +include/KPim5/CalendarSupport/CalendarSupport/NoteEditDialog +include/KPim5/CalendarSupport/CalendarSupport/PrintPlugin +include/KPim5/CalendarSupport/CalendarSupport/UriHandler +include/KPim5/CalendarSupport/CalendarSupport/Utils +include/KPim5/CalendarSupport/calendarsupport/archivedialog.h +include/KPim5/CalendarSupport/calendarsupport/calendarsingleton.h +include/KPim5/CalendarSupport/calendarsupport/calendarsupport_export.h +include/KPim5/CalendarSupport/calendarsupport/calprintdefaultplugins.h +include/KPim5/CalendarSupport/calendarsupport/calprinter.h +include/KPim5/CalendarSupport/calendarsupport/calprintpluginbase.h +include/KPim5/CalendarSupport/calendarsupport/categoryhierarchyreader.h +include/KPim5/CalendarSupport/calendarsupport/cellitem.h +include/KPim5/CalendarSupport/calendarsupport/collectionselection.h +include/KPim5/CalendarSupport/calendarsupport/eventarchiver.h +include/KPim5/CalendarSupport/calendarsupport/freebusycalendar.h +include/KPim5/CalendarSupport/calendarsupport/freebusyitem.h +include/KPim5/CalendarSupport/calendarsupport/freebusyitemmodel.h +include/KPim5/CalendarSupport/calendarsupport/freeperiodmodel.h +include/KPim5/CalendarSupport/calendarsupport/identitymanager.h +include/KPim5/CalendarSupport/calendarsupport/incidenceviewer.h +include/KPim5/CalendarSupport/calendarsupport/kcalprefs.h +include/KPim5/CalendarSupport/calendarsupport/kcalprefs_base.h +include/KPim5/CalendarSupport/calendarsupport/messagewidget.h +include/KPim5/CalendarSupport/calendarsupport/noteeditdialog.h +include/KPim5/CalendarSupport/calendarsupport/printplugin.h +include/KPim5/CalendarSupport/calendarsupport/ui_calprintdayconfig_base.h +include/KPim5/CalendarSupport/calendarsupport/ui_calprintincidenceconfig_base.h +include/KPim5/CalendarSupport/calendarsupport/ui_calprintmonthconfig_base.h +include/KPim5/CalendarSupport/calendarsupport/ui_calprinttodoconfig_base.h +include/KPim5/CalendarSupport/calendarsupport/ui_calprintweekconfig_base.h +include/KPim5/CalendarSupport/calendarsupport/urihandler.h +include/KPim5/CalendarSupport/calendarsupport/utils.h +include/KPim5/CalendarSupport/calendarsupport_version.h lib/cmake/KF5CalendarSupport/KF5CalendarSupportConfig.cmake lib/cmake/KF5CalendarSupport/KF5CalendarSupportConfigVersion.cmake -lib/cmake/KF5CalendarSupport/KF5CalendarSupportTargets-%%CMAKE_BUILD_TYPE%%.cmake -lib/cmake/KF5CalendarSupport/KF5CalendarSupportTargets.cmake -lib/libKF5CalendarSupport.so -lib/libKF5CalendarSupport.so.5 -lib/libKF5CalendarSupport.so.%%KDE_APPLICATIONS_SHLIB_VER%% +lib/cmake/KF5CalendarSupport/KPim5CalendarSupportTargets-%%CMAKE_BUILD_TYPE%%.cmake +lib/cmake/KF5CalendarSupport/KPim5CalendarSupportTargets.cmake +lib/cmake/KPim5CalendarSupport/KPim5CalendarSupportConfig.cmake +lib/cmake/KPim5CalendarSupport/KPim5CalendarSupportConfigVersion.cmake +lib/cmake/KPim5CalendarSupport/KPim5CalendarSupportTargets-%%CMAKE_BUILD_TYPE%%.cmake +lib/cmake/KPim5CalendarSupport/KPim5CalendarSupportTargets.cmake +lib/libKPim5CalendarSupport.so +lib/libKPim5CalendarSupport.so.5 +lib/libKPim5CalendarSupport.so.%%KDE_APPLICATIONS_SHLIB_VER%% %%QT_MKSPECDIR%%/modules/qt_CalendarSupport.pri share/locale/af/LC_MESSAGES/calendarsupport.mo share/locale/ar/LC_MESSAGES/calendarsupport.mo share/locale/az/LC_MESSAGES/calendarsupport.mo share/locale/be/LC_MESSAGES/calendarsupport.mo share/locale/bg/LC_MESSAGES/calendarsupport.mo share/locale/br/LC_MESSAGES/calendarsupport.mo share/locale/bs/LC_MESSAGES/calendarsupport.mo share/locale/ca/LC_MESSAGES/calendarsupport.mo share/locale/ca@valencia/LC_MESSAGES/calendarsupport.mo share/locale/cs/LC_MESSAGES/calendarsupport.mo share/locale/cy/LC_MESSAGES/calendarsupport.mo share/locale/da/LC_MESSAGES/calendarsupport.mo share/locale/de/LC_MESSAGES/calendarsupport.mo share/locale/el/LC_MESSAGES/calendarsupport.mo share/locale/en_GB/LC_MESSAGES/calendarsupport.mo share/locale/eo/LC_MESSAGES/calendarsupport.mo share/locale/es/LC_MESSAGES/calendarsupport.mo share/locale/et/LC_MESSAGES/calendarsupport.mo share/locale/eu/LC_MESSAGES/calendarsupport.mo share/locale/fa/LC_MESSAGES/calendarsupport.mo share/locale/fi/LC_MESSAGES/calendarsupport.mo share/locale/fr/LC_MESSAGES/calendarsupport.mo share/locale/fy/LC_MESSAGES/calendarsupport.mo share/locale/ga/LC_MESSAGES/calendarsupport.mo share/locale/gl/LC_MESSAGES/calendarsupport.mo share/locale/he/LC_MESSAGES/calendarsupport.mo share/locale/hi/LC_MESSAGES/calendarsupport.mo share/locale/hne/LC_MESSAGES/calendarsupport.mo share/locale/hr/LC_MESSAGES/calendarsupport.mo share/locale/hsb/LC_MESSAGES/calendarsupport.mo share/locale/hu/LC_MESSAGES/calendarsupport.mo share/locale/ia/LC_MESSAGES/calendarsupport.mo share/locale/id/LC_MESSAGES/calendarsupport.mo share/locale/is/LC_MESSAGES/calendarsupport.mo share/locale/it/LC_MESSAGES/calendarsupport.mo share/locale/ja/LC_MESSAGES/calendarsupport.mo share/locale/ka/LC_MESSAGES/calendarsupport.mo share/locale/kk/LC_MESSAGES/calendarsupport.mo share/locale/km/LC_MESSAGES/calendarsupport.mo share/locale/ko/LC_MESSAGES/calendarsupport.mo share/locale/lt/LC_MESSAGES/calendarsupport.mo share/locale/lv/LC_MESSAGES/calendarsupport.mo share/locale/mai/LC_MESSAGES/calendarsupport.mo share/locale/mk/LC_MESSAGES/calendarsupport.mo share/locale/mr/LC_MESSAGES/calendarsupport.mo share/locale/ms/LC_MESSAGES/calendarsupport.mo share/locale/nb/LC_MESSAGES/calendarsupport.mo share/locale/nds/LC_MESSAGES/calendarsupport.mo share/locale/ne/LC_MESSAGES/calendarsupport.mo share/locale/nl/LC_MESSAGES/calendarsupport.mo share/locale/nn/LC_MESSAGES/calendarsupport.mo share/locale/pa/LC_MESSAGES/calendarsupport.mo share/locale/pl/LC_MESSAGES/calendarsupport.mo share/locale/pt/LC_MESSAGES/calendarsupport.mo share/locale/pt_BR/LC_MESSAGES/calendarsupport.mo share/locale/ro/LC_MESSAGES/calendarsupport.mo share/locale/ru/LC_MESSAGES/calendarsupport.mo share/locale/se/LC_MESSAGES/calendarsupport.mo share/locale/si/LC_MESSAGES/calendarsupport.mo share/locale/sk/LC_MESSAGES/calendarsupport.mo share/locale/sl/LC_MESSAGES/calendarsupport.mo share/locale/sq/LC_MESSAGES/calendarsupport.mo share/locale/sr/LC_MESSAGES/calendarsupport.mo share/locale/sr@ijekavian/LC_MESSAGES/calendarsupport.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/calendarsupport.mo share/locale/sr@latin/LC_MESSAGES/calendarsupport.mo share/locale/sv/LC_MESSAGES/calendarsupport.mo share/locale/ta/LC_MESSAGES/calendarsupport.mo share/locale/tg/LC_MESSAGES/calendarsupport.mo share/locale/th/LC_MESSAGES/calendarsupport.mo share/locale/tr/LC_MESSAGES/calendarsupport.mo share/locale/ug/LC_MESSAGES/calendarsupport.mo share/locale/uk/LC_MESSAGES/calendarsupport.mo share/locale/uz/LC_MESSAGES/calendarsupport.mo share/locale/uz@cyrillic/LC_MESSAGES/calendarsupport.mo share/locale/wa/LC_MESSAGES/calendarsupport.mo share/locale/xh/LC_MESSAGES/calendarsupport.mo share/locale/zh_CN/LC_MESSAGES/calendarsupport.mo share/locale/zh_TW/LC_MESSAGES/calendarsupport.mo share/qlogging-categories5/calendarsupport.categories share/qlogging-categories5/calendarsupport.renamecategories diff --git a/net/eventviews/distinfo b/net/eventviews/distinfo index bfe1811ddf9b..8ff34ed8275d 100644 --- a/net/eventviews/distinfo +++ b/net/eventviews/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1677828418 -SHA256 (KDE/release-service/22.12.3/eventviews-22.12.3.tar.xz) = 36ff0e648068a8c3a46453d65272a0319d8b094bccead0732fac116df03b3669 -SIZE (KDE/release-service/22.12.3/eventviews-22.12.3.tar.xz) = 463436 +TIMESTAMP = 1681548245 +SHA256 (KDE/release-service/23.04.0/eventviews-23.04.0.tar.xz) = 16ab833f540470366a65fb6b57b46bfc5b272e1dd473df33a7df47497df4430d +SIZE (KDE/release-service/23.04.0/eventviews-23.04.0.tar.xz) = 464428 diff --git a/net/eventviews/pkg-plist b/net/eventviews/pkg-plist index 039876fcb065..8b243ec6fa40 100644 --- a/net/eventviews/pkg-plist +++ b/net/eventviews/pkg-plist @@ -1,93 +1,97 @@ -include/KF5/EventViews/EventViews/AgendaView -include/KF5/EventViews/EventViews/CalendarDecoration -include/KF5/EventViews/EventViews/ConfigDialogInterface -include/KF5/EventViews/EventViews/EventView -include/KF5/EventViews/EventViews/Helper -include/KF5/EventViews/EventViews/JournalView -include/KF5/EventViews/EventViews/ListView -include/KF5/EventViews/EventViews/MonthView -include/KF5/EventViews/EventViews/MultiAgendaView -include/KF5/EventViews/EventViews/Prefs -include/KF5/EventViews/EventViews/TimeLineView -include/KF5/EventViews/EventViews/TodoModel -include/KF5/EventViews/EventViews/TodoView -include/KF5/EventViews/EventViews/ViewCalendar -include/KF5/EventViews/EventViews/WhatsNextView -include/KF5/EventViews/EventViews/eventview.h -include/KF5/EventViews/EventViews/helper.h -include/KF5/EventViews/EventViews/prefs.h -include/KF5/EventViews/eventviews/EventView -include/KF5/EventViews/eventviews/Helper -include/KF5/EventViews/eventviews/Prefs -include/KF5/EventViews/eventviews/agendaview.h -include/KF5/EventViews/eventviews/calendardecoration.h -include/KF5/EventViews/eventviews/configdialoginterface.h -include/KF5/EventViews/eventviews/eventview.h -include/KF5/EventViews/eventviews/eventviews_export.h -include/KF5/EventViews/eventviews/helper.h -include/KF5/EventViews/eventviews/journalview.h -include/KF5/EventViews/eventviews/listview.h -include/KF5/EventViews/eventviews/monthview.h -include/KF5/EventViews/eventviews/multiagendaview.h -include/KF5/EventViews/eventviews/prefs.h -include/KF5/EventViews/eventviews/timelineview.h -include/KF5/EventViews/eventviews/todomodel.h -include/KF5/EventViews/eventviews/todoview.h -include/KF5/EventViews/eventviews/viewcalendar.h -include/KF5/EventViews/eventviews/whatsnextview.h -include/KF5/EventViews/eventviews_version.h +include/KPim5/EventViews/EventViews/AgendaView +include/KPim5/EventViews/EventViews/CalendarDecoration +include/KPim5/EventViews/EventViews/ConfigDialogInterface +include/KPim5/EventViews/EventViews/EventView +include/KPim5/EventViews/EventViews/Helper +include/KPim5/EventViews/EventViews/JournalView +include/KPim5/EventViews/EventViews/ListView +include/KPim5/EventViews/EventViews/MonthView +include/KPim5/EventViews/EventViews/MultiAgendaView +include/KPim5/EventViews/EventViews/Prefs +include/KPim5/EventViews/EventViews/TimeLineView +include/KPim5/EventViews/EventViews/TodoModel +include/KPim5/EventViews/EventViews/TodoView +include/KPim5/EventViews/EventViews/ViewCalendar +include/KPim5/EventViews/EventViews/WhatsNextView +include/KPim5/EventViews/EventViews/eventview.h +include/KPim5/EventViews/EventViews/helper.h +include/KPim5/EventViews/EventViews/prefs.h +include/KPim5/EventViews/eventviews/EventView +include/KPim5/EventViews/eventviews/Helper +include/KPim5/EventViews/eventviews/Prefs +include/KPim5/EventViews/eventviews/agendaview.h +include/KPim5/EventViews/eventviews/calendardecoration.h +include/KPim5/EventViews/eventviews/configdialoginterface.h +include/KPim5/EventViews/eventviews/eventview.h +include/KPim5/EventViews/eventviews/eventviews_export.h +include/KPim5/EventViews/eventviews/helper.h +include/KPim5/EventViews/eventviews/journalview.h +include/KPim5/EventViews/eventviews/listview.h +include/KPim5/EventViews/eventviews/monthview.h +include/KPim5/EventViews/eventviews/multiagendaview.h +include/KPim5/EventViews/eventviews/prefs.h +include/KPim5/EventViews/eventviews/timelineview.h +include/KPim5/EventViews/eventviews/todomodel.h +include/KPim5/EventViews/eventviews/todoview.h +include/KPim5/EventViews/eventviews/viewcalendar.h +include/KPim5/EventViews/eventviews/whatsnextview.h +include/KPim5/EventViews/eventviews_version.h lib/cmake/KF5EventViews/KF5EventViewsConfig.cmake lib/cmake/KF5EventViews/KF5EventViewsConfigVersion.cmake -lib/cmake/KF5EventViews/KF5EventViewsTargets-%%CMAKE_BUILD_TYPE%%.cmake -lib/cmake/KF5EventViews/KF5EventViewsTargets.cmake -lib/libKF5EventViews.so -lib/libKF5EventViews.so.5 -lib/libKF5EventViews.so.%%KDE_APPLICATIONS_SHLIB_VER%% +lib/cmake/KF5EventViews/KPim5EventViewsTargets-%%CMAKE_BUILD_TYPE%%.cmake +lib/cmake/KF5EventViews/KPim5EventViewsTargets.cmake +lib/cmake/KPim5EventViews/KPim5EventViewsConfig.cmake +lib/cmake/KPim5EventViews/KPim5EventViewsConfigVersion.cmake +lib/cmake/KPim5EventViews/KPim5EventViewsTargets-%%CMAKE_BUILD_TYPE%%.cmake +lib/cmake/KPim5EventViews/KPim5EventViewsTargets.cmake +lib/libKPim5EventViews.so +lib/libKPim5EventViews.so.5 +lib/libKPim5EventViews.so.%%KDE_APPLICATIONS_SHLIB_VER%% %%QT_MKSPECDIR%%/modules/qt_EventViews.pri share/locale/ar/LC_MESSAGES/libeventviews.mo share/locale/bg/LC_MESSAGES/libeventviews.mo share/locale/bs/LC_MESSAGES/libeventviews.mo share/locale/ca/LC_MESSAGES/libeventviews.mo share/locale/ca@valencia/LC_MESSAGES/libeventviews.mo share/locale/cs/LC_MESSAGES/libeventviews.mo share/locale/da/LC_MESSAGES/libeventviews.mo share/locale/de/LC_MESSAGES/libeventviews.mo share/locale/el/LC_MESSAGES/libeventviews.mo share/locale/en_GB/LC_MESSAGES/libeventviews.mo share/locale/eo/LC_MESSAGES/libeventviews.mo share/locale/es/LC_MESSAGES/libeventviews.mo share/locale/et/LC_MESSAGES/libeventviews.mo share/locale/eu/LC_MESSAGES/libeventviews.mo share/locale/fi/LC_MESSAGES/libeventviews.mo share/locale/fr/LC_MESSAGES/libeventviews.mo share/locale/ga/LC_MESSAGES/libeventviews.mo share/locale/gl/LC_MESSAGES/libeventviews.mo share/locale/hu/LC_MESSAGES/libeventviews.mo share/locale/ia/LC_MESSAGES/libeventviews.mo share/locale/it/LC_MESSAGES/libeventviews.mo share/locale/ja/LC_MESSAGES/libeventviews.mo share/locale/ka/LC_MESSAGES/libeventviews.mo share/locale/kk/LC_MESSAGES/libeventviews.mo share/locale/ko/LC_MESSAGES/libeventviews.mo share/locale/lt/LC_MESSAGES/libeventviews.mo share/locale/mr/LC_MESSAGES/libeventviews.mo share/locale/nb/LC_MESSAGES/libeventviews.mo share/locale/nds/LC_MESSAGES/libeventviews.mo share/locale/nl/LC_MESSAGES/libeventviews.mo share/locale/pa/LC_MESSAGES/libeventviews.mo share/locale/pl/LC_MESSAGES/libeventviews.mo share/locale/pt/LC_MESSAGES/libeventviews.mo share/locale/pt_BR/LC_MESSAGES/libeventviews.mo share/locale/ro/LC_MESSAGES/libeventviews.mo share/locale/ru/LC_MESSAGES/libeventviews.mo share/locale/sk/LC_MESSAGES/libeventviews.mo share/locale/sl/LC_MESSAGES/libeventviews.mo share/locale/sv/LC_MESSAGES/libeventviews.mo share/locale/ta/LC_MESSAGES/libeventviews.mo share/locale/tr/LC_MESSAGES/libeventviews.mo share/locale/ug/LC_MESSAGES/libeventviews.mo share/locale/uk/LC_MESSAGES/libeventviews.mo share/locale/zh_CN/LC_MESSAGES/libeventviews.mo share/locale/zh_TW/LC_MESSAGES/libeventviews.mo share/qlogging-categories5/eventviews.categories share/qlogging-categories5/eventviews.renamecategories diff --git a/net/incidenceeditor/distinfo b/net/incidenceeditor/distinfo index c0bf166a543c..7949b3200ee5 100644 --- a/net/incidenceeditor/distinfo +++ b/net/incidenceeditor/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1677828388 -SHA256 (KDE/release-service/22.12.3/incidenceeditor-22.12.3.tar.xz) = f5024d4224212a35f99c9a147e585b82654f5129b2265de8cc989713c420e995 -SIZE (KDE/release-service/22.12.3/incidenceeditor-22.12.3.tar.xz) = 569196 +TIMESTAMP = 1681548221 +SHA256 (KDE/release-service/23.04.0/incidenceeditor-23.04.0.tar.xz) = 9111a162e409b162ca5dc2811fca552e0cf5342101377d65bd851a94bd010c48 +SIZE (KDE/release-service/23.04.0/incidenceeditor-23.04.0.tar.xz) = 570136 diff --git a/net/incidenceeditor/pkg-plist b/net/incidenceeditor/pkg-plist index 8358806fcf7f..974fbb1d6374 100644 --- a/net/incidenceeditor/pkg-plist +++ b/net/incidenceeditor/pkg-plist @@ -1,75 +1,79 @@ -include/KF5/IncidenceEditor/IncidenceEditor/EditorItemManager -include/KF5/IncidenceEditor/IncidenceEditor/GroupwareUiDelegate -include/KF5/IncidenceEditor/IncidenceEditor/IncidenceDefaults -include/KF5/IncidenceEditor/IncidenceEditor/IncidenceDialog -include/KF5/IncidenceEditor/IncidenceEditor/IncidenceDialogFactory -include/KF5/IncidenceEditor/IncidenceEditor/IncidenceEditor-Ng -include/KF5/IncidenceEditor/IncidenceEditor/IncidenceEditorSettings -include/KF5/IncidenceEditor/IncidenceEditor/IndividualMailComponentFactory -include/KF5/IncidenceEditor/incidenceeditor/editoritemmanager.h -include/KF5/IncidenceEditor/incidenceeditor/globalsettings_incidenceeditor.h -include/KF5/IncidenceEditor/incidenceeditor/groupwareuidelegate.h -include/KF5/IncidenceEditor/incidenceeditor/incidencedefaults.h -include/KF5/IncidenceEditor/incidenceeditor/incidencedialog.h -include/KF5/IncidenceEditor/incidenceeditor/incidencedialogfactory.h -include/KF5/IncidenceEditor/incidenceeditor/incidenceeditor-ng.h -include/KF5/IncidenceEditor/incidenceeditor/incidenceeditor_export.h -include/KF5/IncidenceEditor/incidenceeditor/incidenceeditorsettings.h -include/KF5/IncidenceEditor/incidenceeditor/individualmailcomponentfactory.h -include/KF5/IncidenceEditor/incidenceeditor_version.h +include/KPim5/IncidenceEditor/IncidenceEditor/EditorItemManager +include/KPim5/IncidenceEditor/IncidenceEditor/GroupwareUiDelegate +include/KPim5/IncidenceEditor/IncidenceEditor/IncidenceDefaults +include/KPim5/IncidenceEditor/IncidenceEditor/IncidenceDialog +include/KPim5/IncidenceEditor/IncidenceEditor/IncidenceDialogFactory +include/KPim5/IncidenceEditor/IncidenceEditor/IncidenceEditor-Ng +include/KPim5/IncidenceEditor/IncidenceEditor/IncidenceEditorSettings +include/KPim5/IncidenceEditor/IncidenceEditor/IndividualMailComponentFactory +include/KPim5/IncidenceEditor/incidenceeditor/editoritemmanager.h +include/KPim5/IncidenceEditor/incidenceeditor/globalsettings_incidenceeditor.h +include/KPim5/IncidenceEditor/incidenceeditor/groupwareuidelegate.h +include/KPim5/IncidenceEditor/incidenceeditor/incidencedefaults.h +include/KPim5/IncidenceEditor/incidenceeditor/incidencedialog.h +include/KPim5/IncidenceEditor/incidenceeditor/incidencedialogfactory.h +include/KPim5/IncidenceEditor/incidenceeditor/incidenceeditor-ng.h +include/KPim5/IncidenceEditor/incidenceeditor/incidenceeditor_export.h +include/KPim5/IncidenceEditor/incidenceeditor/incidenceeditorsettings.h +include/KPim5/IncidenceEditor/incidenceeditor/individualmailcomponentfactory.h +include/KPim5/IncidenceEditor/incidenceeditor_version.h lib/cmake/KF5IncidenceEditor/KF5IncidenceEditorConfig.cmake lib/cmake/KF5IncidenceEditor/KF5IncidenceEditorConfigVersion.cmake -lib/cmake/KF5IncidenceEditor/KF5IncidenceEditorTargets-%%CMAKE_BUILD_TYPE%%.cmake -lib/cmake/KF5IncidenceEditor/KF5IncidenceEditorTargets.cmake -lib/libKF5IncidenceEditor.so -lib/libKF5IncidenceEditor.so.5 -lib/libKF5IncidenceEditor.so.%%KDE_APPLICATIONS_SHLIB_VER%% +lib/cmake/KF5IncidenceEditor/KPim5IncidenceEditorTargets-%%CMAKE_BUILD_TYPE%%.cmake +lib/cmake/KF5IncidenceEditor/KPim5IncidenceEditorTargets.cmake +lib/cmake/KPim5IncidenceEditor/KPim5IncidenceEditorConfig.cmake +lib/cmake/KPim5IncidenceEditor/KPim5IncidenceEditorConfigVersion.cmake +lib/cmake/KPim5IncidenceEditor/KPim5IncidenceEditorTargets-%%CMAKE_BUILD_TYPE%%.cmake +lib/cmake/KPim5IncidenceEditor/KPim5IncidenceEditorTargets.cmake +lib/libKPim5IncidenceEditor.so +lib/libKPim5IncidenceEditor.so.5 +lib/libKPim5IncidenceEditor.so.%%KDE_APPLICATIONS_SHLIB_VER%% %%QT_MKSPECDIR%%/modules/qt_IncidenceEditor.pri share/locale/ar/LC_MESSAGES/libincidenceeditors.mo share/locale/bg/LC_MESSAGES/libincidenceeditors.mo share/locale/bs/LC_MESSAGES/libincidenceeditors.mo share/locale/ca/LC_MESSAGES/libincidenceeditors.mo share/locale/ca@valencia/LC_MESSAGES/libincidenceeditors.mo share/locale/cs/LC_MESSAGES/libincidenceeditors.mo share/locale/da/LC_MESSAGES/libincidenceeditors.mo share/locale/de/LC_MESSAGES/libincidenceeditors.mo share/locale/el/LC_MESSAGES/libincidenceeditors.mo share/locale/en_GB/LC_MESSAGES/libincidenceeditors.mo share/locale/eo/LC_MESSAGES/libincidenceeditors.mo share/locale/es/LC_MESSAGES/libincidenceeditors.mo share/locale/et/LC_MESSAGES/libincidenceeditors.mo share/locale/eu/LC_MESSAGES/libincidenceeditors.mo share/locale/fi/LC_MESSAGES/libincidenceeditors.mo share/locale/fr/LC_MESSAGES/libincidenceeditors.mo share/locale/ga/LC_MESSAGES/libincidenceeditors.mo share/locale/gl/LC_MESSAGES/libincidenceeditors.mo share/locale/hu/LC_MESSAGES/libincidenceeditors.mo share/locale/ia/LC_MESSAGES/libincidenceeditors.mo share/locale/it/LC_MESSAGES/libincidenceeditors.mo share/locale/ja/LC_MESSAGES/libincidenceeditors.mo share/locale/ka/LC_MESSAGES/libincidenceeditors.mo share/locale/kk/LC_MESSAGES/libincidenceeditors.mo share/locale/ko/LC_MESSAGES/libincidenceeditors.mo share/locale/lt/LC_MESSAGES/libincidenceeditors.mo share/locale/mai/LC_MESSAGES/libincidenceeditors.mo share/locale/mr/LC_MESSAGES/libincidenceeditors.mo share/locale/nb/LC_MESSAGES/libincidenceeditors.mo share/locale/nds/LC_MESSAGES/libincidenceeditors.mo share/locale/nl/LC_MESSAGES/libincidenceeditors.mo share/locale/pa/LC_MESSAGES/libincidenceeditors.mo share/locale/pl/LC_MESSAGES/libincidenceeditors.mo share/locale/pt/LC_MESSAGES/libincidenceeditors.mo share/locale/pt_BR/LC_MESSAGES/libincidenceeditors.mo share/locale/ro/LC_MESSAGES/libincidenceeditors.mo share/locale/ru/LC_MESSAGES/libincidenceeditors.mo share/locale/sk/LC_MESSAGES/libincidenceeditors.mo share/locale/sl/LC_MESSAGES/libincidenceeditors.mo share/locale/sv/LC_MESSAGES/libincidenceeditors.mo share/locale/ta/LC_MESSAGES/libincidenceeditors.mo share/locale/tr/LC_MESSAGES/libincidenceeditors.mo share/locale/ug/LC_MESSAGES/libincidenceeditors.mo share/locale/uk/LC_MESSAGES/libincidenceeditors.mo share/locale/zh_CN/LC_MESSAGES/libincidenceeditors.mo share/locale/zh_TW/LC_MESSAGES/libincidenceeditors.mo share/qlogging-categories5/incidenceeditor.categories share/qlogging-categories5/incidenceeditor.renamecategories diff --git a/net/kcalutils/distinfo b/net/kcalutils/distinfo index 4179c1ff0fdd..a9610f8cde72 100644 --- a/net/kcalutils/distinfo +++ b/net/kcalutils/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1677828396 -SHA256 (KDE/release-service/22.12.3/kcalutils-22.12.3.tar.xz) = 2fe287d20769a053b6c9e307cf5ba24976e923b0d6150f11eeaee3eca320fc6b -SIZE (KDE/release-service/22.12.3/kcalutils-22.12.3.tar.xz) = 358324 +TIMESTAMP = 1681548220 +SHA256 (KDE/release-service/23.04.0/kcalutils-23.04.0.tar.xz) = 9b62dc83f84151f71ee4766ecea38b23e266225b17e031fbb51ea480c09b5379 +SIZE (KDE/release-service/23.04.0/kcalutils-23.04.0.tar.xz) = 358860 diff --git a/net/kcalutils/pkg-plist b/net/kcalutils/pkg-plist index 5a7053d060b5..f1197a5b7972 100644 --- a/net/kcalutils/pkg-plist +++ b/net/kcalutils/pkg-plist @@ -1,83 +1,87 @@ -include/KF5/KCalUtils/KCalUtils/DndFactory -include/KF5/KCalUtils/KCalUtils/HTMLExportSettings -include/KF5/KCalUtils/KCalUtils/HtmlExport -include/KF5/KCalUtils/KCalUtils/ICalDrag -include/KF5/KCalUtils/KCalUtils/IncidenceFormatter -include/KF5/KCalUtils/KCalUtils/RecurrenceActions -include/KF5/KCalUtils/KCalUtils/Stringify -include/KF5/KCalUtils/KCalUtils/VCalDrag -include/KF5/KCalUtils/kcalutils/dndfactory.h -include/KF5/KCalUtils/kcalutils/htmlexport.h -include/KF5/KCalUtils/kcalutils/htmlexportsettings.h -include/KF5/KCalUtils/kcalutils/icaldrag.h -include/KF5/KCalUtils/kcalutils/incidenceformatter.h -include/KF5/KCalUtils/kcalutils/kcalutils_export.h -include/KF5/KCalUtils/kcalutils/recurrenceactions.h -include/KF5/KCalUtils/kcalutils/stringify.h -include/KF5/KCalUtils/kcalutils/vcaldrag.h -include/KF5/KCalUtils/kcalutils_version.h +include/KPim5/KCalUtils/KCalUtils/DndFactory +include/KPim5/KCalUtils/KCalUtils/HTMLExportSettings +include/KPim5/KCalUtils/KCalUtils/HtmlExport +include/KPim5/KCalUtils/KCalUtils/ICalDrag +include/KPim5/KCalUtils/KCalUtils/IncidenceFormatter +include/KPim5/KCalUtils/KCalUtils/RecurrenceActions +include/KPim5/KCalUtils/KCalUtils/Stringify +include/KPim5/KCalUtils/KCalUtils/VCalDrag +include/KPim5/KCalUtils/kcalutils/dndfactory.h +include/KPim5/KCalUtils/kcalutils/htmlexport.h +include/KPim5/KCalUtils/kcalutils/htmlexportsettings.h +include/KPim5/KCalUtils/kcalutils/icaldrag.h +include/KPim5/KCalUtils/kcalutils/incidenceformatter.h +include/KPim5/KCalUtils/kcalutils/kcalutils_export.h +include/KPim5/KCalUtils/kcalutils/recurrenceactions.h +include/KPim5/KCalUtils/kcalutils/stringify.h +include/KPim5/KCalUtils/kcalutils/vcaldrag.h +include/KPim5/KCalUtils/kcalutils_version.h lib/cmake/KF5CalendarUtils/KF5CalendarUtilsConfig.cmake lib/cmake/KF5CalendarUtils/KF5CalendarUtilsConfigVersion.cmake -lib/cmake/KF5CalendarUtils/KF5CalendarUtilsTargets-%%CMAKE_BUILD_TYPE%%.cmake -lib/cmake/KF5CalendarUtils/KF5CalendarUtilsTargets.cmake +lib/cmake/KF5CalendarUtils/KPim5CalendarUtilsTargets-%%CMAKE_BUILD_TYPE%%.cmake +lib/cmake/KF5CalendarUtils/KPim5CalendarUtilsTargets.cmake +lib/cmake/KPim5CalendarUtils/KPim5CalendarUtilsConfig.cmake +lib/cmake/KPim5CalendarUtils/KPim5CalendarUtilsConfigVersion.cmake +lib/cmake/KPim5CalendarUtils/KPim5CalendarUtilsTargets-%%CMAKE_BUILD_TYPE%%.cmake +lib/cmake/KPim5CalendarUtils/KPim5CalendarUtilsTargets.cmake lib/grantlee/%%GRANTLEE_VERSION_SHORT%%/kcalendar_grantlee_plugin.so -lib/libKF5CalendarUtils.so -lib/libKF5CalendarUtils.so.5 -lib/libKF5CalendarUtils.so.%%KDE_APPLICATIONS_SHLIB_VER%% +lib/libKPim5CalendarUtils.so +lib/libKPim5CalendarUtils.so.5 +lib/libKPim5CalendarUtils.so.%%KDE_APPLICATIONS_SHLIB_VER%% %%QT_MKSPECDIR%%/modules/qt_KCalUtils.pri share/locale/ar/LC_MESSAGES/libkcalutils5.mo share/locale/az/LC_MESSAGES/libkcalutils5.mo share/locale/bg/LC_MESSAGES/libkcalutils5.mo share/locale/bs/LC_MESSAGES/libkcalutils5.mo share/locale/ca/LC_MESSAGES/libkcalutils5.mo share/locale/ca@valencia/LC_MESSAGES/libkcalutils5.mo share/locale/cs/LC_MESSAGES/libkcalutils5.mo share/locale/da/LC_MESSAGES/libkcalutils5.mo share/locale/de/LC_MESSAGES/libkcalutils5.mo share/locale/el/LC_MESSAGES/libkcalutils5.mo share/locale/en_GB/LC_MESSAGES/libkcalutils5.mo share/locale/es/LC_MESSAGES/libkcalutils5.mo share/locale/et/LC_MESSAGES/libkcalutils5.mo share/locale/eu/LC_MESSAGES/libkcalutils5.mo share/locale/fi/LC_MESSAGES/libkcalutils5.mo share/locale/fr/LC_MESSAGES/libkcalutils5.mo share/locale/ga/LC_MESSAGES/libkcalutils5.mo share/locale/gl/LC_MESSAGES/libkcalutils5.mo share/locale/hr/LC_MESSAGES/libkcalutils5.mo share/locale/hu/LC_MESSAGES/libkcalutils5.mo share/locale/ia/LC_MESSAGES/libkcalutils5.mo share/locale/it/LC_MESSAGES/libkcalutils5.mo share/locale/ja/LC_MESSAGES/libkcalutils5.mo share/locale/ka/LC_MESSAGES/libkcalutils5.mo share/locale/kk/LC_MESSAGES/libkcalutils5.mo share/locale/km/LC_MESSAGES/libkcalutils5.mo share/locale/ko/LC_MESSAGES/libkcalutils5.mo share/locale/lt/LC_MESSAGES/libkcalutils5.mo share/locale/mai/LC_MESSAGES/libkcalutils5.mo share/locale/mr/LC_MESSAGES/libkcalutils5.mo share/locale/nb/LC_MESSAGES/libkcalutils5.mo share/locale/nds/LC_MESSAGES/libkcalutils5.mo share/locale/nl/LC_MESSAGES/libkcalutils5.mo share/locale/nn/LC_MESSAGES/libkcalutils5.mo share/locale/pa/LC_MESSAGES/libkcalutils5.mo share/locale/pl/LC_MESSAGES/libkcalutils5.mo share/locale/pt/LC_MESSAGES/libkcalutils5.mo share/locale/pt_BR/LC_MESSAGES/libkcalutils5.mo share/locale/ro/LC_MESSAGES/libkcalutils5.mo share/locale/ru/LC_MESSAGES/libkcalutils5.mo share/locale/se/LC_MESSAGES/libkcalutils5.mo share/locale/sk/LC_MESSAGES/libkcalutils5.mo share/locale/sl/LC_MESSAGES/libkcalutils5.mo share/locale/sr/LC_MESSAGES/libkcalutils5.mo share/locale/sr@ijekavian/LC_MESSAGES/libkcalutils5.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/libkcalutils5.mo share/locale/sr@latin/LC_MESSAGES/libkcalutils5.mo share/locale/sv/LC_MESSAGES/libkcalutils5.mo share/locale/ta/LC_MESSAGES/libkcalutils5.mo share/locale/tr/LC_MESSAGES/libkcalutils5.mo share/locale/ug/LC_MESSAGES/libkcalutils5.mo share/locale/uk/LC_MESSAGES/libkcalutils5.mo share/locale/zh_CN/LC_MESSAGES/libkcalutils5.mo share/locale/zh_TW/LC_MESSAGES/libkcalutils5.mo share/qlogging-categories5/kcalutils.categories share/qlogging-categories5/kcalutils.renamecategories diff --git a/net/kdenetwork-filesharing/Makefile b/net/kdenetwork-filesharing/Makefile index 17e550c3c410..85b214306642 100644 --- a/net/kdenetwork-filesharing/Makefile +++ b/net/kdenetwork-filesharing/Makefile @@ -1,18 +1,20 @@ PORTNAME= kdenetwork-filesharing DISTVERSION= ${KDE_APPLICATIONS_VERSION} CATEGORIES= net kde kde-applications MAINTAINER= kde@FreeBSD.org COMMENT= KDE Filesharing via Samba +BUILD_DEPENDS= ${LOCALBASE}/include/qcoro5/qcoro/qcoro.h:devel/qcoro@qt5 + USES= cmake compiler:c++11-lang gettext kde:5 qt:5 tar:xz xorg USE_KDE= auth completion config coreaddons doctools i18n jobwidgets \ kdeclarative kio package service solid widgetsaddons windowsystem \ ecm:build USE_QT= concurrent core dbus declarative gui network widgets \ buildtools:build qmake:build USE_XORG= x11 OPTIONS_DEFINE= DOCS .include diff --git a/net/kdenetwork-filesharing/distinfo b/net/kdenetwork-filesharing/distinfo index 62ec650ccbd6..3f72029383f2 100644 --- a/net/kdenetwork-filesharing/distinfo +++ b/net/kdenetwork-filesharing/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1677828424 -SHA256 (KDE/release-service/22.12.3/kdenetwork-filesharing-22.12.3.tar.xz) = 485e51a6dc81472b9038cf57993ee425b3e1f99e11755554360b886e08a427fb -SIZE (KDE/release-service/22.12.3/kdenetwork-filesharing-22.12.3.tar.xz) = 465560 +TIMESTAMP = 1681548249 +SHA256 (KDE/release-service/23.04.0/kdenetwork-filesharing-23.04.0.tar.xz) = 942767eebfab65bfc21e789313855597fa8e5178f615b937a2000da3231bbc41 +SIZE (KDE/release-service/23.04.0/kdenetwork-filesharing-23.04.0.tar.xz) = 470900 diff --git a/net/kget/distinfo b/net/kget/distinfo index 37a6815c4f01..942d81292782 100644 --- a/net/kget/distinfo +++ b/net/kget/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1677828398 -SHA256 (KDE/release-service/22.12.3/kget-22.12.3.tar.xz) = 61d66086b41d66880ca2212c039ecab4bb6bc2c0ac2e3fba76689e82bc3d1111 -SIZE (KDE/release-service/22.12.3/kget-22.12.3.tar.xz) = 5563272 +TIMESTAMP = 1681548222 +SHA256 (KDE/release-service/23.04.0/kget-23.04.0.tar.xz) = 2b14b2f2d896188a64c257ba536ff8e082214727c05a6a319b0553383b0045f2 +SIZE (KDE/release-service/23.04.0/kget-23.04.0.tar.xz) = 5561012 diff --git a/net/kget/pkg-plist b/net/kget/pkg-plist index 8fe469ec4954..8f77d28a6c05 100644 --- a/net/kget/pkg-plist +++ b/net/kget/pkg-plist @@ -1,114 +1,114 @@ bin/kget lib/libkgetcore.so lib/libkgetcore.so.5 lib/libkgetcore.so.5.0.0 %%QT_PLUGINDIR%%/kget/kget_bittorrent.so %%QT_PLUGINDIR%%/kget/kget_checksumsearchfactory.so %%QT_PLUGINDIR%%/kget/kget_kio.so %%QT_PLUGINDIR%%/kget/kget_metalinkfactory.so %%QT_PLUGINDIR%%/kget/kget_mirrorsearchfactory.so %%QT_PLUGINDIR%%/kget/kget_multisegkiofactory.so %%QT_PLUGINDIR%%/kget_kcms/kcm_kget_bittorrentfactory.so %%QT_PLUGINDIR%%/kget_kcms/kcm_kget_checksumsearchfactory.so %%QT_PLUGINDIR%%/kget_kcms/kcm_kget_metalinkfactory.so %%QT_PLUGINDIR%%/kget_kcms/kcm_kget_mirrorsearchfactory.so %%QT_PLUGINDIR%%/kget_kcms/kcm_kget_multisegkiofactory.so share/applications/org.kde.kget.desktop share/config.kcfg/kget.kcfg share/config.kcfg/kget_checksumsearchfactory.kcfg share/config.kcfg/kget_mirrorsearchfactory.kcfg share/config.kcfg/kget_multisegkiofactory.kcfg share/dbus-1/services/org.kde.kget.service share/icons/hicolor/128x128/apps/kget.png share/icons/hicolor/16x16/apps/kget.png -share/icons/hicolor/%%KDE_APPLICATIONS_VERSION_SHORT%%x%%KDE_APPLICATIONS_VERSION_SHORT%%/apps/kget.png +share/icons/hicolor/22x22/apps/kget.png share/icons/hicolor/32x32/apps/kget.png share/icons/hicolor/48x48/apps/kget.png share/icons/hicolor/64x64/apps/kget.png %%DATADIR%%/pics/kget_splash.png share/kio/servicemenus/kget_download.desktop share/knotifications5/kget.notifyrc share/kservicetypes5/kget_plugin.desktop share/kxmlgui5/kget/kgetui.rc share/locale/af/LC_MESSAGES/kget.mo share/locale/ar/LC_MESSAGES/kget.mo share/locale/be/LC_MESSAGES/kget.mo share/locale/bg/LC_MESSAGES/kget.mo share/locale/br/LC_MESSAGES/kget.mo share/locale/bs/LC_MESSAGES/kget.mo share/locale/ca/LC_MESSAGES/kget.mo share/locale/ca@valencia/LC_MESSAGES/kget.mo share/locale/cs/LC_MESSAGES/kget.mo share/locale/cy/LC_MESSAGES/kget.mo share/locale/da/LC_MESSAGES/kget.mo share/locale/de/LC_MESSAGES/kget.mo share/locale/el/LC_MESSAGES/kget.mo share/locale/en_GB/LC_MESSAGES/kget.mo share/locale/eo/LC_MESSAGES/kget.mo share/locale/es/LC_MESSAGES/kget.mo share/locale/et/LC_MESSAGES/kget.mo share/locale/eu/LC_MESSAGES/kget.mo share/locale/fa/LC_MESSAGES/kget.mo share/locale/fi/LC_MESSAGES/kget.mo share/locale/fr/LC_MESSAGES/kget.mo share/locale/ga/LC_MESSAGES/kget.mo share/locale/gl/LC_MESSAGES/kget.mo share/locale/he/LC_MESSAGES/kget.mo share/locale/hi/LC_MESSAGES/kget.mo share/locale/hne/LC_MESSAGES/kget.mo share/locale/hr/LC_MESSAGES/kget.mo share/locale/hsb/LC_MESSAGES/kget.mo share/locale/hu/LC_MESSAGES/kget.mo share/locale/ia/LC_MESSAGES/kget.mo share/locale/id/LC_MESSAGES/kget.mo share/locale/is/LC_MESSAGES/kget.mo share/locale/it/LC_MESSAGES/kget.mo share/locale/ja/LC_MESSAGES/kget.mo share/locale/ka/LC_MESSAGES/kget.mo share/locale/kk/LC_MESSAGES/kget.mo share/locale/km/LC_MESSAGES/kget.mo share/locale/ko/LC_MESSAGES/kget.mo share/locale/lt/LC_MESSAGES/kget.mo share/locale/lv/LC_MESSAGES/kget.mo share/locale/mai/LC_MESSAGES/kget.mo share/locale/mk/LC_MESSAGES/kget.mo share/locale/mr/LC_MESSAGES/kget.mo share/locale/ms/LC_MESSAGES/kget.mo share/locale/nb/LC_MESSAGES/kget.mo share/locale/nds/LC_MESSAGES/kget.mo share/locale/ne/LC_MESSAGES/kget.mo share/locale/nl/LC_MESSAGES/kget.mo share/locale/nn/LC_MESSAGES/kget.mo share/locale/oc/LC_MESSAGES/kget.mo share/locale/pa/LC_MESSAGES/kget.mo share/locale/pl/LC_MESSAGES/kget.mo share/locale/pt/LC_MESSAGES/kget.mo share/locale/pt_BR/LC_MESSAGES/kget.mo share/locale/ro/LC_MESSAGES/kget.mo share/locale/ru/LC_MESSAGES/kget.mo share/locale/se/LC_MESSAGES/kget.mo share/locale/si/LC_MESSAGES/kget.mo share/locale/sk/LC_MESSAGES/kget.mo share/locale/sl/LC_MESSAGES/kget.mo share/locale/sq/LC_MESSAGES/kget.mo share/locale/sr/LC_MESSAGES/kget.mo share/locale/sr@ijekavian/LC_MESSAGES/kget.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kget.mo share/locale/sr@latin/LC_MESSAGES/kget.mo share/locale/sv/LC_MESSAGES/kget.mo share/locale/ta/LC_MESSAGES/kget.mo share/locale/tg/LC_MESSAGES/kget.mo share/locale/th/LC_MESSAGES/kget.mo share/locale/tr/LC_MESSAGES/kget.mo share/locale/ug/LC_MESSAGES/kget.mo share/locale/uk/LC_MESSAGES/kget.mo share/locale/uz/LC_MESSAGES/kget.mo share/locale/uz@cyrillic/LC_MESSAGES/kget.mo share/locale/vi/LC_MESSAGES/kget.mo share/locale/wa/LC_MESSAGES/kget.mo share/locale/xh/LC_MESSAGES/kget.mo share/locale/zh_CN/LC_MESSAGES/kget.mo share/locale/zh_HK/LC_MESSAGES/kget.mo share/locale/zh_TW/LC_MESSAGES/kget.mo share/metainfo/org.kde.kget.appdata.xml share/qlogging-categories5/kget.categories diff --git a/net/kidentitymanagement/distinfo b/net/kidentitymanagement/distinfo index 93c320f9d90a..2ca204a5ed75 100644 --- a/net/kidentitymanagement/distinfo +++ b/net/kidentitymanagement/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1677828427 -SHA256 (KDE/release-service/22.12.3/kidentitymanagement-22.12.3.tar.xz) = ee86fd79a5801dbf56da3a565a41f12cb3aadd0fadb7337f029658a9c409215b -SIZE (KDE/release-service/22.12.3/kidentitymanagement-22.12.3.tar.xz) = 162656 +TIMESTAMP = 1681548217 +SHA256 (KDE/release-service/23.04.0/kidentitymanagement-23.04.0.tar.xz) = 59a86d0fd424dead29f9c3a82c500830c7efa4a4e499e1a31e21e27480fbf098 +SIZE (KDE/release-service/23.04.0/kidentitymanagement-23.04.0.tar.xz) = 163892 diff --git a/net/kidentitymanagement/pkg-plist b/net/kidentitymanagement/pkg-plist index c3fb3928058f..e56e0c422921 100644 --- a/net/kidentitymanagement/pkg-plist +++ b/net/kidentitymanagement/pkg-plist @@ -1,87 +1,91 @@ -include/KF5/KIdentityManagement/KIdentityManagement/Identity -include/KF5/KIdentityManagement/KIdentityManagement/IdentityManager -include/KF5/KIdentityManagement/KIdentityManagement/Signature -include/KF5/KIdentityManagement/KIdentityManagement/Utils -include/KF5/KIdentityManagement/kidentitymanagement/identity.h -include/KF5/KIdentityManagement/kidentitymanagement/identitymanager.h -include/KF5/KIdentityManagement/kidentitymanagement/kidentitymanagement_export.h -include/KF5/KIdentityManagement/kidentitymanagement/signature.h -include/KF5/KIdentityManagement/kidentitymanagement/utils.h -include/KF5/KIdentityManagement/kidentitymanagement_version.h -include/KF5/KIdentityManagementWidgets/KIdentityManagement/IdentityCombo -include/KF5/KIdentityManagementWidgets/KIdentityManagement/SignatureConfigurator -include/KF5/KIdentityManagementWidgets/kidentitymanagement/identitycombo.h -include/KF5/KIdentityManagementWidgets/kidentitymanagement/kidentitymanagementwidgets_export.h -include/KF5/KIdentityManagementWidgets/kidentitymanagement/signatureconfigurator.h +include/KPim5/KIdentityManagement/KIdentityManagement/Identity +include/KPim5/KIdentityManagement/KIdentityManagement/IdentityManager +include/KPim5/KIdentityManagement/KIdentityManagement/Signature +include/KPim5/KIdentityManagement/KIdentityManagement/Utils +include/KPim5/KIdentityManagement/kidentitymanagement/identity.h +include/KPim5/KIdentityManagement/kidentitymanagement/identitymanager.h +include/KPim5/KIdentityManagement/kidentitymanagement/kidentitymanagement_export.h +include/KPim5/KIdentityManagement/kidentitymanagement/signature.h +include/KPim5/KIdentityManagement/kidentitymanagement/utils.h +include/KPim5/KIdentityManagement/kidentitymanagement_version.h +include/KPim5/KIdentityManagementWidgets/KIdentityManagement/IdentityCombo +include/KPim5/KIdentityManagementWidgets/KIdentityManagement/SignatureConfigurator +include/KPim5/KIdentityManagementWidgets/kidentitymanagement/identitycombo.h +include/KPim5/KIdentityManagementWidgets/kidentitymanagement/kidentitymanagementwidgets_export.h +include/KPim5/KIdentityManagementWidgets/kidentitymanagement/signatureconfigurator.h lib/cmake/KF5IdentityManagement/KF5IdentityManagementConfig.cmake lib/cmake/KF5IdentityManagement/KF5IdentityManagementConfigVersion.cmake -lib/cmake/KF5IdentityManagement/KF5IdentityManagementTargets-%%CMAKE_BUILD_TYPE%%.cmake -lib/cmake/KF5IdentityManagement/KF5IdentityManagementTargets.cmake -lib/libKF5IdentityManagement.so -lib/libKF5IdentityManagement.so.5 -lib/libKF5IdentityManagement.so.%%KDE_APPLICATIONS_SHLIB_VER%% -lib/libKF5IdentityManagementWidgets.so -lib/libKF5IdentityManagementWidgets.so.5 -lib/libKF5IdentityManagementWidgets.so.%%KDE_APPLICATIONS_SHLIB_VER%% +lib/cmake/KF5IdentityManagement/KPim5IdentityManagementTargets-%%CMAKE_BUILD_TYPE%%.cmake +lib/cmake/KF5IdentityManagement/KPim5IdentityManagementTargets.cmake +lib/cmake/KPim5IdentityManagement/KPim5IdentityManagementConfig.cmake +lib/cmake/KPim5IdentityManagement/KPim5IdentityManagementConfigVersion.cmake +lib/cmake/KPim5IdentityManagement/KPim5IdentityManagementTargets-%%CMAKE_BUILD_TYPE%%.cmake +lib/cmake/KPim5IdentityManagement/KPim5IdentityManagementTargets.cmake +lib/libKPim5IdentityManagement.so +lib/libKPim5IdentityManagement.so.5 +lib/libKPim5IdentityManagement.so.%%KDE_APPLICATIONS_SHLIB_VER%% +lib/libKPim5IdentityManagementWidgets.so +lib/libKPim5IdentityManagementWidgets.so.5 +lib/libKPim5IdentityManagementWidgets.so.%%KDE_APPLICATIONS_SHLIB_VER%% %%QT_MKSPECDIR%%/modules/qt_KIdentityManagement.pri %%QT_MKSPECDIR%%/modules/qt_KIdentityManagementWidgets.pri share/dbus-1/interfaces/kf5_org.kde.pim.IdentityManager.xml share/locale/ar/LC_MESSAGES/libkpimidentities5.mo share/locale/az/LC_MESSAGES/libkpimidentities5.mo share/locale/be/LC_MESSAGES/libkpimidentities5.mo share/locale/bs/LC_MESSAGES/libkpimidentities5.mo share/locale/ca/LC_MESSAGES/libkpimidentities5.mo share/locale/ca@valencia/LC_MESSAGES/libkpimidentities5.mo share/locale/cs/LC_MESSAGES/libkpimidentities5.mo share/locale/da/LC_MESSAGES/libkpimidentities5.mo share/locale/de/LC_MESSAGES/libkpimidentities5.mo share/locale/el/LC_MESSAGES/libkpimidentities5.mo share/locale/en_GB/LC_MESSAGES/libkpimidentities5.mo share/locale/eo/LC_MESSAGES/libkpimidentities5.mo share/locale/es/LC_MESSAGES/libkpimidentities5.mo share/locale/et/LC_MESSAGES/libkpimidentities5.mo share/locale/eu/LC_MESSAGES/libkpimidentities5.mo share/locale/fi/LC_MESSAGES/libkpimidentities5.mo share/locale/fr/LC_MESSAGES/libkpimidentities5.mo share/locale/ga/LC_MESSAGES/libkpimidentities5.mo share/locale/gl/LC_MESSAGES/libkpimidentities5.mo share/locale/hi/LC_MESSAGES/libkpimidentities5.mo share/locale/hne/LC_MESSAGES/libkpimidentities5.mo share/locale/hu/LC_MESSAGES/libkpimidentities5.mo share/locale/ia/LC_MESSAGES/libkpimidentities5.mo share/locale/it/LC_MESSAGES/libkpimidentities5.mo share/locale/ja/LC_MESSAGES/libkpimidentities5.mo share/locale/ka/LC_MESSAGES/libkpimidentities5.mo share/locale/kk/LC_MESSAGES/libkpimidentities5.mo share/locale/km/LC_MESSAGES/libkpimidentities5.mo share/locale/ko/LC_MESSAGES/libkpimidentities5.mo share/locale/lt/LC_MESSAGES/libkpimidentities5.mo share/locale/lv/LC_MESSAGES/libkpimidentities5.mo share/locale/mr/LC_MESSAGES/libkpimidentities5.mo share/locale/nb/LC_MESSAGES/libkpimidentities5.mo share/locale/nds/LC_MESSAGES/libkpimidentities5.mo share/locale/nl/LC_MESSAGES/libkpimidentities5.mo share/locale/nn/LC_MESSAGES/libkpimidentities5.mo share/locale/pa/LC_MESSAGES/libkpimidentities5.mo share/locale/pl/LC_MESSAGES/libkpimidentities5.mo share/locale/pt/LC_MESSAGES/libkpimidentities5.mo share/locale/pt_BR/LC_MESSAGES/libkpimidentities5.mo share/locale/ro/LC_MESSAGES/libkpimidentities5.mo share/locale/ru/LC_MESSAGES/libkpimidentities5.mo share/locale/se/LC_MESSAGES/libkpimidentities5.mo share/locale/sk/LC_MESSAGES/libkpimidentities5.mo share/locale/sl/LC_MESSAGES/libkpimidentities5.mo share/locale/sq/LC_MESSAGES/libkpimidentities5.mo share/locale/sr/LC_MESSAGES/libkpimidentities5.mo share/locale/sr@ijekavian/LC_MESSAGES/libkpimidentities5.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/libkpimidentities5.mo share/locale/sr@latin/LC_MESSAGES/libkpimidentities5.mo share/locale/sv/LC_MESSAGES/libkpimidentities5.mo share/locale/th/LC_MESSAGES/libkpimidentities5.mo share/locale/tr/LC_MESSAGES/libkpimidentities5.mo share/locale/ug/LC_MESSAGES/libkpimidentities5.mo share/locale/uk/LC_MESSAGES/libkpimidentities5.mo share/locale/zh_CN/LC_MESSAGES/libkpimidentities5.mo share/locale/zh_TW/LC_MESSAGES/libkpimidentities5.mo share/qlogging-categories5/kidentitymanagement.categories share/qlogging-categories5/kidentitymanagement.renamecategories diff --git a/net/kimap/distinfo b/net/kimap/distinfo index 1d5d388fd564..412aebb8ec1b 100644 --- a/net/kimap/distinfo +++ b/net/kimap/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1677828401 -SHA256 (KDE/release-service/22.12.3/kimap-22.12.3.tar.xz) = d2e0b742b003ca51619bdb955c7c961e8aebcf4bb6995f984ff539e2737dc5f6 -SIZE (KDE/release-service/22.12.3/kimap-22.12.3.tar.xz) = 132612 +TIMESTAMP = 1681548231 +SHA256 (KDE/release-service/23.04.0/kimap-23.04.0.tar.xz) = 64c20ff927ca2368a6aa9b6922f8db26d6a2f2d8461d278eb4be329d07ffb164 +SIZE (KDE/release-service/23.04.0/kimap-23.04.0.tar.xz) = 130924 diff --git a/net/kimap/pkg-plist b/net/kimap/pkg-plist index 13d1879e4afc..4cfd7a8007d8 100644 --- a/net/kimap/pkg-plist +++ b/net/kimap/pkg-plist @@ -1,189 +1,193 @@ -include/KF5/KIMAP/KIMAP/Acl -include/KF5/KIMAP/KIMAP/AclJobBase -include/KF5/KIMAP/KIMAP/AppendJob -include/KF5/KIMAP/KIMAP/CapabilitiesJob -include/KF5/KIMAP/KIMAP/CloseJob -include/KF5/KIMAP/KIMAP/CopyJob -include/KF5/KIMAP/KIMAP/CreateJob -include/KF5/KIMAP/KIMAP/DeleteAclJob -include/KF5/KIMAP/KIMAP/DeleteJob -include/KF5/KIMAP/KIMAP/EnableJob -include/KF5/KIMAP/KIMAP/ExpungeJob -include/KF5/KIMAP/KIMAP/FetchJob -include/KF5/KIMAP/KIMAP/GetAclJob -include/KF5/KIMAP/KIMAP/GetMetaDataJob -include/KF5/KIMAP/KIMAP/GetQuotaJob -include/KF5/KIMAP/KIMAP/GetQuotaRootJob -include/KF5/KIMAP/KIMAP/IdJob -include/KF5/KIMAP/KIMAP/IdleJob -include/KF5/KIMAP/KIMAP/ImapSet -include/KF5/KIMAP/KIMAP/Job -include/KF5/KIMAP/KIMAP/ListJob -include/KF5/KIMAP/KIMAP/ListRightsJob -include/KF5/KIMAP/KIMAP/LoginJob -include/KF5/KIMAP/KIMAP/LogoutJob -include/KF5/KIMAP/KIMAP/MetaDataJobBase -include/KF5/KIMAP/KIMAP/MoveJob -include/KF5/KIMAP/KIMAP/MyRightsJob -include/KF5/KIMAP/KIMAP/NamespaceJob -include/KF5/KIMAP/KIMAP/QuotaJobBase -include/KF5/KIMAP/KIMAP/RFCCodecs -include/KF5/KIMAP/KIMAP/RenameJob -include/KF5/KIMAP/KIMAP/SearchJob -include/KF5/KIMAP/KIMAP/SelectJob -include/KF5/KIMAP/KIMAP/Session -include/KF5/KIMAP/KIMAP/SessionUiProxy -include/KF5/KIMAP/KIMAP/SetAclJob -include/KF5/KIMAP/KIMAP/SetMetaDataJob -include/KF5/KIMAP/KIMAP/SetQuotaJob -include/KF5/KIMAP/KIMAP/StatusJob -include/KF5/KIMAP/KIMAP/StoreJob -include/KF5/KIMAP/KIMAP/SubscribeJob -include/KF5/KIMAP/KIMAP/UnsubscribeJob -include/KF5/KIMAP/kimap/Acl -include/KF5/KIMAP/kimap/AclJobBase -include/KF5/KIMAP/kimap/AppendJob -include/KF5/KIMAP/kimap/CapabilitiesJob -include/KF5/KIMAP/kimap/CloseJob -include/KF5/KIMAP/kimap/CopyJob -include/KF5/KIMAP/kimap/CreateJob -include/KF5/KIMAP/kimap/DeleteAclJob -include/KF5/KIMAP/kimap/DeleteJob -include/KF5/KIMAP/kimap/EnableJob -include/KF5/KIMAP/kimap/ExpungeJob -include/KF5/KIMAP/kimap/FetchJob -include/KF5/KIMAP/kimap/GetAclJob -include/KF5/KIMAP/kimap/GetMetaDataJob -include/KF5/KIMAP/kimap/GetQuotaJob -include/KF5/KIMAP/kimap/GetQuotaRootJob -include/KF5/KIMAP/kimap/IdJob -include/KF5/KIMAP/kimap/IdleJob -include/KF5/KIMAP/kimap/ImapSet -include/KF5/KIMAP/kimap/Job -include/KF5/KIMAP/kimap/ListJob -include/KF5/KIMAP/kimap/ListRightsJob -include/KF5/KIMAP/kimap/LoginJob -include/KF5/KIMAP/kimap/LogoutJob -include/KF5/KIMAP/kimap/MetaDataJobBase -include/KF5/KIMAP/kimap/MoveJob -include/KF5/KIMAP/kimap/MyRightsJob -include/KF5/KIMAP/kimap/NamespaceJob -include/KF5/KIMAP/kimap/QuotaJobBase -include/KF5/KIMAP/kimap/RFCCodecs -include/KF5/KIMAP/kimap/RenameJob -include/KF5/KIMAP/kimap/SearchJob -include/KF5/KIMAP/kimap/SelectJob -include/KF5/KIMAP/kimap/Session -include/KF5/KIMAP/kimap/SessionUiProxy -include/KF5/KIMAP/kimap/SetAclJob -include/KF5/KIMAP/kimap/SetMetaDataJob -include/KF5/KIMAP/kimap/SetQuotaJob -include/KF5/KIMAP/kimap/StatusJob -include/KF5/KIMAP/kimap/StoreJob -include/KF5/KIMAP/kimap/SubscribeJob -include/KF5/KIMAP/kimap/UnsubscribeJob -include/KF5/KIMAP/kimap/acl.h -include/KF5/KIMAP/kimap/acljobbase.h -include/KF5/KIMAP/kimap/appendjob.h -include/KF5/KIMAP/kimap/capabilitiesjob.h -include/KF5/KIMAP/kimap/closejob.h -include/KF5/KIMAP/kimap/copyjob.h -include/KF5/KIMAP/kimap/createjob.h -include/KF5/KIMAP/kimap/deleteacljob.h -include/KF5/KIMAP/kimap/deletejob.h -include/KF5/KIMAP/kimap/enablejob.h -include/KF5/KIMAP/kimap/expungejob.h -include/KF5/KIMAP/kimap/fetchjob.h -include/KF5/KIMAP/kimap/getacljob.h -include/KF5/KIMAP/kimap/getmetadatajob.h -include/KF5/KIMAP/kimap/getquotajob.h -include/KF5/KIMAP/kimap/getquotarootjob.h -include/KF5/KIMAP/kimap/idjob.h -include/KF5/KIMAP/kimap/idlejob.h -include/KF5/KIMAP/kimap/imapset.h -include/KF5/KIMAP/kimap/job.h -include/KF5/KIMAP/kimap/kimap_export.h -include/KF5/KIMAP/kimap/listjob.h -include/KF5/KIMAP/kimap/listrightsjob.h -include/KF5/KIMAP/kimap/loginjob.h -include/KF5/KIMAP/kimap/logoutjob.h -include/KF5/KIMAP/kimap/metadatajobbase.h -include/KF5/KIMAP/kimap/movejob.h -include/KF5/KIMAP/kimap/myrightsjob.h -include/KF5/KIMAP/kimap/namespacejob.h -include/KF5/KIMAP/kimap/quotajobbase.h -include/KF5/KIMAP/kimap/renamejob.h -include/KF5/KIMAP/kimap/rfccodecs.h -include/KF5/KIMAP/kimap/searchjob.h -include/KF5/KIMAP/kimap/selectjob.h -include/KF5/KIMAP/kimap/session.h -include/KF5/KIMAP/kimap/sessionuiproxy.h -include/KF5/KIMAP/kimap/setacljob.h -include/KF5/KIMAP/kimap/setmetadatajob.h -include/KF5/KIMAP/kimap/setquotajob.h -include/KF5/KIMAP/kimap/statusjob.h -include/KF5/KIMAP/kimap/storejob.h -include/KF5/KIMAP/kimap/subscribejob.h -include/KF5/KIMAP/kimap/unsubscribejob.h -include/KF5/KIMAP/kimap_version.h +include/KPim5/KIMAP/KIMAP/Acl +include/KPim5/KIMAP/KIMAP/AclJobBase +include/KPim5/KIMAP/KIMAP/AppendJob +include/KPim5/KIMAP/KIMAP/CapabilitiesJob +include/KPim5/KIMAP/KIMAP/CloseJob +include/KPim5/KIMAP/KIMAP/CopyJob +include/KPim5/KIMAP/KIMAP/CreateJob +include/KPim5/KIMAP/KIMAP/DeleteAclJob +include/KPim5/KIMAP/KIMAP/DeleteJob +include/KPim5/KIMAP/KIMAP/EnableJob +include/KPim5/KIMAP/KIMAP/ExpungeJob +include/KPim5/KIMAP/KIMAP/FetchJob +include/KPim5/KIMAP/KIMAP/GetAclJob +include/KPim5/KIMAP/KIMAP/GetMetaDataJob +include/KPim5/KIMAP/KIMAP/GetQuotaJob +include/KPim5/KIMAP/KIMAP/GetQuotaRootJob +include/KPim5/KIMAP/KIMAP/IdJob +include/KPim5/KIMAP/KIMAP/IdleJob +include/KPim5/KIMAP/KIMAP/ImapSet +include/KPim5/KIMAP/KIMAP/Job +include/KPim5/KIMAP/KIMAP/ListJob +include/KPim5/KIMAP/KIMAP/ListRightsJob +include/KPim5/KIMAP/KIMAP/LoginJob +include/KPim5/KIMAP/KIMAP/LogoutJob +include/KPim5/KIMAP/KIMAP/MetaDataJobBase +include/KPim5/KIMAP/KIMAP/MoveJob +include/KPim5/KIMAP/KIMAP/MyRightsJob +include/KPim5/KIMAP/KIMAP/NamespaceJob +include/KPim5/KIMAP/KIMAP/QuotaJobBase +include/KPim5/KIMAP/KIMAP/RFCCodecs +include/KPim5/KIMAP/KIMAP/RenameJob +include/KPim5/KIMAP/KIMAP/SearchJob +include/KPim5/KIMAP/KIMAP/SelectJob +include/KPim5/KIMAP/KIMAP/Session +include/KPim5/KIMAP/KIMAP/SessionUiProxy +include/KPim5/KIMAP/KIMAP/SetAclJob +include/KPim5/KIMAP/KIMAP/SetMetaDataJob +include/KPim5/KIMAP/KIMAP/SetQuotaJob +include/KPim5/KIMAP/KIMAP/StatusJob +include/KPim5/KIMAP/KIMAP/StoreJob +include/KPim5/KIMAP/KIMAP/SubscribeJob +include/KPim5/KIMAP/KIMAP/UnsubscribeJob +include/KPim5/KIMAP/kimap/Acl +include/KPim5/KIMAP/kimap/AclJobBase +include/KPim5/KIMAP/kimap/AppendJob +include/KPim5/KIMAP/kimap/CapabilitiesJob +include/KPim5/KIMAP/kimap/CloseJob +include/KPim5/KIMAP/kimap/CopyJob +include/KPim5/KIMAP/kimap/CreateJob +include/KPim5/KIMAP/kimap/DeleteAclJob +include/KPim5/KIMAP/kimap/DeleteJob +include/KPim5/KIMAP/kimap/EnableJob +include/KPim5/KIMAP/kimap/ExpungeJob +include/KPim5/KIMAP/kimap/FetchJob +include/KPim5/KIMAP/kimap/GetAclJob +include/KPim5/KIMAP/kimap/GetMetaDataJob +include/KPim5/KIMAP/kimap/GetQuotaJob +include/KPim5/KIMAP/kimap/GetQuotaRootJob +include/KPim5/KIMAP/kimap/IdJob +include/KPim5/KIMAP/kimap/IdleJob +include/KPim5/KIMAP/kimap/ImapSet +include/KPim5/KIMAP/kimap/Job +include/KPim5/KIMAP/kimap/ListJob +include/KPim5/KIMAP/kimap/ListRightsJob +include/KPim5/KIMAP/kimap/LoginJob +include/KPim5/KIMAP/kimap/LogoutJob +include/KPim5/KIMAP/kimap/MetaDataJobBase +include/KPim5/KIMAP/kimap/MoveJob +include/KPim5/KIMAP/kimap/MyRightsJob +include/KPim5/KIMAP/kimap/NamespaceJob +include/KPim5/KIMAP/kimap/QuotaJobBase +include/KPim5/KIMAP/kimap/RFCCodecs +include/KPim5/KIMAP/kimap/RenameJob +include/KPim5/KIMAP/kimap/SearchJob +include/KPim5/KIMAP/kimap/SelectJob +include/KPim5/KIMAP/kimap/Session +include/KPim5/KIMAP/kimap/SessionUiProxy +include/KPim5/KIMAP/kimap/SetAclJob +include/KPim5/KIMAP/kimap/SetMetaDataJob +include/KPim5/KIMAP/kimap/SetQuotaJob +include/KPim5/KIMAP/kimap/StatusJob +include/KPim5/KIMAP/kimap/StoreJob +include/KPim5/KIMAP/kimap/SubscribeJob +include/KPim5/KIMAP/kimap/UnsubscribeJob +include/KPim5/KIMAP/kimap/acl.h +include/KPim5/KIMAP/kimap/acljobbase.h +include/KPim5/KIMAP/kimap/appendjob.h +include/KPim5/KIMAP/kimap/capabilitiesjob.h +include/KPim5/KIMAP/kimap/closejob.h +include/KPim5/KIMAP/kimap/copyjob.h +include/KPim5/KIMAP/kimap/createjob.h +include/KPim5/KIMAP/kimap/deleteacljob.h +include/KPim5/KIMAP/kimap/deletejob.h +include/KPim5/KIMAP/kimap/enablejob.h +include/KPim5/KIMAP/kimap/expungejob.h +include/KPim5/KIMAP/kimap/fetchjob.h +include/KPim5/KIMAP/kimap/getacljob.h +include/KPim5/KIMAP/kimap/getmetadatajob.h +include/KPim5/KIMAP/kimap/getquotajob.h +include/KPim5/KIMAP/kimap/getquotarootjob.h +include/KPim5/KIMAP/kimap/idjob.h +include/KPim5/KIMAP/kimap/idlejob.h +include/KPim5/KIMAP/kimap/imapset.h +include/KPim5/KIMAP/kimap/job.h +include/KPim5/KIMAP/kimap/kimap_export.h +include/KPim5/KIMAP/kimap/listjob.h +include/KPim5/KIMAP/kimap/listrightsjob.h +include/KPim5/KIMAP/kimap/loginjob.h +include/KPim5/KIMAP/kimap/logoutjob.h +include/KPim5/KIMAP/kimap/metadatajobbase.h +include/KPim5/KIMAP/kimap/movejob.h +include/KPim5/KIMAP/kimap/myrightsjob.h +include/KPim5/KIMAP/kimap/namespacejob.h +include/KPim5/KIMAP/kimap/quotajobbase.h +include/KPim5/KIMAP/kimap/renamejob.h +include/KPim5/KIMAP/kimap/rfccodecs.h +include/KPim5/KIMAP/kimap/searchjob.h +include/KPim5/KIMAP/kimap/selectjob.h +include/KPim5/KIMAP/kimap/session.h +include/KPim5/KIMAP/kimap/sessionuiproxy.h +include/KPim5/KIMAP/kimap/setacljob.h +include/KPim5/KIMAP/kimap/setmetadatajob.h +include/KPim5/KIMAP/kimap/setquotajob.h +include/KPim5/KIMAP/kimap/statusjob.h +include/KPim5/KIMAP/kimap/storejob.h +include/KPim5/KIMAP/kimap/subscribejob.h +include/KPim5/KIMAP/kimap/unsubscribejob.h +include/KPim5/KIMAP/kimap_version.h lib/cmake/KF5IMAP/KF5IMAPConfig.cmake lib/cmake/KF5IMAP/KF5IMAPConfigVersion.cmake -lib/cmake/KF5IMAP/KF5IMAPTargets-%%CMAKE_BUILD_TYPE%%.cmake -lib/cmake/KF5IMAP/KF5IMAPTargets.cmake -lib/libKF5IMAP.so -lib/libKF5IMAP.so.5 -lib/libKF5IMAP.so.%%KDE_APPLICATIONS_SHLIB_VER%% +lib/cmake/KF5IMAP/KPim5IMAPTargets-%%CMAKE_BUILD_TYPE%%.cmake +lib/cmake/KF5IMAP/KPim5IMAPTargets.cmake +lib/cmake/KPim5IMAP/KPim5IMAPConfig.cmake +lib/cmake/KPim5IMAP/KPim5IMAPConfigVersion.cmake +lib/cmake/KPim5IMAP/KPim5IMAPTargets-%%CMAKE_BUILD_TYPE%%.cmake +lib/cmake/KPim5IMAP/KPim5IMAPTargets.cmake +lib/libKPim5IMAP.so +lib/libKPim5IMAP.so.5 +lib/libKPim5IMAP.so.%%KDE_APPLICATIONS_SHLIB_VER%% %%QT_MKSPECDIR%%/modules/qt_KIMAP.pri share/locale/ar/LC_MESSAGES/libkimap5.mo share/locale/bs/LC_MESSAGES/libkimap5.mo share/locale/ca/LC_MESSAGES/libkimap5.mo share/locale/ca@valencia/LC_MESSAGES/libkimap5.mo share/locale/cs/LC_MESSAGES/libkimap5.mo share/locale/da/LC_MESSAGES/libkimap5.mo share/locale/de/LC_MESSAGES/libkimap5.mo share/locale/el/LC_MESSAGES/libkimap5.mo share/locale/en_GB/LC_MESSAGES/libkimap5.mo share/locale/eo/LC_MESSAGES/libkimap5.mo share/locale/es/LC_MESSAGES/libkimap5.mo share/locale/et/LC_MESSAGES/libkimap5.mo share/locale/eu/LC_MESSAGES/libkimap5.mo share/locale/fi/LC_MESSAGES/libkimap5.mo share/locale/fr/LC_MESSAGES/libkimap5.mo share/locale/ga/LC_MESSAGES/libkimap5.mo share/locale/gl/LC_MESSAGES/libkimap5.mo share/locale/hu/LC_MESSAGES/libkimap5.mo share/locale/ia/LC_MESSAGES/libkimap5.mo share/locale/it/LC_MESSAGES/libkimap5.mo share/locale/ja/LC_MESSAGES/libkimap5.mo share/locale/ka/LC_MESSAGES/libkimap5.mo share/locale/kk/LC_MESSAGES/libkimap5.mo share/locale/km/LC_MESSAGES/libkimap5.mo share/locale/ko/LC_MESSAGES/libkimap5.mo share/locale/lt/LC_MESSAGES/libkimap5.mo share/locale/lv/LC_MESSAGES/libkimap5.mo share/locale/mr/LC_MESSAGES/libkimap5.mo share/locale/nb/LC_MESSAGES/libkimap5.mo share/locale/nds/LC_MESSAGES/libkimap5.mo share/locale/nl/LC_MESSAGES/libkimap5.mo share/locale/nn/LC_MESSAGES/libkimap5.mo share/locale/pa/LC_MESSAGES/libkimap5.mo share/locale/pl/LC_MESSAGES/libkimap5.mo share/locale/pt/LC_MESSAGES/libkimap5.mo share/locale/pt_BR/LC_MESSAGES/libkimap5.mo share/locale/ro/LC_MESSAGES/libkimap5.mo share/locale/ru/LC_MESSAGES/libkimap5.mo share/locale/sk/LC_MESSAGES/libkimap5.mo share/locale/sl/LC_MESSAGES/libkimap5.mo share/locale/sq/LC_MESSAGES/libkimap5.mo share/locale/sr/LC_MESSAGES/libkimap5.mo share/locale/sr@ijekavian/LC_MESSAGES/libkimap5.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/libkimap5.mo share/locale/sr@latin/LC_MESSAGES/libkimap5.mo share/locale/sv/LC_MESSAGES/libkimap5.mo share/locale/tr/LC_MESSAGES/libkimap5.mo share/locale/ug/LC_MESSAGES/libkimap5.mo share/locale/uk/LC_MESSAGES/libkimap5.mo share/locale/zh_CN/LC_MESSAGES/libkimap5.mo share/locale/zh_TW/LC_MESSAGES/libkimap5.mo share/qlogging-categories5/kimap.categories share/qlogging-categories5/kimap.renamecategories diff --git a/net/kio-gdrive/distinfo b/net/kio-gdrive/distinfo index 356da00187e6..3f9d8d77ee50 100644 --- a/net/kio-gdrive/distinfo +++ b/net/kio-gdrive/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1677828397 -SHA256 (KDE/release-service/22.12.3/kio-gdrive-22.12.3.tar.xz) = a3e1d1fcfb847744af08f9cbbd3cd65e3815deb9f592eaa00fecfb8dcc22248b -SIZE (KDE/release-service/22.12.3/kio-gdrive-22.12.3.tar.xz) = 77556 +TIMESTAMP = 1681548227 +SHA256 (KDE/release-service/23.04.0/kio-gdrive-23.04.0.tar.xz) = 3998ee8ad380ccc90963e2439674c692e9ee8495ae775b6486e55476785b5442 +SIZE (KDE/release-service/23.04.0/kio-gdrive-23.04.0.tar.xz) = 79072 diff --git a/net/kio-gdrive/pkg-plist b/net/kio-gdrive/pkg-plist index 7f21a5daf72b..bac4aee9a1be 100644 --- a/net/kio-gdrive/pkg-plist +++ b/net/kio-gdrive/pkg-plist @@ -1,49 +1,50 @@ %%QT_PLUGINDIR%%/kaccounts/daemonplugins/gdrive.so %%QT_PLUGINDIR%%/kf5/kfileitemaction/gdrivecontextmenuaction.so %%QT_PLUGINDIR%%/kf5/kio/gdrive.so %%QT_PLUGINDIR%%/kf5/propertiesdialog/gdrivepropertiesplugin.so share/accounts/services/kde/google-drive.service share/knotifications5/gdrive.notifyrc share/locale/ar/LC_MESSAGES/kio5_gdrive.mo share/locale/az/LC_MESSAGES/kio5_gdrive.mo +share/locale/be/LC_MESSAGES/kio5_gdrive.mo share/locale/ca/LC_MESSAGES/kio5_gdrive.mo share/locale/ca@valencia/LC_MESSAGES/kio5_gdrive.mo share/locale/cs/LC_MESSAGES/kio5_gdrive.mo share/locale/da/LC_MESSAGES/kio5_gdrive.mo share/locale/de/LC_MESSAGES/kio5_gdrive.mo share/locale/el/LC_MESSAGES/kio5_gdrive.mo share/locale/en_GB/LC_MESSAGES/kio5_gdrive.mo share/locale/es/LC_MESSAGES/kio5_gdrive.mo share/locale/et/LC_MESSAGES/kio5_gdrive.mo share/locale/eu/LC_MESSAGES/kio5_gdrive.mo share/locale/fi/LC_MESSAGES/kio5_gdrive.mo share/locale/fr/LC_MESSAGES/kio5_gdrive.mo share/locale/gl/LC_MESSAGES/kio5_gdrive.mo share/locale/he/LC_MESSAGES/kio5_gdrive.mo share/locale/hi/LC_MESSAGES/kio5_gdrive.mo share/locale/hu/LC_MESSAGES/kio5_gdrive.mo share/locale/ia/LC_MESSAGES/kio5_gdrive.mo share/locale/id/LC_MESSAGES/kio5_gdrive.mo share/locale/ie/LC_MESSAGES/kio5_gdrive.mo share/locale/it/LC_MESSAGES/kio5_gdrive.mo share/locale/ja/LC_MESSAGES/kio5_gdrive.mo share/locale/ka/LC_MESSAGES/kio5_gdrive.mo share/locale/ko/LC_MESSAGES/kio5_gdrive.mo share/locale/lt/LC_MESSAGES/kio5_gdrive.mo share/locale/nl/LC_MESSAGES/kio5_gdrive.mo share/locale/nn/LC_MESSAGES/kio5_gdrive.mo share/locale/pl/LC_MESSAGES/kio5_gdrive.mo share/locale/pt/LC_MESSAGES/kio5_gdrive.mo share/locale/pt_BR/LC_MESSAGES/kio5_gdrive.mo share/locale/ro/LC_MESSAGES/kio5_gdrive.mo share/locale/ru/LC_MESSAGES/kio5_gdrive.mo share/locale/sk/LC_MESSAGES/kio5_gdrive.mo share/locale/sl/LC_MESSAGES/kio5_gdrive.mo share/locale/sv/LC_MESSAGES/kio5_gdrive.mo share/locale/ta/LC_MESSAGES/kio5_gdrive.mo share/locale/tr/LC_MESSAGES/kio5_gdrive.mo share/locale/uk/LC_MESSAGES/kio5_gdrive.mo share/locale/zh_CN/LC_MESSAGES/kio5_gdrive.mo share/locale/zh_TW/LC_MESSAGES/kio5_gdrive.mo share/metainfo/org.kde.kio_gdrive.metainfo.xml share/remoteview/gdrive-network.desktop diff --git a/net/kio-zeroconf/distinfo b/net/kio-zeroconf/distinfo index e131ebb08268..05411a6452a1 100644 --- a/net/kio-zeroconf/distinfo +++ b/net/kio-zeroconf/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1677828404 -SHA256 (KDE/release-service/22.12.3/kio-zeroconf-22.12.3.tar.xz) = a14774bd13d127e136bee4862070ffc411483bc7c4ae4deeafdc0ad88c33fdab -SIZE (KDE/release-service/22.12.3/kio-zeroconf-22.12.3.tar.xz) = 42596 +TIMESTAMP = 1681548242 +SHA256 (KDE/release-service/23.04.0/kio-zeroconf-23.04.0.tar.xz) = 5fc7df79bdf0c7831f79431ec23384f4aaa1aa7fb68b9bd61da6ca9becc4e858 +SIZE (KDE/release-service/23.04.0/kio-zeroconf-23.04.0.tar.xz) = 44084 diff --git a/net/kitinerary/distinfo b/net/kitinerary/distinfo index 4f9e10ab1a2f..2092d53a6ed1 100644 --- a/net/kitinerary/distinfo +++ b/net/kitinerary/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1677828410 -SHA256 (KDE/release-service/22.12.3/kitinerary-22.12.3.tar.xz) = a697a4133575b39e444693c6035af19fc77293322463a3db53543f975c862e63 -SIZE (KDE/release-service/22.12.3/kitinerary-22.12.3.tar.xz) = 1724024 +TIMESTAMP = 1681548232 +SHA256 (KDE/release-service/23.04.0/kitinerary-23.04.0.tar.xz) = ba798446958b5591cd4ecc260105ccd8399a540e3de550fbf788974c7011ab1f +SIZE (KDE/release-service/23.04.0/kitinerary-23.04.0.tar.xz) = 1748016 diff --git a/net/kitinerary/pkg-plist b/net/kitinerary/pkg-plist index f862720236d1..019a22c88691 100644 --- a/net/kitinerary/pkg-plist +++ b/net/kitinerary/pkg-plist @@ -1,176 +1,183 @@ -include/KPim/KItinerary/AbstractExtractor -include/KPim/KItinerary/Action -include/KPim/KItinerary/AlphaId -include/KPim/KItinerary/BERElement -include/KPim/KItinerary/BarcodeDecoder -include/KPim/KItinerary/BoatTrip -include/KPim/KItinerary/Brand -include/KPim/KItinerary/BusTrip -include/KPim/KItinerary/CalendarHandler -include/KPim/KItinerary/CountryDb -include/KPim/KItinerary/CreativeWork -include/KPim/KItinerary/Datatypes -include/KPim/KItinerary/DocumentUtil -include/KPim/KItinerary/Event -include/KPim/KItinerary/ExtractorCapabilities -include/KPim/KItinerary/ExtractorDocumentNode -include/KPim/KItinerary/ExtractorDocumentNodeFactory -include/KPim/KItinerary/ExtractorDocumentProcessor -include/KPim/KItinerary/ExtractorEngine -include/KPim/KItinerary/ExtractorFilter -include/KPim/KItinerary/ExtractorPostprocessor -include/KPim/KItinerary/ExtractorRepository -include/KPim/KItinerary/ExtractorResult -include/KPim/KItinerary/ExtractorValidator -include/KPim/KItinerary/File -include/KPim/KItinerary/Flight -include/KPim/KItinerary/HtmlDocument -include/KPim/KItinerary/IataBcbp -include/KPim/KItinerary/IataBcbpSections -include/KPim/KItinerary/JsonLdDocument -include/KPim/KItinerary/KnowledgeDb -include/KPim/KItinerary/LocationUtil -include/KPim/KItinerary/MergeUtil -include/KPim/KItinerary/Organization -include/KPim/KItinerary/PdfDocument -include/KPim/KItinerary/PdfImage -include/KPim/KItinerary/PdfLink -include/KPim/KItinerary/Person -include/KPim/KItinerary/Place -include/KPim/KItinerary/ProgramMembership -include/KPim/KItinerary/Rct2Ticket -include/KPim/KItinerary/RentalCar -include/KPim/KItinerary/Reservation -include/KPim/KItinerary/SSBTicketBase -include/KPim/KItinerary/SSBv1Ticket -include/KPim/KItinerary/SSBv2Ticket -include/KPim/KItinerary/SSBv3Ticket -include/KPim/KItinerary/ScriptExtractor -include/KPim/KItinerary/SortUtil -include/KPim/KItinerary/Taxi -include/KPim/KItinerary/Ticket -include/KPim/KItinerary/Token -include/KPim/KItinerary/TrainTrip -include/KPim/KItinerary/Uic9183Block -include/KPim/KItinerary/Uic9183Header -include/KPim/KItinerary/Uic9183Parser -include/KPim/KItinerary/Uic9183TicketLayout -include/KPim/KItinerary/Uic9183Utils -include/KPim/KItinerary/VdvBasicTypes -include/KPim/KItinerary/VdvTicket -include/KPim/KItinerary/VdvTicketContent -include/KPim/KItinerary/VdvTicketParser -include/KPim/KItinerary/Vendor0080Block -include/KPim/KItinerary/Vendor0080VUBlockData -include/KPim/KItinerary/Vendor1154Block -include/KPim/KItinerary/Visit -include/KPim/kitinerary/abstractextractor.h -include/KPim/kitinerary/action.h -include/KPim/kitinerary/alphaid.h -include/KPim/kitinerary/barcodedecoder.h -include/KPim/kitinerary/berelement.h -include/KPim/kitinerary/boattrip.h -include/KPim/kitinerary/brand.h -include/KPim/kitinerary/bustrip.h -include/KPim/kitinerary/calendarhandler.h -include/KPim/kitinerary/countrydb.h -include/KPim/kitinerary/creativework.h -include/KPim/kitinerary/datatypes.h -include/KPim/kitinerary/documentutil.h -include/KPim/kitinerary/event.h -include/KPim/kitinerary/extractorcapabilities.h -include/KPim/kitinerary/extractordocumentnode.h -include/KPim/kitinerary/extractordocumentnodefactory.h -include/KPim/kitinerary/extractordocumentprocessor.h -include/KPim/kitinerary/extractorengine.h -include/KPim/kitinerary/extractorfilter.h -include/KPim/kitinerary/extractorpostprocessor.h -include/KPim/kitinerary/extractorrepository.h -include/KPim/kitinerary/extractorresult.h -include/KPim/kitinerary/extractorvalidator.h -include/KPim/kitinerary/file.h -include/KPim/kitinerary/flight.h -include/KPim/kitinerary/htmldocument.h -include/KPim/kitinerary/iatabcbp.h -include/KPim/kitinerary/iatabcbpsections.h -include/KPim/kitinerary/jsonlddocument.h -include/KPim/kitinerary/kitinerary_export.h -include/KPim/kitinerary/knowledgedb.h -include/KPim/kitinerary/locationutil.h -include/KPim/kitinerary/mergeutil.h -include/KPim/kitinerary/organization.h -include/KPim/kitinerary/pdfdocument.h -include/KPim/kitinerary/pdfimage.h -include/KPim/kitinerary/pdflink.h -include/KPim/kitinerary/person.h -include/KPim/kitinerary/place.h -include/KPim/kitinerary/programmembership.h -include/KPim/kitinerary/rct2ticket.h -include/KPim/kitinerary/rentalcar.h -include/KPim/kitinerary/reservation.h -include/KPim/kitinerary/scriptextractor.h -include/KPim/kitinerary/sortutil.h -include/KPim/kitinerary/ssbticketbase.h -include/KPim/kitinerary/ssbv1ticket.h -include/KPim/kitinerary/ssbv2ticket.h -include/KPim/kitinerary/ssbv3ticket.h -include/KPim/kitinerary/taxi.h -include/KPim/kitinerary/ticket.h -include/KPim/kitinerary/token.h -include/KPim/kitinerary/traintrip.h -include/KPim/kitinerary/uic9183block.h -include/KPim/kitinerary/uic9183header.h -include/KPim/kitinerary/uic9183parser.h -include/KPim/kitinerary/uic9183ticketlayout.h -include/KPim/kitinerary/uic9183utils.h -include/KPim/kitinerary/vdvbasictypes.h -include/KPim/kitinerary/vdvticket.h -include/KPim/kitinerary/vdvticketcontent.h -include/KPim/kitinerary/vdvticketparser.h -include/KPim/kitinerary/vendor0080block.h -include/KPim/kitinerary/vendor0080vublockdata.h -include/KPim/kitinerary/vendor1154block.h -include/KPim/kitinerary/visit.h -include/KPim/kitinerary_version.h +include/KPim5/KItinerary/AbstractExtractor +include/KPim5/KItinerary/Action +include/KPim5/KItinerary/AlphaId +include/KPim5/KItinerary/BERElement +include/KPim5/KItinerary/BarcodeDecoder +include/KPim5/KItinerary/BoatTrip +include/KPim5/KItinerary/Brand +include/KPim5/KItinerary/BusTrip +include/KPim5/KItinerary/CalendarHandler +include/KPim5/KItinerary/CountryDb +include/KPim5/KItinerary/CreativeWork +include/KPim5/KItinerary/Datatypes +include/KPim5/KItinerary/DocumentUtil +include/KPim5/KItinerary/ELBTicket +include/KPim5/KItinerary/Event +include/KPim5/KItinerary/ExtractorCapabilities +include/KPim5/KItinerary/ExtractorDocumentNode +include/KPim5/KItinerary/ExtractorDocumentNodeFactory +include/KPim5/KItinerary/ExtractorDocumentProcessor +include/KPim5/KItinerary/ExtractorEngine +include/KPim5/KItinerary/ExtractorFilter +include/KPim5/KItinerary/ExtractorPostprocessor +include/KPim5/KItinerary/ExtractorRepository +include/KPim5/KItinerary/ExtractorResult +include/KPim5/KItinerary/ExtractorValidator +include/KPim5/KItinerary/File +include/KPim5/KItinerary/Flight +include/KPim5/KItinerary/HtmlDocument +include/KPim5/KItinerary/IataBcbp +include/KPim5/KItinerary/IataBcbpSections +include/KPim5/KItinerary/JsonLdDocument +include/KPim5/KItinerary/KnowledgeDb +include/KPim5/KItinerary/LocationUtil +include/KPim5/KItinerary/MergeUtil +include/KPim5/KItinerary/Organization +include/KPim5/KItinerary/PdfDocument +include/KPim5/KItinerary/PdfImage +include/KPim5/KItinerary/PdfLink +include/KPim5/KItinerary/Person +include/KPim5/KItinerary/Place +include/KPim5/KItinerary/ProgramMembership +include/KPim5/KItinerary/Rct2Ticket +include/KPim5/KItinerary/RentalCar +include/KPim5/KItinerary/Reservation +include/KPim5/KItinerary/SSBTicketBase +include/KPim5/KItinerary/SSBv1Ticket +include/KPim5/KItinerary/SSBv2Ticket +include/KPim5/KItinerary/SSBv3Ticket +include/KPim5/KItinerary/ScriptExtractor +include/KPim5/KItinerary/SortUtil +include/KPim5/KItinerary/Taxi +include/KPim5/KItinerary/Ticket +include/KPim5/KItinerary/Token +include/KPim5/KItinerary/TrainTrip +include/KPim5/KItinerary/Uic9183Block +include/KPim5/KItinerary/Uic9183Header +include/KPim5/KItinerary/Uic9183Parser +include/KPim5/KItinerary/Uic9183TicketLayout +include/KPim5/KItinerary/Uic9183Utils +include/KPim5/KItinerary/VdvBasicTypes +include/KPim5/KItinerary/VdvTicket +include/KPim5/KItinerary/VdvTicketContent +include/KPim5/KItinerary/VdvTicketParser +include/KPim5/KItinerary/Vendor0080Block +include/KPim5/KItinerary/Vendor0080VUBlockData +include/KPim5/KItinerary/Vendor1154Block +include/KPim5/KItinerary/Visit +include/KPim5/kitinerary/abstractextractor.h +include/KPim5/kitinerary/action.h +include/KPim5/kitinerary/alphaid.h +include/KPim5/kitinerary/barcodedecoder.h +include/KPim5/kitinerary/berelement.h +include/KPim5/kitinerary/boattrip.h +include/KPim5/kitinerary/brand.h +include/KPim5/kitinerary/bustrip.h +include/KPim5/kitinerary/calendarhandler.h +include/KPim5/kitinerary/countrydb.h +include/KPim5/kitinerary/creativework.h +include/KPim5/kitinerary/datatypes.h +include/KPim5/kitinerary/documentutil.h +include/KPim5/kitinerary/elbticket.h +include/KPim5/kitinerary/event.h +include/KPim5/kitinerary/extractorcapabilities.h +include/KPim5/kitinerary/extractordocumentnode.h +include/KPim5/kitinerary/extractordocumentnodefactory.h +include/KPim5/kitinerary/extractordocumentprocessor.h +include/KPim5/kitinerary/extractorengine.h +include/KPim5/kitinerary/extractorfilter.h +include/KPim5/kitinerary/extractorpostprocessor.h +include/KPim5/kitinerary/extractorrepository.h +include/KPim5/kitinerary/extractorresult.h +include/KPim5/kitinerary/extractorvalidator.h +include/KPim5/kitinerary/file.h +include/KPim5/kitinerary/flight.h +include/KPim5/kitinerary/htmldocument.h +include/KPim5/kitinerary/iatabcbp.h +include/KPim5/kitinerary/iatabcbpsections.h +include/KPim5/kitinerary/internal/parameter_type.h +include/KPim5/kitinerary/jsonlddocument.h +include/KPim5/kitinerary/kitinerary_export.h +include/KPim5/kitinerary/knowledgedb.h +include/KPim5/kitinerary/locationutil.h +include/KPim5/kitinerary/mergeutil.h +include/KPim5/kitinerary/organization.h +include/KPim5/kitinerary/pdfdocument.h +include/KPim5/kitinerary/pdfimage.h +include/KPim5/kitinerary/pdflink.h +include/KPim5/kitinerary/person.h +include/KPim5/kitinerary/place.h +include/KPim5/kitinerary/programmembership.h +include/KPim5/kitinerary/rct2ticket.h +include/KPim5/kitinerary/rentalcar.h +include/KPim5/kitinerary/reservation.h +include/KPim5/kitinerary/scriptextractor.h +include/KPim5/kitinerary/sortutil.h +include/KPim5/kitinerary/ssbticketbase.h +include/KPim5/kitinerary/ssbv1ticket.h +include/KPim5/kitinerary/ssbv2ticket.h +include/KPim5/kitinerary/ssbv3ticket.h +include/KPim5/kitinerary/taxi.h +include/KPim5/kitinerary/ticket.h +include/KPim5/kitinerary/token.h +include/KPim5/kitinerary/traintrip.h +include/KPim5/kitinerary/uic9183block.h +include/KPim5/kitinerary/uic9183header.h +include/KPim5/kitinerary/uic9183parser.h +include/KPim5/kitinerary/uic9183ticketlayout.h +include/KPim5/kitinerary/uic9183utils.h +include/KPim5/kitinerary/vdvbasictypes.h +include/KPim5/kitinerary/vdvticket.h +include/KPim5/kitinerary/vdvticketcontent.h +include/KPim5/kitinerary/vdvticketparser.h +include/KPim5/kitinerary/vendor0080block.h +include/KPim5/kitinerary/vendor0080vublockdata.h +include/KPim5/kitinerary/vendor1154block.h +include/KPim5/kitinerary/visit.h +include/KPim5/kitinerary_version.h +lib/cmake/KPim5Itinerary/KPim5ItineraryConfig.cmake +lib/cmake/KPim5Itinerary/KPim5ItineraryConfigVersion.cmake +lib/cmake/KPim5Itinerary/KPim5ItineraryTargets-%%CMAKE_BUILD_TYPE%%.cmake +lib/cmake/KPim5Itinerary/KPim5ItineraryTargets.cmake +lib/cmake/KPimItinerary/KPim5ItineraryTargets-%%CMAKE_BUILD_TYPE%%.cmake +lib/cmake/KPimItinerary/KPim5ItineraryTargets.cmake 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.5 -lib/libKPimItinerary.so.%%KDE_APPLICATIONS_SHLIB_VER%% +lib/libKPim5Itinerary.so +lib/libKPim5Itinerary.so.5 +lib/libKPim5Itinerary.so.%%KDE_APPLICATIONS_SHLIB_VER%% lib/libexec/kf5/kitinerary-extractor 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/da/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/et/LC_MESSAGES/kitinerary.mo share/locale/eu/LC_MESSAGES/kitinerary.mo share/locale/fi/LC_MESSAGES/kitinerary.mo share/locale/fr/LC_MESSAGES/kitinerary.mo share/locale/gl/LC_MESSAGES/kitinerary.mo share/locale/ia/LC_MESSAGES/kitinerary.mo share/locale/it/LC_MESSAGES/kitinerary.mo share/locale/ja/LC_MESSAGES/kitinerary.mo share/locale/ka/LC_MESSAGES/kitinerary.mo share/locale/ko/LC_MESSAGES/kitinerary.mo share/locale/lt/LC_MESSAGES/kitinerary.mo share/locale/nl/LC_MESSAGES/kitinerary.mo share/locale/nn/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/sl/LC_MESSAGES/kitinerary.mo share/locale/sv/LC_MESSAGES/kitinerary.mo share/locale/tr/LC_MESSAGES/kitinerary.mo share/locale/uk/LC_MESSAGES/kitinerary.mo share/locale/zh_CN/LC_MESSAGES/kitinerary.mo share/locale/zh_TW/LC_MESSAGES/kitinerary.mo share/mime/packages/application-vnd-kde-itinerary.xml share/qlogging-categories5/org_kde_kitinerary.categories diff --git a/net/kldap/distinfo b/net/kldap/distinfo index 9608d4054f1a..f08218df4aaa 100644 --- a/net/kldap/distinfo +++ b/net/kldap/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1677828413 -SHA256 (KDE/release-service/22.12.3/kldap-22.12.3.tar.xz) = 0d33ee1ccade2c07afd99e05873ac78d088c8b7176ed372b60675eb94fae0c28 -SIZE (KDE/release-service/22.12.3/kldap-22.12.3.tar.xz) = 181556 +TIMESTAMP = 1681548235 +SHA256 (KDE/release-service/23.04.0/kldap-23.04.0.tar.xz) = b27a690c0502198caf334b8eab498fbd14ff7280d3bdadf2afd4904c29a84e31 +SIZE (KDE/release-service/23.04.0/kldap-23.04.0.tar.xz) = 182760 diff --git a/net/kldap/pkg-plist b/net/kldap/pkg-plist index 08e9f60fe59c..8f6086044fc7 100644 --- a/net/kldap/pkg-plist +++ b/net/kldap/pkg-plist @@ -1,183 +1,187 @@ -include/KF5/KLDAP/KLDAP/AddHostDialog -include/KF5/KLDAP/KLDAP/Ber -include/KF5/KLDAP/KLDAP/LdapClient -include/KF5/KLDAP/KLDAP/LdapClientSearch -include/KF5/KLDAP/KLDAP/LdapClientSearchConfig -include/KF5/KLDAP/KLDAP/LdapClientSearchConfigReadConfigJob -include/KF5/KLDAP/KLDAP/LdapClientSearchConfigWriteConfigJob -include/KF5/KLDAP/KLDAP/LdapConfigWidget -include/KF5/KLDAP/KLDAP/LdapConfigureWidget -include/KF5/KLDAP/KLDAP/LdapConnection -include/KF5/KLDAP/KLDAP/LdapControl -include/KF5/KLDAP/KLDAP/LdapDN -include/KF5/KLDAP/KLDAP/LdapDefs -include/KF5/KLDAP/KLDAP/LdapObject -include/KF5/KLDAP/KLDAP/LdapOperation -include/KF5/KLDAP/KLDAP/LdapSearch -include/KF5/KLDAP/KLDAP/LdapSearchClientReadConfigServerJob -include/KF5/KLDAP/KLDAP/LdapServer -include/KF5/KLDAP/KLDAP/LdapUrl -include/KF5/KLDAP/KLDAP/Ldif -include/KF5/KLDAP/kldap/addhostdialog.h -include/KF5/KLDAP/kldap/ber.h -include/KF5/KLDAP/kldap/kldap_export.h -include/KF5/KLDAP/kldap/ldapclient.h -include/KF5/KLDAP/kldap/ldapclientsearch.h -include/KF5/KLDAP/kldap/ldapclientsearchconfig.h -include/KF5/KLDAP/kldap/ldapclientsearchconfigreadconfigjob.h -include/KF5/KLDAP/kldap/ldapclientsearchconfigwriteconfigjob.h -include/KF5/KLDAP/kldap/ldapconfigurewidget.h -include/KF5/KLDAP/kldap/ldapconfigwidget.h -include/KF5/KLDAP/kldap/ldapconnection.h -include/KF5/KLDAP/kldap/ldapcontrol.h -include/KF5/KLDAP/kldap/ldapdefs.h -include/KF5/KLDAP/kldap/ldapdn.h -include/KF5/KLDAP/kldap/ldapobject.h -include/KF5/KLDAP/kldap/ldapoperation.h -include/KF5/KLDAP/kldap/ldapsearch.h -include/KF5/KLDAP/kldap/ldapsearchclientreadconfigserverjob.h -include/KF5/KLDAP/kldap/ldapserver.h -include/KF5/KLDAP/kldap/ldapurl.h -include/KF5/KLDAP/kldap/ldif.h -include/KF5/KLDAP/kldap_version.h +include/KPim5/KLDAP/KLDAP/AddHostDialog +include/KPim5/KLDAP/KLDAP/Ber +include/KPim5/KLDAP/KLDAP/LdapClient +include/KPim5/KLDAP/KLDAP/LdapClientSearch +include/KPim5/KLDAP/KLDAP/LdapClientSearchConfig +include/KPim5/KLDAP/KLDAP/LdapClientSearchConfigReadConfigJob +include/KPim5/KLDAP/KLDAP/LdapClientSearchConfigWriteConfigJob +include/KPim5/KLDAP/KLDAP/LdapConfigWidget +include/KPim5/KLDAP/KLDAP/LdapConfigureWidget +include/KPim5/KLDAP/KLDAP/LdapConnection +include/KPim5/KLDAP/KLDAP/LdapControl +include/KPim5/KLDAP/KLDAP/LdapDN +include/KPim5/KLDAP/KLDAP/LdapDefs +include/KPim5/KLDAP/KLDAP/LdapObject +include/KPim5/KLDAP/KLDAP/LdapOperation +include/KPim5/KLDAP/KLDAP/LdapSearch +include/KPim5/KLDAP/KLDAP/LdapSearchClientReadConfigServerJob +include/KPim5/KLDAP/KLDAP/LdapServer +include/KPim5/KLDAP/KLDAP/LdapUrl +include/KPim5/KLDAP/KLDAP/Ldif +include/KPim5/KLDAP/kldap/addhostdialog.h +include/KPim5/KLDAP/kldap/ber.h +include/KPim5/KLDAP/kldap/kldap_export.h +include/KPim5/KLDAP/kldap/ldapclient.h +include/KPim5/KLDAP/kldap/ldapclientsearch.h +include/KPim5/KLDAP/kldap/ldapclientsearchconfig.h +include/KPim5/KLDAP/kldap/ldapclientsearchconfigreadconfigjob.h +include/KPim5/KLDAP/kldap/ldapclientsearchconfigwriteconfigjob.h +include/KPim5/KLDAP/kldap/ldapconfigurewidget.h +include/KPim5/KLDAP/kldap/ldapconfigwidget.h +include/KPim5/KLDAP/kldap/ldapconnection.h +include/KPim5/KLDAP/kldap/ldapcontrol.h +include/KPim5/KLDAP/kldap/ldapdefs.h +include/KPim5/KLDAP/kldap/ldapdn.h +include/KPim5/KLDAP/kldap/ldapobject.h +include/KPim5/KLDAP/kldap/ldapoperation.h +include/KPim5/KLDAP/kldap/ldapsearch.h +include/KPim5/KLDAP/kldap/ldapsearchclientreadconfigserverjob.h +include/KPim5/KLDAP/kldap/ldapserver.h +include/KPim5/KLDAP/kldap/ldapurl.h +include/KPim5/KLDAP/kldap/ldif.h +include/KPim5/KLDAP/kldap_version.h lib/cmake/KF5Ldap/KF5LdapConfig.cmake lib/cmake/KF5Ldap/KF5LdapConfigVersion.cmake -lib/cmake/KF5Ldap/KF5LdapTargets-%%CMAKE_BUILD_TYPE%%.cmake -lib/cmake/KF5Ldap/KF5LdapTargets.cmake -lib/libKF5Ldap.so -lib/libKF5Ldap.so.5 -lib/libKF5Ldap.so.%%KDE_APPLICATIONS_SHLIB_VER%% +lib/cmake/KF5Ldap/KPim5LdapTargets-%%CMAKE_BUILD_TYPE%%.cmake +lib/cmake/KF5Ldap/KPim5LdapTargets.cmake +lib/cmake/KPim5Ldap/KPim5LdapConfig.cmake +lib/cmake/KPim5Ldap/KPim5LdapConfigVersion.cmake +lib/cmake/KPim5Ldap/KPim5LdapTargets-%%CMAKE_BUILD_TYPE%%.cmake +lib/cmake/KPim5Ldap/KPim5LdapTargets.cmake +lib/libKPim5Ldap.so +lib/libKPim5Ldap.so.5 +lib/libKPim5Ldap.so.%%KDE_APPLICATIONS_SHLIB_VER%% %%QT_MKSPECDIR%%/modules/qt_Ldap.pri %%QT_PLUGINDIR%%/kf5/kio/ldap.so share/locale/af/LC_MESSAGES/kio_ldap.mo share/locale/ar/LC_MESSAGES/kio_ldap.mo share/locale/ar/LC_MESSAGES/libkldap5.mo share/locale/be/LC_MESSAGES/kio_ldap.mo share/locale/be/LC_MESSAGES/libkldap5.mo share/locale/bg/LC_MESSAGES/kio_ldap.mo share/locale/bg/LC_MESSAGES/libkldap5.mo share/locale/bn/LC_MESSAGES/kio_ldap.mo share/locale/br/LC_MESSAGES/kio_ldap.mo share/locale/bs/LC_MESSAGES/kio_ldap.mo share/locale/bs/LC_MESSAGES/libkldap5.mo share/locale/ca/LC_MESSAGES/kio_ldap.mo share/locale/ca/LC_MESSAGES/libkldap5.mo share/locale/ca@valencia/LC_MESSAGES/kio_ldap.mo share/locale/ca@valencia/LC_MESSAGES/libkldap5.mo share/locale/cs/LC_MESSAGES/kio_ldap.mo share/locale/cs/LC_MESSAGES/libkldap5.mo share/locale/csb/LC_MESSAGES/kio_ldap.mo share/locale/cy/LC_MESSAGES/kio_ldap.mo share/locale/da/LC_MESSAGES/kio_ldap.mo share/locale/da/LC_MESSAGES/libkldap5.mo share/locale/de/LC_MESSAGES/kio_ldap.mo share/locale/de/LC_MESSAGES/libkldap5.mo share/locale/el/LC_MESSAGES/kio_ldap.mo share/locale/el/LC_MESSAGES/libkldap5.mo share/locale/en_GB/LC_MESSAGES/kio_ldap.mo share/locale/en_GB/LC_MESSAGES/libkldap5.mo share/locale/eo/LC_MESSAGES/kio_ldap.mo share/locale/eo/LC_MESSAGES/libkldap5.mo share/locale/es/LC_MESSAGES/kio_ldap.mo share/locale/es/LC_MESSAGES/libkldap5.mo share/locale/et/LC_MESSAGES/kio_ldap.mo share/locale/et/LC_MESSAGES/libkldap5.mo share/locale/eu/LC_MESSAGES/kio_ldap.mo share/locale/eu/LC_MESSAGES/libkldap5.mo share/locale/fa/LC_MESSAGES/kio_ldap.mo share/locale/fi/LC_MESSAGES/kio_ldap.mo share/locale/fi/LC_MESSAGES/libkldap5.mo share/locale/fr/LC_MESSAGES/kio_ldap.mo share/locale/fr/LC_MESSAGES/libkldap5.mo share/locale/fy/LC_MESSAGES/kio_ldap.mo share/locale/ga/LC_MESSAGES/kio_ldap.mo share/locale/ga/LC_MESSAGES/libkldap5.mo share/locale/gl/LC_MESSAGES/kio_ldap.mo share/locale/gl/LC_MESSAGES/libkldap5.mo share/locale/he/LC_MESSAGES/kio_ldap.mo share/locale/hi/LC_MESSAGES/kio_ldap.mo share/locale/hi/LC_MESSAGES/libkldap5.mo share/locale/hne/LC_MESSAGES/kio_ldap.mo share/locale/hne/LC_MESSAGES/libkldap5.mo share/locale/hu/LC_MESSAGES/kio_ldap.mo share/locale/hu/LC_MESSAGES/libkldap5.mo share/locale/ia/LC_MESSAGES/kio_ldap.mo share/locale/ia/LC_MESSAGES/libkldap5.mo share/locale/is/LC_MESSAGES/kio_ldap.mo share/locale/it/LC_MESSAGES/kio_ldap.mo share/locale/it/LC_MESSAGES/libkldap5.mo share/locale/ja/LC_MESSAGES/kio_ldap.mo share/locale/ja/LC_MESSAGES/libkldap5.mo share/locale/ka/LC_MESSAGES/kio_ldap.mo share/locale/ka/LC_MESSAGES/libkldap5.mo share/locale/kk/LC_MESSAGES/kio_ldap.mo share/locale/kk/LC_MESSAGES/libkldap5.mo share/locale/km/LC_MESSAGES/kio_ldap.mo share/locale/km/LC_MESSAGES/libkldap5.mo share/locale/kn/LC_MESSAGES/kio_ldap.mo share/locale/ko/LC_MESSAGES/kio_ldap.mo share/locale/ko/LC_MESSAGES/libkldap5.mo share/locale/lt/LC_MESSAGES/kio_ldap.mo share/locale/lt/LC_MESSAGES/libkldap5.mo share/locale/lv/LC_MESSAGES/kio_ldap.mo share/locale/lv/LC_MESSAGES/libkldap5.mo share/locale/mk/LC_MESSAGES/kio_ldap.mo share/locale/mr/LC_MESSAGES/kio_ldap.mo share/locale/mr/LC_MESSAGES/libkldap5.mo share/locale/ms/LC_MESSAGES/kio_ldap.mo share/locale/nb/LC_MESSAGES/kio_ldap.mo share/locale/nb/LC_MESSAGES/libkldap5.mo share/locale/nds/LC_MESSAGES/kio_ldap.mo share/locale/nds/LC_MESSAGES/libkldap5.mo share/locale/ne/LC_MESSAGES/kio_ldap.mo share/locale/nl/LC_MESSAGES/kio_ldap.mo share/locale/nl/LC_MESSAGES/libkldap5.mo share/locale/nn/LC_MESSAGES/kio_ldap.mo share/locale/nn/LC_MESSAGES/libkldap5.mo share/locale/pa/LC_MESSAGES/kio_ldap.mo share/locale/pa/LC_MESSAGES/libkldap5.mo share/locale/pl/LC_MESSAGES/kio_ldap.mo share/locale/pl/LC_MESSAGES/libkldap5.mo share/locale/pt/LC_MESSAGES/kio_ldap.mo share/locale/pt/LC_MESSAGES/libkldap5.mo share/locale/pt_BR/LC_MESSAGES/kio_ldap.mo share/locale/pt_BR/LC_MESSAGES/libkldap5.mo share/locale/ro/LC_MESSAGES/kio_ldap.mo share/locale/ro/LC_MESSAGES/libkldap5.mo share/locale/ru/LC_MESSAGES/kio_ldap.mo share/locale/ru/LC_MESSAGES/libkldap5.mo share/locale/se/LC_MESSAGES/kio_ldap.mo share/locale/se/LC_MESSAGES/libkldap5.mo share/locale/sk/LC_MESSAGES/kio_ldap.mo share/locale/sk/LC_MESSAGES/libkldap5.mo share/locale/sl/LC_MESSAGES/kio_ldap.mo share/locale/sl/LC_MESSAGES/libkldap5.mo share/locale/sq/LC_MESSAGES/libkldap5.mo share/locale/sr/LC_MESSAGES/kio_ldap.mo share/locale/sr/LC_MESSAGES/libkldap5.mo share/locale/sr@ijekavian/LC_MESSAGES/kio_ldap.mo share/locale/sr@ijekavian/LC_MESSAGES/libkldap5.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kio_ldap.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/libkldap5.mo share/locale/sr@latin/LC_MESSAGES/kio_ldap.mo share/locale/sr@latin/LC_MESSAGES/libkldap5.mo share/locale/sv/LC_MESSAGES/kio_ldap.mo share/locale/sv/LC_MESSAGES/libkldap5.mo share/locale/ta/LC_MESSAGES/kio_ldap.mo share/locale/th/LC_MESSAGES/kio_ldap.mo share/locale/th/LC_MESSAGES/libkldap5.mo share/locale/tr/LC_MESSAGES/kio_ldap.mo share/locale/tr/LC_MESSAGES/libkldap5.mo share/locale/ug/LC_MESSAGES/kio_ldap.mo share/locale/ug/LC_MESSAGES/libkldap5.mo share/locale/uk/LC_MESSAGES/kio_ldap.mo share/locale/uk/LC_MESSAGES/libkldap5.mo share/locale/uz/LC_MESSAGES/kio_ldap.mo share/locale/uz@cyrillic/LC_MESSAGES/kio_ldap.mo share/locale/vi/LC_MESSAGES/kio_ldap.mo share/locale/zh_CN/LC_MESSAGES/kio_ldap.mo share/locale/zh_CN/LC_MESSAGES/libkldap5.mo share/locale/zh_TW/LC_MESSAGES/kio_ldap.mo share/locale/zh_TW/LC_MESSAGES/libkldap5.mo share/qlogging-categories5/kldap.categories share/qlogging-categories5/kldap.renamecategories diff --git a/net/kmailtransport/distinfo b/net/kmailtransport/distinfo index b8a93ca4c66f..8a365ec8e7d2 100644 --- a/net/kmailtransport/distinfo +++ b/net/kmailtransport/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1677828417 -SHA256 (KDE/release-service/22.12.3/kmailtransport-22.12.3.tar.xz) = d36f185327db1d7e1b589aaf062749a611819f980912fb55c3bef9225aada3c0 -SIZE (KDE/release-service/22.12.3/kmailtransport-22.12.3.tar.xz) = 190888 +TIMESTAMP = 1681548244 +SHA256 (KDE/release-service/23.04.0/kmailtransport-23.04.0.tar.xz) = 431cd1d663b41b7de08b692a6fa6863c6e9fed5c245410caea48179fb396c6af +SIZE (KDE/release-service/23.04.0/kmailtransport-23.04.0.tar.xz) = 191572 diff --git a/net/kmailtransport/pkg-plist b/net/kmailtransport/pkg-plist index bde85579ff3c..db4802cde843 100644 --- a/net/kmailtransport/pkg-plist +++ b/net/kmailtransport/pkg-plist @@ -1,120 +1,128 @@ -include/KF5/MailTransport/MailTransport/PrecommandJob -include/KF5/MailTransport/MailTransport/ServerTest -include/KF5/MailTransport/MailTransport/Transport -include/KF5/MailTransport/MailTransport/TransportAbstractPlugin -include/KF5/MailTransport/MailTransport/TransportComboBox -include/KF5/MailTransport/MailTransport/TransportConfigWidget -include/KF5/MailTransport/MailTransport/TransportJob -include/KF5/MailTransport/MailTransport/TransportManagementWidget -include/KF5/MailTransport/MailTransport/TransportManager -include/KF5/MailTransport/MailTransport/TransportType -include/KF5/MailTransport/mailtransport/mailtransport_export.h -include/KF5/MailTransport/mailtransport/precommandjob.h -include/KF5/MailTransport/mailtransport/private/transportconfigwidget_p.h -include/KF5/MailTransport/mailtransport/servertest.h -include/KF5/MailTransport/mailtransport/transport.h -include/KF5/MailTransport/mailtransport/transportabstractplugin.h -include/KF5/MailTransport/mailtransport/transportbase.h -include/KF5/MailTransport/mailtransport/transportcombobox.h -include/KF5/MailTransport/mailtransport/transportconfigwidget.h -include/KF5/MailTransport/mailtransport/transportjob.h -include/KF5/MailTransport/mailtransport/transportmanagementwidget.h -include/KF5/MailTransport/mailtransport/transportmanager.h -include/KF5/MailTransport/mailtransport/transporttype.h -include/KF5/MailTransport/mailtransport_version.h -include/KF5/MailTransportAkonadi/MailTransportAkonadi/DispatchModeAttribute -include/KF5/MailTransportAkonadi/MailTransportAkonadi/DispatcherInterface -include/KF5/MailTransportAkonadi/MailTransportAkonadi/ErrorAttribute -include/KF5/MailTransportAkonadi/MailTransportAkonadi/MessageQueueJob -include/KF5/MailTransportAkonadi/MailTransportAkonadi/SentActionAttribute -include/KF5/MailTransportAkonadi/MailTransportAkonadi/SentBehaviourAttribute -include/KF5/MailTransportAkonadi/MailTransportAkonadi/TransportAttribute -include/KF5/MailTransportAkonadi/mailtransportakonadi/dispatcherinterface.h -include/KF5/MailTransportAkonadi/mailtransportakonadi/dispatchmodeattribute.h -include/KF5/MailTransportAkonadi/mailtransportakonadi/errorattribute.h -include/KF5/MailTransportAkonadi/mailtransportakonadi/mailtransportakonadi_export.h -include/KF5/MailTransportAkonadi/mailtransportakonadi/messagequeuejob.h -include/KF5/MailTransportAkonadi/mailtransportakonadi/sentactionattribute.h -include/KF5/MailTransportAkonadi/mailtransportakonadi/sentbehaviourattribute.h -include/KF5/MailTransportAkonadi/mailtransportakonadi/transportattribute.h -include/KF5/MailTransportAkonadi/mailtransportakonadi_version.h +include/KPim5/MailTransport/MailTransport/PrecommandJob +include/KPim5/MailTransport/MailTransport/ServerTest +include/KPim5/MailTransport/MailTransport/Transport +include/KPim5/MailTransport/MailTransport/TransportAbstractPlugin +include/KPim5/MailTransport/MailTransport/TransportComboBox +include/KPim5/MailTransport/MailTransport/TransportConfigWidget +include/KPim5/MailTransport/MailTransport/TransportJob +include/KPim5/MailTransport/MailTransport/TransportManagementWidget +include/KPim5/MailTransport/MailTransport/TransportManager +include/KPim5/MailTransport/MailTransport/TransportType +include/KPim5/MailTransport/mailtransport/mailtransport_export.h +include/KPim5/MailTransport/mailtransport/precommandjob.h +include/KPim5/MailTransport/mailtransport/private/transportconfigwidget_p.h +include/KPim5/MailTransport/mailtransport/servertest.h +include/KPim5/MailTransport/mailtransport/transport.h +include/KPim5/MailTransport/mailtransport/transportabstractplugin.h +include/KPim5/MailTransport/mailtransport/transportbase.h +include/KPim5/MailTransport/mailtransport/transportcombobox.h +include/KPim5/MailTransport/mailtransport/transportconfigwidget.h +include/KPim5/MailTransport/mailtransport/transportjob.h +include/KPim5/MailTransport/mailtransport/transportmanagementwidget.h +include/KPim5/MailTransport/mailtransport/transportmanager.h +include/KPim5/MailTransport/mailtransport/transporttype.h +include/KPim5/MailTransport/mailtransport_version.h +include/KPim5/MailTransportAkonadi/MailTransportAkonadi/DispatchModeAttribute +include/KPim5/MailTransportAkonadi/MailTransportAkonadi/DispatcherInterface +include/KPim5/MailTransportAkonadi/MailTransportAkonadi/ErrorAttribute +include/KPim5/MailTransportAkonadi/MailTransportAkonadi/MessageQueueJob +include/KPim5/MailTransportAkonadi/MailTransportAkonadi/SentActionAttribute +include/KPim5/MailTransportAkonadi/MailTransportAkonadi/SentBehaviourAttribute +include/KPim5/MailTransportAkonadi/MailTransportAkonadi/TransportAttribute +include/KPim5/MailTransportAkonadi/mailtransportakonadi/dispatcherinterface.h +include/KPim5/MailTransportAkonadi/mailtransportakonadi/dispatchmodeattribute.h +include/KPim5/MailTransportAkonadi/mailtransportakonadi/errorattribute.h +include/KPim5/MailTransportAkonadi/mailtransportakonadi/mailtransportakonadi_export.h +include/KPim5/MailTransportAkonadi/mailtransportakonadi/messagequeuejob.h +include/KPim5/MailTransportAkonadi/mailtransportakonadi/sentactionattribute.h +include/KPim5/MailTransportAkonadi/mailtransportakonadi/sentbehaviourattribute.h +include/KPim5/MailTransportAkonadi/mailtransportakonadi/transportattribute.h +include/KPim5/MailTransportAkonadi/mailtransportakonadi_version.h lib/cmake/KF5MailTransport/KF5MailTransportConfig.cmake lib/cmake/KF5MailTransport/KF5MailTransportConfigVersion.cmake -lib/cmake/KF5MailTransport/KF5MailTransportTargets-%%CMAKE_BUILD_TYPE%%.cmake -lib/cmake/KF5MailTransport/KF5MailTransportTargets.cmake +lib/cmake/KF5MailTransport/KPim5MailTransportTargets-%%CMAKE_BUILD_TYPE%%.cmake +lib/cmake/KF5MailTransport/KPim5MailTransportTargets.cmake lib/cmake/KF5MailTransportAkonadi/KF5MailTransportAkonadiConfig.cmake lib/cmake/KF5MailTransportAkonadi/KF5MailTransportAkonadiConfigVersion.cmake -lib/cmake/KF5MailTransportAkonadi/KF5MailTransportAkonadiTargets-%%CMAKE_BUILD_TYPE%%.cmake -lib/cmake/KF5MailTransportAkonadi/KF5MailTransportAkonadiTargets.cmake -lib/libKF5MailTransport.so -lib/libKF5MailTransport.so.5 -lib/libKF5MailTransport.so.%%KDE_APPLICATIONS_SHLIB_VER%% -lib/libKF5MailTransportAkonadi.so -lib/libKF5MailTransportAkonadi.so.5 -lib/libKF5MailTransportAkonadi.so.%%KDE_APPLICATIONS_SHLIB_VER%% +lib/cmake/KF5MailTransportAkonadi/KPim5MailTransportAkonadiTargets-%%CMAKE_BUILD_TYPE%%.cmake +lib/cmake/KF5MailTransportAkonadi/KPim5MailTransportAkonadiTargets.cmake +lib/cmake/KPim5MailTransport/KPim5MailTransportConfig.cmake +lib/cmake/KPim5MailTransport/KPim5MailTransportConfigVersion.cmake +lib/cmake/KPim5MailTransport/KPim5MailTransportTargets-%%CMAKE_BUILD_TYPE%%.cmake +lib/cmake/KPim5MailTransport/KPim5MailTransportTargets.cmake +lib/cmake/KPim5MailTransportAkonadi/KPim5MailTransportAkonadiConfig.cmake +lib/cmake/KPim5MailTransportAkonadi/KPim5MailTransportAkonadiConfigVersion.cmake +lib/cmake/KPim5MailTransportAkonadi/KPim5MailTransportAkonadiTargets-%%CMAKE_BUILD_TYPE%%.cmake +lib/cmake/KPim5MailTransportAkonadi/KPim5MailTransportAkonadiTargets.cmake +lib/libKPim5MailTransport.so +lib/libKPim5MailTransport.so.5 +lib/libKPim5MailTransport.so.%%KDE_APPLICATIONS_SHLIB_VER%% +lib/libKPim5MailTransportAkonadi.so +lib/libKPim5MailTransportAkonadi.so.5 +lib/libKPim5MailTransportAkonadi.so.%%KDE_APPLICATIONS_SHLIB_VER%% %%QT_MKSPECDIR%%/modules/qt_KMailTransport.pri %%QT_MKSPECDIR%%/modules/qt_KMailTransportAkonadi.pri %%QT_PLUGINDIR%%/kcm_mailtransport.so %%QT_PLUGINDIR%%/pim5/mailtransport/mailtransport_akonadiplugin.so %%QT_PLUGINDIR%%/pim5/mailtransport/mailtransport_smtpplugin.so share/config.kcfg/mailtransport.kcfg share/kservices5/kcm_mailtransport.desktop share/locale/ar/LC_MESSAGES/libmailtransport5.mo share/locale/be/LC_MESSAGES/libmailtransport5.mo share/locale/bg/LC_MESSAGES/libmailtransport5.mo share/locale/bs/LC_MESSAGES/libmailtransport5.mo share/locale/ca/LC_MESSAGES/libmailtransport5.mo share/locale/ca@valencia/LC_MESSAGES/libmailtransport5.mo share/locale/cs/LC_MESSAGES/libmailtransport5.mo share/locale/da/LC_MESSAGES/libmailtransport5.mo share/locale/de/LC_MESSAGES/libmailtransport5.mo share/locale/el/LC_MESSAGES/libmailtransport5.mo share/locale/en_GB/LC_MESSAGES/libmailtransport5.mo share/locale/eo/LC_MESSAGES/libmailtransport5.mo share/locale/es/LC_MESSAGES/libmailtransport5.mo share/locale/et/LC_MESSAGES/libmailtransport5.mo share/locale/eu/LC_MESSAGES/libmailtransport5.mo share/locale/fi/LC_MESSAGES/libmailtransport5.mo share/locale/fr/LC_MESSAGES/libmailtransport5.mo share/locale/ga/LC_MESSAGES/libmailtransport5.mo share/locale/gl/LC_MESSAGES/libmailtransport5.mo share/locale/hi/LC_MESSAGES/libmailtransport5.mo share/locale/hne/LC_MESSAGES/libmailtransport5.mo share/locale/hu/LC_MESSAGES/libmailtransport5.mo share/locale/ia/LC_MESSAGES/libmailtransport5.mo share/locale/it/LC_MESSAGES/libmailtransport5.mo share/locale/ja/LC_MESSAGES/libmailtransport5.mo share/locale/ka/LC_MESSAGES/libmailtransport5.mo share/locale/kk/LC_MESSAGES/libmailtransport5.mo share/locale/km/LC_MESSAGES/libmailtransport5.mo share/locale/ko/LC_MESSAGES/libmailtransport5.mo share/locale/lt/LC_MESSAGES/libmailtransport5.mo share/locale/lv/LC_MESSAGES/libmailtransport5.mo share/locale/mai/LC_MESSAGES/libmailtransport5.mo share/locale/mr/LC_MESSAGES/libmailtransport5.mo share/locale/nb/LC_MESSAGES/libmailtransport5.mo share/locale/nds/LC_MESSAGES/libmailtransport5.mo share/locale/nl/LC_MESSAGES/libmailtransport5.mo share/locale/nn/LC_MESSAGES/libmailtransport5.mo share/locale/pa/LC_MESSAGES/libmailtransport5.mo share/locale/pl/LC_MESSAGES/libmailtransport5.mo share/locale/pt/LC_MESSAGES/libmailtransport5.mo share/locale/pt_BR/LC_MESSAGES/libmailtransport5.mo share/locale/ro/LC_MESSAGES/libmailtransport5.mo share/locale/ru/LC_MESSAGES/libmailtransport5.mo share/locale/se/LC_MESSAGES/libmailtransport5.mo share/locale/sk/LC_MESSAGES/libmailtransport5.mo share/locale/sl/LC_MESSAGES/libmailtransport5.mo share/locale/sr/LC_MESSAGES/libmailtransport5.mo share/locale/sr@ijekavian/LC_MESSAGES/libmailtransport5.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/libmailtransport5.mo share/locale/sr@latin/LC_MESSAGES/libmailtransport5.mo share/locale/sv/LC_MESSAGES/libmailtransport5.mo share/locale/th/LC_MESSAGES/libmailtransport5.mo share/locale/tr/LC_MESSAGES/libmailtransport5.mo share/locale/ug/LC_MESSAGES/libmailtransport5.mo share/locale/uk/LC_MESSAGES/libmailtransport5.mo share/locale/zh_CN/LC_MESSAGES/libmailtransport5.mo share/locale/zh_TW/LC_MESSAGES/libmailtransport5.mo share/qlogging-categories5/kmailtransport.categories share/qlogging-categories5/kmailtransport.renamecategories diff --git a/net/kmbox/distinfo b/net/kmbox/distinfo index 84df8a6cb5cd..3996b0e5e917 100644 --- a/net/kmbox/distinfo +++ b/net/kmbox/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1677828408 -SHA256 (KDE/release-service/22.12.3/kmbox-22.12.3.tar.xz) = 2dbbb5b35ca902de992a2eaa1ad320fdceb640ef60886bac8c43267462b85073 -SIZE (KDE/release-service/22.12.3/kmbox-22.12.3.tar.xz) = 28856 +TIMESTAMP = 1681548238 +SHA256 (KDE/release-service/23.04.0/kmbox-23.04.0.tar.xz) = d587f87fb5358e8d7f0495c7e9e6dfea4a4de33671387a71fd4033145c26386b +SIZE (KDE/release-service/23.04.0/kmbox-23.04.0.tar.xz) = 29352 diff --git a/net/kmbox/pkg-plist b/net/kmbox/pkg-plist index 9c6185edbd76..9444fbb8a10e 100644 --- a/net/kmbox/pkg-plist +++ b/net/kmbox/pkg-plist @@ -1,16 +1,20 @@ -include/KF5/KMbox/KMbox/MBox -include/KF5/KMbox/KMbox/MBoxEntry -include/KF5/KMbox/kmbox/kmbox_export.h -include/KF5/KMbox/kmbox/mbox.h -include/KF5/KMbox/kmbox/mboxentry.h -include/KF5/KMbox/kmbox_version.h +include/KPim5/KMbox/KMbox/MBox +include/KPim5/KMbox/KMbox/MBoxEntry +include/KPim5/KMbox/kmbox/kmbox_export.h +include/KPim5/KMbox/kmbox/mbox.h +include/KPim5/KMbox/kmbox/mboxentry.h +include/KPim5/KMbox/kmbox_version.h lib/cmake/KF5Mbox/KF5MboxConfig.cmake lib/cmake/KF5Mbox/KF5MboxConfigVersion.cmake -lib/cmake/KF5Mbox/KF5MboxTargets-%%CMAKE_BUILD_TYPE%%.cmake -lib/cmake/KF5Mbox/KF5MboxTargets.cmake -lib/libKF5Mbox.so -lib/libKF5Mbox.so.5 -lib/libKF5Mbox.so.%%KDE_APPLICATIONS_SHLIB_VER%% +lib/cmake/KF5Mbox/KPim5MboxTargets-%%CMAKE_BUILD_TYPE%%.cmake +lib/cmake/KF5Mbox/KPim5MboxTargets.cmake +lib/cmake/KPim5Mbox/KPim5MboxConfig.cmake +lib/cmake/KPim5Mbox/KPim5MboxConfigVersion.cmake +lib/cmake/KPim5Mbox/KPim5MboxTargets-%%CMAKE_BUILD_TYPE%%.cmake +lib/cmake/KPim5Mbox/KPim5MboxTargets.cmake +lib/libKPim5Mbox.so +lib/libKPim5Mbox.so.5 +lib/libKPim5Mbox.so.%%KDE_APPLICATIONS_SHLIB_VER%% %%QT_MKSPECDIR%%/modules/qt_KMbox.pri share/qlogging-categories5/kmbox.categories share/qlogging-categories5/kmbox.renamecategories diff --git a/net/kmime/distinfo b/net/kmime/distinfo index 5be6d3d0b144..7db039c6085c 100644 --- a/net/kmime/distinfo +++ b/net/kmime/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1677828389 -SHA256 (KDE/release-service/22.12.3/kmime-22.12.3.tar.xz) = 9b3c1f1f664eae671244dd755db03129b0f16abbcd03245a07856a15db28c3d8 -SIZE (KDE/release-service/22.12.3/kmime-22.12.3.tar.xz) = 161804 +TIMESTAMP = 1681548226 +SHA256 (KDE/release-service/23.04.0/kmime-23.04.0.tar.xz) = a3cfb0ad644060a333a44a233f8f946f5f9c80ca55294843a91b1eb58091b24b +SIZE (KDE/release-service/23.04.0/kmime-23.04.0.tar.xz) = 162356 diff --git a/net/kmime/pkg-plist b/net/kmime/pkg-plist index 8fc0dfe13b22..683dcdb91b44 100644 --- a/net/kmime/pkg-plist +++ b/net/kmime/pkg-plist @@ -1,100 +1,104 @@ -include/KF5/KMime/KMime/Content -include/KF5/KMime/KMime/ContentIndex -include/KF5/KMime/KMime/DateFormatter -include/KF5/KMime/KMime/HeaderParsing -include/KF5/KMime/KMime/Headers -include/KF5/KMime/KMime/KMimeMessage -include/KF5/KMime/KMime/MDN -include/KF5/KMime/KMime/Message -include/KF5/KMime/KMime/NewsArticle -include/KF5/KMime/KMime/Types -include/KF5/KMime/KMime/Util -include/KF5/KMime/kmime/kmime_content.h -include/KF5/KMime/kmime/kmime_contentindex.h -include/KF5/KMime/kmime/kmime_dateformatter.h -include/KF5/KMime/kmime/kmime_export.h -include/KF5/KMime/kmime/kmime_header_parsing.h -include/KF5/KMime/kmime/kmime_headers.h -include/KF5/KMime/kmime/kmime_mdn.h -include/KF5/KMime/kmime/kmime_message.h -include/KF5/KMime/kmime/kmime_newsarticle.h -include/KF5/KMime/kmime/kmime_types.h -include/KF5/KMime/kmime/kmime_util.h -include/KF5/KMime/kmime_version.h +include/KPim5/KMime/KMime/Content +include/KPim5/KMime/KMime/ContentIndex +include/KPim5/KMime/KMime/DateFormatter +include/KPim5/KMime/KMime/HeaderParsing +include/KPim5/KMime/KMime/Headers +include/KPim5/KMime/KMime/KMimeMessage +include/KPim5/KMime/KMime/MDN +include/KPim5/KMime/KMime/Message +include/KPim5/KMime/KMime/NewsArticle +include/KPim5/KMime/KMime/Types +include/KPim5/KMime/KMime/Util +include/KPim5/KMime/kmime/kmime_content.h +include/KPim5/KMime/kmime/kmime_contentindex.h +include/KPim5/KMime/kmime/kmime_dateformatter.h +include/KPim5/KMime/kmime/kmime_export.h +include/KPim5/KMime/kmime/kmime_header_parsing.h +include/KPim5/KMime/kmime/kmime_headers.h +include/KPim5/KMime/kmime/kmime_mdn.h +include/KPim5/KMime/kmime/kmime_message.h +include/KPim5/KMime/kmime/kmime_newsarticle.h +include/KPim5/KMime/kmime/kmime_types.h +include/KPim5/KMime/kmime/kmime_util.h +include/KPim5/KMime/kmime_version.h lib/cmake/KF5Mime/KF5MimeConfig.cmake lib/cmake/KF5Mime/KF5MimeConfigVersion.cmake -lib/cmake/KF5Mime/KF5MimeTargets-%%CMAKE_BUILD_TYPE%%.cmake -lib/cmake/KF5Mime/KF5MimeTargets.cmake -lib/libKF5Mime.so -lib/libKF5Mime.so.5 -lib/libKF5Mime.so.%%KDE_APPLICATIONS_SHLIB_VER%% +lib/cmake/KF5Mime/KPim5MimeTargets-%%CMAKE_BUILD_TYPE%%.cmake +lib/cmake/KF5Mime/KPim5MimeTargets.cmake +lib/cmake/KPim5Mime/KPim5MimeConfig.cmake +lib/cmake/KPim5Mime/KPim5MimeConfigVersion.cmake +lib/cmake/KPim5Mime/KPim5MimeTargets-%%CMAKE_BUILD_TYPE%%.cmake +lib/cmake/KPim5Mime/KPim5MimeTargets.cmake +lib/libKPim5Mime.so +lib/libKPim5Mime.so.5 +lib/libKPim5Mime.so.%%KDE_APPLICATIONS_SHLIB_VER%% %%QT_MKSPECDIR%%/modules/qt_KMime.pri share/locale/ar/LC_MESSAGES/libkmime5.mo share/locale/be/LC_MESSAGES/libkmime5.mo share/locale/bg/LC_MESSAGES/libkmime5.mo share/locale/br/LC_MESSAGES/libkmime5.mo share/locale/bs/LC_MESSAGES/libkmime5.mo share/locale/ca/LC_MESSAGES/libkmime5.mo share/locale/ca@valencia/LC_MESSAGES/libkmime5.mo share/locale/cs/LC_MESSAGES/libkmime5.mo share/locale/cy/LC_MESSAGES/libkmime5.mo share/locale/da/LC_MESSAGES/libkmime5.mo share/locale/de/LC_MESSAGES/libkmime5.mo share/locale/el/LC_MESSAGES/libkmime5.mo share/locale/en_GB/LC_MESSAGES/libkmime5.mo share/locale/eo/LC_MESSAGES/libkmime5.mo share/locale/es/LC_MESSAGES/libkmime5.mo share/locale/et/LC_MESSAGES/libkmime5.mo share/locale/eu/LC_MESSAGES/libkmime5.mo share/locale/fa/LC_MESSAGES/libkmime5.mo share/locale/fi/LC_MESSAGES/libkmime5.mo share/locale/fr/LC_MESSAGES/libkmime5.mo share/locale/fy/LC_MESSAGES/libkmime5.mo share/locale/ga/LC_MESSAGES/libkmime5.mo share/locale/gl/LC_MESSAGES/libkmime5.mo share/locale/hi/LC_MESSAGES/libkmime5.mo share/locale/hne/LC_MESSAGES/libkmime5.mo share/locale/hu/LC_MESSAGES/libkmime5.mo share/locale/ia/LC_MESSAGES/libkmime5.mo share/locale/it/LC_MESSAGES/libkmime5.mo share/locale/ja/LC_MESSAGES/libkmime5.mo share/locale/ka/LC_MESSAGES/libkmime5.mo share/locale/kk/LC_MESSAGES/libkmime5.mo share/locale/km/LC_MESSAGES/libkmime5.mo share/locale/ko/LC_MESSAGES/libkmime5.mo share/locale/lt/LC_MESSAGES/libkmime5.mo share/locale/lv/LC_MESSAGES/libkmime5.mo share/locale/mk/LC_MESSAGES/libkmime5.mo share/locale/mr/LC_MESSAGES/libkmime5.mo share/locale/ms/LC_MESSAGES/libkmime5.mo share/locale/nb/LC_MESSAGES/libkmime5.mo share/locale/nds/LC_MESSAGES/libkmime5.mo share/locale/ne/LC_MESSAGES/libkmime5.mo share/locale/nl/LC_MESSAGES/libkmime5.mo share/locale/nn/LC_MESSAGES/libkmime5.mo share/locale/pa/LC_MESSAGES/libkmime5.mo share/locale/pl/LC_MESSAGES/libkmime5.mo share/locale/pt/LC_MESSAGES/libkmime5.mo share/locale/pt_BR/LC_MESSAGES/libkmime5.mo share/locale/ro/LC_MESSAGES/libkmime5.mo share/locale/ru/LC_MESSAGES/libkmime5.mo share/locale/se/LC_MESSAGES/libkmime5.mo share/locale/sk/LC_MESSAGES/libkmime5.mo share/locale/sl/LC_MESSAGES/libkmime5.mo share/locale/sq/LC_MESSAGES/libkmime5.mo share/locale/sr/LC_MESSAGES/libkmime5.mo share/locale/sr@ijekavian/LC_MESSAGES/libkmime5.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/libkmime5.mo share/locale/sr@latin/LC_MESSAGES/libkmime5.mo share/locale/sv/LC_MESSAGES/libkmime5.mo share/locale/ta/LC_MESSAGES/libkmime5.mo share/locale/th/LC_MESSAGES/libkmime5.mo share/locale/tr/LC_MESSAGES/libkmime5.mo share/locale/ug/LC_MESSAGES/libkmime5.mo share/locale/uk/LC_MESSAGES/libkmime5.mo share/locale/uz/LC_MESSAGES/libkmime5.mo share/locale/uz@cyrillic/LC_MESSAGES/libkmime5.mo share/locale/wa/LC_MESSAGES/libkmime5.mo share/locale/zh_CN/LC_MESSAGES/libkmime5.mo share/locale/zh_TW/LC_MESSAGES/libkmime5.mo share/qlogging-categories5/kmime.categories diff --git a/net/kontactinterface/distinfo b/net/kontactinterface/distinfo index a43ab35c59a6..cac321325834 100644 --- a/net/kontactinterface/distinfo +++ b/net/kontactinterface/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1677828391 -SHA256 (KDE/release-service/22.12.3/kontactinterface-22.12.3.tar.xz) = caf7a9111391270a67186feab6814355b432d85ccd255d27d26ac48e0033a0db -SIZE (KDE/release-service/22.12.3/kontactinterface-22.12.3.tar.xz) = 39784 +TIMESTAMP = 1681548214 +SHA256 (KDE/release-service/23.04.0/kontactinterface-23.04.0.tar.xz) = d7475f9abdb4809eaaf5aa78c4ac96f5118d84ceaa0015f70d3ed73f6c029cbb +SIZE (KDE/release-service/23.04.0/kontactinterface-23.04.0.tar.xz) = 40476 diff --git a/net/kontactinterface/pkg-plist b/net/kontactinterface/pkg-plist index eca229308a3b..3dd05077607e 100644 --- a/net/kontactinterface/pkg-plist +++ b/net/kontactinterface/pkg-plist @@ -1,81 +1,86 @@ -include/KF5/KontactInterface/KontactInterface/Core -include/KF5/KontactInterface/KontactInterface/PimUniqueApplication -include/KF5/KontactInterface/KontactInterface/Plugin -include/KF5/KontactInterface/KontactInterface/Processes -include/KF5/KontactInterface/KontactInterface/Summary -include/KF5/KontactInterface/KontactInterface/UniqueAppHandler -include/KF5/KontactInterface/kontactinterface/core.h -include/KF5/KontactInterface/kontactinterface/kontactinterface_export.h -include/KF5/KontactInterface/kontactinterface/pimuniqueapplication.h -include/KF5/KontactInterface/kontactinterface/plugin.h -include/KF5/KontactInterface/kontactinterface/processes.h -include/KF5/KontactInterface/kontactinterface/summary.h -include/KF5/KontactInterface/kontactinterface/uniqueapphandler.h -include/KF5/KontactInterface/kontactinterface_version.h +include/KPim5/KontactInterface/KontactInterface/Core +include/KPim5/KontactInterface/KontactInterface/PimUniqueApplication +include/KPim5/KontactInterface/KontactInterface/Plugin +include/KPim5/KontactInterface/KontactInterface/Processes +include/KPim5/KontactInterface/KontactInterface/Summary +include/KPim5/KontactInterface/KontactInterface/UniqueAppHandler +include/KPim5/KontactInterface/kontactinterface/core.h +include/KPim5/KontactInterface/kontactinterface/kontactinterface_export.h +include/KPim5/KontactInterface/kontactinterface/pimuniqueapplication.h +include/KPim5/KontactInterface/kontactinterface/plugin.h +include/KPim5/KontactInterface/kontactinterface/processes.h +include/KPim5/KontactInterface/kontactinterface/summary.h +include/KPim5/KontactInterface/kontactinterface/uniqueapphandler.h +include/KPim5/KontactInterface/kontactinterface_version.h lib/cmake/KF5KontactInterface/KF5KontactInterfaceConfig.cmake lib/cmake/KF5KontactInterface/KF5KontactInterfaceConfigVersion.cmake -lib/cmake/KF5KontactInterface/KF5KontactInterfaceTargets-%%CMAKE_BUILD_TYPE%%.cmake -lib/cmake/KF5KontactInterface/KF5KontactInterfaceTargets.cmake -lib/libKF5KontactInterface.so -lib/libKF5KontactInterface.so.5 -lib/libKF5KontactInterface.so.%%KDE_APPLICATIONS_SHLIB_VER%% +lib/cmake/KF5KontactInterface/KPim5KontactInterfaceTargets-%%CMAKE_BUILD_TYPE%%.cmake +lib/cmake/KF5KontactInterface/KPim5KontactInterfaceTargets.cmake +lib/cmake/KPim5KontactInterface/KPim5KontactInterfaceConfig.cmake +lib/cmake/KPim5KontactInterface/KPim5KontactInterfaceConfigVersion.cmake +lib/cmake/KPim5KontactInterface/KPim5KontactInterfaceTargets-%%CMAKE_BUILD_TYPE%%.cmake +lib/cmake/KPim5KontactInterface/KPim5KontactInterfaceTargets.cmake +lib/libKPim5KontactInterface.so +lib/libKPim5KontactInterface.so.5 +lib/libKPim5KontactInterface.so.%%KDE_APPLICATIONS_SHLIB_VER%% %%QT_MKSPECDIR%%/modules/qt_KontactInterface.pri share/locale/ar/LC_MESSAGES/kontactinterfaces5.mo share/locale/az/LC_MESSAGES/kontactinterfaces5.mo share/locale/bg/LC_MESSAGES/kontactinterfaces5.mo share/locale/bs/LC_MESSAGES/kontactinterfaces5.mo share/locale/ca/LC_MESSAGES/kontactinterfaces5.mo share/locale/ca@valencia/LC_MESSAGES/kontactinterfaces5.mo share/locale/cs/LC_MESSAGES/kontactinterfaces5.mo share/locale/da/LC_MESSAGES/kontactinterfaces5.mo share/locale/de/LC_MESSAGES/kontactinterfaces5.mo share/locale/el/LC_MESSAGES/kontactinterfaces5.mo share/locale/en_GB/LC_MESSAGES/kontactinterfaces5.mo share/locale/eo/LC_MESSAGES/kontactinterfaces5.mo share/locale/es/LC_MESSAGES/kontactinterfaces5.mo share/locale/et/LC_MESSAGES/kontactinterfaces5.mo share/locale/eu/LC_MESSAGES/kontactinterfaces5.mo share/locale/fi/LC_MESSAGES/kontactinterfaces5.mo share/locale/fr/LC_MESSAGES/kontactinterfaces5.mo share/locale/ga/LC_MESSAGES/kontactinterfaces5.mo share/locale/gl/LC_MESSAGES/kontactinterfaces5.mo share/locale/he/LC_MESSAGES/kontactinterfaces5.mo share/locale/hi/LC_MESSAGES/kontactinterfaces5.mo share/locale/hu/LC_MESSAGES/kontactinterfaces5.mo share/locale/ia/LC_MESSAGES/kontactinterfaces5.mo +share/locale/is/LC_MESSAGES/kontactinterfaces5.mo share/locale/it/LC_MESSAGES/kontactinterfaces5.mo share/locale/ja/LC_MESSAGES/kontactinterfaces5.mo share/locale/ka/LC_MESSAGES/kontactinterfaces5.mo share/locale/kk/LC_MESSAGES/kontactinterfaces5.mo share/locale/km/LC_MESSAGES/kontactinterfaces5.mo share/locale/ko/LC_MESSAGES/kontactinterfaces5.mo share/locale/lt/LC_MESSAGES/kontactinterfaces5.mo share/locale/lv/LC_MESSAGES/kontactinterfaces5.mo share/locale/mr/LC_MESSAGES/kontactinterfaces5.mo share/locale/nb/LC_MESSAGES/kontactinterfaces5.mo share/locale/nds/LC_MESSAGES/kontactinterfaces5.mo share/locale/nl/LC_MESSAGES/kontactinterfaces5.mo share/locale/nn/LC_MESSAGES/kontactinterfaces5.mo share/locale/pa/LC_MESSAGES/kontactinterfaces5.mo share/locale/pl/LC_MESSAGES/kontactinterfaces5.mo share/locale/pt/LC_MESSAGES/kontactinterfaces5.mo share/locale/pt_BR/LC_MESSAGES/kontactinterfaces5.mo share/locale/ro/LC_MESSAGES/kontactinterfaces5.mo share/locale/ru/LC_MESSAGES/kontactinterfaces5.mo share/locale/sk/LC_MESSAGES/kontactinterfaces5.mo share/locale/sl/LC_MESSAGES/kontactinterfaces5.mo share/locale/sq/LC_MESSAGES/kontactinterfaces5.mo share/locale/sr/LC_MESSAGES/kontactinterfaces5.mo share/locale/sr@ijekavian/LC_MESSAGES/kontactinterfaces5.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kontactinterfaces5.mo share/locale/sr@latin/LC_MESSAGES/kontactinterfaces5.mo share/locale/sv/LC_MESSAGES/kontactinterfaces5.mo share/locale/tr/LC_MESSAGES/kontactinterfaces5.mo share/locale/ug/LC_MESSAGES/kontactinterfaces5.mo share/locale/uk/LC_MESSAGES/kontactinterfaces5.mo share/locale/vi/LC_MESSAGES/kontactinterfaces5.mo share/locale/wa/LC_MESSAGES/kontactinterfaces5.mo share/locale/zh_CN/LC_MESSAGES/kontactinterfaces5.mo share/locale/zh_TW/LC_MESSAGES/kontactinterfaces5.mo share/qlogging-categories5/kontactinterface.categories share/qlogging-categories5/kontactinterface.renamecategories diff --git a/net/kpimtextedit/distinfo b/net/kpimtextedit/distinfo index caf26b69f9d1..b8c50d1b6c55 100644 --- a/net/kpimtextedit/distinfo +++ b/net/kpimtextedit/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1677828421 -SHA256 (KDE/release-service/22.12.3/kpimtextedit-22.12.3.tar.xz) = c743f6d9d4a174e43ceb1671a7b99b585bb395973bace132422cd3719e00927c -SIZE (KDE/release-service/22.12.3/kpimtextedit-22.12.3.tar.xz) = 224156 +TIMESTAMP = 1681548230 +SHA256 (KDE/release-service/23.04.0/kpimtextedit-23.04.0.tar.xz) = cc6819004d5e73aae9b3b8f0679b79cf49f1d3b9c9f0451e78bd1ef809319cf1 +SIZE (KDE/release-service/23.04.0/kpimtextedit-23.04.0.tar.xz) = 218856 diff --git a/net/kpimtextedit/pkg-plist b/net/kpimtextedit/pkg-plist index d6fa93e0233c..d992718abb8f 100644 --- a/net/kpimtextedit/pkg-plist +++ b/net/kpimtextedit/pkg-plist @@ -1,127 +1,120 @@ -include/KF5/KPIMTextEdit/KPIMTextEdit/AbstractMarkupBuilder -include/KF5/KPIMTextEdit/KPIMTextEdit/AbstractTextToSpeechInterface -include/KF5/KPIMTextEdit/KPIMTextEdit/EditorUtil -include/KF5/KPIMTextEdit/KPIMTextEdit/EmoticonUnicodeTab -include/KF5/KPIMTextEdit/KPIMTextEdit/MarkupDirector -include/KF5/KPIMTextEdit/KPIMTextEdit/PlainTextEditFindBar -include/KF5/KPIMTextEdit/KPIMTextEdit/PlainTextEditor -include/KF5/KPIMTextEdit/KPIMTextEdit/PlainTextEditorWidget -include/KF5/KPIMTextEdit/KPIMTextEdit/PlainTextMarkupBuilder -include/KF5/KPIMTextEdit/KPIMTextEdit/PlainTextSyntaxSpellCheckingHighlighter -include/KF5/KPIMTextEdit/KPIMTextEdit/RichTextComposer -include/KF5/KPIMTextEdit/KPIMTextEdit/RichTextComposerActions -include/KF5/KPIMTextEdit/KPIMTextEdit/RichTextComposerControler -include/KF5/KPIMTextEdit/KPIMTextEdit/RichTextComposerEmailQuoteHighlighter -include/KF5/KPIMTextEdit/KPIMTextEdit/RichTextComposerImages -include/KF5/KPIMTextEdit/KPIMTextEdit/RichTextComposerWidget -include/KF5/KPIMTextEdit/KPIMTextEdit/RichTextEditFindBar -include/KF5/KPIMTextEdit/KPIMTextEdit/RichTextEditor -include/KF5/KPIMTextEdit/KPIMTextEdit/RichTextEditorWidget -include/KF5/KPIMTextEdit/KPIMTextEdit/RichTextExternalComposer -include/KF5/KPIMTextEdit/KPIMTextEdit/SelectSpecialCharDialog -include/KF5/KPIMTextEdit/KPIMTextEdit/SlideContainer -include/KF5/KPIMTextEdit/KPIMTextEdit/TextEditFindBarBase -include/KF5/KPIMTextEdit/KPIMTextEdit/TextEditorCompleter -include/KF5/KPIMTextEdit/KPIMTextEdit/TextGotoLineWidget -include/KF5/KPIMTextEdit/KPIMTextEdit/TextHTMLBuilder -include/KF5/KPIMTextEdit/KPIMTextEdit/TextToSpeech -include/KF5/KPIMTextEdit/KPIMTextEdit/TextToSpeechActions -include/KF5/KPIMTextEdit/KPIMTextEdit/TextToSpeechInterface -include/KF5/KPIMTextEdit/KPIMTextEdit/TextToSpeechWidget -include/KF5/KPIMTextEdit/KPIMTextEdit/TextUtils -include/KF5/KPIMTextEdit/kpimtextedit/abstractmarkupbuilder.h -include/KF5/KPIMTextEdit/kpimtextedit/abstracttexttospeechinterface.h -include/KF5/KPIMTextEdit/kpimtextedit/editorutil.h -include/KF5/KPIMTextEdit/kpimtextedit/emoticonunicodetab.h -include/KF5/KPIMTextEdit/kpimtextedit/kpimtextedit-texttospeech.h -include/KF5/KPIMTextEdit/kpimtextedit/kpimtextedit_export.h -include/KF5/KPIMTextEdit/kpimtextedit/markupdirector.h -include/KF5/KPIMTextEdit/kpimtextedit/plaintexteditfindbar.h -include/KF5/KPIMTextEdit/kpimtextedit/plaintexteditor.h -include/KF5/KPIMTextEdit/kpimtextedit/plaintexteditorwidget.h -include/KF5/KPIMTextEdit/kpimtextedit/plaintextmarkupbuilder.h -include/KF5/KPIMTextEdit/kpimtextedit/plaintextsyntaxspellcheckinghighlighter.h -include/KF5/KPIMTextEdit/kpimtextedit/richtextcomposer.h -include/KF5/KPIMTextEdit/kpimtextedit/richtextcomposeractions.h -include/KF5/KPIMTextEdit/kpimtextedit/richtextcomposercontroler.h -include/KF5/KPIMTextEdit/kpimtextedit/richtextcomposeremailquotehighlighter.h -include/KF5/KPIMTextEdit/kpimtextedit/richtextcomposerimages.h -include/KF5/KPIMTextEdit/kpimtextedit/richtextcomposerwidget.h -include/KF5/KPIMTextEdit/kpimtextedit/richtexteditfindbar.h -include/KF5/KPIMTextEdit/kpimtextedit/richtexteditor.h -include/KF5/KPIMTextEdit/kpimtextedit/richtexteditorwidget.h -include/KF5/KPIMTextEdit/kpimtextedit/richtextexternalcomposer.h -include/KF5/KPIMTextEdit/kpimtextedit/selectspecialchardialog.h -include/KF5/KPIMTextEdit/kpimtextedit/slidecontainer.h -include/KF5/KPIMTextEdit/kpimtextedit/texteditfindbarbase.h -include/KF5/KPIMTextEdit/kpimtextedit/texteditorcompleter.h -include/KF5/KPIMTextEdit/kpimtextedit/textgotolinewidget.h -include/KF5/KPIMTextEdit/kpimtextedit/texthtmlbuilder.h -include/KF5/KPIMTextEdit/kpimtextedit/texttospeech.h -include/KF5/KPIMTextEdit/kpimtextedit/texttospeechactions.h -include/KF5/KPIMTextEdit/kpimtextedit/texttospeechinterface.h -include/KF5/KPIMTextEdit/kpimtextedit/texttospeechwidget.h -include/KF5/KPIMTextEdit/kpimtextedit/textutils.h -include/KF5/KPIMTextEdit/kpimtextedit_version.h +include/KPim5/KPIMTextEdit/KPIMTextEdit/AbstractMarkupBuilder +include/KPim5/KPIMTextEdit/KPIMTextEdit/EditorUtil +include/KPim5/KPIMTextEdit/KPIMTextEdit/EmoticonUnicodeTab +include/KPim5/KPIMTextEdit/KPIMTextEdit/MarkupDirector +include/KPim5/KPIMTextEdit/KPIMTextEdit/PlainTextEditFindBar +include/KPim5/KPIMTextEdit/KPIMTextEdit/PlainTextEditor +include/KPim5/KPIMTextEdit/KPIMTextEdit/PlainTextEditorWidget +include/KPim5/KPIMTextEdit/KPIMTextEdit/PlainTextMarkupBuilder +include/KPim5/KPIMTextEdit/KPIMTextEdit/PlainTextSyntaxSpellCheckingHighlighter +include/KPim5/KPIMTextEdit/KPIMTextEdit/RichTextComposer +include/KPim5/KPIMTextEdit/KPIMTextEdit/RichTextComposerActions +include/KPim5/KPIMTextEdit/KPIMTextEdit/RichTextComposerControler +include/KPim5/KPIMTextEdit/KPIMTextEdit/RichTextComposerEmailQuoteHighlighter +include/KPim5/KPIMTextEdit/KPIMTextEdit/RichTextComposerImages +include/KPim5/KPIMTextEdit/KPIMTextEdit/RichTextComposerWidget +include/KPim5/KPIMTextEdit/KPIMTextEdit/RichTextEditFindBar +include/KPim5/KPIMTextEdit/KPIMTextEdit/RichTextEditor +include/KPim5/KPIMTextEdit/KPIMTextEdit/RichTextEditorWidget +include/KPim5/KPIMTextEdit/KPIMTextEdit/RichTextExternalComposer +include/KPim5/KPIMTextEdit/KPIMTextEdit/SelectSpecialCharDialog +include/KPim5/KPIMTextEdit/KPIMTextEdit/SlideContainer +include/KPim5/KPIMTextEdit/KPIMTextEdit/TextEditFindBarBase +include/KPim5/KPIMTextEdit/KPIMTextEdit/TextEditorCompleter +include/KPim5/KPIMTextEdit/KPIMTextEdit/TextGotoLineWidget +include/KPim5/KPIMTextEdit/KPIMTextEdit/TextHTMLBuilder +include/KPim5/KPIMTextEdit/KPIMTextEdit/TextUtils +include/KPim5/KPIMTextEdit/kpimtextedit/abstractmarkupbuilder.h +include/KPim5/KPIMTextEdit/kpimtextedit/editorutil.h +include/KPim5/KPIMTextEdit/kpimtextedit/emoticonunicodetab.h +include/KPim5/KPIMTextEdit/kpimtextedit/kpimtextedit_export.h +include/KPim5/KPIMTextEdit/kpimtextedit/markupdirector.h +include/KPim5/KPIMTextEdit/kpimtextedit/plaintexteditfindbar.h +include/KPim5/KPIMTextEdit/kpimtextedit/plaintexteditor.h +include/KPim5/KPIMTextEdit/kpimtextedit/plaintexteditorwidget.h +include/KPim5/KPIMTextEdit/kpimtextedit/plaintextmarkupbuilder.h +include/KPim5/KPIMTextEdit/kpimtextedit/plaintextsyntaxspellcheckinghighlighter.h +include/KPim5/KPIMTextEdit/kpimtextedit/richtextcomposer.h +include/KPim5/KPIMTextEdit/kpimtextedit/richtextcomposeractions.h +include/KPim5/KPIMTextEdit/kpimtextedit/richtextcomposercontroler.h +include/KPim5/KPIMTextEdit/kpimtextedit/richtextcomposeremailquotehighlighter.h +include/KPim5/KPIMTextEdit/kpimtextedit/richtextcomposerimages.h +include/KPim5/KPIMTextEdit/kpimtextedit/richtextcomposerwidget.h +include/KPim5/KPIMTextEdit/kpimtextedit/richtexteditfindbar.h +include/KPim5/KPIMTextEdit/kpimtextedit/richtexteditor.h +include/KPim5/KPIMTextEdit/kpimtextedit/richtexteditorwidget.h +include/KPim5/KPIMTextEdit/kpimtextedit/richtextexternalcomposer.h +include/KPim5/KPIMTextEdit/kpimtextedit/selectspecialchardialog.h +include/KPim5/KPIMTextEdit/kpimtextedit/slidecontainer.h +include/KPim5/KPIMTextEdit/kpimtextedit/texteditfindbarbase.h +include/KPim5/KPIMTextEdit/kpimtextedit/texteditorcompleter.h +include/KPim5/KPIMTextEdit/kpimtextedit/textgotolinewidget.h +include/KPim5/KPIMTextEdit/kpimtextedit/texthtmlbuilder.h +include/KPim5/KPIMTextEdit/kpimtextedit/textutils.h +include/KPim5/KPIMTextEdit/kpimtextedit_version.h lib/cmake/KF5PimTextEdit/KF5PimTextEditConfig.cmake lib/cmake/KF5PimTextEdit/KF5PimTextEditConfigVersion.cmake -lib/cmake/KF5PimTextEdit/KF5PimTextEditTargets-%%CMAKE_BUILD_TYPE%%.cmake -lib/cmake/KF5PimTextEdit/KF5PimTextEditTargets.cmake -lib/libKF5PimTextEdit.so -lib/libKF5PimTextEdit.so.5 -lib/libKF5PimTextEdit.so.%%KDE_APPLICATIONS_SHLIB_VER%% +lib/cmake/KF5PimTextEdit/KPim5TextEditTargets-%%CMAKE_BUILD_TYPE%%.cmake +lib/cmake/KF5PimTextEdit/KPim5TextEditTargets.cmake +lib/cmake/KPim5TextEdit/KPim5TextEditConfig.cmake +lib/cmake/KPim5TextEdit/KPim5TextEditConfigVersion.cmake +lib/cmake/KPim5TextEdit/KPim5TextEditTargets-%%CMAKE_BUILD_TYPE%%.cmake +lib/cmake/KPim5TextEdit/KPim5TextEditTargets.cmake +lib/libKPim5TextEdit.so +lib/libKPim5TextEdit.so.5 +lib/libKPim5TextEdit.so.%%KDE_APPLICATIONS_SHLIB_VER%% %%QT_MKSPECDIR%%/modules/qt_KPIMTextEdit.pri -%%QT_PLUGINDIR%%/designer/kpimtexteditwidgets.so +%%QT_PLUGINDIR%%/designer/kpimtextedit5widgets.so share/locale/ar/LC_MESSAGES/libkpimtextedit.mo share/locale/az/LC_MESSAGES/libkpimtextedit.mo share/locale/bs/LC_MESSAGES/libkpimtextedit.mo share/locale/ca/LC_MESSAGES/libkpimtextedit.mo share/locale/ca@valencia/LC_MESSAGES/libkpimtextedit.mo share/locale/cs/LC_MESSAGES/libkpimtextedit.mo share/locale/da/LC_MESSAGES/libkpimtextedit.mo share/locale/de/LC_MESSAGES/libkpimtextedit.mo share/locale/el/LC_MESSAGES/libkpimtextedit.mo share/locale/en_GB/LC_MESSAGES/libkpimtextedit.mo share/locale/eo/LC_MESSAGES/libkpimtextedit.mo share/locale/es/LC_MESSAGES/libkpimtextedit.mo share/locale/et/LC_MESSAGES/libkpimtextedit.mo share/locale/eu/LC_MESSAGES/libkpimtextedit.mo share/locale/fi/LC_MESSAGES/libkpimtextedit.mo share/locale/fr/LC_MESSAGES/libkpimtextedit.mo share/locale/ga/LC_MESSAGES/libkpimtextedit.mo share/locale/gl/LC_MESSAGES/libkpimtextedit.mo share/locale/hu/LC_MESSAGES/libkpimtextedit.mo share/locale/ia/LC_MESSAGES/libkpimtextedit.mo share/locale/it/LC_MESSAGES/libkpimtextedit.mo share/locale/ja/LC_MESSAGES/libkpimtextedit.mo share/locale/ka/LC_MESSAGES/libkpimtextedit.mo share/locale/kk/LC_MESSAGES/libkpimtextedit.mo share/locale/km/LC_MESSAGES/libkpimtextedit.mo share/locale/ko/LC_MESSAGES/libkpimtextedit.mo share/locale/lt/LC_MESSAGES/libkpimtextedit.mo share/locale/lv/LC_MESSAGES/libkpimtextedit.mo share/locale/mr/LC_MESSAGES/libkpimtextedit.mo share/locale/nb/LC_MESSAGES/libkpimtextedit.mo share/locale/nds/LC_MESSAGES/libkpimtextedit.mo share/locale/nl/LC_MESSAGES/libkpimtextedit.mo share/locale/nn/LC_MESSAGES/libkpimtextedit.mo share/locale/pa/LC_MESSAGES/libkpimtextedit.mo share/locale/pl/LC_MESSAGES/libkpimtextedit.mo share/locale/pt/LC_MESSAGES/libkpimtextedit.mo share/locale/pt_BR/LC_MESSAGES/libkpimtextedit.mo share/locale/ro/LC_MESSAGES/libkpimtextedit.mo share/locale/ru/LC_MESSAGES/libkpimtextedit.mo share/locale/sk/LC_MESSAGES/libkpimtextedit.mo share/locale/sl/LC_MESSAGES/libkpimtextedit.mo share/locale/sq/LC_MESSAGES/libkpimtextedit.mo share/locale/sr/LC_MESSAGES/libkpimtextedit.mo share/locale/sr@ijekavian/LC_MESSAGES/libkpimtextedit.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/libkpimtextedit.mo share/locale/sr@latin/LC_MESSAGES/libkpimtextedit.mo share/locale/sv/LC_MESSAGES/libkpimtextedit.mo share/locale/tr/LC_MESSAGES/libkpimtextedit.mo share/locale/ug/LC_MESSAGES/libkpimtextedit.mo share/locale/uk/LC_MESSAGES/libkpimtextedit.mo share/locale/zh_CN/LC_MESSAGES/libkpimtextedit.mo share/locale/zh_TW/LC_MESSAGES/libkpimtextedit.mo share/qlogging-categories5/kpimtextedit.categories diff --git a/net/krdc/distinfo b/net/krdc/distinfo index cc61a56f2532..3b55a3e43be7 100644 --- a/net/krdc/distinfo +++ b/net/krdc/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1677828400 -SHA256 (KDE/release-service/22.12.3/krdc-22.12.3.tar.xz) = 42e70109dfe0ac6175f86e5ed4da8d6baca07d29ff32b663fe2dcab911e9dddf -SIZE (KDE/release-service/22.12.3/krdc-22.12.3.tar.xz) = 1633132 +TIMESTAMP = 1681548223 +SHA256 (KDE/release-service/23.04.0/krdc-23.04.0.tar.xz) = 7139722f1bc6b56140e0e933148a1a2ab1b3e52550a34ab49363b7afe9a85fda +SIZE (KDE/release-service/23.04.0/krdc-23.04.0.tar.xz) = 1633360 diff --git a/net/krfb/Makefile b/net/krfb/Makefile index 1cce8d9618a2..aa8c8e798771 100644 --- a/net/krfb/Makefile +++ b/net/krfb/Makefile @@ -1,27 +1,29 @@ PORTNAME= krfb DISTVERSION= ${KDE_APPLICATIONS_VERSION} CATEGORIES= net kde kde-applications MAINTAINER= kde@FreeBSD.org COMMENT= VNC server for KDE WWW= https://www.kde.org +BUILD_DEPENDS= ${LOCALBASE}/include/linux/input.h:devel/evdev-proto LIB_DEPENDS= libvncserver.so:net/libvncserver \ - libxcb-image.so:x11/xcb-util-image + libxcb-image.so:x11/xcb-util-image \ + libpipewire-0.3.so:multimedia/pipewire -USES= alias cmake compiler:c++11-lib gettext jpeg \ - kde:5 pkgconfig qt:5 tar:xz xorg -USE_KDE= auth codecs completion config configwidgets coreaddons \ - crash dbusaddons dnssd doctools i18n notifications \ - wallet wayland widgetsaddons windowsystem xmlgui \ +USES= alias cmake compiler:c++11-lib gettext jpeg kde:5 pkgconfig \ + qt:5 tar:xz xorg +USE_KDE= auth codecs completion config configwidgets coreaddons crash \ + dbusaddons dnssd doctools i18n kpipewire notifications wallet \ + wayland widgetsaddons windowsystem xmlgui \ ecm:build USE_QT= core dbus gui network widgets x11extras xml \ buildtools:build qmake:build USE_XORG= x11 xcb xdamage xext xtst OPTIONS_DEFINE= TELEPATHY DOCS OPTIONS_SUB= yes TELEPATHY_DESC= Support for Telepathy Tubes TELEPATHY_LIB_DEPENDS= libtelepathy-qt5.so:net-im/telepathy-qt .include diff --git a/net/krfb/distinfo b/net/krfb/distinfo index ee65d64e4154..a06216f7f90d 100644 --- a/net/krfb/distinfo +++ b/net/krfb/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1677828403 -SHA256 (KDE/release-service/22.12.3/krfb-22.12.3.tar.xz) = dc8d26b9109f360d219c5722fcd53009f697891b89dfdfe72e3680ba943196e4 -SIZE (KDE/release-service/22.12.3/krfb-22.12.3.tar.xz) = 1324320 +TIMESTAMP = 1681548229 +SHA256 (KDE/release-service/23.04.0/krfb-23.04.0.tar.xz) = 321fa19779f4bc0ec6b3c2c79c9118cdaaa1376ba56d93cde4a5ef4aae27b0b6 +SIZE (KDE/release-service/23.04.0/krfb-23.04.0.tar.xz) = 1319740 diff --git a/net/krfb/pkg-plist b/net/krfb/pkg-plist index d08fb2ec10cb..3721f454c9a8 100644 --- a/net/krfb/pkg-plist +++ b/net/krfb/pkg-plist @@ -1,90 +1,92 @@ bin/krfb bin/krfb-virtualmonitor lib/libkrfbprivate.so.5 lib/libkrfbprivate.so.5.0 %%QT_PLUGINDIR%%/krfb/events/x11.so +%%QT_PLUGINDIR%%/krfb/events/xdp.so +%%QT_PLUGINDIR%%/krfb/framebuffer/pw.so %%QT_PLUGINDIR%%/krfb/framebuffer/qt.so %%QT_PLUGINDIR%%/krfb/framebuffer/xcb.so share/applications/org.kde.krfb.desktop share/applications/org.kde.krfb.virtualmonitor.desktop share/icons/hicolor/48x48/apps/krfb.png share/icons/hicolor/scalable/apps/krfb.svgz %%DATADIR%%/krfb.notifyrc share/locale/af/LC_MESSAGES/krfb.mo share/locale/ar/LC_MESSAGES/krfb.mo share/locale/be/LC_MESSAGES/krfb.mo share/locale/bg/LC_MESSAGES/krfb.mo share/locale/br/LC_MESSAGES/krfb.mo share/locale/bs/LC_MESSAGES/krfb.mo share/locale/ca/LC_MESSAGES/krfb.mo share/locale/ca@valencia/LC_MESSAGES/krfb.mo share/locale/cs/LC_MESSAGES/krfb.mo share/locale/cy/LC_MESSAGES/krfb.mo share/locale/da/LC_MESSAGES/krfb.mo share/locale/de/LC_MESSAGES/krfb.mo share/locale/el/LC_MESSAGES/krfb.mo share/locale/en_GB/LC_MESSAGES/krfb.mo share/locale/eo/LC_MESSAGES/krfb.mo share/locale/es/LC_MESSAGES/krfb.mo share/locale/et/LC_MESSAGES/krfb.mo share/locale/eu/LC_MESSAGES/krfb.mo share/locale/fa/LC_MESSAGES/krfb.mo share/locale/fi/LC_MESSAGES/krfb.mo share/locale/fr/LC_MESSAGES/krfb.mo share/locale/ga/LC_MESSAGES/krfb.mo share/locale/gl/LC_MESSAGES/krfb.mo share/locale/he/LC_MESSAGES/krfb.mo share/locale/hi/LC_MESSAGES/krfb.mo share/locale/hne/LC_MESSAGES/krfb.mo share/locale/hr/LC_MESSAGES/krfb.mo share/locale/hsb/LC_MESSAGES/krfb.mo share/locale/hu/LC_MESSAGES/krfb.mo share/locale/ia/LC_MESSAGES/krfb.mo share/locale/id/LC_MESSAGES/krfb.mo share/locale/is/LC_MESSAGES/krfb.mo share/locale/it/LC_MESSAGES/krfb.mo share/locale/ja/LC_MESSAGES/krfb.mo share/locale/ka/LC_MESSAGES/krfb.mo share/locale/kk/LC_MESSAGES/krfb.mo share/locale/km/LC_MESSAGES/krfb.mo share/locale/ko/LC_MESSAGES/krfb.mo share/locale/lt/LC_MESSAGES/krfb.mo share/locale/lv/LC_MESSAGES/krfb.mo share/locale/mai/LC_MESSAGES/krfb.mo share/locale/mk/LC_MESSAGES/krfb.mo share/locale/ml/LC_MESSAGES/krfb.mo share/locale/mr/LC_MESSAGES/krfb.mo share/locale/ms/LC_MESSAGES/krfb.mo share/locale/nb/LC_MESSAGES/krfb.mo share/locale/nds/LC_MESSAGES/krfb.mo share/locale/ne/LC_MESSAGES/krfb.mo share/locale/nl/LC_MESSAGES/krfb.mo share/locale/nn/LC_MESSAGES/krfb.mo share/locale/oc/LC_MESSAGES/krfb.mo share/locale/pa/LC_MESSAGES/krfb.mo share/locale/pl/LC_MESSAGES/krfb.mo share/locale/pt/LC_MESSAGES/krfb.mo share/locale/pt_BR/LC_MESSAGES/krfb.mo share/locale/ro/LC_MESSAGES/krfb.mo share/locale/ru/LC_MESSAGES/krfb.mo share/locale/se/LC_MESSAGES/krfb.mo share/locale/sk/LC_MESSAGES/krfb.mo share/locale/sl/LC_MESSAGES/krfb.mo share/locale/sq/LC_MESSAGES/krfb.mo share/locale/sr/LC_MESSAGES/krfb.mo share/locale/sr@ijekavian/LC_MESSAGES/krfb.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/krfb.mo share/locale/sr@latin/LC_MESSAGES/krfb.mo share/locale/sv/LC_MESSAGES/krfb.mo share/locale/ta/LC_MESSAGES/krfb.mo share/locale/tg/LC_MESSAGES/krfb.mo share/locale/th/LC_MESSAGES/krfb.mo share/locale/tr/LC_MESSAGES/krfb.mo share/locale/ug/LC_MESSAGES/krfb.mo share/locale/uk/LC_MESSAGES/krfb.mo share/locale/vi/LC_MESSAGES/krfb.mo share/locale/xh/LC_MESSAGES/krfb.mo share/locale/zh_CN/LC_MESSAGES/krfb.mo share/locale/zh_TW/LC_MESSAGES/krfb.mo share/metainfo/org.kde.krfb.appdata.xml share/qlogging-categories5/krfb.categories diff --git a/net/ksmtp/distinfo b/net/ksmtp/distinfo index ae94e528e422..18f0a7ef45cb 100644 --- a/net/ksmtp/distinfo +++ b/net/ksmtp/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1677828405 -SHA256 (KDE/release-service/22.12.3/ksmtp-22.12.3.tar.xz) = 88b3016c3a241a674f9320cfb7950bfddf8bda820f263a4fef071aeb0470f0fb -SIZE (KDE/release-service/22.12.3/ksmtp-22.12.3.tar.xz) = 50028 +TIMESTAMP = 1681548239 +SHA256 (KDE/release-service/23.04.0/ksmtp-23.04.0.tar.xz) = a0fa8bfc5ec158b2cfcabd025e93e381659b39da1b03678a82ef74f34678fb53 +SIZE (KDE/release-service/23.04.0/ksmtp-23.04.0.tar.xz) = 50524 diff --git a/net/ksmtp/pkg-plist b/net/ksmtp/pkg-plist index 6e198fb70ac8..bf73599c30c8 100644 --- a/net/ksmtp/pkg-plist +++ b/net/ksmtp/pkg-plist @@ -1,66 +1,70 @@ -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 +include/KPim5/KSMTP/KSMTP/Job +include/KPim5/KSMTP/KSMTP/LoginJob +include/KPim5/KSMTP/KSMTP/SendJob +include/KPim5/KSMTP/KSMTP/Session +include/KPim5/KSMTP/KSMTP/SessionUiProxy +include/KPim5/KSMTP/ksmtp/job.h +include/KPim5/KSMTP/ksmtp/ksmtp_export.h +include/KPim5/KSMTP/ksmtp/loginjob.h +include/KPim5/KSMTP/ksmtp/sendjob.h +include/KPim5/KSMTP/ksmtp/session.h +include/KPim5/KSMTP/ksmtp/sessionuiproxy.h +include/KPim5/ksmtp_version.h +lib/cmake/KPim5SMTP/KPim5SMTPConfig.cmake +lib/cmake/KPim5SMTP/KPim5SMTPConfigVersion.cmake +lib/cmake/KPim5SMTP/KPim5SMTPTargets-%%CMAKE_BUILD_TYPE%%.cmake +lib/cmake/KPim5SMTP/KPim5SMTPTargets.cmake +lib/cmake/KPimSMTP/KPim5SMTPTargets-%%CMAKE_BUILD_TYPE%%.cmake +lib/cmake/KPimSMTP/KPim5SMTPTargets.cmake 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%% +lib/libKPim5SMTP.so +lib/libKPim5SMTP.so.5 +lib/libKPim5SMTP.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/eu/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/hi/LC_MESSAGES/libksmtp5.mo share/locale/hu/LC_MESSAGES/libksmtp5.mo share/locale/ia/LC_MESSAGES/libksmtp5.mo share/locale/it/LC_MESSAGES/libksmtp5.mo share/locale/ja/LC_MESSAGES/libksmtp5.mo share/locale/ka/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/ro/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/sr@ijekavian/LC_MESSAGES/libksmtp5.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/libksmtp5.mo share/locale/sr@latin/LC_MESSAGES/libksmtp5.mo share/locale/sv/LC_MESSAGES/libksmtp5.mo share/locale/ta/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 share/qlogging-categories5/ksmtp.categories diff --git a/net/ktnef/distinfo b/net/ktnef/distinfo index 6c1ca0f4cea0..61d4256e9e61 100644 --- a/net/ktnef/distinfo +++ b/net/ktnef/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1677828385 -SHA256 (KDE/release-service/22.12.3/ktnef-22.12.3.tar.xz) = 926af9d3ccc1d94fc4929ce4e10225930253a211b0d4ef8416abe3f929504722 -SIZE (KDE/release-service/22.12.3/ktnef-22.12.3.tar.xz) = 308852 +TIMESTAMP = 1681548215 +SHA256 (KDE/release-service/23.04.0/ktnef-23.04.0.tar.xz) = 4adc253d58d47be7ec6488b120ae750c47e182975275ba2a94a051e88d446ba8 +SIZE (KDE/release-service/23.04.0/ktnef-23.04.0.tar.xz) = 309572 diff --git a/net/ktnef/pkg-plist b/net/ktnef/pkg-plist index f3ddf3a92f43..8191ea5b7f00 100644 --- a/net/ktnef/pkg-plist +++ b/net/ktnef/pkg-plist @@ -1,83 +1,87 @@ -include/KF5/KTNEF/KTNEF/Formatter -include/KF5/KTNEF/KTNEF/KTNEFAttach -include/KF5/KTNEF/KTNEF/KTNEFDefs -include/KF5/KTNEF/KTNEF/KTNEFMessage -include/KF5/KTNEF/KTNEF/KTNEFParser -include/KF5/KTNEF/KTNEF/KTNEFProperty -include/KF5/KTNEF/KTNEF/KTNEFPropertySet -include/KF5/KTNEF/KTNEF/KTNEFWriter -include/KF5/KTNEF/ktnef/formatter.h -include/KF5/KTNEF/ktnef/ktnef_export.h -include/KF5/KTNEF/ktnef/ktnefattach.h -include/KF5/KTNEF/ktnef/ktnefdefs.h -include/KF5/KTNEF/ktnef/ktnefmessage.h -include/KF5/KTNEF/ktnef/ktnefparser.h -include/KF5/KTNEF/ktnef/ktnefproperty.h -include/KF5/KTNEF/ktnef/ktnefpropertyset.h -include/KF5/KTNEF/ktnef/ktnefwriter.h -include/KF5/KTNEF/ktnef_version.h +include/KPim5/KTNEF/KTNEF/Formatter +include/KPim5/KTNEF/KTNEF/KTNEFAttach +include/KPim5/KTNEF/KTNEF/KTNEFDefs +include/KPim5/KTNEF/KTNEF/KTNEFMessage +include/KPim5/KTNEF/KTNEF/KTNEFParser +include/KPim5/KTNEF/KTNEF/KTNEFProperty +include/KPim5/KTNEF/KTNEF/KTNEFPropertySet +include/KPim5/KTNEF/KTNEF/KTNEFWriter +include/KPim5/KTNEF/ktnef/formatter.h +include/KPim5/KTNEF/ktnef/ktnef_export.h +include/KPim5/KTNEF/ktnef/ktnefattach.h +include/KPim5/KTNEF/ktnef/ktnefdefs.h +include/KPim5/KTNEF/ktnef/ktnefmessage.h +include/KPim5/KTNEF/ktnef/ktnefparser.h +include/KPim5/KTNEF/ktnef/ktnefproperty.h +include/KPim5/KTNEF/ktnef/ktnefpropertyset.h +include/KPim5/KTNEF/ktnef/ktnefwriter.h +include/KPim5/KTNEF/ktnef_version.h lib/cmake/KF5Tnef/KF5TnefConfig.cmake lib/cmake/KF5Tnef/KF5TnefConfigVersion.cmake -lib/cmake/KF5Tnef/KF5TnefTargets-%%CMAKE_BUILD_TYPE%%.cmake -lib/cmake/KF5Tnef/KF5TnefTargets.cmake -lib/libKF5Tnef.so -lib/libKF5Tnef.so.5 -lib/libKF5Tnef.so.%%KDE_APPLICATIONS_SHLIB_VER%% +lib/cmake/KF5Tnef/KPim5TnefTargets-%%CMAKE_BUILD_TYPE%%.cmake +lib/cmake/KF5Tnef/KPim5TnefTargets.cmake +lib/cmake/KPim5Tnef/KPim5TnefConfig.cmake +lib/cmake/KPim5Tnef/KPim5TnefConfigVersion.cmake +lib/cmake/KPim5Tnef/KPim5TnefTargets-%%CMAKE_BUILD_TYPE%%.cmake +lib/cmake/KPim5Tnef/KPim5TnefTargets.cmake +lib/libKPim5Tnef.so +lib/libKPim5Tnef.so.5 +lib/libKPim5Tnef.so.%%KDE_APPLICATIONS_SHLIB_VER%% %%QT_MKSPECDIR%%/modules/qt_KTNef.pri share/locale/ar/LC_MESSAGES/libktnef5.mo share/locale/be/LC_MESSAGES/libktnef5.mo share/locale/bs/LC_MESSAGES/libktnef5.mo share/locale/ca/LC_MESSAGES/libktnef5.mo share/locale/ca@valencia/LC_MESSAGES/libktnef5.mo share/locale/cs/LC_MESSAGES/libktnef5.mo share/locale/da/LC_MESSAGES/libktnef5.mo share/locale/de/LC_MESSAGES/libktnef5.mo share/locale/el/LC_MESSAGES/libktnef5.mo share/locale/en_GB/LC_MESSAGES/libktnef5.mo share/locale/eo/LC_MESSAGES/libktnef5.mo share/locale/es/LC_MESSAGES/libktnef5.mo share/locale/et/LC_MESSAGES/libktnef5.mo share/locale/fi/LC_MESSAGES/libktnef5.mo share/locale/fr/LC_MESSAGES/libktnef5.mo share/locale/ga/LC_MESSAGES/libktnef5.mo share/locale/gl/LC_MESSAGES/libktnef5.mo share/locale/hi/LC_MESSAGES/libktnef5.mo share/locale/hne/LC_MESSAGES/libktnef5.mo share/locale/hu/LC_MESSAGES/libktnef5.mo share/locale/ia/LC_MESSAGES/libktnef5.mo share/locale/it/LC_MESSAGES/libktnef5.mo share/locale/ja/LC_MESSAGES/libktnef5.mo share/locale/ka/LC_MESSAGES/libktnef5.mo share/locale/kk/LC_MESSAGES/libktnef5.mo share/locale/km/LC_MESSAGES/libktnef5.mo share/locale/ko/LC_MESSAGES/libktnef5.mo share/locale/lt/LC_MESSAGES/libktnef5.mo share/locale/lv/LC_MESSAGES/libktnef5.mo share/locale/mai/LC_MESSAGES/libktnef5.mo share/locale/mr/LC_MESSAGES/libktnef5.mo share/locale/nb/LC_MESSAGES/libktnef5.mo share/locale/nds/LC_MESSAGES/libktnef5.mo share/locale/nl/LC_MESSAGES/libktnef5.mo share/locale/nn/LC_MESSAGES/libktnef5.mo share/locale/pa/LC_MESSAGES/libktnef5.mo share/locale/pl/LC_MESSAGES/libktnef5.mo share/locale/pt/LC_MESSAGES/libktnef5.mo share/locale/pt_BR/LC_MESSAGES/libktnef5.mo share/locale/ro/LC_MESSAGES/libktnef5.mo share/locale/ru/LC_MESSAGES/libktnef5.mo share/locale/se/LC_MESSAGES/libktnef5.mo share/locale/sk/LC_MESSAGES/libktnef5.mo share/locale/sl/LC_MESSAGES/libktnef5.mo share/locale/sq/LC_MESSAGES/libktnef5.mo share/locale/sr/LC_MESSAGES/libktnef5.mo share/locale/sr@ijekavian/LC_MESSAGES/libktnef5.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/libktnef5.mo share/locale/sr@latin/LC_MESSAGES/libktnef5.mo share/locale/sv/LC_MESSAGES/libktnef5.mo share/locale/tr/LC_MESSAGES/libktnef5.mo share/locale/ug/LC_MESSAGES/libktnef5.mo share/locale/uk/LC_MESSAGES/libktnef5.mo share/locale/zh_CN/LC_MESSAGES/libktnef5.mo share/locale/zh_TW/LC_MESSAGES/libktnef5.mo share/qlogging-categories5/ktnef.categories share/qlogging-categories5/ktnef.renamecategories diff --git a/net/libgravatar/distinfo b/net/libgravatar/distinfo index 023e9e7a6570..420c4132e717 100644 --- a/net/libgravatar/distinfo +++ b/net/libgravatar/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1677828383 -SHA256 (KDE/release-service/22.12.3/libgravatar-22.12.3.tar.xz) = 39b587139df4ddcee8b19d9098625197f44fed50015d0f8ac3169d482a29e928 -SIZE (KDE/release-service/22.12.3/libgravatar-22.12.3.tar.xz) = 36912 +TIMESTAMP = 1681548241 +SHA256 (KDE/release-service/23.04.0/libgravatar-23.04.0.tar.xz) = 6891bce0ebeeda6676f938a296c020b42ed192463986959687ad55c298e6cf24 +SIZE (KDE/release-service/23.04.0/libgravatar-23.04.0.tar.xz) = 37352 diff --git a/net/libgravatar/pkg-plist b/net/libgravatar/pkg-plist index fbddd3fbf0c6..b0590826f6a3 100644 --- a/net/libgravatar/pkg-plist +++ b/net/libgravatar/pkg-plist @@ -1,66 +1,70 @@ -include/KF5/Gravatar/Gravatar/GravatarCache -include/KF5/Gravatar/Gravatar/GravatarConfigWidget -include/KF5/Gravatar/Gravatar/GravatarConfigureSettingsDialog -include/KF5/Gravatar/Gravatar/GravatarConfigureSettingsWidget -include/KF5/Gravatar/Gravatar/GravatarDownloadPixmapWidget -include/KF5/Gravatar/Gravatar/GravatarResolvUrlJob -include/KF5/Gravatar/gravatar/gravatar_export.h -include/KF5/Gravatar/gravatar/gravatarcache.h -include/KF5/Gravatar/gravatar/gravatarconfiguresettingsdialog.h -include/KF5/Gravatar/gravatar/gravatarconfiguresettingswidget.h -include/KF5/Gravatar/gravatar/gravatarconfigwidget.h -include/KF5/Gravatar/gravatar/gravatardownloadpixmapwidget.h -include/KF5/Gravatar/gravatar/gravatarresolvurljob.h -include/KF5/Gravatar/gravatar/gravatarsettings.h -include/KF5/Gravatar/gravatar_version.h +include/KPim5/Gravatar/Gravatar/GravatarCache +include/KPim5/Gravatar/Gravatar/GravatarConfigWidget +include/KPim5/Gravatar/Gravatar/GravatarConfigureSettingsDialog +include/KPim5/Gravatar/Gravatar/GravatarConfigureSettingsWidget +include/KPim5/Gravatar/Gravatar/GravatarDownloadPixmapWidget +include/KPim5/Gravatar/Gravatar/GravatarResolvUrlJob +include/KPim5/Gravatar/gravatar/gravatar_export.h +include/KPim5/Gravatar/gravatar/gravatarcache.h +include/KPim5/Gravatar/gravatar/gravatarconfiguresettingsdialog.h +include/KPim5/Gravatar/gravatar/gravatarconfiguresettingswidget.h +include/KPim5/Gravatar/gravatar/gravatarconfigwidget.h +include/KPim5/Gravatar/gravatar/gravatardownloadpixmapwidget.h +include/KPim5/Gravatar/gravatar/gravatarresolvurljob.h +include/KPim5/Gravatar/gravatar/gravatarsettings.h +include/KPim5/Gravatar/gravatar_version.h lib/cmake/KF5Gravatar/KF5GravatarConfig.cmake lib/cmake/KF5Gravatar/KF5GravatarConfigVersion.cmake -lib/cmake/KF5Gravatar/KF5GravatarTargets-%%CMAKE_BUILD_TYPE%%.cmake -lib/cmake/KF5Gravatar/KF5GravatarTargets.cmake -lib/libKF5Gravatar.so -lib/libKF5Gravatar.so.5 -lib/libKF5Gravatar.so.%%KDE_APPLICATIONS_SHLIB_VER%% +lib/cmake/KF5Gravatar/KPim5GravatarTargets-%%CMAKE_BUILD_TYPE%%.cmake +lib/cmake/KF5Gravatar/KPim5GravatarTargets.cmake +lib/cmake/KPim5Gravatar/KPim5GravatarConfig.cmake +lib/cmake/KPim5Gravatar/KPim5GravatarConfigVersion.cmake +lib/cmake/KPim5Gravatar/KPim5GravatarTargets-%%CMAKE_BUILD_TYPE%%.cmake +lib/cmake/KPim5Gravatar/KPim5GravatarTargets.cmake +lib/libKPim5Gravatar.so +lib/libKPim5Gravatar.so.5 +lib/libKPim5Gravatar.so.%%KDE_APPLICATIONS_SHLIB_VER%% %%QT_MKSPECDIR%%/modules/qt_Gravatar.pri share/locale/ar/LC_MESSAGES/libgravatar.mo share/locale/ca/LC_MESSAGES/libgravatar.mo share/locale/ca@valencia/LC_MESSAGES/libgravatar.mo share/locale/cs/LC_MESSAGES/libgravatar.mo share/locale/da/LC_MESSAGES/libgravatar.mo share/locale/de/LC_MESSAGES/libgravatar.mo share/locale/el/LC_MESSAGES/libgravatar.mo share/locale/en_GB/LC_MESSAGES/libgravatar.mo share/locale/es/LC_MESSAGES/libgravatar.mo share/locale/et/LC_MESSAGES/libgravatar.mo share/locale/eu/LC_MESSAGES/libgravatar.mo share/locale/fi/LC_MESSAGES/libgravatar.mo share/locale/fr/LC_MESSAGES/libgravatar.mo share/locale/gl/LC_MESSAGES/libgravatar.mo share/locale/hi/LC_MESSAGES/libgravatar.mo share/locale/hu/LC_MESSAGES/libgravatar.mo share/locale/ia/LC_MESSAGES/libgravatar.mo share/locale/is/LC_MESSAGES/libgravatar.mo share/locale/it/LC_MESSAGES/libgravatar.mo share/locale/ja/LC_MESSAGES/libgravatar.mo share/locale/ka/LC_MESSAGES/libgravatar.mo share/locale/ko/LC_MESSAGES/libgravatar.mo share/locale/lt/LC_MESSAGES/libgravatar.mo share/locale/nl/LC_MESSAGES/libgravatar.mo share/locale/nn/LC_MESSAGES/libgravatar.mo share/locale/pl/LC_MESSAGES/libgravatar.mo share/locale/pt/LC_MESSAGES/libgravatar.mo share/locale/pt_BR/LC_MESSAGES/libgravatar.mo share/locale/ro/LC_MESSAGES/libgravatar.mo share/locale/ru/LC_MESSAGES/libgravatar.mo share/locale/sk/LC_MESSAGES/libgravatar.mo share/locale/sl/LC_MESSAGES/libgravatar.mo share/locale/sr/LC_MESSAGES/libgravatar.mo share/locale/sr@ijekavian/LC_MESSAGES/libgravatar.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/libgravatar.mo share/locale/sr@latin/LC_MESSAGES/libgravatar.mo share/locale/sv/LC_MESSAGES/libgravatar.mo share/locale/tr/LC_MESSAGES/libgravatar.mo share/locale/uk/LC_MESSAGES/libgravatar.mo share/locale/zh_CN/LC_MESSAGES/libgravatar.mo share/locale/zh_TW/LC_MESSAGES/libgravatar.mo share/qlogging-categories5/libgravatar.categories share/qlogging-categories5/libgravatar.renamecategories diff --git a/net/libkgapi/distinfo b/net/libkgapi/distinfo index 371a92432402..b232ed946541 100644 --- a/net/libkgapi/distinfo +++ b/net/libkgapi/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1677828393 -SHA256 (KDE/release-service/22.12.3/libkgapi-22.12.3.tar.xz) = 97cc31fba4bed9b49d8edccc27c3413f7759414a54e2025d06a6af5a19845738 -SIZE (KDE/release-service/22.12.3/libkgapi-22.12.3.tar.xz) = 245596 +TIMESTAMP = 1681548218 +SHA256 (KDE/release-service/23.04.0/libkgapi-23.04.0.tar.xz) = aceb156db7c7caee88fd1ea57b3e06e94200e94196e4a420c3896db1709d6551 +SIZE (KDE/release-service/23.04.0/libkgapi-23.04.0.tar.xz) = 333344 diff --git a/net/libkgapi/pkg-plist b/net/libkgapi/pkg-plist index b4b7c7d1b389..b32f6d15b95b 100644 --- a/net/libkgapi/pkg-plist +++ b/net/libkgapi/pkg-plist @@ -1,362 +1,452 @@ -include/KPim/KGAPI/KGAPI/Account -include/KPim/KGAPI/KGAPI/AccountInfo -include/KPim/KGAPI/KGAPI/AccountInfoFetchJob -include/KPim/KGAPI/KGAPI/AccountManager -include/KPim/KGAPI/KGAPI/AuthJob -include/KPim/KGAPI/KGAPI/Blogger/Blog -include/KPim/KGAPI/KGAPI/Blogger/BlogFetchJob -include/KPim/KGAPI/KGAPI/Blogger/Comment -include/KPim/KGAPI/KGAPI/Blogger/CommentApproveJob -include/KPim/KGAPI/KGAPI/Blogger/CommentDeleteContentJob -include/KPim/KGAPI/KGAPI/Blogger/CommentDeleteJob -include/KPim/KGAPI/KGAPI/Blogger/CommentFetchJob -include/KPim/KGAPI/KGAPI/Blogger/Page -include/KPim/KGAPI/KGAPI/Blogger/PageCreateJob -include/KPim/KGAPI/KGAPI/Blogger/PageDeleteJob -include/KPim/KGAPI/KGAPI/Blogger/PageFetchJob -include/KPim/KGAPI/KGAPI/Blogger/PageModifyJob -include/KPim/KGAPI/KGAPI/Blogger/Post -include/KPim/KGAPI/KGAPI/Blogger/PostCreateJob -include/KPim/KGAPI/KGAPI/Blogger/PostDeleteJob -include/KPim/KGAPI/KGAPI/Blogger/PostFetchJob -include/KPim/KGAPI/KGAPI/Blogger/PostModifyJob -include/KPim/KGAPI/KGAPI/Blogger/PostPublishJob -include/KPim/KGAPI/KGAPI/Blogger/PostSearchJob -include/KPim/KGAPI/KGAPI/Calendar/Calendar -include/KPim/KGAPI/KGAPI/Calendar/CalendarCreateJob -include/KPim/KGAPI/KGAPI/Calendar/CalendarDeleteJob -include/KPim/KGAPI/KGAPI/Calendar/CalendarFetchJob -include/KPim/KGAPI/KGAPI/Calendar/CalendarModifyJob -include/KPim/KGAPI/KGAPI/Calendar/Enums -include/KPim/KGAPI/KGAPI/Calendar/Event -include/KPim/KGAPI/KGAPI/Calendar/EventCreateJob -include/KPim/KGAPI/KGAPI/Calendar/EventDeleteJob -include/KPim/KGAPI/KGAPI/Calendar/EventFetchJob -include/KPim/KGAPI/KGAPI/Calendar/EventModifyJob -include/KPim/KGAPI/KGAPI/Calendar/EventMoveJob -include/KPim/KGAPI/KGAPI/Calendar/FreeBusyQueryJob -include/KPim/KGAPI/KGAPI/Calendar/Reminder -include/KPim/KGAPI/KGAPI/Contacts/Contact -include/KPim/KGAPI/KGAPI/Contacts/ContactCreateJob -include/KPim/KGAPI/KGAPI/Contacts/ContactDeleteJob -include/KPim/KGAPI/KGAPI/Contacts/ContactFetchJob -include/KPim/KGAPI/KGAPI/Contacts/ContactFetchPhotoJob -include/KPim/KGAPI/KGAPI/Contacts/ContactModifyJob -include/KPim/KGAPI/KGAPI/Contacts/ContactsGroup -include/KPim/KGAPI/KGAPI/Contacts/ContactsGroupCreateJob -include/KPim/KGAPI/KGAPI/Contacts/ContactsGroupDeleteJob -include/KPim/KGAPI/KGAPI/Contacts/ContactsGroupFetchJob -include/KPim/KGAPI/KGAPI/Contacts/ContactsGroupModifyJob -include/KPim/KGAPI/KGAPI/CreateJob -include/KPim/KGAPI/KGAPI/DeleteJob -include/KPim/KGAPI/KGAPI/Drive/About -include/KPim/KGAPI/KGAPI/Drive/AboutFetchJob -include/KPim/KGAPI/KGAPI/Drive/App -include/KPim/KGAPI/KGAPI/Drive/AppFetchJob -include/KPim/KGAPI/KGAPI/Drive/Change -include/KPim/KGAPI/KGAPI/Drive/ChangeFetchJob -include/KPim/KGAPI/KGAPI/Drive/ChildReference -include/KPim/KGAPI/KGAPI/Drive/ChildReferenceCreateJob -include/KPim/KGAPI/KGAPI/Drive/ChildReferenceDeleteJob -include/KPim/KGAPI/KGAPI/Drive/ChildReferenceFetchJob -include/KPim/KGAPI/KGAPI/Drive/Drives -include/KPim/KGAPI/KGAPI/Drive/DrivesCreateJob -include/KPim/KGAPI/KGAPI/Drive/DrivesDeleteJob -include/KPim/KGAPI/KGAPI/Drive/DrivesFetchJob -include/KPim/KGAPI/KGAPI/Drive/DrivesHideJob -include/KPim/KGAPI/KGAPI/Drive/DrivesModifyJob -include/KPim/KGAPI/KGAPI/Drive/DrivesSearchQuery -include/KPim/KGAPI/KGAPI/Drive/File -include/KPim/KGAPI/KGAPI/Drive/FileAbstractDataJob -include/KPim/KGAPI/KGAPI/Drive/FileAbstractModifyJob -include/KPim/KGAPI/KGAPI/Drive/FileAbstractResumableJob -include/KPim/KGAPI/KGAPI/Drive/FileAbstractUploadJob -include/KPim/KGAPI/KGAPI/Drive/FileCopyJob -include/KPim/KGAPI/KGAPI/Drive/FileCreateJob -include/KPim/KGAPI/KGAPI/Drive/FileDeleteJob -include/KPim/KGAPI/KGAPI/Drive/FileFetchContentJob -include/KPim/KGAPI/KGAPI/Drive/FileFetchJob -include/KPim/KGAPI/KGAPI/Drive/FileModifyJob -include/KPim/KGAPI/KGAPI/Drive/FileResumableCreateJob -include/KPim/KGAPI/KGAPI/Drive/FileResumableModifyJob -include/KPim/KGAPI/KGAPI/Drive/FileSearchQuery -include/KPim/KGAPI/KGAPI/Drive/FileTouchJob -include/KPim/KGAPI/KGAPI/Drive/FileTrashJob -include/KPim/KGAPI/KGAPI/Drive/FileUntrashJob -include/KPim/KGAPI/KGAPI/Drive/ParentReference -include/KPim/KGAPI/KGAPI/Drive/ParentReferenceCreateJob -include/KPim/KGAPI/KGAPI/Drive/ParentReferenceDeleteJob -include/KPim/KGAPI/KGAPI/Drive/ParentReferenceFetchJob -include/KPim/KGAPI/KGAPI/Drive/Permission -include/KPim/KGAPI/KGAPI/Drive/PermissionCreateJob -include/KPim/KGAPI/KGAPI/Drive/PermissionDeleteJob -include/KPim/KGAPI/KGAPI/Drive/PermissionFetchJob -include/KPim/KGAPI/KGAPI/Drive/PermissionModifyJob -include/KPim/KGAPI/KGAPI/Drive/Revision -include/KPim/KGAPI/KGAPI/Drive/RevisionDeleteJob -include/KPim/KGAPI/KGAPI/Drive/RevisionFetchJob -include/KPim/KGAPI/KGAPI/Drive/RevisionModifyJob -include/KPim/KGAPI/KGAPI/Drive/SearchQuery -include/KPim/KGAPI/KGAPI/Drive/Teamdrive -include/KPim/KGAPI/KGAPI/Drive/TeamdriveCreateJob -include/KPim/KGAPI/KGAPI/Drive/TeamdriveDeleteJob -include/KPim/KGAPI/KGAPI/Drive/TeamdriveFetchJob -include/KPim/KGAPI/KGAPI/Drive/TeamdriveModifyJob -include/KPim/KGAPI/KGAPI/Drive/TeamdriveSearchQuery -include/KPim/KGAPI/KGAPI/Drive/User -include/KPim/KGAPI/KGAPI/FetchJob -include/KPim/KGAPI/KGAPI/Job -include/KPim/KGAPI/KGAPI/Latitude/Latitude -include/KPim/KGAPI/KGAPI/Latitude/Location -include/KPim/KGAPI/KGAPI/Latitude/LocationCreateJob -include/KPim/KGAPI/KGAPI/Latitude/LocationDeleteJob -include/KPim/KGAPI/KGAPI/Latitude/LocationFetchHistoryJob -include/KPim/KGAPI/KGAPI/Latitude/LocationFetchJob -include/KPim/KGAPI/KGAPI/Maps/StaticMapMarker -include/KPim/KGAPI/KGAPI/Maps/StaticMapPath -include/KPim/KGAPI/KGAPI/Maps/StaticMapTileFetchJob -include/KPim/KGAPI/KGAPI/Maps/StaticMapUrl -include/KPim/KGAPI/KGAPI/ModifyJob -include/KPim/KGAPI/KGAPI/Object -include/KPim/KGAPI/KGAPI/Tasks/Task -include/KPim/KGAPI/KGAPI/Tasks/TaskCreateJob -include/KPim/KGAPI/KGAPI/Tasks/TaskDeleteJob -include/KPim/KGAPI/KGAPI/Tasks/TaskFetchJob -include/KPim/KGAPI/KGAPI/Tasks/TaskList -include/KPim/KGAPI/KGAPI/Tasks/TaskListCreateJob -include/KPim/KGAPI/KGAPI/Tasks/TaskListDeleteJob -include/KPim/KGAPI/KGAPI/Tasks/TaskListFetchJob -include/KPim/KGAPI/KGAPI/Tasks/TaskListModifyJob -include/KPim/KGAPI/KGAPI/Tasks/TaskModifyJob -include/KPim/KGAPI/KGAPI/Tasks/TaskMoveJob -include/KPim/KGAPI/KGAPI/Types -include/KPim/KGAPI/KGAPI/Utils -include/KPim/KGAPI/kgapi/account.h -include/KPim/KGAPI/kgapi/accountinfo.h -include/KPim/KGAPI/kgapi/accountinfofetchjob.h -include/KPim/KGAPI/kgapi/accountmanager.h -include/KPim/KGAPI/kgapi/authjob.h -include/KPim/KGAPI/kgapi/blogger/blog.h -include/KPim/KGAPI/kgapi/blogger/blogfetchjob.h -include/KPim/KGAPI/kgapi/blogger/comment.h -include/KPim/KGAPI/kgapi/blogger/commentapprovejob.h -include/KPim/KGAPI/kgapi/blogger/commentdeletecontentjob.h -include/KPim/KGAPI/kgapi/blogger/commentdeletejob.h -include/KPim/KGAPI/kgapi/blogger/commentfetchjob.h -include/KPim/KGAPI/kgapi/blogger/kgapiblogger_export.h -include/KPim/KGAPI/kgapi/blogger/page.h -include/KPim/KGAPI/kgapi/blogger/pagecreatejob.h -include/KPim/KGAPI/kgapi/blogger/pagedeletejob.h -include/KPim/KGAPI/kgapi/blogger/pagefetchjob.h -include/KPim/KGAPI/kgapi/blogger/pagemodifyjob.h -include/KPim/KGAPI/kgapi/blogger/post.h -include/KPim/KGAPI/kgapi/blogger/postcreatejob.h -include/KPim/KGAPI/kgapi/blogger/postdeletejob.h -include/KPim/KGAPI/kgapi/blogger/postfetchjob.h -include/KPim/KGAPI/kgapi/blogger/postmodifyjob.h -include/KPim/KGAPI/kgapi/blogger/postpublishjob.h -include/KPim/KGAPI/kgapi/blogger/postsearchjob.h -include/KPim/KGAPI/kgapi/calendar/calendar.h -include/KPim/KGAPI/kgapi/calendar/calendarcreatejob.h -include/KPim/KGAPI/kgapi/calendar/calendardeletejob.h -include/KPim/KGAPI/kgapi/calendar/calendarfetchjob.h -include/KPim/KGAPI/kgapi/calendar/calendarmodifyjob.h -include/KPim/KGAPI/kgapi/calendar/enums.h -include/KPim/KGAPI/kgapi/calendar/event.h -include/KPim/KGAPI/kgapi/calendar/eventcreatejob.h -include/KPim/KGAPI/kgapi/calendar/eventdeletejob.h -include/KPim/KGAPI/kgapi/calendar/eventfetchjob.h -include/KPim/KGAPI/kgapi/calendar/eventmodifyjob.h -include/KPim/KGAPI/kgapi/calendar/eventmovejob.h -include/KPim/KGAPI/kgapi/calendar/freebusyqueryjob.h -include/KPim/KGAPI/kgapi/calendar/kgapicalendar_export.h -include/KPim/KGAPI/kgapi/calendar/reminder.h -include/KPim/KGAPI/kgapi/contacts/contact.h -include/KPim/KGAPI/kgapi/contacts/contactcreatejob.h -include/KPim/KGAPI/kgapi/contacts/contactdeletejob.h -include/KPim/KGAPI/kgapi/contacts/contactfetchjob.h -include/KPim/KGAPI/kgapi/contacts/contactfetchphotojob.h -include/KPim/KGAPI/kgapi/contacts/contactmodifyjob.h -include/KPim/KGAPI/kgapi/contacts/contactsgroup.h -include/KPim/KGAPI/kgapi/contacts/contactsgroupcreatejob.h -include/KPim/KGAPI/kgapi/contacts/contactsgroupdeletejob.h -include/KPim/KGAPI/kgapi/contacts/contactsgroupfetchjob.h -include/KPim/KGAPI/kgapi/contacts/contactsgroupmodifyjob.h -include/KPim/KGAPI/kgapi/contacts/kgapicontacts_export.h -include/KPim/KGAPI/kgapi/createjob.h -include/KPim/KGAPI/kgapi/deletejob.h -include/KPim/KGAPI/kgapi/drive/about.h -include/KPim/KGAPI/kgapi/drive/aboutfetchjob.h -include/KPim/KGAPI/kgapi/drive/app.h -include/KPim/KGAPI/kgapi/drive/appfetchjob.h -include/KPim/KGAPI/kgapi/drive/change.h -include/KPim/KGAPI/kgapi/drive/changefetchjob.h -include/KPim/KGAPI/kgapi/drive/childreference.h -include/KPim/KGAPI/kgapi/drive/childreferencecreatejob.h -include/KPim/KGAPI/kgapi/drive/childreferencedeletejob.h -include/KPim/KGAPI/kgapi/drive/childreferencefetchjob.h -include/KPim/KGAPI/kgapi/drive/drives.h -include/KPim/KGAPI/kgapi/drive/drivescreatejob.h -include/KPim/KGAPI/kgapi/drive/drivesdeletejob.h -include/KPim/KGAPI/kgapi/drive/drivesfetchjob.h -include/KPim/KGAPI/kgapi/drive/driveshidejob.h -include/KPim/KGAPI/kgapi/drive/drivesmodifyjob.h -include/KPim/KGAPI/kgapi/drive/drivessearchquery.h -include/KPim/KGAPI/kgapi/drive/file.h -include/KPim/KGAPI/kgapi/drive/fileabstractdatajob.h -include/KPim/KGAPI/kgapi/drive/fileabstractmodifyjob.h -include/KPim/KGAPI/kgapi/drive/fileabstractresumablejob.h -include/KPim/KGAPI/kgapi/drive/fileabstractuploadjob.h -include/KPim/KGAPI/kgapi/drive/filecopyjob.h -include/KPim/KGAPI/kgapi/drive/filecreatejob.h -include/KPim/KGAPI/kgapi/drive/filedeletejob.h -include/KPim/KGAPI/kgapi/drive/filefetchcontentjob.h -include/KPim/KGAPI/kgapi/drive/filefetchjob.h -include/KPim/KGAPI/kgapi/drive/filemodifyjob.h -include/KPim/KGAPI/kgapi/drive/fileresumablecreatejob.h -include/KPim/KGAPI/kgapi/drive/fileresumablemodifyjob.h -include/KPim/KGAPI/kgapi/drive/filesearchquery.h -include/KPim/KGAPI/kgapi/drive/filetouchjob.h -include/KPim/KGAPI/kgapi/drive/filetrashjob.h -include/KPim/KGAPI/kgapi/drive/fileuntrashjob.h -include/KPim/KGAPI/kgapi/drive/kgapidrive_export.h -include/KPim/KGAPI/kgapi/drive/parentreference.h -include/KPim/KGAPI/kgapi/drive/parentreferencecreatejob.h -include/KPim/KGAPI/kgapi/drive/parentreferencedeletejob.h -include/KPim/KGAPI/kgapi/drive/parentreferencefetchjob.h -include/KPim/KGAPI/kgapi/drive/permission.h -include/KPim/KGAPI/kgapi/drive/permissioncreatejob.h -include/KPim/KGAPI/kgapi/drive/permissiondeletejob.h -include/KPim/KGAPI/kgapi/drive/permissionfetchjob.h -include/KPim/KGAPI/kgapi/drive/permissionmodifyjob.h -include/KPim/KGAPI/kgapi/drive/revision.h -include/KPim/KGAPI/kgapi/drive/revisiondeletejob.h -include/KPim/KGAPI/kgapi/drive/revisionfetchjob.h -include/KPim/KGAPI/kgapi/drive/revisionmodifyjob.h -include/KPim/KGAPI/kgapi/drive/searchquery.h -include/KPim/KGAPI/kgapi/drive/teamdrive.h -include/KPim/KGAPI/kgapi/drive/teamdrivecreatejob.h -include/KPim/KGAPI/kgapi/drive/teamdrivedeletejob.h -include/KPim/KGAPI/kgapi/drive/teamdrivefetchjob.h -include/KPim/KGAPI/kgapi/drive/teamdrivemodifyjob.h -include/KPim/KGAPI/kgapi/drive/teamdrivesearchquery.h -include/KPim/KGAPI/kgapi/drive/user.h -include/KPim/KGAPI/kgapi/fetchjob.h -include/KPim/KGAPI/kgapi/job.h -include/KPim/KGAPI/kgapi/kgapicore_export.h -include/KPim/KGAPI/kgapi/latitude/kgapilatitude_export.h -include/KPim/KGAPI/kgapi/latitude/latitude.h -include/KPim/KGAPI/kgapi/latitude/location.h -include/KPim/KGAPI/kgapi/latitude/locationcreatejob.h -include/KPim/KGAPI/kgapi/latitude/locationdeletejob.h -include/KPim/KGAPI/kgapi/latitude/locationfetchhistoryjob.h -include/KPim/KGAPI/kgapi/latitude/locationfetchjob.h -include/KPim/KGAPI/kgapi/maps/kgapimaps_export.h -include/KPim/KGAPI/kgapi/maps/staticmapmarker.h -include/KPim/KGAPI/kgapi/maps/staticmappath.h -include/KPim/KGAPI/kgapi/maps/staticmaptilefetchjob.h -include/KPim/KGAPI/kgapi/maps/staticmapurl.h -include/KPim/KGAPI/kgapi/modifyjob.h -include/KPim/KGAPI/kgapi/object.h -include/KPim/KGAPI/kgapi/tasks/kgapitasks_export.h -include/KPim/KGAPI/kgapi/tasks/task.h -include/KPim/KGAPI/kgapi/tasks/taskcreatejob.h -include/KPim/KGAPI/kgapi/tasks/taskdeletejob.h -include/KPim/KGAPI/kgapi/tasks/taskfetchjob.h -include/KPim/KGAPI/kgapi/tasks/tasklist.h -include/KPim/KGAPI/kgapi/tasks/tasklistcreatejob.h -include/KPim/KGAPI/kgapi/tasks/tasklistdeletejob.h -include/KPim/KGAPI/kgapi/tasks/tasklistfetchjob.h -include/KPim/KGAPI/kgapi/tasks/tasklistmodifyjob.h -include/KPim/KGAPI/kgapi/tasks/taskmodifyjob.h -include/KPim/KGAPI/kgapi/tasks/taskmovejob.h -include/KPim/KGAPI/kgapi/types.h -include/KPim/KGAPI/kgapi/utils.h -include/KPim/kgapi_version.h +include/KPim5/KGAPI/KGAPI/Account +include/KPim5/KGAPI/KGAPI/AccountInfo +include/KPim5/KGAPI/KGAPI/AccountInfoFetchJob +include/KPim5/KGAPI/KGAPI/AccountManager +include/KPim5/KGAPI/KGAPI/AuthJob +include/KPim5/KGAPI/KGAPI/Blogger/Blog +include/KPim5/KGAPI/KGAPI/Blogger/BlogFetchJob +include/KPim5/KGAPI/KGAPI/Blogger/Comment +include/KPim5/KGAPI/KGAPI/Blogger/CommentApproveJob +include/KPim5/KGAPI/KGAPI/Blogger/CommentDeleteContentJob +include/KPim5/KGAPI/KGAPI/Blogger/CommentDeleteJob +include/KPim5/KGAPI/KGAPI/Blogger/CommentFetchJob +include/KPim5/KGAPI/KGAPI/Blogger/Page +include/KPim5/KGAPI/KGAPI/Blogger/PageCreateJob +include/KPim5/KGAPI/KGAPI/Blogger/PageDeleteJob +include/KPim5/KGAPI/KGAPI/Blogger/PageFetchJob +include/KPim5/KGAPI/KGAPI/Blogger/PageModifyJob +include/KPim5/KGAPI/KGAPI/Blogger/Post +include/KPim5/KGAPI/KGAPI/Blogger/PostCreateJob +include/KPim5/KGAPI/KGAPI/Blogger/PostDeleteJob +include/KPim5/KGAPI/KGAPI/Blogger/PostFetchJob +include/KPim5/KGAPI/KGAPI/Blogger/PostModifyJob +include/KPim5/KGAPI/KGAPI/Blogger/PostPublishJob +include/KPim5/KGAPI/KGAPI/Blogger/PostSearchJob +include/KPim5/KGAPI/KGAPI/Calendar/Calendar +include/KPim5/KGAPI/KGAPI/Calendar/CalendarCreateJob +include/KPim5/KGAPI/KGAPI/Calendar/CalendarDeleteJob +include/KPim5/KGAPI/KGAPI/Calendar/CalendarFetchJob +include/KPim5/KGAPI/KGAPI/Calendar/CalendarModifyJob +include/KPim5/KGAPI/KGAPI/Calendar/Enums +include/KPim5/KGAPI/KGAPI/Calendar/Event +include/KPim5/KGAPI/KGAPI/Calendar/EventCreateJob +include/KPim5/KGAPI/KGAPI/Calendar/EventDeleteJob +include/KPim5/KGAPI/KGAPI/Calendar/EventFetchJob +include/KPim5/KGAPI/KGAPI/Calendar/EventModifyJob +include/KPim5/KGAPI/KGAPI/Calendar/EventMoveJob +include/KPim5/KGAPI/KGAPI/Calendar/FreeBusyQueryJob +include/KPim5/KGAPI/KGAPI/Calendar/Reminder +include/KPim5/KGAPI/KGAPI/CreateJob +include/KPim5/KGAPI/KGAPI/DeleteJob +include/KPim5/KGAPI/KGAPI/Drive/About +include/KPim5/KGAPI/KGAPI/Drive/AboutFetchJob +include/KPim5/KGAPI/KGAPI/Drive/App +include/KPim5/KGAPI/KGAPI/Drive/AppFetchJob +include/KPim5/KGAPI/KGAPI/Drive/Change +include/KPim5/KGAPI/KGAPI/Drive/ChangeFetchJob +include/KPim5/KGAPI/KGAPI/Drive/ChildReference +include/KPim5/KGAPI/KGAPI/Drive/ChildReferenceCreateJob +include/KPim5/KGAPI/KGAPI/Drive/ChildReferenceDeleteJob +include/KPim5/KGAPI/KGAPI/Drive/ChildReferenceFetchJob +include/KPim5/KGAPI/KGAPI/Drive/Drives +include/KPim5/KGAPI/KGAPI/Drive/DrivesCreateJob +include/KPim5/KGAPI/KGAPI/Drive/DrivesDeleteJob +include/KPim5/KGAPI/KGAPI/Drive/DrivesFetchJob +include/KPim5/KGAPI/KGAPI/Drive/DrivesHideJob +include/KPim5/KGAPI/KGAPI/Drive/DrivesModifyJob +include/KPim5/KGAPI/KGAPI/Drive/DrivesSearchQuery +include/KPim5/KGAPI/KGAPI/Drive/File +include/KPim5/KGAPI/KGAPI/Drive/FileAbstractDataJob +include/KPim5/KGAPI/KGAPI/Drive/FileAbstractModifyJob +include/KPim5/KGAPI/KGAPI/Drive/FileAbstractResumableJob +include/KPim5/KGAPI/KGAPI/Drive/FileAbstractUploadJob +include/KPim5/KGAPI/KGAPI/Drive/FileCopyJob +include/KPim5/KGAPI/KGAPI/Drive/FileCreateJob +include/KPim5/KGAPI/KGAPI/Drive/FileDeleteJob +include/KPim5/KGAPI/KGAPI/Drive/FileFetchContentJob +include/KPim5/KGAPI/KGAPI/Drive/FileFetchJob +include/KPim5/KGAPI/KGAPI/Drive/FileModifyJob +include/KPim5/KGAPI/KGAPI/Drive/FileResumableCreateJob +include/KPim5/KGAPI/KGAPI/Drive/FileResumableModifyJob +include/KPim5/KGAPI/KGAPI/Drive/FileSearchQuery +include/KPim5/KGAPI/KGAPI/Drive/FileTouchJob +include/KPim5/KGAPI/KGAPI/Drive/FileTrashJob +include/KPim5/KGAPI/KGAPI/Drive/FileUntrashJob +include/KPim5/KGAPI/KGAPI/Drive/ParentReference +include/KPim5/KGAPI/KGAPI/Drive/ParentReferenceCreateJob +include/KPim5/KGAPI/KGAPI/Drive/ParentReferenceDeleteJob +include/KPim5/KGAPI/KGAPI/Drive/ParentReferenceFetchJob +include/KPim5/KGAPI/KGAPI/Drive/Permission +include/KPim5/KGAPI/KGAPI/Drive/PermissionCreateJob +include/KPim5/KGAPI/KGAPI/Drive/PermissionDeleteJob +include/KPim5/KGAPI/KGAPI/Drive/PermissionFetchJob +include/KPim5/KGAPI/KGAPI/Drive/PermissionModifyJob +include/KPim5/KGAPI/KGAPI/Drive/Revision +include/KPim5/KGAPI/KGAPI/Drive/RevisionDeleteJob +include/KPim5/KGAPI/KGAPI/Drive/RevisionFetchJob +include/KPim5/KGAPI/KGAPI/Drive/RevisionModifyJob +include/KPim5/KGAPI/KGAPI/Drive/SearchQuery +include/KPim5/KGAPI/KGAPI/Drive/Teamdrive +include/KPim5/KGAPI/KGAPI/Drive/TeamdriveCreateJob +include/KPim5/KGAPI/KGAPI/Drive/TeamdriveDeleteJob +include/KPim5/KGAPI/KGAPI/Drive/TeamdriveFetchJob +include/KPim5/KGAPI/KGAPI/Drive/TeamdriveModifyJob +include/KPim5/KGAPI/KGAPI/Drive/TeamdriveSearchQuery +include/KPim5/KGAPI/KGAPI/Drive/User +include/KPim5/KGAPI/KGAPI/FetchJob +include/KPim5/KGAPI/KGAPI/Job +include/KPim5/KGAPI/KGAPI/Latitude/Latitude +include/KPim5/KGAPI/KGAPI/Latitude/Location +include/KPim5/KGAPI/KGAPI/Latitude/LocationCreateJob +include/KPim5/KGAPI/KGAPI/Latitude/LocationDeleteJob +include/KPim5/KGAPI/KGAPI/Latitude/LocationFetchHistoryJob +include/KPim5/KGAPI/KGAPI/Latitude/LocationFetchJob +include/KPim5/KGAPI/KGAPI/Maps/StaticMapMarker +include/KPim5/KGAPI/KGAPI/Maps/StaticMapPath +include/KPim5/KGAPI/KGAPI/Maps/StaticMapTileFetchJob +include/KPim5/KGAPI/KGAPI/Maps/StaticMapUrl +include/KPim5/KGAPI/KGAPI/ModifyJob +include/KPim5/KGAPI/KGAPI/Object +include/KPim5/KGAPI/KGAPI/People/Address +include/KPim5/KGAPI/KGAPI/People/AgeRangeType +include/KPim5/KGAPI/KGAPI/People/Biography +include/KPim5/KGAPI/KGAPI/People/Birthday +include/KPim5/KGAPI/KGAPI/People/BraggingRights +include/KPim5/KGAPI/KGAPI/People/CalendarUrl +include/KPim5/KGAPI/KGAPI/People/ClientData +include/KPim5/KGAPI/KGAPI/People/ContactGroup +include/KPim5/KGAPI/KGAPI/People/ContactGroupCreateJob +include/KPim5/KGAPI/KGAPI/People/ContactGroupDeleteJob +include/KPim5/KGAPI/KGAPI/People/ContactGroupFetchJob +include/KPim5/KGAPI/KGAPI/People/ContactGroupMembership +include/KPim5/KGAPI/KGAPI/People/ContactGroupMetadata +include/KPim5/KGAPI/KGAPI/People/ContactGroupModifyJob +include/KPim5/KGAPI/KGAPI/People/CoverPhoto +include/KPim5/KGAPI/KGAPI/People/DomainMembership +include/KPim5/KGAPI/KGAPI/People/EmailAddress +include/KPim5/KGAPI/KGAPI/People/Event +include/KPim5/KGAPI/KGAPI/People/ExternalId +include/KPim5/KGAPI/KGAPI/People/FieldMetadata +include/KPim5/KGAPI/KGAPI/People/FileAs +include/KPim5/KGAPI/KGAPI/People/Gender +include/KPim5/KGAPI/KGAPI/People/GroupClientData +include/KPim5/KGAPI/KGAPI/People/IMClient +include/KPim5/KGAPI/KGAPI/People/Interest +include/KPim5/KGAPI/KGAPI/People/Location +include/KPim5/KGAPI/KGAPI/People/Membership +include/KPim5/KGAPI/KGAPI/People/MiscKeyword +include/KPim5/KGAPI/KGAPI/People/Name +include/KPim5/KGAPI/KGAPI/People/Nickname +include/KPim5/KGAPI/KGAPI/People/Occupation +include/KPim5/KGAPI/KGAPI/People/Organization +include/KPim5/KGAPI/KGAPI/People/Person +include/KPim5/KGAPI/KGAPI/People/PersonCreateJob +include/KPim5/KGAPI/KGAPI/People/PersonDeleteJob +include/KPim5/KGAPI/KGAPI/People/PersonFetchJob +include/KPim5/KGAPI/KGAPI/People/PersonLocale +include/KPim5/KGAPI/KGAPI/People/PersonMetadata +include/KPim5/KGAPI/KGAPI/People/PersonModifyJob +include/KPim5/KGAPI/KGAPI/People/PersonPhotoDeleteJob +include/KPim5/KGAPI/KGAPI/People/PersonPhotoUpdateJob +include/KPim5/KGAPI/KGAPI/People/PhoneNumber +include/KPim5/KGAPI/KGAPI/People/Photo +include/KPim5/KGAPI/KGAPI/People/ProfileMetadata +include/KPim5/KGAPI/KGAPI/People/Relation +include/KPim5/KGAPI/KGAPI/People/RelationshipInterest +include/KPim5/KGAPI/KGAPI/People/RelationshipStatus +include/KPim5/KGAPI/KGAPI/People/Residence +include/KPim5/KGAPI/KGAPI/People/SIPAddress +include/KPim5/KGAPI/KGAPI/People/Skill +include/KPim5/KGAPI/KGAPI/People/Source +include/KPim5/KGAPI/KGAPI/People/Tagline +include/KPim5/KGAPI/KGAPI/People/Url +include/KPim5/KGAPI/KGAPI/People/UserDefined +include/KPim5/KGAPI/KGAPI/Tasks/Task +include/KPim5/KGAPI/KGAPI/Tasks/TaskCreateJob +include/KPim5/KGAPI/KGAPI/Tasks/TaskDeleteJob +include/KPim5/KGAPI/KGAPI/Tasks/TaskFetchJob +include/KPim5/KGAPI/KGAPI/Tasks/TaskList +include/KPim5/KGAPI/KGAPI/Tasks/TaskListCreateJob +include/KPim5/KGAPI/KGAPI/Tasks/TaskListDeleteJob +include/KPim5/KGAPI/KGAPI/Tasks/TaskListFetchJob +include/KPim5/KGAPI/KGAPI/Tasks/TaskListModifyJob +include/KPim5/KGAPI/KGAPI/Tasks/TaskModifyJob +include/KPim5/KGAPI/KGAPI/Tasks/TaskMoveJob +include/KPim5/KGAPI/KGAPI/Types +include/KPim5/KGAPI/KGAPI/Utils +include/KPim5/KGAPI/kgapi/account.h +include/KPim5/KGAPI/kgapi/accountinfo.h +include/KPim5/KGAPI/kgapi/accountinfofetchjob.h +include/KPim5/KGAPI/kgapi/accountmanager.h +include/KPim5/KGAPI/kgapi/authjob.h +include/KPim5/KGAPI/kgapi/blogger/blog.h +include/KPim5/KGAPI/kgapi/blogger/blogfetchjob.h +include/KPim5/KGAPI/kgapi/blogger/comment.h +include/KPim5/KGAPI/kgapi/blogger/commentapprovejob.h +include/KPim5/KGAPI/kgapi/blogger/commentdeletecontentjob.h +include/KPim5/KGAPI/kgapi/blogger/commentdeletejob.h +include/KPim5/KGAPI/kgapi/blogger/commentfetchjob.h +include/KPim5/KGAPI/kgapi/blogger/kgapiblogger_export.h +include/KPim5/KGAPI/kgapi/blogger/page.h +include/KPim5/KGAPI/kgapi/blogger/pagecreatejob.h +include/KPim5/KGAPI/kgapi/blogger/pagedeletejob.h +include/KPim5/KGAPI/kgapi/blogger/pagefetchjob.h +include/KPim5/KGAPI/kgapi/blogger/pagemodifyjob.h +include/KPim5/KGAPI/kgapi/blogger/post.h +include/KPim5/KGAPI/kgapi/blogger/postcreatejob.h +include/KPim5/KGAPI/kgapi/blogger/postdeletejob.h +include/KPim5/KGAPI/kgapi/blogger/postfetchjob.h +include/KPim5/KGAPI/kgapi/blogger/postmodifyjob.h +include/KPim5/KGAPI/kgapi/blogger/postpublishjob.h +include/KPim5/KGAPI/kgapi/blogger/postsearchjob.h +include/KPim5/KGAPI/kgapi/calendar/calendar.h +include/KPim5/KGAPI/kgapi/calendar/calendarcreatejob.h +include/KPim5/KGAPI/kgapi/calendar/calendardeletejob.h +include/KPim5/KGAPI/kgapi/calendar/calendarfetchjob.h +include/KPim5/KGAPI/kgapi/calendar/calendarmodifyjob.h +include/KPim5/KGAPI/kgapi/calendar/enums.h +include/KPim5/KGAPI/kgapi/calendar/event.h +include/KPim5/KGAPI/kgapi/calendar/eventcreatejob.h +include/KPim5/KGAPI/kgapi/calendar/eventdeletejob.h +include/KPim5/KGAPI/kgapi/calendar/eventfetchjob.h +include/KPim5/KGAPI/kgapi/calendar/eventmodifyjob.h +include/KPim5/KGAPI/kgapi/calendar/eventmovejob.h +include/KPim5/KGAPI/kgapi/calendar/freebusyqueryjob.h +include/KPim5/KGAPI/kgapi/calendar/kgapicalendar_export.h +include/KPim5/KGAPI/kgapi/calendar/reminder.h +include/KPim5/KGAPI/kgapi/createjob.h +include/KPim5/KGAPI/kgapi/deletejob.h +include/KPim5/KGAPI/kgapi/drive/about.h +include/KPim5/KGAPI/kgapi/drive/aboutfetchjob.h +include/KPim5/KGAPI/kgapi/drive/app.h +include/KPim5/KGAPI/kgapi/drive/appfetchjob.h +include/KPim5/KGAPI/kgapi/drive/change.h +include/KPim5/KGAPI/kgapi/drive/changefetchjob.h +include/KPim5/KGAPI/kgapi/drive/childreference.h +include/KPim5/KGAPI/kgapi/drive/childreferencecreatejob.h +include/KPim5/KGAPI/kgapi/drive/childreferencedeletejob.h +include/KPim5/KGAPI/kgapi/drive/childreferencefetchjob.h +include/KPim5/KGAPI/kgapi/drive/drives.h +include/KPim5/KGAPI/kgapi/drive/drivescreatejob.h +include/KPim5/KGAPI/kgapi/drive/drivesdeletejob.h +include/KPim5/KGAPI/kgapi/drive/drivesfetchjob.h +include/KPim5/KGAPI/kgapi/drive/driveshidejob.h +include/KPim5/KGAPI/kgapi/drive/drivesmodifyjob.h +include/KPim5/KGAPI/kgapi/drive/drivessearchquery.h +include/KPim5/KGAPI/kgapi/drive/file.h +include/KPim5/KGAPI/kgapi/drive/fileabstractdatajob.h +include/KPim5/KGAPI/kgapi/drive/fileabstractmodifyjob.h +include/KPim5/KGAPI/kgapi/drive/fileabstractresumablejob.h +include/KPim5/KGAPI/kgapi/drive/fileabstractuploadjob.h +include/KPim5/KGAPI/kgapi/drive/filecopyjob.h +include/KPim5/KGAPI/kgapi/drive/filecreatejob.h +include/KPim5/KGAPI/kgapi/drive/filedeletejob.h +include/KPim5/KGAPI/kgapi/drive/filefetchcontentjob.h +include/KPim5/KGAPI/kgapi/drive/filefetchjob.h +include/KPim5/KGAPI/kgapi/drive/filemodifyjob.h +include/KPim5/KGAPI/kgapi/drive/fileresumablecreatejob.h +include/KPim5/KGAPI/kgapi/drive/fileresumablemodifyjob.h +include/KPim5/KGAPI/kgapi/drive/filesearchquery.h +include/KPim5/KGAPI/kgapi/drive/filetouchjob.h +include/KPim5/KGAPI/kgapi/drive/filetrashjob.h +include/KPim5/KGAPI/kgapi/drive/fileuntrashjob.h +include/KPim5/KGAPI/kgapi/drive/kgapidrive_export.h +include/KPim5/KGAPI/kgapi/drive/parentreference.h +include/KPim5/KGAPI/kgapi/drive/parentreferencecreatejob.h +include/KPim5/KGAPI/kgapi/drive/parentreferencedeletejob.h +include/KPim5/KGAPI/kgapi/drive/parentreferencefetchjob.h +include/KPim5/KGAPI/kgapi/drive/permission.h +include/KPim5/KGAPI/kgapi/drive/permissioncreatejob.h +include/KPim5/KGAPI/kgapi/drive/permissiondeletejob.h +include/KPim5/KGAPI/kgapi/drive/permissionfetchjob.h +include/KPim5/KGAPI/kgapi/drive/permissionmodifyjob.h +include/KPim5/KGAPI/kgapi/drive/revision.h +include/KPim5/KGAPI/kgapi/drive/revisiondeletejob.h +include/KPim5/KGAPI/kgapi/drive/revisionfetchjob.h +include/KPim5/KGAPI/kgapi/drive/revisionmodifyjob.h +include/KPim5/KGAPI/kgapi/drive/searchquery.h +include/KPim5/KGAPI/kgapi/drive/teamdrive.h +include/KPim5/KGAPI/kgapi/drive/teamdrivecreatejob.h +include/KPim5/KGAPI/kgapi/drive/teamdrivedeletejob.h +include/KPim5/KGAPI/kgapi/drive/teamdrivefetchjob.h +include/KPim5/KGAPI/kgapi/drive/teamdrivemodifyjob.h +include/KPim5/KGAPI/kgapi/drive/teamdrivesearchquery.h +include/KPim5/KGAPI/kgapi/drive/user.h +include/KPim5/KGAPI/kgapi/fetchjob.h +include/KPim5/KGAPI/kgapi/job.h +include/KPim5/KGAPI/kgapi/kgapicore_export.h +include/KPim5/KGAPI/kgapi/latitude/kgapilatitude_export.h +include/KPim5/KGAPI/kgapi/latitude/latitude.h +include/KPim5/KGAPI/kgapi/latitude/location.h +include/KPim5/KGAPI/kgapi/latitude/locationcreatejob.h +include/KPim5/KGAPI/kgapi/latitude/locationdeletejob.h +include/KPim5/KGAPI/kgapi/latitude/locationfetchhistoryjob.h +include/KPim5/KGAPI/kgapi/latitude/locationfetchjob.h +include/KPim5/KGAPI/kgapi/maps/kgapimaps_export.h +include/KPim5/KGAPI/kgapi/maps/staticmapmarker.h +include/KPim5/KGAPI/kgapi/maps/staticmappath.h +include/KPim5/KGAPI/kgapi/maps/staticmaptilefetchjob.h +include/KPim5/KGAPI/kgapi/maps/staticmapurl.h +include/KPim5/KGAPI/kgapi/modifyjob.h +include/KPim5/KGAPI/kgapi/object.h +include/KPim5/KGAPI/kgapi/people/address.h +include/KPim5/KGAPI/kgapi/people/agerangetype.h +include/KPim5/KGAPI/kgapi/people/biography.h +include/KPim5/KGAPI/kgapi/people/birthday.h +include/KPim5/KGAPI/kgapi/people/braggingrights.h +include/KPim5/KGAPI/kgapi/people/calendarurl.h +include/KPim5/KGAPI/kgapi/people/clientdata.h +include/KPim5/KGAPI/kgapi/people/contactgroup.h +include/KPim5/KGAPI/kgapi/people/contactgroupcreatejob.h +include/KPim5/KGAPI/kgapi/people/contactgroupdeletejob.h +include/KPim5/KGAPI/kgapi/people/contactgroupfetchjob.h +include/KPim5/KGAPI/kgapi/people/contactgroupmembership.h +include/KPim5/KGAPI/kgapi/people/contactgroupmetadata.h +include/KPim5/KGAPI/kgapi/people/contactgroupmodifyjob.h +include/KPim5/KGAPI/kgapi/people/coverphoto.h +include/KPim5/KGAPI/kgapi/people/domainmembership.h +include/KPim5/KGAPI/kgapi/people/emailaddress.h +include/KPim5/KGAPI/kgapi/people/event.h +include/KPim5/KGAPI/kgapi/people/externalid.h +include/KPim5/KGAPI/kgapi/people/fieldmetadata.h +include/KPim5/KGAPI/kgapi/people/fileas.h +include/KPim5/KGAPI/kgapi/people/gender.h +include/KPim5/KGAPI/kgapi/people/groupclientdata.h +include/KPim5/KGAPI/kgapi/people/imclient.h +include/KPim5/KGAPI/kgapi/people/interest.h +include/KPim5/KGAPI/kgapi/people/kgapipeople_export.h +include/KPim5/KGAPI/kgapi/people/location.h +include/KPim5/KGAPI/kgapi/people/membership.h +include/KPim5/KGAPI/kgapi/people/misckeyword.h +include/KPim5/KGAPI/kgapi/people/name.h +include/KPim5/KGAPI/kgapi/people/nickname.h +include/KPim5/KGAPI/kgapi/people/occupation.h +include/KPim5/KGAPI/kgapi/people/organization.h +include/KPim5/KGAPI/kgapi/people/person.h +include/KPim5/KGAPI/kgapi/people/personcreatejob.h +include/KPim5/KGAPI/kgapi/people/persondeletejob.h +include/KPim5/KGAPI/kgapi/people/personfetchjob.h +include/KPim5/KGAPI/kgapi/people/personlocale.h +include/KPim5/KGAPI/kgapi/people/personmetadata.h +include/KPim5/KGAPI/kgapi/people/personmodifyjob.h +include/KPim5/KGAPI/kgapi/people/personphotodeletejob.h +include/KPim5/KGAPI/kgapi/people/personphotoupdatejob.h +include/KPim5/KGAPI/kgapi/people/phonenumber.h +include/KPim5/KGAPI/kgapi/people/photo.h +include/KPim5/KGAPI/kgapi/people/profilemetadata.h +include/KPim5/KGAPI/kgapi/people/relation.h +include/KPim5/KGAPI/kgapi/people/relationshipinterest.h +include/KPim5/KGAPI/kgapi/people/relationshipstatus.h +include/KPim5/KGAPI/kgapi/people/residence.h +include/KPim5/KGAPI/kgapi/people/sipaddress.h +include/KPim5/KGAPI/kgapi/people/skill.h +include/KPim5/KGAPI/kgapi/people/source.h +include/KPim5/KGAPI/kgapi/people/tagline.h +include/KPim5/KGAPI/kgapi/people/url.h +include/KPim5/KGAPI/kgapi/people/userdefined.h +include/KPim5/KGAPI/kgapi/tasks/kgapitasks_export.h +include/KPim5/KGAPI/kgapi/tasks/task.h +include/KPim5/KGAPI/kgapi/tasks/taskcreatejob.h +include/KPim5/KGAPI/kgapi/tasks/taskdeletejob.h +include/KPim5/KGAPI/kgapi/tasks/taskfetchjob.h +include/KPim5/KGAPI/kgapi/tasks/tasklist.h +include/KPim5/KGAPI/kgapi/tasks/tasklistcreatejob.h +include/KPim5/KGAPI/kgapi/tasks/tasklistdeletejob.h +include/KPim5/KGAPI/kgapi/tasks/tasklistfetchjob.h +include/KPim5/KGAPI/kgapi/tasks/tasklistmodifyjob.h +include/KPim5/KGAPI/kgapi/tasks/taskmodifyjob.h +include/KPim5/KGAPI/kgapi/tasks/taskmovejob.h +include/KPim5/KGAPI/kgapi/types.h +include/KPim5/KGAPI/kgapi/utils.h +include/KPim5/kgapi_version.h +lib/cmake/KPim5GAPI/KPim5GAPIConfig.cmake +lib/cmake/KPim5GAPI/KPim5GAPIConfigVersion.cmake +lib/cmake/KPim5GAPI/KPim5GAPITargets-%%CMAKE_BUILD_TYPE%%.cmake +lib/cmake/KPim5GAPI/KPim5GAPITargets.cmake +lib/cmake/KPimGAPI/KPim5GAPITargets-%%CMAKE_BUILD_TYPE%%.cmake +lib/cmake/KPimGAPI/KPim5GAPITargets.cmake lib/cmake/KPimGAPI/KPimGAPIConfig.cmake lib/cmake/KPimGAPI/KPimGAPIConfigVersion.cmake -lib/cmake/KPimGAPI/KPimGAPITargets-%%CMAKE_BUILD_TYPE%%.cmake -lib/cmake/KPimGAPI/KPimGAPITargets.cmake -lib/libKPimGAPIBlogger.so -lib/libKPimGAPIBlogger.so.5 -lib/libKPimGAPIBlogger.so.%%KDE_APPLICATIONS_SHLIB_VER%% -lib/libKPimGAPICalendar.so -lib/libKPimGAPICalendar.so.5 -lib/libKPimGAPICalendar.so.%%KDE_APPLICATIONS_SHLIB_VER%% -lib/libKPimGAPIContacts.so -lib/libKPimGAPIContacts.so.5 -lib/libKPimGAPIContacts.so.%%KDE_APPLICATIONS_SHLIB_VER%% -lib/libKPimGAPICore.so -lib/libKPimGAPICore.so.5 -lib/libKPimGAPICore.so.%%KDE_APPLICATIONS_SHLIB_VER%% -lib/libKPimGAPIDrive.so -lib/libKPimGAPIDrive.so.5 -lib/libKPimGAPIDrive.so.%%KDE_APPLICATIONS_SHLIB_VER%% -lib/libKPimGAPILatitude.so -lib/libKPimGAPILatitude.so.5 -lib/libKPimGAPILatitude.so.%%KDE_APPLICATIONS_SHLIB_VER%% -lib/libKPimGAPIMaps.so -lib/libKPimGAPIMaps.so.5 -lib/libKPimGAPIMaps.so.%%KDE_APPLICATIONS_SHLIB_VER%% -lib/libKPimGAPITasks.so -lib/libKPimGAPITasks.so.5 -lib/libKPimGAPITasks.so.%%KDE_APPLICATIONS_SHLIB_VER%% +lib/libKPim5GAPIBlogger.so +lib/libKPim5GAPIBlogger.so.5 +lib/libKPim5GAPIBlogger.so.%%KDE_APPLICATIONS_SHLIB_VER%% +lib/libKPim5GAPICalendar.so +lib/libKPim5GAPICalendar.so.5 +lib/libKPim5GAPICalendar.so.%%KDE_APPLICATIONS_SHLIB_VER%% +lib/libKPim5GAPICore.so +lib/libKPim5GAPICore.so.5 +lib/libKPim5GAPICore.so.%%KDE_APPLICATIONS_SHLIB_VER%% +lib/libKPim5GAPIDrive.so +lib/libKPim5GAPIDrive.so.5 +lib/libKPim5GAPIDrive.so.%%KDE_APPLICATIONS_SHLIB_VER%% +lib/libKPim5GAPILatitude.so +lib/libKPim5GAPILatitude.so.5 +lib/libKPim5GAPILatitude.so.%%KDE_APPLICATIONS_SHLIB_VER%% +lib/libKPim5GAPIMaps.so +lib/libKPim5GAPIMaps.so.5 +lib/libKPim5GAPIMaps.so.%%KDE_APPLICATIONS_SHLIB_VER%% +lib/libKPim5GAPIPeople.so +lib/libKPim5GAPIPeople.so.5 +lib/libKPim5GAPIPeople.so.%%KDE_APPLICATIONS_SHLIB_VER%% +lib/libKPim5GAPITasks.so +lib/libKPim5GAPITasks.so.5 +lib/libKPim5GAPITasks.so.%%KDE_APPLICATIONS_SHLIB_VER%% %%QT_MKSPECDIR%%/modules/qt_KGAPIBlogger.pri %%QT_MKSPECDIR%%/modules/qt_KGAPICalendar.pri -%%QT_MKSPECDIR%%/modules/qt_KGAPIContacts.pri %%QT_MKSPECDIR%%/modules/qt_KGAPICore.pri %%QT_MKSPECDIR%%/modules/qt_KGAPIDrive.pri %%QT_MKSPECDIR%%/modules/qt_KGAPILatitude.pri %%QT_MKSPECDIR%%/modules/qt_KGAPIMaps.pri +%%QT_MKSPECDIR%%/modules/qt_KGAPIPeople.pri %%QT_MKSPECDIR%%/modules/qt_KGAPITasks.pri lib/sasl2/libkdexoauth2.so lib/sasl2/libkdexoauth2.so.3 lib/sasl2/libkdexoauth2.so.3.0.0 share/locale/ar/LC_MESSAGES/libkgapi_qt.qm share/locale/bs/LC_MESSAGES/libkgapi_qt.qm share/locale/ca/LC_MESSAGES/libkgapi_qt.qm share/locale/ca@valencia/LC_MESSAGES/libkgapi_qt.qm share/locale/cs/LC_MESSAGES/libkgapi_qt.qm share/locale/da/LC_MESSAGES/libkgapi_qt.qm share/locale/de/LC_MESSAGES/libkgapi_qt.qm share/locale/el/LC_MESSAGES/libkgapi_qt.qm share/locale/en_GB/LC_MESSAGES/libkgapi_qt.qm share/locale/es/LC_MESSAGES/libkgapi_qt.qm share/locale/et/LC_MESSAGES/libkgapi_qt.qm share/locale/eu/LC_MESSAGES/libkgapi_qt.qm share/locale/fi/LC_MESSAGES/libkgapi_qt.qm share/locale/fr/LC_MESSAGES/libkgapi_qt.qm share/locale/ga/LC_MESSAGES/libkgapi_qt.qm share/locale/gl/LC_MESSAGES/libkgapi_qt.qm share/locale/hu/LC_MESSAGES/libkgapi_qt.qm share/locale/ia/LC_MESSAGES/libkgapi_qt.qm share/locale/it/LC_MESSAGES/libkgapi_qt.qm share/locale/ja/LC_MESSAGES/libkgapi_qt.qm share/locale/ka/LC_MESSAGES/libkgapi_qt.qm share/locale/kk/LC_MESSAGES/libkgapi_qt.qm share/locale/km/LC_MESSAGES/libkgapi_qt.qm share/locale/ko/LC_MESSAGES/libkgapi_qt.qm share/locale/lt/LC_MESSAGES/libkgapi_qt.qm share/locale/mr/LC_MESSAGES/libkgapi_qt.qm share/locale/nb/LC_MESSAGES/libkgapi_qt.qm share/locale/nds/LC_MESSAGES/libkgapi_qt.qm share/locale/nl/LC_MESSAGES/libkgapi_qt.qm share/locale/nn/LC_MESSAGES/libkgapi_qt.qm share/locale/pl/LC_MESSAGES/libkgapi_qt.qm share/locale/pt/LC_MESSAGES/libkgapi_qt.qm share/locale/pt_BR/LC_MESSAGES/libkgapi_qt.qm share/locale/ro/LC_MESSAGES/libkgapi_qt.qm share/locale/ru/LC_MESSAGES/libkgapi_qt.qm share/locale/sk/LC_MESSAGES/libkgapi_qt.qm share/locale/sl/LC_MESSAGES/libkgapi_qt.qm share/locale/sr/LC_MESSAGES/libkgapi_qt.qm share/locale/sr@ijekavian/LC_MESSAGES/libkgapi_qt.qm share/locale/sr@ijekavianlatin/LC_MESSAGES/libkgapi_qt.qm share/locale/sr@latin/LC_MESSAGES/libkgapi_qt.qm share/locale/sv/LC_MESSAGES/libkgapi_qt.qm share/locale/tr/LC_MESSAGES/libkgapi_qt.qm share/locale/ug/LC_MESSAGES/libkgapi_qt.qm share/locale/uk/LC_MESSAGES/libkgapi_qt.qm share/locale/zh_CN/LC_MESSAGES/libkgapi_qt.qm share/locale/zh_TW/LC_MESSAGES/libkgapi_qt.qm share/qlogging-categories5/libkgapi.categories diff --git a/net/libksieve/distinfo b/net/libksieve/distinfo index 1cde577853df..5936c17d73b2 100644 --- a/net/libksieve/distinfo +++ b/net/libksieve/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1677828416 -SHA256 (KDE/release-service/22.12.3/libksieve-22.12.3.tar.xz) = 04a8910d215e0aaac9cf38f27f50c65adb7ed15fe3040d70e56e55a69d4b9011 -SIZE (KDE/release-service/22.12.3/libksieve-22.12.3.tar.xz) = 554684 +TIMESTAMP = 1681548248 +SHA256 (KDE/release-service/23.04.0/libksieve-23.04.0.tar.xz) = 146be9aad30c711b6f7666a34ad385aeb91a44f01186838b56d46da393625f1b +SIZE (KDE/release-service/23.04.0/libksieve-23.04.0.tar.xz) = 555520 diff --git a/net/libksieve/pkg-plist b/net/libksieve/pkg-plist index 232d3631ad79..eef15e3db092 100644 --- a/net/libksieve/pkg-plist +++ b/net/libksieve/pkg-plist @@ -1,136 +1,140 @@ -include/KF5/KManageSieve/KManageSieve/SieveJob -include/KF5/KManageSieve/kmanagesieve/kmanagesieve_export.h -include/KF5/KManageSieve/kmanagesieve/sievejob.h include/KF5/KSieve/libksieve_version.h -include/KF5/KSieveUi/KSieveUi/AbstractMoveImapFolderWidget -include/KF5/KSieveUi/KSieveUi/AbstractRegexpEditorLineEdit -include/KF5/KSieveUi/KSieveUi/AbstractSelectEmailLineEdit -include/KF5/KSieveUi/KSieveUi/CheckScriptJob -include/KF5/KSieveUi/KSieveUi/ManageSieveScriptsDialog -include/KF5/KSieveUi/KSieveUi/ManageSieveTreeView -include/KF5/KSieveUi/KSieveUi/ManageSieveWidget -include/KF5/KSieveUi/KSieveUi/MultiImapVacationDialog -include/KF5/KSieveUi/KSieveUi/MultiImapVacationManager -include/KF5/KSieveUi/KSieveUi/RenameScriptJob -include/KF5/KSieveUi/KSieveUi/SieveDebugDialog -include/KF5/KSieveUi/KSieveUi/SieveEditor -include/KF5/KSieveUi/KSieveUi/SieveEditorWidget -include/KF5/KSieveUi/KSieveUi/SieveImapAccountSettings -include/KF5/KSieveUi/KSieveUi/SieveImapInstance -include/KF5/KSieveUi/KSieveUi/SieveImapInstanceInterface -include/KF5/KSieveUi/KSieveUi/SieveImapInstanceInterfaceManager -include/KF5/KSieveUi/KSieveUi/SieveImapPasswordProvider -include/KF5/KSieveUi/KSieveUi/SieveTreeWidgetItem -include/KF5/KSieveUi/KSieveUi/Util -include/KF5/KSieveUi/KSieveUi/VacationManager -include/KF5/KSieveUi/ksieveui/abstractmoveimapfolderwidget.h -include/KF5/KSieveUi/ksieveui/abstractregexpeditorlineedit.h -include/KF5/KSieveUi/ksieveui/abstractselectemaillineedit.h -include/KF5/KSieveUi/ksieveui/checkscriptjob.h -include/KF5/KSieveUi/ksieveui/ksieveui_export.h -include/KF5/KSieveUi/ksieveui/managesievescriptsdialog.h -include/KF5/KSieveUi/ksieveui/managesievetreeview.h -include/KF5/KSieveUi/ksieveui/managesievewidget.h -include/KF5/KSieveUi/ksieveui/multiimapvacationdialog.h -include/KF5/KSieveUi/ksieveui/multiimapvacationmanager.h -include/KF5/KSieveUi/ksieveui/renamescriptjob.h -include/KF5/KSieveUi/ksieveui/sievedebugdialog.h -include/KF5/KSieveUi/ksieveui/sieveeditor.h -include/KF5/KSieveUi/ksieveui/sieveeditorwidget.h -include/KF5/KSieveUi/ksieveui/sieveimapaccountsettings.h -include/KF5/KSieveUi/ksieveui/sieveimapinstance.h -include/KF5/KSieveUi/ksieveui/sieveimapinstanceinterface.h -include/KF5/KSieveUi/ksieveui/sieveimapinstanceinterfacemanager.h -include/KF5/KSieveUi/ksieveui/sieveimappasswordprovider.h -include/KF5/KSieveUi/ksieveui/sievetreewidgetitem.h -include/KF5/KSieveUi/ksieveui/util.h -include/KF5/KSieveUi/ksieveui/util_p.h -include/KF5/KSieveUi/ksieveui/vacationmanager.h +include/KPim5/KManageSieve/KManageSieve/SieveJob +include/KPim5/KManageSieve/kmanagesieve/kmanagesieve_export.h +include/KPim5/KManageSieve/kmanagesieve/sievejob.h +include/KPim5/KSieveUi/KSieveUi/AbstractMoveImapFolderWidget +include/KPim5/KSieveUi/KSieveUi/AbstractRegexpEditorLineEdit +include/KPim5/KSieveUi/KSieveUi/AbstractSelectEmailLineEdit +include/KPim5/KSieveUi/KSieveUi/CheckScriptJob +include/KPim5/KSieveUi/KSieveUi/ManageSieveScriptsDialog +include/KPim5/KSieveUi/KSieveUi/ManageSieveTreeView +include/KPim5/KSieveUi/KSieveUi/ManageSieveWidget +include/KPim5/KSieveUi/KSieveUi/MultiImapVacationDialog +include/KPim5/KSieveUi/KSieveUi/MultiImapVacationManager +include/KPim5/KSieveUi/KSieveUi/RenameScriptJob +include/KPim5/KSieveUi/KSieveUi/SieveDebugDialog +include/KPim5/KSieveUi/KSieveUi/SieveEditor +include/KPim5/KSieveUi/KSieveUi/SieveEditorWidget +include/KPim5/KSieveUi/KSieveUi/SieveImapAccountSettings +include/KPim5/KSieveUi/KSieveUi/SieveImapInstance +include/KPim5/KSieveUi/KSieveUi/SieveImapInstanceInterface +include/KPim5/KSieveUi/KSieveUi/SieveImapInstanceInterfaceManager +include/KPim5/KSieveUi/KSieveUi/SieveImapPasswordProvider +include/KPim5/KSieveUi/KSieveUi/SieveTreeWidgetItem +include/KPim5/KSieveUi/KSieveUi/Util +include/KPim5/KSieveUi/KSieveUi/VacationManager +include/KPim5/KSieveUi/ksieveui/abstractmoveimapfolderwidget.h +include/KPim5/KSieveUi/ksieveui/abstractregexpeditorlineedit.h +include/KPim5/KSieveUi/ksieveui/abstractselectemaillineedit.h +include/KPim5/KSieveUi/ksieveui/checkscriptjob.h +include/KPim5/KSieveUi/ksieveui/ksieveui_export.h +include/KPim5/KSieveUi/ksieveui/managesievescriptsdialog.h +include/KPim5/KSieveUi/ksieveui/managesievetreeview.h +include/KPim5/KSieveUi/ksieveui/managesievewidget.h +include/KPim5/KSieveUi/ksieveui/multiimapvacationdialog.h +include/KPim5/KSieveUi/ksieveui/multiimapvacationmanager.h +include/KPim5/KSieveUi/ksieveui/renamescriptjob.h +include/KPim5/KSieveUi/ksieveui/sievedebugdialog.h +include/KPim5/KSieveUi/ksieveui/sieveeditor.h +include/KPim5/KSieveUi/ksieveui/sieveeditorwidget.h +include/KPim5/KSieveUi/ksieveui/sieveimapaccountsettings.h +include/KPim5/KSieveUi/ksieveui/sieveimapinstance.h +include/KPim5/KSieveUi/ksieveui/sieveimapinstanceinterface.h +include/KPim5/KSieveUi/ksieveui/sieveimapinstanceinterfacemanager.h +include/KPim5/KSieveUi/ksieveui/sieveimappasswordprovider.h +include/KPim5/KSieveUi/ksieveui/sievetreewidgetitem.h +include/KPim5/KSieveUi/ksieveui/util.h +include/KPim5/KSieveUi/ksieveui/util_p.h +include/KPim5/KSieveUi/ksieveui/vacationmanager.h lib/cmake/KF5LibKSieve/KF5LibKSieveConfig.cmake lib/cmake/KF5LibKSieve/KF5LibKSieveConfigVersion.cmake -lib/cmake/KF5LibKSieve/KF5LibKSieveTargets-%%CMAKE_BUILD_TYPE%%.cmake -lib/cmake/KF5LibKSieve/KF5LibKSieveTargets.cmake -lib/libKF5KManageSieve.so -lib/libKF5KManageSieve.so.5 -lib/libKF5KManageSieve.so.%%KDE_APPLICATIONS_SHLIB_VER%% -lib/libKF5KSieve.so -lib/libKF5KSieve.so.5 -lib/libKF5KSieve.so.%%KDE_APPLICATIONS_SHLIB_VER%% -lib/libKF5KSieveUi.so -lib/libKF5KSieveUi.so.5 -lib/libKF5KSieveUi.so.%%KDE_APPLICATIONS_SHLIB_VER%% +lib/cmake/KF5LibKSieve/KPim5LibKSieveTargets-%%CMAKE_BUILD_TYPE%%.cmake +lib/cmake/KF5LibKSieve/KPim5LibKSieveTargets.cmake +lib/cmake/KPim5LibKSieve/KPim5LibKSieveConfig.cmake +lib/cmake/KPim5LibKSieve/KPim5LibKSieveConfigVersion.cmake +lib/cmake/KPim5LibKSieve/KPim5LibKSieveTargets-%%CMAKE_BUILD_TYPE%%.cmake +lib/cmake/KPim5LibKSieve/KPim5LibKSieveTargets.cmake +lib/libKPim5KManageSieve.so +lib/libKPim5KManageSieve.so.5 +lib/libKPim5KManageSieve.so.%%KDE_APPLICATIONS_SHLIB_VER%% +lib/libKPim5KSieve.so +lib/libKPim5KSieve.so.5 +lib/libKPim5KSieve.so.%%KDE_APPLICATIONS_SHLIB_VER%% +lib/libKPim5KSieveUi.so +lib/libKPim5KSieveUi.so.5 +lib/libKPim5KSieveUi.so.%%KDE_APPLICATIONS_SHLIB_VER%% %%QT_MKSPECDIR%%/modules/qt_KManageSieve.pri %%QT_MKSPECDIR%%/modules/qt_KSieveUi.pri share/knsrcfiles/ksieve_script.knsrc share/locale/ar/LC_MESSAGES/libksieve.mo share/locale/be/LC_MESSAGES/libksieve.mo share/locale/bg/LC_MESSAGES/libksieve.mo share/locale/br/LC_MESSAGES/libksieve.mo share/locale/bs/LC_MESSAGES/libksieve.mo share/locale/ca/LC_MESSAGES/libksieve.mo share/locale/ca@valencia/LC_MESSAGES/libksieve.mo share/locale/cs/LC_MESSAGES/libksieve.mo share/locale/cy/LC_MESSAGES/libksieve.mo share/locale/da/LC_MESSAGES/libksieve.mo share/locale/de/LC_MESSAGES/libksieve.mo share/locale/el/LC_MESSAGES/libksieve.mo share/locale/en_GB/LC_MESSAGES/libksieve.mo share/locale/eo/LC_MESSAGES/libksieve.mo share/locale/es/LC_MESSAGES/libksieve.mo share/locale/et/LC_MESSAGES/libksieve.mo share/locale/eu/LC_MESSAGES/libksieve.mo share/locale/fa/LC_MESSAGES/libksieve.mo share/locale/fi/LC_MESSAGES/libksieve.mo share/locale/fr/LC_MESSAGES/libksieve.mo share/locale/fy/LC_MESSAGES/libksieve.mo share/locale/ga/LC_MESSAGES/libksieve.mo share/locale/gl/LC_MESSAGES/libksieve.mo share/locale/hi/LC_MESSAGES/libksieve.mo share/locale/hne/LC_MESSAGES/libksieve.mo share/locale/hu/LC_MESSAGES/libksieve.mo share/locale/ia/LC_MESSAGES/libksieve.mo share/locale/is/LC_MESSAGES/libksieve.mo share/locale/it/LC_MESSAGES/libksieve.mo share/locale/ja/LC_MESSAGES/libksieve.mo share/locale/ka/LC_MESSAGES/libksieve.mo share/locale/kk/LC_MESSAGES/libksieve.mo share/locale/km/LC_MESSAGES/libksieve.mo share/locale/ko/LC_MESSAGES/libksieve.mo share/locale/lt/LC_MESSAGES/libksieve.mo share/locale/lv/LC_MESSAGES/libksieve.mo share/locale/mk/LC_MESSAGES/libksieve.mo share/locale/mr/LC_MESSAGES/libksieve.mo share/locale/ms/LC_MESSAGES/libksieve.mo share/locale/nb/LC_MESSAGES/libksieve.mo share/locale/nds/LC_MESSAGES/libksieve.mo share/locale/ne/LC_MESSAGES/libksieve.mo share/locale/nl/LC_MESSAGES/libksieve.mo share/locale/nn/LC_MESSAGES/libksieve.mo share/locale/pa/LC_MESSAGES/libksieve.mo share/locale/pl/LC_MESSAGES/libksieve.mo share/locale/pt/LC_MESSAGES/libksieve.mo share/locale/pt_BR/LC_MESSAGES/libksieve.mo share/locale/ro/LC_MESSAGES/libksieve.mo share/locale/ru/LC_MESSAGES/libksieve.mo share/locale/se/LC_MESSAGES/libksieve.mo share/locale/sk/LC_MESSAGES/libksieve.mo share/locale/sl/LC_MESSAGES/libksieve.mo share/locale/sq/LC_MESSAGES/libksieve.mo share/locale/sr/LC_MESSAGES/libksieve.mo share/locale/sr@ijekavian/LC_MESSAGES/libksieve.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/libksieve.mo share/locale/sr@latin/LC_MESSAGES/libksieve.mo share/locale/sv/LC_MESSAGES/libksieve.mo share/locale/ta/LC_MESSAGES/libksieve.mo share/locale/tg/LC_MESSAGES/libksieve.mo share/locale/tr/LC_MESSAGES/libksieve.mo share/locale/ug/LC_MESSAGES/libksieve.mo share/locale/uk/LC_MESSAGES/libksieve.mo share/locale/uz/LC_MESSAGES/libksieve.mo share/locale/uz@cyrillic/LC_MESSAGES/libksieve.mo share/locale/zh_CN/LC_MESSAGES/libksieve.mo share/locale/zh_TW/LC_MESSAGES/libksieve.mo share/qlogging-categories5/libksieve.categories share/qlogging-categories5/libksieve.renamecategories share/sieve/scripts/copy/template.desktop share/sieve/scripts/copy/template.txt diff --git a/net/mailcommon/distinfo b/net/mailcommon/distinfo index e6b147401c70..4de4e5aedf9a 100644 --- a/net/mailcommon/distinfo +++ b/net/mailcommon/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1677828423 -SHA256 (KDE/release-service/22.12.3/mailcommon-22.12.3.tar.xz) = 4efd6ab7b384abc4fb795f831efaea7d821dabce71b9e8b95fe0f0b00ad4ce0d -SIZE (KDE/release-service/22.12.3/mailcommon-22.12.3.tar.xz) = 757696 +TIMESTAMP = 1681548247 +SHA256 (KDE/release-service/23.04.0/mailcommon-23.04.0.tar.xz) = f4ea4dcccaf5c35cb96e374e01ca8d6e40c2a92bd6e661834685a451cfc75951 +SIZE (KDE/release-service/23.04.0/mailcommon-23.04.0.tar.xz) = 758104 diff --git a/net/mailcommon/pkg-plist b/net/mailcommon/pkg-plist index e1d5d6b76baf..b44d29420992 100644 --- a/net/mailcommon/pkg-plist +++ b/net/mailcommon/pkg-plist @@ -1,168 +1,172 @@ -include/KF5/MailCommon/MailCommon/AccountConfigOrderDialog -include/KF5/MailCommon/MailCommon/AddTagDialog -include/KF5/MailCommon/MailCommon/BackupJob -include/KF5/MailCommon/MailCommon/CollectionExpiryPage -include/KF5/MailCommon/MailCommon/CollectionExpiryWidget -include/KF5/MailCommon/MailCommon/CollectionGeneralPage -include/KF5/MailCommon/MailCommon/CollectionGeneralWidget -include/KF5/MailCommon/MailCommon/CollectionTemplatesWidget -include/KF5/MailCommon/MailCommon/CollectionViewWidget -include/KF5/MailCommon/MailCommon/CryptoUtils -include/KF5/MailCommon/MailCommon/DBusOperators -include/KF5/MailCommon/MailCommon/ExpireCollectionAttribute -include/KF5/MailCommon/MailCommon/FavoriteCollectionOrderProxyModel -include/KF5/MailCommon/MailCommon/FavoriteCollectionWidget -include/KF5/MailCommon/MailCommon/FilterAction -include/KF5/MailCommon/MailCommon/FilterActionDict -include/KF5/MailCommon/MailCommon/FilterImporterAbstract -include/KF5/MailCommon/MailCommon/FilterImporterBalsa -include/KF5/MailCommon/MailCommon/FilterImporterClawsMail -include/KF5/MailCommon/MailCommon/FilterImporterExporter -include/KF5/MailCommon/MailCommon/FilterImporterPathCache -include/KF5/MailCommon/MailCommon/FilterLog -include/KF5/MailCommon/MailCommon/FilterManager -include/KF5/MailCommon/MailCommon/FolderCollectionMonitor -include/KF5/MailCommon/MailCommon/FolderJob -include/KF5/MailCommon/MailCommon/FolderRequester -include/KF5/MailCommon/MailCommon/FolderSelectionDialog -include/KF5/MailCommon/MailCommon/FolderSettings -include/KF5/MailCommon/MailCommon/FolderTreeView -include/KF5/MailCommon/MailCommon/FolderTreeWidget -include/KF5/MailCommon/MailCommon/FolderTreeWidgetProxyModel -include/KF5/MailCommon/MailCommon/ItemContext -include/KF5/MailCommon/MailCommon/JobScheduler -include/KF5/MailCommon/MailCommon/KMFilterDialog -include/KF5/MailCommon/MailCommon/MDNWarningJob -include/KF5/MailCommon/MailCommon/MailFilter -include/KF5/MailCommon/MailCommon/MailInterfaces -include/KF5/MailCommon/MailCommon/MailKernel -include/KF5/MailCommon/MailCommon/MailUtil -include/KF5/MailCommon/MailCommon/RedirectDialog -include/KF5/MailCommon/MailCommon/ResourceReadConfigFile -include/KF5/MailCommon/MailCommon/SearchPattern -include/KF5/MailCommon/MailCommon/SearchPatternEdit -include/KF5/MailCommon/MailCommon/SearchRule -include/KF5/MailCommon/MailCommon/SearchRuleStatus -include/KF5/MailCommon/MailCommon/SnippetTreeView -include/KF5/MailCommon/MailCommon/SnippetWidget -include/KF5/MailCommon/MailCommon/SnippetsManager -include/KF5/MailCommon/MailCommon/SnippetsModel -include/KF5/MailCommon/MailCommon/Tag -include/KF5/MailCommon/MailCommon/TagWidget -include/KF5/MailCommon/mailcommon/accountconfigorderdialog.h -include/KF5/MailCommon/mailcommon/addtagdialog.h -include/KF5/MailCommon/mailcommon/backupjob.h -include/KF5/MailCommon/mailcommon/collectionexpirypage.h -include/KF5/MailCommon/mailcommon/collectionexpirywidget.h -include/KF5/MailCommon/mailcommon/collectiongeneralpage.h -include/KF5/MailCommon/mailcommon/collectiongeneralwidget.h -include/KF5/MailCommon/mailcommon/collectiontemplateswidget.h -include/KF5/MailCommon/mailcommon/collectionviewwidget.h -include/KF5/MailCommon/mailcommon/cryptoutils.h -include/KF5/MailCommon/mailcommon/dbusoperators.h -include/KF5/MailCommon/mailcommon/expirecollectionattribute.h -include/KF5/MailCommon/mailcommon/favoritecollectionorderproxymodel.h -include/KF5/MailCommon/mailcommon/favoritecollectionwidget.h -include/KF5/MailCommon/mailcommon/filteraction.h -include/KF5/MailCommon/mailcommon/filteractiondict.h -include/KF5/MailCommon/mailcommon/filterimporterabstract.h -include/KF5/MailCommon/mailcommon/filterimporterbalsa.h -include/KF5/MailCommon/mailcommon/filterimporterclawsmail.h -include/KF5/MailCommon/mailcommon/filterimporterexporter.h -include/KF5/MailCommon/mailcommon/filterimporterpathcache.h -include/KF5/MailCommon/mailcommon/filterlog.h -include/KF5/MailCommon/mailcommon/filtermanager.h -include/KF5/MailCommon/mailcommon/foldercollectionmonitor.h -include/KF5/MailCommon/mailcommon/folderjob.h -include/KF5/MailCommon/mailcommon/folderrequester.h -include/KF5/MailCommon/mailcommon/folderselectiondialog.h -include/KF5/MailCommon/mailcommon/foldersettings.h -include/KF5/MailCommon/mailcommon/foldertreeview.h -include/KF5/MailCommon/mailcommon/foldertreewidget.h -include/KF5/MailCommon/mailcommon/foldertreewidgetproxymodel.h -include/KF5/MailCommon/mailcommon/itemcontext.h -include/KF5/MailCommon/mailcommon/jobscheduler.h -include/KF5/MailCommon/mailcommon/kmfilterdialog.h -include/KF5/MailCommon/mailcommon/mailcommon_export.h -include/KF5/MailCommon/mailcommon/mailcommonsettings_base.h -include/KF5/MailCommon/mailcommon/mailfilter.h -include/KF5/MailCommon/mailcommon/mailinterfaces.h -include/KF5/MailCommon/mailcommon/mailkernel.h -include/KF5/MailCommon/mailcommon/mailutil.h -include/KF5/MailCommon/mailcommon/mdnwarningjob.h -include/KF5/MailCommon/mailcommon/pop3settings.h -include/KF5/MailCommon/mailcommon/redirectdialog.h -include/KF5/MailCommon/mailcommon/resourcereadconfigfile.h -include/KF5/MailCommon/mailcommon/searchpattern.h -include/KF5/MailCommon/mailcommon/searchpatternedit.h -include/KF5/MailCommon/mailcommon/searchrule.h -include/KF5/MailCommon/mailcommon/searchrulestatus.h -include/KF5/MailCommon/mailcommon/snippetsmanager.h -include/KF5/MailCommon/mailcommon/snippetsmodel.h -include/KF5/MailCommon/mailcommon/snippettreeview.h -include/KF5/MailCommon/mailcommon/snippetwidget.h -include/KF5/MailCommon/mailcommon/tag.h -include/KF5/MailCommon/mailcommon/tagwidget.h -include/KF5/MailCommon/mailcommon_export.h -include/KF5/MailCommon/mailcommon_version.h +include/KPim5/MailCommon/MailCommon/AccountConfigOrderDialog +include/KPim5/MailCommon/MailCommon/AddTagDialog +include/KPim5/MailCommon/MailCommon/BackupJob +include/KPim5/MailCommon/MailCommon/CollectionExpiryPage +include/KPim5/MailCommon/MailCommon/CollectionExpiryWidget +include/KPim5/MailCommon/MailCommon/CollectionGeneralPage +include/KPim5/MailCommon/MailCommon/CollectionGeneralWidget +include/KPim5/MailCommon/MailCommon/CollectionTemplatesWidget +include/KPim5/MailCommon/MailCommon/CollectionViewWidget +include/KPim5/MailCommon/MailCommon/CryptoUtils +include/KPim5/MailCommon/MailCommon/DBusOperators +include/KPim5/MailCommon/MailCommon/ExpireCollectionAttribute +include/KPim5/MailCommon/MailCommon/FavoriteCollectionOrderProxyModel +include/KPim5/MailCommon/MailCommon/FavoriteCollectionWidget +include/KPim5/MailCommon/MailCommon/FilterAction +include/KPim5/MailCommon/MailCommon/FilterActionDict +include/KPim5/MailCommon/MailCommon/FilterImporterAbstract +include/KPim5/MailCommon/MailCommon/FilterImporterBalsa +include/KPim5/MailCommon/MailCommon/FilterImporterClawsMail +include/KPim5/MailCommon/MailCommon/FilterImporterExporter +include/KPim5/MailCommon/MailCommon/FilterImporterPathCache +include/KPim5/MailCommon/MailCommon/FilterLog +include/KPim5/MailCommon/MailCommon/FilterManager +include/KPim5/MailCommon/MailCommon/FolderCollectionMonitor +include/KPim5/MailCommon/MailCommon/FolderJob +include/KPim5/MailCommon/MailCommon/FolderRequester +include/KPim5/MailCommon/MailCommon/FolderSelectionDialog +include/KPim5/MailCommon/MailCommon/FolderSettings +include/KPim5/MailCommon/MailCommon/FolderTreeView +include/KPim5/MailCommon/MailCommon/FolderTreeWidget +include/KPim5/MailCommon/MailCommon/FolderTreeWidgetProxyModel +include/KPim5/MailCommon/MailCommon/ItemContext +include/KPim5/MailCommon/MailCommon/JobScheduler +include/KPim5/MailCommon/MailCommon/KMFilterDialog +include/KPim5/MailCommon/MailCommon/MDNWarningJob +include/KPim5/MailCommon/MailCommon/MailFilter +include/KPim5/MailCommon/MailCommon/MailInterfaces +include/KPim5/MailCommon/MailCommon/MailKernel +include/KPim5/MailCommon/MailCommon/MailUtil +include/KPim5/MailCommon/MailCommon/RedirectDialog +include/KPim5/MailCommon/MailCommon/ResourceReadConfigFile +include/KPim5/MailCommon/MailCommon/SearchPattern +include/KPim5/MailCommon/MailCommon/SearchPatternEdit +include/KPim5/MailCommon/MailCommon/SearchRule +include/KPim5/MailCommon/MailCommon/SearchRuleStatus +include/KPim5/MailCommon/MailCommon/SnippetTreeView +include/KPim5/MailCommon/MailCommon/SnippetWidget +include/KPim5/MailCommon/MailCommon/SnippetsManager +include/KPim5/MailCommon/MailCommon/SnippetsModel +include/KPim5/MailCommon/MailCommon/Tag +include/KPim5/MailCommon/MailCommon/TagWidget +include/KPim5/MailCommon/mailcommon/accountconfigorderdialog.h +include/KPim5/MailCommon/mailcommon/addtagdialog.h +include/KPim5/MailCommon/mailcommon/backupjob.h +include/KPim5/MailCommon/mailcommon/collectionexpirypage.h +include/KPim5/MailCommon/mailcommon/collectionexpirywidget.h +include/KPim5/MailCommon/mailcommon/collectiongeneralpage.h +include/KPim5/MailCommon/mailcommon/collectiongeneralwidget.h +include/KPim5/MailCommon/mailcommon/collectiontemplateswidget.h +include/KPim5/MailCommon/mailcommon/collectionviewwidget.h +include/KPim5/MailCommon/mailcommon/cryptoutils.h +include/KPim5/MailCommon/mailcommon/dbusoperators.h +include/KPim5/MailCommon/mailcommon/expirecollectionattribute.h +include/KPim5/MailCommon/mailcommon/favoritecollectionorderproxymodel.h +include/KPim5/MailCommon/mailcommon/favoritecollectionwidget.h +include/KPim5/MailCommon/mailcommon/filteraction.h +include/KPim5/MailCommon/mailcommon/filteractiondict.h +include/KPim5/MailCommon/mailcommon/filterimporterabstract.h +include/KPim5/MailCommon/mailcommon/filterimporterbalsa.h +include/KPim5/MailCommon/mailcommon/filterimporterclawsmail.h +include/KPim5/MailCommon/mailcommon/filterimporterexporter.h +include/KPim5/MailCommon/mailcommon/filterimporterpathcache.h +include/KPim5/MailCommon/mailcommon/filterlog.h +include/KPim5/MailCommon/mailcommon/filtermanager.h +include/KPim5/MailCommon/mailcommon/foldercollectionmonitor.h +include/KPim5/MailCommon/mailcommon/folderjob.h +include/KPim5/MailCommon/mailcommon/folderrequester.h +include/KPim5/MailCommon/mailcommon/folderselectiondialog.h +include/KPim5/MailCommon/mailcommon/foldersettings.h +include/KPim5/MailCommon/mailcommon/foldertreeview.h +include/KPim5/MailCommon/mailcommon/foldertreewidget.h +include/KPim5/MailCommon/mailcommon/foldertreewidgetproxymodel.h +include/KPim5/MailCommon/mailcommon/itemcontext.h +include/KPim5/MailCommon/mailcommon/jobscheduler.h +include/KPim5/MailCommon/mailcommon/kmfilterdialog.h +include/KPim5/MailCommon/mailcommon/mailcommon_export.h +include/KPim5/MailCommon/mailcommon/mailcommonsettings_base.h +include/KPim5/MailCommon/mailcommon/mailfilter.h +include/KPim5/MailCommon/mailcommon/mailinterfaces.h +include/KPim5/MailCommon/mailcommon/mailkernel.h +include/KPim5/MailCommon/mailcommon/mailutil.h +include/KPim5/MailCommon/mailcommon/mdnwarningjob.h +include/KPim5/MailCommon/mailcommon/pop3settings.h +include/KPim5/MailCommon/mailcommon/redirectdialog.h +include/KPim5/MailCommon/mailcommon/resourcereadconfigfile.h +include/KPim5/MailCommon/mailcommon/searchpattern.h +include/KPim5/MailCommon/mailcommon/searchpatternedit.h +include/KPim5/MailCommon/mailcommon/searchrule.h +include/KPim5/MailCommon/mailcommon/searchrulestatus.h +include/KPim5/MailCommon/mailcommon/snippetsmanager.h +include/KPim5/MailCommon/mailcommon/snippetsmodel.h +include/KPim5/MailCommon/mailcommon/snippettreeview.h +include/KPim5/MailCommon/mailcommon/snippetwidget.h +include/KPim5/MailCommon/mailcommon/tag.h +include/KPim5/MailCommon/mailcommon/tagwidget.h +include/KPim5/MailCommon/mailcommon_export.h +include/KPim5/MailCommon/mailcommon_version.h lib/cmake/KF5MailCommon/KF5MailCommonConfig.cmake lib/cmake/KF5MailCommon/KF5MailCommonConfigVersion.cmake -lib/cmake/KF5MailCommon/KF5MailCommonTargets-%%CMAKE_BUILD_TYPE%%.cmake -lib/cmake/KF5MailCommon/KF5MailCommonTargets.cmake -lib/libKF5MailCommon.so -lib/libKF5MailCommon.so.5 -lib/libKF5MailCommon.so.%%KDE_APPLICATIONS_SHLIB_VER%% +lib/cmake/KF5MailCommon/KPim5MailCommonTargets-%%CMAKE_BUILD_TYPE%%.cmake +lib/cmake/KF5MailCommon/KPim5MailCommonTargets.cmake +lib/cmake/KPim5MailCommon/KPim5MailCommonConfig.cmake +lib/cmake/KPim5MailCommon/KPim5MailCommonConfigVersion.cmake +lib/cmake/KPim5MailCommon/KPim5MailCommonTargets-%%CMAKE_BUILD_TYPE%%.cmake +lib/cmake/KPim5MailCommon/KPim5MailCommonTargets.cmake +lib/libKPim5MailCommon.so +lib/libKPim5MailCommon.so.5 +lib/libKPim5MailCommon.so.%%KDE_APPLICATIONS_SHLIB_VER%% %%QT_MKSPECDIR%%/modules/qt_MailCommon.pri -%%QT_PLUGINDIR%%/designer/mailcommonwidgets.so +%%QT_PLUGINDIR%%/designer/mailcommon5widgets.so share/locale/ar/LC_MESSAGES/libmailcommon.mo share/locale/bg/LC_MESSAGES/libmailcommon.mo share/locale/bs/LC_MESSAGES/libmailcommon.mo share/locale/ca/LC_MESSAGES/libmailcommon.mo share/locale/ca@valencia/LC_MESSAGES/libmailcommon.mo share/locale/cs/LC_MESSAGES/libmailcommon.mo share/locale/da/LC_MESSAGES/libmailcommon.mo share/locale/de/LC_MESSAGES/libmailcommon.mo share/locale/el/LC_MESSAGES/libmailcommon.mo share/locale/en_GB/LC_MESSAGES/libmailcommon.mo share/locale/es/LC_MESSAGES/libmailcommon.mo share/locale/et/LC_MESSAGES/libmailcommon.mo share/locale/eu/LC_MESSAGES/libmailcommon.mo share/locale/fi/LC_MESSAGES/libmailcommon.mo share/locale/fr/LC_MESSAGES/libmailcommon.mo share/locale/ga/LC_MESSAGES/libmailcommon.mo share/locale/gl/LC_MESSAGES/libmailcommon.mo share/locale/hr/LC_MESSAGES/libmailcommon.mo share/locale/hu/LC_MESSAGES/libmailcommon.mo share/locale/ia/LC_MESSAGES/libmailcommon.mo share/locale/it/LC_MESSAGES/libmailcommon.mo share/locale/ja/LC_MESSAGES/libmailcommon.mo share/locale/ka/LC_MESSAGES/libmailcommon.mo share/locale/kk/LC_MESSAGES/libmailcommon.mo share/locale/ko/LC_MESSAGES/libmailcommon.mo share/locale/lt/LC_MESSAGES/libmailcommon.mo share/locale/mr/LC_MESSAGES/libmailcommon.mo share/locale/nb/LC_MESSAGES/libmailcommon.mo share/locale/nds/LC_MESSAGES/libmailcommon.mo share/locale/nl/LC_MESSAGES/libmailcommon.mo share/locale/nn/LC_MESSAGES/libmailcommon.mo share/locale/pa/LC_MESSAGES/libmailcommon.mo share/locale/pl/LC_MESSAGES/libmailcommon.mo share/locale/pt/LC_MESSAGES/libmailcommon.mo share/locale/pt_BR/LC_MESSAGES/libmailcommon.mo share/locale/ro/LC_MESSAGES/libmailcommon.mo share/locale/ru/LC_MESSAGES/libmailcommon.mo share/locale/se/LC_MESSAGES/libmailcommon.mo share/locale/sk/LC_MESSAGES/libmailcommon.mo share/locale/sl/LC_MESSAGES/libmailcommon.mo share/locale/sr/LC_MESSAGES/libmailcommon.mo share/locale/sr@ijekavian/LC_MESSAGES/libmailcommon.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/libmailcommon.mo share/locale/sr@latin/LC_MESSAGES/libmailcommon.mo share/locale/sv/LC_MESSAGES/libmailcommon.mo share/locale/tr/LC_MESSAGES/libmailcommon.mo share/locale/ug/LC_MESSAGES/libmailcommon.mo share/locale/uk/LC_MESSAGES/libmailcommon.mo share/locale/zh_CN/LC_MESSAGES/libmailcommon.mo share/locale/zh_TW/LC_MESSAGES/libmailcommon.mo share/qlogging-categories5/mailcommon.categories share/qlogging-categories5/mailcommon.renamecategories diff --git a/net/mailimporter/distinfo b/net/mailimporter/distinfo index edbef16a6fdf..4b80758bef4a 100644 --- a/net/mailimporter/distinfo +++ b/net/mailimporter/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1677828395 -SHA256 (KDE/release-service/22.12.3/mailimporter-22.12.3.tar.xz) = 486eca83580084964949ae2334ef3e3bfd2d9fc1f86dc20aab947c14ec03e444 -SIZE (KDE/release-service/22.12.3/mailimporter-22.12.3.tar.xz) = 588912 +TIMESTAMP = 1681548216 +SHA256 (KDE/release-service/23.04.0/mailimporter-23.04.0.tar.xz) = 52ad8927a1b1f9b155824a26dc7307c04d870b369afa7c1dd0f2736a100402cc +SIZE (KDE/release-service/23.04.0/mailimporter-23.04.0.tar.xz) = 591480 diff --git a/net/mailimporter/pkg-plist b/net/mailimporter/pkg-plist index 3733c71bb4a8..cb2a4d6ea761 100644 --- a/net/mailimporter/pkg-plist +++ b/net/mailimporter/pkg-plist @@ -1,154 +1,160 @@ -include/KF5/MailImporter/MailImporter/FilterBalsa -include/KF5/MailImporter/MailImporter/FilterClawsMail -include/KF5/MailImporter/MailImporter/FilterEvolution -include/KF5/MailImporter/MailImporter/FilterEvolution_v2 -include/KF5/MailImporter/MailImporter/FilterEvolution_v3 -include/KF5/MailImporter/MailImporter/FilterIcedove -include/KF5/MailImporter/MailImporter/FilterImporterBase -include/KF5/MailImporter/MailImporter/FilterInfo -include/KF5/MailImporter/MailImporter/FilterInfoGui -include/KF5/MailImporter/MailImporter/FilterKMailArchive -include/KF5/MailImporter/MailImporter/FilterKMail_maildir -include/KF5/MailImporter/MailImporter/FilterLNotes -include/KF5/MailImporter/MailImporter/FilterMBox -include/KF5/MailImporter/MailImporter/FilterMailApp -include/KF5/MailImporter/MailImporter/FilterMailmanGzip -include/KF5/MailImporter/MailImporter/FilterOE -include/KF5/MailImporter/MailImporter/FilterOpera -include/KF5/MailImporter/MailImporter/FilterPMail -include/KF5/MailImporter/MailImporter/FilterPlain -include/KF5/MailImporter/MailImporter/FilterSeaMonkey -include/KF5/MailImporter/MailImporter/FilterSylpheed -include/KF5/MailImporter/MailImporter/FilterTheBat -include/KF5/MailImporter/MailImporter/FilterThunderbird -include/KF5/MailImporter/MailImporter/Filters -include/KF5/MailImporter/MailImporter/ImportMailsWidget -include/KF5/MailImporter/MailImporter/MailImporter_Utils -include/KF5/MailImporter/MailImporter/MessageStatus -include/KF5/MailImporter/MailImporter/OtherMailerUtil -include/KF5/MailImporter/mailimporter/filterbalsa.h -include/KF5/MailImporter/mailimporter/filterclawsmail.h -include/KF5/MailImporter/mailimporter/filterevolution.h -include/KF5/MailImporter/mailimporter/filterevolution_v2.h -include/KF5/MailImporter/mailimporter/filterevolution_v3.h -include/KF5/MailImporter/mailimporter/filtericedove.h -include/KF5/MailImporter/mailimporter/filterimporterbase.h -include/KF5/MailImporter/mailimporter/filterinfo.h -include/KF5/MailImporter/mailimporter/filterinfogui.h -include/KF5/MailImporter/mailimporter/filterkmail_maildir.h -include/KF5/MailImporter/mailimporter/filterkmailarchive.h -include/KF5/MailImporter/mailimporter/filterlnotes.h -include/KF5/MailImporter/mailimporter/filtermailapp.h -include/KF5/MailImporter/mailimporter/filtermailmangzip.h -include/KF5/MailImporter/mailimporter/filtermbox.h -include/KF5/MailImporter/mailimporter/filteroe.h -include/KF5/MailImporter/mailimporter/filteropera.h -include/KF5/MailImporter/mailimporter/filterplain.h -include/KF5/MailImporter/mailimporter/filterpmail.h -include/KF5/MailImporter/mailimporter/filters.h -include/KF5/MailImporter/mailimporter/filterseamonkey.h -include/KF5/MailImporter/mailimporter/filtersylpheed.h -include/KF5/MailImporter/mailimporter/filterthebat.h -include/KF5/MailImporter/mailimporter/filterthunderbird.h -include/KF5/MailImporter/mailimporter/importmailswidget.h -include/KF5/MailImporter/mailimporter/mailimporter_export.h -include/KF5/MailImporter/mailimporter/mailimporter_utils.h -include/KF5/MailImporter/mailimporter/messagestatus.h -include/KF5/MailImporter/mailimporter/othermailerutil.h -include/KF5/MailImporter/mailimporter_version.h -include/KF5/MailImporterAkonadi/MailImporterAkonadi/FilterImporterAkonadi -include/KF5/MailImporterAkonadi/mailimporterakonadi/filterimporterakonadi.h -include/KF5/MailImporterAkonadi/mailimporterakonadi/mailimporterakonadi_export.h -include/KF5/MailImporterAkonadi/mailimporterakonadi_version.h +include/KPim5/MailImporter/MailImporter/FilterBalsa +include/KPim5/MailImporter/MailImporter/FilterClawsMail +include/KPim5/MailImporter/MailImporter/FilterEvolution +include/KPim5/MailImporter/MailImporter/FilterEvolution_v2 +include/KPim5/MailImporter/MailImporter/FilterEvolution_v3 +include/KPim5/MailImporter/MailImporter/FilterIcedove +include/KPim5/MailImporter/MailImporter/FilterImporterBase +include/KPim5/MailImporter/MailImporter/FilterInfo +include/KPim5/MailImporter/MailImporter/FilterInfoGui +include/KPim5/MailImporter/MailImporter/FilterKMailArchive +include/KPim5/MailImporter/MailImporter/FilterKMail_maildir +include/KPim5/MailImporter/MailImporter/FilterLNotes +include/KPim5/MailImporter/MailImporter/FilterMBox +include/KPim5/MailImporter/MailImporter/FilterMailApp +include/KPim5/MailImporter/MailImporter/FilterMailmanGzip +include/KPim5/MailImporter/MailImporter/FilterOE +include/KPim5/MailImporter/MailImporter/FilterOpera +include/KPim5/MailImporter/MailImporter/FilterPMail +include/KPim5/MailImporter/MailImporter/FilterPlain +include/KPim5/MailImporter/MailImporter/FilterSeaMonkey +include/KPim5/MailImporter/MailImporter/FilterSylpheed +include/KPim5/MailImporter/MailImporter/FilterTheBat +include/KPim5/MailImporter/MailImporter/FilterThunderbird +include/KPim5/MailImporter/MailImporter/Filters +include/KPim5/MailImporter/MailImporter/ImportMailsWidget +include/KPim5/MailImporter/MailImporter/MailImporter_Utils +include/KPim5/MailImporter/MailImporter/MessageStatus +include/KPim5/MailImporter/MailImporter/OtherMailerUtil +include/KPim5/MailImporter/mailimporter/filterbalsa.h +include/KPim5/MailImporter/mailimporter/filterclawsmail.h +include/KPim5/MailImporter/mailimporter/filterevolution.h +include/KPim5/MailImporter/mailimporter/filterevolution_v2.h +include/KPim5/MailImporter/mailimporter/filterevolution_v3.h +include/KPim5/MailImporter/mailimporter/filtericedove.h +include/KPim5/MailImporter/mailimporter/filterimporterbase.h +include/KPim5/MailImporter/mailimporter/filterinfo.h +include/KPim5/MailImporter/mailimporter/filterinfogui.h +include/KPim5/MailImporter/mailimporter/filterkmail_maildir.h +include/KPim5/MailImporter/mailimporter/filterkmailarchive.h +include/KPim5/MailImporter/mailimporter/filterlnotes.h +include/KPim5/MailImporter/mailimporter/filtermailapp.h +include/KPim5/MailImporter/mailimporter/filtermailmangzip.h +include/KPim5/MailImporter/mailimporter/filtermbox.h +include/KPim5/MailImporter/mailimporter/filteroe.h +include/KPim5/MailImporter/mailimporter/filteropera.h +include/KPim5/MailImporter/mailimporter/filterplain.h +include/KPim5/MailImporter/mailimporter/filterpmail.h +include/KPim5/MailImporter/mailimporter/filters.h +include/KPim5/MailImporter/mailimporter/filterseamonkey.h +include/KPim5/MailImporter/mailimporter/filtersylpheed.h +include/KPim5/MailImporter/mailimporter/filterthebat.h +include/KPim5/MailImporter/mailimporter/filterthunderbird.h +include/KPim5/MailImporter/mailimporter/importmailswidget.h +include/KPim5/MailImporter/mailimporter/mailimporter_export.h +include/KPim5/MailImporter/mailimporter/mailimporter_utils.h +include/KPim5/MailImporter/mailimporter/messagestatus.h +include/KPim5/MailImporter/mailimporter/othermailerutil.h +include/KPim5/MailImporter/mailimporter_version.h +include/KPim5/MailImporterAkonadi/MailImporterAkonadi/FilterImporterAkonadi +include/KPim5/MailImporterAkonadi/mailimporterakonadi/filterimporterakonadi.h +include/KPim5/MailImporterAkonadi/mailimporterakonadi/mailimporterakonadi_export.h +include/KPim5/MailImporterAkonadi/mailimporterakonadi_version.h lib/cmake/KF5MailImporter/KF5MailImporterConfig.cmake lib/cmake/KF5MailImporter/KF5MailImporterConfigVersion.cmake -lib/cmake/KF5MailImporter/KF5MailImporterTargets-%%CMAKE_BUILD_TYPE%%.cmake -lib/cmake/KF5MailImporter/KF5MailImporterTargets.cmake lib/cmake/KF5MailImporterAkonadi/KF5MailImporterAkonadiConfig.cmake lib/cmake/KF5MailImporterAkonadi/KF5MailImporterAkonadiConfigVersion.cmake -lib/cmake/KF5MailImporterAkonadi/KF5MailImporterAkonadiTargets-%%CMAKE_BUILD_TYPE%%.cmake -lib/cmake/KF5MailImporterAkonadi/KF5MailImporterAkonadiTargets.cmake -lib/libKF5MailImporter.so -lib/libKF5MailImporter.so.5 -lib/libKF5MailImporter.so.%%KDE_APPLICATIONS_SHLIB_VER%% -lib/libKF5MailImporterAkonadi.so -lib/libKF5MailImporterAkonadi.so.5 -lib/libKF5MailImporterAkonadi.so.%%KDE_APPLICATIONS_SHLIB_VER%% +lib/cmake/KF5MailImporterAkonadi/KPim5MailImporterAkonadiTargets-%%CMAKE_BUILD_TYPE%%.cmake +lib/cmake/KF5MailImporterAkonadi/KPim5MailImporterAkonadiTargets.cmake +lib/cmake/KPim5MailImporter/KPim5MailImporterConfig.cmake +lib/cmake/KPim5MailImporter/KPim5MailImporterConfigVersion.cmake +lib/cmake/KPim5MailImporter/KPim5MailImporterTargets-%%CMAKE_BUILD_TYPE%%.cmake +lib/cmake/KPim5MailImporter/KPim5MailImporterTargets.cmake +lib/cmake/KPim5MailImporterAkonadi/KPim5MailImporterAkonadiConfig.cmake +lib/cmake/KPim5MailImporterAkonadi/KPim5MailImporterAkonadiConfigVersion.cmake +lib/cmake/KPim5MailImporterAkonadi/KPim5MailImporterAkonadiTargets-%%CMAKE_BUILD_TYPE%%.cmake +lib/cmake/KPim5MailImporterAkonadi/KPim5MailImporterAkonadiTargets.cmake +lib/libKPim5MailImporter.so +lib/libKPim5MailImporter.so.5 +lib/libKPim5MailImporter.so.%%KDE_APPLICATIONS_SHLIB_VER%% +lib/libKPim5MailImporterAkonadi.so +lib/libKPim5MailImporterAkonadi.so.5 +lib/libKPim5MailImporterAkonadi.so.%%KDE_APPLICATIONS_SHLIB_VER%% %%QT_MKSPECDIR%%/modules/qt_MailImporter.pri %%QT_MKSPECDIR%%/modules/qt_MailImporterAkonadi.pri share/locale/af/LC_MESSAGES/libmailimporter.mo share/locale/ar/LC_MESSAGES/libmailimporter.mo share/locale/be/LC_MESSAGES/libmailimporter.mo share/locale/bg/LC_MESSAGES/libmailimporter.mo share/locale/br/LC_MESSAGES/libmailimporter.mo share/locale/bs/LC_MESSAGES/libmailimporter.mo share/locale/ca/LC_MESSAGES/libmailimporter.mo share/locale/ca@valencia/LC_MESSAGES/libmailimporter.mo share/locale/cs/LC_MESSAGES/libmailimporter.mo share/locale/cy/LC_MESSAGES/libmailimporter.mo share/locale/da/LC_MESSAGES/libmailimporter.mo share/locale/de/LC_MESSAGES/libmailimporter.mo share/locale/el/LC_MESSAGES/libmailimporter.mo share/locale/en_GB/LC_MESSAGES/libmailimporter.mo share/locale/eo/LC_MESSAGES/libmailimporter.mo share/locale/es/LC_MESSAGES/libmailimporter.mo share/locale/et/LC_MESSAGES/libmailimporter.mo share/locale/eu/LC_MESSAGES/libmailimporter.mo share/locale/fa/LC_MESSAGES/libmailimporter.mo share/locale/fi/LC_MESSAGES/libmailimporter.mo share/locale/fr/LC_MESSAGES/libmailimporter.mo share/locale/fy/LC_MESSAGES/libmailimporter.mo share/locale/ga/LC_MESSAGES/libmailimporter.mo share/locale/gl/LC_MESSAGES/libmailimporter.mo share/locale/he/LC_MESSAGES/libmailimporter.mo share/locale/hi/LC_MESSAGES/libmailimporter.mo share/locale/hne/LC_MESSAGES/libmailimporter.mo share/locale/hr/LC_MESSAGES/libmailimporter.mo share/locale/hsb/LC_MESSAGES/libmailimporter.mo share/locale/hu/LC_MESSAGES/libmailimporter.mo share/locale/ia/LC_MESSAGES/libmailimporter.mo share/locale/ie/LC_MESSAGES/libmailimporter.mo share/locale/is/LC_MESSAGES/libmailimporter.mo share/locale/it/LC_MESSAGES/libmailimporter.mo share/locale/ja/LC_MESSAGES/libmailimporter.mo share/locale/ka/LC_MESSAGES/libmailimporter.mo share/locale/kk/LC_MESSAGES/libmailimporter.mo share/locale/km/LC_MESSAGES/libmailimporter.mo share/locale/ko/LC_MESSAGES/libmailimporter.mo share/locale/lt/LC_MESSAGES/libmailimporter.mo share/locale/lv/LC_MESSAGES/libmailimporter.mo share/locale/mai/LC_MESSAGES/libmailimporter.mo share/locale/mk/LC_MESSAGES/libmailimporter.mo share/locale/mr/LC_MESSAGES/libmailimporter.mo share/locale/ms/LC_MESSAGES/libmailimporter.mo share/locale/nb/LC_MESSAGES/libmailimporter.mo share/locale/nds/LC_MESSAGES/libmailimporter.mo share/locale/ne/LC_MESSAGES/libmailimporter.mo share/locale/nl/LC_MESSAGES/libmailimporter.mo share/locale/nn/LC_MESSAGES/libmailimporter.mo share/locale/pa/LC_MESSAGES/libmailimporter.mo share/locale/pl/LC_MESSAGES/libmailimporter.mo share/locale/pt/LC_MESSAGES/libmailimporter.mo share/locale/pt_BR/LC_MESSAGES/libmailimporter.mo share/locale/ro/LC_MESSAGES/libmailimporter.mo share/locale/ru/LC_MESSAGES/libmailimporter.mo share/locale/se/LC_MESSAGES/libmailimporter.mo share/locale/sk/LC_MESSAGES/libmailimporter.mo share/locale/sl/LC_MESSAGES/libmailimporter.mo share/locale/sq/LC_MESSAGES/libmailimporter.mo share/locale/sr/LC_MESSAGES/libmailimporter.mo share/locale/sr@ijekavian/LC_MESSAGES/libmailimporter.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/libmailimporter.mo share/locale/sr@latin/LC_MESSAGES/libmailimporter.mo share/locale/sv/LC_MESSAGES/libmailimporter.mo share/locale/ta/LC_MESSAGES/libmailimporter.mo share/locale/tg/LC_MESSAGES/libmailimporter.mo share/locale/th/LC_MESSAGES/libmailimporter.mo share/locale/tr/LC_MESSAGES/libmailimporter.mo share/locale/ug/LC_MESSAGES/libmailimporter.mo share/locale/uk/LC_MESSAGES/libmailimporter.mo share/locale/xh/LC_MESSAGES/libmailimporter.mo share/locale/zh_CN/LC_MESSAGES/libmailimporter.mo share/locale/zh_TW/LC_MESSAGES/libmailimporter.mo share/qlogging-categories5/mailimporter.categories share/qlogging-categories5/mailimporter.renamecategories diff --git a/net/messagelib/distinfo b/net/messagelib/distinfo index 9ccb433ca2ec..e0e3b92d1889 100644 --- a/net/messagelib/distinfo +++ b/net/messagelib/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1677828407 -SHA256 (KDE/release-service/22.12.3/messagelib-22.12.3.tar.xz) = 55d6be5205fb9c9f1c546d241164fe56e527e26e852f86af740cdc850b3d82a6 -SIZE (KDE/release-service/22.12.3/messagelib-22.12.3.tar.xz) = 11315152 +TIMESTAMP = 1681548233 +SHA256 (KDE/release-service/23.04.0/messagelib-23.04.0.tar.xz) = 9f6263f032e8f93da2cf6e68da6f477587ab720020f46b7fb62cc71840f1afde +SIZE (KDE/release-service/23.04.0/messagelib-23.04.0.tar.xz) = 11308780 diff --git a/net/messagelib/pkg-plist b/net/messagelib/pkg-plist index 20e6a7676f37..23089a6d19dd 100644 --- a/net/messagelib/pkg-plist +++ b/net/messagelib/pkg-plist @@ -1,1035 +1,1036 @@ -include/KF5/MessageComposer/MessageComposer/AbstractEncryptJob -include/KF5/MessageComposer/MessageComposer/AkonadiSender -include/KF5/MessageComposer/MessageComposer/AliasesExpandJob -include/KF5/MessageComposer/MessageComposer/AttachmentClipBoardJob -include/KF5/MessageComposer/MessageComposer/AttachmentControllerBase -include/KF5/MessageComposer/MessageComposer/AttachmentFromPublicKeyJob -include/KF5/MessageComposer/MessageComposer/AttachmentJob -include/KF5/MessageComposer/MessageComposer/AttachmentModel -include/KF5/MessageComposer/MessageComposer/AttachmentVcardFromAddressBookJob -include/KF5/MessageComposer/MessageComposer/AutocryptHeadersJob -include/KF5/MessageComposer/MessageComposer/Composer -include/KF5/MessageComposer/MessageComposer/ComposerAttachmentInterface -include/KF5/MessageComposer/MessageComposer/ComposerLineEdit -include/KF5/MessageComposer/MessageComposer/ComposerViewBase -include/KF5/MessageComposer/MessageComposer/ComposerViewInterface -include/KF5/MessageComposer/MessageComposer/ContactPreference -include/KF5/MessageComposer/MessageComposer/ContentJobBase -include/KF5/MessageComposer/MessageComposer/ConvertSnippetVariableMenu -include/KF5/MessageComposer/MessageComposer/ConvertSnippetVariablesJob -include/KF5/MessageComposer/MessageComposer/ConvertSnippetVariablesUtil -include/KF5/MessageComposer/MessageComposer/DraftStatus -include/KF5/MessageComposer/MessageComposer/EncryptJob -include/KF5/MessageComposer/MessageComposer/FollowUpReminderSelectDateDialog -include/KF5/MessageComposer/MessageComposer/FollowupReminder -include/KF5/MessageComposer/MessageComposer/FollowupReminderCreateJob -include/KF5/MessageComposer/MessageComposer/GlobalPart -include/KF5/MessageComposer/MessageComposer/ImageScalingWidget -include/KF5/MessageComposer/MessageComposer/InfoPart -include/KF5/MessageComposer/MessageComposer/InsertTextFileJob -include/KF5/MessageComposer/MessageComposer/JobBase -include/KF5/MessageComposer/MessageComposer/Kleo_Util -include/KF5/MessageComposer/MessageComposer/MDNAdviceDialog -include/KF5/MessageComposer/MessageComposer/MDNAdviceHelper -include/KF5/MessageComposer/MessageComposer/MDNWarningWidgetJob -include/KF5/MessageComposer/MessageComposer/MainTextJob -include/KF5/MessageComposer/MessageComposer/MessageComposerSettings -include/KF5/MessageComposer/MessageComposer/MessageFactoryNG -include/KF5/MessageComposer/MessageComposer/MessageHelper -include/KF5/MessageComposer/MessageComposer/MessagePart -include/KF5/MessageComposer/MessageComposer/MessageSender -include/KF5/MessageComposer/MessageComposer/MultipartJob -include/KF5/MessageComposer/MessageComposer/NearExpiryChecker -include/KF5/MessageComposer/MessageComposer/PluginActionType -include/KF5/MessageComposer/MessageComposer/PluginComposerInterface -include/KF5/MessageComposer/MessageComposer/PluginEditor -include/KF5/MessageComposer/MessageComposer/PluginEditorBase -include/KF5/MessageComposer/MessageComposer/PluginEditorCheckBeforeSend -include/KF5/MessageComposer/MessageComposer/PluginEditorCheckBeforeSendInterface -include/KF5/MessageComposer/MessageComposer/PluginEditorCheckBeforeSendManager -include/KF5/MessageComposer/MessageComposer/PluginEditorCheckBeforeSendParams -include/KF5/MessageComposer/MessageComposer/PluginEditorConfigureBaseWidget -include/KF5/MessageComposer/MessageComposer/PluginEditorConvertText -include/KF5/MessageComposer/MessageComposer/PluginEditorConvertTextInterface -include/KF5/MessageComposer/MessageComposer/PluginEditorConvertTextManager -include/KF5/MessageComposer/MessageComposer/PluginEditorConverterBeforeConvertingData -include/KF5/MessageComposer/MessageComposer/PluginEditorConverterInitialData -include/KF5/MessageComposer/MessageComposer/PluginEditorGrammarCustomToolsViewInterface -include/KF5/MessageComposer/MessageComposer/PluginEditorGrammarManager -include/KF5/MessageComposer/MessageComposer/PluginEditorInit -include/KF5/MessageComposer/MessageComposer/PluginEditorInitInterface -include/KF5/MessageComposer/MessageComposer/PluginEditorInitManager -include/KF5/MessageComposer/MessageComposer/PluginEditorInterface -include/KF5/MessageComposer/MessageComposer/PluginEditorManager -include/KF5/MessageComposer/MessageComposer/ProtectedHeadersJob -include/KF5/MessageComposer/MessageComposer/Recipient -include/KF5/MessageComposer/MessageComposer/RecipientLine -include/KF5/MessageComposer/MessageComposer/RecipientsEditor -include/KF5/MessageComposer/MessageComposer/RichTextComposerNg -include/KF5/MessageComposer/MessageComposer/RichTextComposerSignatures -include/KF5/MessageComposer/MessageComposer/SaveContactPreferenceJob -include/KF5/MessageComposer/MessageComposer/SendLaterCreateJob -include/KF5/MessageComposer/MessageComposer/SendLaterDialog -include/KF5/MessageComposer/MessageComposer/SendLaterInfo -include/KF5/MessageComposer/MessageComposer/SendLaterJob -include/KF5/MessageComposer/MessageComposer/SendLaterRemoveJob -include/KF5/MessageComposer/MessageComposer/SendLaterUtil -include/KF5/MessageComposer/MessageComposer/SignEncryptJob -include/KF5/MessageComposer/MessageComposer/SignJob -include/KF5/MessageComposer/MessageComposer/SignatureController -include/KF5/MessageComposer/MessageComposer/SinglepartJob -include/KF5/MessageComposer/MessageComposer/SkeletonMessageJob -include/KF5/MessageComposer/MessageComposer/StatusBarLabelToggledState -include/KF5/MessageComposer/MessageComposer/TextPart -include/KF5/MessageComposer/MessageComposer/TransparentJob -include/KF5/MessageComposer/MessageComposer/Util -include/KF5/MessageComposer/messagecomposer/abstractencryptjob.h -include/KF5/MessageComposer/messagecomposer/akonadisender.h -include/KF5/MessageComposer/messagecomposer/aliasesexpandjob.h -include/KF5/MessageComposer/messagecomposer/attachmentclipboardjob.h -include/KF5/MessageComposer/messagecomposer/attachmentcontrollerbase.h -include/KF5/MessageComposer/messagecomposer/attachmentfrompublickeyjob.h -include/KF5/MessageComposer/messagecomposer/attachmentjob.h -include/KF5/MessageComposer/messagecomposer/attachmentmodel.h -include/KF5/MessageComposer/messagecomposer/attachmentvcardfromaddressbookjob.h -include/KF5/MessageComposer/messagecomposer/autocryptheadersjob.h -include/KF5/MessageComposer/messagecomposer/composer.h -include/KF5/MessageComposer/messagecomposer/composerattachmentinterface.h -include/KF5/MessageComposer/messagecomposer/composerlineedit.h -include/KF5/MessageComposer/messagecomposer/composerviewbase.h -include/KF5/MessageComposer/messagecomposer/composerviewinterface.h -include/KF5/MessageComposer/messagecomposer/contactpreference.h -include/KF5/MessageComposer/messagecomposer/contentjobbase.h -include/KF5/MessageComposer/messagecomposer/convertsnippetvariablemenu.h -include/KF5/MessageComposer/messagecomposer/convertsnippetvariablesjob.h -include/KF5/MessageComposer/messagecomposer/convertsnippetvariablesutil.h -include/KF5/MessageComposer/messagecomposer/draftstatus.h -include/KF5/MessageComposer/messagecomposer/encryptjob.h -include/KF5/MessageComposer/messagecomposer/followupreminder.h -include/KF5/MessageComposer/messagecomposer/followupremindercreatejob.h -include/KF5/MessageComposer/messagecomposer/followupreminderselectdatedialog.h -include/KF5/MessageComposer/messagecomposer/globalpart.h -include/KF5/MessageComposer/messagecomposer/imagescalingwidget.h -include/KF5/MessageComposer/messagecomposer/infopart.h -include/KF5/MessageComposer/messagecomposer/inserttextfilejob.h -include/KF5/MessageComposer/messagecomposer/jobbase.h -include/KF5/MessageComposer/messagecomposer/kleo_util.h -include/KF5/MessageComposer/messagecomposer/maintextjob.h -include/KF5/MessageComposer/messagecomposer/mdnadvicedialog.h -include/KF5/MessageComposer/messagecomposer/mdnadvicehelper.h -include/KF5/MessageComposer/messagecomposer/mdnwarningwidgetjob.h -include/KF5/MessageComposer/messagecomposer/messagecomposer_debug.h -include/KF5/MessageComposer/messagecomposer/messagecomposer_export.h -include/KF5/MessageComposer/messagecomposer/messagecomposersettings.h -include/KF5/MessageComposer/messagecomposer/messagecomposersettings_base.h -include/KF5/MessageComposer/messagecomposer/messagefactoryng.h -include/KF5/MessageComposer/messagecomposer/messagehelper.h -include/KF5/MessageComposer/messagecomposer/messagepart.h -include/KF5/MessageComposer/messagecomposer/messagesender.h -include/KF5/MessageComposer/messagecomposer/multipartjob.h -include/KF5/MessageComposer/messagecomposer/nearexpirychecker.h -include/KF5/MessageComposer/messagecomposer/pluginactiontype.h -include/KF5/MessageComposer/messagecomposer/plugincomposerinterface.h -include/KF5/MessageComposer/messagecomposer/plugineditor.h -include/KF5/MessageComposer/messagecomposer/plugineditorbase.h -include/KF5/MessageComposer/messagecomposer/plugineditorcheckbeforesend.h -include/KF5/MessageComposer/messagecomposer/plugineditorcheckbeforesendinterface.h -include/KF5/MessageComposer/messagecomposer/plugineditorcheckbeforesendmanager.h -include/KF5/MessageComposer/messagecomposer/plugineditorcheckbeforesendparams.h -include/KF5/MessageComposer/messagecomposer/plugineditorconfigurebasewidget.h -include/KF5/MessageComposer/messagecomposer/plugineditorconverterbeforeconvertingdata.h -include/KF5/MessageComposer/messagecomposer/plugineditorconverterinitialdata.h -include/KF5/MessageComposer/messagecomposer/plugineditorconverttext.h -include/KF5/MessageComposer/messagecomposer/plugineditorconverttextinterface.h -include/KF5/MessageComposer/messagecomposer/plugineditorconverttextmanager.h -include/KF5/MessageComposer/messagecomposer/plugineditorgrammarcustomtoolsviewinterface.h -include/KF5/MessageComposer/messagecomposer/plugineditorgrammarmanager.h -include/KF5/MessageComposer/messagecomposer/plugineditorinit.h -include/KF5/MessageComposer/messagecomposer/plugineditorinitinterface.h -include/KF5/MessageComposer/messagecomposer/plugineditorinitmanager.h -include/KF5/MessageComposer/messagecomposer/plugineditorinterface.h -include/KF5/MessageComposer/messagecomposer/plugineditormanager.h -include/KF5/MessageComposer/messagecomposer/protectedheadersjob.h -include/KF5/MessageComposer/messagecomposer/recipient.h -include/KF5/MessageComposer/messagecomposer/recipientline.h -include/KF5/MessageComposer/messagecomposer/recipientseditor.h -include/KF5/MessageComposer/messagecomposer/richtextcomposerng.h -include/KF5/MessageComposer/messagecomposer/richtextcomposersignatures.h -include/KF5/MessageComposer/messagecomposer/savecontactpreferencejob.h -include/KF5/MessageComposer/messagecomposer/sendlatercreatejob.h -include/KF5/MessageComposer/messagecomposer/sendlaterdialog.h -include/KF5/MessageComposer/messagecomposer/sendlaterinfo.h -include/KF5/MessageComposer/messagecomposer/sendlaterjob.h -include/KF5/MessageComposer/messagecomposer/sendlaterremovejob.h -include/KF5/MessageComposer/messagecomposer/sendlaterutil.h -include/KF5/MessageComposer/messagecomposer/signaturecontroller.h -include/KF5/MessageComposer/messagecomposer/signencryptjob.h -include/KF5/MessageComposer/messagecomposer/signjob.h -include/KF5/MessageComposer/messagecomposer/singlepartjob.h -include/KF5/MessageComposer/messagecomposer/skeletonmessagejob.h -include/KF5/MessageComposer/messagecomposer/statusbarlabeltoggledstate.h -include/KF5/MessageComposer/messagecomposer/textpart.h -include/KF5/MessageComposer/messagecomposer/transparentjob.h -include/KF5/MessageComposer/messagecomposer/util.h -include/KF5/MessageComposer/messagecomposer_version.h -include/KF5/MessageCore/MessageCore/AttachmentCompressJob -include/KF5/MessageCore/MessageCore/AttachmentFromUrlBaseJob -include/KF5/MessageCore/MessageCore/AttachmentFromUrlUtils -include/KF5/MessageCore/MessageCore/AttachmentLoadJob -include/KF5/MessageCore/MessageCore/AttachmentPart -include/KF5/MessageCore/MessageCore/AttachmentPropertiesDialog -include/KF5/MessageCore/MessageCore/AttachmentUpdateJob -include/KF5/MessageCore/MessageCore/AutocryptRecipient -include/KF5/MessageCore/MessageCore/AutocryptStorage -include/KF5/MessageCore/MessageCore/AutocryptUtils -include/KF5/MessageCore/MessageCore/ColorUtil -include/KF5/MessageCore/MessageCore/ImageCollector -include/KF5/MessageCore/MessageCore/MailingList -include/KF5/MessageCore/MessageCore/MessageCoreSettings -include/KF5/MessageCore/MessageCore/NodeHelper -include/KF5/MessageCore/MessageCore/StringUtil -include/KF5/MessageCore/MessageCore/Util -include/KF5/MessageCore/messagecore/attachmentcompressjob.h -include/KF5/MessageCore/messagecore/attachmentfromurlbasejob.h -include/KF5/MessageCore/messagecore/attachmentfromurlutils.h -include/KF5/MessageCore/messagecore/attachmentloadjob.h -include/KF5/MessageCore/messagecore/attachmentpart.h -include/KF5/MessageCore/messagecore/attachmentpropertiesdialog.h -include/KF5/MessageCore/messagecore/attachmentupdatejob.h -include/KF5/MessageCore/messagecore/autocryptrecipient.h -include/KF5/MessageCore/messagecore/autocryptstorage.h -include/KF5/MessageCore/messagecore/autocryptutils.h -include/KF5/MessageCore/messagecore/colorutil.h -include/KF5/MessageCore/messagecore/globalsettings_messagecore.h -include/KF5/MessageCore/messagecore/imagecollector.h -include/KF5/MessageCore/messagecore/mailinglist.h -include/KF5/MessageCore/messagecore/messagecore_export.h -include/KF5/MessageCore/messagecore/messagecoresettings.h -include/KF5/MessageCore/messagecore/nodehelper.h -include/KF5/MessageCore/messagecore/stringutil.h -include/KF5/MessageCore/messagecore/util.h -include/KF5/MessageCore/messagecore_version.h -include/KF5/MessageList/MessageList/AggregationComboBox -include/KF5/MessageList/MessageList/AggregationConfigButton -include/KF5/MessageList/MessageList/Enums -include/KF5/MessageList/MessageList/MessageListUtil -include/KF5/MessageList/MessageList/Pane -include/KF5/MessageList/MessageList/QuickSearchLine -include/KF5/MessageList/MessageList/StorageModel -include/KF5/MessageList/MessageList/StorageModelBase -include/KF5/MessageList/MessageList/ThemeComboBox -include/KF5/MessageList/MessageList/ThemeConfigButton -include/KF5/MessageList/MessageList/View -include/KF5/MessageList/MessageList/WidgetBase -include/KF5/MessageList/messagelist/aggregationcombobox.h -include/KF5/MessageList/messagelist/aggregationconfigbutton.h -include/KF5/MessageList/messagelist/enums.h -include/KF5/MessageList/messagelist/messagelist_export.h -include/KF5/MessageList/messagelist/messagelistsettings.h -include/KF5/MessageList/messagelist/messagelistutil.h -include/KF5/MessageList/messagelist/pane.h -include/KF5/MessageList/messagelist/quicksearchline.h -include/KF5/MessageList/messagelist/storagemodel.h -include/KF5/MessageList/messagelist/storagemodelbase.h -include/KF5/MessageList/messagelist/themecombobox.h -include/KF5/MessageList/messagelist/themeconfigbutton.h -include/KF5/MessageList/messagelist/view.h -include/KF5/MessageList/messagelist/widgetbase.h -include/KF5/MessageList/messagelist_version.h -include/KF5/MessageViewer/MessageViewer/AttachmentStrategy -include/KF5/MessageViewer/MessageViewer/BodyPartURLHandler -include/KF5/MessageViewer/MessageViewer/BufferedHtmlWriter -include/KF5/MessageViewer/MessageViewer/CSSHelper -include/KF5/MessageViewer/MessageViewer/CSSHelperBase -include/KF5/MessageViewer/MessageViewer/ConfigureWidget -include/KF5/MessageViewer/MessageViewer/DKIMCheckPolicy -include/KF5/MessageViewer/MessageViewer/DKIMCheckSignatureJob -include/KF5/MessageViewer/MessageViewer/DKIMHeaderParser -include/KF5/MessageViewer/MessageViewer/DKIMInfo -include/KF5/MessageViewer/MessageViewer/DKIMKeyRecord -include/KF5/MessageViewer/MessageViewer/DKIMManageRulesDialog -include/KF5/MessageViewer/MessageViewer/DKIMManageRulesWidget -include/KF5/MessageViewer/MessageViewer/DKIMManager -include/KF5/MessageViewer/MessageViewer/DKIMManagerAuthenticationServer -include/KF5/MessageViewer/MessageViewer/DKIMManagerKey -include/KF5/MessageViewer/MessageViewer/DKIMManagerKeyDialog -include/KF5/MessageViewer/MessageViewer/DKIMManagerKeyWidget -include/KF5/MessageViewer/MessageViewer/DKIMManagerRules -include/KF5/MessageViewer/MessageViewer/DKIMRule -include/KF5/MessageViewer/MessageViewer/DKIMViewerMenu -include/KF5/MessageViewer/MessageViewer/DKIMWidgetInfo -include/KF5/MessageViewer/MessageViewer/EditorWatcher -include/KF5/MessageViewer/MessageViewer/FileHtmlWriter -include/KF5/MessageViewer/MessageViewer/GrantleeHeaderStyle -include/KF5/MessageViewer/MessageViewer/GrantleeHeaderTestStyle -include/KF5/MessageViewer/MessageViewer/HeaderStrategy -include/KF5/MessageViewer/MessageViewer/HeaderStyle -include/KF5/MessageViewer/MessageViewer/HeaderStyleInterface -include/KF5/MessageViewer/MessageViewer/HeaderStyleMenuManager -include/KF5/MessageViewer/MessageViewer/HeaderStylePlugin -include/KF5/MessageViewer/MessageViewer/HeaderStylePluginManager -include/KF5/MessageViewer/MessageViewer/HeaderStyle_Util -include/KF5/MessageViewer/MessageViewer/HtmlBlock -include/KF5/MessageViewer/MessageViewer/HtmlWriter -include/KF5/MessageViewer/MessageViewer/IconNameCache -include/KF5/MessageViewer/MessageViewer/InvitationSettings -include/KF5/MessageViewer/MessageViewer/KXFace -include/KF5/MessageViewer/MessageViewer/MDNWarningWidget -include/KF5/MessageViewer/MessageViewer/MailWebEnginePage -include/KF5/MessageViewer/MessageViewer/MailWebEngineView -include/KF5/MessageViewer/MessageViewer/MarkMessageReadHandler -include/KF5/MessageViewer/MessageViewer/MessagePartRenderPlugin -include/KF5/MessageViewer/MessageViewer/MessagePartRendererBase -include/KF5/MessageViewer/MessageViewer/MessagePartRendererManager -include/KF5/MessageViewer/MessageViewer/MessageViewerCheckBeforeDeletingInterface -include/KF5/MessageViewer/MessageViewer/MessageViewerCheckBeforeDeletingParameters -include/KF5/MessageViewer/MessageViewer/MessageViewerCheckBeforeDeletingPlugin -include/KF5/MessageViewer/MessageViewer/MessageViewerCheckBeforeDeletingPluginManager -include/KF5/MessageViewer/MessageViewer/MessageViewerCheckBeforeDeletingPluginWidget -include/KF5/MessageViewer/MessageViewer/MessageViewerConfigureSettingsPlugin -include/KF5/MessageViewer/MessageViewer/MessageViewerConfigureSettingsPluginManager -include/KF5/MessageViewer/MessageViewer/MessageViewerConfigureSettingsPluginWidget -include/KF5/MessageViewer/MessageViewer/MessageViewerSettings -include/KF5/MessageViewer/MessageViewer/MessageViewerUtil -include/KF5/MessageViewer/MessageViewer/MimeType -include/KF5/MessageViewer/MessageViewer/ObjectTreeEmptySource -include/KF5/MessageViewer/MessageViewer/OpenUrlWithManager -include/KF5/MessageViewer/MessageViewer/OpenWithUrlInfo -include/KF5/MessageViewer/MessageViewer/PlainHeaderStyle -include/KF5/MessageViewer/MessageViewer/PrintingSettings -include/KF5/MessageViewer/MessageViewer/RemoteContentConfigureDialog -include/KF5/MessageViewer/MessageViewer/RemoteContentMenu -include/KF5/MessageViewer/MessageViewer/RichHeaderStrategy -include/KF5/MessageViewer/MessageViewer/ScamCheckShortUrl -include/KF5/MessageViewer/MessageViewer/ScamCheckShortUrlManager -include/KF5/MessageViewer/MessageViewer/ScamDetectionInfo -include/KF5/MessageViewer/MessageViewer/ScamDetectionWhiteListSettingsManager -include/KF5/MessageViewer/MessageViewer/ScamExpandUrlJob -include/KF5/MessageViewer/MessageViewer/SpamHeaderAnalyzer -include/KF5/MessageViewer/MessageViewer/Stl_Util -include/KF5/MessageViewer/MessageViewer/URLHandler -include/KF5/MessageViewer/MessageViewer/Viewer -include/KF5/MessageViewer/MessageViewer/ViewerPlugin -include/KF5/MessageViewer/MessageViewer/ViewerPluginInterface -include/KF5/MessageViewer/MessageViewer/ViewerPluginManager -include/KF5/MessageViewer/MessageViewer/ViewerPluginToolManager -include/KF5/MessageViewer/messageviewer/attachmentstrategy.h -include/KF5/MessageViewer/messageviewer/bodyparturlhandler.h -include/KF5/MessageViewer/messageviewer/bufferedhtmlwriter.h -include/KF5/MessageViewer/messageviewer/config-messageviewer.h -include/KF5/MessageViewer/messageviewer/configurewidget.h -include/KF5/MessageViewer/messageviewer/csshelper.h -include/KF5/MessageViewer/messageviewer/csshelperbase.h -include/KF5/MessageViewer/messageviewer/dkimcheckpolicy.h -include/KF5/MessageViewer/messageviewer/dkimchecksignaturejob.h -include/KF5/MessageViewer/messageviewer/dkimheaderparser.h -include/KF5/MessageViewer/messageviewer/dkiminfo.h -include/KF5/MessageViewer/messageviewer/dkimkeyrecord.h -include/KF5/MessageViewer/messageviewer/dkimmanager.h -include/KF5/MessageViewer/messageviewer/dkimmanagerauthenticationserver.h -include/KF5/MessageViewer/messageviewer/dkimmanagerkey.h -include/KF5/MessageViewer/messageviewer/dkimmanagerkeydialog.h -include/KF5/MessageViewer/messageviewer/dkimmanagerkeywidget.h -include/KF5/MessageViewer/messageviewer/dkimmanagerrules.h -include/KF5/MessageViewer/messageviewer/dkimmanagerulesdialog.h -include/KF5/MessageViewer/messageviewer/dkimmanageruleswidget.h -include/KF5/MessageViewer/messageviewer/dkimrule.h -include/KF5/MessageViewer/messageviewer/dkimviewermenu.h -include/KF5/MessageViewer/messageviewer/dkimwidgetinfo.h -include/KF5/MessageViewer/messageviewer/editorwatcher.h -include/KF5/MessageViewer/messageviewer/filehtmlwriter.h -include/KF5/MessageViewer/messageviewer/globalsettings_messageviewer.h -include/KF5/MessageViewer/messageviewer/grantleeheaderstyle.h -include/KF5/MessageViewer/messageviewer/grantleeheaderteststyle.h -include/KF5/MessageViewer/messageviewer/headerstrategy.h -include/KF5/MessageViewer/messageviewer/headerstyle.h -include/KF5/MessageViewer/messageviewer/headerstyle_util.h -include/KF5/MessageViewer/messageviewer/headerstyleinterface.h -include/KF5/MessageViewer/messageviewer/headerstylemenumanager.h -include/KF5/MessageViewer/messageviewer/headerstyleplugin.h -include/KF5/MessageViewer/messageviewer/headerstylepluginmanager.h -include/KF5/MessageViewer/messageviewer/htmlblock.h -include/KF5/MessageViewer/messageviewer/htmlwriter.h -include/KF5/MessageViewer/messageviewer/iconnamecache.h -include/KF5/MessageViewer/messageviewer/invitationsettings.h -include/KF5/MessageViewer/messageviewer/kxface.h -include/KF5/MessageViewer/messageviewer/mailwebenginepage.h -include/KF5/MessageViewer/messageviewer/mailwebengineview.h -include/KF5/MessageViewer/messageviewer/markmessagereadhandler.h -include/KF5/MessageViewer/messageviewer/mdnwarningwidget.h -include/KF5/MessageViewer/messageviewer/messagepartrendererbase.h -include/KF5/MessageViewer/messageviewer/messagepartrenderermanager.h -include/KF5/MessageViewer/messageviewer/messagepartrenderplugin.h -include/KF5/MessageViewer/messageviewer/messageviewer_debug.h -include/KF5/MessageViewer/messageviewer/messageviewer_export.h -include/KF5/MessageViewer/messageviewer/messageviewercheckbeforedeletinginterface.h -include/KF5/MessageViewer/messageviewer/messageviewercheckbeforedeletingparameters.h -include/KF5/MessageViewer/messageviewer/messageviewercheckbeforedeletingplugin.h -include/KF5/MessageViewer/messageviewer/messageviewercheckbeforedeletingpluginmanager.h -include/KF5/MessageViewer/messageviewer/messageviewercheckbeforedeletingpluginwidget.h -include/KF5/MessageViewer/messageviewer/messageviewerconfiguresettingsplugin.h -include/KF5/MessageViewer/messageviewer/messageviewerconfiguresettingspluginmanager.h -include/KF5/MessageViewer/messageviewer/messageviewerconfiguresettingspluginwidget.h -include/KF5/MessageViewer/messageviewer/messageviewersettings.h -include/KF5/MessageViewer/messageviewer/messageviewerutil.h -include/KF5/MessageViewer/messageviewer/mimetype.h -include/KF5/MessageViewer/messageviewer/objecttreeemptysource.h -include/KF5/MessageViewer/messageviewer/openurlwithmanager.h -include/KF5/MessageViewer/messageviewer/openwithurlinfo.h -include/KF5/MessageViewer/messageviewer/plainheaderstyle.h -include/KF5/MessageViewer/messageviewer/printingsettings.h -include/KF5/MessageViewer/messageviewer/remotecontentconfiguredialog.h -include/KF5/MessageViewer/messageviewer/remotecontentmenu.h -include/KF5/MessageViewer/messageviewer/richheaderstrategy.h -include/KF5/MessageViewer/messageviewer/scamcheckshorturl.h -include/KF5/MessageViewer/messageviewer/scamcheckshorturlmanager.h -include/KF5/MessageViewer/messageviewer/scamdetectioninfo.h -include/KF5/MessageViewer/messageviewer/scamdetectionwhitelistsettingsmanager.h -include/KF5/MessageViewer/messageviewer/scamexpandurljob.h -include/KF5/MessageViewer/messageviewer/spamheaderanalyzer.h -include/KF5/MessageViewer/messageviewer/stl_util.h -include/KF5/MessageViewer/messageviewer/urlhandler.h -include/KF5/MessageViewer/messageviewer/viewer.h -include/KF5/MessageViewer/messageviewer/viewerplugin.h -include/KF5/MessageViewer/messageviewer/viewerplugininterface.h -include/KF5/MessageViewer/messageviewer/viewerpluginmanager.h -include/KF5/MessageViewer/messageviewer/viewerplugintoolmanager.h -include/KF5/MessageViewer/messageviewer_version.h -include/KF5/MimeTreeParser/MimeTreeParser/AttachmentTemporaryFilesDirs -include/KF5/MimeTreeParser/MimeTreeParser/BodyPart -include/KF5/MimeTreeParser/MimeTreeParser/BodyPartFormatter -include/KF5/MimeTreeParser/MimeTreeParser/BodyPartFormatterFactory -include/KF5/MimeTreeParser/MimeTreeParser/Enums -include/KF5/MimeTreeParser/MimeTreeParser/MessagePart -include/KF5/MimeTreeParser/MimeTreeParser/NodeHelper -include/KF5/MimeTreeParser/MimeTreeParser/ObjectTreeParser -include/KF5/MimeTreeParser/MimeTreeParser/ObjectTreeSource -include/KF5/MimeTreeParser/MimeTreeParser/PartMetaData -include/KF5/MimeTreeParser/MimeTreeParser/PartNodeBodyPart -include/KF5/MimeTreeParser/MimeTreeParser/SimpleObjectTreeSource -include/KF5/MimeTreeParser/MimeTreeParser/Util -include/KF5/MimeTreeParser/mimetreeparser/attachmenttemporaryfilesdirs.h -include/KF5/MimeTreeParser/mimetreeparser/bodypart.h -include/KF5/MimeTreeParser/mimetreeparser/bodypartformatter.h -include/KF5/MimeTreeParser/mimetreeparser/bodypartformatterfactory.h -include/KF5/MimeTreeParser/mimetreeparser/enums.h -include/KF5/MimeTreeParser/mimetreeparser/messagepart.h -include/KF5/MimeTreeParser/mimetreeparser/mimetreeparser_export.h -include/KF5/MimeTreeParser/mimetreeparser/nodehelper.h -include/KF5/MimeTreeParser/mimetreeparser/objecttreeparser.h -include/KF5/MimeTreeParser/mimetreeparser/objecttreesource.h -include/KF5/MimeTreeParser/mimetreeparser/partmetadata.h -include/KF5/MimeTreeParser/mimetreeparser/partnodebodypart.h -include/KF5/MimeTreeParser/mimetreeparser/simpleobjecttreesource.h -include/KF5/MimeTreeParser/mimetreeparser/util.h -include/KF5/MimeTreeParser/mimetreeparser_version.h -include/KF5/TemplateParser/TemplateParser/CustomTemplates -include/KF5/TemplateParser/TemplateParser/CustomTemplatesMenu -include/KF5/TemplateParser/TemplateParser/DefaultTemplates -include/KF5/TemplateParser/TemplateParser/TemplateConvertCommandJob -include/KF5/TemplateParser/TemplateParser/TemplateParserEmailAddressRequesterBase -include/KF5/TemplateParser/TemplateParser/TemplateParserExtractHtmlInfoResult -include/KF5/TemplateParser/TemplateParser/TemplateParserJob -include/KF5/TemplateParser/TemplateParser/TemplatesCommandMenu -include/KF5/TemplateParser/TemplateParser/TemplatesConfiguration -include/KF5/TemplateParser/TemplateParser/TemplatesInsertCommandAction -include/KF5/TemplateParser/TemplateParser/TemplatesInsertCommandPushButton -include/KF5/TemplateParser/TemplateParser/TemplatesTextEdit -include/KF5/TemplateParser/TemplateParser/TemplatesUtil -include/KF5/TemplateParser/templateparser/customtemplates.h -include/KF5/TemplateParser/templateparser/customtemplates_kfg.h -include/KF5/TemplateParser/templateparser/customtemplatesmenu.h -include/KF5/TemplateParser/templateparser/defaulttemplates.h -include/KF5/TemplateParser/templateparser/globalsettings_templateparser.h -include/KF5/TemplateParser/templateparser/templateconvertcommandjob.h -include/KF5/TemplateParser/templateparser/templateparser_export.h -include/KF5/TemplateParser/templateparser/templateparseremailaddressrequesterbase.h -include/KF5/TemplateParser/templateparser/templateparserextracthtmlinforesult.h -include/KF5/TemplateParser/templateparser/templateparserjob.h -include/KF5/TemplateParser/templateparser/templatescommandmenu.h -include/KF5/TemplateParser/templateparser/templatesconfiguration.h -include/KF5/TemplateParser/templateparser/templatesconfiguration_kfg.h -include/KF5/TemplateParser/templateparser/templatesinsertcommandaction.h -include/KF5/TemplateParser/templateparser/templatesinsertcommandpushbutton.h -include/KF5/TemplateParser/templateparser/templatestextedit.h -include/KF5/TemplateParser/templateparser/templatesutil.h -include/KF5/TemplateParser/templateparser/ui_templatesconfiguration_base.h -include/KF5/TemplateParser/templateparser_version.h -include/KF5/WebEngineViewer/WebEngineViewer/BlockExternalResourcesUrlInterceptor -include/KF5/WebEngineViewer/WebEngineViewer/BlockTrackingUrlInterceptor -include/KF5/WebEngineViewer/WebEngineViewer/CheckPhishingUrlCache -include/KF5/WebEngineViewer/WebEngineViewer/CheckPhishingUrlJob -include/KF5/WebEngineViewer/WebEngineViewer/CheckPhishingUrlUtil -include/KF5/WebEngineViewer/WebEngineViewer/CreatePhishingUrlDataBaseJob -include/KF5/WebEngineViewer/WebEngineViewer/DeveloperToolDialog -include/KF5/WebEngineViewer/WebEngineViewer/FindBarBase -include/KF5/WebEngineViewer/WebEngineViewer/FindBarWebEngineView -include/KF5/WebEngineViewer/WebEngineViewer/HashCacheManager -include/KF5/WebEngineViewer/WebEngineViewer/InterceptorManager -include/KF5/WebEngineViewer/WebEngineViewer/LoadExternalReferencesUrlInterceptor -include/KF5/WebEngineViewer/WebEngineViewer/LocalDataBaseManager -include/KF5/WebEngineViewer/WebEngineViewer/NetworkPluginUrlInterceptor -include/KF5/WebEngineViewer/WebEngineViewer/NetworkPluginUrlInterceptorConfigureWidget -include/KF5/WebEngineViewer/WebEngineViewer/NetworkPluginUrlInterceptorInterface -include/KF5/WebEngineViewer/WebEngineViewer/NetworkUrlInterceptor -include/KF5/WebEngineViewer/WebEngineViewer/NetworkUrlInterceptorPluginManager -include/KF5/WebEngineViewer/WebEngineViewer/SearchFullHashJob -include/KF5/WebEngineViewer/WebEngineViewer/SubmittedFormWarningWidget -include/KF5/WebEngineViewer/WebEngineViewer/TrackingWarningWidget -include/KF5/WebEngineViewer/WebEngineViewer/UpdateDataBaseInfo -include/KF5/WebEngineViewer/WebEngineViewer/WebEngineAccessKey -include/KF5/WebEngineViewer/WebEngineViewer/WebEngineExportHtmlPageJob -include/KF5/WebEngineViewer/WebEngineViewer/WebEngineExportPdfPageJob -include/KF5/WebEngineViewer/WebEngineViewer/WebEngineManageScript -include/KF5/WebEngineViewer/WebEngineViewer/WebEnginePage -include/KF5/WebEngineViewer/WebEngineViewer/WebEngineScript -include/KF5/WebEngineViewer/WebEngineViewer/WebEngineView -include/KF5/WebEngineViewer/WebEngineViewer/WebHitTest -include/KF5/WebEngineViewer/WebEngineViewer/WebHitTestResult -include/KF5/WebEngineViewer/WebEngineViewer/ZoomActionMenu -include/KF5/WebEngineViewer/webengineviewer/blockexternalresourcesurlinterceptor.h -include/KF5/WebEngineViewer/webengineviewer/blocktrackingurlinterceptor.h -include/KF5/WebEngineViewer/webengineviewer/checkphishingurlcache.h -include/KF5/WebEngineViewer/webengineviewer/checkphishingurljob.h -include/KF5/WebEngineViewer/webengineviewer/checkphishingurlutil.h -include/KF5/WebEngineViewer/webengineviewer/createphishingurldatabasejob.h -include/KF5/WebEngineViewer/webengineviewer/developertooldialog.h -include/KF5/WebEngineViewer/webengineviewer/findbarbase.h -include/KF5/WebEngineViewer/webengineviewer/findbarwebengineview.h -include/KF5/WebEngineViewer/webengineviewer/hashcachemanager.h -include/KF5/WebEngineViewer/webengineviewer/interceptormanager.h -include/KF5/WebEngineViewer/webengineviewer/loadexternalreferencesurlinterceptor.h -include/KF5/WebEngineViewer/webengineviewer/localdatabasemanager.h -include/KF5/WebEngineViewer/webengineviewer/networkpluginurlinterceptor.h -include/KF5/WebEngineViewer/webengineviewer/networkpluginurlinterceptorconfigurewidget.h -include/KF5/WebEngineViewer/webengineviewer/networkpluginurlinterceptorinterface.h -include/KF5/WebEngineViewer/webengineviewer/networkurlinterceptor.h -include/KF5/WebEngineViewer/webengineviewer/networkurlinterceptorpluginmanager.h -include/KF5/WebEngineViewer/webengineviewer/searchfullhashjob.h -include/KF5/WebEngineViewer/webengineviewer/submittedformwarningwidget.h -include/KF5/WebEngineViewer/webengineviewer/trackingwarningwidget.h -include/KF5/WebEngineViewer/webengineviewer/updatedatabaseinfo.h -include/KF5/WebEngineViewer/webengineviewer/webengineaccesskey.h -include/KF5/WebEngineViewer/webengineviewer/webengineexporthtmlpagejob.h -include/KF5/WebEngineViewer/webengineviewer/webengineexportpdfpagejob.h -include/KF5/WebEngineViewer/webengineviewer/webenginemanagescript.h -include/KF5/WebEngineViewer/webengineviewer/webenginepage.h -include/KF5/WebEngineViewer/webengineviewer/webenginescript.h -include/KF5/WebEngineViewer/webengineviewer/webengineview.h -include/KF5/WebEngineViewer/webengineviewer/webengineviewer_export.h -include/KF5/WebEngineViewer/webengineviewer/webhittest.h -include/KF5/WebEngineViewer/webengineviewer/webhittestresult.h -include/KF5/WebEngineViewer/webengineviewer/zoomactionmenu.h -include/KF5/WebEngineViewer/webengineviewer_version.h -lib/cmake/KF5MessageComposer/KF5MessageComposerConfig.cmake -lib/cmake/KF5MessageComposer/KF5MessageComposerConfigVersion.cmake -lib/cmake/KF5MessageComposer/KF5MessageComposerTargets-%%CMAKE_BUILD_TYPE%%.cmake -lib/cmake/KF5MessageComposer/KF5MessageComposerTargets.cmake -lib/cmake/KF5MessageCore/KF5MessageCoreConfig.cmake -lib/cmake/KF5MessageCore/KF5MessageCoreConfigVersion.cmake -lib/cmake/KF5MessageCore/KF5MessageCoreTargets-%%CMAKE_BUILD_TYPE%%.cmake -lib/cmake/KF5MessageCore/KF5MessageCoreTargets.cmake -lib/cmake/KF5MessageList/KF5MessageListConfig.cmake -lib/cmake/KF5MessageList/KF5MessageListConfigVersion.cmake -lib/cmake/KF5MessageList/KF5MessageListTargets-%%CMAKE_BUILD_TYPE%%.cmake -lib/cmake/KF5MessageList/KF5MessageListTargets.cmake -lib/cmake/KF5MessageViewer/KF5MessageViewerConfig.cmake -lib/cmake/KF5MessageViewer/KF5MessageViewerConfigVersion.cmake -lib/cmake/KF5MessageViewer/KF5MessageViewerTargets-%%CMAKE_BUILD_TYPE%%.cmake -lib/cmake/KF5MessageViewer/KF5MessageViewerTargets.cmake -lib/cmake/KF5MimeTreeParser/KF5MimeTreeParserConfig.cmake -lib/cmake/KF5MimeTreeParser/KF5MimeTreeParserConfigVersion.cmake -lib/cmake/KF5MimeTreeParser/KF5MimeTreeParserTargets-%%CMAKE_BUILD_TYPE%%.cmake -lib/cmake/KF5MimeTreeParser/KF5MimeTreeParserTargets.cmake -lib/cmake/KF5TemplateParser/KF5TemplateParserConfig.cmake -lib/cmake/KF5TemplateParser/KF5TemplateParserConfigVersion.cmake -lib/cmake/KF5TemplateParser/KF5TemplateParserTargets-%%CMAKE_BUILD_TYPE%%.cmake -lib/cmake/KF5TemplateParser/KF5TemplateParserTargets.cmake -lib/cmake/KF5WebEngineViewer/KF5WebEngineViewerConfig.cmake -lib/cmake/KF5WebEngineViewer/KF5WebEngineViewerConfigVersion.cmake -lib/cmake/KF5WebEngineViewer/KF5WebEngineViewerTargets-%%CMAKE_BUILD_TYPE%%.cmake -lib/cmake/KF5WebEngineViewer/KF5WebEngineViewerTargets.cmake -lib/libKF5MessageComposer.so -lib/libKF5MessageComposer.so.5 -lib/libKF5MessageComposer.so.%%KDE_APPLICATIONS_SHLIB_VER%% -lib/libKF5MessageCore.so -lib/libKF5MessageCore.so.5 -lib/libKF5MessageCore.so.%%KDE_APPLICATIONS_SHLIB_VER%% -lib/libKF5MessageList.so -lib/libKF5MessageList.so.5 -lib/libKF5MessageList.so.%%KDE_APPLICATIONS_SHLIB_VER%% -lib/libKF5MessageViewer.so -lib/libKF5MessageViewer.so.5 -lib/libKF5MessageViewer.so.%%KDE_APPLICATIONS_SHLIB_VER%% -lib/libKF5MimeTreeParser.so -lib/libKF5MimeTreeParser.so.5 -lib/libKF5MimeTreeParser.so.%%KDE_APPLICATIONS_SHLIB_VER%% -lib/libKF5TemplateParser.so -lib/libKF5TemplateParser.so.5 -lib/libKF5TemplateParser.so.%%KDE_APPLICATIONS_SHLIB_VER%% -lib/libKF5WebEngineViewer.so -lib/libKF5WebEngineViewer.so.5 -lib/libKF5WebEngineViewer.so.%%KDE_APPLICATIONS_SHLIB_VER%% +include/KPim5/MessageComposer/MessageComposer/AbstractEncryptJob +include/KPim5/MessageComposer/MessageComposer/AkonadiSender +include/KPim5/MessageComposer/MessageComposer/AliasesExpandJob +include/KPim5/MessageComposer/MessageComposer/AttachmentClipBoardJob +include/KPim5/MessageComposer/MessageComposer/AttachmentControllerBase +include/KPim5/MessageComposer/MessageComposer/AttachmentFromPublicKeyJob +include/KPim5/MessageComposer/MessageComposer/AttachmentJob +include/KPim5/MessageComposer/MessageComposer/AttachmentModel +include/KPim5/MessageComposer/MessageComposer/AttachmentVcardFromAddressBookJob +include/KPim5/MessageComposer/MessageComposer/AutocryptHeadersJob +include/KPim5/MessageComposer/MessageComposer/Composer +include/KPim5/MessageComposer/MessageComposer/ComposerAttachmentInterface +include/KPim5/MessageComposer/MessageComposer/ComposerLineEdit +include/KPim5/MessageComposer/MessageComposer/ComposerViewBase +include/KPim5/MessageComposer/MessageComposer/ComposerViewInterface +include/KPim5/MessageComposer/MessageComposer/ContactPreference +include/KPim5/MessageComposer/MessageComposer/ContentJobBase +include/KPim5/MessageComposer/MessageComposer/ConvertSnippetVariableMenu +include/KPim5/MessageComposer/MessageComposer/ConvertSnippetVariablesJob +include/KPim5/MessageComposer/MessageComposer/ConvertSnippetVariablesUtil +include/KPim5/MessageComposer/MessageComposer/DraftStatus +include/KPim5/MessageComposer/MessageComposer/EncryptJob +include/KPim5/MessageComposer/MessageComposer/FollowUpReminderSelectDateDialog +include/KPim5/MessageComposer/MessageComposer/FollowupReminder +include/KPim5/MessageComposer/MessageComposer/FollowupReminderCreateJob +include/KPim5/MessageComposer/MessageComposer/GlobalPart +include/KPim5/MessageComposer/MessageComposer/ImageScalingWidget +include/KPim5/MessageComposer/MessageComposer/InfoPart +include/KPim5/MessageComposer/MessageComposer/InsertTextFileJob +include/KPim5/MessageComposer/MessageComposer/JobBase +include/KPim5/MessageComposer/MessageComposer/Kleo_Util +include/KPim5/MessageComposer/MessageComposer/MDNAdviceDialog +include/KPim5/MessageComposer/MessageComposer/MDNAdviceHelper +include/KPim5/MessageComposer/MessageComposer/MDNWarningWidgetJob +include/KPim5/MessageComposer/MessageComposer/MainTextJob +include/KPim5/MessageComposer/MessageComposer/MessageComposerSettings +include/KPim5/MessageComposer/MessageComposer/MessageFactoryNG +include/KPim5/MessageComposer/MessageComposer/MessageHelper +include/KPim5/MessageComposer/MessageComposer/MessagePart +include/KPim5/MessageComposer/MessageComposer/MessageSender +include/KPim5/MessageComposer/MessageComposer/MultipartJob +include/KPim5/MessageComposer/MessageComposer/NearExpiryChecker +include/KPim5/MessageComposer/MessageComposer/PluginActionType +include/KPim5/MessageComposer/MessageComposer/PluginComposerInterface +include/KPim5/MessageComposer/MessageComposer/PluginEditor +include/KPim5/MessageComposer/MessageComposer/PluginEditorBase +include/KPim5/MessageComposer/MessageComposer/PluginEditorCheckBeforeSend +include/KPim5/MessageComposer/MessageComposer/PluginEditorCheckBeforeSendInterface +include/KPim5/MessageComposer/MessageComposer/PluginEditorCheckBeforeSendManager +include/KPim5/MessageComposer/MessageComposer/PluginEditorCheckBeforeSendParams +include/KPim5/MessageComposer/MessageComposer/PluginEditorConfigureBaseWidget +include/KPim5/MessageComposer/MessageComposer/PluginEditorConvertText +include/KPim5/MessageComposer/MessageComposer/PluginEditorConvertTextInterface +include/KPim5/MessageComposer/MessageComposer/PluginEditorConvertTextManager +include/KPim5/MessageComposer/MessageComposer/PluginEditorConverterBeforeConvertingData +include/KPim5/MessageComposer/MessageComposer/PluginEditorConverterInitialData +include/KPim5/MessageComposer/MessageComposer/PluginEditorGrammarCustomToolsViewInterface +include/KPim5/MessageComposer/MessageComposer/PluginEditorGrammarManager +include/KPim5/MessageComposer/MessageComposer/PluginEditorInit +include/KPim5/MessageComposer/MessageComposer/PluginEditorInitInterface +include/KPim5/MessageComposer/MessageComposer/PluginEditorInitManager +include/KPim5/MessageComposer/MessageComposer/PluginEditorInterface +include/KPim5/MessageComposer/MessageComposer/PluginEditorManager +include/KPim5/MessageComposer/MessageComposer/ProtectedHeadersJob +include/KPim5/MessageComposer/MessageComposer/Recipient +include/KPim5/MessageComposer/MessageComposer/RecipientLine +include/KPim5/MessageComposer/MessageComposer/RecipientsEditor +include/KPim5/MessageComposer/MessageComposer/RichTextComposerNg +include/KPim5/MessageComposer/MessageComposer/RichTextComposerSignatures +include/KPim5/MessageComposer/MessageComposer/SaveContactPreferenceJob +include/KPim5/MessageComposer/MessageComposer/SendLaterCreateJob +include/KPim5/MessageComposer/MessageComposer/SendLaterDialog +include/KPim5/MessageComposer/MessageComposer/SendLaterInfo +include/KPim5/MessageComposer/MessageComposer/SendLaterJob +include/KPim5/MessageComposer/MessageComposer/SendLaterRemoveJob +include/KPim5/MessageComposer/MessageComposer/SendLaterUtil +include/KPim5/MessageComposer/MessageComposer/SignEncryptJob +include/KPim5/MessageComposer/MessageComposer/SignJob +include/KPim5/MessageComposer/MessageComposer/SignatureController +include/KPim5/MessageComposer/MessageComposer/SinglepartJob +include/KPim5/MessageComposer/MessageComposer/SkeletonMessageJob +include/KPim5/MessageComposer/MessageComposer/StatusBarLabelToggledState +include/KPim5/MessageComposer/MessageComposer/TextPart +include/KPim5/MessageComposer/MessageComposer/TransparentJob +include/KPim5/MessageComposer/MessageComposer/Util +include/KPim5/MessageComposer/messagecomposer/abstractencryptjob.h +include/KPim5/MessageComposer/messagecomposer/akonadisender.h +include/KPim5/MessageComposer/messagecomposer/aliasesexpandjob.h +include/KPim5/MessageComposer/messagecomposer/attachmentclipboardjob.h +include/KPim5/MessageComposer/messagecomposer/attachmentcontrollerbase.h +include/KPim5/MessageComposer/messagecomposer/attachmentfrompublickeyjob.h +include/KPim5/MessageComposer/messagecomposer/attachmentjob.h +include/KPim5/MessageComposer/messagecomposer/attachmentmodel.h +include/KPim5/MessageComposer/messagecomposer/attachmentvcardfromaddressbookjob.h +include/KPim5/MessageComposer/messagecomposer/autocryptheadersjob.h +include/KPim5/MessageComposer/messagecomposer/composer.h +include/KPim5/MessageComposer/messagecomposer/composerattachmentinterface.h +include/KPim5/MessageComposer/messagecomposer/composerlineedit.h +include/KPim5/MessageComposer/messagecomposer/composerviewbase.h +include/KPim5/MessageComposer/messagecomposer/composerviewinterface.h +include/KPim5/MessageComposer/messagecomposer/contactpreference.h +include/KPim5/MessageComposer/messagecomposer/contentjobbase.h +include/KPim5/MessageComposer/messagecomposer/convertsnippetvariablemenu.h +include/KPim5/MessageComposer/messagecomposer/convertsnippetvariablesjob.h +include/KPim5/MessageComposer/messagecomposer/convertsnippetvariablesutil.h +include/KPim5/MessageComposer/messagecomposer/draftstatus.h +include/KPim5/MessageComposer/messagecomposer/encryptjob.h +include/KPim5/MessageComposer/messagecomposer/followupreminder.h +include/KPim5/MessageComposer/messagecomposer/followupremindercreatejob.h +include/KPim5/MessageComposer/messagecomposer/followupreminderselectdatedialog.h +include/KPim5/MessageComposer/messagecomposer/globalpart.h +include/KPim5/MessageComposer/messagecomposer/imagescalingwidget.h +include/KPim5/MessageComposer/messagecomposer/infopart.h +include/KPim5/MessageComposer/messagecomposer/inserttextfilejob.h +include/KPim5/MessageComposer/messagecomposer/jobbase.h +include/KPim5/MessageComposer/messagecomposer/kleo_util.h +include/KPim5/MessageComposer/messagecomposer/maintextjob.h +include/KPim5/MessageComposer/messagecomposer/mdnadvicedialog.h +include/KPim5/MessageComposer/messagecomposer/mdnadvicehelper.h +include/KPim5/MessageComposer/messagecomposer/mdnwarningwidgetjob.h +include/KPim5/MessageComposer/messagecomposer/messagecomposer_debug.h +include/KPim5/MessageComposer/messagecomposer/messagecomposer_export.h +include/KPim5/MessageComposer/messagecomposer/messagecomposersettings.h +include/KPim5/MessageComposer/messagecomposer/messagecomposersettings_base.h +include/KPim5/MessageComposer/messagecomposer/messagefactoryng.h +include/KPim5/MessageComposer/messagecomposer/messagehelper.h +include/KPim5/MessageComposer/messagecomposer/messagepart.h +include/KPim5/MessageComposer/messagecomposer/messagesender.h +include/KPim5/MessageComposer/messagecomposer/multipartjob.h +include/KPim5/MessageComposer/messagecomposer/nearexpirychecker.h +include/KPim5/MessageComposer/messagecomposer/pluginactiontype.h +include/KPim5/MessageComposer/messagecomposer/plugincomposerinterface.h +include/KPim5/MessageComposer/messagecomposer/plugineditor.h +include/KPim5/MessageComposer/messagecomposer/plugineditorbase.h +include/KPim5/MessageComposer/messagecomposer/plugineditorcheckbeforesend.h +include/KPim5/MessageComposer/messagecomposer/plugineditorcheckbeforesendinterface.h +include/KPim5/MessageComposer/messagecomposer/plugineditorcheckbeforesendmanager.h +include/KPim5/MessageComposer/messagecomposer/plugineditorcheckbeforesendparams.h +include/KPim5/MessageComposer/messagecomposer/plugineditorconfigurebasewidget.h +include/KPim5/MessageComposer/messagecomposer/plugineditorconverterbeforeconvertingdata.h +include/KPim5/MessageComposer/messagecomposer/plugineditorconverterinitialdata.h +include/KPim5/MessageComposer/messagecomposer/plugineditorconverttext.h +include/KPim5/MessageComposer/messagecomposer/plugineditorconverttextinterface.h +include/KPim5/MessageComposer/messagecomposer/plugineditorconverttextmanager.h +include/KPim5/MessageComposer/messagecomposer/plugineditorgrammarcustomtoolsviewinterface.h +include/KPim5/MessageComposer/messagecomposer/plugineditorgrammarmanager.h +include/KPim5/MessageComposer/messagecomposer/plugineditorinit.h +include/KPim5/MessageComposer/messagecomposer/plugineditorinitinterface.h +include/KPim5/MessageComposer/messagecomposer/plugineditorinitmanager.h +include/KPim5/MessageComposer/messagecomposer/plugineditorinterface.h +include/KPim5/MessageComposer/messagecomposer/plugineditormanager.h +include/KPim5/MessageComposer/messagecomposer/protectedheadersjob.h +include/KPim5/MessageComposer/messagecomposer/recipient.h +include/KPim5/MessageComposer/messagecomposer/recipientline.h +include/KPim5/MessageComposer/messagecomposer/recipientseditor.h +include/KPim5/MessageComposer/messagecomposer/richtextcomposerng.h +include/KPim5/MessageComposer/messagecomposer/richtextcomposersignatures.h +include/KPim5/MessageComposer/messagecomposer/savecontactpreferencejob.h +include/KPim5/MessageComposer/messagecomposer/sendlatercreatejob.h +include/KPim5/MessageComposer/messagecomposer/sendlaterdialog.h +include/KPim5/MessageComposer/messagecomposer/sendlaterinfo.h +include/KPim5/MessageComposer/messagecomposer/sendlaterjob.h +include/KPim5/MessageComposer/messagecomposer/sendlaterremovejob.h +include/KPim5/MessageComposer/messagecomposer/sendlaterutil.h +include/KPim5/MessageComposer/messagecomposer/signaturecontroller.h +include/KPim5/MessageComposer/messagecomposer/signencryptjob.h +include/KPim5/MessageComposer/messagecomposer/signjob.h +include/KPim5/MessageComposer/messagecomposer/singlepartjob.h +include/KPim5/MessageComposer/messagecomposer/skeletonmessagejob.h +include/KPim5/MessageComposer/messagecomposer/statusbarlabeltoggledstate.h +include/KPim5/MessageComposer/messagecomposer/textpart.h +include/KPim5/MessageComposer/messagecomposer/transparentjob.h +include/KPim5/MessageComposer/messagecomposer/util.h +include/KPim5/MessageComposer/messagecomposer_version.h +include/KPim5/MessageCore/MessageCore/AttachmentCompressJob +include/KPim5/MessageCore/MessageCore/AttachmentFromUrlBaseJob +include/KPim5/MessageCore/MessageCore/AttachmentFromUrlUtils +include/KPim5/MessageCore/MessageCore/AttachmentLoadJob +include/KPim5/MessageCore/MessageCore/AttachmentPart +include/KPim5/MessageCore/MessageCore/AttachmentPropertiesDialog +include/KPim5/MessageCore/MessageCore/AttachmentUpdateJob +include/KPim5/MessageCore/MessageCore/AutocryptRecipient +include/KPim5/MessageCore/MessageCore/AutocryptStorage +include/KPim5/MessageCore/MessageCore/AutocryptUtils +include/KPim5/MessageCore/MessageCore/ColorUtil +include/KPim5/MessageCore/MessageCore/ImageCollector +include/KPim5/MessageCore/MessageCore/MailingList +include/KPim5/MessageCore/MessageCore/MessageCoreSettings +include/KPim5/MessageCore/MessageCore/NodeHelper +include/KPim5/MessageCore/MessageCore/StringUtil +include/KPim5/MessageCore/MessageCore/Util +include/KPim5/MessageCore/messagecore/attachmentcompressjob.h +include/KPim5/MessageCore/messagecore/attachmentfromurlbasejob.h +include/KPim5/MessageCore/messagecore/attachmentfromurlutils.h +include/KPim5/MessageCore/messagecore/attachmentloadjob.h +include/KPim5/MessageCore/messagecore/attachmentpart.h +include/KPim5/MessageCore/messagecore/attachmentpropertiesdialog.h +include/KPim5/MessageCore/messagecore/attachmentupdatejob.h +include/KPim5/MessageCore/messagecore/autocryptrecipient.h +include/KPim5/MessageCore/messagecore/autocryptstorage.h +include/KPim5/MessageCore/messagecore/autocryptutils.h +include/KPim5/MessageCore/messagecore/colorutil.h +include/KPim5/MessageCore/messagecore/globalsettings_messagecore.h +include/KPim5/MessageCore/messagecore/imagecollector.h +include/KPim5/MessageCore/messagecore/mailinglist.h +include/KPim5/MessageCore/messagecore/messagecore_export.h +include/KPim5/MessageCore/messagecore/messagecoresettings.h +include/KPim5/MessageCore/messagecore/nodehelper.h +include/KPim5/MessageCore/messagecore/stringutil.h +include/KPim5/MessageCore/messagecore/util.h +include/KPim5/MessageCore/messagecore_version.h +include/KPim5/MessageList/MessageList/AggregationComboBox +include/KPim5/MessageList/MessageList/AggregationConfigButton +include/KPim5/MessageList/MessageList/Enums +include/KPim5/MessageList/MessageList/MessageListUtil +include/KPim5/MessageList/MessageList/Pane +include/KPim5/MessageList/MessageList/QuickSearchLine +include/KPim5/MessageList/MessageList/StorageModel +include/KPim5/MessageList/MessageList/StorageModelBase +include/KPim5/MessageList/MessageList/ThemeComboBox +include/KPim5/MessageList/MessageList/ThemeConfigButton +include/KPim5/MessageList/MessageList/View +include/KPim5/MessageList/MessageList/WidgetBase +include/KPim5/MessageList/messagelist/aggregationcombobox.h +include/KPim5/MessageList/messagelist/aggregationconfigbutton.h +include/KPim5/MessageList/messagelist/enums.h +include/KPim5/MessageList/messagelist/messagelist_export.h +include/KPim5/MessageList/messagelist/messagelistsettings.h +include/KPim5/MessageList/messagelist/messagelistutil.h +include/KPim5/MessageList/messagelist/pane.h +include/KPim5/MessageList/messagelist/quicksearchline.h +include/KPim5/MessageList/messagelist/storagemodel.h +include/KPim5/MessageList/messagelist/storagemodelbase.h +include/KPim5/MessageList/messagelist/themecombobox.h +include/KPim5/MessageList/messagelist/themeconfigbutton.h +include/KPim5/MessageList/messagelist/view.h +include/KPim5/MessageList/messagelist/widgetbase.h +include/KPim5/MessageList/messagelist_version.h +include/KPim5/MessageViewer/MessageViewer/AttachmentStrategy +include/KPim5/MessageViewer/MessageViewer/BodyPartURLHandler +include/KPim5/MessageViewer/MessageViewer/BufferedHtmlWriter +include/KPim5/MessageViewer/MessageViewer/CSSHelper +include/KPim5/MessageViewer/MessageViewer/CSSHelperBase +include/KPim5/MessageViewer/MessageViewer/ConfigureWidget +include/KPim5/MessageViewer/MessageViewer/DKIMCheckPolicy +include/KPim5/MessageViewer/MessageViewer/DKIMCheckSignatureJob +include/KPim5/MessageViewer/MessageViewer/DKIMHeaderParser +include/KPim5/MessageViewer/MessageViewer/DKIMInfo +include/KPim5/MessageViewer/MessageViewer/DKIMKeyRecord +include/KPim5/MessageViewer/MessageViewer/DKIMManageRulesDialog +include/KPim5/MessageViewer/MessageViewer/DKIMManageRulesWidget +include/KPim5/MessageViewer/MessageViewer/DKIMManager +include/KPim5/MessageViewer/MessageViewer/DKIMManagerAuthenticationServer +include/KPim5/MessageViewer/MessageViewer/DKIMManagerKey +include/KPim5/MessageViewer/MessageViewer/DKIMManagerKeyDialog +include/KPim5/MessageViewer/MessageViewer/DKIMManagerKeyWidget +include/KPim5/MessageViewer/MessageViewer/DKIMManagerRules +include/KPim5/MessageViewer/MessageViewer/DKIMRule +include/KPim5/MessageViewer/MessageViewer/DKIMViewerMenu +include/KPim5/MessageViewer/MessageViewer/DKIMWidgetInfo +include/KPim5/MessageViewer/MessageViewer/EditorWatcher +include/KPim5/MessageViewer/MessageViewer/FileHtmlWriter +include/KPim5/MessageViewer/MessageViewer/GrantleeHeaderStyle +include/KPim5/MessageViewer/MessageViewer/GrantleeHeaderTestStyle +include/KPim5/MessageViewer/MessageViewer/HeaderStrategy +include/KPim5/MessageViewer/MessageViewer/HeaderStyle +include/KPim5/MessageViewer/MessageViewer/HeaderStyleInterface +include/KPim5/MessageViewer/MessageViewer/HeaderStyleMenuManager +include/KPim5/MessageViewer/MessageViewer/HeaderStylePlugin +include/KPim5/MessageViewer/MessageViewer/HeaderStylePluginManager +include/KPim5/MessageViewer/MessageViewer/HeaderStyle_Util +include/KPim5/MessageViewer/MessageViewer/HtmlBlock +include/KPim5/MessageViewer/MessageViewer/HtmlWriter +include/KPim5/MessageViewer/MessageViewer/IconNameCache +include/KPim5/MessageViewer/MessageViewer/InvitationSettings +include/KPim5/MessageViewer/MessageViewer/KXFace +include/KPim5/MessageViewer/MessageViewer/MDNWarningWidget +include/KPim5/MessageViewer/MessageViewer/MailWebEnginePage +include/KPim5/MessageViewer/MessageViewer/MailWebEngineView +include/KPim5/MessageViewer/MessageViewer/MarkMessageReadHandler +include/KPim5/MessageViewer/MessageViewer/MessagePartRenderPlugin +include/KPim5/MessageViewer/MessageViewer/MessagePartRendererBase +include/KPim5/MessageViewer/MessageViewer/MessagePartRendererManager +include/KPim5/MessageViewer/MessageViewer/MessageViewerCheckBeforeDeletingInterface +include/KPim5/MessageViewer/MessageViewer/MessageViewerCheckBeforeDeletingParameters +include/KPim5/MessageViewer/MessageViewer/MessageViewerCheckBeforeDeletingPlugin +include/KPim5/MessageViewer/MessageViewer/MessageViewerCheckBeforeDeletingPluginManager +include/KPim5/MessageViewer/MessageViewer/MessageViewerCheckBeforeDeletingPluginWidget +include/KPim5/MessageViewer/MessageViewer/MessageViewerConfigureSettingsPlugin +include/KPim5/MessageViewer/MessageViewer/MessageViewerConfigureSettingsPluginManager +include/KPim5/MessageViewer/MessageViewer/MessageViewerConfigureSettingsPluginWidget +include/KPim5/MessageViewer/MessageViewer/MessageViewerSettings +include/KPim5/MessageViewer/MessageViewer/MessageViewerUtil +include/KPim5/MessageViewer/MessageViewer/MimeType +include/KPim5/MessageViewer/MessageViewer/ObjectTreeEmptySource +include/KPim5/MessageViewer/MessageViewer/OpenUrlWithManager +include/KPim5/MessageViewer/MessageViewer/OpenWithUrlInfo +include/KPim5/MessageViewer/MessageViewer/PlainHeaderStyle +include/KPim5/MessageViewer/MessageViewer/PrintingSettings +include/KPim5/MessageViewer/MessageViewer/RemoteContentConfigureDialog +include/KPim5/MessageViewer/MessageViewer/RemoteContentMenu +include/KPim5/MessageViewer/MessageViewer/RichHeaderStrategy +include/KPim5/MessageViewer/MessageViewer/ScamCheckShortUrl +include/KPim5/MessageViewer/MessageViewer/ScamCheckShortUrlManager +include/KPim5/MessageViewer/MessageViewer/ScamDetectionInfo +include/KPim5/MessageViewer/MessageViewer/ScamDetectionWhiteListSettingsManager +include/KPim5/MessageViewer/MessageViewer/ScamExpandUrlJob +include/KPim5/MessageViewer/MessageViewer/SpamHeaderAnalyzer +include/KPim5/MessageViewer/MessageViewer/Stl_Util +include/KPim5/MessageViewer/MessageViewer/URLHandler +include/KPim5/MessageViewer/MessageViewer/Viewer +include/KPim5/MessageViewer/MessageViewer/ViewerPlugin +include/KPim5/MessageViewer/MessageViewer/ViewerPluginInterface +include/KPim5/MessageViewer/MessageViewer/ViewerPluginManager +include/KPim5/MessageViewer/MessageViewer/ViewerPluginToolManager +include/KPim5/MessageViewer/messageviewer/attachmentstrategy.h +include/KPim5/MessageViewer/messageviewer/bodyparturlhandler.h +include/KPim5/MessageViewer/messageviewer/bufferedhtmlwriter.h +include/KPim5/MessageViewer/messageviewer/config-messageviewer.h +include/KPim5/MessageViewer/messageviewer/configurewidget.h +include/KPim5/MessageViewer/messageviewer/csshelper.h +include/KPim5/MessageViewer/messageviewer/csshelperbase.h +include/KPim5/MessageViewer/messageviewer/dkimcheckpolicy.h +include/KPim5/MessageViewer/messageviewer/dkimchecksignaturejob.h +include/KPim5/MessageViewer/messageviewer/dkimheaderparser.h +include/KPim5/MessageViewer/messageviewer/dkiminfo.h +include/KPim5/MessageViewer/messageviewer/dkimkeyrecord.h +include/KPim5/MessageViewer/messageviewer/dkimmanager.h +include/KPim5/MessageViewer/messageviewer/dkimmanagerauthenticationserver.h +include/KPim5/MessageViewer/messageviewer/dkimmanagerkey.h +include/KPim5/MessageViewer/messageviewer/dkimmanagerkeydialog.h +include/KPim5/MessageViewer/messageviewer/dkimmanagerkeywidget.h +include/KPim5/MessageViewer/messageviewer/dkimmanagerrules.h +include/KPim5/MessageViewer/messageviewer/dkimmanagerulesdialog.h +include/KPim5/MessageViewer/messageviewer/dkimmanageruleswidget.h +include/KPim5/MessageViewer/messageviewer/dkimrule.h +include/KPim5/MessageViewer/messageviewer/dkimviewermenu.h +include/KPim5/MessageViewer/messageviewer/dkimwidgetinfo.h +include/KPim5/MessageViewer/messageviewer/editorwatcher.h +include/KPim5/MessageViewer/messageviewer/filehtmlwriter.h +include/KPim5/MessageViewer/messageviewer/globalsettings_messageviewer.h +include/KPim5/MessageViewer/messageviewer/grantleeheaderstyle.h +include/KPim5/MessageViewer/messageviewer/grantleeheaderteststyle.h +include/KPim5/MessageViewer/messageviewer/headerstrategy.h +include/KPim5/MessageViewer/messageviewer/headerstyle.h +include/KPim5/MessageViewer/messageviewer/headerstyle_util.h +include/KPim5/MessageViewer/messageviewer/headerstyleinterface.h +include/KPim5/MessageViewer/messageviewer/headerstylemenumanager.h +include/KPim5/MessageViewer/messageviewer/headerstyleplugin.h +include/KPim5/MessageViewer/messageviewer/headerstylepluginmanager.h +include/KPim5/MessageViewer/messageviewer/htmlblock.h +include/KPim5/MessageViewer/messageviewer/htmlwriter.h +include/KPim5/MessageViewer/messageviewer/iconnamecache.h +include/KPim5/MessageViewer/messageviewer/invitationsettings.h +include/KPim5/MessageViewer/messageviewer/kxface.h +include/KPim5/MessageViewer/messageviewer/mailwebenginepage.h +include/KPim5/MessageViewer/messageviewer/mailwebengineview.h +include/KPim5/MessageViewer/messageviewer/markmessagereadhandler.h +include/KPim5/MessageViewer/messageviewer/mdnwarningwidget.h +include/KPim5/MessageViewer/messageviewer/messagepartrendererbase.h +include/KPim5/MessageViewer/messageviewer/messagepartrenderermanager.h +include/KPim5/MessageViewer/messageviewer/messagepartrenderplugin.h +include/KPim5/MessageViewer/messageviewer/messageviewer_debug.h +include/KPim5/MessageViewer/messageviewer/messageviewer_export.h +include/KPim5/MessageViewer/messageviewer/messageviewercheckbeforedeletinginterface.h +include/KPim5/MessageViewer/messageviewer/messageviewercheckbeforedeletingparameters.h +include/KPim5/MessageViewer/messageviewer/messageviewercheckbeforedeletingplugin.h +include/KPim5/MessageViewer/messageviewer/messageviewercheckbeforedeletingpluginmanager.h +include/KPim5/MessageViewer/messageviewer/messageviewercheckbeforedeletingpluginwidget.h +include/KPim5/MessageViewer/messageviewer/messageviewerconfiguresettingsplugin.h +include/KPim5/MessageViewer/messageviewer/messageviewerconfiguresettingspluginmanager.h +include/KPim5/MessageViewer/messageviewer/messageviewerconfiguresettingspluginwidget.h +include/KPim5/MessageViewer/messageviewer/messageviewersettings.h +include/KPim5/MessageViewer/messageviewer/messageviewerutil.h +include/KPim5/MessageViewer/messageviewer/mimetype.h +include/KPim5/MessageViewer/messageviewer/objecttreeemptysource.h +include/KPim5/MessageViewer/messageviewer/openurlwithmanager.h +include/KPim5/MessageViewer/messageviewer/openwithurlinfo.h +include/KPim5/MessageViewer/messageviewer/plainheaderstyle.h +include/KPim5/MessageViewer/messageviewer/printingsettings.h +include/KPim5/MessageViewer/messageviewer/remotecontentconfiguredialog.h +include/KPim5/MessageViewer/messageviewer/remotecontentmenu.h +include/KPim5/MessageViewer/messageviewer/richheaderstrategy.h +include/KPim5/MessageViewer/messageviewer/scamcheckshorturl.h +include/KPim5/MessageViewer/messageviewer/scamcheckshorturlmanager.h +include/KPim5/MessageViewer/messageviewer/scamdetectioninfo.h +include/KPim5/MessageViewer/messageviewer/scamdetectionwhitelistsettingsmanager.h +include/KPim5/MessageViewer/messageviewer/scamexpandurljob.h +include/KPim5/MessageViewer/messageviewer/spamheaderanalyzer.h +include/KPim5/MessageViewer/messageviewer/stl_util.h +include/KPim5/MessageViewer/messageviewer/urlhandler.h +include/KPim5/MessageViewer/messageviewer/viewer.h +include/KPim5/MessageViewer/messageviewer/viewerplugin.h +include/KPim5/MessageViewer/messageviewer/viewerplugininterface.h +include/KPim5/MessageViewer/messageviewer/viewerpluginmanager.h +include/KPim5/MessageViewer/messageviewer/viewerplugintoolmanager.h +include/KPim5/MessageViewer/messageviewer_version.h +include/KPim5/MimeTreeParser/MimeTreeParser/AttachmentTemporaryFilesDirs +include/KPim5/MimeTreeParser/MimeTreeParser/BodyPart +include/KPim5/MimeTreeParser/MimeTreeParser/BodyPartFormatter +include/KPim5/MimeTreeParser/MimeTreeParser/BodyPartFormatterFactory +include/KPim5/MimeTreeParser/MimeTreeParser/Enums +include/KPim5/MimeTreeParser/MimeTreeParser/MessagePart +include/KPim5/MimeTreeParser/MimeTreeParser/NodeHelper +include/KPim5/MimeTreeParser/MimeTreeParser/ObjectTreeParser +include/KPim5/MimeTreeParser/MimeTreeParser/ObjectTreeSource +include/KPim5/MimeTreeParser/MimeTreeParser/PartMetaData +include/KPim5/MimeTreeParser/MimeTreeParser/PartNodeBodyPart +include/KPim5/MimeTreeParser/MimeTreeParser/SimpleObjectTreeSource +include/KPim5/MimeTreeParser/MimeTreeParser/Util +include/KPim5/MimeTreeParser/mimetreeparser/attachmenttemporaryfilesdirs.h +include/KPim5/MimeTreeParser/mimetreeparser/bodypart.h +include/KPim5/MimeTreeParser/mimetreeparser/bodypartformatter.h +include/KPim5/MimeTreeParser/mimetreeparser/bodypartformatterfactory.h +include/KPim5/MimeTreeParser/mimetreeparser/enums.h +include/KPim5/MimeTreeParser/mimetreeparser/messagepart.h +include/KPim5/MimeTreeParser/mimetreeparser/mimetreeparser_export.h +include/KPim5/MimeTreeParser/mimetreeparser/nodehelper.h +include/KPim5/MimeTreeParser/mimetreeparser/objecttreeparser.h +include/KPim5/MimeTreeParser/mimetreeparser/objecttreesource.h +include/KPim5/MimeTreeParser/mimetreeparser/partmetadata.h +include/KPim5/MimeTreeParser/mimetreeparser/partnodebodypart.h +include/KPim5/MimeTreeParser/mimetreeparser/simpleobjecttreesource.h +include/KPim5/MimeTreeParser/mimetreeparser/util.h +include/KPim5/MimeTreeParser/mimetreeparser_version.h +include/KPim5/TemplateParser/TemplateParser/CustomTemplates +include/KPim5/TemplateParser/TemplateParser/CustomTemplatesMenu +include/KPim5/TemplateParser/TemplateParser/DefaultTemplates +include/KPim5/TemplateParser/TemplateParser/TemplateConvertCommandJob +include/KPim5/TemplateParser/TemplateParser/TemplateParserEmailAddressRequesterBase +include/KPim5/TemplateParser/TemplateParser/TemplateParserExtractHtmlInfoResult +include/KPim5/TemplateParser/TemplateParser/TemplateParserJob +include/KPim5/TemplateParser/TemplateParser/TemplatesCommandMenu +include/KPim5/TemplateParser/TemplateParser/TemplatesConfiguration +include/KPim5/TemplateParser/TemplateParser/TemplatesInsertCommandAction +include/KPim5/TemplateParser/TemplateParser/TemplatesInsertCommandPushButton +include/KPim5/TemplateParser/TemplateParser/TemplatesTextEdit +include/KPim5/TemplateParser/TemplateParser/TemplatesUtil +include/KPim5/TemplateParser/templateparser/customtemplates.h +include/KPim5/TemplateParser/templateparser/customtemplates_kfg.h +include/KPim5/TemplateParser/templateparser/customtemplatesmenu.h +include/KPim5/TemplateParser/templateparser/defaulttemplates.h +include/KPim5/TemplateParser/templateparser/globalsettings_templateparser.h +include/KPim5/TemplateParser/templateparser/templateconvertcommandjob.h +include/KPim5/TemplateParser/templateparser/templateparser_export.h +include/KPim5/TemplateParser/templateparser/templateparseremailaddressrequesterbase.h +include/KPim5/TemplateParser/templateparser/templateparserextracthtmlinforesult.h +include/KPim5/TemplateParser/templateparser/templateparserjob.h +include/KPim5/TemplateParser/templateparser/templatescommandmenu.h +include/KPim5/TemplateParser/templateparser/templatesconfiguration.h +include/KPim5/TemplateParser/templateparser/templatesconfiguration_kfg.h +include/KPim5/TemplateParser/templateparser/templatesinsertcommandaction.h +include/KPim5/TemplateParser/templateparser/templatesinsertcommandpushbutton.h +include/KPim5/TemplateParser/templateparser/templatestextedit.h +include/KPim5/TemplateParser/templateparser/templatesutil.h +include/KPim5/TemplateParser/templateparser/ui_templatesconfiguration_base.h +include/KPim5/TemplateParser/templateparser_version.h +include/KPim5/WebEngineViewer/WebEngineViewer/BlockExternalResourcesUrlInterceptor +include/KPim5/WebEngineViewer/WebEngineViewer/BlockTrackingUrlInterceptor +include/KPim5/WebEngineViewer/WebEngineViewer/CheckPhishingUrlCache +include/KPim5/WebEngineViewer/WebEngineViewer/CheckPhishingUrlJob +include/KPim5/WebEngineViewer/WebEngineViewer/CheckPhishingUrlUtil +include/KPim5/WebEngineViewer/WebEngineViewer/CreatePhishingUrlDataBaseJob +include/KPim5/WebEngineViewer/WebEngineViewer/DeveloperToolDialog +include/KPim5/WebEngineViewer/WebEngineViewer/FindBarBase +include/KPim5/WebEngineViewer/WebEngineViewer/FindBarWebEngineView +include/KPim5/WebEngineViewer/WebEngineViewer/HashCacheManager +include/KPim5/WebEngineViewer/WebEngineViewer/InterceptorManager +include/KPim5/WebEngineViewer/WebEngineViewer/LoadExternalReferencesUrlInterceptor +include/KPim5/WebEngineViewer/WebEngineViewer/LocalDataBaseManager +include/KPim5/WebEngineViewer/WebEngineViewer/NetworkPluginUrlInterceptor +include/KPim5/WebEngineViewer/WebEngineViewer/NetworkPluginUrlInterceptorConfigureWidget +include/KPim5/WebEngineViewer/WebEngineViewer/NetworkPluginUrlInterceptorInterface +include/KPim5/WebEngineViewer/WebEngineViewer/NetworkUrlInterceptor +include/KPim5/WebEngineViewer/WebEngineViewer/NetworkUrlInterceptorPluginManager +include/KPim5/WebEngineViewer/WebEngineViewer/SearchFullHashJob +include/KPim5/WebEngineViewer/WebEngineViewer/SubmittedFormWarningWidget +include/KPim5/WebEngineViewer/WebEngineViewer/TrackingWarningWidget +include/KPim5/WebEngineViewer/WebEngineViewer/UpdateDataBaseInfo +include/KPim5/WebEngineViewer/WebEngineViewer/WebEngineAccessKey +include/KPim5/WebEngineViewer/WebEngineViewer/WebEngineExportHtmlPageJob +include/KPim5/WebEngineViewer/WebEngineViewer/WebEngineExportPdfPageJob +include/KPim5/WebEngineViewer/WebEngineViewer/WebEngineManageScript +include/KPim5/WebEngineViewer/WebEngineViewer/WebEnginePage +include/KPim5/WebEngineViewer/WebEngineViewer/WebEngineScript +include/KPim5/WebEngineViewer/WebEngineViewer/WebEngineView +include/KPim5/WebEngineViewer/WebEngineViewer/WebHitTest +include/KPim5/WebEngineViewer/WebEngineViewer/WebHitTestResult +include/KPim5/WebEngineViewer/WebEngineViewer/ZoomActionMenu +include/KPim5/WebEngineViewer/webengineviewer/blockexternalresourcesurlinterceptor.h +include/KPim5/WebEngineViewer/webengineviewer/blocktrackingurlinterceptor.h +include/KPim5/WebEngineViewer/webengineviewer/checkphishingurlcache.h +include/KPim5/WebEngineViewer/webengineviewer/checkphishingurljob.h +include/KPim5/WebEngineViewer/webengineviewer/checkphishingurlutil.h +include/KPim5/WebEngineViewer/webengineviewer/createphishingurldatabasejob.h +include/KPim5/WebEngineViewer/webengineviewer/developertooldialog.h +include/KPim5/WebEngineViewer/webengineviewer/findbarbase.h +include/KPim5/WebEngineViewer/webengineviewer/findbarwebengineview.h +include/KPim5/WebEngineViewer/webengineviewer/hashcachemanager.h +include/KPim5/WebEngineViewer/webengineviewer/interceptormanager.h +include/KPim5/WebEngineViewer/webengineviewer/loadexternalreferencesurlinterceptor.h +include/KPim5/WebEngineViewer/webengineviewer/localdatabasemanager.h +include/KPim5/WebEngineViewer/webengineviewer/networkpluginurlinterceptor.h +include/KPim5/WebEngineViewer/webengineviewer/networkpluginurlinterceptorconfigurewidget.h +include/KPim5/WebEngineViewer/webengineviewer/networkpluginurlinterceptorinterface.h +include/KPim5/WebEngineViewer/webengineviewer/networkurlinterceptor.h +include/KPim5/WebEngineViewer/webengineviewer/networkurlinterceptorpluginmanager.h +include/KPim5/WebEngineViewer/webengineviewer/searchfullhashjob.h +include/KPim5/WebEngineViewer/webengineviewer/submittedformwarningwidget.h +include/KPim5/WebEngineViewer/webengineviewer/trackingwarningwidget.h +include/KPim5/WebEngineViewer/webengineviewer/updatedatabaseinfo.h +include/KPim5/WebEngineViewer/webengineviewer/webengineaccesskey.h +include/KPim5/WebEngineViewer/webengineviewer/webengineexporthtmlpagejob.h +include/KPim5/WebEngineViewer/webengineviewer/webengineexportpdfpagejob.h +include/KPim5/WebEngineViewer/webengineviewer/webenginemanagescript.h +include/KPim5/WebEngineViewer/webengineviewer/webenginepage.h +include/KPim5/WebEngineViewer/webengineviewer/webenginescript.h +include/KPim5/WebEngineViewer/webengineviewer/webengineview.h +include/KPim5/WebEngineViewer/webengineviewer/webengineviewer_export.h +include/KPim5/WebEngineViewer/webengineviewer/webhittest.h +include/KPim5/WebEngineViewer/webengineviewer/webhittestresult.h +include/KPim5/WebEngineViewer/webengineviewer/zoomactionmenu.h +include/KPim5/WebEngineViewer/webengineviewer_version.h +lib/cmake/KPim5MessageComposer/KPim5MessageComposerConfig.cmake +lib/cmake/KPim5MessageComposer/KPim5MessageComposerConfigVersion.cmake +lib/cmake/KPim5MessageComposer/KPim5MessageComposerTargets-%%CMAKE_BUILD_TYPE%%.cmake +lib/cmake/KPim5MessageComposer/KPim5MessageComposerTargets.cmake +lib/cmake/KPim5MessageCore/KPim5MessageCoreConfig.cmake +lib/cmake/KPim5MessageCore/KPim5MessageCoreConfigVersion.cmake +lib/cmake/KPim5MessageCore/KPim5MessageCoreTargets-%%CMAKE_BUILD_TYPE%%.cmake +lib/cmake/KPim5MessageCore/KPim5MessageCoreTargets.cmake +lib/cmake/KPim5MessageList/KPim5MessageListConfig.cmake +lib/cmake/KPim5MessageList/KPim5MessageListConfigVersion.cmake +lib/cmake/KPim5MessageList/KPim5MessageListTargets-%%CMAKE_BUILD_TYPE%%.cmake +lib/cmake/KPim5MessageList/KPim5MessageListTargets.cmake +lib/cmake/KPim5MessageViewer/KPim5MessageViewerConfig.cmake +lib/cmake/KPim5MessageViewer/KPim5MessageViewerConfigVersion.cmake +lib/cmake/KPim5MessageViewer/KPim5MessageViewerTargets-%%CMAKE_BUILD_TYPE%%.cmake +lib/cmake/KPim5MessageViewer/KPim5MessageViewerTargets.cmake +lib/cmake/KPim5MimeTreeParser/KPim5MimeTreeParserConfig.cmake +lib/cmake/KPim5MimeTreeParser/KPim5MimeTreeParserConfigVersion.cmake +lib/cmake/KPim5MimeTreeParser/KPim5MimeTreeParserTargets-%%CMAKE_BUILD_TYPE%%.cmake +lib/cmake/KPim5MimeTreeParser/KPim5MimeTreeParserTargets.cmake +lib/cmake/KPim5TemplateParser/KPim5TemplateParserConfig.cmake +lib/cmake/KPim5TemplateParser/KPim5TemplateParserConfigVersion.cmake +lib/cmake/KPim5TemplateParser/KPim5TemplateParserTargets-%%CMAKE_BUILD_TYPE%%.cmake +lib/cmake/KPim5TemplateParser/KPim5TemplateParserTargets.cmake +lib/cmake/KPim5WebEngineViewer/KPim5WebEngineViewerConfig.cmake +lib/cmake/KPim5WebEngineViewer/KPim5WebEngineViewerConfigVersion.cmake +lib/cmake/KPim5WebEngineViewer/KPim5WebEngineViewerTargets-%%CMAKE_BUILD_TYPE%%.cmake +lib/cmake/KPim5WebEngineViewer/KPim5WebEngineViewerTargets.cmake +lib/libKPim5MessageComposer.so +lib/libKPim5MessageComposer.so.5 +lib/libKPim5MessageComposer.so.%%KDE_APPLICATIONS_SHLIB_VER%% +lib/libKPim5MessageCore.so +lib/libKPim5MessageCore.so.5 +lib/libKPim5MessageCore.so.%%KDE_APPLICATIONS_SHLIB_VER%% +lib/libKPim5MessageList.so +lib/libKPim5MessageList.so.5 +lib/libKPim5MessageList.so.%%KDE_APPLICATIONS_SHLIB_VER%% +lib/libKPim5MessageViewer.so +lib/libKPim5MessageViewer.so.5 +lib/libKPim5MessageViewer.so.%%KDE_APPLICATIONS_SHLIB_VER%% +lib/libKPim5MimeTreeParser.so +lib/libKPim5MimeTreeParser.so.5 +lib/libKPim5MimeTreeParser.so.%%KDE_APPLICATIONS_SHLIB_VER%% +lib/libKPim5TemplateParser.so +lib/libKPim5TemplateParser.so.5 +lib/libKPim5TemplateParser.so.%%KDE_APPLICATIONS_SHLIB_VER%% +lib/libKPim5WebEngineViewer.so +lib/libKPim5WebEngineViewer.so.5 +lib/libKPim5WebEngineViewer.so.%%KDE_APPLICATIONS_SHLIB_VER%% %%QT_MKSPECDIR%%/modules/qt_MessageComposer.pri %%QT_MKSPECDIR%%/modules/qt_MessageCore.pri %%QT_MKSPECDIR%%/modules/qt_MessageList.pri %%QT_MKSPECDIR%%/modules/qt_MessageViewer.pri %%QT_MKSPECDIR%%/modules/qt_TemplateParser.pri %%QT_MKSPECDIR%%/modules/qt_WebEngineViewer.pri %%QT_PLUGINDIR%%/pim5/messageviewer/grantlee/5.0/messageviewer_grantlee_extension.so %%QT_PLUGINDIR%%/pim5/messageviewer/headerstyle/messageviewer_defaultgrantleeheaderstyleplugin.so share/config.kcfg/customtemplates_kfg.kcfg share/config.kcfg/templatesconfiguration_kfg.kcfg share/knotifications5/messageviewer.notifyrc share/knsrcfiles/messageviewer_header_themes.knsrc share/libmessageviewer/pics/enterprise_bottom.png share/libmessageviewer/pics/enterprise_bottom_left.png share/libmessageviewer/pics/enterprise_bottom_right.png share/libmessageviewer/pics/enterprise_icon.png share/libmessageviewer/pics/enterprise_left.png share/libmessageviewer/pics/enterprise_right.png share/libmessageviewer/pics/enterprise_s_left.png share/libmessageviewer/pics/enterprise_s_right.png share/libmessageviewer/pics/enterprise_sbar.png share/libmessageviewer/pics/enterprise_sp_right.png share/libmessageviewer/pics/enterprise_sw.png share/libmessageviewer/pics/enterprise_top.png share/libmessageviewer/pics/enterprise_top_left.png share/libmessageviewer/pics/enterprise_top_right.png share/libmessageviewer/pics/enterprise_w.png share/libmessageviewer/pics/quicklistClosed.png share/libmessageviewer/pics/quicklistOpened.png share/libmessageviewer/pics/quotecollapse.png share/libmessageviewer/pics/quoteexpand.png share/locale/af/LC_MESSAGES/libmessagelist.mo share/locale/af/LC_MESSAGES/libmessageviewer.mo share/locale/af/LC_MESSAGES/libmimetreeparser.mo share/locale/ar/LC_MESSAGES/libmessagecomposer.mo share/locale/ar/LC_MESSAGES/libmessagecore.mo share/locale/ar/LC_MESSAGES/libmessagelist.mo share/locale/ar/LC_MESSAGES/libmessageviewer.mo share/locale/ar/LC_MESSAGES/libmimetreeparser.mo share/locale/ar/LC_MESSAGES/libtemplateparser.mo share/locale/ar/LC_MESSAGES/libwebengineviewer.mo share/locale/be/LC_MESSAGES/libmessagelist.mo share/locale/be/LC_MESSAGES/libmessageviewer.mo share/locale/be/LC_MESSAGES/libmimetreeparser.mo share/locale/bg/LC_MESSAGES/libmessagecomposer.mo share/locale/bg/LC_MESSAGES/libmessagecore.mo share/locale/bg/LC_MESSAGES/libmessagelist.mo share/locale/bg/LC_MESSAGES/libmessageviewer.mo share/locale/bg/LC_MESSAGES/libmimetreeparser.mo share/locale/bg/LC_MESSAGES/libtemplateparser.mo share/locale/bg/LC_MESSAGES/libwebengineviewer.mo share/locale/bn/LC_MESSAGES/libmessagelist.mo share/locale/bn/LC_MESSAGES/libmessageviewer.mo share/locale/bn/LC_MESSAGES/libmimetreeparser.mo share/locale/br/LC_MESSAGES/libmessagelist.mo share/locale/br/LC_MESSAGES/libmessageviewer.mo share/locale/br/LC_MESSAGES/libmimetreeparser.mo share/locale/bs/LC_MESSAGES/libmessagecomposer.mo share/locale/bs/LC_MESSAGES/libmessagecore.mo share/locale/bs/LC_MESSAGES/libmessagelist.mo share/locale/bs/LC_MESSAGES/libmessageviewer.mo share/locale/bs/LC_MESSAGES/libmimetreeparser.mo share/locale/bs/LC_MESSAGES/libtemplateparser.mo share/locale/ca/LC_MESSAGES/libmessagecomposer.mo share/locale/ca/LC_MESSAGES/libmessagecore.mo share/locale/ca/LC_MESSAGES/libmessagelist.mo share/locale/ca/LC_MESSAGES/libmessageviewer.mo share/locale/ca/LC_MESSAGES/libmimetreeparser.mo share/locale/ca/LC_MESSAGES/libtemplateparser.mo share/locale/ca/LC_MESSAGES/libwebengineviewer.mo share/locale/ca@valencia/LC_MESSAGES/libmessagecomposer.mo share/locale/ca@valencia/LC_MESSAGES/libmessagecore.mo share/locale/ca@valencia/LC_MESSAGES/libmessagelist.mo share/locale/ca@valencia/LC_MESSAGES/libmessageviewer.mo share/locale/ca@valencia/LC_MESSAGES/libmimetreeparser.mo share/locale/ca@valencia/LC_MESSAGES/libtemplateparser.mo share/locale/ca@valencia/LC_MESSAGES/libwebengineviewer.mo share/locale/cs/LC_MESSAGES/libmessagecomposer.mo share/locale/cs/LC_MESSAGES/libmessagecore.mo share/locale/cs/LC_MESSAGES/libmessagelist.mo share/locale/cs/LC_MESSAGES/libmessageviewer.mo share/locale/cs/LC_MESSAGES/libmimetreeparser.mo share/locale/cs/LC_MESSAGES/libtemplateparser.mo share/locale/cs/LC_MESSAGES/libwebengineviewer.mo share/locale/cy/LC_MESSAGES/libmessagelist.mo share/locale/cy/LC_MESSAGES/libmessageviewer.mo share/locale/cy/LC_MESSAGES/libmimetreeparser.mo share/locale/da/LC_MESSAGES/libmessagecomposer.mo share/locale/da/LC_MESSAGES/libmessagecore.mo share/locale/da/LC_MESSAGES/libmessagelist.mo share/locale/da/LC_MESSAGES/libmessageviewer.mo share/locale/da/LC_MESSAGES/libmimetreeparser.mo share/locale/da/LC_MESSAGES/libtemplateparser.mo share/locale/da/LC_MESSAGES/libwebengineviewer.mo share/locale/de/LC_MESSAGES/libmessagecomposer.mo share/locale/de/LC_MESSAGES/libmessagecore.mo share/locale/de/LC_MESSAGES/libmessagelist.mo share/locale/de/LC_MESSAGES/libmessageviewer.mo share/locale/de/LC_MESSAGES/libmimetreeparser.mo share/locale/de/LC_MESSAGES/libtemplateparser.mo share/locale/de/LC_MESSAGES/libwebengineviewer.mo share/locale/el/LC_MESSAGES/libmessagecomposer.mo share/locale/el/LC_MESSAGES/libmessagecore.mo share/locale/el/LC_MESSAGES/libmessagelist.mo share/locale/el/LC_MESSAGES/libmessageviewer.mo share/locale/el/LC_MESSAGES/libmimetreeparser.mo share/locale/el/LC_MESSAGES/libtemplateparser.mo share/locale/en_GB/LC_MESSAGES/libmessagecomposer.mo share/locale/en_GB/LC_MESSAGES/libmessagecore.mo share/locale/en_GB/LC_MESSAGES/libmessagelist.mo share/locale/en_GB/LC_MESSAGES/libmessageviewer.mo share/locale/en_GB/LC_MESSAGES/libmimetreeparser.mo share/locale/en_GB/LC_MESSAGES/libtemplateparser.mo share/locale/en_GB/LC_MESSAGES/libwebengineviewer.mo share/locale/eo/LC_MESSAGES/libmessagecomposer.mo share/locale/eo/LC_MESSAGES/libmessagecore.mo share/locale/eo/LC_MESSAGES/libmessagelist.mo share/locale/eo/LC_MESSAGES/libmessageviewer.mo share/locale/eo/LC_MESSAGES/libmimetreeparser.mo share/locale/eo/LC_MESSAGES/libtemplateparser.mo +share/locale/eo/LC_MESSAGES/libwebengineviewer.mo share/locale/es/LC_MESSAGES/libmessagecomposer.mo share/locale/es/LC_MESSAGES/libmessagecore.mo share/locale/es/LC_MESSAGES/libmessagelist.mo share/locale/es/LC_MESSAGES/libmessageviewer.mo share/locale/es/LC_MESSAGES/libmimetreeparser.mo share/locale/es/LC_MESSAGES/libtemplateparser.mo share/locale/es/LC_MESSAGES/libwebengineviewer.mo share/locale/et/LC_MESSAGES/libmessagecomposer.mo share/locale/et/LC_MESSAGES/libmessagecore.mo share/locale/et/LC_MESSAGES/libmessagelist.mo share/locale/et/LC_MESSAGES/libmessageviewer.mo share/locale/et/LC_MESSAGES/libmimetreeparser.mo share/locale/et/LC_MESSAGES/libtemplateparser.mo share/locale/et/LC_MESSAGES/libwebengineviewer.mo share/locale/eu/LC_MESSAGES/libmessagecomposer.mo share/locale/eu/LC_MESSAGES/libmessagelist.mo share/locale/eu/LC_MESSAGES/libmessageviewer.mo share/locale/eu/LC_MESSAGES/libmimetreeparser.mo share/locale/fa/LC_MESSAGES/libmessagelist.mo share/locale/fa/LC_MESSAGES/libmessageviewer.mo share/locale/fa/LC_MESSAGES/libmimetreeparser.mo share/locale/fi/LC_MESSAGES/libmessagecomposer.mo share/locale/fi/LC_MESSAGES/libmessagecore.mo share/locale/fi/LC_MESSAGES/libmessagelist.mo share/locale/fi/LC_MESSAGES/libmessageviewer.mo share/locale/fi/LC_MESSAGES/libmimetreeparser.mo share/locale/fi/LC_MESSAGES/libtemplateparser.mo share/locale/fi/LC_MESSAGES/libwebengineviewer.mo share/locale/fr/LC_MESSAGES/libmessagecomposer.mo share/locale/fr/LC_MESSAGES/libmessagecore.mo share/locale/fr/LC_MESSAGES/libmessagelist.mo share/locale/fr/LC_MESSAGES/libmessageviewer.mo share/locale/fr/LC_MESSAGES/libmimetreeparser.mo share/locale/fr/LC_MESSAGES/libtemplateparser.mo share/locale/fr/LC_MESSAGES/libwebengineviewer.mo share/locale/fy/LC_MESSAGES/libmessagelist.mo share/locale/fy/LC_MESSAGES/libmessageviewer.mo share/locale/fy/LC_MESSAGES/libmimetreeparser.mo share/locale/ga/LC_MESSAGES/libmessagecomposer.mo share/locale/ga/LC_MESSAGES/libmessagecore.mo share/locale/ga/LC_MESSAGES/libmessagelist.mo share/locale/ga/LC_MESSAGES/libmessageviewer.mo share/locale/ga/LC_MESSAGES/libmimetreeparser.mo share/locale/ga/LC_MESSAGES/libtemplateparser.mo share/locale/gl/LC_MESSAGES/libmessagecomposer.mo share/locale/gl/LC_MESSAGES/libmessagecore.mo share/locale/gl/LC_MESSAGES/libmessagelist.mo share/locale/gl/LC_MESSAGES/libmessageviewer.mo share/locale/gl/LC_MESSAGES/libmimetreeparser.mo share/locale/gl/LC_MESSAGES/libtemplateparser.mo share/locale/gl/LC_MESSAGES/libwebengineviewer.mo share/locale/he/LC_MESSAGES/libmessagelist.mo share/locale/he/LC_MESSAGES/libmessageviewer.mo share/locale/he/LC_MESSAGES/libmimetreeparser.mo share/locale/hi/LC_MESSAGES/libmessagelist.mo share/locale/hi/LC_MESSAGES/libmessageviewer.mo share/locale/hi/LC_MESSAGES/libmimetreeparser.mo share/locale/hr/LC_MESSAGES/libmessagelist.mo share/locale/hr/LC_MESSAGES/libmessageviewer.mo share/locale/hr/LC_MESSAGES/libmimetreeparser.mo share/locale/hsb/LC_MESSAGES/libmessagecomposer.mo share/locale/hsb/LC_MESSAGES/libmessagelist.mo share/locale/hsb/LC_MESSAGES/libmessageviewer.mo share/locale/hsb/LC_MESSAGES/libmimetreeparser.mo share/locale/hu/LC_MESSAGES/libmessagecomposer.mo share/locale/hu/LC_MESSAGES/libmessagecore.mo share/locale/hu/LC_MESSAGES/libmessagelist.mo share/locale/hu/LC_MESSAGES/libmessageviewer.mo share/locale/hu/LC_MESSAGES/libmimetreeparser.mo share/locale/hu/LC_MESSAGES/libtemplateparser.mo share/locale/hu/LC_MESSAGES/libwebengineviewer.mo share/locale/ia/LC_MESSAGES/libmessagecomposer.mo share/locale/ia/LC_MESSAGES/libmessagecore.mo share/locale/ia/LC_MESSAGES/libmessagelist.mo share/locale/ia/LC_MESSAGES/libmessageviewer.mo share/locale/ia/LC_MESSAGES/libmimetreeparser.mo share/locale/ia/LC_MESSAGES/libtemplateparser.mo share/locale/ia/LC_MESSAGES/libwebengineviewer.mo share/locale/is/LC_MESSAGES/libmessagelist.mo share/locale/is/LC_MESSAGES/libmessageviewer.mo share/locale/is/LC_MESSAGES/libmimetreeparser.mo share/locale/it/LC_MESSAGES/libmessagecomposer.mo share/locale/it/LC_MESSAGES/libmessagecore.mo share/locale/it/LC_MESSAGES/libmessagelist.mo share/locale/it/LC_MESSAGES/libmessageviewer.mo share/locale/it/LC_MESSAGES/libmimetreeparser.mo share/locale/it/LC_MESSAGES/libtemplateparser.mo share/locale/it/LC_MESSAGES/libwebengineviewer.mo share/locale/ja/LC_MESSAGES/libmessagecomposer.mo share/locale/ja/LC_MESSAGES/libmessagecore.mo share/locale/ja/LC_MESSAGES/libmessagelist.mo share/locale/ja/LC_MESSAGES/libmessageviewer.mo share/locale/ja/LC_MESSAGES/libmimetreeparser.mo share/locale/ja/LC_MESSAGES/libtemplateparser.mo share/locale/ja/LC_MESSAGES/libwebengineviewer.mo share/locale/ka/LC_MESSAGES/libmessagecomposer.mo share/locale/ka/LC_MESSAGES/libmessagecore.mo share/locale/ka/LC_MESSAGES/libmessagelist.mo share/locale/ka/LC_MESSAGES/libmessageviewer.mo share/locale/ka/LC_MESSAGES/libmimetreeparser.mo share/locale/ka/LC_MESSAGES/libtemplateparser.mo share/locale/ka/LC_MESSAGES/libwebengineviewer.mo share/locale/kk/LC_MESSAGES/libmessagecomposer.mo share/locale/kk/LC_MESSAGES/libmessagecore.mo share/locale/kk/LC_MESSAGES/libmessagelist.mo share/locale/kk/LC_MESSAGES/libmessageviewer.mo share/locale/kk/LC_MESSAGES/libmimetreeparser.mo share/locale/kk/LC_MESSAGES/libtemplateparser.mo share/locale/km/LC_MESSAGES/libmessagecore.mo share/locale/km/LC_MESSAGES/libmessagelist.mo share/locale/km/LC_MESSAGES/libmessageviewer.mo share/locale/km/LC_MESSAGES/libmimetreeparser.mo share/locale/km/LC_MESSAGES/libtemplateparser.mo share/locale/ko/LC_MESSAGES/libmessagecomposer.mo share/locale/ko/LC_MESSAGES/libmessagecore.mo share/locale/ko/LC_MESSAGES/libmessagelist.mo share/locale/ko/LC_MESSAGES/libmessageviewer.mo share/locale/ko/LC_MESSAGES/libmimetreeparser.mo share/locale/ko/LC_MESSAGES/libtemplateparser.mo share/locale/ko/LC_MESSAGES/libwebengineviewer.mo share/locale/lt/LC_MESSAGES/libmessagecomposer.mo share/locale/lt/LC_MESSAGES/libmessagecore.mo share/locale/lt/LC_MESSAGES/libmessagelist.mo share/locale/lt/LC_MESSAGES/libmessageviewer.mo share/locale/lt/LC_MESSAGES/libmimetreeparser.mo share/locale/lt/LC_MESSAGES/libtemplateparser.mo share/locale/lt/LC_MESSAGES/libwebengineviewer.mo share/locale/lv/LC_MESSAGES/libmessagecore.mo share/locale/lv/LC_MESSAGES/libmessagelist.mo share/locale/lv/LC_MESSAGES/libmessageviewer.mo share/locale/lv/LC_MESSAGES/libmimetreeparser.mo share/locale/mai/LC_MESSAGES/libmessagelist.mo share/locale/mai/LC_MESSAGES/libmessageviewer.mo share/locale/mai/LC_MESSAGES/libmimetreeparser.mo share/locale/mai/LC_MESSAGES/libtemplateparser.mo share/locale/mk/LC_MESSAGES/libmessagelist.mo share/locale/mk/LC_MESSAGES/libmessageviewer.mo share/locale/mk/LC_MESSAGES/libmimetreeparser.mo share/locale/mr/LC_MESSAGES/libmessagecomposer.mo share/locale/mr/LC_MESSAGES/libmessagecore.mo share/locale/mr/LC_MESSAGES/libmessagelist.mo share/locale/mr/LC_MESSAGES/libmessageviewer.mo share/locale/mr/LC_MESSAGES/libmimetreeparser.mo share/locale/mr/LC_MESSAGES/libtemplateparser.mo share/locale/ms/LC_MESSAGES/libmessagelist.mo share/locale/ms/LC_MESSAGES/libmessageviewer.mo share/locale/ms/LC_MESSAGES/libmimetreeparser.mo share/locale/nb/LC_MESSAGES/libmessagecomposer.mo share/locale/nb/LC_MESSAGES/libmessagecore.mo share/locale/nb/LC_MESSAGES/libmessagelist.mo share/locale/nb/LC_MESSAGES/libmessageviewer.mo share/locale/nb/LC_MESSAGES/libmimetreeparser.mo share/locale/nb/LC_MESSAGES/libtemplateparser.mo share/locale/nds/LC_MESSAGES/libmessagecomposer.mo share/locale/nds/LC_MESSAGES/libmessagecore.mo share/locale/nds/LC_MESSAGES/libmessagelist.mo share/locale/nds/LC_MESSAGES/libmessageviewer.mo share/locale/nds/LC_MESSAGES/libmimetreeparser.mo share/locale/nds/LC_MESSAGES/libtemplateparser.mo share/locale/ne/LC_MESSAGES/libmessagelist.mo share/locale/ne/LC_MESSAGES/libmessageviewer.mo share/locale/ne/LC_MESSAGES/libmimetreeparser.mo share/locale/nl/LC_MESSAGES/libmessagecomposer.mo share/locale/nl/LC_MESSAGES/libmessagecore.mo share/locale/nl/LC_MESSAGES/libmessagelist.mo share/locale/nl/LC_MESSAGES/libmessageviewer.mo share/locale/nl/LC_MESSAGES/libmimetreeparser.mo share/locale/nl/LC_MESSAGES/libtemplateparser.mo share/locale/nl/LC_MESSAGES/libwebengineviewer.mo share/locale/nn/LC_MESSAGES/libmessagecomposer.mo share/locale/nn/LC_MESSAGES/libmessagecore.mo share/locale/nn/LC_MESSAGES/libmessagelist.mo share/locale/nn/LC_MESSAGES/libmessageviewer.mo share/locale/nn/LC_MESSAGES/libmimetreeparser.mo share/locale/pa/LC_MESSAGES/libmessagecomposer.mo share/locale/pa/LC_MESSAGES/libmessagecore.mo share/locale/pa/LC_MESSAGES/libmessagelist.mo share/locale/pa/LC_MESSAGES/libmessageviewer.mo share/locale/pa/LC_MESSAGES/libmimetreeparser.mo share/locale/pa/LC_MESSAGES/libtemplateparser.mo share/locale/pl/LC_MESSAGES/libmessagecomposer.mo share/locale/pl/LC_MESSAGES/libmessagecore.mo share/locale/pl/LC_MESSAGES/libmessagelist.mo share/locale/pl/LC_MESSAGES/libmessageviewer.mo share/locale/pl/LC_MESSAGES/libmimetreeparser.mo share/locale/pl/LC_MESSAGES/libtemplateparser.mo share/locale/pl/LC_MESSAGES/libwebengineviewer.mo share/locale/pt/LC_MESSAGES/libmessagecomposer.mo share/locale/pt/LC_MESSAGES/libmessagecore.mo share/locale/pt/LC_MESSAGES/libmessagelist.mo share/locale/pt/LC_MESSAGES/libmessageviewer.mo share/locale/pt/LC_MESSAGES/libmimetreeparser.mo share/locale/pt/LC_MESSAGES/libtemplateparser.mo share/locale/pt/LC_MESSAGES/libwebengineviewer.mo share/locale/pt_BR/LC_MESSAGES/libmessagecomposer.mo share/locale/pt_BR/LC_MESSAGES/libmessagecore.mo share/locale/pt_BR/LC_MESSAGES/libmessagelist.mo share/locale/pt_BR/LC_MESSAGES/libmessageviewer.mo share/locale/pt_BR/LC_MESSAGES/libmimetreeparser.mo share/locale/pt_BR/LC_MESSAGES/libtemplateparser.mo share/locale/pt_BR/LC_MESSAGES/libwebengineviewer.mo share/locale/ro/LC_MESSAGES/libmessagecomposer.mo share/locale/ro/LC_MESSAGES/libmessagecore.mo share/locale/ro/LC_MESSAGES/libmessagelist.mo share/locale/ro/LC_MESSAGES/libmessageviewer.mo share/locale/ro/LC_MESSAGES/libmimetreeparser.mo share/locale/ro/LC_MESSAGES/libtemplateparser.mo share/locale/ru/LC_MESSAGES/libmessagecomposer.mo share/locale/ru/LC_MESSAGES/libmessagecore.mo share/locale/ru/LC_MESSAGES/libmessagelist.mo share/locale/ru/LC_MESSAGES/libmessageviewer.mo share/locale/ru/LC_MESSAGES/libmimetreeparser.mo share/locale/ru/LC_MESSAGES/libtemplateparser.mo share/locale/ru/LC_MESSAGES/libwebengineviewer.mo share/locale/se/LC_MESSAGES/libmessagelist.mo share/locale/se/LC_MESSAGES/libmessageviewer.mo share/locale/se/LC_MESSAGES/libmimetreeparser.mo share/locale/sk/LC_MESSAGES/libmessagecomposer.mo share/locale/sk/LC_MESSAGES/libmessagecore.mo share/locale/sk/LC_MESSAGES/libmessagelist.mo share/locale/sk/LC_MESSAGES/libmessageviewer.mo share/locale/sk/LC_MESSAGES/libmimetreeparser.mo share/locale/sk/LC_MESSAGES/libtemplateparser.mo share/locale/sk/LC_MESSAGES/libwebengineviewer.mo share/locale/sl/LC_MESSAGES/libmessagecomposer.mo share/locale/sl/LC_MESSAGES/libmessagecore.mo share/locale/sl/LC_MESSAGES/libmessagelist.mo share/locale/sl/LC_MESSAGES/libmessageviewer.mo share/locale/sl/LC_MESSAGES/libmimetreeparser.mo share/locale/sl/LC_MESSAGES/libtemplateparser.mo share/locale/sl/LC_MESSAGES/libwebengineviewer.mo share/locale/sr/LC_MESSAGES/libmessagecomposer.mo share/locale/sr/LC_MESSAGES/libmessagecore.mo share/locale/sr/LC_MESSAGES/libmessagelist.mo share/locale/sr/LC_MESSAGES/libmessageviewer.mo share/locale/sr/LC_MESSAGES/libmimetreeparser.mo share/locale/sr/LC_MESSAGES/libtemplateparser.mo share/locale/sr/LC_MESSAGES/libwebengineviewer.mo share/locale/sr@ijekavian/LC_MESSAGES/libmessagecomposer.mo share/locale/sr@ijekavian/LC_MESSAGES/libmessagecore.mo share/locale/sr@ijekavian/LC_MESSAGES/libmessagelist.mo share/locale/sr@ijekavian/LC_MESSAGES/libmessageviewer.mo share/locale/sr@ijekavian/LC_MESSAGES/libmimetreeparser.mo share/locale/sr@ijekavian/LC_MESSAGES/libtemplateparser.mo share/locale/sr@ijekavian/LC_MESSAGES/libwebengineviewer.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/libmessagecomposer.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/libmessagecore.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/libmessagelist.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/libmessageviewer.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/libmimetreeparser.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/libtemplateparser.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/libwebengineviewer.mo share/locale/sr@latin/LC_MESSAGES/libmessagecomposer.mo share/locale/sr@latin/LC_MESSAGES/libmessagecore.mo share/locale/sr@latin/LC_MESSAGES/libmessagelist.mo share/locale/sr@latin/LC_MESSAGES/libmessageviewer.mo share/locale/sr@latin/LC_MESSAGES/libmimetreeparser.mo share/locale/sr@latin/LC_MESSAGES/libtemplateparser.mo share/locale/sr@latin/LC_MESSAGES/libwebengineviewer.mo share/locale/sv/LC_MESSAGES/libmessagecomposer.mo share/locale/sv/LC_MESSAGES/libmessagecore.mo share/locale/sv/LC_MESSAGES/libmessagelist.mo share/locale/sv/LC_MESSAGES/libmessageviewer.mo share/locale/sv/LC_MESSAGES/libmimetreeparser.mo share/locale/sv/LC_MESSAGES/libtemplateparser.mo share/locale/sv/LC_MESSAGES/libwebengineviewer.mo share/locale/ta/LC_MESSAGES/libmessagecomposer.mo share/locale/ta/LC_MESSAGES/libmessagecore.mo share/locale/ta/LC_MESSAGES/libmessagelist.mo share/locale/ta/LC_MESSAGES/libmessageviewer.mo share/locale/ta/LC_MESSAGES/libmimetreeparser.mo share/locale/ta/LC_MESSAGES/libtemplateparser.mo share/locale/ta/LC_MESSAGES/libwebengineviewer.mo share/locale/tg/LC_MESSAGES/libmessagelist.mo share/locale/tg/LC_MESSAGES/libmessageviewer.mo share/locale/tg/LC_MESSAGES/libmimetreeparser.mo share/locale/th/LC_MESSAGES/libmessagecore.mo share/locale/th/LC_MESSAGES/libmessagelist.mo share/locale/th/LC_MESSAGES/libmessageviewer.mo share/locale/th/LC_MESSAGES/libmimetreeparser.mo share/locale/tr/LC_MESSAGES/libmessagecomposer.mo share/locale/tr/LC_MESSAGES/libmessagecore.mo share/locale/tr/LC_MESSAGES/libmessagelist.mo share/locale/tr/LC_MESSAGES/libmessageviewer.mo share/locale/tr/LC_MESSAGES/libmimetreeparser.mo share/locale/tr/LC_MESSAGES/libtemplateparser.mo share/locale/tr/LC_MESSAGES/libwebengineviewer.mo share/locale/ug/LC_MESSAGES/libmessagecomposer.mo share/locale/ug/LC_MESSAGES/libmessagecore.mo share/locale/ug/LC_MESSAGES/libmessagelist.mo share/locale/ug/LC_MESSAGES/libmessageviewer.mo share/locale/ug/LC_MESSAGES/libmimetreeparser.mo share/locale/ug/LC_MESSAGES/libtemplateparser.mo share/locale/uk/LC_MESSAGES/libmessagecomposer.mo share/locale/uk/LC_MESSAGES/libmessagecore.mo share/locale/uk/LC_MESSAGES/libmessagelist.mo share/locale/uk/LC_MESSAGES/libmessageviewer.mo share/locale/uk/LC_MESSAGES/libmimetreeparser.mo share/locale/uk/LC_MESSAGES/libtemplateparser.mo share/locale/uk/LC_MESSAGES/libwebengineviewer.mo share/locale/uz/LC_MESSAGES/libmessagelist.mo share/locale/uz/LC_MESSAGES/libmessageviewer.mo share/locale/uz/LC_MESSAGES/libmimetreeparser.mo share/locale/uz@cyrillic/LC_MESSAGES/libmessagelist.mo share/locale/uz@cyrillic/LC_MESSAGES/libmessageviewer.mo share/locale/uz@cyrillic/LC_MESSAGES/libmimetreeparser.mo share/locale/wa/LC_MESSAGES/libmessagelist.mo share/locale/wa/LC_MESSAGES/libmessageviewer.mo share/locale/wa/LC_MESSAGES/libmimetreeparser.mo share/locale/wa/LC_MESSAGES/libtemplateparser.mo share/locale/xh/LC_MESSAGES/libmessagelist.mo share/locale/xh/LC_MESSAGES/libmessageviewer.mo share/locale/xh/LC_MESSAGES/libmimetreeparser.mo share/locale/zh_CN/LC_MESSAGES/libmessagecomposer.mo share/locale/zh_CN/LC_MESSAGES/libmessagecore.mo share/locale/zh_CN/LC_MESSAGES/libmessagelist.mo share/locale/zh_CN/LC_MESSAGES/libmessageviewer.mo share/locale/zh_CN/LC_MESSAGES/libmimetreeparser.mo share/locale/zh_CN/LC_MESSAGES/libtemplateparser.mo share/locale/zh_CN/LC_MESSAGES/libwebengineviewer.mo share/locale/zh_TW/LC_MESSAGES/libmessagecomposer.mo share/locale/zh_TW/LC_MESSAGES/libmessagecore.mo share/locale/zh_TW/LC_MESSAGES/libmessagelist.mo share/locale/zh_TW/LC_MESSAGES/libmessageviewer.mo share/locale/zh_TW/LC_MESSAGES/libmimetreeparser.mo share/locale/zh_TW/LC_MESSAGES/libtemplateparser.mo share/locale/zh_TW/LC_MESSAGES/libwebengineviewer.mo share/messagelist/pics/mail-horizontal-space.png share/messagelist/pics/mail-vertical-separator-line.png share/messageviewer/about/default/background.png share/messageviewer/about/default/main.css share/messageviewer/about/default/main.html share/messageviewer/about/default/splash.theme share/messageviewer/about/default/status.html share/messageviewer/defaultthemes/5.2/header.html share/messageviewer/defaultthemes/5.2/kmail_default.desktop share/messageviewer/defaultthemes/5.2/photo.png share/messageviewer/defaultthemes/5.2/photo.svg share/messageviewer/defaultthemes/5.2/style.css share/messageviewer/longurlServices.json share/org.kde.syntax-highlighting/syntax/kmail-template.xml share/qlogging-categories5/messagelib.categories share/qlogging-categories5/messagelib.renamecategories diff --git a/net/pimcommon/Makefile b/net/pimcommon/Makefile index f23051a710b8..679d5302d9cd 100644 --- a/net/pimcommon/Makefile +++ b/net/pimcommon/Makefile @@ -1,32 +1,34 @@ PORTNAME= pimcommon DISTVERSION= ${KDE_APPLICATIONS_VERSION} CATEGORIES= net kde kde-applications MAINTAINER= kde@FreeBSD.org COMMENT= Common libriares for KDEPim WWW= https://www.kde.org/ LICENSE= LGPL21 BUILD_DEPENDS= ${LOCALBASE}/include/boost/range/algorithm.hpp:devel/boost-libs -USES= cmake compiler:c++11-lib gettext grantlee:5 kde:5 qt:5 tar:xz xorg +USES= cmake compiler:c++11-lib gettext grantlee:5 kde:5 qt:5 tar:xz \ + xorg USE_KDE= archive attica auth codecs completion config configwidgets \ - coreaddons dbusaddons emoticons i18n init iconthemes itemmodels itemviews \ - jobwidgets kcmutils kio newstuff service solid sonnet textwidgets \ - wallet widgetsaddons windowsystem xmlgui \ + coreaddons dbusaddons emoticons i18n iconthemes init \ + itemmodels itemviews jobwidgets kcmutils kio newstuff service \ + solid sonnet textwidgets wallet widgetsaddons windowsystem \ + xmlgui \ ecm:build # pim components -USE_KDE+= akonadi akonadicontacts akonadisearch contacts grantleetheme imap ldap \ - libkdepim mime pimtextedit purpose -USE_QT= concurrent core dbus designer gui network printsupport script testlib \ - uiplugin uitools webkit widgets xml \ +USE_KDE+= akonadi akonadicontacts akonadisearch contacts grantleetheme \ + imap ktextaddons ldap libkdepim mime pimtextedit purpose +USE_QT= concurrent core dbus designer gui network printsupport script \ + testlib uiplugin uitools webkit widgets xml \ buildtools:build qmake:build USE_XORG= x11 USE_LDCONFIG= yes DESCR= ${.CURDIR:H:H}/deskutils/kdepim/pkg-descr OPTIONS_DEFINE= DOCS .include diff --git a/net/pimcommon/distinfo b/net/pimcommon/distinfo index 99df17eb58bf..6015b25718ba 100644 --- a/net/pimcommon/distinfo +++ b/net/pimcommon/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1677828387 -SHA256 (KDE/release-service/22.12.3/pimcommon-22.12.3.tar.xz) = 1b651c5902b3d856706f4ba38fce7a1e622b0bb87612070ee30fdb743382e0fa -SIZE (KDE/release-service/22.12.3/pimcommon-22.12.3.tar.xz) = 420900 +TIMESTAMP = 1681548227 +SHA256 (KDE/release-service/23.04.0/pimcommon-23.04.0.tar.xz) = 3446344b154fe444848efea27368be6da8e21aca30a9c6b03d9a078ead6681ac +SIZE (KDE/release-service/23.04.0/pimcommon-23.04.0.tar.xz) = 346020 diff --git a/net/pimcommon/pkg-plist b/net/pimcommon/pkg-plist index 945258bab2a6..889a11f0e854 100644 --- a/net/pimcommon/pkg-plist +++ b/net/pimcommon/pkg-plist @@ -1,205 +1,174 @@ include/KF5/PimCommon/PimCommon/AbstractGenericPlugin include/KF5/PimCommon/PimCommon/AbstractGenericPluginInterface include/KF5/PimCommon/PimCommon/BroadcastStatus include/KF5/PimCommon/PimCommon/ConfigureImmutableWidgetUtils include/KF5/PimCommon/PimCommon/ConfigurePluginDialog include/KF5/PimCommon/PimCommon/ConfigurePluginsListWidget include/KF5/PimCommon/PimCommon/ConfigurePluginsWidget include/KF5/PimCommon/PimCommon/CustomLogWidget include/KF5/PimCommon/PimCommon/CustomToolsPlugin include/KF5/PimCommon/PimCommon/CustomToolsPluginManager include/KF5/PimCommon/PimCommon/CustomToolsViewInterface include/KF5/PimCommon/PimCommon/CustomToolsWidgetng include/KF5/PimCommon/PimCommon/CustomTreeView include/KF5/PimCommon/PimCommon/EmailValidator include/KF5/PimCommon/PimCommon/GenericPlugin include/KF5/PimCommon/PimCommon/GenericPluginManager include/KF5/PimCommon/PimCommon/KActionMenuChangeCase include/KF5/PimCommon/PimCommon/LineEditWithAutoCorrection include/KF5/PimCommon/PimCommon/LineEditWithCompleterNg include/KF5/PimCommon/PimCommon/MigrateApplicationFiles include/KF5/PimCommon/PimCommon/MigrateFileInfo include/KF5/PimCommon/PimCommon/NetworkManager include/KF5/PimCommon/PimCommon/PimUtil include/KF5/PimCommon/PimCommon/PluginUtil include/KF5/PimCommon/PimCommon/PurposeMenuWidget include/KF5/PimCommon/PimCommon/RenameFileDialog include/KF5/PimCommon/PimCommon/ShareServiceUrlManager include/KF5/PimCommon/PimCommon/SimpleStringListEditor include/KF5/PimCommon/PimCommon/SpellCheckLineEdit include/KF5/PimCommon/PimCommon/TemplateListWidget include/KF5/PimCommon/PimCommon/TemplateManager -include/KF5/PimCommon/PimCommon/TranslatorConfigureDialog -include/KF5/PimCommon/PimCommon/TranslatorWidget include/KF5/PimCommon/pimcommon/abstractgenericplugin.h include/KF5/PimCommon/pimcommon/abstractgenericplugininterface.h include/KF5/PimCommon/pimcommon/broadcaststatus.h include/KF5/PimCommon/pimcommon/configureimmutablewidgetutils.h include/KF5/PimCommon/pimcommon/configureplugindialog.h include/KF5/PimCommon/pimcommon/configurepluginslistwidget.h include/KF5/PimCommon/pimcommon/configurepluginswidget.h include/KF5/PimCommon/pimcommon/customlogwidget.h include/KF5/PimCommon/pimcommon/customtoolsplugin.h include/KF5/PimCommon/pimcommon/customtoolspluginmanager.h include/KF5/PimCommon/pimcommon/customtoolsviewinterface.h include/KF5/PimCommon/pimcommon/customtoolswidgetng.h include/KF5/PimCommon/pimcommon/customtreeview.h include/KF5/PimCommon/pimcommon/emailvalidator.h include/KF5/PimCommon/pimcommon/genericplugin.h include/KF5/PimCommon/pimcommon/genericpluginmanager.h include/KF5/PimCommon/pimcommon/imapresourcesettings.h include/KF5/PimCommon/pimcommon/kactionmenuchangecase.h include/KF5/PimCommon/pimcommon/lineeditwithautocorrection.h include/KF5/PimCommon/pimcommon/lineeditwithcompleterng.h include/KF5/PimCommon/pimcommon/migrateapplicationfiles.h include/KF5/PimCommon/pimcommon/migratefileinfo.h include/KF5/PimCommon/pimcommon/networkmanager.h include/KF5/PimCommon/pimcommon/pimcommon_export.h include/KF5/PimCommon/pimcommon/pimutil.h include/KF5/PimCommon/pimcommon/pluginutil.h include/KF5/PimCommon/pimcommon/purposemenuwidget.h include/KF5/PimCommon/pimcommon/renamefiledialog.h include/KF5/PimCommon/pimcommon/shareserviceurlmanager.h include/KF5/PimCommon/pimcommon/simplestringlisteditor.h include/KF5/PimCommon/pimcommon/spellchecklineedit.h include/KF5/PimCommon/pimcommon/templatelistwidget.h include/KF5/PimCommon/pimcommon/templatemanager.h -include/KF5/PimCommon/pimcommon/translatorconfiguredialog.h -include/KF5/PimCommon/pimcommon/translatorwidget.h include/KF5/PimCommon/pimcommon_version.h include/KF5/PimCommonAkonadi/PimCommonAkonadi/AddresseeLineEdit include/KF5/PimCommonAkonadi/PimCommonAkonadi/AnnotationDialog include/KF5/PimCommonAkonadi/PimCommonAkonadi/CheckedCollectionWidget include/KF5/PimCommonAkonadi/PimCommonAkonadi/CollectionAclPage include/KF5/PimCommonAkonadi/PimCommonAkonadi/CollectionAnnotationsAttribute include/KF5/PimCommonAkonadi/PimCommonAkonadi/CollectionTypeUtil include/KF5/PimCommonAkonadi/PimCommonAkonadi/CompletionConfigureDialog include/KF5/PimCommonAkonadi/PimCommonAkonadi/CompletionOrderEditor include/KF5/PimCommonAkonadi/PimCommonAkonadi/ContentTypeWidget include/KF5/PimCommonAkonadi/PimCommonAkonadi/CreateResource include/KF5/PimCommonAkonadi/PimCommonAkonadi/GenericPluginInterface include/KF5/PimCommonAkonadi/PimCommonAkonadi/ImapAclAttribute include/KF5/PimCommonAkonadi/PimCommonAkonadi/ImapResourceCapabilitiesManager include/KF5/PimCommonAkonadi/PimCommonAkonadi/IncidencesForWidget include/KF5/PimCommonAkonadi/PimCommonAkonadi/LdapSearchDialog include/KF5/PimCommonAkonadi/PimCommonAkonadi/MailUtil include/KF5/PimCommonAkonadi/PimCommonAkonadi/ManageServerSideSubscriptionJob include/KF5/PimCommonAkonadi/PimCommonAkonadi/PluginInterface include/KF5/PimCommonAkonadi/PimCommonAkonadi/ProgressManagerAkonadi include/KF5/PimCommonAkonadi/PimCommonAkonadi/RecentAddresses include/KF5/PimCommonAkonadi/PimCommonAkonadi/SelectMultiCollectionDialog include/KF5/PimCommonAkonadi/pimcommonakonadi/addresseelineedit.h include/KF5/PimCommonAkonadi/pimcommonakonadi/annotationdialog.h include/KF5/PimCommonAkonadi/pimcommonakonadi/checkedcollectionwidget.h include/KF5/PimCommonAkonadi/pimcommonakonadi/collectionaclpage.h include/KF5/PimCommonAkonadi/pimcommonakonadi/collectionannotationsattribute.h include/KF5/PimCommonAkonadi/pimcommonakonadi/collectiontypeutil.h include/KF5/PimCommonAkonadi/pimcommonakonadi/completionconfiguredialog.h include/KF5/PimCommonAkonadi/pimcommonakonadi/completionordereditor.h include/KF5/PimCommonAkonadi/pimcommonakonadi/contenttypewidget.h include/KF5/PimCommonAkonadi/pimcommonakonadi/createresource.h include/KF5/PimCommonAkonadi/pimcommonakonadi/genericplugininterface.h include/KF5/PimCommonAkonadi/pimcommonakonadi/imapaclattribute.h include/KF5/PimCommonAkonadi/pimcommonakonadi/imapresourcecapabilitiesmanager.h include/KF5/PimCommonAkonadi/pimcommonakonadi/incidencesforwidget.h include/KF5/PimCommonAkonadi/pimcommonakonadi/ldapsearchdialog.h include/KF5/PimCommonAkonadi/pimcommonakonadi/mailutil.h include/KF5/PimCommonAkonadi/pimcommonakonadi/manageserversidesubscriptionjob.h include/KF5/PimCommonAkonadi/pimcommonakonadi/pimcommonakonadi_export.h include/KF5/PimCommonAkonadi/pimcommonakonadi/plugininterface.h include/KF5/PimCommonAkonadi/pimcommonakonadi/progressmanagerakonadi.h include/KF5/PimCommonAkonadi/pimcommonakonadi/recentaddresses.h include/KF5/PimCommonAkonadi/pimcommonakonadi/selectmulticollectiondialog.h include/KF5/PimCommonAkonadi/pimcommonakonadi_version.h -include/KF5/PimCommonAutoCorrection/PimCommonAutoCorrection/AutoCorrection -include/KF5/PimCommonAutoCorrection/PimCommonAutoCorrection/AutoCorrectionLanguage -include/KF5/PimCommonAutoCorrection/PimCommonAutoCorrection/AutoCorrectionSettings -include/KF5/PimCommonAutoCorrection/PimCommonAutoCorrection/AutoCorrectionTextEdit -include/KF5/PimCommonAutoCorrection/PimCommonAutoCorrection/AutoCorrectionUtils -include/KF5/PimCommonAutoCorrection/PimCommonAutoCorrection/AutoCorrectionWidget -include/KF5/PimCommonAutoCorrection/PimCommonAutoCorrection/PimCommonAutoCorrectionSettings -include/KF5/PimCommonAutoCorrection/PimCommonAutoCorrection/SelectSpecialCharDialog -include/KF5/PimCommonAutoCorrection/pimcommonautocorrection/autocorrection.h -include/KF5/PimCommonAutoCorrection/pimcommonautocorrection/autocorrectionlanguage.h -include/KF5/PimCommonAutoCorrection/pimcommonautocorrection/autocorrectionsettings.h -include/KF5/PimCommonAutoCorrection/pimcommonautocorrection/autocorrectiontextedit.h -include/KF5/PimCommonAutoCorrection/pimcommonautocorrection/autocorrectionutils.h -include/KF5/PimCommonAutoCorrection/pimcommonautocorrection/autocorrectionwidget.h -include/KF5/PimCommonAutoCorrection/pimcommonautocorrection/pimcommonautocorrection_export.h -include/KF5/PimCommonAutoCorrection/pimcommonautocorrection/pimcommonautocorrectionsetting_base.h -include/KF5/PimCommonAutoCorrection/pimcommonautocorrection/pimcommonautocorrectionsettings.h -include/KF5/PimCommonAutoCorrection/pimcommonautocorrection/selectspecialchardialog.h -include/KF5/PimCommonAutoCorrection/pimcommonautocorrection_version.h lib/cmake/KF5PimCommon/KF5PimCommonConfig.cmake lib/cmake/KF5PimCommon/KF5PimCommonConfigVersion.cmake lib/cmake/KF5PimCommon/KF5PimCommonTargets-%%CMAKE_BUILD_TYPE%%.cmake lib/cmake/KF5PimCommon/KF5PimCommonTargets.cmake lib/cmake/KF5PimCommonAkonadi/KF5PimCommonAkonadiConfig.cmake lib/cmake/KF5PimCommonAkonadi/KF5PimCommonAkonadiConfigVersion.cmake lib/cmake/KF5PimCommonAkonadi/KF5PimCommonAkonadiTargets-%%CMAKE_BUILD_TYPE%%.cmake lib/cmake/KF5PimCommonAkonadi/KF5PimCommonAkonadiTargets.cmake -lib/cmake/KF5PimCommonAutoCorrection/KF5PimCommonAutoCorrectionConfig.cmake -lib/cmake/KF5PimCommonAutoCorrection/KF5PimCommonAutoCorrectionConfigVersion.cmake -lib/cmake/KF5PimCommonAutoCorrection/KF5PimCommonAutoCorrectionTargets-%%CMAKE_BUILD_TYPE%%.cmake -lib/cmake/KF5PimCommonAutoCorrection/KF5PimCommonAutoCorrectionTargets.cmake lib/libKF5PimCommon.so lib/libKF5PimCommon.so.5 lib/libKF5PimCommon.so.%%KDE_APPLICATIONS_SHLIB_VER%% lib/libKF5PimCommonAkonadi.so lib/libKF5PimCommonAkonadi.so.5 lib/libKF5PimCommonAkonadi.so.%%KDE_APPLICATIONS_SHLIB_VER%% -lib/libKF5PimCommonAutoCorrection.so -lib/libKF5PimCommonAutoCorrection.so.5 -lib/libKF5PimCommonAutoCorrection.so.%%KDE_APPLICATIONS_SHLIB_VER%% %%QT_MKSPECDIR%%/modules/qt_PimCommon.pri %%QT_MKSPECDIR%%/modules/qt_PimCommonAkonadi.pri -%%QT_MKSPECDIR%%/modules/qt_PimCommonAutoCorrection.pri -%%QT_PLUGINDIR%%/designer/pimcommonakonadiwidgets.so -%%QT_PLUGINDIR%%/designer/pimcommonwidgets.so +%%QT_PLUGINDIR%%/designer/pimcommon5akonadiwidgets.so +%%QT_PLUGINDIR%%/designer/pimcommon5widgets.so share/locale/ar/LC_MESSAGES/libpimcommon.mo share/locale/bs/LC_MESSAGES/libpimcommon.mo share/locale/ca/LC_MESSAGES/libpimcommon.mo share/locale/ca@valencia/LC_MESSAGES/libpimcommon.mo share/locale/cs/LC_MESSAGES/libpimcommon.mo share/locale/da/LC_MESSAGES/libpimcommon.mo share/locale/de/LC_MESSAGES/libpimcommon.mo share/locale/el/LC_MESSAGES/libpimcommon.mo share/locale/en_GB/LC_MESSAGES/libpimcommon.mo share/locale/es/LC_MESSAGES/libpimcommon.mo share/locale/et/LC_MESSAGES/libpimcommon.mo share/locale/eu/LC_MESSAGES/libpimcommon.mo share/locale/fi/LC_MESSAGES/libpimcommon.mo share/locale/fr/LC_MESSAGES/libpimcommon.mo share/locale/ga/LC_MESSAGES/libpimcommon.mo share/locale/gl/LC_MESSAGES/libpimcommon.mo share/locale/hu/LC_MESSAGES/libpimcommon.mo share/locale/ia/LC_MESSAGES/libpimcommon.mo share/locale/it/LC_MESSAGES/libpimcommon.mo share/locale/ja/LC_MESSAGES/libpimcommon.mo share/locale/ka/LC_MESSAGES/libpimcommon.mo share/locale/kk/LC_MESSAGES/libpimcommon.mo share/locale/ko/LC_MESSAGES/libpimcommon.mo share/locale/lt/LC_MESSAGES/libpimcommon.mo share/locale/mr/LC_MESSAGES/libpimcommon.mo share/locale/nb/LC_MESSAGES/libpimcommon.mo share/locale/nds/LC_MESSAGES/libpimcommon.mo share/locale/nl/LC_MESSAGES/libpimcommon.mo share/locale/pl/LC_MESSAGES/libpimcommon.mo share/locale/pt/LC_MESSAGES/libpimcommon.mo share/locale/pt_BR/LC_MESSAGES/libpimcommon.mo share/locale/ro/LC_MESSAGES/libpimcommon.mo share/locale/ru/LC_MESSAGES/libpimcommon.mo share/locale/sk/LC_MESSAGES/libpimcommon.mo share/locale/sl/LC_MESSAGES/libpimcommon.mo share/locale/sr/LC_MESSAGES/libpimcommon.mo share/locale/sr@ijekavian/LC_MESSAGES/libpimcommon.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/libpimcommon.mo share/locale/sr@latin/LC_MESSAGES/libpimcommon.mo share/locale/sv/LC_MESSAGES/libpimcommon.mo share/locale/tr/LC_MESSAGES/libpimcommon.mo share/locale/ug/LC_MESSAGES/libpimcommon.mo share/locale/uk/LC_MESSAGES/libpimcommon.mo share/locale/zh_CN/LC_MESSAGES/libpimcommon.mo share/locale/zh_TW/LC_MESSAGES/libpimcommon.mo share/qlogging-categories5/pimcommon.categories share/qlogging-categories5/pimcommon.renamecategories diff --git a/print/print-manager/distinfo b/print/print-manager/distinfo index 380d90653095..5465fda17756 100644 --- a/print/print-manager/distinfo +++ b/print/print-manager/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1677828181 -SHA256 (KDE/release-service/22.12.3/print-manager-22.12.3.tar.xz) = b51e11c40cd1fab9072dd04f5fb517b310892e1f66f1d32c75adff9236b57465 -SIZE (KDE/release-service/22.12.3/print-manager-22.12.3.tar.xz) = 287428 +TIMESTAMP = 1681548293 +SHA256 (KDE/release-service/23.04.0/print-manager-23.04.0.tar.xz) = abe326ecf653a80ab88438ce28fe094d8fd3da964f2b6660b5bb609b868ac5bd +SIZE (KDE/release-service/23.04.0/print-manager-23.04.0.tar.xz) = 288928 diff --git a/print/print-manager/pkg-plist b/print/print-manager/pkg-plist index f9ce960014ab..ba8c0c72101e 100644 --- a/print/print-manager/pkg-plist +++ b/print/print-manager/pkg-plist @@ -1,130 +1,131 @@ bin/configure-printer bin/kde-add-printer bin/kde-print-queue lib/libkcupslib.so %%QT_PLUGINDIR%%/kf5/kded/printmanager.so %%QT_PLUGINDIR%%/plasma/kcms/systemsettings_qwidgets/kcm_printer_manager.so %%QT_QMLDIR%%/org/kde/plasma/printmanager/libprintmanager.so %%QT_QMLDIR%%/org/kde/plasma/printmanager/qmldir share/applications/kcm_printer_manager.desktop share/applications/org.kde.ConfigurePrinter.desktop share/applications/org.kde.PrintQueue.desktop share/applications/org.kde.kde-add-printer.desktop share/knotifications5/printmanager.notifyrc share/locale/ar/LC_MESSAGES/plasma_applet_org.kde.plasma.printmanager.mo share/locale/ar/LC_MESSAGES/print-manager.mo share/locale/az/LC_MESSAGES/plasma_applet_org.kde.plasma.printmanager.mo share/locale/az/LC_MESSAGES/print-manager.mo share/locale/be/LC_MESSAGES/plasma_applet_org.kde.plasma.printmanager.mo share/locale/be/LC_MESSAGES/print-manager.mo share/locale/bg/LC_MESSAGES/plasma_applet_org.kde.plasma.printmanager.mo share/locale/bg/LC_MESSAGES/print-manager.mo share/locale/bs/LC_MESSAGES/plasma_applet_org.kde.plasma.printmanager.mo share/locale/bs/LC_MESSAGES/print-manager.mo share/locale/ca/LC_MESSAGES/plasma_applet_org.kde.plasma.printmanager.mo share/locale/ca/LC_MESSAGES/print-manager.mo share/locale/ca@valencia/LC_MESSAGES/plasma_applet_org.kde.plasma.printmanager.mo share/locale/ca@valencia/LC_MESSAGES/print-manager.mo share/locale/cs/LC_MESSAGES/plasma_applet_org.kde.plasma.printmanager.mo share/locale/cs/LC_MESSAGES/print-manager.mo share/locale/da/LC_MESSAGES/plasma_applet_org.kde.plasma.printmanager.mo share/locale/da/LC_MESSAGES/print-manager.mo share/locale/de/LC_MESSAGES/plasma_applet_org.kde.plasma.printmanager.mo share/locale/de/LC_MESSAGES/print-manager.mo share/locale/el/LC_MESSAGES/plasma_applet_org.kde.plasma.printmanager.mo share/locale/el/LC_MESSAGES/print-manager.mo share/locale/en_GB/LC_MESSAGES/plasma_applet_org.kde.plasma.printmanager.mo share/locale/en_GB/LC_MESSAGES/print-manager.mo share/locale/es/LC_MESSAGES/plasma_applet_org.kde.plasma.printmanager.mo share/locale/es/LC_MESSAGES/print-manager.mo share/locale/et/LC_MESSAGES/plasma_applet_org.kde.plasma.printmanager.mo share/locale/et/LC_MESSAGES/print-manager.mo share/locale/eu/LC_MESSAGES/plasma_applet_org.kde.plasma.printmanager.mo share/locale/eu/LC_MESSAGES/print-manager.mo share/locale/fi/LC_MESSAGES/plasma_applet_org.kde.plasma.printmanager.mo share/locale/fi/LC_MESSAGES/print-manager.mo share/locale/fr/LC_MESSAGES/plasma_applet_org.kde.plasma.printmanager.mo share/locale/fr/LC_MESSAGES/print-manager.mo share/locale/ga/LC_MESSAGES/plasma_applet_org.kde.plasma.printmanager.mo share/locale/ga/LC_MESSAGES/print-manager.mo share/locale/gl/LC_MESSAGES/plasma_applet_org.kde.plasma.printmanager.mo share/locale/gl/LC_MESSAGES/print-manager.mo share/locale/hsb/LC_MESSAGES/plasma_applet_org.kde.plasma.printmanager.mo share/locale/hu/LC_MESSAGES/plasma_applet_org.kde.plasma.printmanager.mo share/locale/hu/LC_MESSAGES/print-manager.mo share/locale/ia/LC_MESSAGES/plasma_applet_org.kde.plasma.printmanager.mo share/locale/ia/LC_MESSAGES/print-manager.mo share/locale/id/LC_MESSAGES/plasma_applet_org.kde.plasma.printmanager.mo share/locale/id/LC_MESSAGES/print-manager.mo +share/locale/is/LC_MESSAGES/plasma_applet_org.kde.plasma.printmanager.mo share/locale/is/LC_MESSAGES/print-manager.mo share/locale/it/LC_MESSAGES/plasma_applet_org.kde.plasma.printmanager.mo share/locale/it/LC_MESSAGES/print-manager.mo share/locale/ja/LC_MESSAGES/plasma_applet_org.kde.plasma.printmanager.mo share/locale/ja/LC_MESSAGES/print-manager.mo share/locale/ka/LC_MESSAGES/plasma_applet_org.kde.plasma.printmanager.mo share/locale/ka/LC_MESSAGES/print-manager.mo share/locale/kk/LC_MESSAGES/plasma_applet_org.kde.plasma.printmanager.mo share/locale/kk/LC_MESSAGES/print-manager.mo share/locale/km/LC_MESSAGES/plasma_applet_org.kde.plasma.printmanager.mo share/locale/km/LC_MESSAGES/print-manager.mo share/locale/ko/LC_MESSAGES/plasma_applet_org.kde.plasma.printmanager.mo share/locale/ko/LC_MESSAGES/print-manager.mo share/locale/lt/LC_MESSAGES/plasma_applet_org.kde.plasma.printmanager.mo share/locale/lt/LC_MESSAGES/print-manager.mo share/locale/mr/LC_MESSAGES/plasma_applet_org.kde.plasma.printmanager.mo share/locale/mr/LC_MESSAGES/print-manager.mo share/locale/nb/LC_MESSAGES/plasma_applet_org.kde.plasma.printmanager.mo share/locale/nb/LC_MESSAGES/print-manager.mo share/locale/nds/LC_MESSAGES/plasma_applet_org.kde.plasma.printmanager.mo share/locale/nds/LC_MESSAGES/print-manager.mo share/locale/nl/LC_MESSAGES/plasma_applet_org.kde.plasma.printmanager.mo share/locale/nl/LC_MESSAGES/print-manager.mo share/locale/nn/LC_MESSAGES/plasma_applet_org.kde.plasma.printmanager.mo share/locale/nn/LC_MESSAGES/print-manager.mo share/locale/pa/LC_MESSAGES/plasma_applet_org.kde.plasma.printmanager.mo share/locale/pa/LC_MESSAGES/print-manager.mo share/locale/pl/LC_MESSAGES/plasma_applet_org.kde.plasma.printmanager.mo share/locale/pl/LC_MESSAGES/print-manager.mo share/locale/pt/LC_MESSAGES/plasma_applet_org.kde.plasma.printmanager.mo share/locale/pt/LC_MESSAGES/print-manager.mo share/locale/pt_BR/LC_MESSAGES/plasma_applet_org.kde.plasma.printmanager.mo share/locale/pt_BR/LC_MESSAGES/print-manager.mo share/locale/ro/LC_MESSAGES/plasma_applet_org.kde.plasma.printmanager.mo share/locale/ro/LC_MESSAGES/print-manager.mo share/locale/ru/LC_MESSAGES/plasma_applet_org.kde.plasma.printmanager.mo share/locale/ru/LC_MESSAGES/print-manager.mo share/locale/sk/LC_MESSAGES/plasma_applet_org.kde.plasma.printmanager.mo share/locale/sk/LC_MESSAGES/print-manager.mo share/locale/sl/LC_MESSAGES/plasma_applet_org.kde.plasma.printmanager.mo share/locale/sl/LC_MESSAGES/print-manager.mo share/locale/sr/LC_MESSAGES/plasma_applet_org.kde.plasma.printmanager.mo share/locale/sr/LC_MESSAGES/print-manager.mo share/locale/sr@ijekavian/LC_MESSAGES/plasma_applet_org.kde.plasma.printmanager.mo share/locale/sr@ijekavian/LC_MESSAGES/print-manager.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/plasma_applet_org.kde.plasma.printmanager.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/print-manager.mo share/locale/sr@latin/LC_MESSAGES/plasma_applet_org.kde.plasma.printmanager.mo share/locale/sr@latin/LC_MESSAGES/print-manager.mo share/locale/sv/LC_MESSAGES/plasma_applet_org.kde.plasma.printmanager.mo share/locale/sv/LC_MESSAGES/print-manager.mo share/locale/ta/LC_MESSAGES/plasma_applet_org.kde.plasma.printmanager.mo share/locale/ta/LC_MESSAGES/print-manager.mo share/locale/tg/LC_MESSAGES/plasma_applet_org.kde.plasma.printmanager.mo share/locale/tg/LC_MESSAGES/print-manager.mo share/locale/tr/LC_MESSAGES/plasma_applet_org.kde.plasma.printmanager.mo share/locale/tr/LC_MESSAGES/print-manager.mo share/locale/ug/LC_MESSAGES/plasma_applet_org.kde.plasma.printmanager.mo share/locale/ug/LC_MESSAGES/print-manager.mo share/locale/uk/LC_MESSAGES/plasma_applet_org.kde.plasma.printmanager.mo share/locale/uk/LC_MESSAGES/print-manager.mo share/locale/zh_CN/LC_MESSAGES/plasma_applet_org.kde.plasma.printmanager.mo share/locale/zh_CN/LC_MESSAGES/print-manager.mo share/locale/zh_TW/LC_MESSAGES/plasma_applet_org.kde.plasma.printmanager.mo share/locale/zh_TW/LC_MESSAGES/print-manager.mo share/metainfo/org.kde.plasma.printmanager.appdata.xml share/metainfo/org.kde.print-manager.metainfo.xml share/plasma/plasmoids/org.kde.plasma.printmanager/contents/config/main.xml share/plasma/plasmoids/org.kde.plasma.printmanager/contents/ui/PopupDialog.qml share/plasma/plasmoids/org.kde.plasma.printmanager/contents/ui/PrinterItem.qml share/plasma/plasmoids/org.kde.plasma.printmanager/contents/ui/printmanager.qml share/plasma/plasmoids/org.kde.plasma.printmanager/metadata.json diff --git a/science/kalzium/distinfo b/science/kalzium/distinfo index 938a8d896e69..24c4c22441b8 100644 --- a/science/kalzium/distinfo +++ b/science/kalzium/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1677828177 -SHA256 (KDE/release-service/22.12.3/kalzium-22.12.3.tar.xz) = 0b61296ebe6d30c788ad61fe8820a527d6f93ed3ea2a8b89e55fd33dacc8a66d -SIZE (KDE/release-service/22.12.3/kalzium-22.12.3.tar.xz) = 24641508 +TIMESTAMP = 1681548450 +SHA256 (KDE/release-service/23.04.0/kalzium-23.04.0.tar.xz) = 37cb617ca51076bc40083bfa4d990a433883f17e09c28860161e6160a23d816e +SIZE (KDE/release-service/23.04.0/kalzium-23.04.0.tar.xz) = 24642936 diff --git a/science/step/distinfo b/science/step/distinfo index 3b3d5eb88718..7cf15d705c02 100644 --- a/science/step/distinfo +++ b/science/step/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1677828179 -SHA256 (KDE/release-service/22.12.3/step-22.12.3.tar.xz) = fe562a019522d5a6d05bc7da3b63adcbc04e9932e7e949553d3db153a838f321 -SIZE (KDE/release-service/22.12.3/step-22.12.3.tar.xz) = 982128 +TIMESTAMP = 1681548451 +SHA256 (KDE/release-service/23.04.0/step-23.04.0.tar.xz) = fd3e4c4116d0aff6e0c767b5b4a4b4464b80485d82664ffad76e81458b47db4a +SIZE (KDE/release-service/23.04.0/step-23.04.0.tar.xz) = 983076 diff --git a/security/kgpg/distinfo b/security/kgpg/distinfo index fe4ba98d4ccb..b8ffd7a0ed54 100644 --- a/security/kgpg/distinfo +++ b/security/kgpg/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1677828365 -SHA256 (KDE/release-service/22.12.3/kgpg-22.12.3.tar.xz) = e6eeffcf7d84b13ac29bdd9fbe1cfa2a879eaa150de9fc15103aa481097e33e3 -SIZE (KDE/release-service/22.12.3/kgpg-22.12.3.tar.xz) = 3044360 +TIMESTAMP = 1681548318 +SHA256 (KDE/release-service/23.04.0/kgpg-23.04.0.tar.xz) = 0b85ef6bc925ed0928d55c4bb9fc40e7aeeadaba3e4946364b81705e0c4c1087 +SIZE (KDE/release-service/23.04.0/kgpg-23.04.0.tar.xz) = 3044564 diff --git a/security/kleopatra/distinfo b/security/kleopatra/distinfo index dd66ee6ac401..868b9127307c 100644 --- a/security/kleopatra/distinfo +++ b/security/kleopatra/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1677834823 -SHA256 (KDE/release-service/22.12.3/kleopatra-22.12.3.tar.xz) = 31f199ca957fcd3393ea9b4630482347da35e3b85646d46357522cdf8779d996 -SIZE (KDE/release-service/22.12.3/kleopatra-22.12.3.tar.xz) = 2579704 +TIMESTAMP = 1681548322 +SHA256 (KDE/release-service/23.04.0/kleopatra-23.04.0.tar.xz) = 984b5085601e61a1cb3d88a9a92bb424bb738228785e9b5f835ea2700a16f9f6 +SIZE (KDE/release-service/23.04.0/kleopatra-23.04.0.tar.xz) = 2608704 diff --git a/security/kpkpass/distinfo b/security/kpkpass/distinfo index d615fb7f77b1..ceb9ae67a887 100644 --- a/security/kpkpass/distinfo +++ b/security/kpkpass/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1677828359 -SHA256 (KDE/release-service/22.12.3/kpkpass-22.12.3.tar.xz) = 6837102ed051850156a90b7414604046a38e12c7dd75e3d601efee40d6b8e6dd -SIZE (KDE/release-service/22.12.3/kpkpass-22.12.3.tar.xz) = 28900 +TIMESTAMP = 1681548319 +SHA256 (KDE/release-service/23.04.0/kpkpass-23.04.0.tar.xz) = f65010f35e72cf943282d8d28708c7b0859390dc3fb0b6d92277c473d27d4b38 +SIZE (KDE/release-service/23.04.0/kpkpass-23.04.0.tar.xz) = 29304 diff --git a/security/kpkpass/pkg-plist b/security/kpkpass/pkg-plist index f8c212486093..946302a3414a 100644 --- a/security/kpkpass/pkg-plist +++ b/security/kpkpass/pkg-plist @@ -1,20 +1,24 @@ -include/KPim/KPkPass/Barcode -include/KPim/KPkPass/BoardingPass -include/KPim/KPkPass/Field -include/KPim/KPkPass/Location -include/KPim/KPkPass/Pass -include/KPim/KPkPass/barcode.h -include/KPim/KPkPass/boardingpass.h -include/KPim/KPkPass/field.h -include/KPim/KPkPass/kpkpass_export.h -include/KPim/KPkPass/kpkpass_version.h -include/KPim/KPkPass/location.h -include/KPim/KPkPass/pass.h +include/KPim5/KPkPass/Barcode +include/KPim5/KPkPass/BoardingPass +include/KPim5/KPkPass/Field +include/KPim5/KPkPass/Location +include/KPim5/KPkPass/Pass +include/KPim5/KPkPass/barcode.h +include/KPim5/KPkPass/boardingpass.h +include/KPim5/KPkPass/field.h +include/KPim5/KPkPass/kpkpass_export.h +include/KPim5/KPkPass/kpkpass_version.h +include/KPim5/KPkPass/location.h +include/KPim5/KPkPass/pass.h +lib/cmake/KPim5PkPass/KPim5PkPassConfig.cmake +lib/cmake/KPim5PkPass/KPim5PkPassConfigVersion.cmake +lib/cmake/KPim5PkPass/KPim5PkPassTargets-%%CMAKE_BUILD_TYPE%%.cmake +lib/cmake/KPim5PkPass/KPim5PkPassTargets.cmake +lib/cmake/KPimPkPass/KPim5PkPassTargets-%%CMAKE_BUILD_TYPE%%.cmake +lib/cmake/KPimPkPass/KPim5PkPassTargets.cmake lib/cmake/KPimPkPass/KPimPkPassConfig.cmake lib/cmake/KPimPkPass/KPimPkPassConfigVersion.cmake -lib/cmake/KPimPkPass/KPimPkPassTargets-%%CMAKE_BUILD_TYPE%%.cmake -lib/cmake/KPimPkPass/KPimPkPassTargets.cmake -lib/libKPimPkPass.so -lib/libKPimPkPass.so.5 -lib/libKPimPkPass.so.%%KDE_APPLICATIONS_SHLIB_VER%% +lib/libKPim5PkPass.so +lib/libKPim5PkPass.so.5 +lib/libKPim5PkPass.so.%%KDE_APPLICATIONS_SHLIB_VER%% share/qlogging-categories5/org_kde_kpkpass.categories diff --git a/security/kwalletmanager/distinfo b/security/kwalletmanager/distinfo index 6907de27f319..715b76a3c9fd 100644 --- a/security/kwalletmanager/distinfo +++ b/security/kwalletmanager/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1677828362 -SHA256 (KDE/release-service/22.12.3/kwalletmanager-22.12.3.tar.xz) = 0b1a7982bab6f1be9d1d2c5ac1315582a3933e9ff0cac526de0a3a2b048c34ee -SIZE (KDE/release-service/22.12.3/kwalletmanager-22.12.3.tar.xz) = 839988 +TIMESTAMP = 1681548320 +SHA256 (KDE/release-service/23.04.0/kwalletmanager-23.04.0.tar.xz) = fed842eaa53a2fdc0ef04d1a623388a0dde386bf8d0cdec55ac2f96d9eacc288 +SIZE (KDE/release-service/23.04.0/kwalletmanager-23.04.0.tar.xz) = 850420 diff --git a/security/kwalletmanager/pkg-plist b/security/kwalletmanager/pkg-plist index 9c35bddd6221..29691beccb03 100644 --- a/security/kwalletmanager/pkg-plist +++ b/security/kwalletmanager/pkg-plist @@ -1,174 +1,175 @@ bin/kwalletmanager5 lib/libexec/kauth/kcm_kwallet_helper5 -%%QT_PLUGINDIR%%/kcm_kwallet5.so +%%QT_PLUGINDIR%%/plasma/kcms/systemsettings_qwidgets/kcm_kwallet5.so share/applications/kwalletmanager5-kwalletd.desktop share/applications/org.kde.kwalletmanager5.desktop share/dbus-1/services/org.kde.kwalletmanager5.service share/dbus-1/system-services/org.kde.kcontrol.kcmkwallet5.service share/dbus-1/system.d/org.kde.kcontrol.kcmkwallet5.conf share/icons/hicolor/128x128/apps/kwalletmanager.png share/icons/hicolor/128x128/apps/kwalletmanager2.png share/icons/hicolor/16x16/apps/kwalletmanager.png share/icons/hicolor/16x16/apps/kwalletmanager2.png share/icons/hicolor/22x22/actions/wallet-closed.png share/icons/hicolor/22x22/actions/wallet-open.png share/icons/hicolor/22x22/apps/kwalletmanager.png share/icons/hicolor/32x32/apps/kwalletmanager.png share/icons/hicolor/32x32/apps/kwalletmanager2.png share/icons/hicolor/48x48/apps/kwalletmanager.png share/icons/hicolor/48x48/apps/kwalletmanager2.png share/icons/hicolor/64x64/apps/kwalletmanager.png share/icons/hicolor/64x64/apps/kwalletmanager2.png -share/kservices5/kwalletconfig5.desktop share/kservices5/kwalletmanager5_show.desktop share/locale/ar/LC_MESSAGES/kcmkwallet.mo share/locale/ar/LC_MESSAGES/kwalletmanager.mo share/locale/az/LC_MESSAGES/kcmkwallet.mo share/locale/az/LC_MESSAGES/kwalletmanager.mo share/locale/be/LC_MESSAGES/kcmkwallet.mo share/locale/be/LC_MESSAGES/kwalletmanager.mo share/locale/bg/LC_MESSAGES/kcmkwallet.mo share/locale/bg/LC_MESSAGES/kwalletmanager.mo share/locale/br/LC_MESSAGES/kcmkwallet.mo share/locale/br/LC_MESSAGES/kwalletmanager.mo share/locale/bs/LC_MESSAGES/kcmkwallet.mo share/locale/bs/LC_MESSAGES/kwalletmanager.mo share/locale/ca/LC_MESSAGES/kcmkwallet.mo share/locale/ca/LC_MESSAGES/kwalletmanager.mo share/locale/ca@valencia/LC_MESSAGES/kcmkwallet.mo share/locale/ca@valencia/LC_MESSAGES/kwalletmanager.mo share/locale/cs/LC_MESSAGES/kcmkwallet.mo share/locale/cs/LC_MESSAGES/kwalletmanager.mo share/locale/cy/LC_MESSAGES/kcmkwallet.mo share/locale/cy/LC_MESSAGES/kwalletmanager.mo share/locale/da/LC_MESSAGES/kcmkwallet.mo share/locale/da/LC_MESSAGES/kwalletmanager.mo share/locale/de/LC_MESSAGES/kcmkwallet.mo share/locale/de/LC_MESSAGES/kwalletmanager.mo share/locale/el/LC_MESSAGES/kcmkwallet.mo share/locale/el/LC_MESSAGES/kwalletmanager.mo share/locale/en_GB/LC_MESSAGES/kcmkwallet.mo share/locale/en_GB/LC_MESSAGES/kwalletmanager.mo share/locale/eo/LC_MESSAGES/kcmkwallet.mo share/locale/eo/LC_MESSAGES/kwalletmanager.mo share/locale/es/LC_MESSAGES/kcmkwallet.mo share/locale/es/LC_MESSAGES/kwalletmanager.mo share/locale/et/LC_MESSAGES/kcmkwallet.mo share/locale/et/LC_MESSAGES/kwalletmanager.mo share/locale/eu/LC_MESSAGES/kcmkwallet.mo share/locale/eu/LC_MESSAGES/kwalletmanager.mo share/locale/fa/LC_MESSAGES/kcmkwallet.mo share/locale/fa/LC_MESSAGES/kwalletmanager.mo share/locale/fi/LC_MESSAGES/kcmkwallet.mo share/locale/fi/LC_MESSAGES/kwalletmanager.mo share/locale/fr/LC_MESSAGES/kcmkwallet.mo share/locale/fr/LC_MESSAGES/kwalletmanager.mo share/locale/ga/LC_MESSAGES/kcmkwallet.mo share/locale/ga/LC_MESSAGES/kwalletmanager.mo share/locale/gl/LC_MESSAGES/kcmkwallet.mo share/locale/gl/LC_MESSAGES/kwalletmanager.mo share/locale/hi/LC_MESSAGES/kcmkwallet.mo share/locale/hi/LC_MESSAGES/kwalletmanager.mo share/locale/hne/LC_MESSAGES/kcmkwallet.mo share/locale/hne/LC_MESSAGES/kwalletmanager.mo share/locale/hr/LC_MESSAGES/kcmkwallet.mo share/locale/hr/LC_MESSAGES/kwalletmanager.mo share/locale/hu/LC_MESSAGES/kcmkwallet.mo share/locale/hu/LC_MESSAGES/kwalletmanager.mo share/locale/ia/LC_MESSAGES/kcmkwallet.mo share/locale/ia/LC_MESSAGES/kwalletmanager.mo share/locale/id/LC_MESSAGES/kcmkwallet.mo share/locale/id/LC_MESSAGES/kwalletmanager.mo +share/locale/ie/LC_MESSAGES/kcmkwallet.mo +share/locale/ie/LC_MESSAGES/kwalletmanager.mo share/locale/is/LC_MESSAGES/kcmkwallet.mo share/locale/is/LC_MESSAGES/kwalletmanager.mo share/locale/it/LC_MESSAGES/kcmkwallet.mo share/locale/it/LC_MESSAGES/kwalletmanager.mo share/locale/ja/LC_MESSAGES/kcmkwallet.mo share/locale/ja/LC_MESSAGES/kwalletmanager.mo share/locale/ka/LC_MESSAGES/kcmkwallet.mo share/locale/ka/LC_MESSAGES/kwalletmanager.mo share/locale/kk/LC_MESSAGES/kcmkwallet.mo share/locale/kk/LC_MESSAGES/kwalletmanager.mo share/locale/km/LC_MESSAGES/kcmkwallet.mo share/locale/km/LC_MESSAGES/kwalletmanager.mo share/locale/ko/LC_MESSAGES/kcmkwallet.mo share/locale/ko/LC_MESSAGES/kwalletmanager.mo share/locale/lt/LC_MESSAGES/kcmkwallet.mo share/locale/lt/LC_MESSAGES/kwalletmanager.mo share/locale/lv/LC_MESSAGES/kcmkwallet.mo share/locale/lv/LC_MESSAGES/kwalletmanager.mo share/locale/mk/LC_MESSAGES/kcmkwallet.mo share/locale/mk/LC_MESSAGES/kwalletmanager.mo share/locale/mr/LC_MESSAGES/kcmkwallet.mo share/locale/mr/LC_MESSAGES/kwalletmanager.mo share/locale/ms/LC_MESSAGES/kcmkwallet.mo share/locale/ms/LC_MESSAGES/kwalletmanager.mo share/locale/nb/LC_MESSAGES/kcmkwallet.mo share/locale/nb/LC_MESSAGES/kwalletmanager.mo share/locale/nds/LC_MESSAGES/kcmkwallet.mo share/locale/nds/LC_MESSAGES/kwalletmanager.mo share/locale/ne/LC_MESSAGES/kcmkwallet.mo share/locale/ne/LC_MESSAGES/kwalletmanager.mo share/locale/nl/LC_MESSAGES/kcmkwallet.mo share/locale/nl/LC_MESSAGES/kwalletmanager.mo share/locale/nn/LC_MESSAGES/kcmkwallet.mo share/locale/nn/LC_MESSAGES/kwalletmanager.mo share/locale/oc/LC_MESSAGES/kcmkwallet.mo share/locale/oc/LC_MESSAGES/kwalletmanager.mo share/locale/pa/LC_MESSAGES/kcmkwallet.mo share/locale/pa/LC_MESSAGES/kwalletmanager.mo share/locale/pl/LC_MESSAGES/kcmkwallet.mo share/locale/pl/LC_MESSAGES/kwalletmanager.mo share/locale/pt/LC_MESSAGES/kcmkwallet.mo share/locale/pt/LC_MESSAGES/kwalletmanager.mo share/locale/pt_BR/LC_MESSAGES/kcmkwallet.mo share/locale/pt_BR/LC_MESSAGES/kwalletmanager.mo share/locale/ro/LC_MESSAGES/kcmkwallet.mo share/locale/ro/LC_MESSAGES/kwalletmanager.mo share/locale/ru/LC_MESSAGES/kcmkwallet.mo share/locale/ru/LC_MESSAGES/kwalletmanager.mo share/locale/se/LC_MESSAGES/kcmkwallet.mo share/locale/se/LC_MESSAGES/kwalletmanager.mo share/locale/si/LC_MESSAGES/kcmkwallet.mo share/locale/si/LC_MESSAGES/kwalletmanager.mo share/locale/sk/LC_MESSAGES/kcmkwallet.mo share/locale/sk/LC_MESSAGES/kwalletmanager.mo share/locale/sl/LC_MESSAGES/kcmkwallet.mo share/locale/sl/LC_MESSAGES/kwalletmanager.mo share/locale/sq/LC_MESSAGES/kcmkwallet.mo share/locale/sq/LC_MESSAGES/kwalletmanager.mo share/locale/sr/LC_MESSAGES/kcmkwallet.mo share/locale/sr/LC_MESSAGES/kwalletmanager.mo share/locale/sr@ijekavian/LC_MESSAGES/kcmkwallet.mo share/locale/sr@ijekavian/LC_MESSAGES/kwalletmanager.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kcmkwallet.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kwalletmanager.mo share/locale/sr@latin/LC_MESSAGES/kcmkwallet.mo share/locale/sr@latin/LC_MESSAGES/kwalletmanager.mo share/locale/sv/LC_MESSAGES/kcmkwallet.mo share/locale/sv/LC_MESSAGES/kwalletmanager.mo share/locale/ta/LC_MESSAGES/kcmkwallet.mo share/locale/ta/LC_MESSAGES/kwalletmanager.mo share/locale/tg/LC_MESSAGES/kcmkwallet.mo share/locale/tg/LC_MESSAGES/kwalletmanager.mo share/locale/th/LC_MESSAGES/kcmkwallet.mo share/locale/th/LC_MESSAGES/kwalletmanager.mo share/locale/tr/LC_MESSAGES/kcmkwallet.mo share/locale/tr/LC_MESSAGES/kwalletmanager.mo share/locale/ug/LC_MESSAGES/kcmkwallet.mo share/locale/ug/LC_MESSAGES/kwalletmanager.mo share/locale/uk/LC_MESSAGES/kcmkwallet.mo share/locale/uk/LC_MESSAGES/kwalletmanager.mo share/locale/uz/LC_MESSAGES/kcmkwallet.mo share/locale/uz/LC_MESSAGES/kwalletmanager.mo share/locale/uz@cyrillic/LC_MESSAGES/kcmkwallet.mo share/locale/uz@cyrillic/LC_MESSAGES/kwalletmanager.mo share/locale/vi/LC_MESSAGES/kcmkwallet.mo share/locale/vi/LC_MESSAGES/kwalletmanager.mo share/locale/zh_CN/LC_MESSAGES/kcmkwallet.mo share/locale/zh_CN/LC_MESSAGES/kwalletmanager.mo share/locale/zh_TW/LC_MESSAGES/kcmkwallet.mo share/locale/zh_TW/LC_MESSAGES/kwalletmanager.mo share/metainfo/org.kde.kwalletmanager5.appdata.xml share/polkit-1/actions/org.kde.kcontrol.kcmkwallet5.policy share/qlogging-categories5/kwalletmanager.categories diff --git a/security/libkleo/distinfo b/security/libkleo/distinfo index c6f1ccb10591..74b23d01e1c9 100644 --- a/security/libkleo/distinfo +++ b/security/libkleo/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1677828363 -SHA256 (KDE/release-service/22.12.3/libkleo-22.12.3.tar.xz) = 84144c7ebed9b5d4a13c7749067a7d2a0ba6cbd881f6e017fe6fa6c34b094859 -SIZE (KDE/release-service/22.12.3/libkleo-22.12.3.tar.xz) = 512992 +TIMESTAMP = 1681548317 +SHA256 (KDE/release-service/23.04.0/libkleo-23.04.0.tar.xz) = ae210e3849395044be778cc7b92746e209be91722928c991a3324932adda6e69 +SIZE (KDE/release-service/23.04.0/libkleo-23.04.0.tar.xz) = 513608 diff --git a/security/libkleo/pkg-plist b/security/libkleo/pkg-plist index 4ec76b14b247..e9b06a62378c 100644 --- a/security/libkleo/pkg-plist +++ b/security/libkleo/pkg-plist @@ -1,216 +1,224 @@ etc/xdg/libkleopatrarc -include/KF5/Libkleo/Libkleo/Algorithm -include/KF5/Libkleo/Libkleo/Assuan -include/KF5/Libkleo/Libkleo/ChecksumDefinition -include/KF5/Libkleo/Libkleo/Classify -include/KF5/Libkleo/Libkleo/Compat -include/KF5/Libkleo/Libkleo/Compliance -include/KF5/Libkleo/Libkleo/CryptoConfig -include/KF5/Libkleo/Libkleo/CryptoConfigModule -include/KF5/Libkleo/Libkleo/DNAttributeOrderConfigWidget -include/KF5/Libkleo/Libkleo/Debug -include/KF5/Libkleo/Libkleo/DefaultKeyFilter -include/KF5/Libkleo/Libkleo/DefaultKeyGenerationJob -include/KF5/Libkleo/Libkleo/DirectoryServicesWidget -include/KF5/Libkleo/Libkleo/Dn -include/KF5/Libkleo/Libkleo/DocAction -include/KF5/Libkleo/Libkleo/EditDirectoryServiceDialog -include/KF5/Libkleo/Libkleo/Enum -include/KF5/Libkleo/Libkleo/FileNameRequester -include/KF5/Libkleo/Libkleo/FileSystemWatcher -include/KF5/Libkleo/Libkleo/Formatting -include/KF5/Libkleo/Libkleo/GnuPG -include/KF5/Libkleo/Libkleo/Hex -include/KF5/Libkleo/Libkleo/KConfigBasedKeyFilter -include/KF5/Libkleo/Libkleo/KeyApprovalDialog -include/KF5/Libkleo/Libkleo/KeyCache -include/KF5/Libkleo/Libkleo/KeyFilter -include/KF5/Libkleo/Libkleo/KeyFilterManager -include/KF5/Libkleo/Libkleo/KeyGroup -include/KF5/Libkleo/Libkleo/KeyGroupConfig -include/KF5/Libkleo/Libkleo/KeyGroupImportExport -include/KF5/Libkleo/Libkleo/KeyHelpers -include/KF5/Libkleo/Libkleo/KeyList -include/KF5/Libkleo/Libkleo/KeyListModel -include/KF5/Libkleo/Libkleo/KeyListModelInterface -include/KF5/Libkleo/Libkleo/KeyListSortFilterProxyModel -include/KF5/Libkleo/Libkleo/KeyListView -include/KF5/Libkleo/Libkleo/KeyRearrangeColumnsProxyModel -include/KF5/Libkleo/Libkleo/KeyRequester -include/KF5/Libkleo/Libkleo/KeyResolver -include/KF5/Libkleo/Libkleo/KeyResolverCore -include/KF5/Libkleo/Libkleo/KeySelectionCombo -include/KF5/Libkleo/Libkleo/KeySelectionDialog -include/KF5/Libkleo/Libkleo/KeyserverConfig -include/KF5/Libkleo/Libkleo/KleoException -include/KF5/Libkleo/Libkleo/MessageBox -include/KF5/Libkleo/Libkleo/NavigatableTreeView -include/KF5/Libkleo/Libkleo/NavigatableTreeWidget -include/KF5/Libkleo/Libkleo/NewKeyApprovalDialog -include/KF5/Libkleo/Libkleo/OidMap -include/KF5/Libkleo/Libkleo/Predicates -include/KF5/Libkleo/Libkleo/ProgressDialog -include/KF5/Libkleo/Libkleo/QtStlHelpers -include/KF5/Libkleo/Libkleo/ReaderPortSelection -include/KF5/Libkleo/Libkleo/SCDaemon -include/KF5/Libkleo/Libkleo/Stl_Util -include/KF5/Libkleo/Libkleo/StringUtils -include/KF5/Libkleo/Libkleo/SubkeyListModel -include/KF5/Libkleo/Libkleo/SystemInfo -include/KF5/Libkleo/Libkleo/Test -include/KF5/Libkleo/Libkleo/UniqueLock -include/KF5/Libkleo/Libkleo/UserIDListModel -include/KF5/Libkleo/libkleo/algorithm.h -include/KF5/Libkleo/libkleo/assuan.h -include/KF5/Libkleo/libkleo/checksumdefinition.h -include/KF5/Libkleo/libkleo/classify.h -include/KF5/Libkleo/libkleo/compat.h -include/KF5/Libkleo/libkleo/compliance.h -include/KF5/Libkleo/libkleo/cryptoconfig.h -include/KF5/Libkleo/libkleo/cryptoconfigmodule.h -include/KF5/Libkleo/libkleo/debug.h -include/KF5/Libkleo/libkleo/defaultkeyfilter.h -include/KF5/Libkleo/libkleo/defaultkeygenerationjob.h -include/KF5/Libkleo/libkleo/directoryserviceswidget.h -include/KF5/Libkleo/libkleo/dn.h -include/KF5/Libkleo/libkleo/dnattributeorderconfigwidget.h -include/KF5/Libkleo/libkleo/docaction.h -include/KF5/Libkleo/libkleo/editdirectoryservicedialog.h -include/KF5/Libkleo/libkleo/enum.h -include/KF5/Libkleo/libkleo/filenamerequester.h -include/KF5/Libkleo/libkleo/filesystemwatcher.h -include/KF5/Libkleo/libkleo/formatting.h -include/KF5/Libkleo/libkleo/gnupg.h -include/KF5/Libkleo/libkleo/hex.h -include/KF5/Libkleo/libkleo/kconfigbasedkeyfilter.h -include/KF5/Libkleo/libkleo/keyapprovaldialog.h -include/KF5/Libkleo/libkleo/keycache.h -include/KF5/Libkleo/libkleo/keyfilter.h -include/KF5/Libkleo/libkleo/keyfiltermanager.h -include/KF5/Libkleo/libkleo/keygroup.h -include/KF5/Libkleo/libkleo/keygroupconfig.h -include/KF5/Libkleo/libkleo/keygroupimportexport.h -include/KF5/Libkleo/libkleo/keyhelpers.h -include/KF5/Libkleo/libkleo/keylist.h -include/KF5/Libkleo/libkleo/keylistmodel.h -include/KF5/Libkleo/libkleo/keylistmodelinterface.h -include/KF5/Libkleo/libkleo/keylistsortfilterproxymodel.h -include/KF5/Libkleo/libkleo/keylistview.h -include/KF5/Libkleo/libkleo/keyrearrangecolumnsproxymodel.h -include/KF5/Libkleo/libkleo/keyrequester.h -include/KF5/Libkleo/libkleo/keyresolver.h -include/KF5/Libkleo/libkleo/keyresolvercore.h -include/KF5/Libkleo/libkleo/keyselectioncombo.h -include/KF5/Libkleo/libkleo/keyselectiondialog.h -include/KF5/Libkleo/libkleo/keyserverconfig.h -include/KF5/Libkleo/libkleo/kleo_export.h -include/KF5/Libkleo/libkleo/kleoexception.h -include/KF5/Libkleo/libkleo/messagebox.h -include/KF5/Libkleo/libkleo/navigatabletreeview.h -include/KF5/Libkleo/libkleo/navigatabletreewidget.h -include/KF5/Libkleo/libkleo/newkeyapprovaldialog.h -include/KF5/Libkleo/libkleo/oidmap.h -include/KF5/Libkleo/libkleo/predicates.h -include/KF5/Libkleo/libkleo/progressdialog.h -include/KF5/Libkleo/libkleo/qtstlhelpers.h -include/KF5/Libkleo/libkleo/readerportselection.h -include/KF5/Libkleo/libkleo/scdaemon.h -include/KF5/Libkleo/libkleo/stl_util.h -include/KF5/Libkleo/libkleo/stringutils.h -include/KF5/Libkleo/libkleo/subkeylistmodel.h -include/KF5/Libkleo/libkleo/systeminfo.h -include/KF5/Libkleo/libkleo/test.h -include/KF5/Libkleo/libkleo/uniquelock.h -include/KF5/Libkleo/libkleo/useridlistmodel.h -include/KF5/Libkleo/libkleo_version.h +include/KPim5/Libkleo/Libkleo/Algorithm +include/KPim5/Libkleo/Libkleo/Assuan +include/KPim5/Libkleo/Libkleo/AuditLogEntry +include/KPim5/Libkleo/Libkleo/AuditLogViewer +include/KPim5/Libkleo/Libkleo/ChecksumDefinition +include/KPim5/Libkleo/Libkleo/Classify +include/KPim5/Libkleo/Libkleo/Compat +include/KPim5/Libkleo/Libkleo/Compliance +include/KPim5/Libkleo/Libkleo/CryptoConfig +include/KPim5/Libkleo/Libkleo/CryptoConfigModule +include/KPim5/Libkleo/Libkleo/DNAttributeOrderConfigWidget +include/KPim5/Libkleo/Libkleo/Debug +include/KPim5/Libkleo/Libkleo/DefaultKeyFilter +include/KPim5/Libkleo/Libkleo/DefaultKeyGenerationJob +include/KPim5/Libkleo/Libkleo/DirectoryServicesWidget +include/KPim5/Libkleo/Libkleo/Dn +include/KPim5/Libkleo/Libkleo/DocAction +include/KPim5/Libkleo/Libkleo/EditDirectoryServiceDialog +include/KPim5/Libkleo/Libkleo/Enum +include/KPim5/Libkleo/Libkleo/FileNameRequester +include/KPim5/Libkleo/Libkleo/FileSystemWatcher +include/KPim5/Libkleo/Libkleo/Formatting +include/KPim5/Libkleo/Libkleo/GnuPG +include/KPim5/Libkleo/Libkleo/Hex +include/KPim5/Libkleo/Libkleo/KConfigBasedKeyFilter +include/KPim5/Libkleo/Libkleo/KeyApprovalDialog +include/KPim5/Libkleo/Libkleo/KeyCache +include/KPim5/Libkleo/Libkleo/KeyFilter +include/KPim5/Libkleo/Libkleo/KeyFilterManager +include/KPim5/Libkleo/Libkleo/KeyGroup +include/KPim5/Libkleo/Libkleo/KeyGroupConfig +include/KPim5/Libkleo/Libkleo/KeyGroupImportExport +include/KPim5/Libkleo/Libkleo/KeyHelpers +include/KPim5/Libkleo/Libkleo/KeyList +include/KPim5/Libkleo/Libkleo/KeyListModel +include/KPim5/Libkleo/Libkleo/KeyListModelInterface +include/KPim5/Libkleo/Libkleo/KeyListSortFilterProxyModel +include/KPim5/Libkleo/Libkleo/KeyListView +include/KPim5/Libkleo/Libkleo/KeyRearrangeColumnsProxyModel +include/KPim5/Libkleo/Libkleo/KeyRequester +include/KPim5/Libkleo/Libkleo/KeyResolver +include/KPim5/Libkleo/Libkleo/KeyResolverCore +include/KPim5/Libkleo/Libkleo/KeySelectionCombo +include/KPim5/Libkleo/Libkleo/KeySelectionDialog +include/KPim5/Libkleo/Libkleo/KeyserverConfig +include/KPim5/Libkleo/Libkleo/KleoException +include/KPim5/Libkleo/Libkleo/MessageBox +include/KPim5/Libkleo/Libkleo/NavigatableTreeView +include/KPim5/Libkleo/Libkleo/NavigatableTreeWidget +include/KPim5/Libkleo/Libkleo/NewKeyApprovalDialog +include/KPim5/Libkleo/Libkleo/OidMap +include/KPim5/Libkleo/Libkleo/Predicates +include/KPim5/Libkleo/Libkleo/ProgressDialog +include/KPim5/Libkleo/Libkleo/QtStlHelpers +include/KPim5/Libkleo/Libkleo/ReaderPortSelection +include/KPim5/Libkleo/Libkleo/SCDaemon +include/KPim5/Libkleo/Libkleo/Stl_Util +include/KPim5/Libkleo/Libkleo/StringUtils +include/KPim5/Libkleo/Libkleo/SubkeyListModel +include/KPim5/Libkleo/Libkleo/SystemInfo +include/KPim5/Libkleo/Libkleo/Test +include/KPim5/Libkleo/Libkleo/UniqueLock +include/KPim5/Libkleo/Libkleo/UserIDListModel +include/KPim5/Libkleo/libkleo/algorithm.h +include/KPim5/Libkleo/libkleo/assuan.h +include/KPim5/Libkleo/libkleo/auditlogentry.h +include/KPim5/Libkleo/libkleo/auditlogviewer.h +include/KPim5/Libkleo/libkleo/checksumdefinition.h +include/KPim5/Libkleo/libkleo/classify.h +include/KPim5/Libkleo/libkleo/compat.h +include/KPim5/Libkleo/libkleo/compliance.h +include/KPim5/Libkleo/libkleo/cryptoconfig.h +include/KPim5/Libkleo/libkleo/cryptoconfigmodule.h +include/KPim5/Libkleo/libkleo/debug.h +include/KPim5/Libkleo/libkleo/defaultkeyfilter.h +include/KPim5/Libkleo/libkleo/defaultkeygenerationjob.h +include/KPim5/Libkleo/libkleo/directoryserviceswidget.h +include/KPim5/Libkleo/libkleo/dn.h +include/KPim5/Libkleo/libkleo/dnattributeorderconfigwidget.h +include/KPim5/Libkleo/libkleo/docaction.h +include/KPim5/Libkleo/libkleo/editdirectoryservicedialog.h +include/KPim5/Libkleo/libkleo/enum.h +include/KPim5/Libkleo/libkleo/filenamerequester.h +include/KPim5/Libkleo/libkleo/filesystemwatcher.h +include/KPim5/Libkleo/libkleo/formatting.h +include/KPim5/Libkleo/libkleo/gnupg.h +include/KPim5/Libkleo/libkleo/hex.h +include/KPim5/Libkleo/libkleo/kconfigbasedkeyfilter.h +include/KPim5/Libkleo/libkleo/keyapprovaldialog.h +include/KPim5/Libkleo/libkleo/keycache.h +include/KPim5/Libkleo/libkleo/keyfilter.h +include/KPim5/Libkleo/libkleo/keyfiltermanager.h +include/KPim5/Libkleo/libkleo/keygroup.h +include/KPim5/Libkleo/libkleo/keygroupconfig.h +include/KPim5/Libkleo/libkleo/keygroupimportexport.h +include/KPim5/Libkleo/libkleo/keyhelpers.h +include/KPim5/Libkleo/libkleo/keylist.h +include/KPim5/Libkleo/libkleo/keylistmodel.h +include/KPim5/Libkleo/libkleo/keylistmodelinterface.h +include/KPim5/Libkleo/libkleo/keylistsortfilterproxymodel.h +include/KPim5/Libkleo/libkleo/keylistview.h +include/KPim5/Libkleo/libkleo/keyrearrangecolumnsproxymodel.h +include/KPim5/Libkleo/libkleo/keyrequester.h +include/KPim5/Libkleo/libkleo/keyresolver.h +include/KPim5/Libkleo/libkleo/keyresolvercore.h +include/KPim5/Libkleo/libkleo/keyselectioncombo.h +include/KPim5/Libkleo/libkleo/keyselectiondialog.h +include/KPim5/Libkleo/libkleo/keyserverconfig.h +include/KPim5/Libkleo/libkleo/kleo_export.h +include/KPim5/Libkleo/libkleo/kleoexception.h +include/KPim5/Libkleo/libkleo/messagebox.h +include/KPim5/Libkleo/libkleo/navigatabletreeview.h +include/KPim5/Libkleo/libkleo/navigatabletreewidget.h +include/KPim5/Libkleo/libkleo/newkeyapprovaldialog.h +include/KPim5/Libkleo/libkleo/oidmap.h +include/KPim5/Libkleo/libkleo/predicates.h +include/KPim5/Libkleo/libkleo/progressdialog.h +include/KPim5/Libkleo/libkleo/qtstlhelpers.h +include/KPim5/Libkleo/libkleo/readerportselection.h +include/KPim5/Libkleo/libkleo/scdaemon.h +include/KPim5/Libkleo/libkleo/stl_util.h +include/KPim5/Libkleo/libkleo/stringutils.h +include/KPim5/Libkleo/libkleo/subkeylistmodel.h +include/KPim5/Libkleo/libkleo/systeminfo.h +include/KPim5/Libkleo/libkleo/test.h +include/KPim5/Libkleo/libkleo/uniquelock.h +include/KPim5/Libkleo/libkleo/useridlistmodel.h +include/KPim5/Libkleo/libkleo_version.h lib/cmake/KF5Libkleo/KF5LibkleoConfig.cmake lib/cmake/KF5Libkleo/KF5LibkleoConfigVersion.cmake -lib/cmake/KF5Libkleo/KF5LibkleoTargets-%%CMAKE_BUILD_TYPE%%.cmake -lib/cmake/KF5Libkleo/KF5LibkleoTargets.cmake -lib/libKF5Libkleo.so -lib/libKF5Libkleo.so.5 -lib/libKF5Libkleo.so.%%KDE_APPLICATIONS_SHLIB_VER%% +lib/cmake/KF5Libkleo/KPim5LibkleoTargets-%%CMAKE_BUILD_TYPE%%.cmake +lib/cmake/KF5Libkleo/KPim5LibkleoTargets.cmake +lib/cmake/KPim5Libkleo/KPim5LibkleoConfig.cmake +lib/cmake/KPim5Libkleo/KPim5LibkleoConfigVersion.cmake +lib/cmake/KPim5Libkleo/KPim5LibkleoTargets-%%CMAKE_BUILD_TYPE%%.cmake +lib/cmake/KPim5Libkleo/KPim5LibkleoTargets.cmake +lib/libKPim5Libkleo.so +lib/libKPim5Libkleo.so.5 +lib/libKPim5Libkleo.so.%%KDE_APPLICATIONS_SHLIB_VER%% %%QT_MKSPECDIR%%/modules/qt_Libkleo.pri %%DATADIR%%patra/pics/chiasmus_chi.png %%DATADIR%%patra/pics/hi16-app-gpg.png %%DATADIR%%patra/pics/hi16-app-gpgsm.png %%DATADIR%%patra/pics/hi22-app-gpg.png %%DATADIR%%patra/pics/hi22-app-gpgsm.png %%DATADIR%%patra/pics/hi32-app-gpg.png %%DATADIR%%patra/pics/hi32-app-gpgsm.png %%DATADIR%%patra/pics/key.png %%DATADIR%%patra/pics/key_bad.png %%DATADIR%%patra/pics/key_ok.png %%DATADIR%%patra/pics/key_unknown.png %%DATADIR%%patra/pics/smartcard.xpm share/locale/ar/LC_MESSAGES/libkleopatra.mo share/locale/be/LC_MESSAGES/libkleopatra.mo share/locale/bg/LC_MESSAGES/libkleopatra.mo share/locale/br/LC_MESSAGES/libkleopatra.mo share/locale/bs/LC_MESSAGES/libkleopatra.mo share/locale/ca/LC_MESSAGES/libkleopatra.mo share/locale/ca@valencia/LC_MESSAGES/libkleopatra.mo share/locale/cs/LC_MESSAGES/libkleopatra.mo share/locale/cy/LC_MESSAGES/libkleopatra.mo share/locale/da/LC_MESSAGES/libkleopatra.mo share/locale/de/LC_MESSAGES/libkleopatra.mo share/locale/el/LC_MESSAGES/libkleopatra.mo share/locale/en_GB/LC_MESSAGES/libkleopatra.mo share/locale/eo/LC_MESSAGES/libkleopatra.mo share/locale/es/LC_MESSAGES/libkleopatra.mo share/locale/et/LC_MESSAGES/libkleopatra.mo share/locale/eu/LC_MESSAGES/libkleopatra.mo share/locale/fa/LC_MESSAGES/libkleopatra.mo share/locale/fi/LC_MESSAGES/libkleopatra.mo share/locale/fr/LC_MESSAGES/libkleopatra.mo share/locale/fy/LC_MESSAGES/libkleopatra.mo share/locale/ga/LC_MESSAGES/libkleopatra.mo share/locale/gl/LC_MESSAGES/libkleopatra.mo share/locale/hi/LC_MESSAGES/libkleopatra.mo share/locale/hne/LC_MESSAGES/libkleopatra.mo share/locale/hr/LC_MESSAGES/libkleopatra.mo share/locale/hu/LC_MESSAGES/libkleopatra.mo share/locale/ia/LC_MESSAGES/libkleopatra.mo share/locale/ie/LC_MESSAGES/libkleopatra.mo share/locale/is/LC_MESSAGES/libkleopatra.mo share/locale/it/LC_MESSAGES/libkleopatra.mo share/locale/ja/LC_MESSAGES/libkleopatra.mo share/locale/ka/LC_MESSAGES/libkleopatra.mo share/locale/kk/LC_MESSAGES/libkleopatra.mo share/locale/km/LC_MESSAGES/libkleopatra.mo share/locale/ko/LC_MESSAGES/libkleopatra.mo share/locale/lt/LC_MESSAGES/libkleopatra.mo share/locale/lv/LC_MESSAGES/libkleopatra.mo share/locale/mai/LC_MESSAGES/libkleopatra.mo share/locale/mk/LC_MESSAGES/libkleopatra.mo share/locale/mr/LC_MESSAGES/libkleopatra.mo share/locale/ms/LC_MESSAGES/libkleopatra.mo share/locale/nb/LC_MESSAGES/libkleopatra.mo share/locale/nds/LC_MESSAGES/libkleopatra.mo share/locale/ne/LC_MESSAGES/libkleopatra.mo share/locale/nl/LC_MESSAGES/libkleopatra.mo share/locale/nn/LC_MESSAGES/libkleopatra.mo share/locale/pa/LC_MESSAGES/libkleopatra.mo share/locale/pl/LC_MESSAGES/libkleopatra.mo share/locale/pt/LC_MESSAGES/libkleopatra.mo share/locale/pt_BR/LC_MESSAGES/libkleopatra.mo share/locale/ro/LC_MESSAGES/libkleopatra.mo share/locale/ru/LC_MESSAGES/libkleopatra.mo share/locale/se/LC_MESSAGES/libkleopatra.mo share/locale/sk/LC_MESSAGES/libkleopatra.mo share/locale/sl/LC_MESSAGES/libkleopatra.mo share/locale/sq/LC_MESSAGES/libkleopatra.mo share/locale/sr/LC_MESSAGES/libkleopatra.mo share/locale/sr@ijekavian/LC_MESSAGES/libkleopatra.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/libkleopatra.mo share/locale/sr@latin/LC_MESSAGES/libkleopatra.mo share/locale/sv/LC_MESSAGES/libkleopatra.mo share/locale/ta/LC_MESSAGES/libkleopatra.mo share/locale/tg/LC_MESSAGES/libkleopatra.mo share/locale/tr/LC_MESSAGES/libkleopatra.mo share/locale/ug/LC_MESSAGES/libkleopatra.mo share/locale/uk/LC_MESSAGES/libkleopatra.mo share/locale/zh_CN/LC_MESSAGES/libkleopatra.mo share/locale/zh_TW/LC_MESSAGES/libkleopatra.mo share/qlogging-categories5/libkleo.categories share/qlogging-categories5/libkleo.renamecategories diff --git a/sysutils/baloo-widgets/distinfo b/sysutils/baloo-widgets/distinfo index 4f156e9ee2ee..af284b3713e9 100644 --- a/sysutils/baloo-widgets/distinfo +++ b/sysutils/baloo-widgets/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1677828166 -SHA256 (KDE/release-service/22.12.3/baloo-widgets-22.12.3.tar.xz) = 059d0622ec87df0965b88ae1e6492896810300bea66c25b989864b1f52b18432 -SIZE (KDE/release-service/22.12.3/baloo-widgets-22.12.3.tar.xz) = 275440 +TIMESTAMP = 1681548283 +SHA256 (KDE/release-service/23.04.0/baloo-widgets-23.04.0.tar.xz) = 4eae3b9e4127e773daec2098969c7928b2ebc6908c26329b4a09da30b3125c95 +SIZE (KDE/release-service/23.04.0/baloo-widgets-23.04.0.tar.xz) = 275540 diff --git a/sysutils/filelight/distinfo b/sysutils/filelight/distinfo index fd7669fbcaeb..15a5fbe70da0 100644 --- a/sysutils/filelight/distinfo +++ b/sysutils/filelight/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1677828169 -SHA256 (KDE/release-service/22.12.3/filelight-22.12.3.tar.xz) = acc2ee910b209bf615b026de2c1b2a7092ce20944f9d6773426a70b48241bb80 -SIZE (KDE/release-service/22.12.3/filelight-22.12.3.tar.xz) = 700968 +TIMESTAMP = 1681548276 +SHA256 (KDE/release-service/23.04.0/filelight-23.04.0.tar.xz) = 2caa450ed7eeaeefa1c00f2b53bc5180b6249381d05589c81362a7ba92050f26 +SIZE (KDE/release-service/23.04.0/filelight-23.04.0.tar.xz) = 695468 diff --git a/sysutils/k3b/distinfo b/sysutils/k3b/distinfo index 5466b3ab28cc..7258529462da 100644 --- a/sysutils/k3b/distinfo +++ b/sysutils/k3b/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1677828165 -SHA256 (KDE/release-service/22.12.3/k3b-22.12.3.tar.xz) = 9924a96e2a893e13e99636757e13d4f8f9a6ac776019b0aa0a11b56c7ede8a2a -SIZE (KDE/release-service/22.12.3/k3b-22.12.3.tar.xz) = 10947736 +TIMESTAMP = 1681548275 +SHA256 (KDE/release-service/23.04.0/k3b-23.04.0.tar.xz) = 8b54124103050d9b3054dfdb963e48f83a0d7b429c06b54242815084cb8a013e +SIZE (KDE/release-service/23.04.0/k3b-23.04.0.tar.xz) = 10951420 diff --git a/sysutils/k3b/pkg-plist b/sysutils/k3b/pkg-plist index 6131cf1d012d..5da2f26142c9 100644 --- a/sysutils/k3b/pkg-plist +++ b/sysutils/k3b/pkg-plist @@ -1,577 +1,579 @@ bin/k3b include/k3b_export.h include/k3bactivepipe.h include/k3baudiocdtrackdrag.h include/k3baudiocdtrackreader.h include/k3baudiocdtracksource.h include/k3baudiocuefilewritingjob.h include/k3baudiodatasource.h include/k3baudiodatasourceiterator.h include/k3baudiodecoder.h include/k3baudiodoc.h include/k3baudiodocreader.h include/k3baudioencoder.h include/k3baudiofile.h include/k3baudiofileanalyzerjob.h include/k3baudiofilereader.h include/k3baudiojob.h include/k3baudiotrack.h include/k3baudiotrackreader.h include/k3baudiozerodata.h include/k3baudiozerodatareader.h include/k3bbinimagewritingjob.h include/k3bblankingjob.h include/k3bbootitem.h include/k3bbusywidget.h include/k3bcdcopyjob.h include/k3bcddb.h include/k3bcdparanoialib.h include/k3bcdrdaowriter.h include/k3bcdrecordwriter.h include/k3bcdrskinwriter.h include/k3bcdtext.h include/k3bcdtextvalidator.h include/k3bchecksumpipe.h include/k3bclonejob.h include/k3bcore.h include/k3bcuefileparser.h include/k3bdatadoc.h include/k3bdataitem.h include/k3bdatajob.h include/k3bdefaultexternalprograms.h include/k3bdevice.h include/k3bdevice_export.h include/k3bdevicecombobox.h include/k3bdeviceglobals.h include/k3bdevicehandler.h include/k3bdevicemanager.h include/k3bdeviceselectiondialog.h include/k3bdevicetypes.h include/k3bdiritem.h include/k3bdirsizejob.h include/k3bdiskinfo.h include/k3bdoc.h include/k3bdvdcopyjob.h include/k3bdvdformattingjob.h include/k3bexceptions.h include/k3bexternalbinmanager.h include/k3bfileitem.h include/k3bfilesplitter.h include/k3bfilesysteminfo.h include/k3bglobals.h include/k3bglobalsettings.h include/k3bgrowisofswriter.h include/k3bimagefilereader.h include/k3binffilewriter.h include/k3bintmapcombobox.h include/k3bintvalidator.h include/k3biso9660.h include/k3biso9660backend.h include/k3biso9660imagewritingjob.h include/k3bisooptions.h include/k3bjob.h include/k3bjobhandler.h include/k3bmd5job.h include/k3bmediacache.h include/k3bmedium.h include/k3bmetawriter.h include/k3bmixeddoc.h include/k3bmixedjob.h include/k3bmovixdoc.h include/k3bmovixfileitem.h include/k3bmovixjob.h include/k3bmsf.h include/k3bmsfedit.h include/k3bmultichoicedialog.h include/k3bplugin.h include/k3bpluginconfigwidget.h include/k3bpluginmanager.h include/k3bprocess.h include/k3bprojectplugin.h include/k3brawaudiodatareader.h include/k3brawaudiodatasource.h include/k3bsignalwaiter.h include/k3bsimplejobhandler.h include/k3bstdguiitems.h include/k3bthreadjob.h include/k3bthreadwidget.h include/k3bthroughputestimator.h include/k3btoc.h include/k3btocfilewriter.h include/k3btrack.h include/k3bvalidators.h include/k3bvcddoc.h include/k3bvcdjob.h include/k3bvcdoptions.h include/k3bverificationjob.h include/k3bversion.h include/k3bvideodvd.h include/k3bvideodvdaudiostream.h include/k3bvideodvddoc.h include/k3bvideodvdjob.h include/k3bvideodvdptt.h include/k3bvideodvdsubpicturestream.h include/k3bvideodvdtime.h include/k3bvideodvdtitle.h include/k3bvideodvdtitledetectclippingjob.h include/k3bvideodvdtitletranscodingjob.h include/k3bvideodvdvideostream.h include/k3bwavefilewriter.h lib/libexec/kauth/k3bhelper lib/libk3bdevice.so lib/libk3bdevice.so.8 lib/libk3bdevice.so.8.0.0 lib/libk3blib.so lib/libk3blib.so.8 lib/libk3blib.so.8.0.0 %%QT_PLUGINDIR%%/k3b_plugins/k3baudiometainforenamerplugin.so %%QT_PLUGINDIR%%/k3b_plugins/k3baudioprojectcddbplugin.so %%QT_PLUGINDIR%%/k3b_plugins/k3bexternalencoder.so %%QT_PLUGINDIR%%/k3b_plugins/k3bflacdecoder.so %%QT_PLUGINDIR%%/k3b_plugins/k3blameencoder.so %%QT_PLUGINDIR%%/k3b_plugins/k3blibsndfiledecoder.so %%QT_PLUGINDIR%%/k3b_plugins/k3bmaddecoder.so %%QT_PLUGINDIR%%/k3b_plugins/k3boggvorbisdecoder.so %%QT_PLUGINDIR%%/k3b_plugins/k3boggvorbisencoder.so %%QT_PLUGINDIR%%/k3b_plugins/k3bsoxencoder.so %%QT_PLUGINDIR%%/k3b_plugins/k3bwavedecoder.so %%QT_PLUGINDIR%%/k3b_plugins/kcms/kcm_k3bexternalencoder.so %%QT_PLUGINDIR%%/k3b_plugins/kcms/kcm_k3blameencoder.so %%QT_PLUGINDIR%%/k3b_plugins/kcms/kcm_k3boggvorbisencoder.so %%QT_PLUGINDIR%%/k3b_plugins/kcms/kcm_k3bsoxencoder.so %%QT_PLUGINDIR%%/kf5/kio/videodvd.so share/applications/org.kde.k3b.desktop share/dbus-1/system-services/org.kde.k3b.service share/dbus-1/system.d/org.kde.k3b.conf share/icons/hicolor/128x128/apps/k3b.png share/icons/hicolor/128x128/mimetypes/application-x-k3b.png share/icons/hicolor/16x16/apps/k3b.png share/icons/hicolor/22x22/apps/k3b.png share/icons/hicolor/32x32/apps/k3b.png share/icons/hicolor/32x32/mimetypes/application-x-k3b.png share/icons/hicolor/48x48/apps/k3b.png share/icons/hicolor/48x48/mimetypes/application-x-k3b.png share/icons/hicolor/64x64/apps/k3b.png share/icons/hicolor/64x64/mimetypes/application-x-k3b.png share/icons/hicolor/scalable/apps/k3b.svgz share/icons/hicolor/scalable/mimetypes/application-x-k3b.svgz %%DATADIR%%/cdi/cdi_imag.rtf %%DATADIR%%/cdi/cdi_text.fnt %%DATADIR%%/cdi/cdi_vcd.app %%DATADIR%%/cdi/cdi_vcd.cfg %%DATADIR%%/cdi/icdia.htm %%DATADIR%%/cdi/vcd_on_cdi_41.pdf %%DATADIR%%/extra/k3bphotosvcd.mpg %%DATADIR%%/extra/k3bphotovcd.mpg %%DATADIR%%/icons/hicolor/128x128/actions/tools-rip-audio-cd.png %%DATADIR%%/icons/hicolor/128x128/actions/tools-rip-video-cd.png %%DATADIR%%/icons/hicolor/128x128/actions/tools-rip-video-dvd.png %%DATADIR%%/icons/hicolor/128x128/devices/media-optical-audio.png %%DATADIR%%/icons/hicolor/128x128/devices/media-optical-cd-video.png %%DATADIR%%/icons/hicolor/128x128/devices/media-optical-dvd-video.png %%DATADIR%%/icons/hicolor/128x128/devices/media-optical-mixed-cd.png %%DATADIR%%/icons/hicolor/128x128/devices/media-optical-video.png %%DATADIR%%/icons/hicolor/16x16/actions/musicbrainz.png %%DATADIR%%/icons/hicolor/16x16/actions/tools-rip-audio-cd.png %%DATADIR%%/icons/hicolor/16x16/actions/tools-rip-video-cd.png %%DATADIR%%/icons/hicolor/16x16/actions/tools-rip-video-dvd.png %%DATADIR%%/icons/hicolor/16x16/devices/media-optical-audio.png %%DATADIR%%/icons/hicolor/16x16/devices/media-optical-cd-video.png %%DATADIR%%/icons/hicolor/16x16/devices/media-optical-data.png %%DATADIR%%/icons/hicolor/16x16/devices/media-optical-mixed-cd.png %%DATADIR%%/icons/hicolor/16x16/devices/media-optical-video.png %%DATADIR%%/icons/hicolor/22x22/actions/tools-rip-audio-cd.png %%DATADIR%%/icons/hicolor/22x22/actions/tools-rip-video-cd.png %%DATADIR%%/icons/hicolor/22x22/actions/tools-rip-video-dvd.png %%DATADIR%%/icons/hicolor/22x22/devices/media-optical-audio.png %%DATADIR%%/icons/hicolor/22x22/devices/media-optical-cd-video.png %%DATADIR%%/icons/hicolor/22x22/devices/media-optical-data.png %%DATADIR%%/icons/hicolor/22x22/devices/media-optical-mixed-cd.png %%DATADIR%%/icons/hicolor/22x22/devices/media-optical-video.png %%DATADIR%%/icons/hicolor/32x32/actions/tools-rip-audio-cd.png %%DATADIR%%/icons/hicolor/32x32/actions/tools-rip-video-cd.png %%DATADIR%%/icons/hicolor/32x32/actions/tools-rip-video-dvd.png %%DATADIR%%/icons/hicolor/32x32/devices/media-optical-audio.png %%DATADIR%%/icons/hicolor/32x32/devices/media-optical-cd-video.png %%DATADIR%%/icons/hicolor/32x32/devices/media-optical-data.png %%DATADIR%%/icons/hicolor/32x32/devices/media-optical-dvd-video.png %%DATADIR%%/icons/hicolor/32x32/devices/media-optical-mixed-cd.png %%DATADIR%%/icons/hicolor/32x32/devices/media-optical-video.png %%DATADIR%%/icons/hicolor/48x48/actions/tools-rip-audio-cd.png %%DATADIR%%/icons/hicolor/48x48/actions/tools-rip-video-cd.png %%DATADIR%%/icons/hicolor/48x48/actions/tools-rip-video-dvd.png %%DATADIR%%/icons/hicolor/48x48/devices/media-optical-audio.png %%DATADIR%%/icons/hicolor/48x48/devices/media-optical-cd-video.png %%DATADIR%%/icons/hicolor/48x48/devices/media-optical-data.png %%DATADIR%%/icons/hicolor/48x48/devices/media-optical-dvd-video.png %%DATADIR%%/icons/hicolor/48x48/devices/media-optical-mixed-cd.png %%DATADIR%%/icons/hicolor/48x48/devices/media-optical-video.png %%DATADIR%%/icons/hicolor/64x64/actions/musicbrainz.png %%DATADIR%%/icons/hicolor/64x64/actions/tools-rip-audio-cd.png %%DATADIR%%/icons/hicolor/64x64/actions/tools-rip-video-cd.png %%DATADIR%%/icons/hicolor/64x64/actions/tools-rip-video-dvd.png %%DATADIR%%/icons/hicolor/64x64/devices/media-optical-audio.png %%DATADIR%%/icons/hicolor/64x64/devices/media-optical-cd-video.png %%DATADIR%%/icons/hicolor/64x64/devices/media-optical-dvd-video.png %%DATADIR%%/icons/hicolor/64x64/devices/media-optical-mixed-cd.png %%DATADIR%%/icons/hicolor/64x64/devices/media-optical-video.png %%DATADIR%%/icons/hicolor/scalable/actions/tools-rip-audio-cd.svgz %%DATADIR%%/icons/hicolor/scalable/actions/tools-rip-video-cd.svgz %%DATADIR%%/icons/hicolor/scalable/actions/tools-rip-video-dvd.svgz %%DATADIR%%/icons/hicolor/scalable/devices/media-optical-audio.svgz %%DATADIR%%/icons/hicolor/scalable/devices/media-optical-cd-video.svgz %%DATADIR%%/icons/hicolor/scalable/devices/media-optical-data.svgz %%DATADIR%%/icons/hicolor/scalable/devices/media-optical-dvd-video.svgz %%DATADIR%%/icons/hicolor/scalable/devices/media-optical-mixed-cd.svgz %%DATADIR%%/icons/hicolor/scalable/devices/media-optical-video.svgz %%DATADIR%%/pics/73lab/dialog_left.png %%DATADIR%%/pics/73lab/dialog_right.png %%DATADIR%%/pics/73lab/k3b.theme %%DATADIR%%/pics/73lab/media_audio.png %%DATADIR%%/pics/73lab/media_data.png %%DATADIR%%/pics/73lab/media_empty.png %%DATADIR%%/pics/73lab/media_left.png %%DATADIR%%/pics/73lab/media_mixed.png %%DATADIR%%/pics/73lab/media_none.png %%DATADIR%%/pics/73lab/media_video.png %%DATADIR%%/pics/73lab/probing.png %%DATADIR%%/pics/73lab/progress_fail.png %%DATADIR%%/pics/73lab/progress_right.png %%DATADIR%%/pics/73lab/progress_success.png %%DATADIR%%/pics/73lab/progress_working.png %%DATADIR%%/pics/73lab/project_left.png %%DATADIR%%/pics/73lab/project_right.png %%DATADIR%%/pics/73lab/splash.png %%DATADIR%%/pics/73lab/welcome_bg.png %%DATADIR%%/pics/RobsTheme/dialog_left.png %%DATADIR%%/pics/RobsTheme/dialog_right.png %%DATADIR%%/pics/RobsTheme/k3b.theme %%DATADIR%%/pics/RobsTheme/media_audio.png %%DATADIR%%/pics/RobsTheme/media_data.png %%DATADIR%%/pics/RobsTheme/media_empty.png %%DATADIR%%/pics/RobsTheme/media_left.png %%DATADIR%%/pics/RobsTheme/media_mixed.png %%DATADIR%%/pics/RobsTheme/media_none.png %%DATADIR%%/pics/RobsTheme/media_video.png %%DATADIR%%/pics/RobsTheme/progress_fail.png %%DATADIR%%/pics/RobsTheme/progress_right.png %%DATADIR%%/pics/RobsTheme/progress_success.png %%DATADIR%%/pics/RobsTheme/progress_working.png %%DATADIR%%/pics/RobsTheme/project_left.png %%DATADIR%%/pics/RobsTheme/project_right.png %%DATADIR%%/pics/RobsTheme/splash.png %%DATADIR%%/pics/RobsTheme/welcome_bg.png %%DATADIR%%/pics/crystal/dialog_left.png %%DATADIR%%/pics/crystal/dialog_right.png %%DATADIR%%/pics/crystal/k3b.theme %%DATADIR%%/pics/crystal/media_audio.png %%DATADIR%%/pics/crystal/media_data.png %%DATADIR%%/pics/crystal/media_empty.png %%DATADIR%%/pics/crystal/media_left.png %%DATADIR%%/pics/crystal/media_mixed.png %%DATADIR%%/pics/crystal/media_none.png %%DATADIR%%/pics/crystal/media_video.png %%DATADIR%%/pics/crystal/probing.png %%DATADIR%%/pics/crystal/progress_fail.png %%DATADIR%%/pics/crystal/progress_right.png %%DATADIR%%/pics/crystal/progress_success.png %%DATADIR%%/pics/crystal/progress_working.png %%DATADIR%%/pics/crystal/project_left.png %%DATADIR%%/pics/crystal/project_right.png %%DATADIR%%/pics/crystal/splash.png %%DATADIR%%/pics/crystal/welcome_bg.png %%DATADIR%%/pics/quant/dialog_left.png %%DATADIR%%/pics/quant/dialog_right.png %%DATADIR%%/pics/quant/k3b.theme %%DATADIR%%/pics/quant/media_audio.png %%DATADIR%%/pics/quant/media_data.png %%DATADIR%%/pics/quant/media_empty.png %%DATADIR%%/pics/quant/media_left.png %%DATADIR%%/pics/quant/media_mixed.png %%DATADIR%%/pics/quant/media_none.png %%DATADIR%%/pics/quant/media_video.png %%DATADIR%%/pics/quant/progress_fail.png %%DATADIR%%/pics/quant/progress_right.png %%DATADIR%%/pics/quant/progress_success.png %%DATADIR%%/pics/quant/progress_working.png %%DATADIR%%/pics/quant/project_left.png %%DATADIR%%/pics/quant/project_right.png %%DATADIR%%/pics/quant/splash.png %%DATADIR%%/pics/quant/welcome_bg.png share/knotifications5/k3b.notifyrc share/knsrcfiles/k3btheme.knsrc share/konqsidebartng/virtual_folders/services/videodvd.desktop share/kservices5/ServiceMenus/k3b_create_audio_cd.desktop share/kservices5/ServiceMenus/k3b_create_data_project.desktop share/kservices5/ServiceMenus/k3b_create_video_cd.desktop share/kservices5/ServiceMenus/k3b_write_bin_image.desktop share/kservices5/ServiceMenus/k3b_write_iso_image.desktop share/kservicetypes5/k3bplugin.desktop share/kxmlgui5/k3b/k3bdeviceui.rc share/kxmlgui5/k3b/k3bui.rc share/locale/ar/LC_MESSAGES/k3b.mo +share/locale/ar/LC_MESSAGES/libk3bdevice.mo share/locale/be/LC_MESSAGES/k3b.mo share/locale/be/LC_MESSAGES/kio_videodvd.mo share/locale/be/LC_MESSAGES/libk3b.mo share/locale/be/LC_MESSAGES/libk3bdevice.mo share/locale/bg/LC_MESSAGES/k3b.mo share/locale/bg/LC_MESSAGES/kio_videodvd.mo share/locale/bg/LC_MESSAGES/libk3b.mo share/locale/bg/LC_MESSAGES/libk3bdevice.mo share/locale/bs/LC_MESSAGES/k3b.mo share/locale/bs/LC_MESSAGES/kio_videodvd.mo share/locale/bs/LC_MESSAGES/libk3b.mo share/locale/bs/LC_MESSAGES/libk3bdevice.mo share/locale/ca/LC_MESSAGES/k3b.mo share/locale/ca/LC_MESSAGES/kio_videodvd.mo share/locale/ca/LC_MESSAGES/libk3b.mo share/locale/ca/LC_MESSAGES/libk3bdevice.mo share/locale/ca@valencia/LC_MESSAGES/k3b.mo share/locale/ca@valencia/LC_MESSAGES/kio_videodvd.mo share/locale/ca@valencia/LC_MESSAGES/libk3b.mo share/locale/ca@valencia/LC_MESSAGES/libk3bdevice.mo share/locale/cs/LC_MESSAGES/k3b.mo share/locale/cs/LC_MESSAGES/kio_videodvd.mo share/locale/cs/LC_MESSAGES/libk3b.mo share/locale/cs/LC_MESSAGES/libk3bdevice.mo share/locale/csb/LC_MESSAGES/k3b.mo share/locale/da/LC_MESSAGES/k3b.mo share/locale/da/LC_MESSAGES/kio_videodvd.mo share/locale/da/LC_MESSAGES/libk3b.mo share/locale/da/LC_MESSAGES/libk3bdevice.mo share/locale/de/LC_MESSAGES/k3b.mo share/locale/de/LC_MESSAGES/kio_videodvd.mo share/locale/de/LC_MESSAGES/libk3b.mo share/locale/de/LC_MESSAGES/libk3bdevice.mo share/locale/el/LC_MESSAGES/k3b.mo share/locale/el/LC_MESSAGES/kio_videodvd.mo share/locale/el/LC_MESSAGES/libk3b.mo share/locale/el/LC_MESSAGES/libk3bdevice.mo share/locale/en_GB/LC_MESSAGES/k3b.mo share/locale/en_GB/LC_MESSAGES/kio_videodvd.mo share/locale/en_GB/LC_MESSAGES/libk3b.mo share/locale/en_GB/LC_MESSAGES/libk3bdevice.mo share/locale/eo/LC_MESSAGES/k3b.mo share/locale/eo/LC_MESSAGES/kio_videodvd.mo share/locale/eo/LC_MESSAGES/libk3b.mo share/locale/eo/LC_MESSAGES/libk3bdevice.mo share/locale/es/LC_MESSAGES/k3b.mo share/locale/es/LC_MESSAGES/kio_videodvd.mo share/locale/es/LC_MESSAGES/libk3b.mo share/locale/es/LC_MESSAGES/libk3bdevice.mo share/locale/et/LC_MESSAGES/k3b.mo share/locale/et/LC_MESSAGES/kio_videodvd.mo share/locale/et/LC_MESSAGES/libk3b.mo share/locale/et/LC_MESSAGES/libk3bdevice.mo share/locale/eu/LC_MESSAGES/k3b.mo share/locale/eu/LC_MESSAGES/kio_videodvd.mo share/locale/eu/LC_MESSAGES/libk3b.mo share/locale/eu/LC_MESSAGES/libk3bdevice.mo share/locale/fa/LC_MESSAGES/k3b.mo share/locale/fi/LC_MESSAGES/k3b.mo share/locale/fi/LC_MESSAGES/kio_videodvd.mo share/locale/fi/LC_MESSAGES/libk3b.mo share/locale/fi/LC_MESSAGES/libk3bdevice.mo share/locale/fr/LC_MESSAGES/k3b.mo share/locale/fr/LC_MESSAGES/kio_videodvd.mo share/locale/fr/LC_MESSAGES/libk3b.mo share/locale/fr/LC_MESSAGES/libk3bdevice.mo share/locale/ga/LC_MESSAGES/k3b.mo share/locale/ga/LC_MESSAGES/kio_videodvd.mo share/locale/ga/LC_MESSAGES/libk3b.mo share/locale/ga/LC_MESSAGES/libk3bdevice.mo share/locale/gl/LC_MESSAGES/k3b.mo share/locale/gl/LC_MESSAGES/kio_videodvd.mo share/locale/gl/LC_MESSAGES/libk3b.mo share/locale/gl/LC_MESSAGES/libk3bdevice.mo share/locale/he/LC_MESSAGES/k3b.mo share/locale/he/LC_MESSAGES/kio_videodvd.mo share/locale/he/LC_MESSAGES/libk3b.mo share/locale/he/LC_MESSAGES/libk3bdevice.mo share/locale/hi/LC_MESSAGES/k3b.mo share/locale/hi/LC_MESSAGES/kio_videodvd.mo share/locale/hi/LC_MESSAGES/libk3b.mo share/locale/hi/LC_MESSAGES/libk3bdevice.mo share/locale/hne/LC_MESSAGES/k3b.mo share/locale/hne/LC_MESSAGES/kio_videodvd.mo share/locale/hne/LC_MESSAGES/libk3b.mo share/locale/hne/LC_MESSAGES/libk3bdevice.mo share/locale/hr/LC_MESSAGES/k3b.mo share/locale/hr/LC_MESSAGES/kio_videodvd.mo share/locale/hr/LC_MESSAGES/libk3b.mo share/locale/hr/LC_MESSAGES/libk3bdevice.mo share/locale/hu/LC_MESSAGES/k3b.mo share/locale/hu/LC_MESSAGES/kio_videodvd.mo share/locale/hu/LC_MESSAGES/libk3b.mo share/locale/hu/LC_MESSAGES/libk3bdevice.mo share/locale/ia/LC_MESSAGES/k3b.mo share/locale/ia/LC_MESSAGES/kio_videodvd.mo share/locale/ia/LC_MESSAGES/libk3b.mo share/locale/ia/LC_MESSAGES/libk3bdevice.mo share/locale/id/LC_MESSAGES/k3b.mo share/locale/id/LC_MESSAGES/kio_videodvd.mo share/locale/id/LC_MESSAGES/libk3b.mo share/locale/id/LC_MESSAGES/libk3bdevice.mo share/locale/is/LC_MESSAGES/k3b.mo share/locale/is/LC_MESSAGES/kio_videodvd.mo share/locale/is/LC_MESSAGES/libk3b.mo share/locale/is/LC_MESSAGES/libk3bdevice.mo share/locale/it/LC_MESSAGES/k3b.mo share/locale/it/LC_MESSAGES/kio_videodvd.mo share/locale/it/LC_MESSAGES/libk3b.mo share/locale/it/LC_MESSAGES/libk3bdevice.mo share/locale/ja/LC_MESSAGES/k3b.mo share/locale/ja/LC_MESSAGES/kio_videodvd.mo share/locale/ja/LC_MESSAGES/libk3b.mo share/locale/ja/LC_MESSAGES/libk3bdevice.mo share/locale/ka/LC_MESSAGES/k3b.mo share/locale/ka/LC_MESSAGES/kio_videodvd.mo share/locale/ka/LC_MESSAGES/libk3b.mo share/locale/ka/LC_MESSAGES/libk3bdevice.mo share/locale/kk/LC_MESSAGES/k3b.mo share/locale/kk/LC_MESSAGES/kio_videodvd.mo share/locale/kk/LC_MESSAGES/libk3b.mo share/locale/kk/LC_MESSAGES/libk3bdevice.mo share/locale/km/LC_MESSAGES/k3b.mo share/locale/km/LC_MESSAGES/kio_videodvd.mo share/locale/km/LC_MESSAGES/libk3b.mo share/locale/km/LC_MESSAGES/libk3bdevice.mo share/locale/ko/LC_MESSAGES/k3b.mo share/locale/ko/LC_MESSAGES/kio_videodvd.mo share/locale/ko/LC_MESSAGES/libk3b.mo share/locale/ko/LC_MESSAGES/libk3bdevice.mo share/locale/ku/LC_MESSAGES/k3b.mo share/locale/ku/LC_MESSAGES/kio_videodvd.mo share/locale/lt/LC_MESSAGES/k3b.mo share/locale/lt/LC_MESSAGES/kio_videodvd.mo share/locale/lt/LC_MESSAGES/libk3b.mo share/locale/lt/LC_MESSAGES/libk3bdevice.mo share/locale/lv/LC_MESSAGES/k3b.mo share/locale/lv/LC_MESSAGES/kio_videodvd.mo share/locale/lv/LC_MESSAGES/libk3b.mo share/locale/lv/LC_MESSAGES/libk3bdevice.mo share/locale/mai/LC_MESSAGES/k3b.mo share/locale/mai/LC_MESSAGES/kio_videodvd.mo share/locale/mai/LC_MESSAGES/libk3b.mo share/locale/mai/LC_MESSAGES/libk3bdevice.mo share/locale/ml/LC_MESSAGES/kio_videodvd.mo share/locale/mr/LC_MESSAGES/k3b.mo share/locale/mr/LC_MESSAGES/kio_videodvd.mo share/locale/mr/LC_MESSAGES/libk3b.mo share/locale/mr/LC_MESSAGES/libk3bdevice.mo share/locale/ms/LC_MESSAGES/k3b.mo share/locale/ms/LC_MESSAGES/kio_videodvd.mo share/locale/ms/LC_MESSAGES/libk3b.mo share/locale/ms/LC_MESSAGES/libk3bdevice.mo share/locale/nb/LC_MESSAGES/k3b.mo share/locale/nb/LC_MESSAGES/kio_videodvd.mo share/locale/nb/LC_MESSAGES/libk3b.mo share/locale/nb/LC_MESSAGES/libk3bdevice.mo share/locale/nds/LC_MESSAGES/k3b.mo share/locale/nds/LC_MESSAGES/kio_videodvd.mo share/locale/nds/LC_MESSAGES/libk3b.mo share/locale/nds/LC_MESSAGES/libk3bdevice.mo share/locale/nl/LC_MESSAGES/k3b.mo share/locale/nl/LC_MESSAGES/kio_videodvd.mo share/locale/nl/LC_MESSAGES/libk3b.mo share/locale/nl/LC_MESSAGES/libk3bdevice.mo share/locale/nn/LC_MESSAGES/k3b.mo share/locale/nn/LC_MESSAGES/kio_videodvd.mo share/locale/nn/LC_MESSAGES/libk3b.mo share/locale/nn/LC_MESSAGES/libk3bdevice.mo share/locale/oc/LC_MESSAGES/k3b.mo share/locale/oc/LC_MESSAGES/kio_videodvd.mo share/locale/oc/LC_MESSAGES/libk3b.mo share/locale/oc/LC_MESSAGES/libk3bdevice.mo share/locale/pa/LC_MESSAGES/k3b.mo share/locale/pa/LC_MESSAGES/kio_videodvd.mo share/locale/pa/LC_MESSAGES/libk3b.mo share/locale/pa/LC_MESSAGES/libk3bdevice.mo share/locale/pl/LC_MESSAGES/k3b.mo share/locale/pl/LC_MESSAGES/kio_videodvd.mo share/locale/pl/LC_MESSAGES/libk3b.mo share/locale/pl/LC_MESSAGES/libk3bdevice.mo share/locale/pt/LC_MESSAGES/k3b.mo share/locale/pt/LC_MESSAGES/kio_videodvd.mo share/locale/pt/LC_MESSAGES/libk3b.mo share/locale/pt/LC_MESSAGES/libk3bdevice.mo share/locale/pt_BR/LC_MESSAGES/k3b.mo share/locale/pt_BR/LC_MESSAGES/kio_videodvd.mo share/locale/pt_BR/LC_MESSAGES/libk3b.mo share/locale/pt_BR/LC_MESSAGES/libk3bdevice.mo share/locale/ro/LC_MESSAGES/k3b.mo share/locale/ro/LC_MESSAGES/kio_videodvd.mo share/locale/ro/LC_MESSAGES/libk3b.mo share/locale/ro/LC_MESSAGES/libk3bdevice.mo share/locale/ru/LC_MESSAGES/k3b.mo share/locale/ru/LC_MESSAGES/kio_videodvd.mo share/locale/ru/LC_MESSAGES/libk3b.mo share/locale/ru/LC_MESSAGES/libk3bdevice.mo share/locale/se/LC_MESSAGES/k3b.mo share/locale/se/LC_MESSAGES/libk3b.mo share/locale/se/LC_MESSAGES/libk3bdevice.mo share/locale/sk/LC_MESSAGES/k3b.mo share/locale/sk/LC_MESSAGES/kio_videodvd.mo share/locale/sk/LC_MESSAGES/libk3b.mo share/locale/sk/LC_MESSAGES/libk3bdevice.mo share/locale/sl/LC_MESSAGES/k3b.mo share/locale/sl/LC_MESSAGES/kio_videodvd.mo share/locale/sl/LC_MESSAGES/libk3b.mo share/locale/sl/LC_MESSAGES/libk3bdevice.mo share/locale/sq/LC_MESSAGES/k3b.mo share/locale/sq/LC_MESSAGES/kio_videodvd.mo share/locale/sq/LC_MESSAGES/libk3b.mo share/locale/sq/LC_MESSAGES/libk3bdevice.mo share/locale/sr/LC_MESSAGES/k3b.mo share/locale/sr/LC_MESSAGES/kio_videodvd.mo share/locale/sr/LC_MESSAGES/libk3b.mo share/locale/sr/LC_MESSAGES/libk3bdevice.mo share/locale/sr@ijekavian/LC_MESSAGES/k3b.mo share/locale/sr@ijekavian/LC_MESSAGES/kio_videodvd.mo share/locale/sr@ijekavian/LC_MESSAGES/libk3b.mo share/locale/sr@ijekavian/LC_MESSAGES/libk3bdevice.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/k3b.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kio_videodvd.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/libk3b.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/libk3bdevice.mo share/locale/sr@latin/LC_MESSAGES/k3b.mo share/locale/sr@latin/LC_MESSAGES/kio_videodvd.mo share/locale/sr@latin/LC_MESSAGES/libk3b.mo share/locale/sr@latin/LC_MESSAGES/libk3bdevice.mo share/locale/sv/LC_MESSAGES/k3b.mo share/locale/sv/LC_MESSAGES/kio_videodvd.mo share/locale/sv/LC_MESSAGES/libk3b.mo share/locale/sv/LC_MESSAGES/libk3bdevice.mo share/locale/th/LC_MESSAGES/k3b.mo share/locale/th/LC_MESSAGES/kio_videodvd.mo share/locale/th/LC_MESSAGES/libk3b.mo share/locale/th/LC_MESSAGES/libk3bdevice.mo share/locale/tr/LC_MESSAGES/k3b.mo share/locale/tr/LC_MESSAGES/kio_videodvd.mo share/locale/tr/LC_MESSAGES/libk3b.mo share/locale/tr/LC_MESSAGES/libk3bdevice.mo share/locale/ug/LC_MESSAGES/k3b.mo share/locale/ug/LC_MESSAGES/kio_videodvd.mo share/locale/ug/LC_MESSAGES/libk3b.mo share/locale/ug/LC_MESSAGES/libk3bdevice.mo share/locale/uk/LC_MESSAGES/k3b.mo share/locale/uk/LC_MESSAGES/kio_videodvd.mo share/locale/uk/LC_MESSAGES/libk3b.mo share/locale/uk/LC_MESSAGES/libk3bdevice.mo share/locale/wa/LC_MESSAGES/kio_videodvd.mo share/locale/zh_CN/LC_MESSAGES/k3b.mo share/locale/zh_CN/LC_MESSAGES/kio_videodvd.mo share/locale/zh_CN/LC_MESSAGES/libk3b.mo share/locale/zh_CN/LC_MESSAGES/libk3bdevice.mo share/locale/zh_TW/LC_MESSAGES/k3b.mo share/locale/zh_TW/LC_MESSAGES/kio_videodvd.mo share/locale/zh_TW/LC_MESSAGES/libk3b.mo share/locale/zh_TW/LC_MESSAGES/libk3bdevice.mo share/metainfo/org.kde.k3b.appdata.xml share/mime/packages/x-k3b.xml share/polkit-1/actions/org.kde.k3b.policy +share/qlogging-categories5/k3b.categories share/solid/actions/k3b_audiocd_rip.desktop share/solid/actions/k3b_copy_disc.desktop share/solid/actions/k3b_create_audio_cd_from_blank_medium.desktop share/solid/actions/k3b_create_data_project_from_blank_medium.desktop share/solid/actions/k3b_videodvd_rip.desktop diff --git a/sysutils/kbackup/distinfo b/sysutils/kbackup/distinfo index dbcb61756074..0d83dcac53ca 100644 --- a/sysutils/kbackup/distinfo +++ b/sysutils/kbackup/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1677828151 -SHA256 (KDE/release-service/22.12.3/kbackup-22.12.3.tar.xz) = 0fcb3c07fd5a2aac25329d2ccf9fa810311f61c6476528c3d22b4deb9d3ed812 -SIZE (KDE/release-service/22.12.3/kbackup-22.12.3.tar.xz) = 395484 +TIMESTAMP = 1681548274 +SHA256 (KDE/release-service/23.04.0/kbackup-23.04.0.tar.xz) = 6c4b97a6640497c659d2fef6a557ad13dc62aa1b311ee5b7e4fc77bc2c9bedf3 +SIZE (KDE/release-service/23.04.0/kbackup-23.04.0.tar.xz) = 397260 diff --git a/sysutils/kcron/distinfo b/sysutils/kcron/distinfo index 7a412b770238..6525d24955c0 100644 --- a/sysutils/kcron/distinfo +++ b/sysutils/kcron/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1677828158 -SHA256 (KDE/release-service/22.12.3/kcron-22.12.3.tar.xz) = eb4902de979ad7e33f20ee2150e236fb81e925c690dc92bc9e93f5f55f9b184e -SIZE (KDE/release-service/22.12.3/kcron-22.12.3.tar.xz) = 942932 +TIMESTAMP = 1681548289 +SHA256 (KDE/release-service/23.04.0/kcron-23.04.0.tar.xz) = e0b4cbbc0ce3d43298694449c05c6761b46f4421efac6c076a96ec80383d5b59 +SIZE (KDE/release-service/23.04.0/kcron-23.04.0.tar.xz) = 943100 diff --git a/sysutils/kdebugsettings/distinfo b/sysutils/kdebugsettings/distinfo index cd404bc28e47..23c1c6677110 100644 --- a/sysutils/kdebugsettings/distinfo +++ b/sysutils/kdebugsettings/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1677828157 -SHA256 (KDE/release-service/22.12.3/kdebugsettings-22.12.3.tar.xz) = 3bd6c77ea58cb547dabb94791c0d4e36cd22646947807579aabd5cca588d108a -SIZE (KDE/release-service/22.12.3/kdebugsettings-22.12.3.tar.xz) = 97008 +TIMESTAMP = 1681548288 +SHA256 (KDE/release-service/23.04.0/kdebugsettings-23.04.0.tar.xz) = fe151d8be7827b40a0ef81eeaab9ec1fc4244aaae90074b3b8098450a9c4cc6b +SIZE (KDE/release-service/23.04.0/kdebugsettings-23.04.0.tar.xz) = 97244 diff --git a/sysutils/kdf/distinfo b/sysutils/kdf/distinfo index 54010133fc45..f07851273f01 100644 --- a/sysutils/kdf/distinfo +++ b/sysutils/kdf/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1677828162 -SHA256 (KDE/release-service/22.12.3/kdf-22.12.3.tar.xz) = 40ec4aff9d3457c592e3e43e6afa6fd55ba5926770594b4fb2b81dfbaa98eb94 -SIZE (KDE/release-service/22.12.3/kdf-22.12.3.tar.xz) = 492592 +TIMESTAMP = 1681548286 +SHA256 (KDE/release-service/23.04.0/kdf-23.04.0.tar.xz) = ce6e468ba2b0da4061ae5f2d90a6719fc0557fe6b9caede72613f8616aeb7ab2 +SIZE (KDE/release-service/23.04.0/kdf-23.04.0.tar.xz) = 492000 diff --git a/sysutils/kdf/pkg-plist b/sysutils/kdf/pkg-plist index f4abb9327238..2287a7db6320 100644 --- a/sysutils/kdf/pkg-plist +++ b/sysutils/kdf/pkg-plist @@ -1,100 +1,99 @@ bin/kdf bin/kwikdisk lib/libkdfprivate.so.%%KDE_APPLICATIONS_VERSION_SHORT%% lib/libkdfprivate.so.%%KDE_APPLICATIONS_VERSION%% %%QT_PLUGINDIR%%/libkcm_kdf.so share/applications/org.kde.kdf.desktop share/applications/org.kde.kwikdisk.desktop share/icons/hicolor/128x128/apps/kdf.png share/icons/hicolor/128x128/apps/kwikdisk.png share/icons/hicolor/16x16/apps/kcmdf.png share/icons/hicolor/16x16/apps/kdf.png share/icons/hicolor/16x16/apps/kwikdisk.png share/icons/hicolor/22x22/apps/kcmdf.png share/icons/hicolor/22x22/apps/kdf.png share/icons/hicolor/22x22/apps/kwikdisk.png share/icons/hicolor/32x32/apps/kcmdf.png share/icons/hicolor/32x32/apps/kdf.png share/icons/hicolor/32x32/apps/kwikdisk.png share/icons/hicolor/48x48/apps/kdf.png share/icons/hicolor/48x48/apps/kwikdisk.png share/icons/hicolor/64x64/apps/kdf.png share/icons/hicolor/64x64/apps/kwikdisk.png -share/kservices5/kcmdf.desktop share/kxmlgui5/kdf/kdfui.rc share/locale/af/LC_MESSAGES/kdf.mo share/locale/ar/LC_MESSAGES/kdf.mo share/locale/be/LC_MESSAGES/kdf.mo share/locale/bg/LC_MESSAGES/kdf.mo share/locale/br/LC_MESSAGES/kdf.mo share/locale/bs/LC_MESSAGES/kdf.mo share/locale/ca/LC_MESSAGES/kdf.mo share/locale/ca@valencia/LC_MESSAGES/kdf.mo share/locale/cs/LC_MESSAGES/kdf.mo share/locale/cy/LC_MESSAGES/kdf.mo share/locale/da/LC_MESSAGES/kdf.mo share/locale/de/LC_MESSAGES/kdf.mo share/locale/el/LC_MESSAGES/kdf.mo share/locale/en_GB/LC_MESSAGES/kdf.mo share/locale/eo/LC_MESSAGES/kdf.mo share/locale/es/LC_MESSAGES/kdf.mo share/locale/et/LC_MESSAGES/kdf.mo share/locale/eu/LC_MESSAGES/kdf.mo share/locale/fa/LC_MESSAGES/kdf.mo share/locale/fi/LC_MESSAGES/kdf.mo share/locale/fr/LC_MESSAGES/kdf.mo share/locale/ga/LC_MESSAGES/kdf.mo share/locale/gl/LC_MESSAGES/kdf.mo share/locale/he/LC_MESSAGES/kdf.mo share/locale/hi/LC_MESSAGES/kdf.mo share/locale/hne/LC_MESSAGES/kdf.mo share/locale/hr/LC_MESSAGES/kdf.mo share/locale/hu/LC_MESSAGES/kdf.mo share/locale/ia/LC_MESSAGES/kdf.mo share/locale/id/LC_MESSAGES/kdf.mo share/locale/is/LC_MESSAGES/kdf.mo share/locale/it/LC_MESSAGES/kdf.mo share/locale/ja/LC_MESSAGES/kdf.mo share/locale/ka/LC_MESSAGES/kdf.mo share/locale/kk/LC_MESSAGES/kdf.mo share/locale/km/LC_MESSAGES/kdf.mo share/locale/ko/LC_MESSAGES/kdf.mo share/locale/lt/LC_MESSAGES/kdf.mo share/locale/lv/LC_MESSAGES/kdf.mo share/locale/mk/LC_MESSAGES/kdf.mo share/locale/mr/LC_MESSAGES/kdf.mo share/locale/ms/LC_MESSAGES/kdf.mo share/locale/nb/LC_MESSAGES/kdf.mo share/locale/nds/LC_MESSAGES/kdf.mo share/locale/ne/LC_MESSAGES/kdf.mo share/locale/nl/LC_MESSAGES/kdf.mo share/locale/nn/LC_MESSAGES/kdf.mo share/locale/oc/LC_MESSAGES/kdf.mo share/locale/pa/LC_MESSAGES/kdf.mo share/locale/pl/LC_MESSAGES/kdf.mo share/locale/pt/LC_MESSAGES/kdf.mo share/locale/pt_BR/LC_MESSAGES/kdf.mo share/locale/ro/LC_MESSAGES/kdf.mo share/locale/ru/LC_MESSAGES/kdf.mo share/locale/se/LC_MESSAGES/kdf.mo share/locale/sk/LC_MESSAGES/kdf.mo share/locale/sl/LC_MESSAGES/kdf.mo share/locale/sq/LC_MESSAGES/kdf.mo share/locale/sr/LC_MESSAGES/kdf.mo share/locale/sr@ijekavian/LC_MESSAGES/kdf.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kdf.mo share/locale/sr@latin/LC_MESSAGES/kdf.mo share/locale/sv/LC_MESSAGES/kdf.mo share/locale/ta/LC_MESSAGES/kdf.mo share/locale/tg/LC_MESSAGES/kdf.mo share/locale/th/LC_MESSAGES/kdf.mo share/locale/tr/LC_MESSAGES/kdf.mo share/locale/ug/LC_MESSAGES/kdf.mo share/locale/uk/LC_MESSAGES/kdf.mo share/locale/uz/LC_MESSAGES/kdf.mo share/locale/uz@cyrillic/LC_MESSAGES/kdf.mo share/locale/xh/LC_MESSAGES/kdf.mo share/locale/zh_CN/LC_MESSAGES/kdf.mo share/locale/zh_TW/LC_MESSAGES/kdf.mo share/metainfo/org.kde.kdf.appdata.xml share/qlogging-categories5/kdf.categories diff --git a/sysutils/kdialog/distinfo b/sysutils/kdialog/distinfo index ba0499447b44..29d2320154fa 100644 --- a/sysutils/kdialog/distinfo +++ b/sysutils/kdialog/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1677828170 -SHA256 (KDE/release-service/22.12.3/kdialog-22.12.3.tar.xz) = 438cca7190a8c3a0f8d143bdb7c916b24e26c99eab98c444240c4bdc00cbec2d -SIZE (KDE/release-service/22.12.3/kdialog-22.12.3.tar.xz) = 139792 +TIMESTAMP = 1681548285 +SHA256 (KDE/release-service/23.04.0/kdialog-23.04.0.tar.xz) = 4aa31abdb191504d123f293ef50e3058588679df4969e37d9c5ff121298436ae +SIZE (KDE/release-service/23.04.0/kdialog-23.04.0.tar.xz) = 141796 diff --git a/sysutils/kdialog/pkg-plist b/sysutils/kdialog/pkg-plist index fe437699f118..4b03e9c118fe 100644 --- a/sysutils/kdialog/pkg-plist +++ b/sysutils/kdialog/pkg-plist @@ -1,94 +1,95 @@ bin/kdialog bin/kdialog_progress_helper +share/applications/org.kde.kdialog.desktop share/dbus-1/interfaces/org.kde.kdialog.ProgressDialog.xml share/locale/af/LC_MESSAGES/kdialog.mo share/locale/ar/LC_MESSAGES/kdialog.mo share/locale/be/LC_MESSAGES/kdialog.mo share/locale/be@latin/LC_MESSAGES/kdialog.mo share/locale/bg/LC_MESSAGES/kdialog.mo share/locale/bn/LC_MESSAGES/kdialog.mo share/locale/bn_IN/LC_MESSAGES/kdialog.mo share/locale/br/LC_MESSAGES/kdialog.mo share/locale/bs/LC_MESSAGES/kdialog.mo share/locale/ca/LC_MESSAGES/kdialog.mo share/locale/ca@valencia/LC_MESSAGES/kdialog.mo share/locale/cs/LC_MESSAGES/kdialog.mo share/locale/csb/LC_MESSAGES/kdialog.mo share/locale/cy/LC_MESSAGES/kdialog.mo share/locale/da/LC_MESSAGES/kdialog.mo share/locale/de/LC_MESSAGES/kdialog.mo share/locale/el/LC_MESSAGES/kdialog.mo share/locale/en_GB/LC_MESSAGES/kdialog.mo share/locale/eo/LC_MESSAGES/kdialog.mo share/locale/es/LC_MESSAGES/kdialog.mo share/locale/et/LC_MESSAGES/kdialog.mo share/locale/eu/LC_MESSAGES/kdialog.mo share/locale/fa/LC_MESSAGES/kdialog.mo share/locale/fi/LC_MESSAGES/kdialog.mo share/locale/fr/LC_MESSAGES/kdialog.mo share/locale/fy/LC_MESSAGES/kdialog.mo share/locale/ga/LC_MESSAGES/kdialog.mo share/locale/gl/LC_MESSAGES/kdialog.mo share/locale/gu/LC_MESSAGES/kdialog.mo share/locale/he/LC_MESSAGES/kdialog.mo share/locale/hi/LC_MESSAGES/kdialog.mo share/locale/hne/LC_MESSAGES/kdialog.mo share/locale/hr/LC_MESSAGES/kdialog.mo share/locale/hsb/LC_MESSAGES/kdialog.mo share/locale/hu/LC_MESSAGES/kdialog.mo share/locale/ia/LC_MESSAGES/kdialog.mo share/locale/id/LC_MESSAGES/kdialog.mo share/locale/is/LC_MESSAGES/kdialog.mo share/locale/it/LC_MESSAGES/kdialog.mo share/locale/ja/LC_MESSAGES/kdialog.mo share/locale/ka/LC_MESSAGES/kdialog.mo share/locale/kk/LC_MESSAGES/kdialog.mo share/locale/km/LC_MESSAGES/kdialog.mo share/locale/kn/LC_MESSAGES/kdialog.mo share/locale/ko/LC_MESSAGES/kdialog.mo share/locale/ku/LC_MESSAGES/kdialog.mo share/locale/lt/LC_MESSAGES/kdialog.mo share/locale/lv/LC_MESSAGES/kdialog.mo share/locale/mai/LC_MESSAGES/kdialog.mo share/locale/mk/LC_MESSAGES/kdialog.mo share/locale/ml/LC_MESSAGES/kdialog.mo share/locale/mr/LC_MESSAGES/kdialog.mo share/locale/ms/LC_MESSAGES/kdialog.mo share/locale/nb/LC_MESSAGES/kdialog.mo share/locale/nds/LC_MESSAGES/kdialog.mo share/locale/ne/LC_MESSAGES/kdialog.mo share/locale/nl/LC_MESSAGES/kdialog.mo share/locale/nn/LC_MESSAGES/kdialog.mo share/locale/oc/LC_MESSAGES/kdialog.mo share/locale/or/LC_MESSAGES/kdialog.mo share/locale/pa/LC_MESSAGES/kdialog.mo share/locale/pl/LC_MESSAGES/kdialog.mo share/locale/pt/LC_MESSAGES/kdialog.mo share/locale/pt_BR/LC_MESSAGES/kdialog.mo share/locale/ro/LC_MESSAGES/kdialog.mo share/locale/ru/LC_MESSAGES/kdialog.mo share/locale/se/LC_MESSAGES/kdialog.mo share/locale/si/LC_MESSAGES/kdialog.mo share/locale/sk/LC_MESSAGES/kdialog.mo share/locale/sl/LC_MESSAGES/kdialog.mo share/locale/sq/LC_MESSAGES/kdialog.mo share/locale/sr/LC_MESSAGES/kdialog.mo share/locale/sr@ijekavian/LC_MESSAGES/kdialog.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kdialog.mo share/locale/sr@latin/LC_MESSAGES/kdialog.mo share/locale/sv/LC_MESSAGES/kdialog.mo share/locale/ta/LC_MESSAGES/kdialog.mo share/locale/te/LC_MESSAGES/kdialog.mo share/locale/tg/LC_MESSAGES/kdialog.mo share/locale/th/LC_MESSAGES/kdialog.mo share/locale/tr/LC_MESSAGES/kdialog.mo share/locale/ug/LC_MESSAGES/kdialog.mo share/locale/uk/LC_MESSAGES/kdialog.mo share/locale/uz/LC_MESSAGES/kdialog.mo share/locale/uz@cyrillic/LC_MESSAGES/kdialog.mo share/locale/vi/LC_MESSAGES/kdialog.mo share/locale/wa/LC_MESSAGES/kdialog.mo share/locale/xh/LC_MESSAGES/kdialog.mo share/locale/zh_CN/LC_MESSAGES/kdialog.mo share/locale/zh_TW/LC_MESSAGES/kdialog.mo share/metainfo/org.kde.kdialog.metainfo.xml diff --git a/sysutils/kfloppy/distinfo b/sysutils/kfloppy/distinfo index 83ed7f942cd4..20b7d071317a 100644 --- a/sysutils/kfloppy/distinfo +++ b/sysutils/kfloppy/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1677828160 -SHA256 (KDE/release-service/22.12.3/kfloppy-22.12.3.tar.xz) = 66096b8dfb4b9033cd3b9d1cdae0aff2fccea7649c35b8962ed281b295013585 -SIZE (KDE/release-service/22.12.3/kfloppy-22.12.3.tar.xz) = 241232 +TIMESTAMP = 1681548278 +SHA256 (KDE/release-service/23.04.0/kfloppy-23.04.0.tar.xz) = a9e94bfac18dc457b3d471f6e7d877038ef52125d5919434e83eb511381d5f66 +SIZE (KDE/release-service/23.04.0/kfloppy-23.04.0.tar.xz) = 245224 diff --git a/sysutils/khelpcenter/distinfo b/sysutils/khelpcenter/distinfo index 72bb4db77147..c0f8ea6b053d 100644 --- a/sysutils/khelpcenter/distinfo +++ b/sysutils/khelpcenter/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1677828156 -SHA256 (KDE/release-service/22.12.3/khelpcenter-22.12.3.tar.xz) = 1178eebf71202700d603a47dbdc0049889197c14dcf9edbc17379f92dbcd61eb -SIZE (KDE/release-service/22.12.3/khelpcenter-22.12.3.tar.xz) = 4366000 +TIMESTAMP = 1681548281 +SHA256 (KDE/release-service/23.04.0/khelpcenter-23.04.0.tar.xz) = b6e05d020278729bf8b45ce5ec5097c8a209508764c12bcfaa296508aa33b5bf +SIZE (KDE/release-service/23.04.0/khelpcenter-23.04.0.tar.xz) = 4369148 diff --git a/sysutils/kpmcore/distinfo b/sysutils/kpmcore/distinfo index bf8d3c0633cd..ab25839e6d46 100644 --- a/sysutils/kpmcore/distinfo +++ b/sysutils/kpmcore/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1677828161 -SHA256 (KDE/release-service/22.12.3/kpmcore-22.12.3.tar.xz) = 51539f399f9ed3e89538175c7e0d0b421ce94d90be3a0567f9132f89cfeabf1e -SIZE (KDE/release-service/22.12.3/kpmcore-22.12.3.tar.xz) = 618340 +TIMESTAMP = 1681548277 +SHA256 (KDE/release-service/23.04.0/kpmcore-23.04.0.tar.xz) = 0dc8615f6b86102a4e0d4dc6b5e07499ba4fb8a58bc738a9155ad80184c4716e +SIZE (KDE/release-service/23.04.0/kpmcore-23.04.0.tar.xz) = 622884 diff --git a/sysutils/kpmcore/pkg-plist b/sysutils/kpmcore/pkg-plist index 1fc6f91fe0c6..760020683b42 100644 --- a/sysutils/kpmcore/pkg-plist +++ b/sysutils/kpmcore/pkg-plist @@ -1,178 +1,179 @@ include/kpmcore/backend/corebackend.h include/kpmcore/backend/corebackendmanager.h include/kpmcore/core/device.h include/kpmcore/core/devicescanner.h include/kpmcore/core/diskdevice.h include/kpmcore/core/fstab.h include/kpmcore/core/lvmdevice.h include/kpmcore/core/operationrunner.h include/kpmcore/core/operationstack.h include/kpmcore/core/partition.h include/kpmcore/core/partitionalignment.h include/kpmcore/core/partitionnode.h include/kpmcore/core/partitionrole.h include/kpmcore/core/partitiontable.h include/kpmcore/core/smartattribute.h include/kpmcore/core/smartstatus.h include/kpmcore/core/softwareraid.h include/kpmcore/core/volumemanagerdevice.h include/kpmcore/fs/apfs.h include/kpmcore/fs/bitlocker.h include/kpmcore/fs/btrfs.h include/kpmcore/fs/exfat.h include/kpmcore/fs/ext2.h include/kpmcore/fs/ext3.h include/kpmcore/fs/ext4.h include/kpmcore/fs/extended.h include/kpmcore/fs/f2fs.h include/kpmcore/fs/fat12.h include/kpmcore/fs/fat16.h include/kpmcore/fs/fat32.h include/kpmcore/fs/filesystem.h include/kpmcore/fs/filesystemfactory.h include/kpmcore/fs/hfs.h include/kpmcore/fs/hfsplus.h include/kpmcore/fs/hpfs.h include/kpmcore/fs/iso9660.h include/kpmcore/fs/jfs.h include/kpmcore/fs/linuxraidmember.h include/kpmcore/fs/linuxswap.h include/kpmcore/fs/luks.h include/kpmcore/fs/luks2.h include/kpmcore/fs/lvm2_pv.h include/kpmcore/fs/minix.h include/kpmcore/fs/nilfs2.h include/kpmcore/fs/ntfs.h include/kpmcore/fs/ocfs2.h include/kpmcore/fs/reiser4.h include/kpmcore/fs/reiserfs.h include/kpmcore/fs/udf.h include/kpmcore/fs/ufs.h include/kpmcore/fs/unformatted.h include/kpmcore/fs/unknown.h include/kpmcore/fs/xfs.h include/kpmcore/fs/zfs.h include/kpmcore/gui/partresizerwidget.h include/kpmcore/gui/partwidget.h include/kpmcore/gui/partwidgetbase.h include/kpmcore/jobs/job.h include/kpmcore/ops/backupoperation.h include/kpmcore/ops/checkoperation.h include/kpmcore/ops/copyoperation.h include/kpmcore/ops/createfilesystemoperation.h include/kpmcore/ops/createpartitiontableoperation.h include/kpmcore/ops/createvolumegroupoperation.h include/kpmcore/ops/deactivatevolumegroupoperation.h include/kpmcore/ops/deleteoperation.h include/kpmcore/ops/newoperation.h include/kpmcore/ops/operation.h include/kpmcore/ops/removevolumegroupoperation.h include/kpmcore/ops/resizeoperation.h include/kpmcore/ops/resizevolumegroupoperation.h include/kpmcore/ops/restoreoperation.h include/kpmcore/ops/setfilesystemlabeloperation.h include/kpmcore/ops/setpartflagsoperation.h include/kpmcore/util/capacity.h include/kpmcore/util/externalcommand.h include/kpmcore/util/globallog.h include/kpmcore/util/helpers.h include/kpmcore/util/htmlreport.h include/kpmcore/util/libpartitionmanagerexport.h include/kpmcore/util/report.h lib/cmake/KPMcore/KPMcoreConfig.cmake lib/cmake/KPMcore/KPMcoreConfigVersion.cmake lib/cmake/KPMcore/KPMcoreTargets-%%CMAKE_BUILD_TYPE%%.cmake lib/cmake/KPMcore/KPMcoreTargets.cmake lib/libexec/kpmcore_externalcommand lib/libkpmcore.so lib/libkpmcore.so.12 lib/libkpmcore.so.%%KDE_APPLICATIONS_VERSION%% %%QT_PLUGINDIR%%/kpmcore/pmdummybackendplugin.so share/dbus-1/system-services/org.kde.kpmcore.helperinterface.service share/dbus-1/system.d/org.kde.kpmcore.helperinterface.conf share/locale/ar/LC_MESSAGES/kpmcore.mo share/locale/bg/LC_MESSAGES/kpmcore._policy_.mo share/locale/bg/LC_MESSAGES/kpmcore.mo share/locale/bs/LC_MESSAGES/kpmcore.mo share/locale/ca/LC_MESSAGES/kpmcore._policy_.mo share/locale/ca/LC_MESSAGES/kpmcore.mo share/locale/ca@valencia/LC_MESSAGES/kpmcore._policy_.mo share/locale/ca@valencia/LC_MESSAGES/kpmcore.mo share/locale/cs/LC_MESSAGES/kpmcore._policy_.mo share/locale/cs/LC_MESSAGES/kpmcore.mo share/locale/da/LC_MESSAGES/kpmcore._policy_.mo share/locale/da/LC_MESSAGES/kpmcore.mo share/locale/de/LC_MESSAGES/kpmcore._policy_.mo share/locale/de/LC_MESSAGES/kpmcore.mo share/locale/el/LC_MESSAGES/kpmcore._policy_.mo share/locale/el/LC_MESSAGES/kpmcore.mo share/locale/en_GB/LC_MESSAGES/kpmcore._policy_.mo share/locale/en_GB/LC_MESSAGES/kpmcore.mo +share/locale/eo/LC_MESSAGES/kpmcore._policy_.mo share/locale/eo/LC_MESSAGES/kpmcore.mo share/locale/es/LC_MESSAGES/kpmcore._policy_.mo share/locale/es/LC_MESSAGES/kpmcore.mo share/locale/et/LC_MESSAGES/kpmcore._policy_.mo share/locale/et/LC_MESSAGES/kpmcore.mo share/locale/eu/LC_MESSAGES/kpmcore._policy_.mo share/locale/eu/LC_MESSAGES/kpmcore.mo share/locale/fi/LC_MESSAGES/kpmcore._policy_.mo share/locale/fi/LC_MESSAGES/kpmcore.mo share/locale/fr/LC_MESSAGES/kpmcore._policy_.mo share/locale/fr/LC_MESSAGES/kpmcore.mo share/locale/ga/LC_MESSAGES/kpmcore.mo share/locale/gl/LC_MESSAGES/kpmcore._policy_.mo share/locale/gl/LC_MESSAGES/kpmcore.mo share/locale/hr/LC_MESSAGES/kpmcore.mo share/locale/hu/LC_MESSAGES/kpmcore._policy_.mo share/locale/hu/LC_MESSAGES/kpmcore.mo share/locale/id/LC_MESSAGES/kpmcore.mo share/locale/is/LC_MESSAGES/kpmcore.mo share/locale/it/LC_MESSAGES/kpmcore._policy_.mo share/locale/it/LC_MESSAGES/kpmcore.mo share/locale/ja/LC_MESSAGES/kpmcore._policy_.mo share/locale/ja/LC_MESSAGES/kpmcore.mo share/locale/ka/LC_MESSAGES/kpmcore._policy_.mo share/locale/ka/LC_MESSAGES/kpmcore.mo share/locale/ko/LC_MESSAGES/kpmcore._policy_.mo share/locale/ko/LC_MESSAGES/kpmcore.mo share/locale/lt/LC_MESSAGES/kpmcore._policy_.mo share/locale/lt/LC_MESSAGES/kpmcore.mo share/locale/lv/LC_MESSAGES/kpmcore.mo share/locale/mai/LC_MESSAGES/kpmcore.mo share/locale/mr/LC_MESSAGES/kpmcore.mo share/locale/nb/LC_MESSAGES/kpmcore.mo share/locale/nds/LC_MESSAGES/kpmcore.mo share/locale/nl/LC_MESSAGES/kpmcore._policy_.mo share/locale/nl/LC_MESSAGES/kpmcore.mo share/locale/nn/LC_MESSAGES/kpmcore.mo share/locale/pa/LC_MESSAGES/kpmcore.mo share/locale/pl/LC_MESSAGES/kpmcore._policy_.mo share/locale/pl/LC_MESSAGES/kpmcore.mo share/locale/pt/LC_MESSAGES/kpmcore._policy_.mo share/locale/pt/LC_MESSAGES/kpmcore.mo share/locale/pt_BR/LC_MESSAGES/kpmcore._policy_.mo share/locale/pt_BR/LC_MESSAGES/kpmcore.mo share/locale/ro/LC_MESSAGES/kpmcore.mo share/locale/ru/LC_MESSAGES/kpmcore._policy_.mo share/locale/ru/LC_MESSAGES/kpmcore.mo share/locale/sk/LC_MESSAGES/kpmcore._policy_.mo share/locale/sk/LC_MESSAGES/kpmcore.mo share/locale/sl/LC_MESSAGES/kpmcore._policy_.mo share/locale/sl/LC_MESSAGES/kpmcore.mo share/locale/sr/LC_MESSAGES/kpmcore.mo share/locale/sr@ijekavian/LC_MESSAGES/kpmcore.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kpmcore.mo share/locale/sr@latin/LC_MESSAGES/kpmcore.mo share/locale/sv/LC_MESSAGES/kpmcore._policy_.mo share/locale/sv/LC_MESSAGES/kpmcore.mo share/locale/th/LC_MESSAGES/kpmcore.mo share/locale/tr/LC_MESSAGES/kpmcore._policy_.mo share/locale/tr/LC_MESSAGES/kpmcore.mo share/locale/ug/LC_MESSAGES/kpmcore.mo share/locale/uk/LC_MESSAGES/kpmcore._policy_.mo share/locale/uk/LC_MESSAGES/kpmcore.mo share/locale/zh_CN/LC_MESSAGES/kpmcore._policy_.mo share/locale/zh_CN/LC_MESSAGES/kpmcore.mo share/locale/zh_TW/LC_MESSAGES/kpmcore._policy_.mo share/locale/zh_TW/LC_MESSAGES/kpmcore.mo share/polkit-1/actions/org.kde.kpmcore.externalcommand.policy diff --git a/sysutils/ksystemlog/distinfo b/sysutils/ksystemlog/distinfo index ae11d0ec0100..4bad420e2c62 100644 --- a/sysutils/ksystemlog/distinfo +++ b/sysutils/ksystemlog/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1677828154 -SHA256 (KDE/release-service/22.12.3/ksystemlog-22.12.3.tar.xz) = 05cc27504f3ece6d5d54b9c973632f61b949f9d99bd6e25b3fe2204ac62d8e5e -SIZE (KDE/release-service/22.12.3/ksystemlog-22.12.3.tar.xz) = 2002440 +TIMESTAMP = 1681548282 +SHA256 (KDE/release-service/23.04.0/ksystemlog-23.04.0.tar.xz) = 0cf79c529641a087c83a3f6249ec1b9a493c5a28d954478ca8ddd5c16e8e7f42 +SIZE (KDE/release-service/23.04.0/ksystemlog-23.04.0.tar.xz) = 2002708 diff --git a/sysutils/signon-kwallet-extension/distinfo b/sysutils/signon-kwallet-extension/distinfo index b5068687db48..87e6d246f229 100644 --- a/sysutils/signon-kwallet-extension/distinfo +++ b/sysutils/signon-kwallet-extension/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1677828152 -SHA256 (KDE/release-service/22.12.3/signon-kwallet-extension-22.12.3.tar.xz) = 959bef7cbaa7c44c7807b48e12890d4f37e03efa10ffa2c6b070508b90cddf29 -SIZE (KDE/release-service/22.12.3/signon-kwallet-extension-22.12.3.tar.xz) = 11184 +TIMESTAMP = 1681548280 +SHA256 (KDE/release-service/23.04.0/signon-kwallet-extension-23.04.0.tar.xz) = 07c9dbe4470d8cd4e1b81661138ea2adbcd5077ec99203445d27257ddb2de8fb +SIZE (KDE/release-service/23.04.0/signon-kwallet-extension-23.04.0.tar.xz) = 11228 diff --git a/sysutils/sweeper/distinfo b/sysutils/sweeper/distinfo index f38151917371..5f5048c48172 100644 --- a/sysutils/sweeper/distinfo +++ b/sysutils/sweeper/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1677828167 -SHA256 (KDE/release-service/22.12.3/sweeper-22.12.3.tar.xz) = 80b5946b9608fefc9978715d2df521f691624f9eb86430365a9ce7d87e172933 -SIZE (KDE/release-service/22.12.3/sweeper-22.12.3.tar.xz) = 397816 +TIMESTAMP = 1681548284 +SHA256 (KDE/release-service/23.04.0/sweeper-23.04.0.tar.xz) = 729b419e7b52faa28d83b6a4532533fea1122dc37eb829abdd92a8491e3aec7f +SIZE (KDE/release-service/23.04.0/sweeper-23.04.0.tar.xz) = 398904 diff --git a/textproc/kompare/distinfo b/textproc/kompare/distinfo index 7834ccb11133..2f1dcf202812 100644 --- a/textproc/kompare/distinfo +++ b/textproc/kompare/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1677828280 -SHA256 (KDE/release-service/22.12.3/kompare-22.12.3.tar.xz) = ba11df6366483447a83c61f939555b00b6e02dc922419b3fe8cd2cf3df36e72d -SIZE (KDE/release-service/22.12.3/kompare-22.12.3.tar.xz) = 979576 +TIMESTAMP = 1681548452 +SHA256 (KDE/release-service/23.04.0/kompare-23.04.0.tar.xz) = a4af41c00d495c5a71ce327bde6b413981324e39cf09feb3f0b6885908f65561 +SIZE (KDE/release-service/23.04.0/kompare-23.04.0.tar.xz) = 982696 diff --git a/textproc/libkomparediff2/distinfo b/textproc/libkomparediff2/distinfo index 3955c36e6678..634368bb50a8 100644 --- a/textproc/libkomparediff2/distinfo +++ b/textproc/libkomparediff2/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1677828278 -SHA256 (KDE/release-service/22.12.3/libkomparediff2-22.12.3.tar.xz) = 590edba5f92507c16a51be09e590905292165d7fa4d854f0d53353785611f6d4 -SIZE (KDE/release-service/22.12.3/libkomparediff2-22.12.3.tar.xz) = 186144 +TIMESTAMP = 1681548454 +SHA256 (KDE/release-service/23.04.0/libkomparediff2-23.04.0.tar.xz) = 305a54f663203f549bc5a3c0903a3cc5353b459a9278a39d26c4566268812115 +SIZE (KDE/release-service/23.04.0/libkomparediff2-23.04.0.tar.xz) = 186140 diff --git a/textproc/libkomparediff2/pkg-plist b/textproc/libkomparediff2/pkg-plist index 0e399c19e138..e0dd80b1b1c3 100644 --- a/textproc/libkomparediff2/pkg-plist +++ b/textproc/libkomparediff2/pkg-plist @@ -1,87 +1,88 @@ -include/libkomparediff2/diff2_export.h -include/libkomparediff2/difference.h -include/libkomparediff2/diffhunk.h -include/libkomparediff2/diffmodel.h -include/libkomparediff2/diffmodellist.h -include/libkomparediff2/diffsettings.h -include/libkomparediff2/kompare.h -include/libkomparediff2/komparemodellist.h -include/libkomparediff2/marker.h -include/libkomparediff2/settingsbase.h +include/KompareDiff2/komparediff2_version.h +include/KompareDiff2/libkomparediff2/diff2_export.h +include/KompareDiff2/libkomparediff2/difference.h +include/KompareDiff2/libkomparediff2/diffhunk.h +include/KompareDiff2/libkomparediff2/diffmodel.h +include/KompareDiff2/libkomparediff2/diffmodellist.h +include/KompareDiff2/libkomparediff2/diffsettings.h +include/KompareDiff2/libkomparediff2/kompare.h +include/KompareDiff2/libkomparediff2/komparemodellist.h +include/KompareDiff2/libkomparediff2/marker.h +include/KompareDiff2/libkomparediff2/settingsbase.h lib/cmake/LibKompareDiff2/LibKompareDiff2Config.cmake lib/cmake/LibKompareDiff2/LibKompareDiff2ConfigVersion.cmake lib/cmake/LibKompareDiff2/LibKompareDiff2Targets-%%CMAKE_BUILD_TYPE%%.cmake lib/cmake/LibKompareDiff2/LibKompareDiff2Targets.cmake lib/libkomparediff2.so lib/libkomparediff2.so.5 -lib/libkomparediff2.so.5.2 +lib/libkomparediff2.so.5.3 share/locale/af/LC_MESSAGES/libkomparediff2.mo share/locale/ar/LC_MESSAGES/libkomparediff2.mo share/locale/be/LC_MESSAGES/libkomparediff2.mo share/locale/bg/LC_MESSAGES/libkomparediff2.mo share/locale/br/LC_MESSAGES/libkomparediff2.mo share/locale/bs/LC_MESSAGES/libkomparediff2.mo share/locale/ca/LC_MESSAGES/libkomparediff2.mo share/locale/ca@valencia/LC_MESSAGES/libkomparediff2.mo share/locale/cs/LC_MESSAGES/libkomparediff2.mo share/locale/cy/LC_MESSAGES/libkomparediff2.mo share/locale/da/LC_MESSAGES/libkomparediff2.mo share/locale/de/LC_MESSAGES/libkomparediff2.mo share/locale/el/LC_MESSAGES/libkomparediff2.mo share/locale/en_GB/LC_MESSAGES/libkomparediff2.mo share/locale/eo/LC_MESSAGES/libkomparediff2.mo share/locale/es/LC_MESSAGES/libkomparediff2.mo share/locale/et/LC_MESSAGES/libkomparediff2.mo share/locale/eu/LC_MESSAGES/libkomparediff2.mo share/locale/fa/LC_MESSAGES/libkomparediff2.mo share/locale/fi/LC_MESSAGES/libkomparediff2.mo share/locale/fr/LC_MESSAGES/libkomparediff2.mo share/locale/ga/LC_MESSAGES/libkomparediff2.mo share/locale/gl/LC_MESSAGES/libkomparediff2.mo share/locale/hi/LC_MESSAGES/libkomparediff2.mo share/locale/hne/LC_MESSAGES/libkomparediff2.mo share/locale/hr/LC_MESSAGES/libkomparediff2.mo share/locale/hu/LC_MESSAGES/libkomparediff2.mo share/locale/is/LC_MESSAGES/libkomparediff2.mo share/locale/it/LC_MESSAGES/libkomparediff2.mo share/locale/ja/LC_MESSAGES/libkomparediff2.mo share/locale/ka/LC_MESSAGES/libkomparediff2.mo share/locale/kk/LC_MESSAGES/libkomparediff2.mo share/locale/km/LC_MESSAGES/libkomparediff2.mo share/locale/ko/LC_MESSAGES/libkomparediff2.mo share/locale/lt/LC_MESSAGES/libkomparediff2.mo share/locale/lv/LC_MESSAGES/libkomparediff2.mo share/locale/mai/LC_MESSAGES/libkomparediff2.mo share/locale/mk/LC_MESSAGES/libkomparediff2.mo share/locale/mr/LC_MESSAGES/libkomparediff2.mo share/locale/ms/LC_MESSAGES/libkomparediff2.mo share/locale/nb/LC_MESSAGES/libkomparediff2.mo share/locale/nds/LC_MESSAGES/libkomparediff2.mo share/locale/ne/LC_MESSAGES/libkomparediff2.mo share/locale/nl/LC_MESSAGES/libkomparediff2.mo share/locale/nn/LC_MESSAGES/libkomparediff2.mo share/locale/oc/LC_MESSAGES/libkomparediff2.mo share/locale/pa/LC_MESSAGES/libkomparediff2.mo share/locale/pl/LC_MESSAGES/libkomparediff2.mo share/locale/pt/LC_MESSAGES/libkomparediff2.mo share/locale/pt_BR/LC_MESSAGES/libkomparediff2.mo share/locale/ro/LC_MESSAGES/libkomparediff2.mo share/locale/ru/LC_MESSAGES/libkomparediff2.mo share/locale/se/LC_MESSAGES/libkomparediff2.mo share/locale/sk/LC_MESSAGES/libkomparediff2.mo share/locale/sl/LC_MESSAGES/libkomparediff2.mo share/locale/sq/LC_MESSAGES/libkomparediff2.mo share/locale/sr/LC_MESSAGES/libkomparediff2.mo share/locale/sr@ijekavian/LC_MESSAGES/libkomparediff2.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/libkomparediff2.mo share/locale/sr@latin/LC_MESSAGES/libkomparediff2.mo share/locale/sv/LC_MESSAGES/libkomparediff2.mo share/locale/ta/LC_MESSAGES/libkomparediff2.mo share/locale/tg/LC_MESSAGES/libkomparediff2.mo share/locale/tr/LC_MESSAGES/libkomparediff2.mo share/locale/ug/LC_MESSAGES/libkomparediff2.mo share/locale/uk/LC_MESSAGES/libkomparediff2.mo share/locale/xh/LC_MESSAGES/libkomparediff2.mo share/locale/zh_CN/LC_MESSAGES/libkomparediff2.mo share/locale/zh_TW/LC_MESSAGES/libkomparediff2.mo share/qlogging-categories5/libkomparediff2.categories diff --git a/textproc/markdownpart/distinfo b/textproc/markdownpart/distinfo index 967d823d444d..febe5f9b2527 100644 --- a/textproc/markdownpart/distinfo +++ b/textproc/markdownpart/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1677828277 -SHA256 (KDE/release-service/22.12.3/markdownpart-22.12.3.tar.xz) = 49a22386da91f34047c1ce153952118fa6304330b58ea3d5ebaf5e634c7dffcb -SIZE (KDE/release-service/22.12.3/markdownpart-22.12.3.tar.xz) = 30796 +TIMESTAMP = 1681548455 +SHA256 (KDE/release-service/23.04.0/markdownpart-23.04.0.tar.xz) = db40f4e6b2aa69fca3560c72aed7a5adbcab07ceeca4382f7fd62156b19d5bc0 +SIZE (KDE/release-service/23.04.0/markdownpart-23.04.0.tar.xz) = 30892 diff --git a/textproc/markdownpart/pkg-plist b/textproc/markdownpart/pkg-plist index c73dc9e20cc8..475a0079158d 100644 --- a/textproc/markdownpart/pkg-plist +++ b/textproc/markdownpart/pkg-plist @@ -1,37 +1,35 @@ %%QT_PLUGINDIR%%/kf5/parts/markdownpart.so -share/kservices5/markdownpart.desktop share/locale/ar/LC_MESSAGES/markdownpart.mo share/locale/ca/LC_MESSAGES/markdownpart.mo share/locale/ca@valencia/LC_MESSAGES/markdownpart.mo share/locale/cs/LC_MESSAGES/markdownpart.mo share/locale/de/LC_MESSAGES/markdownpart.mo share/locale/el/LC_MESSAGES/markdownpart.mo share/locale/en_GB/LC_MESSAGES/markdownpart.mo share/locale/es/LC_MESSAGES/markdownpart.mo share/locale/et/LC_MESSAGES/markdownpart.mo share/locale/eu/LC_MESSAGES/markdownpart.mo share/locale/fi/LC_MESSAGES/markdownpart.mo share/locale/fr/LC_MESSAGES/markdownpart.mo share/locale/hi/LC_MESSAGES/markdownpart.mo -share/locale/is/LC_MESSAGES/markdownpart.mo share/locale/it/LC_MESSAGES/markdownpart.mo share/locale/ja/LC_MESSAGES/markdownpart.mo share/locale/ka/LC_MESSAGES/markdownpart.mo share/locale/ko/LC_MESSAGES/markdownpart.mo share/locale/lt/LC_MESSAGES/markdownpart.mo share/locale/nl/LC_MESSAGES/markdownpart.mo share/locale/nn/LC_MESSAGES/markdownpart.mo share/locale/pl/LC_MESSAGES/markdownpart.mo share/locale/pt/LC_MESSAGES/markdownpart.mo share/locale/pt_BR/LC_MESSAGES/markdownpart.mo share/locale/ro/LC_MESSAGES/markdownpart.mo share/locale/ru/LC_MESSAGES/markdownpart.mo share/locale/sk/LC_MESSAGES/markdownpart.mo share/locale/sl/LC_MESSAGES/markdownpart.mo share/locale/sv/LC_MESSAGES/markdownpart.mo share/locale/tr/LC_MESSAGES/markdownpart.mo share/locale/uk/LC_MESSAGES/markdownpart.mo share/locale/vi/LC_MESSAGES/markdownpart.mo share/locale/zh_CN/LC_MESSAGES/markdownpart.mo share/locale/zh_TW/LC_MESSAGES/markdownpart.mo share/metainfo/org.kde.markdownpart.metainfo.xml diff --git a/www/falkon/distinfo b/www/falkon/distinfo index ec20983090e5..ec745158650a 100644 --- a/www/falkon/distinfo +++ b/www/falkon/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1677828280 -SHA256 (KDE/release-service/22.12.3/falkon-22.12.3.tar.xz) = 8ec1a277d35455b570b5b62b66136ac03a36a239a98a0eebaf31fea1b1712c20 -SIZE (KDE/release-service/22.12.3/falkon-22.12.3.tar.xz) = 2547936 +TIMESTAMP = 1681548297 +SHA256 (KDE/release-service/23.04.0/falkon-23.04.0.tar.xz) = 9f1924bde8e3008ba7f0ad6f2f9cd7698903ec4ffceebb369eae7091f7c01274 +SIZE (KDE/release-service/23.04.0/falkon-23.04.0.tar.xz) = 2552556 diff --git a/www/falkon/pkg-plist b/www/falkon/pkg-plist index e71cacfc7b01..6b39abccce59 100644 --- a/www/falkon/pkg-plist +++ b/www/falkon/pkg-plist @@ -1,825 +1,828 @@ bin/falkon lib/libFalkonPrivate.so.%%KDE_APPLICATIONS_VERSION%% lib/libFalkonPrivate.so.3 %%QT_PLUGINDIR%%/falkon/AutoScroll.so %%QT_PLUGINDIR%%/falkon/FlashCookieManager.so %%GNOMEKEYRING%%%%QT_PLUGINDIR%%/falkon/GnomeKeyringPasswords.so %%QT_PLUGINDIR%%/falkon/GreaseMonkey.so %%KDEINTEGRATION%%%%QT_PLUGINDIR%%/falkon/KDEFrameworksIntegration.so %%QT_PLUGINDIR%%/falkon/MouseGestures.so %%QT_PLUGINDIR%%/falkon/PIM.so %%QT_PLUGINDIR%%/falkon/StatusBarIcons.so %%QT_PLUGINDIR%%/falkon/TabManager.so %%QT_PLUGINDIR%%/falkon/VerticalTabs.so share/applications/org.kde.falkon.desktop share/bash-completion/completions/falkon %%DATADIR%%/themes/chrome/images/gotoaddress.png %%DATADIR%%/themes/chrome/images/key.png %%DATADIR%%/themes/chrome/images/library-bg.png %%DATADIR%%/themes/chrome/images/lineedit-bg.png %%DATADIR%%/themes/chrome/images/navigation-addtab.png %%DATADIR%%/themes/chrome/images/navigation-back.png %%DATADIR%%/themes/chrome/images/navigation-downloads.png %%DATADIR%%/themes/chrome/images/navigation-dropdown.png %%DATADIR%%/themes/chrome/images/navigation-exit-fullscreen.png %%DATADIR%%/themes/chrome/images/navigation-forward.png %%DATADIR%%/themes/chrome/images/navigation-home.png %%DATADIR%%/themes/chrome/images/navigation-reload.png %%DATADIR%%/themes/chrome/images/navigation-stop.png %%DATADIR%%/themes/chrome/images/navigation-supermenu.png %%DATADIR%%/themes/chrome/images/navigation-tools-rtl.png %%DATADIR%%/themes/chrome/images/navigation-tools.png %%DATADIR%%/themes/chrome/images/search-icon.png %%DATADIR%%/themes/chrome/images/searchbar-provider-bg.png %%DATADIR%%/themes/chrome/images/semi-transp.png %%DATADIR%%/themes/chrome/images/siteicon-bg.png %%DATADIR%%/themes/chrome/images/siteicon-secure-bg.png %%DATADIR%%/themes/chrome/images/star-a.png %%DATADIR%%/themes/chrome/images/star.png %%DATADIR%%/themes/chrome/images/tab-left-arrow.png %%DATADIR%%/themes/chrome/images/tab-right-arrow.png %%DATADIR%%/themes/chrome/images/tabbar-addtab.png %%DATADIR%%/themes/chrome/images/tabs-bg.png %%DATADIR%%/themes/chrome/images/tabs-closed-button.png %%DATADIR%%/themes/chrome/images/tabs-list-button.png %%DATADIR%%/themes/chrome/images/toolbar-bg.png %%DATADIR%%/themes/chrome/images/toolbutton-a.png %%DATADIR%%/themes/chrome/images/toolbutton-h.png %%DATADIR%%/themes/chrome/images/toolbutton.png %%DATADIR%%/themes/chrome/license.txt %%DATADIR%%/themes/chrome/linux.css %%DATADIR%%/themes/chrome/main.css %%DATADIR%%/themes/chrome/metadata.desktop %%DATADIR%%/themes/chrome/rtl.css %%DATADIR%%/themes/chrome/theme.png %%DATADIR%%/themes/chrome/windows.css %%DATADIR%%/themes/linux/images/arrow-down.svg %%DATADIR%%/themes/linux/images/exit-fullscreen.svg %%DATADIR%%/themes/linux/images/goto.svg %%DATADIR%%/themes/linux/images/library-bg.png %%DATADIR%%/themes/linux/images/menu.svg %%DATADIR%%/themes/linux/images/semi-transp.png %%DATADIR%%/themes/linux/images/star-a.svg %%DATADIR%%/themes/linux/images/star.svg %%DATADIR%%/themes/linux/images/tab-left-arrow.svg %%DATADIR%%/themes/linux/images/tab-right-arrow.svg %%DATADIR%%/themes/linux/images/tools-rtl.svg %%DATADIR%%/themes/linux/images/tools.svg %%DATADIR%%/themes/linux/images/transp.png %%DATADIR%%/themes/linux/images/user.svg %%DATADIR%%/themes/linux/main.css %%DATADIR%%/themes/linux/metadata.desktop %%DATADIR%%/themes/linux/rtl.css %%DATADIR%%/themes/linux/theme.png %%DATADIR%%/themes/mac/images/gotoaddress.png %%DATADIR%%/themes/mac/images/key.png %%DATADIR%%/themes/mac/images/library-bg.png %%DATADIR%%/themes/mac/images/lineedit-bg.png %%DATADIR%%/themes/mac/images/navigation-addtab.png %%DATADIR%%/themes/mac/images/navigation-back.png %%DATADIR%%/themes/mac/images/navigation-downloads.png %%DATADIR%%/themes/mac/images/navigation-dropdown.png %%DATADIR%%/themes/mac/images/navigation-exit-fullscreen.png %%DATADIR%%/themes/mac/images/navigation-forward.png %%DATADIR%%/themes/mac/images/navigation-home.png %%DATADIR%%/themes/mac/images/navigation-reload.png %%DATADIR%%/themes/mac/images/navigation-stop.png %%DATADIR%%/themes/mac/images/navigation-supermenu.png %%DATADIR%%/themes/mac/images/navigation-tools-rtl.png %%DATADIR%%/themes/mac/images/navigation-tools.png %%DATADIR%%/themes/mac/images/search-icon.png %%DATADIR%%/themes/mac/images/searchbar-provider-bg.png %%DATADIR%%/themes/mac/images/semi-transp.png %%DATADIR%%/themes/mac/images/siteicon-bg.png %%DATADIR%%/themes/mac/images/siteicon-secure-bg.png %%DATADIR%%/themes/mac/images/splitter.png %%DATADIR%%/themes/mac/images/star-a.png %%DATADIR%%/themes/mac/images/star.png %%DATADIR%%/themes/mac/images/tab-left-arrow.png %%DATADIR%%/themes/mac/images/tab-right-arrow.png %%DATADIR%%/themes/mac/images/tabbar-addtab.png %%DATADIR%%/themes/mac/images/tabs-bg.png %%DATADIR%%/themes/mac/images/tabs-closed-button-rtl.png %%DATADIR%%/themes/mac/images/tabs-closed-button.png %%DATADIR%%/themes/mac/images/tabs-list-button.png %%DATADIR%%/themes/mac/images/tabs-list-button_rtl.png %%DATADIR%%/themes/mac/images/toolbar-bg.png %%DATADIR%%/themes/mac/images/toolbutton-a.png %%DATADIR%%/themes/mac/images/toolbutton-h.png %%DATADIR%%/themes/mac/images/toolbutton.png %%DATADIR%%/themes/mac/images/transp.png %%DATADIR%%/themes/mac/license.txt %%DATADIR%%/themes/mac/linux.css %%DATADIR%%/themes/mac/main.css %%DATADIR%%/themes/mac/metadata.desktop %%DATADIR%%/themes/mac/rtl.css %%DATADIR%%/themes/mac/theme.png %%DATADIR%%/themes/mac/windows.css %%DATADIR%%/themes/windows/images/exit-fullscreen.svg %%DATADIR%%/themes/windows/images/goto.svg %%DATADIR%%/themes/windows/images/library-bg.png %%DATADIR%%/themes/windows/images/menu.svg %%DATADIR%%/themes/windows/images/semi-transp.png %%DATADIR%%/themes/windows/images/star-a.svg %%DATADIR%%/themes/windows/images/star.svg %%DATADIR%%/themes/windows/images/tab-close-a.svg %%DATADIR%%/themes/windows/images/tab-close-h.svg %%DATADIR%%/themes/windows/images/tab-close.svg %%DATADIR%%/themes/windows/images/tab-left-arrow.svg %%DATADIR%%/themes/windows/images/tab-right-arrow.svg %%DATADIR%%/themes/windows/images/tools-rtl.svg %%DATADIR%%/themes/windows/images/tools.svg %%DATADIR%%/themes/windows/images/transp.png %%DATADIR%%/themes/windows/images/user.svg %%DATADIR%%/themes/windows/main.css %%DATADIR%%/themes/windows/metadata.desktop %%DATADIR%%/themes/windows/rtl.css %%DATADIR%%/themes/windows/theme.png share/icons/hicolor/128x128/apps/falkon.png share/icons/hicolor/16x16/apps/falkon.png share/icons/hicolor/256x256/apps/falkon.png share/icons/hicolor/32x32/apps/falkon.png share/icons/hicolor/48x48/apps/falkon.png share/icons/hicolor/64x64/apps/falkon.png share/icons/hicolor/scalable/apps/falkon.svg share/locale/ar/LC_MESSAGES/falkon_autoscroll_qt.qm share/locale/ar/LC_MESSAGES/falkon_flashcookiemanager_qt.qm share/locale/ar/LC_MESSAGES/falkon_gnomekeyringpasswords_qt.qm share/locale/ar/LC_MESSAGES/falkon_greasemonkey_qt.qm share/locale/ar/LC_MESSAGES/falkon_hellopython.mo +share/locale/ar/LC_MESSAGES/falkon_helloqml.mo share/locale/ar/LC_MESSAGES/falkon_kdeframeworksintegration_qt.qm +share/locale/ar/LC_MESSAGES/falkon_middleclickloader.mo share/locale/ar/LC_MESSAGES/falkon_mousegestures_qt.qm share/locale/ar/LC_MESSAGES/falkon_pim_qt.qm share/locale/ar/LC_MESSAGES/falkon_qt.qm share/locale/ar/LC_MESSAGES/falkon_runaction.mo share/locale/ar/LC_MESSAGES/falkon_statusbaricons_qt.qm share/locale/ar/LC_MESSAGES/falkon_tabmanager_qt.qm share/locale/ar/LC_MESSAGES/falkon_testplugin_qt.qm share/locale/ar/LC_MESSAGES/falkon_verticaltabs_qt.qm share/locale/az/LC_MESSAGES/falkon_autoscroll_qt.qm share/locale/az/LC_MESSAGES/falkon_flashcookiemanager_qt.qm share/locale/az/LC_MESSAGES/falkon_gnomekeyringpasswords_qt.qm share/locale/az/LC_MESSAGES/falkon_greasemonkey_qt.qm share/locale/az/LC_MESSAGES/falkon_hellopython.mo share/locale/az/LC_MESSAGES/falkon_helloqml.mo share/locale/az/LC_MESSAGES/falkon_kdeframeworksintegration_qt.qm share/locale/az/LC_MESSAGES/falkon_middleclickloader.mo share/locale/az/LC_MESSAGES/falkon_mousegestures_qt.qm share/locale/az/LC_MESSAGES/falkon_pim_qt.qm share/locale/az/LC_MESSAGES/falkon_qt.qm share/locale/az/LC_MESSAGES/falkon_runaction.mo share/locale/az/LC_MESSAGES/falkon_statusbaricons_qt.qm share/locale/az/LC_MESSAGES/falkon_tabmanager_qt.qm share/locale/az/LC_MESSAGES/falkon_testplugin_qt.qm share/locale/az/LC_MESSAGES/falkon_verticaltabs_qt.qm share/locale/bg/LC_MESSAGES/falkon_autoscroll_qt.qm share/locale/bg/LC_MESSAGES/falkon_flashcookiemanager_qt.qm share/locale/bg/LC_MESSAGES/falkon_gnomekeyringpasswords_qt.qm share/locale/bg/LC_MESSAGES/falkon_greasemonkey_qt.qm share/locale/bg/LC_MESSAGES/falkon_hellopython.mo share/locale/bg/LC_MESSAGES/falkon_helloqml.mo share/locale/bg/LC_MESSAGES/falkon_kdeframeworksintegration_qt.qm share/locale/bg/LC_MESSAGES/falkon_middleclickloader.mo share/locale/bg/LC_MESSAGES/falkon_mousegestures_qt.qm share/locale/bg/LC_MESSAGES/falkon_pim_qt.qm share/locale/bg/LC_MESSAGES/falkon_qt.qm share/locale/bg/LC_MESSAGES/falkon_runaction.mo share/locale/bg/LC_MESSAGES/falkon_statusbaricons_qt.qm share/locale/bg/LC_MESSAGES/falkon_tabmanager_qt.qm share/locale/bg/LC_MESSAGES/falkon_testplugin_qt.qm share/locale/bg/LC_MESSAGES/falkon_verticaltabs_qt.qm share/locale/ca/LC_MESSAGES/falkon_autoscroll_qt.qm share/locale/ca/LC_MESSAGES/falkon_flashcookiemanager_qt.qm share/locale/ca/LC_MESSAGES/falkon_gnomekeyringpasswords_qt.qm share/locale/ca/LC_MESSAGES/falkon_greasemonkey_qt.qm share/locale/ca/LC_MESSAGES/falkon_hellopython.mo share/locale/ca/LC_MESSAGES/falkon_helloqml.mo share/locale/ca/LC_MESSAGES/falkon_kdeframeworksintegration_qt.qm share/locale/ca/LC_MESSAGES/falkon_middleclickloader.mo share/locale/ca/LC_MESSAGES/falkon_mousegestures_qt.qm share/locale/ca/LC_MESSAGES/falkon_pim_qt.qm share/locale/ca/LC_MESSAGES/falkon_qt.qm share/locale/ca/LC_MESSAGES/falkon_runaction.mo share/locale/ca/LC_MESSAGES/falkon_statusbaricons_qt.qm share/locale/ca/LC_MESSAGES/falkon_tabmanager_qt.qm share/locale/ca/LC_MESSAGES/falkon_testplugin_qt.qm share/locale/ca/LC_MESSAGES/falkon_verticaltabs_qt.qm share/locale/ca@valencia/LC_MESSAGES/falkon_autoscroll_qt.qm share/locale/ca@valencia/LC_MESSAGES/falkon_flashcookiemanager_qt.qm share/locale/ca@valencia/LC_MESSAGES/falkon_gnomekeyringpasswords_qt.qm share/locale/ca@valencia/LC_MESSAGES/falkon_greasemonkey_qt.qm share/locale/ca@valencia/LC_MESSAGES/falkon_hellopython.mo share/locale/ca@valencia/LC_MESSAGES/falkon_helloqml.mo share/locale/ca@valencia/LC_MESSAGES/falkon_kdeframeworksintegration_qt.qm share/locale/ca@valencia/LC_MESSAGES/falkon_middleclickloader.mo share/locale/ca@valencia/LC_MESSAGES/falkon_mousegestures_qt.qm share/locale/ca@valencia/LC_MESSAGES/falkon_pim_qt.qm share/locale/ca@valencia/LC_MESSAGES/falkon_qt.qm share/locale/ca@valencia/LC_MESSAGES/falkon_runaction.mo share/locale/ca@valencia/LC_MESSAGES/falkon_statusbaricons_qt.qm share/locale/ca@valencia/LC_MESSAGES/falkon_tabmanager_qt.qm share/locale/ca@valencia/LC_MESSAGES/falkon_testplugin_qt.qm share/locale/ca@valencia/LC_MESSAGES/falkon_verticaltabs_qt.qm share/locale/cs/LC_MESSAGES/falkon_autoscroll_qt.qm share/locale/cs/LC_MESSAGES/falkon_flashcookiemanager_qt.qm share/locale/cs/LC_MESSAGES/falkon_gnomekeyringpasswords_qt.qm share/locale/cs/LC_MESSAGES/falkon_greasemonkey_qt.qm share/locale/cs/LC_MESSAGES/falkon_hellopython.mo share/locale/cs/LC_MESSAGES/falkon_helloqml.mo share/locale/cs/LC_MESSAGES/falkon_kdeframeworksintegration_qt.qm share/locale/cs/LC_MESSAGES/falkon_middleclickloader.mo share/locale/cs/LC_MESSAGES/falkon_mousegestures_qt.qm share/locale/cs/LC_MESSAGES/falkon_pim_qt.qm share/locale/cs/LC_MESSAGES/falkon_qt.qm share/locale/cs/LC_MESSAGES/falkon_runaction.mo share/locale/cs/LC_MESSAGES/falkon_statusbaricons_qt.qm share/locale/cs/LC_MESSAGES/falkon_tabmanager_qt.qm share/locale/cs/LC_MESSAGES/falkon_testplugin_qt.qm share/locale/cs/LC_MESSAGES/falkon_verticaltabs_qt.qm share/locale/da/LC_MESSAGES/falkon_autoscroll_qt.qm share/locale/da/LC_MESSAGES/falkon_flashcookiemanager_qt.qm share/locale/da/LC_MESSAGES/falkon_greasemonkey_qt.qm share/locale/da/LC_MESSAGES/falkon_hellopython.mo share/locale/da/LC_MESSAGES/falkon_helloqml.mo share/locale/da/LC_MESSAGES/falkon_kdeframeworksintegration_qt.qm share/locale/da/LC_MESSAGES/falkon_middleclickloader.mo share/locale/da/LC_MESSAGES/falkon_mousegestures_qt.qm share/locale/da/LC_MESSAGES/falkon_pim_qt.qm share/locale/da/LC_MESSAGES/falkon_qt.qm share/locale/da/LC_MESSAGES/falkon_runaction.mo share/locale/da/LC_MESSAGES/falkon_statusbaricons_qt.qm share/locale/da/LC_MESSAGES/falkon_tabmanager_qt.qm share/locale/da/LC_MESSAGES/falkon_testplugin_qt.qm share/locale/da/LC_MESSAGES/falkon_verticaltabs_qt.qm share/locale/de/LC_MESSAGES/falkon_autoscroll_qt.qm share/locale/de/LC_MESSAGES/falkon_flashcookiemanager_qt.qm share/locale/de/LC_MESSAGES/falkon_gnomekeyringpasswords_qt.qm share/locale/de/LC_MESSAGES/falkon_greasemonkey_qt.qm share/locale/de/LC_MESSAGES/falkon_hellopython.mo share/locale/de/LC_MESSAGES/falkon_helloqml.mo share/locale/de/LC_MESSAGES/falkon_kdeframeworksintegration_qt.qm share/locale/de/LC_MESSAGES/falkon_middleclickloader.mo share/locale/de/LC_MESSAGES/falkon_mousegestures_qt.qm share/locale/de/LC_MESSAGES/falkon_pim_qt.qm share/locale/de/LC_MESSAGES/falkon_qt.qm share/locale/de/LC_MESSAGES/falkon_runaction.mo share/locale/de/LC_MESSAGES/falkon_statusbaricons_qt.qm share/locale/de/LC_MESSAGES/falkon_tabmanager_qt.qm share/locale/de/LC_MESSAGES/falkon_testplugin_qt.qm share/locale/de/LC_MESSAGES/falkon_verticaltabs_qt.qm share/locale/el/LC_MESSAGES/falkon_autoscroll_qt.qm share/locale/el/LC_MESSAGES/falkon_flashcookiemanager_qt.qm share/locale/el/LC_MESSAGES/falkon_gnomekeyringpasswords_qt.qm share/locale/el/LC_MESSAGES/falkon_greasemonkey_qt.qm share/locale/el/LC_MESSAGES/falkon_hellopython.mo share/locale/el/LC_MESSAGES/falkon_helloqml.mo share/locale/el/LC_MESSAGES/falkon_kdeframeworksintegration_qt.qm share/locale/el/LC_MESSAGES/falkon_middleclickloader.mo share/locale/el/LC_MESSAGES/falkon_mousegestures_qt.qm share/locale/el/LC_MESSAGES/falkon_pim_qt.qm share/locale/el/LC_MESSAGES/falkon_qt.qm share/locale/el/LC_MESSAGES/falkon_runaction.mo share/locale/el/LC_MESSAGES/falkon_statusbaricons_qt.qm share/locale/el/LC_MESSAGES/falkon_tabmanager_qt.qm share/locale/el/LC_MESSAGES/falkon_testplugin_qt.qm share/locale/el/LC_MESSAGES/falkon_verticaltabs_qt.qm share/locale/en/LC_MESSAGES/falkon_qt.qm share/locale/en_GB/LC_MESSAGES/falkon_autoscroll_qt.qm share/locale/en_GB/LC_MESSAGES/falkon_flashcookiemanager_qt.qm share/locale/en_GB/LC_MESSAGES/falkon_gnomekeyringpasswords_qt.qm share/locale/en_GB/LC_MESSAGES/falkon_greasemonkey_qt.qm share/locale/en_GB/LC_MESSAGES/falkon_hellopython.mo share/locale/en_GB/LC_MESSAGES/falkon_helloqml.mo share/locale/en_GB/LC_MESSAGES/falkon_kdeframeworksintegration_qt.qm share/locale/en_GB/LC_MESSAGES/falkon_middleclickloader.mo share/locale/en_GB/LC_MESSAGES/falkon_mousegestures_qt.qm share/locale/en_GB/LC_MESSAGES/falkon_pim_qt.qm share/locale/en_GB/LC_MESSAGES/falkon_qt.qm share/locale/en_GB/LC_MESSAGES/falkon_runaction.mo share/locale/en_GB/LC_MESSAGES/falkon_statusbaricons_qt.qm share/locale/en_GB/LC_MESSAGES/falkon_tabmanager_qt.qm share/locale/en_GB/LC_MESSAGES/falkon_testplugin_qt.qm share/locale/en_GB/LC_MESSAGES/falkon_verticaltabs_qt.qm share/locale/es/LC_MESSAGES/falkon_autoscroll_qt.qm share/locale/es/LC_MESSAGES/falkon_flashcookiemanager_qt.qm share/locale/es/LC_MESSAGES/falkon_gnomekeyringpasswords_qt.qm share/locale/es/LC_MESSAGES/falkon_greasemonkey_qt.qm share/locale/es/LC_MESSAGES/falkon_hellopython.mo share/locale/es/LC_MESSAGES/falkon_helloqml.mo share/locale/es/LC_MESSAGES/falkon_kdeframeworksintegration_qt.qm share/locale/es/LC_MESSAGES/falkon_middleclickloader.mo share/locale/es/LC_MESSAGES/falkon_mousegestures_qt.qm share/locale/es/LC_MESSAGES/falkon_pim_qt.qm share/locale/es/LC_MESSAGES/falkon_qt.qm share/locale/es/LC_MESSAGES/falkon_runaction.mo share/locale/es/LC_MESSAGES/falkon_statusbaricons_qt.qm share/locale/es/LC_MESSAGES/falkon_tabmanager_qt.qm share/locale/es/LC_MESSAGES/falkon_testplugin_qt.qm share/locale/es/LC_MESSAGES/falkon_verticaltabs_qt.qm share/locale/et/LC_MESSAGES/falkon_autoscroll_qt.qm share/locale/et/LC_MESSAGES/falkon_flashcookiemanager_qt.qm share/locale/et/LC_MESSAGES/falkon_greasemonkey_qt.qm share/locale/et/LC_MESSAGES/falkon_hellopython.mo share/locale/et/LC_MESSAGES/falkon_helloqml.mo share/locale/et/LC_MESSAGES/falkon_kdeframeworksintegration_qt.qm share/locale/et/LC_MESSAGES/falkon_middleclickloader.mo share/locale/et/LC_MESSAGES/falkon_mousegestures_qt.qm share/locale/et/LC_MESSAGES/falkon_pim_qt.qm share/locale/et/LC_MESSAGES/falkon_qt.qm share/locale/et/LC_MESSAGES/falkon_runaction.mo share/locale/et/LC_MESSAGES/falkon_statusbaricons_qt.qm share/locale/et/LC_MESSAGES/falkon_tabmanager_qt.qm share/locale/et/LC_MESSAGES/falkon_testplugin_qt.qm share/locale/et/LC_MESSAGES/falkon_verticaltabs_qt.qm share/locale/eu/LC_MESSAGES/falkon_autoscroll_qt.qm share/locale/eu/LC_MESSAGES/falkon_flashcookiemanager_qt.qm share/locale/eu/LC_MESSAGES/falkon_gnomekeyringpasswords_qt.qm share/locale/eu/LC_MESSAGES/falkon_greasemonkey_qt.qm share/locale/eu/LC_MESSAGES/falkon_hellopython.mo share/locale/eu/LC_MESSAGES/falkon_helloqml.mo share/locale/eu/LC_MESSAGES/falkon_kdeframeworksintegration_qt.qm share/locale/eu/LC_MESSAGES/falkon_middleclickloader.mo share/locale/eu/LC_MESSAGES/falkon_mousegestures_qt.qm share/locale/eu/LC_MESSAGES/falkon_pim_qt.qm share/locale/eu/LC_MESSAGES/falkon_qt.qm share/locale/eu/LC_MESSAGES/falkon_runaction.mo share/locale/eu/LC_MESSAGES/falkon_statusbaricons_qt.qm share/locale/eu/LC_MESSAGES/falkon_tabmanager_qt.qm share/locale/eu/LC_MESSAGES/falkon_testplugin_qt.qm share/locale/eu/LC_MESSAGES/falkon_verticaltabs_qt.qm share/locale/fa/LC_MESSAGES/falkon_flashcookiemanager_qt.qm share/locale/fa/LC_MESSAGES/falkon_greasemonkey_qt.qm share/locale/fa/LC_MESSAGES/falkon_kdeframeworksintegration_qt.qm share/locale/fa/LC_MESSAGES/falkon_mousegestures_qt.qm share/locale/fa/LC_MESSAGES/falkon_pim_qt.qm share/locale/fa/LC_MESSAGES/falkon_qt.qm share/locale/fa/LC_MESSAGES/falkon_statusbaricons_qt.qm share/locale/fa/LC_MESSAGES/falkon_tabmanager_qt.qm share/locale/fa/LC_MESSAGES/falkon_testplugin_qt.qm share/locale/fi/LC_MESSAGES/falkon_autoscroll_qt.qm share/locale/fi/LC_MESSAGES/falkon_flashcookiemanager_qt.qm share/locale/fi/LC_MESSAGES/falkon_gnomekeyringpasswords_qt.qm share/locale/fi/LC_MESSAGES/falkon_greasemonkey_qt.qm share/locale/fi/LC_MESSAGES/falkon_hellopython.mo share/locale/fi/LC_MESSAGES/falkon_helloqml.mo share/locale/fi/LC_MESSAGES/falkon_kdeframeworksintegration_qt.qm share/locale/fi/LC_MESSAGES/falkon_middleclickloader.mo share/locale/fi/LC_MESSAGES/falkon_mousegestures_qt.qm share/locale/fi/LC_MESSAGES/falkon_pim_qt.qm share/locale/fi/LC_MESSAGES/falkon_qt.qm share/locale/fi/LC_MESSAGES/falkon_runaction.mo share/locale/fi/LC_MESSAGES/falkon_statusbaricons_qt.qm share/locale/fi/LC_MESSAGES/falkon_tabmanager_qt.qm share/locale/fi/LC_MESSAGES/falkon_testplugin_qt.qm share/locale/fi/LC_MESSAGES/falkon_verticaltabs_qt.qm share/locale/fr/LC_MESSAGES/falkon_autoscroll_qt.qm share/locale/fr/LC_MESSAGES/falkon_flashcookiemanager_qt.qm share/locale/fr/LC_MESSAGES/falkon_gnomekeyringpasswords_qt.qm share/locale/fr/LC_MESSAGES/falkon_greasemonkey_qt.qm share/locale/fr/LC_MESSAGES/falkon_hellopython.mo share/locale/fr/LC_MESSAGES/falkon_helloqml.mo share/locale/fr/LC_MESSAGES/falkon_kdeframeworksintegration_qt.qm share/locale/fr/LC_MESSAGES/falkon_middleclickloader.mo share/locale/fr/LC_MESSAGES/falkon_mousegestures_qt.qm share/locale/fr/LC_MESSAGES/falkon_pim_qt.qm share/locale/fr/LC_MESSAGES/falkon_qt.qm share/locale/fr/LC_MESSAGES/falkon_runaction.mo share/locale/fr/LC_MESSAGES/falkon_statusbaricons_qt.qm share/locale/fr/LC_MESSAGES/falkon_tabmanager_qt.qm share/locale/fr/LC_MESSAGES/falkon_testplugin_qt.qm share/locale/fr/LC_MESSAGES/falkon_verticaltabs_qt.qm share/locale/gl/LC_MESSAGES/falkon_autoscroll_qt.qm share/locale/gl/LC_MESSAGES/falkon_flashcookiemanager_qt.qm share/locale/gl/LC_MESSAGES/falkon_gnomekeyringpasswords_qt.qm share/locale/gl/LC_MESSAGES/falkon_greasemonkey_qt.qm share/locale/gl/LC_MESSAGES/falkon_hellopython.mo share/locale/gl/LC_MESSAGES/falkon_helloqml.mo share/locale/gl/LC_MESSAGES/falkon_kdeframeworksintegration_qt.qm share/locale/gl/LC_MESSAGES/falkon_middleclickloader.mo share/locale/gl/LC_MESSAGES/falkon_mousegestures_qt.qm share/locale/gl/LC_MESSAGES/falkon_pim_qt.qm share/locale/gl/LC_MESSAGES/falkon_qt.qm share/locale/gl/LC_MESSAGES/falkon_runaction.mo share/locale/gl/LC_MESSAGES/falkon_statusbaricons_qt.qm share/locale/gl/LC_MESSAGES/falkon_tabmanager_qt.qm share/locale/gl/LC_MESSAGES/falkon_testplugin_qt.qm share/locale/gl/LC_MESSAGES/falkon_verticaltabs_qt.qm share/locale/hu/LC_MESSAGES/falkon_autoscroll_qt.qm share/locale/hu/LC_MESSAGES/falkon_greasemonkey_qt.qm share/locale/hu/LC_MESSAGES/falkon_kdeframeworksintegration_qt.qm share/locale/hu/LC_MESSAGES/falkon_pim_qt.qm share/locale/hu/LC_MESSAGES/falkon_qt.qm share/locale/hu/LC_MESSAGES/falkon_testplugin_qt.qm share/locale/ia/LC_MESSAGES/falkon_autoscroll_qt.qm share/locale/ia/LC_MESSAGES/falkon_flashcookiemanager_qt.qm share/locale/ia/LC_MESSAGES/falkon_gnomekeyringpasswords_qt.qm share/locale/ia/LC_MESSAGES/falkon_greasemonkey_qt.qm share/locale/ia/LC_MESSAGES/falkon_hellopython.mo share/locale/ia/LC_MESSAGES/falkon_helloqml.mo share/locale/ia/LC_MESSAGES/falkon_kdeframeworksintegration_qt.qm share/locale/ia/LC_MESSAGES/falkon_middleclickloader.mo share/locale/ia/LC_MESSAGES/falkon_mousegestures_qt.qm share/locale/ia/LC_MESSAGES/falkon_pim_qt.qm share/locale/ia/LC_MESSAGES/falkon_qt.qm share/locale/ia/LC_MESSAGES/falkon_runaction.mo share/locale/ia/LC_MESSAGES/falkon_statusbaricons_qt.qm share/locale/ia/LC_MESSAGES/falkon_tabmanager_qt.qm share/locale/ia/LC_MESSAGES/falkon_testplugin_qt.qm share/locale/ia/LC_MESSAGES/falkon_verticaltabs_qt.qm share/locale/id/LC_MESSAGES/falkon_autoscroll_qt.qm share/locale/id/LC_MESSAGES/falkon_flashcookiemanager_qt.qm share/locale/id/LC_MESSAGES/falkon_greasemonkey_qt.qm share/locale/id/LC_MESSAGES/falkon_hellopython.mo share/locale/id/LC_MESSAGES/falkon_helloqml.mo share/locale/id/LC_MESSAGES/falkon_kdeframeworksintegration_qt.qm share/locale/id/LC_MESSAGES/falkon_middleclickloader.mo share/locale/id/LC_MESSAGES/falkon_mousegestures_qt.qm share/locale/id/LC_MESSAGES/falkon_pim_qt.qm share/locale/id/LC_MESSAGES/falkon_qt.qm share/locale/id/LC_MESSAGES/falkon_runaction.mo share/locale/id/LC_MESSAGES/falkon_statusbaricons_qt.qm share/locale/id/LC_MESSAGES/falkon_tabmanager_qt.qm share/locale/id/LC_MESSAGES/falkon_testplugin_qt.qm share/locale/id/LC_MESSAGES/falkon_verticaltabs_qt.qm share/locale/is/LC_MESSAGES/falkon_autoscroll_qt.qm share/locale/is/LC_MESSAGES/falkon_flashcookiemanager_qt.qm share/locale/is/LC_MESSAGES/falkon_gnomekeyringpasswords_qt.qm share/locale/is/LC_MESSAGES/falkon_greasemonkey_qt.qm share/locale/is/LC_MESSAGES/falkon_hellopython.mo share/locale/is/LC_MESSAGES/falkon_helloqml.mo share/locale/is/LC_MESSAGES/falkon_kdeframeworksintegration_qt.qm share/locale/is/LC_MESSAGES/falkon_middleclickloader.mo share/locale/is/LC_MESSAGES/falkon_mousegestures_qt.qm share/locale/is/LC_MESSAGES/falkon_pim_qt.qm share/locale/is/LC_MESSAGES/falkon_qt.qm share/locale/is/LC_MESSAGES/falkon_runaction.mo share/locale/is/LC_MESSAGES/falkon_statusbaricons_qt.qm share/locale/is/LC_MESSAGES/falkon_tabmanager_qt.qm share/locale/is/LC_MESSAGES/falkon_testplugin_qt.qm share/locale/is/LC_MESSAGES/falkon_verticaltabs_qt.qm share/locale/it/LC_MESSAGES/falkon_autoscroll_qt.qm share/locale/it/LC_MESSAGES/falkon_flashcookiemanager_qt.qm share/locale/it/LC_MESSAGES/falkon_gnomekeyringpasswords_qt.qm share/locale/it/LC_MESSAGES/falkon_greasemonkey_qt.qm share/locale/it/LC_MESSAGES/falkon_hellopython.mo share/locale/it/LC_MESSAGES/falkon_helloqml.mo share/locale/it/LC_MESSAGES/falkon_kdeframeworksintegration_qt.qm share/locale/it/LC_MESSAGES/falkon_middleclickloader.mo share/locale/it/LC_MESSAGES/falkon_mousegestures_qt.qm share/locale/it/LC_MESSAGES/falkon_pim_qt.qm share/locale/it/LC_MESSAGES/falkon_qt.qm share/locale/it/LC_MESSAGES/falkon_runaction.mo share/locale/it/LC_MESSAGES/falkon_statusbaricons_qt.qm share/locale/it/LC_MESSAGES/falkon_tabmanager_qt.qm share/locale/it/LC_MESSAGES/falkon_testplugin_qt.qm share/locale/it/LC_MESSAGES/falkon_verticaltabs_qt.qm share/locale/ja/LC_MESSAGES/falkon_autoscroll_qt.qm share/locale/ja/LC_MESSAGES/falkon_flashcookiemanager_qt.qm share/locale/ja/LC_MESSAGES/falkon_gnomekeyringpasswords_qt.qm share/locale/ja/LC_MESSAGES/falkon_greasemonkey_qt.qm share/locale/ja/LC_MESSAGES/falkon_hellopython.mo share/locale/ja/LC_MESSAGES/falkon_helloqml.mo share/locale/ja/LC_MESSAGES/falkon_kdeframeworksintegration_qt.qm share/locale/ja/LC_MESSAGES/falkon_middleclickloader.mo share/locale/ja/LC_MESSAGES/falkon_mousegestures_qt.qm share/locale/ja/LC_MESSAGES/falkon_pim_qt.qm share/locale/ja/LC_MESSAGES/falkon_qt.qm share/locale/ja/LC_MESSAGES/falkon_runaction.mo share/locale/ja/LC_MESSAGES/falkon_statusbaricons_qt.qm share/locale/ja/LC_MESSAGES/falkon_tabmanager_qt.qm share/locale/ja/LC_MESSAGES/falkon_testplugin_qt.qm share/locale/ja/LC_MESSAGES/falkon_verticaltabs_qt.qm share/locale/ka/LC_MESSAGES/falkon_autoscroll_qt.qm share/locale/ka/LC_MESSAGES/falkon_flashcookiemanager_qt.qm share/locale/ka/LC_MESSAGES/falkon_gnomekeyringpasswords_qt.qm share/locale/ka/LC_MESSAGES/falkon_greasemonkey_qt.qm share/locale/ka/LC_MESSAGES/falkon_hellopython.mo share/locale/ka/LC_MESSAGES/falkon_helloqml.mo share/locale/ka/LC_MESSAGES/falkon_kdeframeworksintegration_qt.qm share/locale/ka/LC_MESSAGES/falkon_middleclickloader.mo share/locale/ka/LC_MESSAGES/falkon_mousegestures_qt.qm share/locale/ka/LC_MESSAGES/falkon_pim_qt.qm share/locale/ka/LC_MESSAGES/falkon_qt.qm share/locale/ka/LC_MESSAGES/falkon_runaction.mo share/locale/ka/LC_MESSAGES/falkon_statusbaricons_qt.qm share/locale/ka/LC_MESSAGES/falkon_tabmanager_qt.qm share/locale/ka/LC_MESSAGES/falkon_testplugin_qt.qm share/locale/ka/LC_MESSAGES/falkon_verticaltabs_qt.qm share/locale/ko/LC_MESSAGES/falkon_autoscroll_qt.qm share/locale/ko/LC_MESSAGES/falkon_flashcookiemanager_qt.qm share/locale/ko/LC_MESSAGES/falkon_gnomekeyringpasswords_qt.qm share/locale/ko/LC_MESSAGES/falkon_greasemonkey_qt.qm share/locale/ko/LC_MESSAGES/falkon_hellopython.mo share/locale/ko/LC_MESSAGES/falkon_helloqml.mo share/locale/ko/LC_MESSAGES/falkon_kdeframeworksintegration_qt.qm share/locale/ko/LC_MESSAGES/falkon_middleclickloader.mo share/locale/ko/LC_MESSAGES/falkon_mousegestures_qt.qm share/locale/ko/LC_MESSAGES/falkon_pim_qt.qm share/locale/ko/LC_MESSAGES/falkon_qt.qm share/locale/ko/LC_MESSAGES/falkon_runaction.mo share/locale/ko/LC_MESSAGES/falkon_statusbaricons_qt.qm share/locale/ko/LC_MESSAGES/falkon_tabmanager_qt.qm share/locale/ko/LC_MESSAGES/falkon_testplugin_qt.qm share/locale/ko/LC_MESSAGES/falkon_verticaltabs_qt.qm share/locale/lt/LC_MESSAGES/falkon_autoscroll_qt.qm share/locale/lt/LC_MESSAGES/falkon_flashcookiemanager_qt.qm +share/locale/lt/LC_MESSAGES/falkon_gnomekeyringpasswords_qt.qm share/locale/lt/LC_MESSAGES/falkon_greasemonkey_qt.qm share/locale/lt/LC_MESSAGES/falkon_hellopython.mo share/locale/lt/LC_MESSAGES/falkon_helloqml.mo share/locale/lt/LC_MESSAGES/falkon_kdeframeworksintegration_qt.qm share/locale/lt/LC_MESSAGES/falkon_middleclickloader.mo share/locale/lt/LC_MESSAGES/falkon_mousegestures_qt.qm share/locale/lt/LC_MESSAGES/falkon_pim_qt.qm share/locale/lt/LC_MESSAGES/falkon_qt.qm share/locale/lt/LC_MESSAGES/falkon_runaction.mo share/locale/lt/LC_MESSAGES/falkon_statusbaricons_qt.qm share/locale/lt/LC_MESSAGES/falkon_tabmanager_qt.qm share/locale/lt/LC_MESSAGES/falkon_testplugin_qt.qm share/locale/lt/LC_MESSAGES/falkon_verticaltabs_qt.qm share/locale/lv/LC_MESSAGES/falkon_autoscroll_qt.qm share/locale/lv/LC_MESSAGES/falkon_flashcookiemanager_qt.qm share/locale/lv/LC_MESSAGES/falkon_greasemonkey_qt.qm share/locale/lv/LC_MESSAGES/falkon_kdeframeworksintegration_qt.qm share/locale/lv/LC_MESSAGES/falkon_mousegestures_qt.qm share/locale/lv/LC_MESSAGES/falkon_pim_qt.qm share/locale/lv/LC_MESSAGES/falkon_qt.qm share/locale/lv/LC_MESSAGES/falkon_statusbaricons_qt.qm share/locale/lv/LC_MESSAGES/falkon_tabmanager_qt.qm share/locale/lv/LC_MESSAGES/falkon_testplugin_qt.qm share/locale/nb/LC_MESSAGES/falkon_autoscroll_qt.qm share/locale/nb/LC_MESSAGES/falkon_flashcookiemanager_qt.qm share/locale/nb/LC_MESSAGES/falkon_gnomekeyringpasswords_qt.qm share/locale/nb/LC_MESSAGES/falkon_greasemonkey_qt.qm share/locale/nb/LC_MESSAGES/falkon_kdeframeworksintegration_qt.qm share/locale/nb/LC_MESSAGES/falkon_mousegestures_qt.qm share/locale/nb/LC_MESSAGES/falkon_pim_qt.qm share/locale/nb/LC_MESSAGES/falkon_qt.qm share/locale/nb/LC_MESSAGES/falkon_statusbaricons_qt.qm share/locale/nb/LC_MESSAGES/falkon_tabmanager_qt.qm share/locale/nb/LC_MESSAGES/falkon_testplugin_qt.qm share/locale/nl/LC_MESSAGES/falkon_autoscroll_qt.qm share/locale/nl/LC_MESSAGES/falkon_flashcookiemanager_qt.qm share/locale/nl/LC_MESSAGES/falkon_gnomekeyringpasswords_qt.qm share/locale/nl/LC_MESSAGES/falkon_greasemonkey_qt.qm share/locale/nl/LC_MESSAGES/falkon_hellopython.mo share/locale/nl/LC_MESSAGES/falkon_helloqml.mo share/locale/nl/LC_MESSAGES/falkon_kdeframeworksintegration_qt.qm share/locale/nl/LC_MESSAGES/falkon_middleclickloader.mo share/locale/nl/LC_MESSAGES/falkon_mousegestures_qt.qm share/locale/nl/LC_MESSAGES/falkon_pim_qt.qm share/locale/nl/LC_MESSAGES/falkon_qt.qm share/locale/nl/LC_MESSAGES/falkon_runaction.mo share/locale/nl/LC_MESSAGES/falkon_statusbaricons_qt.qm share/locale/nl/LC_MESSAGES/falkon_tabmanager_qt.qm share/locale/nl/LC_MESSAGES/falkon_testplugin_qt.qm share/locale/nl/LC_MESSAGES/falkon_verticaltabs_qt.qm share/locale/nn/LC_MESSAGES/falkon_autoscroll_qt.qm share/locale/nn/LC_MESSAGES/falkon_flashcookiemanager_qt.qm share/locale/nn/LC_MESSAGES/falkon_gnomekeyringpasswords_qt.qm share/locale/nn/LC_MESSAGES/falkon_greasemonkey_qt.qm share/locale/nn/LC_MESSAGES/falkon_hellopython.mo share/locale/nn/LC_MESSAGES/falkon_helloqml.mo share/locale/nn/LC_MESSAGES/falkon_kdeframeworksintegration_qt.qm share/locale/nn/LC_MESSAGES/falkon_middleclickloader.mo share/locale/nn/LC_MESSAGES/falkon_mousegestures_qt.qm share/locale/nn/LC_MESSAGES/falkon_pim_qt.qm share/locale/nn/LC_MESSAGES/falkon_qt.qm share/locale/nn/LC_MESSAGES/falkon_runaction.mo share/locale/nn/LC_MESSAGES/falkon_statusbaricons_qt.qm share/locale/nn/LC_MESSAGES/falkon_tabmanager_qt.qm share/locale/nn/LC_MESSAGES/falkon_testplugin_qt.qm share/locale/nn/LC_MESSAGES/falkon_verticaltabs_qt.qm share/locale/pa/LC_MESSAGES/falkon_qt.qm share/locale/pl/LC_MESSAGES/falkon_autoscroll_qt.qm share/locale/pl/LC_MESSAGES/falkon_flashcookiemanager_qt.qm share/locale/pl/LC_MESSAGES/falkon_gnomekeyringpasswords_qt.qm share/locale/pl/LC_MESSAGES/falkon_greasemonkey_qt.qm share/locale/pl/LC_MESSAGES/falkon_hellopython.mo share/locale/pl/LC_MESSAGES/falkon_helloqml.mo share/locale/pl/LC_MESSAGES/falkon_kdeframeworksintegration_qt.qm share/locale/pl/LC_MESSAGES/falkon_middleclickloader.mo share/locale/pl/LC_MESSAGES/falkon_mousegestures_qt.qm share/locale/pl/LC_MESSAGES/falkon_pim_qt.qm share/locale/pl/LC_MESSAGES/falkon_qt.qm share/locale/pl/LC_MESSAGES/falkon_runaction.mo share/locale/pl/LC_MESSAGES/falkon_statusbaricons_qt.qm share/locale/pl/LC_MESSAGES/falkon_tabmanager_qt.qm share/locale/pl/LC_MESSAGES/falkon_testplugin_qt.qm share/locale/pl/LC_MESSAGES/falkon_verticaltabs_qt.qm share/locale/pt/LC_MESSAGES/falkon_autoscroll_qt.qm share/locale/pt/LC_MESSAGES/falkon_flashcookiemanager_qt.qm share/locale/pt/LC_MESSAGES/falkon_gnomekeyringpasswords_qt.qm share/locale/pt/LC_MESSAGES/falkon_greasemonkey_qt.qm share/locale/pt/LC_MESSAGES/falkon_hellopython.mo share/locale/pt/LC_MESSAGES/falkon_helloqml.mo share/locale/pt/LC_MESSAGES/falkon_kdeframeworksintegration_qt.qm share/locale/pt/LC_MESSAGES/falkon_middleclickloader.mo share/locale/pt/LC_MESSAGES/falkon_mousegestures_qt.qm share/locale/pt/LC_MESSAGES/falkon_pim_qt.qm share/locale/pt/LC_MESSAGES/falkon_qt.qm share/locale/pt/LC_MESSAGES/falkon_runaction.mo share/locale/pt/LC_MESSAGES/falkon_statusbaricons_qt.qm share/locale/pt/LC_MESSAGES/falkon_tabmanager_qt.qm share/locale/pt/LC_MESSAGES/falkon_testplugin_qt.qm share/locale/pt/LC_MESSAGES/falkon_verticaltabs_qt.qm share/locale/pt_BR/LC_MESSAGES/falkon_autoscroll_qt.qm share/locale/pt_BR/LC_MESSAGES/falkon_flashcookiemanager_qt.qm share/locale/pt_BR/LC_MESSAGES/falkon_gnomekeyringpasswords_qt.qm share/locale/pt_BR/LC_MESSAGES/falkon_greasemonkey_qt.qm share/locale/pt_BR/LC_MESSAGES/falkon_hellopython.mo share/locale/pt_BR/LC_MESSAGES/falkon_helloqml.mo share/locale/pt_BR/LC_MESSAGES/falkon_kdeframeworksintegration_qt.qm share/locale/pt_BR/LC_MESSAGES/falkon_middleclickloader.mo share/locale/pt_BR/LC_MESSAGES/falkon_mousegestures_qt.qm share/locale/pt_BR/LC_MESSAGES/falkon_pim_qt.qm share/locale/pt_BR/LC_MESSAGES/falkon_qt.qm share/locale/pt_BR/LC_MESSAGES/falkon_runaction.mo share/locale/pt_BR/LC_MESSAGES/falkon_statusbaricons_qt.qm share/locale/pt_BR/LC_MESSAGES/falkon_tabmanager_qt.qm share/locale/pt_BR/LC_MESSAGES/falkon_testplugin_qt.qm share/locale/pt_BR/LC_MESSAGES/falkon_verticaltabs_qt.qm share/locale/ro/LC_MESSAGES/falkon_autoscroll_qt.qm share/locale/ro/LC_MESSAGES/falkon_flashcookiemanager_qt.qm share/locale/ro/LC_MESSAGES/falkon_gnomekeyringpasswords_qt.qm share/locale/ro/LC_MESSAGES/falkon_greasemonkey_qt.qm share/locale/ro/LC_MESSAGES/falkon_qt.qm share/locale/ru/LC_MESSAGES/falkon_autoscroll_qt.qm share/locale/ru/LC_MESSAGES/falkon_flashcookiemanager_qt.qm share/locale/ru/LC_MESSAGES/falkon_gnomekeyringpasswords_qt.qm share/locale/ru/LC_MESSAGES/falkon_greasemonkey_qt.qm share/locale/ru/LC_MESSAGES/falkon_hellopython.mo share/locale/ru/LC_MESSAGES/falkon_helloqml.mo share/locale/ru/LC_MESSAGES/falkon_kdeframeworksintegration_qt.qm share/locale/ru/LC_MESSAGES/falkon_middleclickloader.mo share/locale/ru/LC_MESSAGES/falkon_mousegestures_qt.qm share/locale/ru/LC_MESSAGES/falkon_pim_qt.qm share/locale/ru/LC_MESSAGES/falkon_qt.qm share/locale/ru/LC_MESSAGES/falkon_runaction.mo share/locale/ru/LC_MESSAGES/falkon_statusbaricons_qt.qm share/locale/ru/LC_MESSAGES/falkon_tabmanager_qt.qm share/locale/ru/LC_MESSAGES/falkon_testplugin_qt.qm share/locale/ru/LC_MESSAGES/falkon_verticaltabs_qt.qm share/locale/sk/LC_MESSAGES/falkon_autoscroll_qt.qm share/locale/sk/LC_MESSAGES/falkon_flashcookiemanager_qt.qm share/locale/sk/LC_MESSAGES/falkon_gnomekeyringpasswords_qt.qm share/locale/sk/LC_MESSAGES/falkon_greasemonkey_qt.qm share/locale/sk/LC_MESSAGES/falkon_hellopython.mo share/locale/sk/LC_MESSAGES/falkon_helloqml.mo share/locale/sk/LC_MESSAGES/falkon_kdeframeworksintegration_qt.qm share/locale/sk/LC_MESSAGES/falkon_middleclickloader.mo share/locale/sk/LC_MESSAGES/falkon_mousegestures_qt.qm share/locale/sk/LC_MESSAGES/falkon_pim_qt.qm share/locale/sk/LC_MESSAGES/falkon_qt.qm share/locale/sk/LC_MESSAGES/falkon_runaction.mo share/locale/sk/LC_MESSAGES/falkon_statusbaricons_qt.qm share/locale/sk/LC_MESSAGES/falkon_tabmanager_qt.qm share/locale/sk/LC_MESSAGES/falkon_testplugin_qt.qm share/locale/sk/LC_MESSAGES/falkon_verticaltabs_qt.qm share/locale/sl/LC_MESSAGES/falkon_autoscroll_qt.qm share/locale/sl/LC_MESSAGES/falkon_flashcookiemanager_qt.qm share/locale/sl/LC_MESSAGES/falkon_gnomekeyringpasswords_qt.qm share/locale/sl/LC_MESSAGES/falkon_greasemonkey_qt.qm share/locale/sl/LC_MESSAGES/falkon_hellopython.mo share/locale/sl/LC_MESSAGES/falkon_helloqml.mo share/locale/sl/LC_MESSAGES/falkon_kdeframeworksintegration_qt.qm share/locale/sl/LC_MESSAGES/falkon_middleclickloader.mo share/locale/sl/LC_MESSAGES/falkon_mousegestures_qt.qm share/locale/sl/LC_MESSAGES/falkon_pim_qt.qm share/locale/sl/LC_MESSAGES/falkon_qt.qm share/locale/sl/LC_MESSAGES/falkon_runaction.mo share/locale/sl/LC_MESSAGES/falkon_statusbaricons_qt.qm share/locale/sl/LC_MESSAGES/falkon_tabmanager_qt.qm share/locale/sl/LC_MESSAGES/falkon_testplugin_qt.qm share/locale/sl/LC_MESSAGES/falkon_verticaltabs_qt.qm share/locale/sr/LC_MESSAGES/falkon_autoscroll_qt.qm share/locale/sr/LC_MESSAGES/falkon_flashcookiemanager_qt.qm share/locale/sr/LC_MESSAGES/falkon_greasemonkey_qt.qm share/locale/sr/LC_MESSAGES/falkon_kdeframeworksintegration_qt.qm share/locale/sr/LC_MESSAGES/falkon_mousegestures_qt.qm share/locale/sr/LC_MESSAGES/falkon_pim_qt.qm share/locale/sr/LC_MESSAGES/falkon_qt.qm share/locale/sr/LC_MESSAGES/falkon_statusbaricons_qt.qm share/locale/sr/LC_MESSAGES/falkon_tabmanager_qt.qm share/locale/sr/LC_MESSAGES/falkon_testplugin_qt.qm share/locale/sr@ijekavian/LC_MESSAGES/falkon_autoscroll_qt.qm share/locale/sr@ijekavian/LC_MESSAGES/falkon_flashcookiemanager_qt.qm share/locale/sr@ijekavian/LC_MESSAGES/falkon_greasemonkey_qt.qm share/locale/sr@ijekavian/LC_MESSAGES/falkon_kdeframeworksintegration_qt.qm share/locale/sr@ijekavian/LC_MESSAGES/falkon_mousegestures_qt.qm share/locale/sr@ijekavian/LC_MESSAGES/falkon_pim_qt.qm share/locale/sr@ijekavian/LC_MESSAGES/falkon_qt.qm share/locale/sr@ijekavian/LC_MESSAGES/falkon_statusbaricons_qt.qm share/locale/sr@ijekavian/LC_MESSAGES/falkon_tabmanager_qt.qm share/locale/sr@ijekavian/LC_MESSAGES/falkon_testplugin_qt.qm share/locale/sr@ijekavianlatin/LC_MESSAGES/falkon_autoscroll_qt.qm share/locale/sr@ijekavianlatin/LC_MESSAGES/falkon_flashcookiemanager_qt.qm share/locale/sr@ijekavianlatin/LC_MESSAGES/falkon_greasemonkey_qt.qm share/locale/sr@ijekavianlatin/LC_MESSAGES/falkon_kdeframeworksintegration_qt.qm share/locale/sr@ijekavianlatin/LC_MESSAGES/falkon_mousegestures_qt.qm share/locale/sr@ijekavianlatin/LC_MESSAGES/falkon_pim_qt.qm share/locale/sr@ijekavianlatin/LC_MESSAGES/falkon_qt.qm share/locale/sr@ijekavianlatin/LC_MESSAGES/falkon_statusbaricons_qt.qm share/locale/sr@ijekavianlatin/LC_MESSAGES/falkon_tabmanager_qt.qm share/locale/sr@ijekavianlatin/LC_MESSAGES/falkon_testplugin_qt.qm share/locale/sr@latin/LC_MESSAGES/falkon_autoscroll_qt.qm share/locale/sr@latin/LC_MESSAGES/falkon_flashcookiemanager_qt.qm share/locale/sr@latin/LC_MESSAGES/falkon_greasemonkey_qt.qm share/locale/sr@latin/LC_MESSAGES/falkon_kdeframeworksintegration_qt.qm share/locale/sr@latin/LC_MESSAGES/falkon_mousegestures_qt.qm share/locale/sr@latin/LC_MESSAGES/falkon_pim_qt.qm share/locale/sr@latin/LC_MESSAGES/falkon_qt.qm share/locale/sr@latin/LC_MESSAGES/falkon_statusbaricons_qt.qm share/locale/sr@latin/LC_MESSAGES/falkon_tabmanager_qt.qm share/locale/sr@latin/LC_MESSAGES/falkon_testplugin_qt.qm share/locale/sv/LC_MESSAGES/falkon_autoscroll_qt.qm share/locale/sv/LC_MESSAGES/falkon_flashcookiemanager_qt.qm share/locale/sv/LC_MESSAGES/falkon_gnomekeyringpasswords_qt.qm share/locale/sv/LC_MESSAGES/falkon_greasemonkey_qt.qm share/locale/sv/LC_MESSAGES/falkon_hellopython.mo share/locale/sv/LC_MESSAGES/falkon_helloqml.mo share/locale/sv/LC_MESSAGES/falkon_kdeframeworksintegration_qt.qm share/locale/sv/LC_MESSAGES/falkon_middleclickloader.mo share/locale/sv/LC_MESSAGES/falkon_mousegestures_qt.qm share/locale/sv/LC_MESSAGES/falkon_pim_qt.qm share/locale/sv/LC_MESSAGES/falkon_qt.qm share/locale/sv/LC_MESSAGES/falkon_runaction.mo share/locale/sv/LC_MESSAGES/falkon_statusbaricons_qt.qm share/locale/sv/LC_MESSAGES/falkon_tabmanager_qt.qm share/locale/sv/LC_MESSAGES/falkon_testplugin_qt.qm share/locale/sv/LC_MESSAGES/falkon_verticaltabs_qt.qm share/locale/ta/LC_MESSAGES/falkon_qt.qm share/locale/tr/LC_MESSAGES/falkon_autoscroll_qt.qm share/locale/tr/LC_MESSAGES/falkon_flashcookiemanager_qt.qm share/locale/tr/LC_MESSAGES/falkon_gnomekeyringpasswords_qt.qm share/locale/tr/LC_MESSAGES/falkon_greasemonkey_qt.qm share/locale/tr/LC_MESSAGES/falkon_hellopython.mo share/locale/tr/LC_MESSAGES/falkon_helloqml.mo share/locale/tr/LC_MESSAGES/falkon_kdeframeworksintegration_qt.qm share/locale/tr/LC_MESSAGES/falkon_middleclickloader.mo share/locale/tr/LC_MESSAGES/falkon_mousegestures_qt.qm share/locale/tr/LC_MESSAGES/falkon_pim_qt.qm share/locale/tr/LC_MESSAGES/falkon_qt.qm share/locale/tr/LC_MESSAGES/falkon_runaction.mo share/locale/tr/LC_MESSAGES/falkon_statusbaricons_qt.qm share/locale/tr/LC_MESSAGES/falkon_tabmanager_qt.qm share/locale/tr/LC_MESSAGES/falkon_testplugin_qt.qm share/locale/tr/LC_MESSAGES/falkon_verticaltabs_qt.qm share/locale/uk/LC_MESSAGES/falkon_autoscroll_qt.qm share/locale/uk/LC_MESSAGES/falkon_flashcookiemanager_qt.qm share/locale/uk/LC_MESSAGES/falkon_gnomekeyringpasswords_qt.qm share/locale/uk/LC_MESSAGES/falkon_greasemonkey_qt.qm share/locale/uk/LC_MESSAGES/falkon_hellopython.mo share/locale/uk/LC_MESSAGES/falkon_helloqml.mo share/locale/uk/LC_MESSAGES/falkon_kdeframeworksintegration_qt.qm share/locale/uk/LC_MESSAGES/falkon_middleclickloader.mo share/locale/uk/LC_MESSAGES/falkon_mousegestures_qt.qm share/locale/uk/LC_MESSAGES/falkon_pim_qt.qm share/locale/uk/LC_MESSAGES/falkon_qt.qm share/locale/uk/LC_MESSAGES/falkon_runaction.mo share/locale/uk/LC_MESSAGES/falkon_statusbaricons_qt.qm share/locale/uk/LC_MESSAGES/falkon_tabmanager_qt.qm share/locale/uk/LC_MESSAGES/falkon_testplugin_qt.qm share/locale/uk/LC_MESSAGES/falkon_verticaltabs_qt.qm share/locale/zh_CN/LC_MESSAGES/falkon_autoscroll_qt.qm share/locale/zh_CN/LC_MESSAGES/falkon_flashcookiemanager_qt.qm share/locale/zh_CN/LC_MESSAGES/falkon_gnomekeyringpasswords_qt.qm share/locale/zh_CN/LC_MESSAGES/falkon_greasemonkey_qt.qm share/locale/zh_CN/LC_MESSAGES/falkon_hellopython.mo share/locale/zh_CN/LC_MESSAGES/falkon_helloqml.mo share/locale/zh_CN/LC_MESSAGES/falkon_kdeframeworksintegration_qt.qm share/locale/zh_CN/LC_MESSAGES/falkon_middleclickloader.mo share/locale/zh_CN/LC_MESSAGES/falkon_mousegestures_qt.qm share/locale/zh_CN/LC_MESSAGES/falkon_pim_qt.qm share/locale/zh_CN/LC_MESSAGES/falkon_qt.qm share/locale/zh_CN/LC_MESSAGES/falkon_runaction.mo share/locale/zh_CN/LC_MESSAGES/falkon_statusbaricons_qt.qm share/locale/zh_CN/LC_MESSAGES/falkon_tabmanager_qt.qm share/locale/zh_CN/LC_MESSAGES/falkon_testplugin_qt.qm share/locale/zh_CN/LC_MESSAGES/falkon_verticaltabs_qt.qm share/locale/zh_HK/LC_MESSAGES/falkon_autoscroll_qt.qm share/locale/zh_HK/LC_MESSAGES/falkon_flashcookiemanager_qt.qm share/locale/zh_HK/LC_MESSAGES/falkon_greasemonkey_qt.qm share/locale/zh_HK/LC_MESSAGES/falkon_kdeframeworksintegration_qt.qm share/locale/zh_HK/LC_MESSAGES/falkon_mousegestures_qt.qm share/locale/zh_HK/LC_MESSAGES/falkon_pim_qt.qm share/locale/zh_HK/LC_MESSAGES/falkon_qt.qm share/locale/zh_HK/LC_MESSAGES/falkon_statusbaricons_qt.qm share/locale/zh_HK/LC_MESSAGES/falkon_tabmanager_qt.qm share/locale/zh_HK/LC_MESSAGES/falkon_testplugin_qt.qm share/locale/zh_TW/LC_MESSAGES/falkon_autoscroll_qt.qm share/locale/zh_TW/LC_MESSAGES/falkon_flashcookiemanager_qt.qm share/locale/zh_TW/LC_MESSAGES/falkon_gnomekeyringpasswords_qt.qm share/locale/zh_TW/LC_MESSAGES/falkon_greasemonkey_qt.qm share/locale/zh_TW/LC_MESSAGES/falkon_hellopython.mo share/locale/zh_TW/LC_MESSAGES/falkon_helloqml.mo share/locale/zh_TW/LC_MESSAGES/falkon_kdeframeworksintegration_qt.qm share/locale/zh_TW/LC_MESSAGES/falkon_middleclickloader.mo share/locale/zh_TW/LC_MESSAGES/falkon_mousegestures_qt.qm share/locale/zh_TW/LC_MESSAGES/falkon_pim_qt.qm share/locale/zh_TW/LC_MESSAGES/falkon_qt.qm share/locale/zh_TW/LC_MESSAGES/falkon_runaction.mo share/locale/zh_TW/LC_MESSAGES/falkon_statusbaricons_qt.qm share/locale/zh_TW/LC_MESSAGES/falkon_tabmanager_qt.qm share/locale/zh_TW/LC_MESSAGES/falkon_testplugin_qt.qm share/locale/zh_TW/LC_MESSAGES/falkon_verticaltabs_qt.qm share/metainfo/org.kde.falkon.appdata.xml diff --git a/x11-clocks/kteatime/distinfo b/x11-clocks/kteatime/distinfo index 29ee9af75f48..0d0a1efbc3f8 100644 --- a/x11-clocks/kteatime/distinfo +++ b/x11-clocks/kteatime/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1677828184 -SHA256 (KDE/release-service/22.12.3/kteatime-22.12.3.tar.xz) = 2ea81deda0bca53416e4008ad1aca89b1531f75b2fdddd8ef094badcac1559f2 -SIZE (KDE/release-service/22.12.3/kteatime-22.12.3.tar.xz) = 312324 +TIMESTAMP = 1681548291 +SHA256 (KDE/release-service/23.04.0/kteatime-23.04.0.tar.xz) = d8f1e562bf69ff1acee04e38ba514d29ee998ed8042789e8cf9b510e8f9e7ca9 +SIZE (KDE/release-service/23.04.0/kteatime-23.04.0.tar.xz) = 312432 diff --git a/x11-clocks/ktimer/distinfo b/x11-clocks/ktimer/distinfo index b70e851c914f..e80e43fb3d91 100644 --- a/x11-clocks/ktimer/distinfo +++ b/x11-clocks/ktimer/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1677828182 -SHA256 (KDE/release-service/22.12.3/ktimer-22.12.3.tar.xz) = 5294bbd88c7470d81ba2c3b4f47d80dc7529cab7d0ae1cc95d1d96893eb5b7cf -SIZE (KDE/release-service/22.12.3/ktimer-22.12.3.tar.xz) = 402152 +TIMESTAMP = 1681548292 +SHA256 (KDE/release-service/23.04.0/ktimer-23.04.0.tar.xz) = a47f1b932d0fc5e41f5e943676d24b1086db9999109abee4bd0d9709245fa8b9 +SIZE (KDE/release-service/23.04.0/ktimer-23.04.0.tar.xz) = 404452 diff --git a/x11-fm/dolphin/distinfo b/x11-fm/dolphin/distinfo index 398bbbe383d6..c7f6fba286bd 100644 --- a/x11-fm/dolphin/distinfo +++ b/x11-fm/dolphin/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1677828090 -SHA256 (KDE/release-service/22.12.3/dolphin-22.12.3.tar.xz) = 1aa7538f013d24fdf36633d413e7ac23dbdfec7a216de8d01865ce4754760b5a -SIZE (KDE/release-service/22.12.3/dolphin-22.12.3.tar.xz) = 5693220 +TIMESTAMP = 1681548447 +SHA256 (KDE/release-service/23.04.0/dolphin-23.04.0.tar.xz) = cd49268a3b0309253587d424fbdffe25b26c951df7e6932a42f48cf34b006c50 +SIZE (KDE/release-service/23.04.0/dolphin-23.04.0.tar.xz) = 5735912 diff --git a/x11-fm/dolphin/pkg-plist b/x11-fm/dolphin/pkg-plist index b7eaa06e2861..8eaa60fdceed 100644 --- a/x11-fm/dolphin/pkg-plist +++ b/x11-fm/dolphin/pkg-plist @@ -1,175 +1,178 @@ bin/dolphin bin/servicemenuinstaller include/Dolphin/KVersionControlPlugin include/Dolphin/dolphinvcs_version.h include/Dolphin/kversioncontrolplugin.h include/dolphin_export.h include/dolphinvcs_export.h lib/cmake/DolphinVcs/DolphinVcsConfig.cmake lib/cmake/DolphinVcs/DolphinVcsConfigVersion.cmake lib/cmake/DolphinVcs/DolphinVcsTargets-%%CMAKE_BUILD_TYPE%%.cmake lib/cmake/DolphinVcs/DolphinVcsTargets.cmake lib/libdolphinprivate.so.%%SHLIB_SHVER%% lib/libdolphinprivate.so.%%SHLIB_VER%% lib/libdolphinvcs.so lib/libdolphinvcs.so.%%SHLIB_SHVER%% lib/libdolphinvcs.so.%%SHLIB_VER%% %%QT_PLUGINDIR%%/dolphin/kcms/kcm_dolphingeneral.so %%QT_PLUGINDIR%%/dolphin/kcms/kcm_dolphinnavigation.so %%QT_PLUGINDIR%%/dolphin/kcms/kcm_dolphinviewmodes.so %%QT_PLUGINDIR%%/kf%%SHLIB_SHVER%%/parts/dolphinpart.so lib/systemd/user/plasma-dolphin.service share/applications/org.kde.dolphin.desktop share/config.kcfg/dolphin_compactmodesettings.kcfg share/config.kcfg/dolphin_contextmenusettings.kcfg share/config.kcfg/dolphin_detailsmodesettings.kcfg share/config.kcfg/dolphin_directoryviewpropertysettings.kcfg share/config.kcfg/dolphin_generalsettings.kcfg share/config.kcfg/dolphin_iconsmodesettings.kcfg share/config.kcfg/dolphin_versioncontrolsettings.kcfg share/dbus-1/interfaces/org.freedesktop.FileManager1.xml share/dbus-1/services/org.kde.dolphin.FileManager1.service %%DATADIR%%/dolphinpartactions.desktop share/kconf_update/dolphin_detailsmodesettings.upd share/kglobalaccel/org.kde.dolphin.desktop share/knsrcfiles/servicemenu.knsrc share/locale/ar/LC_MESSAGES/dolphin.mo share/locale/ar/LC_MESSAGES/dolphin_servicemenuinstaller.mo share/locale/az/LC_MESSAGES/dolphin.mo share/locale/az/LC_MESSAGES/dolphin_servicemenuinstaller.mo share/locale/be/LC_MESSAGES/dolphin.mo +share/locale/be/LC_MESSAGES/dolphin_servicemenuinstaller.mo share/locale/be@latin/LC_MESSAGES/dolphin.mo share/locale/bg/LC_MESSAGES/dolphin.mo share/locale/bg/LC_MESSAGES/dolphin_servicemenuinstaller.mo share/locale/bn/LC_MESSAGES/dolphin.mo share/locale/bn_IN/LC_MESSAGES/dolphin.mo share/locale/bs/LC_MESSAGES/dolphin.mo share/locale/ca/LC_MESSAGES/dolphin.mo share/locale/ca/LC_MESSAGES/dolphin_servicemenuinstaller.mo share/locale/ca@valencia/LC_MESSAGES/dolphin.mo share/locale/ca@valencia/LC_MESSAGES/dolphin_servicemenuinstaller.mo share/locale/cs/LC_MESSAGES/dolphin.mo share/locale/cs/LC_MESSAGES/dolphin_servicemenuinstaller.mo share/locale/csb/LC_MESSAGES/dolphin.mo share/locale/da/LC_MESSAGES/dolphin.mo share/locale/da/LC_MESSAGES/dolphin_servicemenuinstaller.mo share/locale/de/LC_MESSAGES/dolphin.mo share/locale/de/LC_MESSAGES/dolphin_servicemenuinstaller.mo share/locale/el/LC_MESSAGES/dolphin.mo share/locale/el/LC_MESSAGES/dolphin_servicemenuinstaller.mo share/locale/en_GB/LC_MESSAGES/dolphin.mo share/locale/en_GB/LC_MESSAGES/dolphin_servicemenuinstaller.mo share/locale/eo/LC_MESSAGES/dolphin.mo +share/locale/eo/LC_MESSAGES/dolphin_servicemenuinstaller.mo share/locale/es/LC_MESSAGES/dolphin.mo share/locale/es/LC_MESSAGES/dolphin_servicemenuinstaller.mo share/locale/et/LC_MESSAGES/dolphin.mo share/locale/et/LC_MESSAGES/dolphin_servicemenuinstaller.mo share/locale/eu/LC_MESSAGES/dolphin.mo share/locale/eu/LC_MESSAGES/dolphin_servicemenuinstaller.mo share/locale/fa/LC_MESSAGES/dolphin.mo share/locale/fi/LC_MESSAGES/dolphin.mo share/locale/fi/LC_MESSAGES/dolphin_servicemenuinstaller.mo share/locale/fi/LC_SCRIPTS/dolphin/dolphin.js share/locale/fr/LC_MESSAGES/dolphin.mo share/locale/fr/LC_MESSAGES/dolphin_servicemenuinstaller.mo share/locale/fy/LC_MESSAGES/dolphin.mo share/locale/ga/LC_MESSAGES/dolphin.mo share/locale/gl/LC_MESSAGES/dolphin.mo share/locale/gl/LC_MESSAGES/dolphin_servicemenuinstaller.mo share/locale/gu/LC_MESSAGES/dolphin.mo share/locale/he/LC_MESSAGES/dolphin.mo share/locale/hi/LC_MESSAGES/dolphin.mo share/locale/hi/LC_MESSAGES/dolphin_servicemenuinstaller.mo share/locale/hne/LC_MESSAGES/dolphin.mo share/locale/hr/LC_MESSAGES/dolphin.mo share/locale/hsb/LC_MESSAGES/dolphin.mo share/locale/hu/LC_MESSAGES/dolphin.mo share/locale/hu/LC_MESSAGES/dolphin_servicemenuinstaller.mo share/locale/ia/LC_MESSAGES/dolphin.mo share/locale/ia/LC_MESSAGES/dolphin_servicemenuinstaller.mo share/locale/id/LC_MESSAGES/dolphin.mo share/locale/id/LC_MESSAGES/dolphin_servicemenuinstaller.mo share/locale/ie/LC_MESSAGES/dolphin.mo share/locale/ie/LC_MESSAGES/dolphin_servicemenuinstaller.mo share/locale/is/LC_MESSAGES/dolphin.mo share/locale/is/LC_MESSAGES/dolphin_servicemenuinstaller.mo share/locale/it/LC_MESSAGES/dolphin.mo share/locale/it/LC_MESSAGES/dolphin_servicemenuinstaller.mo share/locale/ja/LC_MESSAGES/dolphin.mo share/locale/ja/LC_MESSAGES/dolphin_servicemenuinstaller.mo share/locale/ka/LC_MESSAGES/dolphin.mo share/locale/ka/LC_MESSAGES/dolphin_servicemenuinstaller.mo share/locale/kk/LC_MESSAGES/dolphin.mo share/locale/km/LC_MESSAGES/dolphin.mo share/locale/kn/LC_MESSAGES/dolphin.mo share/locale/ko/LC_MESSAGES/dolphin.mo share/locale/ko/LC_MESSAGES/dolphin_servicemenuinstaller.mo share/locale/ku/LC_MESSAGES/dolphin.mo share/locale/lt/LC_MESSAGES/dolphin.mo share/locale/lt/LC_MESSAGES/dolphin_servicemenuinstaller.mo share/locale/lv/LC_MESSAGES/dolphin.mo share/locale/lv/LC_MESSAGES/dolphin_servicemenuinstaller.mo share/locale/mai/LC_MESSAGES/dolphin.mo share/locale/mk/LC_MESSAGES/dolphin.mo share/locale/ml/LC_MESSAGES/dolphin.mo share/locale/ml/LC_MESSAGES/dolphin_servicemenuinstaller.mo share/locale/mr/LC_MESSAGES/dolphin.mo share/locale/ms/LC_MESSAGES/dolphin.mo share/locale/my/LC_MESSAGES/dolphin.mo share/locale/my/LC_MESSAGES/dolphin_servicemenuinstaller.mo share/locale/nb/LC_MESSAGES/dolphin.mo share/locale/nb/LC_MESSAGES/dolphin_servicemenuinstaller.mo share/locale/nds/LC_MESSAGES/dolphin.mo share/locale/ne/LC_MESSAGES/dolphin.mo share/locale/nl/LC_MESSAGES/dolphin.mo share/locale/nl/LC_MESSAGES/dolphin_servicemenuinstaller.mo share/locale/nn/LC_MESSAGES/dolphin.mo share/locale/nn/LC_MESSAGES/dolphin_servicemenuinstaller.mo share/locale/oc/LC_MESSAGES/dolphin.mo share/locale/or/LC_MESSAGES/dolphin.mo share/locale/pa/LC_MESSAGES/dolphin.mo share/locale/pa/LC_MESSAGES/dolphin_servicemenuinstaller.mo share/locale/pl/LC_MESSAGES/dolphin.mo share/locale/pl/LC_MESSAGES/dolphin_servicemenuinstaller.mo share/locale/pt/LC_MESSAGES/dolphin.mo share/locale/pt/LC_MESSAGES/dolphin_servicemenuinstaller.mo share/locale/pt_BR/LC_MESSAGES/dolphin.mo share/locale/pt_BR/LC_MESSAGES/dolphin_servicemenuinstaller.mo share/locale/ro/LC_MESSAGES/dolphin.mo share/locale/ro/LC_MESSAGES/dolphin_servicemenuinstaller.mo share/locale/ru/LC_MESSAGES/dolphin.mo share/locale/ru/LC_MESSAGES/dolphin_servicemenuinstaller.mo share/locale/se/LC_MESSAGES/dolphin.mo share/locale/si/LC_MESSAGES/dolphin.mo share/locale/sk/LC_MESSAGES/dolphin.mo share/locale/sk/LC_MESSAGES/dolphin_servicemenuinstaller.mo share/locale/sl/LC_MESSAGES/dolphin.mo share/locale/sl/LC_MESSAGES/dolphin_servicemenuinstaller.mo share/locale/sq/LC_MESSAGES/dolphin.mo share/locale/sr/LC_MESSAGES/dolphin.mo share/locale/sr@ijekavian/LC_MESSAGES/dolphin.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/dolphin.mo share/locale/sr@latin/LC_MESSAGES/dolphin.mo share/locale/sv/LC_MESSAGES/dolphin.mo share/locale/sv/LC_MESSAGES/dolphin_servicemenuinstaller.mo share/locale/ta/LC_MESSAGES/dolphin.mo share/locale/ta/LC_MESSAGES/dolphin_servicemenuinstaller.mo share/locale/te/LC_MESSAGES/dolphin.mo share/locale/tg/LC_MESSAGES/dolphin.mo share/locale/th/LC_MESSAGES/dolphin.mo share/locale/tr/LC_MESSAGES/dolphin.mo share/locale/tr/LC_MESSAGES/dolphin_servicemenuinstaller.mo share/locale/ug/LC_MESSAGES/dolphin.mo share/locale/uk/LC_MESSAGES/dolphin.mo share/locale/uk/LC_MESSAGES/dolphin_servicemenuinstaller.mo share/locale/uz/LC_MESSAGES/dolphin.mo share/locale/uz@cyrillic/LC_MESSAGES/dolphin.mo share/locale/vi/LC_MESSAGES/dolphin.mo share/locale/vi/LC_MESSAGES/dolphin_servicemenuinstaller.mo share/locale/wa/LC_MESSAGES/dolphin.mo share/locale/zh_CN/LC_MESSAGES/dolphin.mo share/locale/zh_CN/LC_MESSAGES/dolphin_servicemenuinstaller.mo share/locale/zh_TW/LC_MESSAGES/dolphin.mo share/locale/zh_TW/LC_MESSAGES/dolphin_servicemenuinstaller.mo share/metainfo/org.kde.dolphin.appdata.xml share/qlogging-categories5/dolphin.categories +share/zsh/site-functions/_dolphin diff --git a/x11-fm/konqueror/distinfo b/x11-fm/konqueror/distinfo index bb5f3e082d46..d80ff464b6b9 100644 --- a/x11-fm/konqueror/distinfo +++ b/x11-fm/konqueror/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1677828091 -SHA256 (KDE/release-service/22.12.3/konqueror-22.12.3.tar.xz) = b0275056ba2a8635b0590c6970015e0ca39d9b8f1662fc1afe924d2d47fc9ad4 -SIZE (KDE/release-service/22.12.3/konqueror-22.12.3.tar.xz) = 8494652 +TIMESTAMP = 1681548446 +SHA256 (KDE/release-service/23.04.0/konqueror-23.04.0.tar.xz) = e7583799d4c87173cbe5fb3269aa7693ef5ab15bd7947d46dc75fd2eec4edb86 +SIZE (KDE/release-service/23.04.0/konqueror-23.04.0.tar.xz) = 8490688 diff --git a/x11-fm/konqueror/pkg-plist b/x11-fm/konqueror/pkg-plist index eabd153406dc..39a8c4714c61 100644 --- a/x11-fm/konqueror/pkg-plist +++ b/x11-fm/konqueror/pkg-plist @@ -1,1869 +1,1870 @@ bin/fsview bin/kcreatewebarchive bin/kfmclient bin/konqueror etc/xdg/autostart/konqy_preload.desktop etc/xdg/konqsidebartngrc etc/xdg/translaterc include/KF5/konq_events.h include/KF5/konq_historyentry.h include/KF5/konq_historyprovider.h include/KF5/konq_kpart_plugin.h include/KF5/konq_popupmenu.h include/KF5/konq_version.h include/KF5/libkonq_export.h include/konqsidebarplugin.h lib/cmake/KF5Konq/KF5KonqConfig.cmake lib/cmake/KF5Konq/KF5KonqConfigVersion.cmake lib/cmake/KF5Konq/KF5KonqTargets-%%CMAKE_BUILD_TYPE%%.cmake lib/cmake/KF5Konq/KF5KonqTargets.cmake lib/libKF5Konq.so lib/libKF5Konq.so.5.97.0 lib/libKF5Konq.so.6 lib/libkdeinit5_kfmclient.so lib/libkdeinit5_konqueror.so lib/libkonqsidebarplugin.so lib/libkonqsidebarplugin.so.%%KDE_APPLICATIONS_VERSION%% lib/libkonqsidebarplugin.so.5 lib/libkonquerorprivate.so.%%KDE_APPLICATIONS_VERSION%% lib/libkonquerorprivate.so.5 lib/libkwebenginepart.so %%QT_PLUGINDIR%%/akregatorkonqfeedicon.so %%QT_PLUGINDIR%%/autorefresh.so %%QT_PLUGINDIR%%/babelfishplugin.so %%QT_PLUGINDIR%%/dolphinpart/kpartplugins/dirfilterplugin.so %%QT_PLUGINDIR%%/dolphinpart/kpartplugins/kimgallery.so %%QT_PLUGINDIR%%/dolphinpart/kpartplugins/konq_shellcmdplugin.so %%QT_PLUGINDIR%%/kf5/kfileitemaction/akregatorplugin.so %%QT_PLUGINDIR%%/kf5/parts/fsviewpart.so %%QT_PLUGINDIR%%/kf5/parts/konq_sidebar.so %%QT_PLUGINDIR%%/kf5/parts/webenginepart.so %%QT_PLUGINDIR%%/khtml/kpartplugins/akregatorkonqfeediconkhtml_kpartplugins.so %%QT_PLUGINDIR%%/khtml/kpartplugins/autorefreshkhtml_kpartplugins.so %%QT_PLUGINDIR%%/khtml/kpartplugins/babelfishpluginkhtml_kpartplugins.so %%QT_PLUGINDIR%%/khtml/kpartplugins/khtmlsettingspluginkhtml_kpartplugins.so %%QT_PLUGINDIR%%/khtml/kpartplugins/khtmlttspluginkhtml_kpartplugins.so %%QT_PLUGINDIR%%/khtml/kpartplugins/konqueror_kget_browser_integrationkhtml_kpartplugins.so %%QT_PLUGINDIR%%/khtml/kpartplugins/uachangerpluginkhtml_kpartplugins.so %%QT_PLUGINDIR%%/khtml/kpartplugins/webarchiverpluginkhtml_kpartplugins.so %%QT_PLUGINDIR%%/khtmlsettingsplugin.so %%QT_PLUGINDIR%%/khtmlttsplugin.so %%QT_PLUGINDIR%%/konqsidebar_bookmarks.so %%QT_PLUGINDIR%%/konqsidebar_history.so %%QT_PLUGINDIR%%/konqsidebar_places.so %%QT_PLUGINDIR%%/konqsidebar_tree.so %%QT_PLUGINDIR%%/konqueror/kpartplugins/searchbarplugin.so %%QT_PLUGINDIR%%/konqueror_kcms/kcm_bookmarks.so %%QT_PLUGINDIR%%/konqueror_kcms/kcm_history.so %%QT_PLUGINDIR%%/konqueror_kcms/kcm_konq.so %%QT_PLUGINDIR%%/konqueror_kcms/kcm_performance.so %%QT_PLUGINDIR%%/konqueror_kcms/khtml_appearance.so %%QT_PLUGINDIR%%/konqueror_kcms/khtml_behavior.so +%%QT_PLUGINDIR%%/konqueror_kcms/khtml_cache.so %%QT_PLUGINDIR%%/konqueror_kcms/khtml_filter.so %%QT_PLUGINDIR%%/konqueror_kcms/khtml_general.so %%QT_PLUGINDIR%%/konqueror_kcms/khtml_java_js.so %%QT_PLUGINDIR%%/konqueror_kget_browser_integration.so %%QT_PLUGINDIR%%/kwebkitpart/kpartplugins/akregatorkonqfeediconkwebkitpart_kpartplugins.so %%QT_PLUGINDIR%%/kwebkitpart/kpartplugins/autorefreshkwebkitpart_kpartplugins.so %%QT_PLUGINDIR%%/kwebkitpart/kpartplugins/babelfishpluginkwebkitpart_kpartplugins.so %%QT_PLUGINDIR%%/kwebkitpart/kpartplugins/khtmlsettingspluginkwebkitpart_kpartplugins.so %%QT_PLUGINDIR%%/kwebkitpart/kpartplugins/khtmlttspluginkwebkitpart_kpartplugins.so %%QT_PLUGINDIR%%/kwebkitpart/kpartplugins/konqueror_kget_browser_integrationkwebkitpart_kpartplugins.so %%QT_PLUGINDIR%%/kwebkitpart/kpartplugins/uachangerpluginkwebkitpart_kpartplugins.so %%QT_PLUGINDIR%%/kwebkitpart/kpartplugins/webarchiverpluginkwebkitpart_kpartplugins.so %%QT_PLUGINDIR%%/uachangerplugin.so %%QT_PLUGINDIR%%/webarchiverplugin.so %%QT_PLUGINDIR%%/webarchivethumbnail.so %%QT_PLUGINDIR%%/webenginepart/kpartplugins/akregatorkonqfeediconwebenginepart_kpartplugins.so %%QT_PLUGINDIR%%/webenginepart/kpartplugins/autorefreshwebenginepart_kpartplugins.so %%QT_PLUGINDIR%%/webenginepart/kpartplugins/babelfishpluginwebenginepart_kpartplugins.so %%QT_PLUGINDIR%%/webenginepart/kpartplugins/khtmlsettingspluginwebenginepart_kpartplugins.so %%QT_PLUGINDIR%%/webenginepart/kpartplugins/khtmlttspluginwebenginepart_kpartplugins.so %%QT_PLUGINDIR%%/webenginepart/kpartplugins/konqueror_kget_browser_integrationwebenginepart_kpartplugins.so %%QT_PLUGINDIR%%/webenginepart/kpartplugins/uachangerpluginwebenginepart_kpartplugins.so %%QT_PLUGINDIR%%/webenginepart/kpartplugins/webarchiverpluginwebenginepart_kpartplugins.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/applications/org.kde.konqueror.desktop share/config.kcfg/kcreatewebarchive.kcfg share/config.kcfg/konqueror.kcfg share/dbus-1/interfaces/org.kde.Konqueror.Main.xml share/dbus-1/interfaces/org.kde.Konqueror.MainWindow.xml share/icons/hicolor/128x128/apps/konqueror.png share/icons/hicolor/128x128/apps/webengine.png share/icons/hicolor/16x16/actions/babelfish.png share/icons/hicolor/16x16/actions/imagegallery.png share/icons/hicolor/16x16/actions/webarchiver.png share/icons/hicolor/16x16/apps/konqueror.png share/icons/hicolor/16x16/apps/webengine.png -share/icons/hicolor/%%KDE_APPLICATIONS_VERSION_SHORT%%x%%KDE_APPLICATIONS_VERSION_SHORT%%/actions/babelfish.png -share/icons/hicolor/%%KDE_APPLICATIONS_VERSION_SHORT%%x%%KDE_APPLICATIONS_VERSION_SHORT%%/actions/imagegallery.png -share/icons/hicolor/%%KDE_APPLICATIONS_VERSION_SHORT%%x%%KDE_APPLICATIONS_VERSION_SHORT%%/actions/webarchiver.png -share/icons/hicolor/%%KDE_APPLICATIONS_VERSION_SHORT%%x%%KDE_APPLICATIONS_VERSION_SHORT%%/apps/fsview.png -share/icons/hicolor/%%KDE_APPLICATIONS_VERSION_SHORT%%x%%KDE_APPLICATIONS_VERSION_SHORT%%/apps/konqueror.png -share/icons/hicolor/%%KDE_APPLICATIONS_VERSION_SHORT%%x%%KDE_APPLICATIONS_VERSION_SHORT%%/apps/webengine.png +share/icons/hicolor/22x22/actions/babelfish.png +share/icons/hicolor/22x22/actions/imagegallery.png +share/icons/hicolor/22x22/actions/webarchiver.png +share/icons/hicolor/22x22/apps/fsview.png +share/icons/hicolor/22x22/apps/konqueror.png +share/icons/hicolor/22x22/apps/webengine.png share/icons/hicolor/32x32/apps/fsview.png share/icons/hicolor/32x32/apps/konqueror.png share/icons/hicolor/32x32/apps/webengine.png share/icons/hicolor/48x48/apps/konqueror.png share/icons/hicolor/48x48/apps/webengine.png share/icons/hicolor/64x64/apps/konqueror.png share/icons/hicolor/64x64/apps/webengine.png share/kcmcss/template.css share/kconf_update/webenginepart.upd share/kcontrol/pics/onlyone.png share/kcontrol/pics/overlapping.png share/kf5/kbookmark/directory_bookmarkbar.desktop share/konqsidebartng/entries/bookmarks.desktop share/konqsidebartng/entries/fonts.desktop share/konqsidebartng/entries/history.desktop share/konqsidebartng/entries/home.desktop share/konqsidebartng/entries/places.desktop share/konqsidebartng/entries/remote.desktop share/konqsidebartng/entries/root.desktop share/konqsidebartng/entries/services.desktop share/konqsidebartng/plugins/konqsidebar_bookmarks.desktop share/konqsidebartng/plugins/konqsidebar_history.desktop share/konqsidebartng/plugins/konqsidebar_places.desktop share/konqsidebartng/plugins/konqsidebar_tree.desktop %%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/%%KDE_APPLICATIONS_VERSION_SHORT%%x%%KDE_APPLICATIONS_VERSION_SHORT%%/actions/google.png +%%DATADIR%%/icons/hicolor/22x22/actions/google.png %%DATADIR%%/icons/hicolor/32x32/actions/google.png %%DATADIR%%/icons/hicolor/48x48/actions/google.png %%DATADIR%%/icons/hicolor/64x64/actions/google.png %%DATADIR%%/icons/hicolor/scalable/actions/google.svgz %%DATADIR%%/partsrcfiles/akregatorkonqfeedicon.rc %%DATADIR%%/partsrcfiles/autorefresh.rc %%DATADIR%%/partsrcfiles/babelfishplugin.rc %%DATADIR%%/partsrcfiles/dirfilterplugin.rc %%DATADIR%%/partsrcfiles/khtmlsettingsplugin.rc %%DATADIR%%/partsrcfiles/khtmlttsplugin.rc %%DATADIR%%/partsrcfiles/kimgallery.rc %%DATADIR%%/partsrcfiles/konq_shellcmdplugin.rc %%DATADIR%%/partsrcfiles/konqueror_kget_browser_integration.rc %%DATADIR%%/partsrcfiles/searchbarplugin.rc %%DATADIR%%/partsrcfiles/uachangerplugin.rc %%DATADIR%%/partsrcfiles/webarchiverplugin.rc %%DATADIR%%/pics/indicator_connect.png %%DATADIR%%/pics/indicator_empty.png %%DATADIR%%/pics/indicator_noconnect.png %%DATADIR%%/pics/indicator_viewactive.png share/kservices5/fsview_part.desktop share/kservices5/konq_sidebartng.desktop share/kservices5/org.kde.konqueror.desktop share/kservices5/webarchivethumbnail.desktop share/kservices5/webenginepart.desktop share/kxmlgui5/fsview/fsview_part.rc share/kxmlgui5/webenginepart/webenginepart.rc share/locale/af/LC_MESSAGES/babelfish.mo share/locale/af/LC_MESSAGES/dirfilterplugin.mo share/locale/af/LC_MESSAGES/imgalleryplugin.mo share/locale/af/LC_MESSAGES/kcmbookmarks.mo share/locale/af/LC_MESSAGES/kcmkonq.mo share/locale/af/LC_MESSAGES/kcmkonqhtml.mo share/locale/af/LC_MESSAGES/kcmperformance.mo share/locale/af/LC_MESSAGES/kfmclient.mo share/locale/af/LC_MESSAGES/kgetplugin.mo share/locale/af/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/af/LC_MESSAGES/khtmltts.mo share/locale/af/LC_MESSAGES/konqueror.mo share/locale/af/LC_MESSAGES/kshellcmdplugin.mo share/locale/af/LC_MESSAGES/libkonq.mo share/locale/af/LC_MESSAGES/uachangerplugin.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/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/kgetplugin.mo share/locale/ar/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/ar/LC_MESSAGES/khtmltts.mo share/locale/ar/LC_MESSAGES/konqueror.mo share/locale/ar/LC_MESSAGES/kshellcmdplugin.mo share/locale/ar/LC_MESSAGES/libkonq.mo share/locale/ar/LC_MESSAGES/searchbarplugin.mo share/locale/ar/LC_MESSAGES/uachangerplugin.mo share/locale/ar/LC_MESSAGES/webenginepart.mo share/locale/be/LC_MESSAGES/akregator_konqplugin.mo share/locale/be/LC_MESSAGES/autorefresh.mo share/locale/be/LC_MESSAGES/babelfish.mo share/locale/be/LC_MESSAGES/dirfilterplugin.mo share/locale/be/LC_MESSAGES/fsview.mo share/locale/be/LC_MESSAGES/imgalleryplugin.mo share/locale/be/LC_MESSAGES/kcmbookmarks.mo share/locale/be/LC_MESSAGES/kcmkonq.mo share/locale/be/LC_MESSAGES/kcmkonqhtml.mo share/locale/be/LC_MESSAGES/kcmperformance.mo share/locale/be/LC_MESSAGES/kfmclient.mo share/locale/be/LC_MESSAGES/kgetplugin.mo share/locale/be/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/be/LC_MESSAGES/khtmltts.mo share/locale/be/LC_MESSAGES/konqueror.mo share/locale/be/LC_MESSAGES/kshellcmdplugin.mo share/locale/be/LC_MESSAGES/libkonq.mo share/locale/be/LC_MESSAGES/searchbarplugin.mo share/locale/be/LC_MESSAGES/uachangerplugin.mo share/locale/be@latin/LC_MESSAGES/kcmkonq.mo share/locale/be@latin/LC_MESSAGES/kfmclient.mo share/locale/be@latin/LC_MESSAGES/khtmltts.mo share/locale/be@latin/LC_MESSAGES/konqueror.mo share/locale/be@latin/LC_MESSAGES/kshellcmdplugin.mo share/locale/be@latin/LC_MESSAGES/libkonq.mo share/locale/bg/LC_MESSAGES/akregator_konqplugin.mo share/locale/bg/LC_MESSAGES/autorefresh.mo share/locale/bg/LC_MESSAGES/babelfish.mo share/locale/bg/LC_MESSAGES/dirfilterplugin.mo share/locale/bg/LC_MESSAGES/fsview.mo share/locale/bg/LC_MESSAGES/imgalleryplugin.mo share/locale/bg/LC_MESSAGES/kcmbookmarks.mo share/locale/bg/LC_MESSAGES/kcmkonq.mo share/locale/bg/LC_MESSAGES/kcmkonqhtml.mo share/locale/bg/LC_MESSAGES/kcmperformance.mo share/locale/bg/LC_MESSAGES/kfmclient.mo share/locale/bg/LC_MESSAGES/kgetplugin.mo share/locale/bg/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/bg/LC_MESSAGES/khtmltts.mo share/locale/bg/LC_MESSAGES/konqueror.mo share/locale/bg/LC_MESSAGES/kshellcmdplugin.mo share/locale/bg/LC_MESSAGES/libkonq.mo share/locale/bg/LC_MESSAGES/searchbarplugin.mo share/locale/bg/LC_MESSAGES/uachangerplugin.mo share/locale/bg/LC_MESSAGES/webarchiver.mo share/locale/bg/LC_MESSAGES/webenginepart.mo share/locale/bn/LC_MESSAGES/babelfish.mo share/locale/bn/LC_MESSAGES/kcmbookmarks.mo share/locale/bn/LC_MESSAGES/kcmkonq.mo share/locale/bn/LC_MESSAGES/kcmkonqhtml.mo share/locale/bn/LC_MESSAGES/kfmclient.mo share/locale/bn/LC_MESSAGES/konqueror.mo share/locale/bn/LC_MESSAGES/kshellcmdplugin.mo share/locale/bn/LC_MESSAGES/libkonq.mo share/locale/bn_IN/LC_MESSAGES/kcmbookmarks.mo share/locale/bn_IN/LC_MESSAGES/kcmkonq.mo share/locale/bn_IN/LC_MESSAGES/kcmkonqhtml.mo share/locale/bn_IN/LC_MESSAGES/kfmclient.mo share/locale/bn_IN/LC_MESSAGES/khtmltts.mo share/locale/bn_IN/LC_MESSAGES/konqueror.mo share/locale/bn_IN/LC_MESSAGES/kshellcmdplugin.mo share/locale/bn_IN/LC_MESSAGES/libkonq.mo share/locale/br/LC_MESSAGES/autorefresh.mo share/locale/br/LC_MESSAGES/babelfish.mo share/locale/br/LC_MESSAGES/dirfilterplugin.mo share/locale/br/LC_MESSAGES/fsview.mo share/locale/br/LC_MESSAGES/imgalleryplugin.mo share/locale/br/LC_MESSAGES/kcmbookmarks.mo share/locale/br/LC_MESSAGES/kcmkonq.mo share/locale/br/LC_MESSAGES/kcmkonqhtml.mo share/locale/br/LC_MESSAGES/kcmperformance.mo share/locale/br/LC_MESSAGES/kfmclient.mo share/locale/br/LC_MESSAGES/kgetplugin.mo share/locale/br/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/br/LC_MESSAGES/khtmltts.mo share/locale/br/LC_MESSAGES/konqueror.mo share/locale/br/LC_MESSAGES/kshellcmdplugin.mo share/locale/br/LC_MESSAGES/libkonq.mo share/locale/br/LC_MESSAGES/searchbarplugin.mo share/locale/br/LC_MESSAGES/uachangerplugin.mo share/locale/bs/LC_MESSAGES/akregator_konqplugin.mo share/locale/bs/LC_MESSAGES/autorefresh.mo share/locale/bs/LC_MESSAGES/babelfish.mo share/locale/bs/LC_MESSAGES/dirfilterplugin.mo share/locale/bs/LC_MESSAGES/fsview.mo share/locale/bs/LC_MESSAGES/imgalleryplugin.mo share/locale/bs/LC_MESSAGES/kcmbookmarks.mo share/locale/bs/LC_MESSAGES/kcmkonq.mo share/locale/bs/LC_MESSAGES/kcmkonqhtml.mo share/locale/bs/LC_MESSAGES/kcmperformance.mo share/locale/bs/LC_MESSAGES/kfmclient.mo share/locale/bs/LC_MESSAGES/kgetplugin.mo share/locale/bs/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/bs/LC_MESSAGES/khtmltts.mo share/locale/bs/LC_MESSAGES/konqueror.mo share/locale/bs/LC_MESSAGES/kshellcmdplugin.mo share/locale/bs/LC_MESSAGES/libkonq.mo share/locale/bs/LC_MESSAGES/searchbarplugin.mo share/locale/bs/LC_MESSAGES/uachangerplugin.mo share/locale/bs/LC_MESSAGES/webenginepart.mo share/locale/ca/LC_MESSAGES/akregator_konqplugin.mo share/locale/ca/LC_MESSAGES/autorefresh.mo share/locale/ca/LC_MESSAGES/babelfish.mo share/locale/ca/LC_MESSAGES/dirfilterplugin.mo share/locale/ca/LC_MESSAGES/fsview.mo share/locale/ca/LC_MESSAGES/imgalleryplugin.mo share/locale/ca/LC_MESSAGES/kcmbookmarks.mo share/locale/ca/LC_MESSAGES/kcmkonq.mo share/locale/ca/LC_MESSAGES/kcmkonqhtml.mo share/locale/ca/LC_MESSAGES/kcmperformance.mo share/locale/ca/LC_MESSAGES/kfmclient.mo share/locale/ca/LC_MESSAGES/kgetplugin.mo share/locale/ca/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/ca/LC_MESSAGES/khtmltts.mo share/locale/ca/LC_MESSAGES/konqueror.mo share/locale/ca/LC_MESSAGES/kshellcmdplugin.mo share/locale/ca/LC_MESSAGES/libkonq.mo share/locale/ca/LC_MESSAGES/searchbarplugin.mo share/locale/ca/LC_MESSAGES/uachangerplugin.mo share/locale/ca/LC_MESSAGES/webarchiver.mo share/locale/ca/LC_MESSAGES/webenginepart.mo share/locale/ca@valencia/LC_MESSAGES/akregator_konqplugin.mo share/locale/ca@valencia/LC_MESSAGES/autorefresh.mo share/locale/ca@valencia/LC_MESSAGES/babelfish.mo share/locale/ca@valencia/LC_MESSAGES/dirfilterplugin.mo share/locale/ca@valencia/LC_MESSAGES/fsview.mo share/locale/ca@valencia/LC_MESSAGES/imgalleryplugin.mo share/locale/ca@valencia/LC_MESSAGES/kcmbookmarks.mo share/locale/ca@valencia/LC_MESSAGES/kcmkonq.mo share/locale/ca@valencia/LC_MESSAGES/kcmkonqhtml.mo share/locale/ca@valencia/LC_MESSAGES/kcmperformance.mo share/locale/ca@valencia/LC_MESSAGES/kfmclient.mo share/locale/ca@valencia/LC_MESSAGES/kgetplugin.mo share/locale/ca@valencia/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/ca@valencia/LC_MESSAGES/khtmltts.mo share/locale/ca@valencia/LC_MESSAGES/konqueror.mo share/locale/ca@valencia/LC_MESSAGES/kshellcmdplugin.mo share/locale/ca@valencia/LC_MESSAGES/libkonq.mo share/locale/ca@valencia/LC_MESSAGES/searchbarplugin.mo share/locale/ca@valencia/LC_MESSAGES/uachangerplugin.mo share/locale/ca@valencia/LC_MESSAGES/webarchiver.mo share/locale/ca@valencia/LC_MESSAGES/webenginepart.mo share/locale/cs/LC_MESSAGES/akregator_konqplugin.mo share/locale/cs/LC_MESSAGES/autorefresh.mo share/locale/cs/LC_MESSAGES/babelfish.mo share/locale/cs/LC_MESSAGES/dirfilterplugin.mo share/locale/cs/LC_MESSAGES/fsview.mo share/locale/cs/LC_MESSAGES/imgalleryplugin.mo share/locale/cs/LC_MESSAGES/kcmbookmarks.mo share/locale/cs/LC_MESSAGES/kcmkonq.mo share/locale/cs/LC_MESSAGES/kcmkonqhtml.mo share/locale/cs/LC_MESSAGES/kcmperformance.mo share/locale/cs/LC_MESSAGES/kfmclient.mo share/locale/cs/LC_MESSAGES/kgetplugin.mo share/locale/cs/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/cs/LC_MESSAGES/khtmltts.mo share/locale/cs/LC_MESSAGES/konqueror.mo share/locale/cs/LC_MESSAGES/kshellcmdplugin.mo share/locale/cs/LC_MESSAGES/libkonq.mo share/locale/cs/LC_MESSAGES/searchbarplugin.mo share/locale/cs/LC_MESSAGES/uachangerplugin.mo share/locale/cs/LC_MESSAGES/webarchiver.mo share/locale/cs/LC_MESSAGES/webenginepart.mo share/locale/csb/LC_MESSAGES/kcmbookmarks.mo share/locale/csb/LC_MESSAGES/kcmkonqhtml.mo share/locale/csb/LC_MESSAGES/kcmperformance.mo share/locale/csb/LC_MESSAGES/kfmclient.mo share/locale/csb/LC_MESSAGES/khtmltts.mo share/locale/csb/LC_MESSAGES/konqueror.mo share/locale/csb/LC_MESSAGES/kshellcmdplugin.mo share/locale/csb/LC_MESSAGES/libkonq.mo share/locale/cy/LC_MESSAGES/autorefresh.mo share/locale/cy/LC_MESSAGES/babelfish.mo share/locale/cy/LC_MESSAGES/dirfilterplugin.mo share/locale/cy/LC_MESSAGES/fsview.mo share/locale/cy/LC_MESSAGES/imgalleryplugin.mo share/locale/cy/LC_MESSAGES/kcmbookmarks.mo share/locale/cy/LC_MESSAGES/kcmkonq.mo share/locale/cy/LC_MESSAGES/kcmkonqhtml.mo share/locale/cy/LC_MESSAGES/kcmperformance.mo share/locale/cy/LC_MESSAGES/kfmclient.mo share/locale/cy/LC_MESSAGES/kgetplugin.mo share/locale/cy/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/cy/LC_MESSAGES/khtmltts.mo share/locale/cy/LC_MESSAGES/konqueror.mo share/locale/cy/LC_MESSAGES/kshellcmdplugin.mo share/locale/cy/LC_MESSAGES/libkonq.mo share/locale/cy/LC_MESSAGES/searchbarplugin.mo share/locale/cy/LC_MESSAGES/uachangerplugin.mo share/locale/da/LC_MESSAGES/akregator_konqplugin.mo share/locale/da/LC_MESSAGES/autorefresh.mo share/locale/da/LC_MESSAGES/babelfish.mo share/locale/da/LC_MESSAGES/dirfilterplugin.mo share/locale/da/LC_MESSAGES/fsview.mo share/locale/da/LC_MESSAGES/imgalleryplugin.mo share/locale/da/LC_MESSAGES/kcmbookmarks.mo share/locale/da/LC_MESSAGES/kcmkonq.mo share/locale/da/LC_MESSAGES/kcmkonqhtml.mo share/locale/da/LC_MESSAGES/kcmperformance.mo share/locale/da/LC_MESSAGES/kfmclient.mo share/locale/da/LC_MESSAGES/kgetplugin.mo share/locale/da/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/da/LC_MESSAGES/khtmltts.mo share/locale/da/LC_MESSAGES/konqueror.mo share/locale/da/LC_MESSAGES/kshellcmdplugin.mo share/locale/da/LC_MESSAGES/libkonq.mo share/locale/da/LC_MESSAGES/searchbarplugin.mo share/locale/da/LC_MESSAGES/uachangerplugin.mo share/locale/da/LC_MESSAGES/webenginepart.mo share/locale/de/LC_MESSAGES/akregator_konqplugin.mo share/locale/de/LC_MESSAGES/autorefresh.mo share/locale/de/LC_MESSAGES/babelfish.mo share/locale/de/LC_MESSAGES/dirfilterplugin.mo share/locale/de/LC_MESSAGES/fsview.mo share/locale/de/LC_MESSAGES/imgalleryplugin.mo share/locale/de/LC_MESSAGES/kcmbookmarks.mo share/locale/de/LC_MESSAGES/kcmkonq.mo share/locale/de/LC_MESSAGES/kcmkonqhtml.mo share/locale/de/LC_MESSAGES/kcmperformance.mo share/locale/de/LC_MESSAGES/kfmclient.mo share/locale/de/LC_MESSAGES/kgetplugin.mo share/locale/de/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/de/LC_MESSAGES/khtmltts.mo share/locale/de/LC_MESSAGES/konqueror.mo share/locale/de/LC_MESSAGES/kshellcmdplugin.mo share/locale/de/LC_MESSAGES/libkonq.mo share/locale/de/LC_MESSAGES/searchbarplugin.mo share/locale/de/LC_MESSAGES/uachangerplugin.mo share/locale/de/LC_MESSAGES/webarchiver.mo share/locale/de/LC_MESSAGES/webenginepart.mo share/locale/el/LC_MESSAGES/akregator_konqplugin.mo share/locale/el/LC_MESSAGES/autorefresh.mo share/locale/el/LC_MESSAGES/babelfish.mo share/locale/el/LC_MESSAGES/dirfilterplugin.mo share/locale/el/LC_MESSAGES/fsview.mo share/locale/el/LC_MESSAGES/imgalleryplugin.mo share/locale/el/LC_MESSAGES/kcmbookmarks.mo share/locale/el/LC_MESSAGES/kcmkonq.mo share/locale/el/LC_MESSAGES/kcmkonqhtml.mo share/locale/el/LC_MESSAGES/kcmperformance.mo share/locale/el/LC_MESSAGES/kfmclient.mo share/locale/el/LC_MESSAGES/kgetplugin.mo share/locale/el/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/el/LC_MESSAGES/khtmltts.mo share/locale/el/LC_MESSAGES/konqueror.mo share/locale/el/LC_MESSAGES/kshellcmdplugin.mo share/locale/el/LC_MESSAGES/libkonq.mo share/locale/el/LC_MESSAGES/searchbarplugin.mo share/locale/el/LC_MESSAGES/uachangerplugin.mo share/locale/el/LC_MESSAGES/webarchiver.mo share/locale/el/LC_MESSAGES/webenginepart.mo share/locale/en_GB/LC_MESSAGES/akregator_konqplugin.mo share/locale/en_GB/LC_MESSAGES/autorefresh.mo share/locale/en_GB/LC_MESSAGES/babelfish.mo share/locale/en_GB/LC_MESSAGES/dirfilterplugin.mo share/locale/en_GB/LC_MESSAGES/fsview.mo share/locale/en_GB/LC_MESSAGES/imgalleryplugin.mo share/locale/en_GB/LC_MESSAGES/kcmbookmarks.mo share/locale/en_GB/LC_MESSAGES/kcmkonq.mo share/locale/en_GB/LC_MESSAGES/kcmkonqhtml.mo share/locale/en_GB/LC_MESSAGES/kcmperformance.mo share/locale/en_GB/LC_MESSAGES/kfmclient.mo share/locale/en_GB/LC_MESSAGES/kgetplugin.mo share/locale/en_GB/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/en_GB/LC_MESSAGES/khtmltts.mo share/locale/en_GB/LC_MESSAGES/konqueror.mo share/locale/en_GB/LC_MESSAGES/kshellcmdplugin.mo share/locale/en_GB/LC_MESSAGES/libkonq.mo share/locale/en_GB/LC_MESSAGES/searchbarplugin.mo share/locale/en_GB/LC_MESSAGES/uachangerplugin.mo share/locale/en_GB/LC_MESSAGES/webarchiver.mo share/locale/en_GB/LC_MESSAGES/webenginepart.mo share/locale/eo/LC_MESSAGES/akregator_konqplugin.mo share/locale/eo/LC_MESSAGES/autorefresh.mo share/locale/eo/LC_MESSAGES/babelfish.mo share/locale/eo/LC_MESSAGES/dirfilterplugin.mo share/locale/eo/LC_MESSAGES/fsview.mo share/locale/eo/LC_MESSAGES/imgalleryplugin.mo share/locale/eo/LC_MESSAGES/kcmbookmarks.mo share/locale/eo/LC_MESSAGES/kcmkonq.mo share/locale/eo/LC_MESSAGES/kcmkonqhtml.mo share/locale/eo/LC_MESSAGES/kcmperformance.mo share/locale/eo/LC_MESSAGES/kfmclient.mo share/locale/eo/LC_MESSAGES/kgetplugin.mo share/locale/eo/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/eo/LC_MESSAGES/khtmltts.mo share/locale/eo/LC_MESSAGES/konqueror.mo share/locale/eo/LC_MESSAGES/kshellcmdplugin.mo share/locale/eo/LC_MESSAGES/libkonq.mo share/locale/eo/LC_MESSAGES/searchbarplugin.mo share/locale/eo/LC_MESSAGES/uachangerplugin.mo share/locale/eo/LC_MESSAGES/webenginepart.mo share/locale/es/LC_MESSAGES/akregator_konqplugin.mo share/locale/es/LC_MESSAGES/autorefresh.mo share/locale/es/LC_MESSAGES/babelfish.mo share/locale/es/LC_MESSAGES/dirfilterplugin.mo share/locale/es/LC_MESSAGES/fsview.mo share/locale/es/LC_MESSAGES/imgalleryplugin.mo share/locale/es/LC_MESSAGES/kcmbookmarks.mo share/locale/es/LC_MESSAGES/kcmkonq.mo share/locale/es/LC_MESSAGES/kcmkonqhtml.mo share/locale/es/LC_MESSAGES/kcmperformance.mo share/locale/es/LC_MESSAGES/kfmclient.mo share/locale/es/LC_MESSAGES/kgetplugin.mo share/locale/es/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/es/LC_MESSAGES/khtmltts.mo share/locale/es/LC_MESSAGES/konqueror.mo share/locale/es/LC_MESSAGES/kshellcmdplugin.mo share/locale/es/LC_MESSAGES/libkonq.mo share/locale/es/LC_MESSAGES/searchbarplugin.mo share/locale/es/LC_MESSAGES/uachangerplugin.mo share/locale/es/LC_MESSAGES/webarchiver.mo share/locale/es/LC_MESSAGES/webenginepart.mo share/locale/et/LC_MESSAGES/akregator_konqplugin.mo share/locale/et/LC_MESSAGES/autorefresh.mo share/locale/et/LC_MESSAGES/babelfish.mo share/locale/et/LC_MESSAGES/dirfilterplugin.mo share/locale/et/LC_MESSAGES/fsview.mo share/locale/et/LC_MESSAGES/imgalleryplugin.mo share/locale/et/LC_MESSAGES/kcmbookmarks.mo share/locale/et/LC_MESSAGES/kcmkonq.mo share/locale/et/LC_MESSAGES/kcmkonqhtml.mo share/locale/et/LC_MESSAGES/kcmperformance.mo share/locale/et/LC_MESSAGES/kfmclient.mo share/locale/et/LC_MESSAGES/kgetplugin.mo share/locale/et/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/et/LC_MESSAGES/khtmltts.mo share/locale/et/LC_MESSAGES/konqueror.mo share/locale/et/LC_MESSAGES/kshellcmdplugin.mo share/locale/et/LC_MESSAGES/libkonq.mo share/locale/et/LC_MESSAGES/searchbarplugin.mo share/locale/et/LC_MESSAGES/uachangerplugin.mo share/locale/et/LC_MESSAGES/webenginepart.mo share/locale/eu/LC_MESSAGES/akregator_konqplugin.mo share/locale/eu/LC_MESSAGES/autorefresh.mo share/locale/eu/LC_MESSAGES/babelfish.mo share/locale/eu/LC_MESSAGES/dirfilterplugin.mo share/locale/eu/LC_MESSAGES/fsview.mo share/locale/eu/LC_MESSAGES/imgalleryplugin.mo share/locale/eu/LC_MESSAGES/kcmbookmarks.mo share/locale/eu/LC_MESSAGES/kcmkonq.mo share/locale/eu/LC_MESSAGES/kcmkonqhtml.mo share/locale/eu/LC_MESSAGES/kcmperformance.mo share/locale/eu/LC_MESSAGES/kfmclient.mo share/locale/eu/LC_MESSAGES/kgetplugin.mo share/locale/eu/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/eu/LC_MESSAGES/khtmltts.mo share/locale/eu/LC_MESSAGES/konqueror.mo share/locale/eu/LC_MESSAGES/kshellcmdplugin.mo share/locale/eu/LC_MESSAGES/libkonq.mo share/locale/eu/LC_MESSAGES/searchbarplugin.mo share/locale/eu/LC_MESSAGES/uachangerplugin.mo share/locale/eu/LC_MESSAGES/webarchiver.mo share/locale/eu/LC_MESSAGES/webenginepart.mo share/locale/fa/LC_MESSAGES/akregator_konqplugin.mo share/locale/fa/LC_MESSAGES/autorefresh.mo share/locale/fa/LC_MESSAGES/babelfish.mo share/locale/fa/LC_MESSAGES/dirfilterplugin.mo share/locale/fa/LC_MESSAGES/fsview.mo share/locale/fa/LC_MESSAGES/imgalleryplugin.mo share/locale/fa/LC_MESSAGES/kcmbookmarks.mo share/locale/fa/LC_MESSAGES/kcmkonq.mo share/locale/fa/LC_MESSAGES/kcmkonqhtml.mo share/locale/fa/LC_MESSAGES/kcmperformance.mo share/locale/fa/LC_MESSAGES/kfmclient.mo share/locale/fa/LC_MESSAGES/kgetplugin.mo share/locale/fa/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/fa/LC_MESSAGES/khtmltts.mo share/locale/fa/LC_MESSAGES/konqueror.mo share/locale/fa/LC_MESSAGES/kshellcmdplugin.mo share/locale/fa/LC_MESSAGES/libkonq.mo share/locale/fa/LC_MESSAGES/searchbarplugin.mo share/locale/fa/LC_MESSAGES/uachangerplugin.mo share/locale/fa/LC_MESSAGES/webenginepart.mo share/locale/fi/LC_MESSAGES/akregator_konqplugin.mo share/locale/fi/LC_MESSAGES/autorefresh.mo share/locale/fi/LC_MESSAGES/babelfish.mo share/locale/fi/LC_MESSAGES/dirfilterplugin.mo share/locale/fi/LC_MESSAGES/fsview.mo share/locale/fi/LC_MESSAGES/imgalleryplugin.mo share/locale/fi/LC_MESSAGES/kcmbookmarks.mo share/locale/fi/LC_MESSAGES/kcmkonq.mo share/locale/fi/LC_MESSAGES/kcmkonqhtml.mo share/locale/fi/LC_MESSAGES/kcmperformance.mo share/locale/fi/LC_MESSAGES/kfmclient.mo share/locale/fi/LC_MESSAGES/kgetplugin.mo share/locale/fi/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/fi/LC_MESSAGES/khtmltts.mo share/locale/fi/LC_MESSAGES/konqueror.mo share/locale/fi/LC_MESSAGES/kshellcmdplugin.mo share/locale/fi/LC_MESSAGES/libkonq.mo share/locale/fi/LC_MESSAGES/searchbarplugin.mo share/locale/fi/LC_MESSAGES/uachangerplugin.mo share/locale/fi/LC_MESSAGES/webarchiver.mo share/locale/fi/LC_MESSAGES/webenginepart.mo share/locale/fr/LC_MESSAGES/akregator_konqplugin.mo share/locale/fr/LC_MESSAGES/autorefresh.mo share/locale/fr/LC_MESSAGES/babelfish.mo share/locale/fr/LC_MESSAGES/dirfilterplugin.mo share/locale/fr/LC_MESSAGES/fsview.mo share/locale/fr/LC_MESSAGES/imgalleryplugin.mo share/locale/fr/LC_MESSAGES/kcmbookmarks.mo share/locale/fr/LC_MESSAGES/kcmkonq.mo share/locale/fr/LC_MESSAGES/kcmkonqhtml.mo share/locale/fr/LC_MESSAGES/kcmperformance.mo share/locale/fr/LC_MESSAGES/kfmclient.mo share/locale/fr/LC_MESSAGES/kgetplugin.mo share/locale/fr/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/fr/LC_MESSAGES/khtmltts.mo share/locale/fr/LC_MESSAGES/konqueror.mo share/locale/fr/LC_MESSAGES/kshellcmdplugin.mo share/locale/fr/LC_MESSAGES/libkonq.mo share/locale/fr/LC_MESSAGES/searchbarplugin.mo share/locale/fr/LC_MESSAGES/uachangerplugin.mo share/locale/fr/LC_MESSAGES/webarchiver.mo share/locale/fr/LC_MESSAGES/webenginepart.mo share/locale/fy/LC_MESSAGES/akregator_konqplugin.mo share/locale/fy/LC_MESSAGES/autorefresh.mo share/locale/fy/LC_MESSAGES/babelfish.mo share/locale/fy/LC_MESSAGES/dirfilterplugin.mo share/locale/fy/LC_MESSAGES/fsview.mo share/locale/fy/LC_MESSAGES/imgalleryplugin.mo share/locale/fy/LC_MESSAGES/kcmbookmarks.mo share/locale/fy/LC_MESSAGES/kcmkonq.mo share/locale/fy/LC_MESSAGES/kcmkonqhtml.mo share/locale/fy/LC_MESSAGES/kcmperformance.mo share/locale/fy/LC_MESSAGES/kfmclient.mo share/locale/fy/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/fy/LC_MESSAGES/khtmltts.mo share/locale/fy/LC_MESSAGES/konqueror.mo share/locale/fy/LC_MESSAGES/kshellcmdplugin.mo share/locale/fy/LC_MESSAGES/libkonq.mo share/locale/fy/LC_MESSAGES/searchbarplugin.mo share/locale/fy/LC_MESSAGES/uachangerplugin.mo share/locale/ga/LC_MESSAGES/akregator_konqplugin.mo share/locale/ga/LC_MESSAGES/autorefresh.mo share/locale/ga/LC_MESSAGES/babelfish.mo share/locale/ga/LC_MESSAGES/dirfilterplugin.mo share/locale/ga/LC_MESSAGES/fsview.mo share/locale/ga/LC_MESSAGES/imgalleryplugin.mo share/locale/ga/LC_MESSAGES/kcmbookmarks.mo share/locale/ga/LC_MESSAGES/kcmkonq.mo share/locale/ga/LC_MESSAGES/kcmkonqhtml.mo share/locale/ga/LC_MESSAGES/kcmperformance.mo share/locale/ga/LC_MESSAGES/kfmclient.mo share/locale/ga/LC_MESSAGES/kgetplugin.mo share/locale/ga/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/ga/LC_MESSAGES/khtmltts.mo share/locale/ga/LC_MESSAGES/konqueror.mo share/locale/ga/LC_MESSAGES/kshellcmdplugin.mo share/locale/ga/LC_MESSAGES/libkonq.mo share/locale/ga/LC_MESSAGES/searchbarplugin.mo share/locale/ga/LC_MESSAGES/uachangerplugin.mo share/locale/ga/LC_MESSAGES/webenginepart.mo share/locale/gl/LC_MESSAGES/akregator_konqplugin.mo share/locale/gl/LC_MESSAGES/autorefresh.mo share/locale/gl/LC_MESSAGES/babelfish.mo share/locale/gl/LC_MESSAGES/dirfilterplugin.mo share/locale/gl/LC_MESSAGES/fsview.mo share/locale/gl/LC_MESSAGES/imgalleryplugin.mo share/locale/gl/LC_MESSAGES/kcmbookmarks.mo share/locale/gl/LC_MESSAGES/kcmkonq.mo share/locale/gl/LC_MESSAGES/kcmkonqhtml.mo share/locale/gl/LC_MESSAGES/kcmperformance.mo share/locale/gl/LC_MESSAGES/kfmclient.mo share/locale/gl/LC_MESSAGES/kgetplugin.mo share/locale/gl/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/gl/LC_MESSAGES/khtmltts.mo share/locale/gl/LC_MESSAGES/konqueror.mo share/locale/gl/LC_MESSAGES/kshellcmdplugin.mo share/locale/gl/LC_MESSAGES/libkonq.mo share/locale/gl/LC_MESSAGES/searchbarplugin.mo share/locale/gl/LC_MESSAGES/uachangerplugin.mo share/locale/gl/LC_MESSAGES/webenginepart.mo share/locale/gu/LC_MESSAGES/kcmbookmarks.mo share/locale/gu/LC_MESSAGES/kcmkonq.mo share/locale/gu/LC_MESSAGES/kcmkonqhtml.mo share/locale/gu/LC_MESSAGES/kcmperformance.mo share/locale/gu/LC_MESSAGES/kfmclient.mo share/locale/gu/LC_MESSAGES/khtmltts.mo share/locale/gu/LC_MESSAGES/konqueror.mo share/locale/gu/LC_MESSAGES/kshellcmdplugin.mo share/locale/gu/LC_MESSAGES/libkonq.mo share/locale/he/LC_MESSAGES/akregator_konqplugin.mo share/locale/he/LC_MESSAGES/autorefresh.mo share/locale/he/LC_MESSAGES/babelfish.mo share/locale/he/LC_MESSAGES/dirfilterplugin.mo share/locale/he/LC_MESSAGES/fsview.mo share/locale/he/LC_MESSAGES/imgalleryplugin.mo share/locale/he/LC_MESSAGES/kcmbookmarks.mo share/locale/he/LC_MESSAGES/kcmkonq.mo share/locale/he/LC_MESSAGES/kcmkonqhtml.mo share/locale/he/LC_MESSAGES/kcmperformance.mo share/locale/he/LC_MESSAGES/kfmclient.mo share/locale/he/LC_MESSAGES/kgetplugin.mo share/locale/he/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/he/LC_MESSAGES/khtmltts.mo share/locale/he/LC_MESSAGES/konqueror.mo share/locale/he/LC_MESSAGES/kshellcmdplugin.mo share/locale/he/LC_MESSAGES/libkonq.mo share/locale/he/LC_MESSAGES/searchbarplugin.mo share/locale/he/LC_MESSAGES/uachangerplugin.mo share/locale/hi/LC_MESSAGES/akregator_konqplugin.mo share/locale/hi/LC_MESSAGES/autorefresh.mo share/locale/hi/LC_MESSAGES/babelfish.mo share/locale/hi/LC_MESSAGES/dirfilterplugin.mo share/locale/hi/LC_MESSAGES/fsview.mo share/locale/hi/LC_MESSAGES/imgalleryplugin.mo share/locale/hi/LC_MESSAGES/kcmbookmarks.mo share/locale/hi/LC_MESSAGES/kcmkonq.mo share/locale/hi/LC_MESSAGES/kcmkonqhtml.mo share/locale/hi/LC_MESSAGES/kcmperformance.mo share/locale/hi/LC_MESSAGES/kfmclient.mo share/locale/hi/LC_MESSAGES/kgetplugin.mo share/locale/hi/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/hi/LC_MESSAGES/khtmltts.mo share/locale/hi/LC_MESSAGES/konqueror.mo share/locale/hi/LC_MESSAGES/kshellcmdplugin.mo share/locale/hi/LC_MESSAGES/libkonq.mo share/locale/hi/LC_MESSAGES/searchbarplugin.mo share/locale/hi/LC_MESSAGES/uachangerplugin.mo share/locale/hne/LC_MESSAGES/akregator_konqplugin.mo share/locale/hne/LC_MESSAGES/autorefresh.mo share/locale/hne/LC_MESSAGES/babelfish.mo share/locale/hne/LC_MESSAGES/dirfilterplugin.mo share/locale/hne/LC_MESSAGES/fsview.mo share/locale/hne/LC_MESSAGES/imgalleryplugin.mo share/locale/hne/LC_MESSAGES/kcmbookmarks.mo share/locale/hne/LC_MESSAGES/kcmkonq.mo share/locale/hne/LC_MESSAGES/kcmkonqhtml.mo share/locale/hne/LC_MESSAGES/kcmperformance.mo share/locale/hne/LC_MESSAGES/kfmclient.mo share/locale/hne/LC_MESSAGES/kgetplugin.mo share/locale/hne/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/hne/LC_MESSAGES/khtmltts.mo share/locale/hne/LC_MESSAGES/konqueror.mo share/locale/hne/LC_MESSAGES/kshellcmdplugin.mo share/locale/hne/LC_MESSAGES/libkonq.mo share/locale/hne/LC_MESSAGES/searchbarplugin.mo share/locale/hne/LC_MESSAGES/uachangerplugin.mo share/locale/hr/LC_MESSAGES/akregator_konqplugin.mo share/locale/hr/LC_MESSAGES/autorefresh.mo share/locale/hr/LC_MESSAGES/babelfish.mo share/locale/hr/LC_MESSAGES/dirfilterplugin.mo share/locale/hr/LC_MESSAGES/fsview.mo share/locale/hr/LC_MESSAGES/imgalleryplugin.mo share/locale/hr/LC_MESSAGES/kcmbookmarks.mo share/locale/hr/LC_MESSAGES/kcmkonq.mo share/locale/hr/LC_MESSAGES/kcmkonqhtml.mo share/locale/hr/LC_MESSAGES/kcmperformance.mo share/locale/hr/LC_MESSAGES/kfmclient.mo share/locale/hr/LC_MESSAGES/kgetplugin.mo share/locale/hr/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/hr/LC_MESSAGES/khtmltts.mo share/locale/hr/LC_MESSAGES/konqueror.mo share/locale/hr/LC_MESSAGES/kshellcmdplugin.mo share/locale/hr/LC_MESSAGES/libkonq.mo share/locale/hr/LC_MESSAGES/searchbarplugin.mo share/locale/hr/LC_MESSAGES/uachangerplugin.mo share/locale/hsb/LC_MESSAGES/kcmbookmarks.mo share/locale/hsb/LC_MESSAGES/kcmkonq.mo share/locale/hsb/LC_MESSAGES/kcmkonqhtml.mo share/locale/hsb/LC_MESSAGES/kcmperformance.mo share/locale/hsb/LC_MESSAGES/kfmclient.mo share/locale/hsb/LC_MESSAGES/kgetplugin.mo share/locale/hsb/LC_MESSAGES/khtmltts.mo share/locale/hsb/LC_MESSAGES/konqueror.mo share/locale/hsb/LC_MESSAGES/kshellcmdplugin.mo share/locale/hsb/LC_MESSAGES/libkonq.mo share/locale/hsb/LC_MESSAGES/webenginepart.mo share/locale/hu/LC_MESSAGES/akregator_konqplugin.mo share/locale/hu/LC_MESSAGES/autorefresh.mo share/locale/hu/LC_MESSAGES/babelfish.mo share/locale/hu/LC_MESSAGES/dirfilterplugin.mo share/locale/hu/LC_MESSAGES/fsview.mo share/locale/hu/LC_MESSAGES/imgalleryplugin.mo share/locale/hu/LC_MESSAGES/kcmbookmarks.mo share/locale/hu/LC_MESSAGES/kcmkonq.mo share/locale/hu/LC_MESSAGES/kcmkonqhtml.mo share/locale/hu/LC_MESSAGES/kcmperformance.mo share/locale/hu/LC_MESSAGES/kfmclient.mo share/locale/hu/LC_MESSAGES/kgetplugin.mo share/locale/hu/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/hu/LC_MESSAGES/khtmltts.mo share/locale/hu/LC_MESSAGES/konqueror.mo share/locale/hu/LC_MESSAGES/kshellcmdplugin.mo share/locale/hu/LC_MESSAGES/libkonq.mo share/locale/hu/LC_MESSAGES/searchbarplugin.mo share/locale/hu/LC_MESSAGES/uachangerplugin.mo share/locale/hu/LC_MESSAGES/webenginepart.mo share/locale/ia/LC_MESSAGES/akregator_konqplugin.mo share/locale/ia/LC_MESSAGES/autorefresh.mo share/locale/ia/LC_MESSAGES/babelfish.mo share/locale/ia/LC_MESSAGES/dirfilterplugin.mo share/locale/ia/LC_MESSAGES/fsview.mo share/locale/ia/LC_MESSAGES/imgalleryplugin.mo share/locale/ia/LC_MESSAGES/kcmbookmarks.mo share/locale/ia/LC_MESSAGES/kcmkonq.mo share/locale/ia/LC_MESSAGES/kcmkonqhtml.mo share/locale/ia/LC_MESSAGES/kcmperformance.mo share/locale/ia/LC_MESSAGES/kfmclient.mo share/locale/ia/LC_MESSAGES/kgetplugin.mo share/locale/ia/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/ia/LC_MESSAGES/khtmltts.mo share/locale/ia/LC_MESSAGES/konqueror.mo share/locale/ia/LC_MESSAGES/kshellcmdplugin.mo share/locale/ia/LC_MESSAGES/libkonq.mo share/locale/ia/LC_MESSAGES/searchbarplugin.mo share/locale/ia/LC_MESSAGES/uachangerplugin.mo share/locale/ia/LC_MESSAGES/webarchiver.mo share/locale/ia/LC_MESSAGES/webenginepart.mo share/locale/id/LC_MESSAGES/akregator_konqplugin.mo share/locale/id/LC_MESSAGES/autorefresh.mo share/locale/id/LC_MESSAGES/babelfish.mo share/locale/id/LC_MESSAGES/dirfilterplugin.mo share/locale/id/LC_MESSAGES/fsview.mo share/locale/id/LC_MESSAGES/imgalleryplugin.mo share/locale/id/LC_MESSAGES/kcmbookmarks.mo share/locale/id/LC_MESSAGES/kcmkonq.mo share/locale/id/LC_MESSAGES/kcmkonqhtml.mo share/locale/id/LC_MESSAGES/kcmperformance.mo share/locale/id/LC_MESSAGES/kfmclient.mo share/locale/id/LC_MESSAGES/kgetplugin.mo share/locale/id/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/id/LC_MESSAGES/khtmltts.mo share/locale/id/LC_MESSAGES/konqueror.mo share/locale/id/LC_MESSAGES/kshellcmdplugin.mo share/locale/id/LC_MESSAGES/libkonq.mo share/locale/id/LC_MESSAGES/searchbarplugin.mo share/locale/id/LC_MESSAGES/uachangerplugin.mo share/locale/id/LC_MESSAGES/webarchiver.mo share/locale/id/LC_MESSAGES/webenginepart.mo share/locale/is/LC_MESSAGES/akregator_konqplugin.mo share/locale/is/LC_MESSAGES/autorefresh.mo share/locale/is/LC_MESSAGES/babelfish.mo share/locale/is/LC_MESSAGES/dirfilterplugin.mo share/locale/is/LC_MESSAGES/fsview.mo share/locale/is/LC_MESSAGES/imgalleryplugin.mo share/locale/is/LC_MESSAGES/kcmbookmarks.mo share/locale/is/LC_MESSAGES/kcmkonq.mo share/locale/is/LC_MESSAGES/kcmkonqhtml.mo share/locale/is/LC_MESSAGES/kcmperformance.mo share/locale/is/LC_MESSAGES/kfmclient.mo share/locale/is/LC_MESSAGES/kgetplugin.mo share/locale/is/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/is/LC_MESSAGES/khtmltts.mo share/locale/is/LC_MESSAGES/konqueror.mo share/locale/is/LC_MESSAGES/kshellcmdplugin.mo share/locale/is/LC_MESSAGES/libkonq.mo share/locale/is/LC_MESSAGES/searchbarplugin.mo share/locale/is/LC_MESSAGES/uachangerplugin.mo share/locale/it/LC_MESSAGES/akregator_konqplugin.mo share/locale/it/LC_MESSAGES/autorefresh.mo share/locale/it/LC_MESSAGES/babelfish.mo share/locale/it/LC_MESSAGES/dirfilterplugin.mo share/locale/it/LC_MESSAGES/fsview.mo share/locale/it/LC_MESSAGES/imgalleryplugin.mo share/locale/it/LC_MESSAGES/kcmbookmarks.mo share/locale/it/LC_MESSAGES/kcmkonq.mo share/locale/it/LC_MESSAGES/kcmkonqhtml.mo share/locale/it/LC_MESSAGES/kcmperformance.mo share/locale/it/LC_MESSAGES/kfmclient.mo share/locale/it/LC_MESSAGES/kgetplugin.mo share/locale/it/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/it/LC_MESSAGES/khtmltts.mo share/locale/it/LC_MESSAGES/konqueror.mo share/locale/it/LC_MESSAGES/kshellcmdplugin.mo share/locale/it/LC_MESSAGES/libkonq.mo share/locale/it/LC_MESSAGES/searchbarplugin.mo share/locale/it/LC_MESSAGES/uachangerplugin.mo share/locale/it/LC_MESSAGES/webarchiver.mo share/locale/it/LC_MESSAGES/webenginepart.mo share/locale/ja/LC_MESSAGES/akregator_konqplugin.mo share/locale/ja/LC_MESSAGES/autorefresh.mo share/locale/ja/LC_MESSAGES/babelfish.mo share/locale/ja/LC_MESSAGES/dirfilterplugin.mo share/locale/ja/LC_MESSAGES/fsview.mo share/locale/ja/LC_MESSAGES/imgalleryplugin.mo share/locale/ja/LC_MESSAGES/kcmbookmarks.mo share/locale/ja/LC_MESSAGES/kcmkonq.mo share/locale/ja/LC_MESSAGES/kcmkonqhtml.mo share/locale/ja/LC_MESSAGES/kcmperformance.mo share/locale/ja/LC_MESSAGES/kfmclient.mo share/locale/ja/LC_MESSAGES/kgetplugin.mo share/locale/ja/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/ja/LC_MESSAGES/khtmltts.mo share/locale/ja/LC_MESSAGES/konqueror.mo share/locale/ja/LC_MESSAGES/kshellcmdplugin.mo share/locale/ja/LC_MESSAGES/libkonq.mo share/locale/ja/LC_MESSAGES/searchbarplugin.mo share/locale/ja/LC_MESSAGES/uachangerplugin.mo share/locale/ja/LC_MESSAGES/webarchiver.mo share/locale/ja/LC_MESSAGES/webenginepart.mo share/locale/ka/LC_MESSAGES/akregator_konqplugin.mo share/locale/ka/LC_MESSAGES/autorefresh.mo share/locale/ka/LC_MESSAGES/babelfish.mo share/locale/ka/LC_MESSAGES/dirfilterplugin.mo share/locale/ka/LC_MESSAGES/fsview.mo share/locale/ka/LC_MESSAGES/imgalleryplugin.mo share/locale/ka/LC_MESSAGES/kcmbookmarks.mo share/locale/ka/LC_MESSAGES/kcmkonq.mo share/locale/ka/LC_MESSAGES/kcmkonqhtml.mo share/locale/ka/LC_MESSAGES/kcmperformance.mo share/locale/ka/LC_MESSAGES/kfmclient.mo share/locale/ka/LC_MESSAGES/kgetplugin.mo share/locale/ka/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/ka/LC_MESSAGES/khtmltts.mo share/locale/ka/LC_MESSAGES/konqueror.mo share/locale/ka/LC_MESSAGES/kshellcmdplugin.mo share/locale/ka/LC_MESSAGES/libkonq.mo share/locale/ka/LC_MESSAGES/searchbarplugin.mo share/locale/ka/LC_MESSAGES/uachangerplugin.mo share/locale/ka/LC_MESSAGES/webarchiver.mo share/locale/ka/LC_MESSAGES/webenginepart.mo share/locale/kk/LC_MESSAGES/akregator_konqplugin.mo share/locale/kk/LC_MESSAGES/autorefresh.mo share/locale/kk/LC_MESSAGES/babelfish.mo share/locale/kk/LC_MESSAGES/dirfilterplugin.mo share/locale/kk/LC_MESSAGES/fsview.mo share/locale/kk/LC_MESSAGES/imgalleryplugin.mo share/locale/kk/LC_MESSAGES/kcmbookmarks.mo share/locale/kk/LC_MESSAGES/kcmkonq.mo share/locale/kk/LC_MESSAGES/kcmkonqhtml.mo share/locale/kk/LC_MESSAGES/kcmperformance.mo share/locale/kk/LC_MESSAGES/kfmclient.mo share/locale/kk/LC_MESSAGES/kgetplugin.mo share/locale/kk/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/kk/LC_MESSAGES/khtmltts.mo share/locale/kk/LC_MESSAGES/konqueror.mo share/locale/kk/LC_MESSAGES/kshellcmdplugin.mo share/locale/kk/LC_MESSAGES/libkonq.mo share/locale/kk/LC_MESSAGES/searchbarplugin.mo share/locale/kk/LC_MESSAGES/uachangerplugin.mo share/locale/kk/LC_MESSAGES/webenginepart.mo share/locale/km/LC_MESSAGES/akregator_konqplugin.mo share/locale/km/LC_MESSAGES/autorefresh.mo share/locale/km/LC_MESSAGES/babelfish.mo share/locale/km/LC_MESSAGES/dirfilterplugin.mo share/locale/km/LC_MESSAGES/fsview.mo share/locale/km/LC_MESSAGES/imgalleryplugin.mo share/locale/km/LC_MESSAGES/kcmbookmarks.mo share/locale/km/LC_MESSAGES/kcmkonq.mo share/locale/km/LC_MESSAGES/kcmkonqhtml.mo share/locale/km/LC_MESSAGES/kcmperformance.mo share/locale/km/LC_MESSAGES/kfmclient.mo share/locale/km/LC_MESSAGES/kgetplugin.mo share/locale/km/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/km/LC_MESSAGES/khtmltts.mo share/locale/km/LC_MESSAGES/konqueror.mo share/locale/km/LC_MESSAGES/kshellcmdplugin.mo share/locale/km/LC_MESSAGES/libkonq.mo share/locale/km/LC_MESSAGES/searchbarplugin.mo share/locale/km/LC_MESSAGES/uachangerplugin.mo share/locale/km/LC_MESSAGES/webenginepart.mo share/locale/kn/LC_MESSAGES/kcmbookmarks.mo share/locale/kn/LC_MESSAGES/kcmkonq.mo share/locale/kn/LC_MESSAGES/kcmkonqhtml.mo share/locale/kn/LC_MESSAGES/kcmperformance.mo share/locale/kn/LC_MESSAGES/khtmltts.mo share/locale/kn/LC_MESSAGES/konqueror.mo share/locale/kn/LC_MESSAGES/kshellcmdplugin.mo share/locale/kn/LC_MESSAGES/libkonq.mo share/locale/ko/LC_MESSAGES/akregator_konqplugin.mo share/locale/ko/LC_MESSAGES/autorefresh.mo share/locale/ko/LC_MESSAGES/babelfish.mo share/locale/ko/LC_MESSAGES/dirfilterplugin.mo share/locale/ko/LC_MESSAGES/fsview.mo share/locale/ko/LC_MESSAGES/imgalleryplugin.mo share/locale/ko/LC_MESSAGES/kcmbookmarks.mo share/locale/ko/LC_MESSAGES/kcmkonq.mo share/locale/ko/LC_MESSAGES/kcmkonqhtml.mo share/locale/ko/LC_MESSAGES/kcmperformance.mo share/locale/ko/LC_MESSAGES/kfmclient.mo share/locale/ko/LC_MESSAGES/kgetplugin.mo share/locale/ko/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/ko/LC_MESSAGES/khtmltts.mo share/locale/ko/LC_MESSAGES/konqueror.mo share/locale/ko/LC_MESSAGES/kshellcmdplugin.mo share/locale/ko/LC_MESSAGES/libkonq.mo share/locale/ko/LC_MESSAGES/searchbarplugin.mo share/locale/ko/LC_MESSAGES/uachangerplugin.mo share/locale/ko/LC_MESSAGES/webarchiver.mo share/locale/ko/LC_MESSAGES/webenginepart.mo share/locale/ku/LC_MESSAGES/akregator_konqplugin.mo share/locale/ku/LC_MESSAGES/autorefresh.mo share/locale/ku/LC_MESSAGES/babelfish.mo share/locale/ku/LC_MESSAGES/dirfilterplugin.mo share/locale/ku/LC_MESSAGES/fsview.mo share/locale/ku/LC_MESSAGES/imgalleryplugin.mo share/locale/ku/LC_MESSAGES/kcmbookmarks.mo share/locale/ku/LC_MESSAGES/kcmkonq.mo share/locale/ku/LC_MESSAGES/kcmkonqhtml.mo share/locale/ku/LC_MESSAGES/kcmperformance.mo share/locale/ku/LC_MESSAGES/kfmclient.mo share/locale/ku/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/ku/LC_MESSAGES/khtmltts.mo share/locale/ku/LC_MESSAGES/konqueror.mo share/locale/ku/LC_MESSAGES/kshellcmdplugin.mo share/locale/ku/LC_MESSAGES/libkonq.mo share/locale/ku/LC_MESSAGES/searchbarplugin.mo share/locale/ku/LC_MESSAGES/uachangerplugin.mo share/locale/lt/LC_MESSAGES/akregator_konqplugin.mo share/locale/lt/LC_MESSAGES/autorefresh.mo share/locale/lt/LC_MESSAGES/babelfish.mo share/locale/lt/LC_MESSAGES/dirfilterplugin.mo share/locale/lt/LC_MESSAGES/fsview.mo share/locale/lt/LC_MESSAGES/imgalleryplugin.mo share/locale/lt/LC_MESSAGES/kcmbookmarks.mo share/locale/lt/LC_MESSAGES/kcmkonq.mo share/locale/lt/LC_MESSAGES/kcmkonqhtml.mo share/locale/lt/LC_MESSAGES/kcmperformance.mo share/locale/lt/LC_MESSAGES/kfmclient.mo share/locale/lt/LC_MESSAGES/kgetplugin.mo share/locale/lt/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/lt/LC_MESSAGES/khtmltts.mo share/locale/lt/LC_MESSAGES/konqueror.mo share/locale/lt/LC_MESSAGES/kshellcmdplugin.mo share/locale/lt/LC_MESSAGES/libkonq.mo share/locale/lt/LC_MESSAGES/searchbarplugin.mo share/locale/lt/LC_MESSAGES/uachangerplugin.mo share/locale/lt/LC_MESSAGES/webarchiver.mo share/locale/lt/LC_MESSAGES/webenginepart.mo share/locale/lv/LC_MESSAGES/akregator_konqplugin.mo share/locale/lv/LC_MESSAGES/autorefresh.mo share/locale/lv/LC_MESSAGES/babelfish.mo share/locale/lv/LC_MESSAGES/dirfilterplugin.mo share/locale/lv/LC_MESSAGES/fsview.mo share/locale/lv/LC_MESSAGES/imgalleryplugin.mo share/locale/lv/LC_MESSAGES/kcmbookmarks.mo share/locale/lv/LC_MESSAGES/kcmkonq.mo share/locale/lv/LC_MESSAGES/kcmkonqhtml.mo share/locale/lv/LC_MESSAGES/kcmperformance.mo share/locale/lv/LC_MESSAGES/kfmclient.mo share/locale/lv/LC_MESSAGES/kgetplugin.mo share/locale/lv/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/lv/LC_MESSAGES/khtmltts.mo share/locale/lv/LC_MESSAGES/konqueror.mo share/locale/lv/LC_MESSAGES/kshellcmdplugin.mo share/locale/lv/LC_MESSAGES/libkonq.mo share/locale/lv/LC_MESSAGES/searchbarplugin.mo share/locale/lv/LC_MESSAGES/uachangerplugin.mo share/locale/mai/LC_MESSAGES/akregator_konqplugin.mo share/locale/mai/LC_MESSAGES/autorefresh.mo share/locale/mai/LC_MESSAGES/babelfish.mo share/locale/mai/LC_MESSAGES/dirfilterplugin.mo share/locale/mai/LC_MESSAGES/fsview.mo share/locale/mai/LC_MESSAGES/imgalleryplugin.mo share/locale/mai/LC_MESSAGES/kcmbookmarks.mo share/locale/mai/LC_MESSAGES/kcmkonq.mo share/locale/mai/LC_MESSAGES/kcmkonqhtml.mo share/locale/mai/LC_MESSAGES/kcmperformance.mo share/locale/mai/LC_MESSAGES/kfmclient.mo share/locale/mai/LC_MESSAGES/kgetplugin.mo share/locale/mai/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/mai/LC_MESSAGES/khtmltts.mo share/locale/mai/LC_MESSAGES/konqueror.mo share/locale/mai/LC_MESSAGES/kshellcmdplugin.mo share/locale/mai/LC_MESSAGES/libkonq.mo share/locale/mai/LC_MESSAGES/searchbarplugin.mo share/locale/mai/LC_MESSAGES/uachangerplugin.mo share/locale/mai/LC_MESSAGES/webenginepart.mo share/locale/mk/LC_MESSAGES/akregator_konqplugin.mo share/locale/mk/LC_MESSAGES/autorefresh.mo share/locale/mk/LC_MESSAGES/babelfish.mo share/locale/mk/LC_MESSAGES/dirfilterplugin.mo share/locale/mk/LC_MESSAGES/fsview.mo share/locale/mk/LC_MESSAGES/imgalleryplugin.mo share/locale/mk/LC_MESSAGES/kcmbookmarks.mo share/locale/mk/LC_MESSAGES/kcmkonq.mo share/locale/mk/LC_MESSAGES/kcmkonqhtml.mo share/locale/mk/LC_MESSAGES/kcmperformance.mo share/locale/mk/LC_MESSAGES/kfmclient.mo share/locale/mk/LC_MESSAGES/kgetplugin.mo share/locale/mk/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/mk/LC_MESSAGES/khtmltts.mo share/locale/mk/LC_MESSAGES/konqueror.mo share/locale/mk/LC_MESSAGES/kshellcmdplugin.mo share/locale/mk/LC_MESSAGES/libkonq.mo share/locale/mk/LC_MESSAGES/searchbarplugin.mo share/locale/mk/LC_MESSAGES/uachangerplugin.mo share/locale/ml/LC_MESSAGES/akregator_konqplugin.mo share/locale/ml/LC_MESSAGES/autorefresh.mo share/locale/ml/LC_MESSAGES/babelfish.mo share/locale/ml/LC_MESSAGES/dirfilterplugin.mo share/locale/ml/LC_MESSAGES/fsview.mo share/locale/ml/LC_MESSAGES/imgalleryplugin.mo share/locale/ml/LC_MESSAGES/kcmbookmarks.mo share/locale/ml/LC_MESSAGES/kcmkonq.mo share/locale/ml/LC_MESSAGES/kcmkonqhtml.mo share/locale/ml/LC_MESSAGES/kcmperformance.mo share/locale/ml/LC_MESSAGES/kfmclient.mo share/locale/ml/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/ml/LC_MESSAGES/khtmltts.mo share/locale/ml/LC_MESSAGES/konqueror.mo share/locale/ml/LC_MESSAGES/kshellcmdplugin.mo share/locale/ml/LC_MESSAGES/libkonq.mo share/locale/ml/LC_MESSAGES/searchbarplugin.mo share/locale/ml/LC_MESSAGES/uachangerplugin.mo share/locale/ml/LC_MESSAGES/webenginepart.mo share/locale/mr/LC_MESSAGES/akregator_konqplugin.mo share/locale/mr/LC_MESSAGES/autorefresh.mo share/locale/mr/LC_MESSAGES/babelfish.mo share/locale/mr/LC_MESSAGES/dirfilterplugin.mo share/locale/mr/LC_MESSAGES/fsview.mo share/locale/mr/LC_MESSAGES/imgalleryplugin.mo share/locale/mr/LC_MESSAGES/kcmbookmarks.mo share/locale/mr/LC_MESSAGES/kcmkonq.mo share/locale/mr/LC_MESSAGES/kcmkonqhtml.mo share/locale/mr/LC_MESSAGES/kcmperformance.mo share/locale/mr/LC_MESSAGES/kfmclient.mo share/locale/mr/LC_MESSAGES/kgetplugin.mo share/locale/mr/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/mr/LC_MESSAGES/khtmltts.mo share/locale/mr/LC_MESSAGES/konqueror.mo share/locale/mr/LC_MESSAGES/kshellcmdplugin.mo share/locale/mr/LC_MESSAGES/libkonq.mo share/locale/mr/LC_MESSAGES/searchbarplugin.mo share/locale/mr/LC_MESSAGES/uachangerplugin.mo share/locale/mr/LC_MESSAGES/webenginepart.mo share/locale/ms/LC_MESSAGES/akregator_konqplugin.mo share/locale/ms/LC_MESSAGES/autorefresh.mo share/locale/ms/LC_MESSAGES/babelfish.mo share/locale/ms/LC_MESSAGES/dirfilterplugin.mo share/locale/ms/LC_MESSAGES/fsview.mo share/locale/ms/LC_MESSAGES/imgalleryplugin.mo share/locale/ms/LC_MESSAGES/kcmbookmarks.mo share/locale/ms/LC_MESSAGES/kcmkonq.mo share/locale/ms/LC_MESSAGES/kcmkonqhtml.mo share/locale/ms/LC_MESSAGES/kcmperformance.mo share/locale/ms/LC_MESSAGES/kfmclient.mo share/locale/ms/LC_MESSAGES/kgetplugin.mo share/locale/ms/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/ms/LC_MESSAGES/khtmltts.mo share/locale/ms/LC_MESSAGES/konqueror.mo share/locale/ms/LC_MESSAGES/kshellcmdplugin.mo share/locale/ms/LC_MESSAGES/libkonq.mo share/locale/ms/LC_MESSAGES/searchbarplugin.mo share/locale/ms/LC_MESSAGES/uachangerplugin.mo share/locale/ms/LC_MESSAGES/webenginepart.mo share/locale/my/LC_MESSAGES/akregator_konqplugin.mo share/locale/my/LC_MESSAGES/autorefresh.mo share/locale/my/LC_MESSAGES/babelfish.mo share/locale/my/LC_MESSAGES/dirfilterplugin.mo share/locale/my/LC_MESSAGES/fsview.mo share/locale/my/LC_MESSAGES/imgalleryplugin.mo share/locale/my/LC_MESSAGES/kcmbookmarks.mo share/locale/my/LC_MESSAGES/kcmkonq.mo share/locale/my/LC_MESSAGES/kcmkonqhtml.mo share/locale/my/LC_MESSAGES/kcmperformance.mo share/locale/my/LC_MESSAGES/kfmclient.mo share/locale/my/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/my/LC_MESSAGES/khtmltts.mo share/locale/my/LC_MESSAGES/konqueror.mo share/locale/my/LC_MESSAGES/kshellcmdplugin.mo share/locale/my/LC_MESSAGES/libkonq.mo share/locale/my/LC_MESSAGES/searchbarplugin.mo share/locale/my/LC_MESSAGES/uachangerplugin.mo share/locale/my/LC_MESSAGES/webarchiver.mo share/locale/my/LC_MESSAGES/webenginepart.mo share/locale/nb/LC_MESSAGES/akregator_konqplugin.mo share/locale/nb/LC_MESSAGES/autorefresh.mo share/locale/nb/LC_MESSAGES/babelfish.mo share/locale/nb/LC_MESSAGES/dirfilterplugin.mo share/locale/nb/LC_MESSAGES/fsview.mo share/locale/nb/LC_MESSAGES/imgalleryplugin.mo share/locale/nb/LC_MESSAGES/kcmbookmarks.mo share/locale/nb/LC_MESSAGES/kcmkonq.mo share/locale/nb/LC_MESSAGES/kcmkonqhtml.mo share/locale/nb/LC_MESSAGES/kcmperformance.mo share/locale/nb/LC_MESSAGES/kfmclient.mo share/locale/nb/LC_MESSAGES/kgetplugin.mo share/locale/nb/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/nb/LC_MESSAGES/khtmltts.mo share/locale/nb/LC_MESSAGES/konqueror.mo share/locale/nb/LC_MESSAGES/kshellcmdplugin.mo share/locale/nb/LC_MESSAGES/libkonq.mo share/locale/nb/LC_MESSAGES/searchbarplugin.mo share/locale/nb/LC_MESSAGES/uachangerplugin.mo share/locale/nb/LC_MESSAGES/webenginepart.mo share/locale/nds/LC_MESSAGES/akregator_konqplugin.mo share/locale/nds/LC_MESSAGES/autorefresh.mo share/locale/nds/LC_MESSAGES/babelfish.mo share/locale/nds/LC_MESSAGES/dirfilterplugin.mo share/locale/nds/LC_MESSAGES/fsview.mo share/locale/nds/LC_MESSAGES/imgalleryplugin.mo share/locale/nds/LC_MESSAGES/kcmbookmarks.mo share/locale/nds/LC_MESSAGES/kcmkonq.mo share/locale/nds/LC_MESSAGES/kcmkonqhtml.mo share/locale/nds/LC_MESSAGES/kcmperformance.mo share/locale/nds/LC_MESSAGES/kfmclient.mo share/locale/nds/LC_MESSAGES/kgetplugin.mo share/locale/nds/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/nds/LC_MESSAGES/khtmltts.mo share/locale/nds/LC_MESSAGES/konqueror.mo share/locale/nds/LC_MESSAGES/kshellcmdplugin.mo share/locale/nds/LC_MESSAGES/libkonq.mo share/locale/nds/LC_MESSAGES/searchbarplugin.mo share/locale/nds/LC_MESSAGES/uachangerplugin.mo share/locale/nds/LC_MESSAGES/webenginepart.mo share/locale/ne/LC_MESSAGES/akregator_konqplugin.mo share/locale/ne/LC_MESSAGES/autorefresh.mo share/locale/ne/LC_MESSAGES/babelfish.mo share/locale/ne/LC_MESSAGES/dirfilterplugin.mo share/locale/ne/LC_MESSAGES/fsview.mo share/locale/ne/LC_MESSAGES/imgalleryplugin.mo share/locale/ne/LC_MESSAGES/kcmbookmarks.mo share/locale/ne/LC_MESSAGES/kcmkonq.mo share/locale/ne/LC_MESSAGES/kcmkonqhtml.mo share/locale/ne/LC_MESSAGES/kcmperformance.mo share/locale/ne/LC_MESSAGES/kfmclient.mo share/locale/ne/LC_MESSAGES/kgetplugin.mo share/locale/ne/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/ne/LC_MESSAGES/khtmltts.mo share/locale/ne/LC_MESSAGES/konqueror.mo share/locale/ne/LC_MESSAGES/kshellcmdplugin.mo share/locale/ne/LC_MESSAGES/libkonq.mo share/locale/ne/LC_MESSAGES/searchbarplugin.mo share/locale/ne/LC_MESSAGES/uachangerplugin.mo share/locale/nl/LC_MESSAGES/akregator_konqplugin.mo share/locale/nl/LC_MESSAGES/autorefresh.mo share/locale/nl/LC_MESSAGES/babelfish.mo share/locale/nl/LC_MESSAGES/dirfilterplugin.mo share/locale/nl/LC_MESSAGES/fsview.mo share/locale/nl/LC_MESSAGES/imgalleryplugin.mo share/locale/nl/LC_MESSAGES/kcmbookmarks.mo share/locale/nl/LC_MESSAGES/kcmkonq.mo share/locale/nl/LC_MESSAGES/kcmkonqhtml.mo share/locale/nl/LC_MESSAGES/kcmperformance.mo share/locale/nl/LC_MESSAGES/kfmclient.mo share/locale/nl/LC_MESSAGES/kgetplugin.mo share/locale/nl/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/nl/LC_MESSAGES/khtmltts.mo share/locale/nl/LC_MESSAGES/konqueror.mo share/locale/nl/LC_MESSAGES/kshellcmdplugin.mo share/locale/nl/LC_MESSAGES/libkonq.mo share/locale/nl/LC_MESSAGES/searchbarplugin.mo share/locale/nl/LC_MESSAGES/uachangerplugin.mo share/locale/nl/LC_MESSAGES/webarchiver.mo share/locale/nl/LC_MESSAGES/webenginepart.mo share/locale/nn/LC_MESSAGES/akregator_konqplugin.mo share/locale/nn/LC_MESSAGES/autorefresh.mo share/locale/nn/LC_MESSAGES/babelfish.mo share/locale/nn/LC_MESSAGES/dirfilterplugin.mo share/locale/nn/LC_MESSAGES/fsview.mo share/locale/nn/LC_MESSAGES/imgalleryplugin.mo share/locale/nn/LC_MESSAGES/kcmbookmarks.mo share/locale/nn/LC_MESSAGES/kcmkonq.mo share/locale/nn/LC_MESSAGES/kcmkonqhtml.mo share/locale/nn/LC_MESSAGES/kcmperformance.mo share/locale/nn/LC_MESSAGES/kfmclient.mo share/locale/nn/LC_MESSAGES/kgetplugin.mo share/locale/nn/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/nn/LC_MESSAGES/khtmltts.mo share/locale/nn/LC_MESSAGES/konqueror.mo share/locale/nn/LC_MESSAGES/kshellcmdplugin.mo share/locale/nn/LC_MESSAGES/libkonq.mo share/locale/nn/LC_MESSAGES/searchbarplugin.mo share/locale/nn/LC_MESSAGES/uachangerplugin.mo share/locale/nn/LC_MESSAGES/webarchiver.mo share/locale/nn/LC_MESSAGES/webenginepart.mo share/locale/oc/LC_MESSAGES/akregator_konqplugin.mo share/locale/oc/LC_MESSAGES/autorefresh.mo share/locale/oc/LC_MESSAGES/babelfish.mo share/locale/oc/LC_MESSAGES/dirfilterplugin.mo share/locale/oc/LC_MESSAGES/fsview.mo share/locale/oc/LC_MESSAGES/imgalleryplugin.mo share/locale/oc/LC_MESSAGES/kcmbookmarks.mo share/locale/oc/LC_MESSAGES/kcmkonq.mo share/locale/oc/LC_MESSAGES/kcmkonqhtml.mo share/locale/oc/LC_MESSAGES/kcmperformance.mo share/locale/oc/LC_MESSAGES/kfmclient.mo share/locale/oc/LC_MESSAGES/kgetplugin.mo share/locale/oc/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/oc/LC_MESSAGES/khtmltts.mo share/locale/oc/LC_MESSAGES/konqueror.mo share/locale/oc/LC_MESSAGES/kshellcmdplugin.mo share/locale/oc/LC_MESSAGES/libkonq.mo share/locale/oc/LC_MESSAGES/searchbarplugin.mo share/locale/oc/LC_MESSAGES/uachangerplugin.mo share/locale/or/LC_MESSAGES/kcmbookmarks.mo share/locale/or/LC_MESSAGES/kcmkonq.mo share/locale/or/LC_MESSAGES/kcmkonqhtml.mo share/locale/or/LC_MESSAGES/kcmperformance.mo share/locale/or/LC_MESSAGES/kfmclient.mo share/locale/or/LC_MESSAGES/khtmltts.mo share/locale/or/LC_MESSAGES/konqueror.mo share/locale/or/LC_MESSAGES/kshellcmdplugin.mo share/locale/or/LC_MESSAGES/libkonq.mo share/locale/pa/LC_MESSAGES/akregator_konqplugin.mo share/locale/pa/LC_MESSAGES/autorefresh.mo share/locale/pa/LC_MESSAGES/babelfish.mo share/locale/pa/LC_MESSAGES/dirfilterplugin.mo share/locale/pa/LC_MESSAGES/fsview.mo share/locale/pa/LC_MESSAGES/imgalleryplugin.mo share/locale/pa/LC_MESSAGES/kcmbookmarks.mo share/locale/pa/LC_MESSAGES/kcmkonq.mo share/locale/pa/LC_MESSAGES/kcmkonqhtml.mo share/locale/pa/LC_MESSAGES/kcmperformance.mo share/locale/pa/LC_MESSAGES/kfmclient.mo share/locale/pa/LC_MESSAGES/kgetplugin.mo share/locale/pa/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/pa/LC_MESSAGES/khtmltts.mo share/locale/pa/LC_MESSAGES/konqueror.mo share/locale/pa/LC_MESSAGES/kshellcmdplugin.mo share/locale/pa/LC_MESSAGES/libkonq.mo share/locale/pa/LC_MESSAGES/searchbarplugin.mo share/locale/pa/LC_MESSAGES/uachangerplugin.mo share/locale/pa/LC_MESSAGES/webenginepart.mo share/locale/pl/LC_MESSAGES/akregator_konqplugin.mo share/locale/pl/LC_MESSAGES/autorefresh.mo share/locale/pl/LC_MESSAGES/babelfish.mo share/locale/pl/LC_MESSAGES/dirfilterplugin.mo share/locale/pl/LC_MESSAGES/fsview.mo share/locale/pl/LC_MESSAGES/imgalleryplugin.mo share/locale/pl/LC_MESSAGES/kcmbookmarks.mo share/locale/pl/LC_MESSAGES/kcmkonq.mo share/locale/pl/LC_MESSAGES/kcmkonqhtml.mo share/locale/pl/LC_MESSAGES/kcmperformance.mo share/locale/pl/LC_MESSAGES/kfmclient.mo share/locale/pl/LC_MESSAGES/kgetplugin.mo share/locale/pl/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/pl/LC_MESSAGES/khtmltts.mo share/locale/pl/LC_MESSAGES/konqueror.mo share/locale/pl/LC_MESSAGES/kshellcmdplugin.mo share/locale/pl/LC_MESSAGES/libkonq.mo share/locale/pl/LC_MESSAGES/searchbarplugin.mo share/locale/pl/LC_MESSAGES/uachangerplugin.mo share/locale/pl/LC_MESSAGES/webarchiver.mo share/locale/pl/LC_MESSAGES/webenginepart.mo share/locale/pt/LC_MESSAGES/akregator_konqplugin.mo share/locale/pt/LC_MESSAGES/autorefresh.mo share/locale/pt/LC_MESSAGES/babelfish.mo share/locale/pt/LC_MESSAGES/dirfilterplugin.mo share/locale/pt/LC_MESSAGES/fsview.mo share/locale/pt/LC_MESSAGES/imgalleryplugin.mo share/locale/pt/LC_MESSAGES/kcmbookmarks.mo share/locale/pt/LC_MESSAGES/kcmkonq.mo share/locale/pt/LC_MESSAGES/kcmkonqhtml.mo share/locale/pt/LC_MESSAGES/kcmperformance.mo share/locale/pt/LC_MESSAGES/kfmclient.mo share/locale/pt/LC_MESSAGES/kgetplugin.mo share/locale/pt/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/pt/LC_MESSAGES/khtmltts.mo share/locale/pt/LC_MESSAGES/konqueror.mo share/locale/pt/LC_MESSAGES/kshellcmdplugin.mo share/locale/pt/LC_MESSAGES/libkonq.mo share/locale/pt/LC_MESSAGES/searchbarplugin.mo share/locale/pt/LC_MESSAGES/uachangerplugin.mo share/locale/pt/LC_MESSAGES/webarchiver.mo share/locale/pt/LC_MESSAGES/webenginepart.mo share/locale/pt_BR/LC_MESSAGES/akregator_konqplugin.mo share/locale/pt_BR/LC_MESSAGES/autorefresh.mo share/locale/pt_BR/LC_MESSAGES/babelfish.mo share/locale/pt_BR/LC_MESSAGES/dirfilterplugin.mo share/locale/pt_BR/LC_MESSAGES/fsview.mo share/locale/pt_BR/LC_MESSAGES/imgalleryplugin.mo share/locale/pt_BR/LC_MESSAGES/kcmbookmarks.mo share/locale/pt_BR/LC_MESSAGES/kcmkonq.mo share/locale/pt_BR/LC_MESSAGES/kcmkonqhtml.mo share/locale/pt_BR/LC_MESSAGES/kcmperformance.mo share/locale/pt_BR/LC_MESSAGES/kfmclient.mo share/locale/pt_BR/LC_MESSAGES/kgetplugin.mo share/locale/pt_BR/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/pt_BR/LC_MESSAGES/khtmltts.mo share/locale/pt_BR/LC_MESSAGES/konqueror.mo share/locale/pt_BR/LC_MESSAGES/kshellcmdplugin.mo share/locale/pt_BR/LC_MESSAGES/libkonq.mo share/locale/pt_BR/LC_MESSAGES/searchbarplugin.mo share/locale/pt_BR/LC_MESSAGES/uachangerplugin.mo share/locale/pt_BR/LC_MESSAGES/webarchiver.mo share/locale/pt_BR/LC_MESSAGES/webenginepart.mo share/locale/ro/LC_MESSAGES/akregator_konqplugin.mo share/locale/ro/LC_MESSAGES/autorefresh.mo share/locale/ro/LC_MESSAGES/babelfish.mo share/locale/ro/LC_MESSAGES/dirfilterplugin.mo share/locale/ro/LC_MESSAGES/fsview.mo share/locale/ro/LC_MESSAGES/imgalleryplugin.mo share/locale/ro/LC_MESSAGES/kcmbookmarks.mo share/locale/ro/LC_MESSAGES/kcmkonq.mo share/locale/ro/LC_MESSAGES/kcmkonqhtml.mo share/locale/ro/LC_MESSAGES/kcmperformance.mo share/locale/ro/LC_MESSAGES/kfmclient.mo share/locale/ro/LC_MESSAGES/kgetplugin.mo share/locale/ro/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/ro/LC_MESSAGES/khtmltts.mo share/locale/ro/LC_MESSAGES/konqueror.mo share/locale/ro/LC_MESSAGES/kshellcmdplugin.mo share/locale/ro/LC_MESSAGES/libkonq.mo share/locale/ro/LC_MESSAGES/searchbarplugin.mo share/locale/ro/LC_MESSAGES/uachangerplugin.mo share/locale/ro/LC_MESSAGES/webenginepart.mo share/locale/ru/LC_MESSAGES/akregator_konqplugin.mo share/locale/ru/LC_MESSAGES/autorefresh.mo share/locale/ru/LC_MESSAGES/babelfish.mo share/locale/ru/LC_MESSAGES/dirfilterplugin.mo share/locale/ru/LC_MESSAGES/fsview.mo share/locale/ru/LC_MESSAGES/imgalleryplugin.mo share/locale/ru/LC_MESSAGES/kcmbookmarks.mo share/locale/ru/LC_MESSAGES/kcmkonq.mo share/locale/ru/LC_MESSAGES/kcmkonqhtml.mo share/locale/ru/LC_MESSAGES/kcmperformance.mo share/locale/ru/LC_MESSAGES/kfmclient.mo share/locale/ru/LC_MESSAGES/kgetplugin.mo share/locale/ru/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/ru/LC_MESSAGES/khtmltts.mo share/locale/ru/LC_MESSAGES/konqueror.mo share/locale/ru/LC_MESSAGES/kshellcmdplugin.mo share/locale/ru/LC_MESSAGES/libkonq.mo share/locale/ru/LC_MESSAGES/searchbarplugin.mo share/locale/ru/LC_MESSAGES/uachangerplugin.mo share/locale/ru/LC_MESSAGES/webarchiver.mo share/locale/ru/LC_MESSAGES/webenginepart.mo share/locale/se/LC_MESSAGES/akregator_konqplugin.mo share/locale/se/LC_MESSAGES/autorefresh.mo share/locale/se/LC_MESSAGES/babelfish.mo share/locale/se/LC_MESSAGES/dirfilterplugin.mo share/locale/se/LC_MESSAGES/fsview.mo share/locale/se/LC_MESSAGES/imgalleryplugin.mo share/locale/se/LC_MESSAGES/kcmbookmarks.mo share/locale/se/LC_MESSAGES/kcmkonq.mo share/locale/se/LC_MESSAGES/kcmkonqhtml.mo share/locale/se/LC_MESSAGES/kcmperformance.mo share/locale/se/LC_MESSAGES/kfmclient.mo share/locale/se/LC_MESSAGES/kgetplugin.mo share/locale/se/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/se/LC_MESSAGES/khtmltts.mo share/locale/se/LC_MESSAGES/konqueror.mo share/locale/se/LC_MESSAGES/kshellcmdplugin.mo share/locale/se/LC_MESSAGES/libkonq.mo share/locale/se/LC_MESSAGES/searchbarplugin.mo share/locale/se/LC_MESSAGES/uachangerplugin.mo share/locale/si/LC_MESSAGES/fsview.mo share/locale/si/LC_MESSAGES/kcmbookmarks.mo share/locale/si/LC_MESSAGES/kcmkonq.mo share/locale/si/LC_MESSAGES/kcmkonqhtml.mo share/locale/si/LC_MESSAGES/kcmperformance.mo share/locale/si/LC_MESSAGES/kfmclient.mo share/locale/si/LC_MESSAGES/kgetplugin.mo share/locale/si/LC_MESSAGES/khtmltts.mo share/locale/si/LC_MESSAGES/konqueror.mo share/locale/si/LC_MESSAGES/kshellcmdplugin.mo share/locale/si/LC_MESSAGES/libkonq.mo share/locale/sk/LC_MESSAGES/akregator_konqplugin.mo share/locale/sk/LC_MESSAGES/autorefresh.mo share/locale/sk/LC_MESSAGES/babelfish.mo share/locale/sk/LC_MESSAGES/dirfilterplugin.mo share/locale/sk/LC_MESSAGES/fsview.mo share/locale/sk/LC_MESSAGES/imgalleryplugin.mo share/locale/sk/LC_MESSAGES/kcmbookmarks.mo share/locale/sk/LC_MESSAGES/kcmkonq.mo share/locale/sk/LC_MESSAGES/kcmkonqhtml.mo share/locale/sk/LC_MESSAGES/kcmperformance.mo share/locale/sk/LC_MESSAGES/kfmclient.mo share/locale/sk/LC_MESSAGES/kgetplugin.mo share/locale/sk/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/sk/LC_MESSAGES/khtmltts.mo share/locale/sk/LC_MESSAGES/konqueror.mo share/locale/sk/LC_MESSAGES/kshellcmdplugin.mo share/locale/sk/LC_MESSAGES/libkonq.mo share/locale/sk/LC_MESSAGES/searchbarplugin.mo share/locale/sk/LC_MESSAGES/uachangerplugin.mo share/locale/sk/LC_MESSAGES/webarchiver.mo share/locale/sk/LC_MESSAGES/webenginepart.mo share/locale/sl/LC_MESSAGES/akregator_konqplugin.mo share/locale/sl/LC_MESSAGES/autorefresh.mo share/locale/sl/LC_MESSAGES/babelfish.mo share/locale/sl/LC_MESSAGES/dirfilterplugin.mo share/locale/sl/LC_MESSAGES/fsview.mo share/locale/sl/LC_MESSAGES/imgalleryplugin.mo share/locale/sl/LC_MESSAGES/kcmbookmarks.mo share/locale/sl/LC_MESSAGES/kcmkonq.mo share/locale/sl/LC_MESSAGES/kcmkonqhtml.mo share/locale/sl/LC_MESSAGES/kcmperformance.mo share/locale/sl/LC_MESSAGES/kfmclient.mo share/locale/sl/LC_MESSAGES/kgetplugin.mo share/locale/sl/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/sl/LC_MESSAGES/khtmltts.mo share/locale/sl/LC_MESSAGES/konqueror.mo share/locale/sl/LC_MESSAGES/kshellcmdplugin.mo share/locale/sl/LC_MESSAGES/libkonq.mo share/locale/sl/LC_MESSAGES/searchbarplugin.mo share/locale/sl/LC_MESSAGES/uachangerplugin.mo share/locale/sl/LC_MESSAGES/webarchiver.mo share/locale/sl/LC_MESSAGES/webenginepart.mo share/locale/sq/LC_MESSAGES/akregator_konqplugin.mo share/locale/sq/LC_MESSAGES/autorefresh.mo share/locale/sq/LC_MESSAGES/babelfish.mo share/locale/sq/LC_MESSAGES/dirfilterplugin.mo share/locale/sq/LC_MESSAGES/fsview.mo share/locale/sq/LC_MESSAGES/imgalleryplugin.mo share/locale/sq/LC_MESSAGES/kcmbookmarks.mo share/locale/sq/LC_MESSAGES/kcmkonq.mo share/locale/sq/LC_MESSAGES/kcmkonqhtml.mo share/locale/sq/LC_MESSAGES/kcmperformance.mo share/locale/sq/LC_MESSAGES/kfmclient.mo share/locale/sq/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/sq/LC_MESSAGES/khtmltts.mo share/locale/sq/LC_MESSAGES/konqueror.mo share/locale/sq/LC_MESSAGES/libkonq.mo share/locale/sq/LC_MESSAGES/searchbarplugin.mo share/locale/sq/LC_MESSAGES/uachangerplugin.mo share/locale/sr/LC_MESSAGES/akregator_konqplugin.mo share/locale/sr/LC_MESSAGES/autorefresh.mo share/locale/sr/LC_MESSAGES/babelfish.mo share/locale/sr/LC_MESSAGES/dirfilterplugin.mo share/locale/sr/LC_MESSAGES/fsview.mo share/locale/sr/LC_MESSAGES/imgalleryplugin.mo share/locale/sr/LC_MESSAGES/kcmbookmarks.mo share/locale/sr/LC_MESSAGES/kcmkonq.mo share/locale/sr/LC_MESSAGES/kcmkonqhtml.mo share/locale/sr/LC_MESSAGES/kcmperformance.mo share/locale/sr/LC_MESSAGES/kfmclient.mo share/locale/sr/LC_MESSAGES/kgetplugin.mo share/locale/sr/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/sr/LC_MESSAGES/khtmltts.mo share/locale/sr/LC_MESSAGES/konqueror.mo share/locale/sr/LC_MESSAGES/kshellcmdplugin.mo share/locale/sr/LC_MESSAGES/libkonq.mo share/locale/sr/LC_MESSAGES/searchbarplugin.mo share/locale/sr/LC_MESSAGES/uachangerplugin.mo share/locale/sr/LC_MESSAGES/webenginepart.mo share/locale/sr@ijekavian/LC_MESSAGES/akregator_konqplugin.mo share/locale/sr@ijekavian/LC_MESSAGES/autorefresh.mo share/locale/sr@ijekavian/LC_MESSAGES/babelfish.mo share/locale/sr@ijekavian/LC_MESSAGES/dirfilterplugin.mo share/locale/sr@ijekavian/LC_MESSAGES/fsview.mo share/locale/sr@ijekavian/LC_MESSAGES/imgalleryplugin.mo share/locale/sr@ijekavian/LC_MESSAGES/kcmbookmarks.mo share/locale/sr@ijekavian/LC_MESSAGES/kcmkonq.mo share/locale/sr@ijekavian/LC_MESSAGES/kcmkonqhtml.mo share/locale/sr@ijekavian/LC_MESSAGES/kcmperformance.mo share/locale/sr@ijekavian/LC_MESSAGES/kfmclient.mo share/locale/sr@ijekavian/LC_MESSAGES/kgetplugin.mo share/locale/sr@ijekavian/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/sr@ijekavian/LC_MESSAGES/khtmltts.mo share/locale/sr@ijekavian/LC_MESSAGES/konqueror.mo share/locale/sr@ijekavian/LC_MESSAGES/kshellcmdplugin.mo share/locale/sr@ijekavian/LC_MESSAGES/libkonq.mo share/locale/sr@ijekavian/LC_MESSAGES/searchbarplugin.mo share/locale/sr@ijekavian/LC_MESSAGES/uachangerplugin.mo share/locale/sr@ijekavian/LC_MESSAGES/webenginepart.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/akregator_konqplugin.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/autorefresh.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/babelfish.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/dirfilterplugin.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/fsview.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/imgalleryplugin.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kcmbookmarks.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kcmkonq.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kcmkonqhtml.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kcmperformance.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kfmclient.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kgetplugin.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/khtmltts.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/konqueror.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kshellcmdplugin.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/libkonq.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/searchbarplugin.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/uachangerplugin.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/webenginepart.mo share/locale/sr@latin/LC_MESSAGES/akregator_konqplugin.mo share/locale/sr@latin/LC_MESSAGES/autorefresh.mo share/locale/sr@latin/LC_MESSAGES/babelfish.mo share/locale/sr@latin/LC_MESSAGES/dirfilterplugin.mo share/locale/sr@latin/LC_MESSAGES/fsview.mo share/locale/sr@latin/LC_MESSAGES/imgalleryplugin.mo share/locale/sr@latin/LC_MESSAGES/kcmbookmarks.mo share/locale/sr@latin/LC_MESSAGES/kcmkonq.mo share/locale/sr@latin/LC_MESSAGES/kcmkonqhtml.mo share/locale/sr@latin/LC_MESSAGES/kcmperformance.mo share/locale/sr@latin/LC_MESSAGES/kfmclient.mo share/locale/sr@latin/LC_MESSAGES/kgetplugin.mo share/locale/sr@latin/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/sr@latin/LC_MESSAGES/khtmltts.mo share/locale/sr@latin/LC_MESSAGES/konqueror.mo share/locale/sr@latin/LC_MESSAGES/kshellcmdplugin.mo share/locale/sr@latin/LC_MESSAGES/libkonq.mo share/locale/sr@latin/LC_MESSAGES/searchbarplugin.mo share/locale/sr@latin/LC_MESSAGES/uachangerplugin.mo share/locale/sr@latin/LC_MESSAGES/webenginepart.mo share/locale/sv/LC_MESSAGES/akregator_konqplugin.mo share/locale/sv/LC_MESSAGES/autorefresh.mo share/locale/sv/LC_MESSAGES/babelfish.mo share/locale/sv/LC_MESSAGES/dirfilterplugin.mo share/locale/sv/LC_MESSAGES/fsview.mo share/locale/sv/LC_MESSAGES/imgalleryplugin.mo share/locale/sv/LC_MESSAGES/kcmbookmarks.mo share/locale/sv/LC_MESSAGES/kcmkonq.mo share/locale/sv/LC_MESSAGES/kcmkonqhtml.mo share/locale/sv/LC_MESSAGES/kcmperformance.mo share/locale/sv/LC_MESSAGES/kfmclient.mo share/locale/sv/LC_MESSAGES/kgetplugin.mo share/locale/sv/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/sv/LC_MESSAGES/khtmltts.mo share/locale/sv/LC_MESSAGES/konqueror.mo share/locale/sv/LC_MESSAGES/kshellcmdplugin.mo share/locale/sv/LC_MESSAGES/libkonq.mo share/locale/sv/LC_MESSAGES/searchbarplugin.mo share/locale/sv/LC_MESSAGES/uachangerplugin.mo share/locale/sv/LC_MESSAGES/webarchiver.mo share/locale/sv/LC_MESSAGES/webenginepart.mo share/locale/ta/LC_MESSAGES/akregator_konqplugin.mo share/locale/ta/LC_MESSAGES/autorefresh.mo share/locale/ta/LC_MESSAGES/babelfish.mo share/locale/ta/LC_MESSAGES/dirfilterplugin.mo share/locale/ta/LC_MESSAGES/fsview.mo share/locale/ta/LC_MESSAGES/imgalleryplugin.mo share/locale/ta/LC_MESSAGES/kcmbookmarks.mo share/locale/ta/LC_MESSAGES/kcmkonq.mo share/locale/ta/LC_MESSAGES/kcmkonqhtml.mo share/locale/ta/LC_MESSAGES/kcmperformance.mo share/locale/ta/LC_MESSAGES/kfmclient.mo share/locale/ta/LC_MESSAGES/kgetplugin.mo share/locale/ta/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/ta/LC_MESSAGES/khtmltts.mo share/locale/ta/LC_MESSAGES/konqueror.mo share/locale/ta/LC_MESSAGES/kshellcmdplugin.mo share/locale/ta/LC_MESSAGES/libkonq.mo share/locale/ta/LC_MESSAGES/searchbarplugin.mo share/locale/ta/LC_MESSAGES/uachangerplugin.mo share/locale/te/LC_MESSAGES/kcmbookmarks.mo share/locale/te/LC_MESSAGES/kcmkonq.mo share/locale/te/LC_MESSAGES/kcmkonqhtml.mo share/locale/te/LC_MESSAGES/kcmperformance.mo share/locale/te/LC_MESSAGES/kfmclient.mo share/locale/te/LC_MESSAGES/khtmltts.mo share/locale/te/LC_MESSAGES/konqueror.mo share/locale/te/LC_MESSAGES/kshellcmdplugin.mo share/locale/te/LC_MESSAGES/libkonq.mo share/locale/tg/LC_MESSAGES/akregator_konqplugin.mo share/locale/tg/LC_MESSAGES/autorefresh.mo share/locale/tg/LC_MESSAGES/babelfish.mo share/locale/tg/LC_MESSAGES/dirfilterplugin.mo share/locale/tg/LC_MESSAGES/fsview.mo share/locale/tg/LC_MESSAGES/imgalleryplugin.mo share/locale/tg/LC_MESSAGES/kcmbookmarks.mo share/locale/tg/LC_MESSAGES/kcmkonq.mo share/locale/tg/LC_MESSAGES/kcmkonqhtml.mo share/locale/tg/LC_MESSAGES/kcmperformance.mo share/locale/tg/LC_MESSAGES/kfmclient.mo share/locale/tg/LC_MESSAGES/kgetplugin.mo share/locale/tg/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/tg/LC_MESSAGES/khtmltts.mo share/locale/tg/LC_MESSAGES/konqueror.mo share/locale/tg/LC_MESSAGES/kshellcmdplugin.mo share/locale/tg/LC_MESSAGES/libkonq.mo share/locale/tg/LC_MESSAGES/searchbarplugin.mo share/locale/tg/LC_MESSAGES/uachangerplugin.mo share/locale/tg/LC_MESSAGES/webenginepart.mo share/locale/th/LC_MESSAGES/akregator_konqplugin.mo share/locale/th/LC_MESSAGES/autorefresh.mo share/locale/th/LC_MESSAGES/babelfish.mo share/locale/th/LC_MESSAGES/dirfilterplugin.mo share/locale/th/LC_MESSAGES/fsview.mo share/locale/th/LC_MESSAGES/imgalleryplugin.mo share/locale/th/LC_MESSAGES/kcmbookmarks.mo share/locale/th/LC_MESSAGES/kcmkonq.mo share/locale/th/LC_MESSAGES/kcmkonqhtml.mo share/locale/th/LC_MESSAGES/kcmperformance.mo share/locale/th/LC_MESSAGES/kfmclient.mo share/locale/th/LC_MESSAGES/kgetplugin.mo share/locale/th/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/th/LC_MESSAGES/khtmltts.mo share/locale/th/LC_MESSAGES/konqueror.mo share/locale/th/LC_MESSAGES/kshellcmdplugin.mo share/locale/th/LC_MESSAGES/libkonq.mo share/locale/th/LC_MESSAGES/searchbarplugin.mo share/locale/th/LC_MESSAGES/uachangerplugin.mo share/locale/th/LC_MESSAGES/webenginepart.mo share/locale/tr/LC_MESSAGES/akregator_konqplugin.mo share/locale/tr/LC_MESSAGES/autorefresh.mo share/locale/tr/LC_MESSAGES/babelfish.mo share/locale/tr/LC_MESSAGES/dirfilterplugin.mo share/locale/tr/LC_MESSAGES/fsview.mo share/locale/tr/LC_MESSAGES/imgalleryplugin.mo share/locale/tr/LC_MESSAGES/kcmbookmarks.mo share/locale/tr/LC_MESSAGES/kcmkonq.mo share/locale/tr/LC_MESSAGES/kcmkonqhtml.mo share/locale/tr/LC_MESSAGES/kcmperformance.mo share/locale/tr/LC_MESSAGES/kfmclient.mo share/locale/tr/LC_MESSAGES/kgetplugin.mo share/locale/tr/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/tr/LC_MESSAGES/khtmltts.mo share/locale/tr/LC_MESSAGES/konqueror.mo share/locale/tr/LC_MESSAGES/kshellcmdplugin.mo share/locale/tr/LC_MESSAGES/libkonq.mo share/locale/tr/LC_MESSAGES/searchbarplugin.mo share/locale/tr/LC_MESSAGES/uachangerplugin.mo share/locale/tr/LC_MESSAGES/webarchiver.mo share/locale/tr/LC_MESSAGES/webenginepart.mo share/locale/ug/LC_MESSAGES/akregator_konqplugin.mo share/locale/ug/LC_MESSAGES/autorefresh.mo share/locale/ug/LC_MESSAGES/babelfish.mo share/locale/ug/LC_MESSAGES/dirfilterplugin.mo share/locale/ug/LC_MESSAGES/fsview.mo share/locale/ug/LC_MESSAGES/imgalleryplugin.mo share/locale/ug/LC_MESSAGES/kcmbookmarks.mo share/locale/ug/LC_MESSAGES/kcmkonq.mo share/locale/ug/LC_MESSAGES/kcmkonqhtml.mo share/locale/ug/LC_MESSAGES/kcmperformance.mo share/locale/ug/LC_MESSAGES/kfmclient.mo share/locale/ug/LC_MESSAGES/kgetplugin.mo share/locale/ug/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/ug/LC_MESSAGES/khtmltts.mo share/locale/ug/LC_MESSAGES/konqueror.mo share/locale/ug/LC_MESSAGES/kshellcmdplugin.mo share/locale/ug/LC_MESSAGES/libkonq.mo share/locale/ug/LC_MESSAGES/searchbarplugin.mo share/locale/ug/LC_MESSAGES/uachangerplugin.mo share/locale/ug/LC_MESSAGES/webenginepart.mo share/locale/uk/LC_MESSAGES/akregator_konqplugin.mo share/locale/uk/LC_MESSAGES/autorefresh.mo share/locale/uk/LC_MESSAGES/babelfish.mo share/locale/uk/LC_MESSAGES/dirfilterplugin.mo share/locale/uk/LC_MESSAGES/fsview.mo share/locale/uk/LC_MESSAGES/imgalleryplugin.mo share/locale/uk/LC_MESSAGES/kcmbookmarks.mo share/locale/uk/LC_MESSAGES/kcmkonq.mo share/locale/uk/LC_MESSAGES/kcmkonqhtml.mo share/locale/uk/LC_MESSAGES/kcmperformance.mo share/locale/uk/LC_MESSAGES/kfmclient.mo share/locale/uk/LC_MESSAGES/kgetplugin.mo share/locale/uk/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/uk/LC_MESSAGES/khtmltts.mo share/locale/uk/LC_MESSAGES/konqueror.mo share/locale/uk/LC_MESSAGES/kshellcmdplugin.mo share/locale/uk/LC_MESSAGES/libkonq.mo share/locale/uk/LC_MESSAGES/searchbarplugin.mo share/locale/uk/LC_MESSAGES/uachangerplugin.mo share/locale/uk/LC_MESSAGES/webarchiver.mo share/locale/uk/LC_MESSAGES/webenginepart.mo share/locale/uz/LC_MESSAGES/akregator_konqplugin.mo share/locale/uz/LC_MESSAGES/autorefresh.mo share/locale/uz/LC_MESSAGES/babelfish.mo share/locale/uz/LC_MESSAGES/dirfilterplugin.mo share/locale/uz/LC_MESSAGES/fsview.mo share/locale/uz/LC_MESSAGES/imgalleryplugin.mo share/locale/uz/LC_MESSAGES/kcmbookmarks.mo share/locale/uz/LC_MESSAGES/kcmkonq.mo share/locale/uz/LC_MESSAGES/kcmkonqhtml.mo share/locale/uz/LC_MESSAGES/kcmperformance.mo share/locale/uz/LC_MESSAGES/kfmclient.mo share/locale/uz/LC_MESSAGES/kgetplugin.mo share/locale/uz/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/uz/LC_MESSAGES/konqueror.mo share/locale/uz/LC_MESSAGES/kshellcmdplugin.mo share/locale/uz/LC_MESSAGES/libkonq.mo share/locale/uz/LC_MESSAGES/searchbarplugin.mo share/locale/uz/LC_MESSAGES/uachangerplugin.mo share/locale/uz@cyrillic/LC_MESSAGES/akregator_konqplugin.mo share/locale/uz@cyrillic/LC_MESSAGES/autorefresh.mo share/locale/uz@cyrillic/LC_MESSAGES/babelfish.mo share/locale/uz@cyrillic/LC_MESSAGES/dirfilterplugin.mo share/locale/uz@cyrillic/LC_MESSAGES/fsview.mo share/locale/uz@cyrillic/LC_MESSAGES/imgalleryplugin.mo share/locale/uz@cyrillic/LC_MESSAGES/kcmbookmarks.mo share/locale/uz@cyrillic/LC_MESSAGES/kcmkonq.mo share/locale/uz@cyrillic/LC_MESSAGES/kcmkonqhtml.mo share/locale/uz@cyrillic/LC_MESSAGES/kcmperformance.mo share/locale/uz@cyrillic/LC_MESSAGES/kfmclient.mo share/locale/uz@cyrillic/LC_MESSAGES/kgetplugin.mo share/locale/uz@cyrillic/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/uz@cyrillic/LC_MESSAGES/konqueror.mo share/locale/uz@cyrillic/LC_MESSAGES/kshellcmdplugin.mo share/locale/uz@cyrillic/LC_MESSAGES/libkonq.mo share/locale/uz@cyrillic/LC_MESSAGES/searchbarplugin.mo share/locale/uz@cyrillic/LC_MESSAGES/uachangerplugin.mo share/locale/vi/LC_MESSAGES/akregator_konqplugin.mo share/locale/vi/LC_MESSAGES/autorefresh.mo share/locale/vi/LC_MESSAGES/babelfish.mo share/locale/vi/LC_MESSAGES/dirfilterplugin.mo share/locale/vi/LC_MESSAGES/fsview.mo share/locale/vi/LC_MESSAGES/imgalleryplugin.mo share/locale/vi/LC_MESSAGES/kcmbookmarks.mo share/locale/vi/LC_MESSAGES/kcmkonq.mo share/locale/vi/LC_MESSAGES/kcmkonqhtml.mo share/locale/vi/LC_MESSAGES/kcmperformance.mo share/locale/vi/LC_MESSAGES/kfmclient.mo share/locale/vi/LC_MESSAGES/kgetplugin.mo share/locale/vi/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/vi/LC_MESSAGES/khtmltts.mo share/locale/vi/LC_MESSAGES/konqueror.mo share/locale/vi/LC_MESSAGES/kshellcmdplugin.mo share/locale/vi/LC_MESSAGES/libkonq.mo share/locale/vi/LC_MESSAGES/searchbarplugin.mo share/locale/vi/LC_MESSAGES/uachangerplugin.mo share/locale/wa/LC_MESSAGES/akregator_konqplugin.mo share/locale/wa/LC_MESSAGES/autorefresh.mo share/locale/wa/LC_MESSAGES/babelfish.mo share/locale/wa/LC_MESSAGES/dirfilterplugin.mo share/locale/wa/LC_MESSAGES/fsview.mo share/locale/wa/LC_MESSAGES/imgalleryplugin.mo share/locale/wa/LC_MESSAGES/kcmbookmarks.mo share/locale/wa/LC_MESSAGES/kcmkonq.mo share/locale/wa/LC_MESSAGES/kcmkonqhtml.mo share/locale/wa/LC_MESSAGES/kcmperformance.mo share/locale/wa/LC_MESSAGES/kfmclient.mo share/locale/wa/LC_MESSAGES/kgetplugin.mo share/locale/wa/LC_MESSAGES/khtmltts.mo share/locale/wa/LC_MESSAGES/konqueror.mo share/locale/wa/LC_MESSAGES/kshellcmdplugin.mo share/locale/wa/LC_MESSAGES/libkonq.mo share/locale/wa/LC_MESSAGES/uachangerplugin.mo share/locale/xh/LC_MESSAGES/babelfish.mo share/locale/xh/LC_MESSAGES/dirfilterplugin.mo share/locale/xh/LC_MESSAGES/imgalleryplugin.mo share/locale/xh/LC_MESSAGES/kcmbookmarks.mo share/locale/xh/LC_MESSAGES/kcmkonq.mo share/locale/xh/LC_MESSAGES/kcmkonqhtml.mo share/locale/xh/LC_MESSAGES/kfmclient.mo share/locale/xh/LC_MESSAGES/kgetplugin.mo share/locale/xh/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/xh/LC_MESSAGES/konqueror.mo share/locale/xh/LC_MESSAGES/kshellcmdplugin.mo share/locale/xh/LC_MESSAGES/libkonq.mo share/locale/xh/LC_MESSAGES/uachangerplugin.mo share/locale/zh_CN/LC_MESSAGES/akregator_konqplugin.mo share/locale/zh_CN/LC_MESSAGES/autorefresh.mo share/locale/zh_CN/LC_MESSAGES/babelfish.mo share/locale/zh_CN/LC_MESSAGES/dirfilterplugin.mo share/locale/zh_CN/LC_MESSAGES/fsview.mo share/locale/zh_CN/LC_MESSAGES/imgalleryplugin.mo share/locale/zh_CN/LC_MESSAGES/kcmbookmarks.mo share/locale/zh_CN/LC_MESSAGES/kcmkonq.mo share/locale/zh_CN/LC_MESSAGES/kcmkonqhtml.mo share/locale/zh_CN/LC_MESSAGES/kcmperformance.mo share/locale/zh_CN/LC_MESSAGES/kfmclient.mo share/locale/zh_CN/LC_MESSAGES/kgetplugin.mo share/locale/zh_CN/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/zh_CN/LC_MESSAGES/khtmltts.mo share/locale/zh_CN/LC_MESSAGES/konqueror.mo share/locale/zh_CN/LC_MESSAGES/kshellcmdplugin.mo share/locale/zh_CN/LC_MESSAGES/libkonq.mo share/locale/zh_CN/LC_MESSAGES/searchbarplugin.mo share/locale/zh_CN/LC_MESSAGES/uachangerplugin.mo share/locale/zh_CN/LC_MESSAGES/webarchiver.mo share/locale/zh_CN/LC_MESSAGES/webenginepart.mo share/locale/zh_HK/LC_MESSAGES/kgetplugin.mo share/locale/zh_TW/LC_MESSAGES/akregator_konqplugin.mo share/locale/zh_TW/LC_MESSAGES/autorefresh.mo share/locale/zh_TW/LC_MESSAGES/babelfish.mo share/locale/zh_TW/LC_MESSAGES/dirfilterplugin.mo share/locale/zh_TW/LC_MESSAGES/fsview.mo share/locale/zh_TW/LC_MESSAGES/imgalleryplugin.mo share/locale/zh_TW/LC_MESSAGES/kcmbookmarks.mo share/locale/zh_TW/LC_MESSAGES/kcmkonq.mo share/locale/zh_TW/LC_MESSAGES/kcmkonqhtml.mo share/locale/zh_TW/LC_MESSAGES/kcmperformance.mo share/locale/zh_TW/LC_MESSAGES/kfmclient.mo share/locale/zh_TW/LC_MESSAGES/kgetplugin.mo share/locale/zh_TW/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/zh_TW/LC_MESSAGES/khtmltts.mo share/locale/zh_TW/LC_MESSAGES/konqueror.mo share/locale/zh_TW/LC_MESSAGES/kshellcmdplugin.mo share/locale/zh_TW/LC_MESSAGES/libkonq.mo share/locale/zh_TW/LC_MESSAGES/searchbarplugin.mo share/locale/zh_TW/LC_MESSAGES/uachangerplugin.mo share/locale/zh_TW/LC_MESSAGES/webarchiver.mo share/locale/zh_TW/LC_MESSAGES/webenginepart.mo share/metainfo/org.kde.konqueror.appdata.xml share/qlogging-categories5/akregatorplugin.categories share/qlogging-categories5/fsview.categories share/qlogging-categories5/konqueror.categories share/webenginepart/error.html diff --git a/x11-fm/krusader2/Makefile b/x11-fm/krusader2/Makefile index 3e03c751a253..630325057f66 100644 --- a/x11-fm/krusader2/Makefile +++ b/x11-fm/krusader2/Makefile @@ -1,24 +1,26 @@ PORTNAME= krusader DISTVERSION= 2.8.0 CATEGORIES= x11-fm kde MASTER_SITES= KDE/stable/${PORTNAME}/${PORTVERSION}/ MAINTAINER= kde@FreeBSD.org COMMENT= Twin panel file manager for KDE, like midnight or norton commander WWW= https://krusader.org/ LICENSE= GPLv2+ LICENSE_FILE= ${WRKSRC}/LICENSES/GPL-2.0-or-later.txt +RUN_DEPENDS= ${LOCALBASE}/bin/unzip:archivers/unzip + USES= cmake compiler:c++11-lang cpe desktop-file-utils gettext \ kde:5 qt:5 tar:xz xorg USE_KDE= archive auth auth bookmarks codecs completion config \ configwidgets coreaddons doctools ecm guiaddons i18n \ iconthemes itemviews jobwidgets kio notifications parts \ service solid sonnet textwidgets wallet widgetsaddons \ windowsystem xmlgui USE_QT= concurrent core dbus gui network printsupport xml widgets \ buildtools:build qmake:build USE_XORG= x11 .include diff --git a/x11/konsole/Makefile b/x11/konsole/Makefile index 622d03ba09a9..f47ffbd77f63 100644 --- a/x11/konsole/Makefile +++ b/x11/konsole/Makefile @@ -1,31 +1,31 @@ PORTNAME= konsole DISTVERSION= ${KDE_APPLICATIONS_VERSION} CATEGORIES= x11 kde kde-applications MAINTAINER= kde@FreeBSD.org COMMENT= KDE terminal emulator WWW= https://konsole.kde.org/ BUILD_DEPENDS= ${LOCALBASE}/share/xsl/docbook/html/docbook.xsl:textproc/docbook-xsl \ docbook-xml>0:textproc/docbook-xml RUN_DEPENDS= keditbookmarks:deskutils/keditbookmarks LICENSE= GPLv2+ LICENSE_FILE= ${WRKSRC}/COPYING USES= cmake compiler:c++11-lang gettext pkgconfig kde:5 \ qt:5 tar:xz xorg USE_KDE= auth attica bookmarks codecs completion config configwidgets \ coreaddons crash dbusaddons emoticons globalaccel guiaddons i18n \ iconthemes init itemmodels jobwidgets kio \ newstuff notifications notifyconfig parts pty service solid sonnet \ textwidgets widgetsaddons windowsystem xmlgui \ ecm:build -USE_QT= concurrent core dbus gui network printsupport script scripttools sql \ +USE_QT= concurrent core dbus gui multimedia network printsupport script scripttools sql \ widgets xml \ buildtools:build qmake:build USE_XORG= x11 OPTIONS_DEFINE= DOCS .include diff --git a/x11/konsole/distinfo b/x11/konsole/distinfo index bd6e1db90854..81e4a3585b5b 100644 --- a/x11/konsole/distinfo +++ b/x11/konsole/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1677828175 -SHA256 (KDE/release-service/22.12.3/konsole-22.12.3.tar.xz) = 59a9bc95446ecaeba20c04b324ce55934e9ea042ab9dbe75eb76d02b6cabf86f -SIZE (KDE/release-service/22.12.3/konsole-22.12.3.tar.xz) = 1779972 +TIMESTAMP = 1681548312 +SHA256 (KDE/release-service/23.04.0/konsole-23.04.0.tar.xz) = 21ce6f3cbc9add1a33c27b8a32aa5f71001c106e7d2566d2dec7a23d8eb7a59c +SIZE (KDE/release-service/23.04.0/konsole-23.04.0.tar.xz) = 1817320 diff --git a/x11/konsole/pkg-plist b/x11/konsole/pkg-plist index ad4f9e77dda2..9f297d1aac75 100644 --- a/x11/konsole/pkg-plist +++ b/x11/konsole/pkg-plist @@ -1,130 +1,134 @@ bin/konsole bin/konsoleprofile +etc/xdg/konsolerc lib/kconf_update_bin/konsole_globalaccel +lib/kconf_update_bin/konsole_show_menubar lib/libkonsoleapp.so.1 lib/libkonsoleapp.so.%%KDE_APPLICATIONS_VERSION%% lib/libkonsoleprivate.so.1 lib/libkonsoleprivate.so.%%KDE_APPLICATIONS_VERSION%% %%QT_PLUGINDIR%%/konsolepart.so %%QT_PLUGINDIR%%/konsoleplugins/konsole_quickcommandsplugin.so %%QT_PLUGINDIR%%/konsoleplugins/konsole_sshmanagerplugin.so share/applications/org.kde.konsole.desktop -share/kconf_update/konsole_globalaccel.upd +share/kconf_update/konsole.upd +share/kconf_update/konsole_add_hamburgermenu_to_toolbar.sh share/kio/servicemenus/konsolerun.desktop share/knotifications5/konsole.notifyrc share/knsrcfiles/konsole.knsrc %%DATADIR%%/1x2-terminals.json %%DATADIR%%/2x1-terminals.json %%DATADIR%%/2x2-terminals.json %%DATADIR%%/BlackOnLightYellow.colorscheme %%DATADIR%%/BlackOnRandomLight.colorscheme %%DATADIR%%/BlackOnWhite.colorscheme %%DATADIR%%/BlueOnBlack.colorscheme %%DATADIR%%/Breeze.colorscheme %%DATADIR%%/DarkPastels.colorscheme %%DATADIR%%/GreenOnBlack.colorscheme %%DATADIR%%/Linux.colorscheme %%DATADIR%%/RedOnBlack.colorscheme %%DATADIR%%/Solarized.colorscheme %%DATADIR%%/SolarizedLight.colorscheme %%DATADIR%%/WhiteOnBlack.colorscheme %%DATADIR%%/default.keytab %%DATADIR%%/linux.keytab %%DATADIR%%/macos.keytab %%DATADIR%%/solaris.keytab share/kservices5/konsolepart.desktop share/kservicetypes5/terminalemulator.desktop share/locale/af/LC_MESSAGES/konsole.mo share/locale/ar/LC_MESSAGES/konsole.mo share/locale/az/LC_MESSAGES/konsole.mo share/locale/be/LC_MESSAGES/konsole.mo share/locale/be@latin/LC_MESSAGES/konsole.mo share/locale/bg/LC_MESSAGES/konsole.mo share/locale/bn/LC_MESSAGES/konsole.mo share/locale/bn_IN/LC_MESSAGES/konsole.mo share/locale/br/LC_MESSAGES/konsole.mo share/locale/bs/LC_MESSAGES/konsole.mo share/locale/ca/LC_MESSAGES/konsole.mo share/locale/ca@valencia/LC_MESSAGES/konsole.mo share/locale/cs/LC_MESSAGES/konsole.mo share/locale/csb/LC_MESSAGES/konsole.mo share/locale/cy/LC_MESSAGES/konsole.mo share/locale/da/LC_MESSAGES/konsole.mo share/locale/de/LC_MESSAGES/konsole.mo share/locale/el/LC_MESSAGES/konsole.mo share/locale/en_GB/LC_MESSAGES/konsole.mo share/locale/eo/LC_MESSAGES/konsole.mo share/locale/es/LC_MESSAGES/konsole.mo share/locale/et/LC_MESSAGES/konsole.mo share/locale/eu/LC_MESSAGES/konsole.mo share/locale/fa/LC_MESSAGES/konsole.mo share/locale/fi/LC_MESSAGES/konsole.mo share/locale/fr/LC_MESSAGES/konsole.mo share/locale/fy/LC_MESSAGES/konsole.mo share/locale/ga/LC_MESSAGES/konsole.mo share/locale/gl/LC_MESSAGES/konsole.mo share/locale/gu/LC_MESSAGES/konsole.mo share/locale/he/LC_MESSAGES/konsole.mo share/locale/hi/LC_MESSAGES/konsole.mo share/locale/hne/LC_MESSAGES/konsole.mo share/locale/hr/LC_MESSAGES/konsole.mo share/locale/hsb/LC_MESSAGES/konsole.mo share/locale/hu/LC_MESSAGES/konsole.mo share/locale/ia/LC_MESSAGES/konsole.mo share/locale/id/LC_MESSAGES/konsole.mo share/locale/ie/LC_MESSAGES/konsole.mo share/locale/is/LC_MESSAGES/konsole.mo share/locale/it/LC_MESSAGES/konsole.mo share/locale/ja/LC_MESSAGES/konsole.mo share/locale/ka/LC_MESSAGES/konsole.mo share/locale/kk/LC_MESSAGES/konsole.mo share/locale/km/LC_MESSAGES/konsole.mo share/locale/kn/LC_MESSAGES/konsole.mo share/locale/ko/LC_MESSAGES/konsole.mo share/locale/ku/LC_MESSAGES/konsole.mo share/locale/lt/LC_MESSAGES/konsole.mo share/locale/lv/LC_MESSAGES/konsole.mo share/locale/mai/LC_MESSAGES/konsole.mo share/locale/mk/LC_MESSAGES/konsole.mo share/locale/ml/LC_MESSAGES/konsole.mo share/locale/mr/LC_MESSAGES/konsole.mo share/locale/ms/LC_MESSAGES/konsole.mo share/locale/nb/LC_MESSAGES/konsole.mo share/locale/nds/LC_MESSAGES/konsole.mo share/locale/ne/LC_MESSAGES/konsole.mo share/locale/nl/LC_MESSAGES/konsole.mo share/locale/nn/LC_MESSAGES/konsole.mo share/locale/oc/LC_MESSAGES/konsole.mo share/locale/or/LC_MESSAGES/konsole.mo share/locale/pa/LC_MESSAGES/konsole.mo share/locale/pl/LC_MESSAGES/konsole.mo share/locale/pt/LC_MESSAGES/konsole.mo share/locale/pt_BR/LC_MESSAGES/konsole.mo share/locale/ro/LC_MESSAGES/konsole.mo share/locale/ru/LC_MESSAGES/konsole.mo share/locale/se/LC_MESSAGES/konsole.mo share/locale/si/LC_MESSAGES/konsole.mo share/locale/sk/LC_MESSAGES/konsole.mo share/locale/sl/LC_MESSAGES/konsole.mo share/locale/sq/LC_MESSAGES/konsole.mo share/locale/sr/LC_MESSAGES/konsole.mo share/locale/sr@ijekavian/LC_MESSAGES/konsole.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/konsole.mo share/locale/sr@latin/LC_MESSAGES/konsole.mo share/locale/sv/LC_MESSAGES/konsole.mo share/locale/ta/LC_MESSAGES/konsole.mo share/locale/te/LC_MESSAGES/konsole.mo share/locale/tg/LC_MESSAGES/konsole.mo share/locale/th/LC_MESSAGES/konsole.mo share/locale/tr/LC_MESSAGES/konsole.mo share/locale/ug/LC_MESSAGES/konsole.mo share/locale/uk/LC_MESSAGES/konsole.mo share/locale/uz/LC_MESSAGES/konsole.mo share/locale/uz@cyrillic/LC_MESSAGES/konsole.mo share/locale/vi/LC_MESSAGES/konsole.mo share/locale/wa/LC_MESSAGES/konsole.mo share/locale/xh/LC_MESSAGES/konsole.mo share/locale/zh_CN/LC_MESSAGES/konsole.mo share/locale/zh_TW/LC_MESSAGES/konsole.mo share/metainfo/org.kde.konsole.appdata.xml share/qlogging-categories5/konsole.categories +share/zsh/site-functions/_konsole diff --git a/x11/yakuake/distinfo b/x11/yakuake/distinfo index c5945dc84d32..a32191177298 100644 --- a/x11/yakuake/distinfo +++ b/x11/yakuake/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1677828174 -SHA256 (KDE/release-service/22.12.3/yakuake-22.12.3.tar.xz) = bd8a4138b818b8569644f815211548d51b5df621037ff801ee2f28d85c8f0ddb -SIZE (KDE/release-service/22.12.3/yakuake-22.12.3.tar.xz) = 427964 +TIMESTAMP = 1681548313 +SHA256 (KDE/release-service/23.04.0/yakuake-23.04.0.tar.xz) = 0f769bbb226f44f502d482b415f0403a68c1f95b25fbc255dc8df319ab12c061 +SIZE (KDE/release-service/23.04.0/yakuake-23.04.0.tar.xz) = 428468