diff --git a/Mk/Uses/kde.mk b/Mk/Uses/kde.mk index a3889a1abd68..a3c9afdea1ee 100644 --- a/Mk/Uses/kde.mk +++ b/Mk/Uses/kde.mk @@ -1,1064 +1,1061 @@ # Provides support for KDE and KF5-based ports. # # Feature: kde # Valid ARGS: 5 6 # # 5: Depend on KDE Frameworks 5 components and variables. # 6: Depend on KDE Frameworks 6 components and variables. # # Variables that can be set by a port: # # USE_KDE List of KF[56]/Plasma[56] 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 6 . 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 ===================================== KDE_PLASMA_VERSION?= ${KDE_PLASMA${_KDE_VERSION}_VERSION} KDE_PLASMA_BRANCH?= ${KDE_PLASMA${_KDE_VERSION}_BRANCH} KDE_FRAMEWORKS_VERSION?= ${KDE_FRAMEWORKS${_KDE_VERSION}_VERSION} KDE_FRAMEWORKS_BRANCH?= ${KDE_FRAMEWORKS${_KDE_VERSION}_BRANCH} KDE_APPLICATIONS_BRANCH?= ${KDE_APPLICATIONS6_BRANCH} KDE_APPLICATIONS_VERSION?= ${KDE_APPLICATIONS6_VERSION} KDE_APPLICATIONS_SHLIB_VER?= ${KDE_APPLICATIONS6_SHLIB_VER} KDE_APPLICATIONS_SHLIB_G_VER?= ${KDE_APPLICATIONS6_SHLIB_G_VER} # Legacy KDE Plasma. KDE_PLASMA5_VERSION?= 5.27.12 KDE_PLASMA5_BRANCH?= stable # Current KDE Plasma desktop. KDE_PLASMA6_VERSION?= 6.6.4 KDE_PLASMA6_BRANCH?= stable # Legacy KDE frameworks (Qt5 based). KDE_FRAMEWORKS5_VERSION?= 5.116.0 KDE_FRAMEWORKS5_BRANCH?= stable # Current KDE Frameworks (Qt6 based). KDE_FRAMEWORKS6_VERSION?= 6.25.0 KDE_FRAMEWORKS6_BRANCH?= stable # Current KDE applications. # On major update: # - check and update if needed _${PORTNAME}_PROJECT_VERSION for the following ports: # audio/audiocd-kio, devel/kdevelop, games/libkdegames, games/libkmahjongg, graphics/kgraphviewer # - bump SHLIB_VER for editors/calligra. -KDE_APPLICATIONS6_VERSION?= 25.12.3 -KDE_APPLICATIONS6_SHLIB_VER?= 6.6.3 +KDE_APPLICATIONS6_VERSION?= 26.04.0 +KDE_APPLICATIONS6_SHLIB_VER?= 6.7.0 # G as in KDE Gear, and as in "don't make the variable name longer than required". KDE_APPLICATIONS6_SHLIB_G_VER?= ${KDE_APPLICATIONS6_VERSION} KDE_APPLICATIONS6_BRANCH?= stable # Some projects despite being a part of Gear distribution continue to use # their own versioning with mangled KDE_APPLICATIONS_VERSION as a patchlevel. # Provide more variables to ease their maintenance. KDE_APPS_MAJOR= ${KDE_APPLICATIONS_VERSION:R:R} KDE_APPS_MINOR= ${KDE_APPLICATIONS_VERSION:R:E} . if ${KDE_APPLICATIONS_BRANCH:Mstable} KDE_APPS_MICRO= 0${KDE_APPLICATIONS_VERSION:E} . else KDE_APPS_MICRO= ${KDE_APPLICATIONS_VERSION:E} . endif KDE_APPS_BASED_PATCHLEVEL?= ${KDE_APPS_MAJOR}${KDE_APPS_MINOR}${KDE_APPS_MICRO} # ============================================================================== # === 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 kde-devel . for cat in ${_KDE_CATEGORIES_SUPPORTED:Nkde-devel} . 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_TAGNAME= ${_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}" . if defined(_${PORTNAME}_PROJECT_VERSION) PLIST_SUB+= SHLIB_VER_LONG=${_${PORTNAME}_PROJECT_VERSION}.${KDE_APPS_BASED_PATCHLEVEL} . endif DIST_SUBDIR?= KDE/release-service/${KDE_APPLICATIONS_VERSION} . elif ${_KDE_CATEGORY:Mkde-plasma} PORTVERSION?= ${KDE_PLASMA_VERSION} PKGNAMEPREFIX?= plasma${_KDE_VERSION}- MASTER_SITES?= KDE/${KDE_PLASMA_BRANCH}/plasma/${KDE_PLASMA_VERSION} DIST_SUBDIR?= KDE/plasma/${KDE_PLASMA_VERSION} WWW?= https://kde.org/plasma-desktop/ . if ${_KDE_VERSION:M6} DESCR= ${.CURDIR:H:H}/x11/plasma6-plasma/pkg-descr . endif . elif ${_KDE_CATEGORY:Mkde-frameworks} PORTVERSION?= ${KDE_FRAMEWORKS_VERSION} PKGNAMEPREFIX?= kf${_KDE_VERSION}- WWW?= https://api.kde.org/${PORTNAME}-index.html # This is a slight duplication of _USE_PORTINGAIDS_ALL _PORTINGAIDS= kjs kjsembed kdelibs4support kdesignerplugin khtml kmediaplayer kross kxmlrpcclient . if ${_KDE_VERSION:M5} . 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 . else MASTER_SITES?= KDE/${KDE_FRAMEWORKS_BRANCH}/frameworks/${KDE_FRAMEWORKS_VERSION:R} . endif DIST_SUBDIR?= KDE/frameworks/${KDE_FRAMEWORKS_VERSION} . if ${_KDE_VERSION:M6} DIST_SUBDIR= KDE/frameworks/${KDE_FRAMEWORKS_VERSION:R} DESCR= ${.CURDIR:H:H}/x11/kf6-frameworks/pkg-descr . endif . if ${_KDE_VERSION:M5} PORTSCOUT= limit:^5\. . endif . 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 KDE_MAN_PREFIX?= ${KDE_PREFIX}/share/man # Enforce the chosen Qt Version CMAKE_ARGS+= -DQT_MAJOR_VERSION=${_QT_VER} # 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}" # ============================================================================== # List of all USE_KDE components. # TODO for KDE 7: do not mangle upstream naming: use the same name # for port directory, PORTNAME, and USE_KDE component. # Porting Aids frameworks provide code and utilities to ease the transition from # kdelibs 4 to KDE Frameworks 5. _USE_PORTINGAIDS_ALL= js jsembed kdelibs4support khtml mediaplayer kross # List of components of the KDE Frameworks distribution. # Not ported to FreeBSD: bluez-qt modemmanagerqt _USE_FRAMEWORKS5_ALL= activities activities-stats apidox archive attica \ auth baloo bookmarks breeze-icons calendarcore \ codecs completion config configwidgets contacts \ coreaddons crash dbusaddons designerplugin dnssd \ doctools ecm emoticons filemetadata frameworkintegration \ globalaccel guiaddons holidays i18n iconthemes \ idletime init itemmodels itemviews jobwidgets \ kcmutils kdav kdeclarative kded kdesu kimageformats \ kio kirigami2 kquickcharts newstuff notifications \ notifyconfig package parts people plasma-framework \ plotting prison pty purpose qqc2-desktop-style \ runner service solid sonnet syndication \ syntaxhighlighting texteditor textwidgets \ threadweaver unitconversion wallet wayland \ widgetsaddons windowsystem xmlgui xmlrpcclient \ ${_USE_PORTINGAIDS_ALL} _USE_FRAMEWORKS6_ALL= apidox archive attica auth baloo bookmarks \ breeze-icons calendarcore codecs colorscheme \ completion config configwidgets contacts coreaddons \ crash dbusaddons dnssd doctools ecm filemetadata \ frameworkintegration globalaccel guiaddons holidays \ i18n iconthemes idletime itemmodels itemviews \ jobwidgets kcmutils kdav kdeclarative kded kdesu \ kimageformats kio kirigami2 kquickcharts newstuff \ networkmanagerqt notifications notifyconfig package parts \ people plotting prison pty purpose \ qqc2-desktop-style runner service solid sonnet \ statusnotifieritem svg syndication \ syntaxhighlighting texteditor texttemplate \ textwidgets threadweaver unitconversion userfeedback \ wallet widgetsaddons windowsystem xmlgui _USE_FRAMEWORKS_ALL= ${_USE_FRAMEWORKS${_KDE_VERSION}_ALL} # List of components of the KDE Plasma distribution. _USE_PLASMA5_ALL= libksysguard oxygen-sounds _USE_PLASMA6_ALL= activities activities-stats activitymanagerd \ aurorae breeze breeze-gtk decoration discover \ globalacceld infocenter kde-cli-tools \ kde-gtk-config kdeplasma-addons kgamma kmenuedit \ knighttime \ kpipewire kscreen kscreenlocker ksshaskpass \ ksystemstats kwallet-pam kwin kwin-x11 kwrited \ layer-shell-qt libkscreen libksysguard libplasma \ milou ocean-sound-theme oxygen oxygen-sounds \ plasma-browser-integration plasma-desktop \ plasma-disks plasma-integration plasma-pa \ plasma-sdk plasma-workspace \ plasma-workspace-wallpapers plasma5support \ polkit-kde-agent-1 powerdevil print-manager \ qqc2-breeze-style sddm-kcm spectacle systemmonitor \ systemsettings wayland xdg-desktop-portal-kde _USE_PLASMA_ALL= ${_USE_PLASMA${_KDE_VERSION}_ALL} # List of frequently used components of the KDE Gears distribution. _USE_GEAR6_ALL= baloo-widgets kosm kpublictransport \ - libkcddb libkcompactdisc libkdcraw \ + libkcddb libkdcraw \ libkdegames libkeduvocdocument libkexiv2 \ libksane marble okular _USE_GEAR_ALL= ${_USE_GEAR${_KDE_VERSION}_ALL} # List of components of the KDE PIM distribution (part of KDE Gears). _USE_KDEPIM_ALL= akonadi akonadicalendar akonadiconsole \ akonadicontacts akonadiimportwizard akonadimime \ akonadisearch akregator calendarsupport \ calendarutils eventviews gapi grantlee-editor \ grantleetheme gravatar identitymanagement imap \ incidenceeditor kaddressbook kalarm kdepim-addons \ kdepim-runtime kitinerary kmail kmail-account-wizard \ kontact kontactinterface korganizer kpkpass ksmtp \ ldap libkdepim libkleo libksieve mailcommon \ mailimporter mailtransport mbox mbox-importer \ messagelib mime mimetreeparser pim-data-exporter \ pimcommon pimtextedit tnef # List of frequently used KDE releated software for any KDE/Qt version. _USE_KDE_EXTRA5_ALL= kirigami-addons phonon phonon-vlc \ plasma-wayland-protocols _USE_KDE_EXTRA6_ALL= kirigami-addons phonon phonon-mpv phonon-vlc \ plasma-wayland-protocols ktextaddons _USE_KDE_EXTRA_ALL= ${_USE_KDE_EXTRA${_KDE_VERSION}_ALL} _USE_KDE5_ALL= ${_USE_FRAMEWORKS_ALL} \ ${_USE_PLASMA_ALL} \ ${_USE_GEAR_ALL} \ ${_USE_KDE_EXTRA_ALL} _USE_KDE6_ALL= ${_USE_FRAMEWORKS_ALL} \ ${_USE_PLASMA_ALL} \ ${_USE_KDEPIM_ALL} \ ${_USE_GEAR_ALL} \ ${_USE_KDE_EXTRA_ALL} # ====================== frameworks components ================================= kde-activities_PORT5= x11/kf${_KDE_VERSION}-kactivities kde-activities_PORT6= x11/plasma${_KDE_VERSION}-plasma-activities kde-activities_PORT= ${kde-activities_PORT${_KDE_VERSION}} kde-activities_LIB5= libKF${_KDE_VERSION}Activities.so kde-activities_LIB6= libPlasmaActivities.so kde-activities_LIB= ${kde-activities_LIB${_KDE_VERSION}} kde-activities-stats_PORT5= x11/kf${_KDE_VERSION}-kactivities-stats kde-activities-stats_PORT6= x11/plasma${_KDE_VERSION}-plasma-activities-stats kde-activities-stats_PORT= ${kde-activities-stats_PORT${_KDE_VERSION}} kde-activities-stats_LIB5= libKF${_KDE_VERSION}ActivitiesStats.so kde-activities-stats_LIB6= libPlasmaActivitiesStats.so kde-activities-stats_LIB= ${kde-activities-stats_LIB${_KDE_VERSION}} # Use KApiDox tools from KDE Frameworks 6 kde-apidox_PORT= devel/kf6-kapidox kde-apidox_PATH= ${KDE_PREFIX}/bin/kapidox-generate kde-apidox_TYPE= run kde-archive_PORT= archivers/kf${_KDE_VERSION}-karchive kde-archive_LIB= libKF${_KDE_VERSION}Archive.so kde-attica_PORT= x11-toolkits/kf${_KDE_VERSION}-attica kde-attica_LIB= libKF${_KDE_VERSION}Attica.so kde-auth_PORT= devel/kf${_KDE_VERSION}-kauth kde-auth_LIB= libKF${_KDE_VERSION}AuthCore.so kde-baloo_PORT= sysutils/kf${_KDE_VERSION}-baloo kde-baloo_LIB= libKF${_KDE_VERSION}Baloo.so kde-bookmarks_PORT= devel/kf${_KDE_VERSION}-kbookmarks kde-bookmarks_LIB= libKF${_KDE_VERSION}Bookmarks.so # Use the latest icons from KDE Frameworks 6 kde-breeze-icons_PORT= x11-themes/kf6-breeze-icons kde-breeze-icons_PATH= ${KDE_PREFIX}/share/icons/breeze/index.theme kde-codecs_PORT= textproc/kf${_KDE_VERSION}-kcodecs kde-codecs_LIB= libKF${_KDE_VERSION}Codecs.so kde-completion_PORT= x11-toolkits/kf${_KDE_VERSION}-kcompletion kde-completion_LIB= libKF${_KDE_VERSION}Completion.so kde-config_PORT= devel/kf${_KDE_VERSION}-kconfig kde-config_LIB= libKF${_KDE_VERSION}ConfigCore.so kde-configwidgets_PORT= x11-toolkits/kf${_KDE_VERSION}-kconfigwidgets kde-configwidgets_LIB= libKF${_KDE_VERSION}ConfigWidgets.so kde-coreaddons_PORT= devel/kf${_KDE_VERSION}-kcoreaddons kde-coreaddons_LIB= libKF${_KDE_VERSION}CoreAddons.so kde-crash_PORT= devel/kf${_KDE_VERSION}-kcrash kde-crash_LIB= libKF${_KDE_VERSION}Crash.so kde-dbusaddons_PORT= devel/kf${_KDE_VERSION}-kdbusaddons kde-dbusaddons_LIB= libKF${_KDE_VERSION}DBusAddons.so kde-designerplugin_PORT= x11-toolkits/kf${_KDE_VERSION}-kdesignerplugin kde-designerplugin_PATH= ${KDE_PREFIX}/bin/kgendesignerplugin kde-designerplugin_TYPE= run kde-dnssd_PORT= dns/kf${_KDE_VERSION}-kdnssd kde-dnssd_LIB= libKF${_KDE_VERSION}DNSSD.so kde-doctools_PORT= devel/kf${_KDE_VERSION}-kdoctools kde-doctools_PATH= ${KDE_PREFIX}/bin/meinproc${_KDE_VERSION} # Use ECM from KDE Frameworks 6 for everything kde-ecm_PORT= devel/kf6-extra-cmake-modules kde-ecm_PATH= ${LOCALBASE}/share/ECM/cmake/ECMConfig.cmake kde-emoticons_PORT= x11-themes/kf${_KDE_VERSION}-kemoticons kde-emoticons_LIB= libKF${_KDE_VERSION}Emoticons.so kde-filemetadata_PORT= devel/kf${_KDE_VERSION}-kfilemetadata kde-filemetadata_LIB= libKF${_KDE_VERSION}FileMetaData.so kde-frameworkintegration_PORT= x11/kf${_KDE_VERSION}-frameworkintegration kde-frameworkintegration_LIB= libKF${_KDE_VERSION}Style.so kde-globalaccel_PORT= x11/kf${_KDE_VERSION}-kglobalaccel kde-globalaccel_LIB= libKF${_KDE_VERSION}GlobalAccel.so kde-guiaddons_PORT= x11-toolkits/kf${_KDE_VERSION}-kguiaddons kde-guiaddons_LIB= libKF${_KDE_VERSION}GuiAddons.so kde-holidays_PORT= net/kf${_KDE_VERSION}-kholidays kde-holidays_LIB= libKF${_KDE_VERSION}Holidays.so kde-i18n_PORT= devel/kf${_KDE_VERSION}-ki18n kde-i18n_LIB= libKF${_KDE_VERSION}I18n.so kde-iconthemes_PORT= x11-themes/kf${_KDE_VERSION}-kiconthemes kde-iconthemes_LIB= libKF${_KDE_VERSION}IconThemes.so kde-idletime_PORT= devel/kf${_KDE_VERSION}-kidletime kde-idletime_LIB= libKF${_KDE_VERSION}IdleTime.so kde-init_PORT= x11/kf${_KDE_VERSION}-kinit kde-init_PATH= ${KDE_PREFIX}/bin/kdeinit5 kde-itemmodels_PORT= devel/kf${_KDE_VERSION}-kitemmodels kde-itemmodels_LIB= libKF${_KDE_VERSION}ItemModels.so kde-itemviews_PORT= x11-toolkits/kf${_KDE_VERSION}-kitemviews kde-itemviews_LIB= libKF${_KDE_VERSION}ItemViews.so kde-jobwidgets_PORT= x11-toolkits/kf${_KDE_VERSION}-kjobwidgets kde-jobwidgets_LIB= libKF${_KDE_VERSION}JobWidgets.so kde-js_PORT= www/kf${_KDE_VERSION}-kjs kde-js_LIB= libKF${_KDE_VERSION}JS.so kde-jsembed_PORT= www/kf${_KDE_VERSION}-kjsembed kde-jsembed_LIB= libKF${_KDE_VERSION}JsEmbed.so kde-kcmutils_PORT= devel/kf${_KDE_VERSION}-kcmutils kde-kcmutils_LIB= libKF${_KDE_VERSION}KCMUtils.so kde-kdeclarative_PORT= devel/kf${_KDE_VERSION}-kdeclarative kde-kdeclarative_LIB5= libKF${_KDE_VERSION}Declarative.so kde-kdeclarative_LIB6= libKF${_KDE_VERSION}CalendarEvents.so kde-kdeclarative_LIB= ${kde-kdeclarative_LIB${_KDE_VERSION}} kde-kded_PORT= x11/kf${_KDE_VERSION}-kded kde-kded_PATH= ${KDE_PREFIX}/bin/kded${_KDE_VERSION} kde-kdelibs4support_PORT= x11/kf${_KDE_VERSION}-kdelibs4support kde-kdelibs4support_LIB= libKF${_KDE_VERSION}KDELibs4Support.so kde-kdesu_PORT= security/kf${_KDE_VERSION}-kdesu kde-kdesu_LIB= libKF${_KDE_VERSION}Su.so kde-khtml_PORT= www/kf${_KDE_VERSION}-khtml kde-khtml_LIB= libKF${_KDE_VERSION}KHtml.so kde-kimageformats_PORT= graphics/kf${_KDE_VERSION}-kimageformats kde-kimageformats_PATH= ${QT_PLUGINDIR}/imageformats/kimg_xcf.so kde-kimageformats_TYPE= run kde-kio_PORT= devel/kf${_KDE_VERSION}-kio kde-kio_LIB= libKF${_KDE_VERSION}KIOCore.so kde-kirigami2_PORT5= x11-toolkits/kf${_KDE_VERSION}-kirigami2 kde-kirigami2_PORT6= x11-toolkits/kf${_KDE_VERSION}-kirigami kde-kirigami2_PATH5= ${QT_QMLDIR}/org/kde/kirigami.2/libKirigamiPlugin.so kde-kirigami2_PATH6= ${QT_QMLDIR}/org/kde/kirigami/libKirigamiplugin.so kde-kirigami2_PORT= ${kde-kirigami2_PORT${_KDE_VERSION}} kde-kirigami2_PATH= ${kde-kirigami2_PATH${_KDE_VERSION}} kde-kquickcharts_PORT= graphics/kf${_KDE_VERSION}-kquickcharts kde-kquickcharts_PATH5= ${QT_QMLDIR}/org/kde/quickcharts/libQuickCharts.so kde-kquickcharts_PATH6= ${QT_QMLDIR}/org/kde/quickcharts/libQuickChartsplugin.so kde-kquickcharts_PATH= ${kde-kquickcharts_PATH${_KDE_VERSION}} kde-kross_PORT= lang/kf${_KDE_VERSION}-kross kde-kross_LIB= libKF${_KDE_VERSION}KrossCore.so kde-layer-shell-qt_PORT= x11/plasma${_KDE_VERSION}-layer-shell-qt kde-layer-shell-qt_LIB= libLayerShellQtInterface.so kde-mediaplayer_PORT= multimedia/kf${_KDE_VERSION}-kmediaplayer kde-mediaplayer_LIB= libKF${_KDE_VERSION}MediaPlayer.so.5 kde-networkmanagerqt_PORT= net-mgmt/kf${_KDE_VERSION}-networkmanager-qt kde-networkmanagerqt_LIB= libKF${_KDE_VERSION}NetworkManagerQt.so kde-newstuff_PORT= devel/kf${_KDE_VERSION}-knewstuff kde-newstuff_LIB= libKF${_KDE_VERSION}NewStuffCore.so kde-notifications_PORT= devel/kf${_KDE_VERSION}-knotifications kde-notifications_LIB= libKF${_KDE_VERSION}Notifications.so kde-notifyconfig_PORT= devel/kf${_KDE_VERSION}-knotifyconfig kde-notifyconfig_LIB= libKF${_KDE_VERSION}NotifyConfig.so # Use the latest sounds from Plasma 6 kde-oxygen-sounds_PORT= audio/plasma6-oxygen-sounds kde-oxygen-sounds_PATH= ${KDE_PREFIX}/share/sounds/Oxygen-Sys-Log-In.ogg kde-oxygen-sounds_TYPE= run kde-package_PORT= devel/kf${_KDE_VERSION}-kpackage kde-package_LIB= libKF${_KDE_VERSION}Package.so kde-parts_PORT= devel/kf${_KDE_VERSION}-kparts kde-parts_LIB= libKF${_KDE_VERSION}Parts.so kde-people_PORT= devel/kf${_KDE_VERSION}-kpeople kde-people_LIB= libKF${_KDE_VERSION}People.so kde-plasma-framework_PORT= x11/kf${_KDE_VERSION}-plasma-framework kde-plasma-framework_LIB= libKF${_KDE_VERSION}Plasma.so kde-plasma-wayland-protocols_PORT= x11/plasma-wayland-protocols kde-plasma-wayland-protocols_PATH= ${KDE_PREFIX}/share/cmake/PlasmaWaylandProtocols/PlasmaWaylandProtocolsConfig.cmake kde-plotting_PORT= graphics/kf${_KDE_VERSION}-kplotting kde-plotting_LIB= libKF${_KDE_VERSION}Plotting.so kde-prison_PORT= graphics/kf${_KDE_VERSION}-prison kde-prison_LIB= libKF${_KDE_VERSION}Prison.so kde-pty_PORT= devel/kf${_KDE_VERSION}-kpty kde-pty_LIB= libKF${_KDE_VERSION}Pty.so kde-purpose_PORT= misc/kf${_KDE_VERSION}-purpose kde-purpose_LIB= libKF${_KDE_VERSION}Purpose.so kde-qqc2-desktop-style_PORT= x11-themes/kf${_KDE_VERSION}-qqc2-desktop-style kde-qqc2-desktop-style_PATH5= ${QT_PLUGINDIR}/kf${_KDE_VERSION}/kirigami/org.kde.desktop.so kde-qqc2-desktop-style_PATH6= ${QT_QMLDIR}/org/kde/desktop/liborg_kde_desktop.so kde-qqc2-desktop-style_PATH= ${kde-qqc2-desktop-style_PATH${_KDE_VERSION}} kde-runner_PORT= x11/kf${_KDE_VERSION}-krunner kde-runner_LIB= libKF${_KDE_VERSION}Runner.so kde-service_PORT= devel/kf${_KDE_VERSION}-kservice kde-service_LIB= libKF${_KDE_VERSION}Service.so kde-solid_PORT= devel/kf${_KDE_VERSION}-solid kde-solid_LIB= libKF${_KDE_VERSION}Solid.so kde-sonnet_PORT= textproc/kf${_KDE_VERSION}-sonnet kde-sonnet_LIB= libKF${_KDE_VERSION}SonnetCore.so kde-syndication_PORT= net/kf${_KDE_VERSION}-syndication kde-syndication_LIB= libKF${_KDE_VERSION}Syndication.so kde-syntaxhighlighting_PORT= textproc/kf${_KDE_VERSION}-syntax-highlighting kde-syntaxhighlighting_LIB= libKF${_KDE_VERSION}SyntaxHighlighting.so kde-texteditor_PORT= devel/kf${_KDE_VERSION}-ktexteditor kde-texteditor_LIB= libKF${_KDE_VERSION}TextEditor.so kde-texttemplate_PORT= devel/kf${_KDE_VERSION}-ktexttemplate kde-texttemplate_LIB= libKF${_KDE_VERSION}TextTemplate.so kde-textwidgets_PORT= x11-toolkits/kf${_KDE_VERSION}-ktextwidgets kde-textwidgets_LIB= libKF${_KDE_VERSION}TextWidgets.so kde-threadweaver_PORT= devel/kf${_KDE_VERSION}-threadweaver kde-threadweaver_LIB= libKF${_KDE_VERSION}ThreadWeaver.so kde-unitconversion_PORT= devel/kf${_KDE_VERSION}-kunitconversion kde-unitconversion_LIB= libKF${_KDE_VERSION}UnitConversion.so kde-wallet_PORT= sysutils/kf${_KDE_VERSION}-kwallet kde-wallet_LIB= libKF${_KDE_VERSION}Wallet.so kde-wayland_PORT5= x11/kf${_KDE_VERSION}-kwayland kde-wayland_PORT6= x11/plasma${_KDE_VERSION}-kwayland kde-wayland_PORT= ${kde-wayland_PORT${_KDE_VERSION}} kde-wayland_LIB5= libKF${_KDE_VERSION}WaylandClient.so kde-wayland_LIB6= libKWaylandClient.so kde-wayland_LIB= ${kde-wayland_LIB${_KDE_VERSION}} kde-widgetsaddons_PORT= x11-toolkits/kf${_KDE_VERSION}-kwidgetsaddons kde-widgetsaddons_LIB= libKF${_KDE_VERSION}WidgetsAddons.so kde-windowsystem_PORT= x11/kf${_KDE_VERSION}-kwindowsystem kde-windowsystem_LIB= libKF${_KDE_VERSION}WindowSystem.so kde-xmlgui_PORT= x11-toolkits/kf${_KDE_VERSION}-kxmlgui kde-xmlgui_LIB= libKF${_KDE_VERSION}XmlGui.so kde-xmlrpcclient_PORT= net/kf${_KDE_VERSION}-kxmlrpcclient kde-xmlrpcclient_LIB= libKF${_KDE_VERSION}XmlRpcClient.so kde-calendarcore_PORT= net/kf${_KDE_VERSION}-kcalendarcore kde-calendarcore_LIB= libKF${_KDE_VERSION}CalendarCore.so kde-contacts_PORT= net/kf${_KDE_VERSION}-kcontacts kde-contacts_LIB= libKF${_KDE_VERSION}Contacts.so kde-kdav_PORT= net/kf${_KDE_VERSION}-kdav kde-kdav_LIB= libKF${_KDE_VERSION}DAV.so kde-colorscheme_PORT= x11-themes/kf${_KDE_VERSION}-kcolorscheme kde-colorscheme_LIB= libKF${_KDE_VERSION}ColorScheme.so kde-svg_PORT= graphics/kf${_KDE_VERSION}-ksvg kde-svg_LIB= libKF${_KDE_VERSION}Svg.so kde-statusnotifieritem_PORT= deskutils/kf6-kstatusnotifieritem kde-statusnotifieritem_LIB= libKF${_KDE_VERSION}StatusNotifierItem.so kde-userfeedback_PORT= sysutils/kf6-kuserfeedback kde-userfeedback_LIB= libKF${_KDE_VERSION}UserFeedbackCore.so # ====================== end of frameworks components ========================== # ====================== plasma components ===================================== kde-kpipewire_PORT= audio/plasma${_KDE_VERSION}-kpipewire kde-kpipewire_LIB= libKPipeWire.so kde-activitymanagerd_PORT= x11/plasma${_KDE_VERSION}-kactivitymanagerd kde-activitymanagerd_LIB= libkactivitymanagerd_plugin.so kde-aurorae_PORT= x11-themes/plasma${_KDE_VERSION}-aurorae kde-aurorae_PATH= ${KDE_PREFIX}/lib/libexec/plasma-apply-aurorae kde-breeze_PORT= x11-themes/plasma${_KDE_VERSION}-breeze kde-breeze_PATH= ${KDE_PREFIX}/share/QtCurve/Breeze.qtcurve kde-breeze-gtk_PORT= x11-themes/plasma${_KDE_VERSION}-breeze-gtk kde-breeze-gtk_PATH= ${KDE_PREFIX}/share/themes/Breeze/gtk-2.0/gtkrc kde-decoration_PORT= x11-wm/plasma${_KDE_VERSION}-kdecoration kde-decoration_LIB= libkdecorations3.so kde-discover_PORT= sysutils/plasma${_KDE_VERSION}-discover kde-discover_PATH= ${KDE_PREFIX}/bin/plasma-discover kde-infocenter_PORT= sysutils/plasma${_KDE_VERSION}-kinfocenter kde-infocenter_PATH= ${KDE_PREFIX}/bin/kinfocenter kde-kde-cli-tools_PORT= sysutils/plasma${_KDE_VERSION}-kde-cli-tools kde-kde-cli-tools_PATH= ${KDE_PREFIX}/bin/kde-open kde-kde-gtk-config_PORT= x11-themes/plasma${_KDE_VERSION}-kde-gtk-config kde-kde-gtk-config_PATH= ${KDE_PREFIX}/lib/kconf_update_bin/gtk_theme kde-kdeplasma-addons_PORT= x11-toolkits/plasma${_KDE_VERSION}-kdeplasma-addons kde-kdeplasma-addons_LIB= libplasmapotdprovidercore.so kde-kgamma_PORT= x11/plasma${_KDE_VERSION}-kgamma kde-kgamma_PATH= ${QT_PLUGINDIR}/plasma/kcms/systemsettings_qwidgets/kcm_kgamma.so kde-kmenuedit_PORT= sysutils/plasma${_KDE_VERSION}-kmenuedit kde-kmenuedit_PATH= ${KDE_PREFIX}/bin/kmenuedit kde-knighttime_PORT= sysutils/plasma${_KDE_VERSION}-knighttime kde-knighttime_LIB= libKNightTime.so kde-kscreen_PORT= x11/plasma${_KDE_VERSION}-kscreen kde-kscreen_PATH= ${KDE_PREFIX}/bin/kscreen-console kde-kscreenlocker_PORT= security/plasma${_KDE_VERSION}-kscreenlocker kde-kscreenlocker_LIB= libKScreenLocker.so kde-ksshaskpass_PORT= security/plasma${_KDE_VERSION}-ksshaskpass kde-ksshaskpass_PATH= ${KDE_PREFIX}/bin/ksshaskpass kde-ksystemstats_PORT= sysutils/plasma${_KDE_VERSION}-ksystemstats kde-ksystemstats_PATH= ${KDE_PREFIX}/bin/ksystemstats kde-kwallet-pam_PORT= security/plasma${_KDE_VERSION}-kwallet-pam kde-kwallet-pam_PATH= ${KDE_PREFIX}/lib/pam_kwallet5.so kde-kwin_PORT= x11-wm/plasma${_KDE_VERSION}-kwin kde-kwin_PATH= ${KDE_PREFIX}/bin/kwin_wayland kde-kwin-x11_PORT= x11-wm/plasma${_KDE_VERSION}-kwin-x11 kde-kwin-x11_PATH= ${KDE_PREFIX}/bin/kwin_x11 kde-kwrited_PORT= devel/plasma${_KDE_VERSION}-kwrited kde-kwrited_PATH= ${QT_PLUGINDIR}/kf${_KDE_VERSION}/kded/kwrited.so kde-libkscreen_PORT= x11/plasma${_KDE_VERSION}-libkscreen kde-libkscreen_LIB= libKF${_KDE_VERSION}Screen.so kde-libksysguard_PORT= sysutils/plasma${_KDE_VERSION}-libksysguard kde-libksysguard_LIB5= libksgrd.so kde-libksysguard_LIB6= libKSysGuardSystemStats.so kde-libksysguard_LIB= ${kde-libksysguard_LIB${_KDE_VERSION}} kde-milou_PORT= deskutils/plasma${_KDE_VERSION}-milou kde-milou_PATH= ${QT_QMLDIR}/org/kde/milou/libmilou.so kde-ocean-sound-theme_PORT= audio/plasma${_KDE_VERSION}-ocean-sound-theme kde-ocean-sound-theme_PATH= ${KDE_PREFIX}/share/sounds/ocean/index.theme kde-ocean-sound-theme_TYPE= run kde-oxygen_PORT= x11-themes/plasma${_KDE_VERSION}-oxygen kde-oxygen_PATH= ${QT_PLUGINDIR}/kstyle_config/kstyle_oxygen_config.so kde-plasma-browser-integration_PORT= www/plasma${_KDE_VERSION}-plasma-browser-integration kde-plasma-browser-integration_PATH= ${KDE_PREFIX}/bin/plasma-browser-integration-host kde-plasma-desktop_PORT= x11/plasma${_KDE_VERSION}-plasma-desktop kde-plasma-desktop_PATH= ${KDE_PREFIX}/bin/kaccess kde-plasma-disks_PORT= sysutils/plasma${_KDE_VERSION}-plasma-disks kde-plasma-disks_PATH= ${KDE_PREFIX}/lib/libexec/kf6/kauth/kded-smart-helper kde-plasma-integration_PORT= x11/plasma${_KDE_VERSION}-plasma-integration kde-plasma-integration_PATH= ${QT_PLUGINDIR}/platformthemes/KDEPlasmaPlatformTheme6.so kde-plasma-pa_PORT= audio/plasma${_KDE_VERSION}-plasma-pa kde-plasma-pa_PATH= ${QT_PLUGINDIR}/plasma/kcms/systemsettings/kcm_pulseaudio.so kde-plasma-sdk_PORT= devel/plasma${_KDE_VERSION}-plasma-sdk kde-plasma-sdk_PATH= ${KDE_PREFIX}/bin/plasmoidviewer kde-plasma-workspace_PORT= x11/plasma${_KDE_VERSION}-plasma-workspace kde-plasma-workspace_LIB= libkworkspace${_KDE_VERSION}.so kde-plasma-workspace-wallpapers_PORT= x11-themes/plasma${_KDE_VERSION}-plasma-workspace-wallpapers kde-plasma-workspace-wallpapers_PATH= ${KDE_PREFIX}/share/wallpapers/Autumn/contents/images/1280x1024.jpg kde-polkit-kde-agent-1_PORT= sysutils/plasma${_KDE_VERSION}-polkit-kde-agent-1 kde-polkit-kde-agent-1_PATH= ${KDE_PREFIX}/lib/libexec/polkit-kde-authentication-agent-1 kde-powerdevil_PORT= sysutils/plasma${_KDE_VERSION}-powerdevil kde-powerdevil_LIB= libpowerdevilcore.so kde-print-manager_PORT= print/plasma${_KDE_VERSION}-print-manager kde-print-manager_PATH= ${KDE_PREFIX}/bin/kde-print-queue kde-print-manager_TYPE= run kde-spectacle_PORT= graphics/plasma${_KDE_VERSION}-spectacle kde-spectacle_PATH= ${KDE_PREFIX}/bin/spectacle kde-spectacle_TYPE= run kde-systemmonitor_PORT= sysutils/plasma${_KDE_VERSION}-plasma-systemmonitor kde-systemmonitor_PATH= ${KDE_PREFIX}/bin/plasma-systemmonitor kde-systemmonitor_TYPE= run kde-systemsettings_PORT= sysutils/plasma${_KDE_VERSION}-systemsettings kde-systemsettings_PATH= ${KDE_PREFIX}/bin/systemsettings kde-xdg-desktop-portal-kde_PORT= deskutils/plasma${_KDE_VERSION}-xdg-desktop-portal-kde kde-xdg-desktop-portal-kde_PATH= ${KDE_PREFIX}/lib/libexec/xdg-desktop-portal-kde kde-plasma5support_PORT= devel/plasma${_KDE_VERSION}-plasma5support kde-plasma5support_LIB= libPlasma5Support.so kde-qqc2-breeze-style_PORT= x11-themes/plasma${_KDE_VERSION}-qqc2-breeze-style kde-qqc2-breeze-style_PATH= ${QT_PLUGINDIR}/kf${_KDE_VERSION}/kirigami/platform/org.kde.breeze.so kde-sddm-kcm_PORT= deskutils/plasma${_KDE_VERSION}-sddm-kcm kde-sddm-kcm_PATH= ${QT_PLUGINDIR}/plasma/kcms/systemsettings/kcm_sddm.so kde-sddm-kcm_TYPE= run kde-kirigami-addons_PORT= x11-toolkits/kirigami-addons-qt${_KDE_VERSION} kde-kirigami-addons_PATH= ${QT_QMLDIR}/org/kde/kirigamiaddons/components/libcomponentsplugin.so kde-globalacceld_PORT= x11/plasma${_KDE_VERSION}-kglobalacceld kde-globalacceld_PATH= ${QT_PLUGINDIR}/org.kde.kglobalacceld.platforms/KGlobalAccelDXcb.so kde-libplasma_PORT= x11/plasma${_KDE_VERSION}-libplasma kde-libplasma_LIB= libPlasma.so # ====================== end of plasma components ============================== # ====================== pim5 components ======================================= kde-akonadicontacts_PORT= net/akonadi-contacts kde-akonadicontacts_LIB= libKPim${_KDE_VERSION}AkonadiContactCore.so kde-akonadiimportwizard_PORT= deskutils/akonadi-import-wizard kde-akonadiimportwizard_LIB= libKPim${_KDE_VERSION}ImportWizard.so kde-akonadimime_PORT= net/akonadi-mime kde-akonadimime_LIB= libKPim${_KDE_VERSION}AkonadiMime.so kde-akonadicalendar_PORT= net/akonadi-calendar kde-akonadicalendar_LIB= libKPim${_KDE_VERSION}AkonadiCalendar.so kde-akonadisearch_PORT= net/akonadi-search kde-akonadisearch_LIB= libKPim${_KDE_VERSION}AkonadiSearchCore.so kde-calendarsupport_PORT= net/calendarsupport kde-calendarsupport_LIB= libKPim${_KDE_VERSION}CalendarSupport.so kde-calendarutils_PORT= net/kcalutils kde-calendarutils_LIB= libKPim${_KDE_VERSION}CalendarUtils.so kde-eventviews_PORT= net/eventviews kde-eventviews_LIB= libKPim${_KDE_VERSION}EventViews.so kde-gapi_PORT= net/libkgapi kde-gapi_LIB= libKPim${_KDE_VERSION}GAPIBlogger.so kde-grantleetheme_PORT= deskutils/grantleetheme kde-grantleetheme_LIB= libKPim${_KDE_VERSION}GrantleeTheme.so kde-gravatar_PORT= net/libgravatar kde-gravatar_LIB= libKPim${_KDE_VERSION}Gravatar.so kde-identitymanagement_PORT= net/kidentitymanagement kde-identitymanagement_LIB= libKPim${_KDE_VERSION}IdentityManagementCore.so kde-imap_PORT= net/kimap kde-imap_LIB= libKPim${_KDE_VERSION}IMAP.so kde-incidenceeditor_PORT= net/incidenceeditor kde-incidenceeditor_LIB= libKPim${_KDE_VERSION}IncidenceEditor.so kde-kdepim-addons_PORT= deskutils/kdepim-addons kde-kdepim-addons_PATH= ${QT_PLUGINDIR}/pim${_KDE_VERSION}/contacteditor/editorpageplugins/cryptopageplugin.so kde-kdepim-runtime_PORT= deskutils/kdepim-runtime kde-kdepim-runtime_PATH= ${KDE_PREFIX}/bin/gidmigrator kde-kitinerary_PORT= net/kitinerary kde-kitinerary_LIB= libKPim${_KDE_VERSION}Itinerary.so kde-kontactinterface_PORT= net/kontactinterface kde-kontactinterface_LIB= libKPim${_KDE_VERSION}KontactInterface.so kde-kpkpass_PORT= security/kpkpass kde-kpkpass_LIB= libKPim${_KDE_VERSION}PkPass.so kde-ksmtp_PORT= net/ksmtp kde-ksmtp_LIB= libKPim${_KDE_VERSION}SMTP.so kde-ldap_PORT= net/kldap kde-ldap_LIB= libKPim${_KDE_VERSION}LdapCore.so kde-libkdepim_PORT= deskutils/libkdepim kde-libkdepim_LIB= libKPim${_KDE_VERSION}Libkdepim.so kde-libkleo_PORT= security/libkleo kde-libkleo_LIB= libKPim${_KDE_VERSION}Libkleo.so kde-libksieve_PORT= net/libksieve kde-libksieve_LIB= libKPim${_KDE_VERSION}KSieve.so kde-mailcommon_PORT= net/mailcommon kde-mailcommon_LIB= libKPim${_KDE_VERSION}MailCommon.so kde-mailimporter_PORT= net/mailimporter kde-mailimporter_LIB= libKPim${_KDE_VERSION}MailImporter.so kde-mailtransport_PORT= net/kmailtransport kde-mailtransport_LIB= libKPim${_KDE_VERSION}MailTransport.so kde-mbox_PORT= net/kmbox kde-mbox_LIB= libKPim${_KDE_VERSION}Mbox.so kde-messagelib_PORT= net/messagelib kde-messagelib_LIB= libKPim${_KDE_VERSION}MessageList.so kde-mime_PORT= net/kmime kde-mime_LIB= libKPim${_KDE_VERSION}Mime.so kde-pimcommon_PORT= net/pimcommon kde-pimcommon_LIB= libKPim${_KDE_VERSION}PimCommon.so kde-pimtextedit_PORT= net/kpimtextedit kde-pimtextedit_LIB= libKPim${_KDE_VERSION}TextEdit.so kde-tnef_PORT= net/ktnef kde-tnef_LIB= libKPim${_KDE_VERSION}Tnef.so kde-ktextaddons_PORT= devel/ktextaddons kde-ktextaddons_LIB= libKF${_KDE_VERSION}TextAutoCorrectionCore.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-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-mimetreeparser_PORT= net/mimetreeparser kde-mimetreeparser_LIB= libKPim${_KDE_VERSION}MimeTreeParserCore.so 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-akonadi_PORT= databases/akonadi kde-akonadi_LIB= libKPim${_KDE_VERSION}AkonadiPrivate.so kde-baloo-widgets_PORT= sysutils/baloo-widgets kde-baloo-widgets_LIB= libKF${_KDE_VERSION}BalooWidgets.so kde-libkcddb_PORT= audio/libkcddb kde-libkcddb_LIB= libKCddb${_KDE_VERSION}.so -kde-libkcompactdisc_PORT= audio/libkcompactdisc -kde-libkcompactdisc_LIB= libKF${_KDE_VERSION}CompactDisc.so - kde-libkdcraw_PORT= graphics/libkdcraw kde-libkdcraw_LIB= libKDcrawQt6.so kde-libkdegames_PORT= games/libkdegames kde-libkdegames_LIB= libKDEGames${_KDE_VERSION}.so kde-libkeduvocdocument_PORT= misc/libkeduvocdocument kde-libkeduvocdocument_LIB= libKEduVocDocument.so kde-libkexiv2_PORT= graphics/libkexiv2 kde-libkexiv2_LIB= libKExiv2Qt6.so kde-libksane_PORT= graphics/libksane kde-libksane_LIB= libKSaneWidgets${_KDE_VERSION}.so kde-marble_PORT= astro/marble kde-marble_LIB= libmarblewidget-qt6.so kde-kpublictransport_PORT= devel/kpublictransport kde-kpublictransport_LIB= libKPublicTransport.so kde-kosm_PORT= astro/kosmindoormap kde-kosm_LIB= libKOSM.so kde-okular_PORT= graphics/okular kde-okular_LIB= libOkular${_KDE_VERSION}Core.so kde-phonon_PORT= multimedia/phonon@${_QT_RELNAME} kde-phonon_LIB= libphonon4${_QT_RELNAME}.so kde-phonon-mpv_PORT= multimedia/phonon-mpv kde-phonon-mpv_PATH= ${QT_PLUGINDIR}/phonon4${_QT_RELNAME}_backend/phonon_mpv_${_QT_RELNAME}.so kde-phonon-mpv_TYPE= run kde-phonon-vlc_PORT= multimedia/phonon-vlc@${_QT_RELNAME} kde-phonon-vlc_PATH= ${QT_PLUGINDIR}/phonon4${_QT_RELNAME}_backend/phonon_vlc_${_QT_RELNAME}.so kde-phonon-vlc_TYPE= run # ====================== end of multiversion components ======================== # 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 df0255c31ed5..b04580feb047 100644 --- a/accessibility/kmag/distinfo +++ b/accessibility/kmag/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1772541758 -SHA256 (KDE/release-service/25.12.3/kmag-25.12.3.tar.xz) = fad2b53162bf0cd1bb751fcf6d6c88b1cd2f8ff43c7257657eeb0802646227ac -SIZE (KDE/release-service/25.12.3/kmag-25.12.3.tar.xz) = 680404 +TIMESTAMP = 1776248079 +SHA256 (KDE/release-service/26.04.0/kmag-26.04.0.tar.xz) = 4e38f67cf82797095fcab49fc8a0093c65e4948e15cbebded242288f28615b55 +SIZE (KDE/release-service/26.04.0/kmag-26.04.0.tar.xz) = 680536 diff --git a/accessibility/kmousetool/distinfo b/accessibility/kmousetool/distinfo index a430f64e5007..b66a97410bb5 100644 --- a/accessibility/kmousetool/distinfo +++ b/accessibility/kmousetool/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1772541759 -SHA256 (KDE/release-service/25.12.3/kmousetool-25.12.3.tar.xz) = 3eafbd2c38a2b767963824f081b8d22f55381b1b51fed3a17a44e4dc1c05a6de -SIZE (KDE/release-service/25.12.3/kmousetool-25.12.3.tar.xz) = 135484 +TIMESTAMP = 1776248081 +SHA256 (KDE/release-service/26.04.0/kmousetool-26.04.0.tar.xz) = 3eec4e18549856a6f30836f96de7c33ba136c41ddccbcfe7ec44269e26216b81 +SIZE (KDE/release-service/26.04.0/kmousetool-26.04.0.tar.xz) = 135520 diff --git a/accessibility/kmouth/distinfo b/accessibility/kmouth/distinfo index aac6263a503d..4ac6b80d98ac 100644 --- a/accessibility/kmouth/distinfo +++ b/accessibility/kmouth/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1772541761 -SHA256 (KDE/release-service/25.12.3/kmouth-25.12.3.tar.xz) = 0f16e371aaa83be9e6f128fb9eba885ae5af455f65d2761738cf8089617c0538 -SIZE (KDE/release-service/25.12.3/kmouth-25.12.3.tar.xz) = 1945496 +TIMESTAMP = 1776248082 +SHA256 (KDE/release-service/26.04.0/kmouth-26.04.0.tar.xz) = e2493b3fce529bc6ddde1479e8a9b2230e2aaba87d157bfd35f8be4e4347e360 +SIZE (KDE/release-service/26.04.0/kmouth-26.04.0.tar.xz) = 1945704 diff --git a/archivers/ark/distinfo b/archivers/ark/distinfo index 2fa52e36094d..02f3aa07fb5f 100644 --- a/archivers/ark/distinfo +++ b/archivers/ark/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1772541763 -SHA256 (KDE/release-service/25.12.3/ark-25.12.3.tar.xz) = 81f27ef08e216f3cedce10a2b2e2c74ba27735219d8f149c9d1399f7565e028b -SIZE (KDE/release-service/25.12.3/ark-25.12.3.tar.xz) = 3019472 +TIMESTAMP = 1776248084 +SHA256 (KDE/release-service/26.04.0/ark-26.04.0.tar.xz) = 4ed65adb552f2aa981b1ff08f5ad5989ee4882c0e69be04977cbf42870b58f7c +SIZE (KDE/release-service/26.04.0/ark-26.04.0.tar.xz) = 3025064 diff --git a/astro/kosmindoormap/Makefile b/astro/kosmindoormap/Makefile index 1a64337a9fdf..a964d2a5ab4e 100644 --- a/astro/kosmindoormap/Makefile +++ b/astro/kosmindoormap/Makefile @@ -1,20 +1,19 @@ PORTNAME= kosmindoormap DISTVERSION= ${KDE_APPLICATIONS_VERSION} -PORTREVISION= 1 CATEGORIES= astro kde kde-applications MAINTAINER= kde@FreeBSD.org COMMENT= Library and QML component for rendering multi-level OSM indoor maps WWW= https://marble.kde.org/ LIB_DEPENDS= libprotobuf.so:devel/protobuf \ libKOpeningHours.so:devel/kopeninghours USES= bison cmake compiler:c++11-lang gettext kde:6 qt:6 tar:xz USE_KDE= coreaddons i18n kirigami2 kpublictransport service \ ecm:build USE_QT= base OPTIONS_DEFINE= DOCS .include diff --git a/astro/kosmindoormap/distinfo b/astro/kosmindoormap/distinfo index 648e7ac97a14..cec1a1115c87 100644 --- a/astro/kosmindoormap/distinfo +++ b/astro/kosmindoormap/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1772541764 -SHA256 (KDE/release-service/25.12.3/kosmindoormap-25.12.3.tar.xz) = 1da64c99c29fbd3f722732a14d44ab67417e66cec8de179fa5b2ec676aa6331b -SIZE (KDE/release-service/25.12.3/kosmindoormap-25.12.3.tar.xz) = 777784 +TIMESTAMP = 1776248086 +SHA256 (KDE/release-service/26.04.0/kosmindoormap-26.04.0.tar.xz) = 6d8910de90b11fd519aeab7a7794a4e688d47f127f239a642cfe155efde4c6c0 +SIZE (KDE/release-service/26.04.0/kosmindoormap-26.04.0.tar.xz) = 779588 diff --git a/astro/kosmindoormap/pkg-plist b/astro/kosmindoormap/pkg-plist index ff9038d15cf7..14db0c645b29 100644 --- a/astro/kosmindoormap/pkg-plist +++ b/astro/kosmindoormap/pkg-plist @@ -1,156 +1,158 @@ include/KOSM/AbstractReader include/KOSM/AbstractWriter include/KOSM/Datatypes include/KOSM/Element include/KOSM/IO include/KOSM/Languages include/KOSMIndoorMap/EquipmentModel include/KOSMIndoorMap/FloorLevelModel include/KOSMIndoorMap/GateModel include/KOSMIndoorMap/HitDetector include/KOSMIndoorMap/MapCSSElementState include/KOSMIndoorMap/MapCSSLoader include/KOSMIndoorMap/MapCSSParser include/KOSMIndoorMap/MapCSSProperty include/KOSMIndoorMap/MapCSSResult include/KOSMIndoorMap/MapCSSStyle include/KOSMIndoorMap/MapCSSTypes include/KOSMIndoorMap/MapData include/KOSMIndoorMap/MapLoader include/KOSMIndoorMap/NetworkAccessManagerFactory include/KOSMIndoorMap/OverlaySource include/KOSMIndoorMap/PainterRenderer include/KOSMIndoorMap/Platform include/KOSMIndoorMap/PlatformModel +include/KOSMIndoorMap/ReverseGeocodingJob include/KOSMIndoorMap/SceneController include/KOSMIndoorMap/SceneGraph include/KOSMIndoorMap/SceneGraphItem include/KOSMIndoorMap/View include/KOSMIndoorRouting/NavMesh include/KOSMIndoorRouting/NavMeshBuilder include/KOSMIndoorRouting/NavMeshTransform include/KOSMIndoorRouting/Route include/KOSMIndoorRouting/RoutingArea include/KOSMIndoorRouting/RoutingJob include/KOSMIndoorRouting/RoutingProfile include/kosm/abstractreader.h include/kosm/abstractwriter.h include/kosm/datatypes.h include/kosm/element.h include/kosm/internal.h include/kosm/io.h include/kosm/kosm_export.h include/kosm/languages.h include/kosm/stringpool.h include/kosmindoormap/equipmentmodel.h include/kosmindoormap/floorlevelmodel.h include/kosmindoormap/gatemodel.h include/kosmindoormap/hitdetector.h include/kosmindoormap/kosmindoormap_export.h include/kosmindoormap/mapcsselementstate.h include/kosmindoormap/mapcssloader.h include/kosmindoormap/mapcssparser.h include/kosmindoormap/mapcssproperty.h include/kosmindoormap/mapcssresult.h include/kosmindoormap/mapcssstyle.h include/kosmindoormap/mapcsstypes.h include/kosmindoormap/mapdata.h include/kosmindoormap/maploader.h include/kosmindoormap/networkaccessmanagerfactory.h include/kosmindoormap/overlaysource.h include/kosmindoormap/painterrenderer.h include/kosmindoormap/platform.h include/kosmindoormap/platformmodel.h +include/kosmindoormap/reversegeocodingjob.h include/kosmindoormap/scenecontroller.h include/kosmindoormap/scenegraph.h include/kosmindoormap/scenegraphitem.h include/kosmindoormap/view.h include/kosmindoormap_version.h include/kosmindoorrouting/kosmindoorrouting_export.h include/kosmindoorrouting/navmesh.h include/kosmindoorrouting/navmeshbuilder.h include/kosmindoorrouting/navmeshtransform.h include/kosmindoorrouting/route.h include/kosmindoorrouting/routingarea.h include/kosmindoorrouting/routingjob.h include/kosmindoorrouting/routingprofile.h lib/cmake/KOSMIndoorMap/KOSMIndoorMapConfig.cmake lib/cmake/KOSMIndoorMap/KOSMIndoorMapConfigVersion.cmake lib/cmake/KOSMIndoorMap/KOSMIndoorMapTargets-%%CMAKE_BUILD_TYPE%%.cmake lib/cmake/KOSMIndoorMap/KOSMIndoorMapTargets.cmake lib/libKOSM.so lib/libKOSM.so.1 lib/libKOSM.so.%%KDE_APPLICATIONS_VERSION%% lib/libKOSMIndoorMap.so lib/libKOSMIndoorMap.so.1 lib/libKOSMIndoorMap.so.%%KDE_APPLICATIONS_VERSION%% lib/libKOSMIndoorRouting.so lib/libKOSMIndoorRouting.so.1 lib/libKOSMIndoorRouting.so.%%KDE_APPLICATIONS_VERSION%% %%QT_QMLDIR%%/org/kde/kosmindoormap/AmenityListDelegate.qml %%QT_QMLDIR%%/org/kde/kosmindoormap/AmenitySearchDialog.qml %%QT_QMLDIR%%/org/kde/kosmindoormap/FloorLevelSelector.qml %%QT_QMLDIR%%/org/kde/kosmindoormap/IndoorMap.qml %%QT_QMLDIR%%/org/kde/kosmindoormap/IndoorMapAttributionLabel.qml %%QT_QMLDIR%%/org/kde/kosmindoormap/IndoorMapScale.qml %%QT_QMLDIR%%/org/kde/kosmindoormap/IndoorMapView.qml %%QT_QMLDIR%%/org/kde/kosmindoormap/OSMElementInformationDialog.qml %%QT_QMLDIR%%/org/kde/kosmindoormap/OSMElementInformationDialogAddressDelegate.qml %%QT_QMLDIR%%/org/kde/kosmindoormap/OSMElementInformationDialogImageDelegate.qml %%QT_QMLDIR%%/org/kde/kosmindoormap/OSMElementInformationDialogLinkDelegate.qml %%QT_QMLDIR%%/org/kde/kosmindoormap/OSMElementInformationDialogOpeningHoursDelegate.qml %%QT_QMLDIR%%/org/kde/kosmindoormap/OSMElementInformationDialogStringDelegate.qml %%QT_QMLDIR%%/org/kde/kosmindoormap/RoomSearchDialog.qml %%QT_QMLDIR%%/org/kde/kosmindoormap/kde-qmlmodule.version %%QT_QMLDIR%%/org/kde/kosmindoormap/kosmindoormapquickplugin.qmltypes %%QT_QMLDIR%%/org/kde/kosmindoormap/kpublictransport/PlatformDialog.qml %%QT_QMLDIR%%/org/kde/kosmindoormap/kpublictransport/kde-qmlmodule.version %%QT_QMLDIR%%/org/kde/kosmindoormap/kpublictransport/kosmindoormap_kpublictransport_integration_plugin.qmltypes %%QT_QMLDIR%%/org/kde/kosmindoormap/kpublictransport/libkosmindoormap_kpublictransport_integration_plugin.so %%QT_QMLDIR%%/org/kde/kosmindoormap/kpublictransport/qmldir %%QT_QMLDIR%%/org/kde/kosmindoormap/libkosmindoormapquickplugin.so %%QT_QMLDIR%%/org/kde/kosmindoormap/qmldir %%QT_QMLDIR%%/org/kde/kosmindoorrouting/kde-qmlmodule.version %%QT_QMLDIR%%/org/kde/kosmindoorrouting/kosmindoorroutingquickplugin.qmltypes %%QT_QMLDIR%%/org/kde/kosmindoorrouting/libkosmindoorroutingquickplugin.so %%QT_QMLDIR%%/org/kde/kosmindoorrouting/qmldir %%QT_QMLDIR%%/org/kde/osm/editorcontroller/kde-qmlmodule.version %%QT_QMLDIR%%/org/kde/osm/editorcontroller/kosmeditorcontrollerplugin.qmltypes %%QT_QMLDIR%%/org/kde/osm/editorcontroller/libkosmeditorcontrollerplugin.so %%QT_QMLDIR%%/org/kde/osm/editorcontroller/qmldir share/locale/ar/LC_MESSAGES/kosmindoormap.mo share/locale/ast/LC_MESSAGES/kosmindoormap.mo share/locale/ca/LC_MESSAGES/kosmindoormap.mo share/locale/ca@valencia/LC_MESSAGES/kosmindoormap.mo share/locale/cs/LC_MESSAGES/kosmindoormap.mo share/locale/de/LC_MESSAGES/kosmindoormap.mo share/locale/en_GB/LC_MESSAGES/kosmindoormap.mo share/locale/eo/LC_MESSAGES/kosmindoormap.mo share/locale/es/LC_MESSAGES/kosmindoormap.mo share/locale/eu/LC_MESSAGES/kosmindoormap.mo share/locale/fi/LC_MESSAGES/kosmindoormap.mo share/locale/fr/LC_MESSAGES/kosmindoormap.mo share/locale/ga/LC_MESSAGES/kosmindoormap.mo share/locale/gl/LC_MESSAGES/kosmindoormap.mo share/locale/he/LC_MESSAGES/kosmindoormap.mo share/locale/hi/LC_MESSAGES/kosmindoormap.mo share/locale/ia/LC_MESSAGES/kosmindoormap.mo share/locale/it/LC_MESSAGES/kosmindoormap.mo share/locale/ja/LC_MESSAGES/kosmindoormap.mo share/locale/ka/LC_MESSAGES/kosmindoormap.mo share/locale/ko/LC_MESSAGES/kosmindoormap.mo share/locale/lt/LC_MESSAGES/kosmindoormap.mo share/locale/nl/LC_MESSAGES/kosmindoormap.mo share/locale/pl/LC_MESSAGES/kosmindoormap.mo share/locale/pt/LC_MESSAGES/kosmindoormap.mo share/locale/pt_BR/LC_MESSAGES/kosmindoormap.mo share/locale/ru/LC_MESSAGES/kosmindoormap.mo share/locale/sa/LC_MESSAGES/kosmindoormap.mo share/locale/sk/LC_MESSAGES/kosmindoormap.mo share/locale/sl/LC_MESSAGES/kosmindoormap.mo share/locale/sv/LC_MESSAGES/kosmindoormap.mo share/locale/tr/LC_MESSAGES/kosmindoormap.mo share/locale/uk/LC_MESSAGES/kosmindoormap.mo share/locale/zh_CN/LC_MESSAGES/kosmindoormap.mo share/locale/zh_TW/LC_MESSAGES/kosmindoormap.mo share/qlogging-categories6/org_kde_kosmindoormap.categories diff --git a/astro/marble/Makefile b/astro/marble/Makefile index 8609ce55ef28..0a5581a3f433 100644 --- a/astro/marble/Makefile +++ b/astro/marble/Makefile @@ -1,46 +1,45 @@ PORTNAME= marble DISTVERSION= ${KDE_APPLICATIONS_VERSION} -PORTREVISION= 1 CATEGORIES= astro education kde kde-applications MAINTAINER= kde@FreeBSD.org COMMENT= Virtual globe and world atlas for KDE WWW= https://marble.kde.org/ LICENSE= GPLv2+ LICENSE_FILE= ${WRKSRC}/LICENSE.txt LIB_DEPENDS= libprotobuf.so:devel/protobuf USES= cmake compiler:c++11-lang desktop-file-utils gettext \ kde:6 qt:6 shared-mime-info tar:xz xorg USE_KDE= auth codecs completion config configwidgets coreaddons \ crash doctools i18n jobwidgets kio kirigami-addons package \ parts phonon plasma-workspace-wallpapers runner service solid \ sonnet textwidgets widgetsaddons windowsystem xmlgui \ ecm:build USE_LDCONFIG= yes USE_QT= base declarative positioning svg USE_XORG= x11 CMAKE_OFF= MOBILE # Override shared library version KDE_APPLICATIONS_SHLIB_VER= ${KDE_APPLICATIONS_SHLIB_G_VER} OPTIONS_DEFINE= DOCS GPS WEBENGINE OPTIONS_DEFAULT= GPS OPTIONS_DEFAULT_amd64= WEBENGINE OPTIONS_DEFAULT_i386= WEBENGINE OPTIONS_SUB= yes GPS_DESC= Support for GPS position provider GPS_USE= QT=location GPS_LIB_DEPENDS= libgps.so:astro/gpsd GPS_CMAKE_BOOL_OFF= CMAKE_DISABLE_FIND_PACKAGE_libgps WEBENGINE_DESC= Build various plugins that require qt6-webengine WEBENGINE_USE= QT=location,webchannel,webengine WEBENGINE_CMAKE_BOOL_OFF= CMAKE_DISABLE_FIND_PACKAGE_Qt6WebEngineWidgets .include diff --git a/astro/marble/distinfo b/astro/marble/distinfo index e1f67ff3e957..bdf395939774 100644 --- a/astro/marble/distinfo +++ b/astro/marble/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1772541766 -SHA256 (KDE/release-service/25.12.3/marble-25.12.3.tar.xz) = 6f444e70f61ae3e4b7a2c9cc07bea788a795263693278ac637d8afc86a0c3dd4 -SIZE (KDE/release-service/25.12.3/marble-25.12.3.tar.xz) = 53792992 +TIMESTAMP = 1776248087 +SHA256 (KDE/release-service/26.04.0/marble-26.04.0.tar.xz) = 4b0aef4a08a41647d82c2b50198252e8e332fb7880f614ce6c5561eb073c9822 +SIZE (KDE/release-service/26.04.0/marble-26.04.0.tar.xz) = 53796664 diff --git a/audio/Makefile b/audio/Makefile index 9ab6270e69c7..60b3f49157e0 100644 --- a/audio/Makefile +++ b/audio/Makefile @@ -1,908 +1,907 @@ COMMENT = Audio tools SUBDIR += GxSwitchlessWah-lv2 SUBDIR += HVSC-Update SUBDIR += Maaate SUBDIR += TonieToolbox SUBDIR += a2jmidid SUBDIR += abcde SUBDIR += abcselect SUBDIR += abgate-lv2 SUBDIR += abx SUBDIR += adplay SUBDIR += aeolus SUBDIR += afsp SUBDIR += aften SUBDIR += alac SUBDIR += alacenc SUBDIR += alienwah SUBDIR += alo-lv2 SUBDIR += alsa-lib SUBDIR += alsa-plugins SUBDIR += alsa-seq-server SUBDIR += alsa-sndio SUBDIR += alsa-utils SUBDIR += alure SUBDIR += amb-plugins SUBDIR += amberol SUBDIR += ampache SUBDIR += amsynth SUBDIR += aqualung SUBDIR += ardour SUBDIR += ario SUBDIR += arss SUBDIR += artyfx-lv2 SUBDIR += asmix SUBDIR += asmixer SUBDIR += asterisk-espeak SUBDIR += asterisk-flite SUBDIR += atracdenc SUBDIR += atunes SUBDIR += aubio SUBDIR += audacity SUBDIR += audiocd-kio SUBDIR += audiowmark SUBDIR += aumix SUBDIR += autocd SUBDIR += autotalent SUBDIR += autozen SUBDIR += avldrums-lv2 SUBDIR += aylet SUBDIR += bambootracker SUBDIR += bamp-lv2 SUBDIR += bangr-lv2 SUBDIR += baresip SUBDIR += bcg729 SUBDIR += bchoppr-lv2 SUBDIR += beep SUBDIR += beets SUBDIR += bespokesynth SUBDIR += bharvestr-lv2 SUBDIR += bjumblr-lv2 SUBDIR += bliss SUBDIR += blop SUBDIR += blucli SUBDIR += boca SUBDIR += boops-lv2 SUBDIR += bristol SUBDIR += bschaffl-lv2 SUBDIR += bsequencer-lv2 SUBDIR += bshapr-lv2 SUBDIR += bslizr-lv2 SUBDIR += cadence SUBDIR += calf-lv2 SUBDIR += cantata SUBDIR += caps-lv2 SUBDIR += caps-plugins SUBDIR += cardinal SUBDIR += cava SUBDIR += cd-discid SUBDIR += cddb-bundle SUBDIR += cdparanoia SUBDIR += checkmate SUBDIR += cheesecutter SUBDIR += chordpack SUBDIR += chromaprint SUBDIR += cli-visualizer SUBDIR += clunk SUBDIR += cmt SUBDIR += cmus SUBDIR += codec2 SUBDIR += csound SUBDIR += csoundqt SUBDIR += ctronome SUBDIR += cuetools SUBDIR += cutmp3 SUBDIR += cyanrip SUBDIR += d11amp SUBDIR += darkice SUBDIR += dcd SUBDIR += deadbeef SUBDIR += deadbeef-jack-plugin SUBDIR += deadbeef-mpris2-plugin SUBDIR += deadbeef-musical-spectrum-plugin SUBDIR += deadbeef-playback-status-plugin SUBDIR += deadbeef-quick-search-plugin SUBDIR += deadbeef-spectrogram-plugin SUBDIR += deadbeef-vu-meter-plugin SUBDIR += deadbeef-waveform-seekbar-plugin SUBDIR += denemo SUBDIR += dexed SUBDIR += dgedit SUBDIR += din SUBDIR += discid SUBDIR += dmidiplayer SUBDIR += dpf-plugins-lv2 SUBDIR += dragonfly-reverb-lv2 SUBDIR += drumgizmo SUBDIR += drumkv1-lv2 SUBDIR += drumpiler SUBDIR += drumstick SUBDIR += dsbmixer SUBDIR += dssi SUBDIR += dtmfdial SUBDIR += dumb SUBDIR += dumb-allegro SUBDIR += easytag SUBDIR += eawpats SUBDIR += eawplus SUBDIR += ebumeter SUBDIR += ebur128 SUBDIR += ecasound SUBDIR += elisa SUBDIR += emms SUBDIR += enscribe SUBDIR += eq10q-lv2 SUBDIR += espeak-ng SUBDIR += espressivo-lv2 SUBDIR += essentia SUBDIR += etcd SUBDIR += eteroj-lv2 SUBDIR += etktab SUBDIR += exaile SUBDIR += exhale SUBDIR += ezstream SUBDIR += faac SUBDIR += faad SUBDIR += fabla2-lv2 SUBDIR += fapg SUBDIR += fatfrog-lv2 SUBDIR += faudio SUBDIR += faust SUBDIR += faust-lv2 SUBDIR += faustlive SUBDIR += fcplay SUBDIR += fdk-aac SUBDIR += fdmf SUBDIR += festalon SUBDIR += festival SUBDIR += festival-freebsoft-utils SUBDIR += festlex-cmu SUBDIR += festlex-czech SUBDIR += festlex-oald SUBDIR += festlex-poslex SUBDIR += festvox-cmu_us_awb_arctic SUBDIR += festvox-cmu_us_bdl_arctic SUBDIR += festvox-cmu_us_clb_arctic SUBDIR += festvox-cmu_us_jmk_arctic SUBDIR += festvox-cmu_us_ksp_arctic SUBDIR += festvox-cmu_us_rms_arctic SUBDIR += festvox-cmu_us_slt_arctic SUBDIR += festvox-don SUBDIR += festvox-el11 SUBDIR += festvox-kal16 SUBDIR += festvox-kal8 SUBDIR += festvox-ked16 SUBDIR += festvox-ked8 SUBDIR += festvox-rab16 SUBDIR += festvox-rab8 SUBDIR += festvox-russian SUBDIR += flac SUBDIR += flac123 SUBDIR += flacon SUBDIR += flite SUBDIR += fluid-soundfont SUBDIR += fluida-lv2 SUBDIR += fluidplug-lv2 SUBDIR += fluidsynth SUBDIR += fluidsynth-dssi SUBDIR += fmit SUBDIR += fogpad-lv2 SUBDIR += fomp-lv2 SUBDIR += foo-yc20 SUBDIR += fooyin SUBDIR += fossmixer SUBDIR += freac SUBDIR += freealut SUBDIR += freebsd-13-mixer SUBDIR += freedesktop-sound-theme SUBDIR += freepats SUBDIR += ft2-clone SUBDIR += ft2play SUBDIR += furnace SUBDIR += g4music SUBDIR += ganv SUBDIR += gbsplay SUBDIR += geonkick-lv2 SUBDIR += ggwave SUBDIR += giada SUBDIR += gigedit SUBDIR += gmsynth-lv2 SUBDIR += gmtp SUBDIR += gmusicbrowser SUBDIR += gnaural SUBDIR += gnome-metronome SUBDIR += gnome-music SUBDIR += gnome-podcasts SUBDIR += gnupod SUBDIR += gnuspeechsa SUBDIR += gnustep-cdplayer SUBDIR += go-librespot SUBDIR += goattracker SUBDIR += gogglesmm SUBDIR += gonic SUBDIR += goobox SUBDIR += gramofile SUBDIR += grip SUBDIR += gsequencer SUBDIR += gsm SUBDIR += gsound SUBDIR += gstreamer1-plugins-a52dec SUBDIR += gstreamer1-plugins-alsa SUBDIR += gstreamer1-plugins-amrnb SUBDIR += gstreamer1-plugins-amrwbdec SUBDIR += gstreamer1-plugins-bs2b SUBDIR += gstreamer1-plugins-cdparanoia SUBDIR += gstreamer1-plugins-chromaprint SUBDIR += gstreamer1-plugins-faac SUBDIR += gstreamer1-plugins-faad SUBDIR += gstreamer1-plugins-fdkaac SUBDIR += gstreamer1-plugins-flac SUBDIR += gstreamer1-plugins-flite SUBDIR += gstreamer1-plugins-gme SUBDIR += gstreamer1-plugins-gsm SUBDIR += gstreamer1-plugins-jack SUBDIR += gstreamer1-plugins-ladspa SUBDIR += gstreamer1-plugins-lame SUBDIR += gstreamer1-plugins-lv2 SUBDIR += gstreamer1-plugins-modplug SUBDIR += gstreamer1-plugins-mpg123 SUBDIR += gstreamer1-plugins-ogg SUBDIR += gstreamer1-plugins-openmpt SUBDIR += gstreamer1-plugins-opus SUBDIR += gstreamer1-plugins-pulse SUBDIR += gstreamer1-plugins-shout2 SUBDIR += gstreamer1-plugins-sidplay SUBDIR += gstreamer1-plugins-sndfile SUBDIR += gstreamer1-plugins-sndio SUBDIR += gstreamer1-plugins-soundtouch SUBDIR += gstreamer1-plugins-speex SUBDIR += gstreamer1-plugins-taglib SUBDIR += gstreamer1-plugins-twolame SUBDIR += gstreamer1-plugins-vorbis SUBDIR += gstreamer1-plugins-wavpack SUBDIR += gstreamer1-plugins-webrtcdsp SUBDIR += gtick SUBDIR += gtk-mixer SUBDIR += gtkguitune SUBDIR += gtkpod SUBDIR += gtmixer SUBDIR += gtultra SUBDIR += guidoar SUBDIR += guidolib SUBDIR += guitarix-lv2 SUBDIR += gula-plugins-lv2 SUBDIR += guspat SUBDIR += gvolwheel SUBDIR += gxplugins-lv2 SUBDIR += harp SUBDIR += headsetcontrol SUBDIR += hexter SUBDIR += hpsjam SUBDIR += hts_engine-API SUBDIR += hydrogen SUBDIR += icecast SUBDIR += icegenerator SUBDIR += ices SUBDIR += id3edit SUBDIR += id3el SUBDIR += id3lib SUBDIR += id3mtag SUBDIR += id3v2 SUBDIR += iir1 SUBDIR += infamous-plugins-lv2 SUBDIR += inscore SUBDIR += intersect-lv2 SUBDIR += invada-studio-plugins-lv2 SUBDIR += ir-lv2 SUBDIR += jack SUBDIR += jack-capture SUBDIR += jack-example-tools SUBDIR += jack-keyboard SUBDIR += jack-smf-utils SUBDIR += jack_ghero SUBDIR += jack_umidi SUBDIR += jacktrip SUBDIR += jalv SUBDIR += jalv-select SUBDIR += jamulus SUBDIR += jconvolver SUBDIR += jid3lib SUBDIR += jmatconvol SUBDIR += jnoisemeter SUBDIR += juk SUBDIR += juke SUBDIR += julius SUBDIR += kaldi SUBDIR += kaldi-vosk SUBDIR += kapitonov-plugins-pack-lv2 SUBDIR += kid3 SUBDIR += klystrack SUBDIR += kmix SUBDIR += komposter SUBDIR += kwave SUBDIR += ladish SUBDIR += ladspa SUBDIR += lame SUBDIR += lash SUBDIR += lenticular-lv2 SUBDIR += lewton SUBDIR += liba52 SUBDIR += libadplug SUBDIR += libaiff SUBDIR += libamrnb SUBDIR += libamrwb SUBDIR += libao SUBDIR += libaudec SUBDIR += libaudiofile SUBDIR += libbpm SUBDIR += libbs2b SUBDIR += libcanberra SUBDIR += libcanberra-gstreamer SUBDIR += libcanberra-gtk2 SUBDIR += libcanberra-gtk3 SUBDIR += libcanberra-pulse SUBDIR += libcdaudio SUBDIR += libconvolve SUBDIR += libcoverart SUBDIR += libdiscid SUBDIR += libdjinterop SUBDIR += libdssialsacompat SUBDIR += libebur128 SUBDIR += libfilteraudio SUBDIR += libfishsound SUBDIR += libg722 SUBDIR += libgig SUBDIR += libgme SUBDIR += libgpod SUBDIR += libid3tag SUBDIR += libinstpatch SUBDIR += libkcddb - SUBDIR += libkcompactdisc SUBDIR += libkeyfinder SUBDIR += liblastfm SUBDIR += liblo SUBDIR += liblscp SUBDIR += libltc SUBDIR += libmad SUBDIR += libmatemixer SUBDIR += libmikmod SUBDIR += libmodplug SUBDIR += libmp3-archive-perl SUBDIR += libmp3splt SUBDIR += libmpd SUBDIR += libmpdclient SUBDIR += libmusicbrainz5 SUBDIR += libmusicxml SUBDIR += libmysofa SUBDIR += libnoise SUBDIR += libogg SUBDIR += liboggz SUBDIR += libopenmpt SUBDIR += libopenshot-audio SUBDIR += libopusenc SUBDIR += libremidi SUBDIR += libsamplerate SUBDIR += libshout SUBDIR += libsidplay SUBDIR += libsidplayfp SUBDIR += libsmf SUBDIR += libsndfile SUBDIR += libsonic SUBDIR += libsoxr SUBDIR += libspecbleach SUBDIR += libvgm SUBDIR += libvorbis SUBDIR += libxmp SUBDIR += lilv SUBDIR += lingot SUBDIR += linux-c7-alsa-lib SUBDIR += linux-c7-alsa-lib-devel SUBDIR += linux-c7-alsa-plugins-oss SUBDIR += linux-c7-alsa-plugins-pulseaudio SUBDIR += linux-c7-alsa-utils SUBDIR += linux-c7-audiofile SUBDIR += linux-c7-flac SUBDIR += linux-c7-gsm SUBDIR += linux-c7-libogg SUBDIR += linux-c7-libsndfile SUBDIR += linux-c7-libvorbis SUBDIR += linux-c7-openal-soft SUBDIR += linux-c7-pulseaudio-libs SUBDIR += linux-c7-pulseaudio-utils SUBDIR += linux-laudio SUBDIR += linux-rl9-alsa-lib SUBDIR += linux-rl9-alsa-lib-devel SUBDIR += linux-rl9-alsa-plugins-oss SUBDIR += linux-rl9-alsa-plugins-pulseaudio SUBDIR += linux-rl9-flac SUBDIR += linux-rl9-gsm SUBDIR += linux-rl9-libogg SUBDIR += linux-rl9-libsndfile SUBDIR += linux-rl9-libvorbis SUBDIR += linux-rl9-openal-soft SUBDIR += linux-rl9-opus SUBDIR += linux-rl9-pulseaudio-libs SUBDIR += linux-rl9-pulseaudio-utils SUBDIR += linuxsampler SUBDIR += linuxwave SUBDIR += liquidsfz SUBDIR += listener SUBDIR += littlefly-lv2 SUBDIR += lollypop SUBDIR += lpcnet SUBDIR += lsp-plugins-lv2 SUBDIR += lua-mpd SUBDIR += luppp SUBDIR += lv2 SUBDIR += lv2file SUBDIR += lv2lint SUBDIR += lv2proc SUBDIR += lvtk SUBDIR += lyrionmusicserver SUBDIR += mac SUBDIR += madfufw SUBDIR += madplay SUBDIR += madronalib SUBDIR += malint SUBDIR += mamba SUBDIR += maolan SUBDIR += mate-media SUBDIR += mclk-lv2 SUBDIR += mda-lv2 SUBDIR += mhwaveedit SUBDIR += midi-matrix-lv2 SUBDIR += midifile SUBDIR += midiomatic-lv2 SUBDIR += midipp SUBDIR += midisharelight SUBDIR += midivisualizer SUBDIR += mikmod SUBDIR += milkytracker SUBDIR += miniaudio SUBDIR += minimp3 SUBDIR += mio2jack SUBDIR += mixer.app SUBDIR += mixertui SUBDIR += mixxx SUBDIR += mkcue SUBDIR += mmtc SUBDIR += moc SUBDIR += modplug-tools SUBDIR += moodbar SUBDIR += moony-lv2 SUBDIR += mousai SUBDIR += mp-player SUBDIR += mp3-archive-tools SUBDIR += mp3_check SUBDIR += mp3asm SUBDIR += mp3blaster SUBDIR += mp3burn SUBDIR += mp3gain SUBDIR += mp3guessenc SUBDIR += mp3lint SUBDIR += mp3mover SUBDIR += mp3riot SUBDIR += mp3splt SUBDIR += mp3stat SUBDIR += mp3unicode SUBDIR += mp3val SUBDIR += mp3wrap SUBDIR += mpdas SUBDIR += mpdcon SUBDIR += mpdscribble SUBDIR += mpg123 SUBDIR += mpg123.el SUBDIR += mpg321 SUBDIR += mps SUBDIR += mpz SUBDIR += mumble SUBDIR += mumble-server SUBDIR += murmur SUBDIR += murmur-cli SUBDIR += muse-sequencer SUBDIR += musepack SUBDIR += musescore SUBDIR += musescore3 SUBDIR += musiccontrol SUBDIR += musicpc SUBDIR += musicpd SUBDIR += mythplugin-mythmusic SUBDIR += myxer SUBDIR += nas SUBDIR += ncmpc SUBDIR += ncmpcpp SUBDIR += ncpamixer SUBDIR += ncspot SUBDIR += netease-music-tui SUBDIR += neuralrack-lv2 SUBDIR += noctavox SUBDIR += noise-repellent-lv2 SUBDIR += noise-suppression-for-voice-lv2 SUBDIR += normalize SUBDIR += nosefart SUBDIR += noson SUBDIR += noson-app SUBDIR += nyquist SUBDIR += oaml SUBDIR += ocp SUBDIR += odin2-synthesizer SUBDIR += ogg2mp3 SUBDIR += openal-soft SUBDIR += opencore-amr SUBDIR += opus SUBDIR += opus-tools SUBDIR += opusfile SUBDIR += opustags SUBDIR += orbit-lv2 SUBDIR += osd-lyrics SUBDIR += osdmixer SUBDIR += oss SUBDIR += owntone SUBDIR += p5-Audio-CD SUBDIR += p5-Audio-Ecasound SUBDIR += p5-Audio-FLAC-Header SUBDIR += p5-Audio-MPD SUBDIR += p5-Audio-MPD-Common SUBDIR += p5-Audio-Mixer SUBDIR += p5-Audio-Musepack SUBDIR += p5-Audio-Scan SUBDIR += p5-Audio-Scrobbler SUBDIR += p5-Audio-WMA SUBDIR += p5-Audio-Wav SUBDIR += p5-CDDB SUBDIR += p5-CDDB-File SUBDIR += p5-CDDB_get SUBDIR += p5-Filesys-Virtual-DAAP SUBDIR += p5-MIDI-Perl SUBDIR += p5-MP3-Find SUBDIR += p5-MP3-ID3v1Tag SUBDIR += p5-MP3-Info SUBDIR += p5-MP3-Tag SUBDIR += p5-MP3-Tag-Utils SUBDIR += p5-MPEG-ID3v2Tag SUBDIR += p5-Music-Audioscrobbler-MPD SUBDIR += p5-Music-Audioscrobbler-Submit SUBDIR += p5-MusicBrainz-DiscID SUBDIR += p5-Net-DAAP-Client SUBDIR += p5-Net-DAAP-DMAP SUBDIR += p5-Net-FreeDB SUBDIR += p5-Net-LibLO SUBDIR += p5-Ogg-Vorbis-Header SUBDIR += p5-Ogg-Vorbis-Header-PurePerl SUBDIR += p5-Shout SUBDIR += p5-Test-Corpus-Audio-MPD SUBDIR += p5-libvorbis SUBDIR += p5-tagged SUBDIR += pa-applet SUBDIR += pacpl SUBDIR += padthv1-lv2 SUBDIR += paman SUBDIR += pamixer SUBDIR += pandaresampler SUBDIR += paprefs SUBDIR += pasystray SUBDIR += patchage SUBDIR += pavucontrol SUBDIR += pavucontrol-qt SUBDIR += pavumeter SUBDIR += pcaudiolib SUBDIR += pd SUBDIR += pd-cyclone SUBDIR += pear-Text_Spell_Audio SUBDIR += penguinsap SUBDIR += pianobar SUBDIR += pianobooster SUBDIR += pianod2 SUBDIR += picard SUBDIR += picard-plugins SUBDIR += piper SUBDIR += piper-phonemize SUBDIR += pipewire-module-xrdp SUBDIR += pipewire-spa-oss SUBDIR += pithos SUBDIR += plasma6-kpipewire SUBDIR += plasma6-ocean-sound-theme SUBDIR += plasma6-oxygen-sounds SUBDIR += plasma6-plasma-pa SUBDIR += playgsf SUBDIR += playmidi SUBDIR += playumidi SUBDIR += pms SUBDIR += pms-devel SUBDIR += pocketsphinx SUBDIR += poly-lv2 SUBDIR += polyphone SUBDIR += portaudio SUBDIR += portmidi SUBDIR += praat SUBDIR += pragha SUBDIR += prelude-lv2 SUBDIR += psindustrializer SUBDIR += pt2-clone SUBDIR += puddletag SUBDIR += pulseaudio SUBDIR += pulseaudio-module-sndio SUBDIR += pulseaudio-module-xrdp SUBDIR += pulseaudio-qt SUBDIR += py-SoundFile SUBDIR += py-al SUBDIR += py-apetag SUBDIR += py-aubio SUBDIR += py-audioread SUBDIR += py-auditok SUBDIR += py-discid SUBDIR += py-discogs-client SUBDIR += py-espeakng-loader SUBDIR += py-essentia SUBDIR += py-eyed3 SUBDIR += py-fmoo-audiotools SUBDIR += py-gtts SUBDIR += py-hsaudiotag3k SUBDIR += py-librosa SUBDIR += py-mpd SUBDIR += py-music21 SUBDIR += py-musicbrainzngs SUBDIR += py-mutagen SUBDIR += py-opuslib SUBDIR += py-playsound SUBDIR += py-pocketsphinx SUBDIR += py-pulsectl SUBDIR += py-pyacoustid SUBDIR += py-pyaudio SUBDIR += py-pydub SUBDIR += py-pyjacklib SUBDIR += py-pylast SUBDIR += py-pyliblo3 SUBDIR += py-pymad SUBDIR += py-pyogg SUBDIR += py-pyradio SUBDIR += py-pysndfile SUBDIR += py-python-mpd2 SUBDIR += py-pyttsx3 SUBDIR += py-resampy SUBDIR += py-samplerate SUBDIR += py-simpleaudio SUBDIR += py-soundcloud SUBDIR += py-sounddevice SUBDIR += py-soundscrape SUBDIR += py-soxr SUBDIR += py-speechrecognition SUBDIR += py-spotipy SUBDIR += py-supysonic SUBDIR += py-torchaudio SUBDIR += py-vosk SUBDIR += py-wavio SUBDIR += py-webrtcvad SUBDIR += py-zita-audiotools SUBDIR += py-zita-jacktools SUBDIR += qaudiosonar SUBDIR += qjackcapture SUBDIR += qjackctl SUBDIR += qmidiarp SUBDIR += qmidictl SUBDIR += qmidinet SUBDIR += qsampler SUBDIR += qsynth SUBDIR += qtractor SUBDIR += quimup SUBDIR += qxgedit SUBDIR += radiotrope SUBDIR += ratatouille-lv2 SUBDIR += raul SUBDIR += rawrec SUBDIR += re SUBDIR += rexima SUBDIR += rezound SUBDIR += rhvoice SUBDIR += rhvoice-dictionary SUBDIR += rhythmbox SUBDIR += ripperx SUBDIR += rkr-lv2 SUBDIR += rnnoise SUBDIR += rnnoise-nu SUBDIR += rosegarden SUBDIR += rsgain SUBDIR += rsynth SUBDIR += rtaudio SUBDIR += rtmidi SUBDIR += rubberband SUBDIR += ruby-smf SUBDIR += ruby-taglib SUBDIR += rubygem-librmpd SUBDIR += rubygem-ruby-mp3info SUBDIR += rubygem-ruby-ogginfo SUBDIR += rubygem-ruby-shout SUBDIR += s3mod SUBDIR += samplv1-lv2 SUBDIR += sayonara SUBDIR += sbagen SUBDIR += sc3-plugins SUBDIR += schismtracker SUBDIR += screcord-lv2 SUBDIR += sdl2_mixer SUBDIR += sdl2_sound SUBDIR += sdl_audiolib SUBDIR += sdl_mixer SUBDIR += sdl_sound SUBDIR += sfizz SUBDIR += sfront SUBDIR += shairplay SUBDIR += shairport-sync SUBDIR += sherlock-lv2 SUBDIR += shntool SUBDIR += shortwave SUBDIR += shuriken SUBDIR += sidplayer SUBDIR += sidplayfp SUBDIR += simplemod SUBDIR += siren SUBDIR += snack SUBDIR += snd SUBDIR += sndio SUBDIR += so-synth-lv2 SUBDIR += solfege SUBDIR += somafm-cli SUBDIR += sonata SUBDIR += songrec SUBDIR += sonic-visualiser SUBDIR += sonicradio SUBDIR += sonivox SUBDIR += sonivox-eas SUBDIR += sorcer-lv2 SUBDIR += sound-juicer SUBDIR += soundgrab SUBDIR += soundtouch SUBDIR += soundtracker SUBDIR += sox SUBDIR += sox-noise SUBDIR += spc2it SUBDIR += spectacle-lv2 SUBDIR += spectmorph SUBDIR += spectrogram SUBDIR += speech-denoiser-lv2 SUBDIR += speex SUBDIR += speexdsp SUBDIR += spek SUBDIR += spiralloops SUBDIR += spiralsynthmodular SUBDIR += spotify-player SUBDIR += spotify-qt SUBDIR += spotifyd SUBDIR += squash SUBDIR += squeezelite SUBDIR += sratom SUBDIR += ssr-lv2 SUBDIR += stegosaurus-lv2 SUBDIR += stk SUBDIR += stone-phaser-lv2 SUBDIR += strawberry SUBDIR += streamripper SUBDIR += streamtranscoder SUBDIR += string-machine-lv2 SUBDIR += stymulator SUBDIR += subtui SUBDIR += suil SUBDIR += supercollider SUBDIR += surge-synthesizer-lv2 SUBDIR += surge-synthesizer-xt-lv2 SUBDIR += swh-lv2 SUBDIR += swhplugins SUBDIR += synthpod-lv2 SUBDIR += synthv1-lv2 SUBDIR += taglib SUBDIR += tagutil SUBDIR += tamgamp-lv2 SUBDIR += tap-plugins SUBDIR += tap-plugins-lv2 SUBDIR += tcd SUBDIR += teamspeak3-server SUBDIR += tempest_for_eliza SUBDIR += tetraproc SUBDIR += thunar-media-tags-plugin SUBDIR += tiatracker SUBDIR += timbre-mill SUBDIR += timely-lv2 SUBDIR += timemachine SUBDIR += timidity SUBDIR += timidity++ SUBDIR += timidity++-emacs SUBDIR += timidity++-gtk SUBDIR += timidity++-motif SUBDIR += timidity++-slang SUBDIR += timidity++-xaw SUBDIR += timidity++-xskin SUBDIR += tkeca SUBDIR += toccata-lv2 SUBDIR += tosha SUBDIR += triceratops-lv2 SUBDIR += tse3 SUBDIR += tta SUBDIR += tuner SUBDIR += twolame SUBDIR += uade SUBDIR += umix SUBDIR += umodplayer SUBDIR += umurmur SUBDIR += unflac SUBDIR += vamp-plugin-sdk SUBDIR += vban SUBDIR += vgmplay SUBDIR += vgmtools SUBDIR += vimpc SUBDIR += virtual_oss SUBDIR += virtual_oss_bluetooth SUBDIR += virtual_oss_ctl SUBDIR += virtual_oss_equalizer SUBDIR += virtual_oss_sndio SUBDIR += visp-go SUBDIR += vitunes SUBDIR += vm-lv2 SUBDIR += vmpk SUBDIR += vo-amrwbenc SUBDIR += voipong SUBDIR += volumeicon SUBDIR += vorbis-tools SUBDIR += vorbisgain SUBDIR += vosk-api SUBDIR += vsound SUBDIR += vst3sdk SUBDIR += waon SUBDIR += wasabi SUBDIR += wavbreaker SUBDIR += wavegain SUBDIR += waves SUBDIR += wavetral SUBDIR += wavpack SUBDIR += wavplay SUBDIR += webrtc-audio-processing SUBDIR += webrtc-audio-processing0 SUBDIR += webrtc-audio-processing2 SUBDIR += welle.io SUBDIR += whisper.cpp SUBDIR += whysynth SUBDIR += wildmidi SUBDIR += wmix SUBDIR += wmmp SUBDIR += wmsmixer SUBDIR += wolf-shaper-lv2 SUBDIR += wxguitar SUBDIR += x42-plugins-lv2 SUBDIR += xanalyser SUBDIR += xcd SUBDIR += xcdplayer SUBDIR += xfce4-mixer SUBDIR += xfce4-mpc-plugin SUBDIR += xfce4-pulseaudio-plugin SUBDIR += xfmpc SUBDIR += xmcd SUBDIR += xmix SUBDIR += xmixer SUBDIR += xmmix SUBDIR += xmp SUBDIR += xoscope SUBDIR += xsynth SUBDIR += xsynth-dssi SUBDIR += xuidesigner SUBDIR += xwave SUBDIR += xwax SUBDIR += yell SUBDIR += ympd SUBDIR += yoshimi SUBDIR += zam-plugins-lv2 SUBDIR += zita-alsa-pcmi SUBDIR += zita-at1 SUBDIR += zita-bls1 SUBDIR += zita-convolver SUBDIR += zita-dpl1 SUBDIR += zita-jclient SUBDIR += zita-mu1 SUBDIR += zita-njbridge SUBDIR += zita-resampler SUBDIR += zita-rev1 SUBDIR += zmusic SUBDIR += zplugins-lv2 SUBDIR += zrythm SUBDIR += zynaddsubfx .include diff --git a/audio/audiocd-kio/Makefile b/audio/audiocd-kio/Makefile index 4972eff47afe..ffa400f2f0e5 100644 --- a/audio/audiocd-kio/Makefile +++ b/audio/audiocd-kio/Makefile @@ -1,35 +1,34 @@ PORTNAME= audiocd-kio DISTVERSION= ${KDE_APPLICATIONS_VERSION} CATEGORIES= audio kde kde-applications MAINTAINER= kde@FreeBSD.org COMMENT= KDE IOSlave for accessing audio CDs WWW= https://www.kde.org/ LICENSE= GPLv2 LIB_DEPENDS= libFLAC.so:audio/flac \ libcdda_paranoia.so:audio/cdparanoia \ libogg.so:audio/libogg \ libvorbis.so:audio/libvorbis \ - libKCddb6.so:audio/libkcddb \ - libKCompactDisc6.so:audio/libkcompactdisc + libKCddb6.so:audio/libkcddb USES= cmake compiler:c++11-lang gettext kde:6 qt:6 tar:xz USE_KDE= auth bookmarks codecs completion config configwidgets \ coreaddons crash guiaddons i18n iconthemes itemviews \ jobwidgets kcmutils kio notifications parts phonon service \ solid sonnet textwidgets unitconversion widgetsaddons \ windowsystem xmlgui \ ecm:build USE_QT= base USE_LDCONFIG= yes _${PORTNAME}_PROJECT_VERSION= 5.1 KDE_APPS_BASED_PATCHLEVEL= ${KDE_APPLICATIONS_VERSION:R:S/.//}${KDE_APPLICATIONS_VERSION:E} OPTIONS_DEFINE= LAME DOCS LAME_DESC= Install LAME MP3 audio encoder LAME_RUN_DEPENDS= lame:audio/lame .include diff --git a/audio/audiocd-kio/distinfo b/audio/audiocd-kio/distinfo index beeccdd728dc..0b65d84ef092 100644 --- a/audio/audiocd-kio/distinfo +++ b/audio/audiocd-kio/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1772541768 -SHA256 (KDE/release-service/25.12.3/audiocd-kio-25.12.3.tar.xz) = 7c5a9ff8ec7017d3c761107f910b6c75511d4bee9fe168732b77006f5b44fff1 -SIZE (KDE/release-service/25.12.3/audiocd-kio-25.12.3.tar.xz) = 586540 +TIMESTAMP = 1776248089 +SHA256 (KDE/release-service/26.04.0/audiocd-kio-26.04.0.tar.xz) = 8425bf7643d61bcbe597898161beb6260fd0f1670d33083def9959d99cafe8b7 +SIZE (KDE/release-service/26.04.0/audiocd-kio-26.04.0.tar.xz) = 583912 diff --git a/audio/elisa/distinfo b/audio/elisa/distinfo index 1ff08818a2b6..289ddaa6b824 100644 --- a/audio/elisa/distinfo +++ b/audio/elisa/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1772541769 -SHA256 (KDE/release-service/25.12.3/elisa-25.12.3.tar.xz) = ee530970f11bfda48a5569505cfc87eb6ccad2135d6226423dd42c0c3ba7fd4a -SIZE (KDE/release-service/25.12.3/elisa-25.12.3.tar.xz) = 1499132 +TIMESTAMP = 1776248091 +SHA256 (KDE/release-service/26.04.0/elisa-26.04.0.tar.xz) = 5dc4800eef63b064d0b9011d89554f77d2655970580becb357ec78ca26e48d2f +SIZE (KDE/release-service/26.04.0/elisa-26.04.0.tar.xz) = 1503700 diff --git a/audio/juk/distinfo b/audio/juk/distinfo index 3d2f69a99713..8d1d5155f8a9 100644 --- a/audio/juk/distinfo +++ b/audio/juk/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1772541771 -SHA256 (KDE/release-service/25.12.3/juk-25.12.3.tar.xz) = 75a10c8707f83fd76e08c9608723b5181d9f828d7d50e21763d1fd25623fdd04 -SIZE (KDE/release-service/25.12.3/juk-25.12.3.tar.xz) = 1943004 +TIMESTAMP = 1776248092 +SHA256 (KDE/release-service/26.04.0/juk-26.04.0.tar.xz) = dd0e6bab880be130b4f594712174ab9080800afcb99527f4f152168b946e8cae +SIZE (KDE/release-service/26.04.0/juk-26.04.0.tar.xz) = 1942740 diff --git a/audio/kmix/distinfo b/audio/kmix/distinfo index 0e6624473ea6..1539babda7ba 100644 --- a/audio/kmix/distinfo +++ b/audio/kmix/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1772541773 -SHA256 (KDE/release-service/25.12.3/kmix-25.12.3.tar.xz) = e310b9abda691a23767579b35cf468b63dccb7a03ed47cdd63e2ccbb5818fc10 -SIZE (KDE/release-service/25.12.3/kmix-25.12.3.tar.xz) = 1177864 +TIMESTAMP = 1776248094 +SHA256 (KDE/release-service/26.04.0/kmix-26.04.0.tar.xz) = ab843691c8c88e26631a3d39df7ac756e9643651c4adcc0d1b946b9339401163 +SIZE (KDE/release-service/26.04.0/kmix-26.04.0.tar.xz) = 1180028 diff --git a/audio/kwave/distinfo b/audio/kwave/distinfo index a74e42751a2f..dfcc4d17bebd 100644 --- a/audio/kwave/distinfo +++ b/audio/kwave/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1772541774 -SHA256 (KDE/release-service/25.12.3/kwave-25.12.3.tar.xz) = d58fe7dceaceaa18206816558f6b640667073966f237fba14abd177bbdcd9dcd -SIZE (KDE/release-service/25.12.3/kwave-25.12.3.tar.xz) = 6552328 +TIMESTAMP = 1776248096 +SHA256 (KDE/release-service/26.04.0/kwave-26.04.0.tar.xz) = aca5c3f95d32d737026e04eeba161851b7855990f0f4aa2c4af7033a68c536fc +SIZE (KDE/release-service/26.04.0/kwave-26.04.0.tar.xz) = 6552400 diff --git a/audio/libkcddb/distinfo b/audio/libkcddb/distinfo index 3511ad473314..7b2a28da3681 100644 --- a/audio/libkcddb/distinfo +++ b/audio/libkcddb/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1772541776 -SHA256 (KDE/release-service/25.12.3/libkcddb-25.12.3.tar.xz) = e448606348517300496ad86344bd7dde5d6a67f12a247e8c3cbaa7e61a67ce73 -SIZE (KDE/release-service/25.12.3/libkcddb-25.12.3.tar.xz) = 447748 +TIMESTAMP = 1776248097 +SHA256 (KDE/release-service/26.04.0/libkcddb-26.04.0.tar.xz) = a7b35cc2562334a36ebc6e737962b3d8ec22322f376b1d6eb6837f312fe05360 +SIZE (KDE/release-service/26.04.0/libkcddb-26.04.0.tar.xz) = 448128 diff --git a/audio/libkcompactdisc/Makefile b/audio/libkcompactdisc/Makefile deleted file mode 100644 index 1af60a892640..000000000000 --- a/audio/libkcompactdisc/Makefile +++ /dev/null @@ -1,20 +0,0 @@ -PORTNAME= libkcompactdisc -DISTVERSION= ${KDE_APPLICATIONS_VERSION} -CATEGORIES= audio kde kde-applications - -MAINTAINER= kde@FreeBSD.org -COMMENT= KDE library for interfacing with audio CDs -WWW= https://www.kde.org/ - -USES= cmake compiler:c++11-lang gettext kde:6 qt:6 tar:xz -USE_KDE= coreaddons i18n itemmodels itemviews phonon solid \ - ecm:build -USE_QT= base -USE_LDCONFIG= yes - -OPTIONS_DEFINE= ALSA DOCS - -ALSA_LIB_DEPENDS= libasound.so:audio/alsa-lib -ALSA_CMAKE_BOOL_OFF= CMAKE_DISABLE_FIND_PACKAGE_ALSA - -.include diff --git a/audio/libkcompactdisc/distinfo b/audio/libkcompactdisc/distinfo deleted file mode 100644 index 5e91717e36fd..000000000000 --- a/audio/libkcompactdisc/distinfo +++ /dev/null @@ -1,3 +0,0 @@ -TIMESTAMP = 1772541777 -SHA256 (KDE/release-service/25.12.3/libkcompactdisc-25.12.3.tar.xz) = 0f4c6b9f41a3cf0d1451204c58abf5c303ec6671f1d15989cd0d8d92bb9ee567 -SIZE (KDE/release-service/25.12.3/libkcompactdisc-25.12.3.tar.xz) = 100696 diff --git a/audio/libkcompactdisc/pkg-descr b/audio/libkcompactdisc/pkg-descr deleted file mode 100644 index 0d4e8e6ba865..000000000000 --- a/audio/libkcompactdisc/pkg-descr +++ /dev/null @@ -1 +0,0 @@ -KDE library for interfacing with audio CDs. diff --git a/audio/libkcompactdisc/pkg-plist b/audio/libkcompactdisc/pkg-plist deleted file mode 100644 index f62670151fcf..000000000000 --- a/audio/libkcompactdisc/pkg-plist +++ /dev/null @@ -1,79 +0,0 @@ -include/KCompactDisc6/KCompactDisc -include/KCompactDisc6/kcompactdisc.h -include/KCompactDisc6/kcompactdisc_export.h -include/KCompactDisc6/kcompactdisc_version.h -lib/cmake/KCompactDisc6/KCompactDisc6Config.cmake -lib/cmake/KCompactDisc6/KCompactDisc6ConfigVersion.cmake -lib/cmake/KCompactDisc6/KCompactDisc6Targets-%%CMAKE_BUILD_TYPE%%.cmake -lib/cmake/KCompactDisc6/KCompactDisc6Targets.cmake -lib/libKCompactDisc6.so -lib/libKCompactDisc6.so.5 -lib/libKCompactDisc6.so.5.0.0 -%%QT_MKSPECDIR%%/modules/qt_KCompactDisc.pri -share/locale/ar/LC_MESSAGES/libkcompactdisc.mo -share/locale/ast/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/sa/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 b81500deca03..1007b3501469 100644 --- a/databases/akonadi/distinfo +++ b/databases/akonadi/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1772541779 -SHA256 (KDE/release-service/25.12.3/akonadi-25.12.3.tar.xz) = 6884ca6219547f00f4d6a6dc6b787d095c0a925fa31cc8e7bad154991a70062a -SIZE (KDE/release-service/25.12.3/akonadi-25.12.3.tar.xz) = 1772860 +TIMESTAMP = 1776248101 +SHA256 (KDE/release-service/26.04.0/akonadi-26.04.0.tar.xz) = 324b2fa63f2f4335a1e5f7b5efb40f154d367d4f633ff5e38ab12df6b9514d6c +SIZE (KDE/release-service/26.04.0/akonadi-26.04.0.tar.xz) = 1783636 diff --git a/databases/akonadi/pkg-plist b/databases/akonadi/pkg-plist index d00928771857..4ef0f82578aa 100644 --- a/databases/akonadi/pkg-plist +++ b/databases/akonadi/pkg-plist @@ -1,563 +1,569 @@ bin/akonadi-db-migrator bin/akonadi2xml bin/akonadi_agent_launcher bin/akonadi_agent_server bin/akonadi_control bin/akonadi_knut_resource bin/akonadi_rds bin/akonadiagentconfigdialog 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/KPim6/Akonadi/akonadi/private/akonadiprivate_export.h include/KPim6/Akonadi/akonadi/private/capabilities_p.h include/KPim6/Akonadi/akonadi/private/compressionstream_p.h include/KPim6/Akonadi/akonadi/private/dbus_p.h include/KPim6/Akonadi/akonadi/private/externalpartstorage_p.h include/KPim6/Akonadi/akonadi/private/imapparser_p.h include/KPim6/Akonadi/akonadi/private/imapset_p.h include/KPim6/Akonadi/akonadi/private/instance_p.h include/KPim6/Akonadi/akonadi/private/protocol_exception_p.h include/KPim6/Akonadi/akonadi/private/protocol_gen.h include/KPim6/Akonadi/akonadi/private/protocol_p.h include/KPim6/Akonadi/akonadi/private/scope_p.h include/KPim6/Akonadi/akonadi/private/standarddirs_p.h include/KPim6/Akonadi/akonadi/private/tristate_p.h -include/KPim6/AkonadiAgentBase/Akonadi/AccountsIntegration +include/KPim6/AkonadiAgentBase/Akonadi/AccountBase include/KPim6/AkonadiAgentBase/Akonadi/AgentBase include/KPim6/AkonadiAgentBase/Akonadi/AgentSearchInterface include/KPim6/AkonadiAgentBase/Akonadi/PreprocessorBase include/KPim6/AkonadiAgentBase/Akonadi/ResourceBase include/KPim6/AkonadiAgentBase/Akonadi/ResourceSettings include/KPim6/AkonadiAgentBase/Akonadi/TransportResourceBase -include/KPim6/AkonadiAgentBase/akonadi/accountsintegration.h +include/KPim6/AkonadiAgentBase/akonadi/accountbase.h include/KPim6/AkonadiAgentBase/akonadi/agentbase.h include/KPim6/AkonadiAgentBase/akonadi/agentsearchinterface.h include/KPim6/AkonadiAgentBase/akonadi/akonadiagentbase_export.h include/KPim6/AkonadiAgentBase/akonadi/preprocessorbase.h include/KPim6/AkonadiAgentBase/akonadi/resourcebase.h include/KPim6/AkonadiAgentBase/akonadi/resourcebasesettings.h include/KPim6/AkonadiAgentBase/akonadi/resourcesettings.h include/KPim6/AkonadiAgentBase/akonadi/transportresourcebase.h include/KPim6/AkonadiAgentWidgetBase/Akonadi/AgentWidgetBase include/KPim6/AkonadiAgentWidgetBase/Akonadi/ResourceWidgetBase include/KPim6/AkonadiAgentWidgetBase/akonadi/agentwidgetbase.h include/KPim6/AkonadiAgentWidgetBase/akonadi/akonadiagentwidgetbase_export.h include/KPim6/AkonadiAgentWidgetBase/akonadi/resourcewidgetbase.h include/KPim6/AkonadiCore/Akonadi/AbstractDifferencesReporter include/KPim6/AkonadiCore/Akonadi/AccountActivitiesAbstract include/KPim6/AkonadiCore/Akonadi/AgentConfigurationBase include/KPim6/AkonadiCore/Akonadi/AgentConfigurationFactoryBase include/KPim6/AkonadiCore/Akonadi/AgentFilterProxyModel include/KPim6/AkonadiCore/Akonadi/AgentInstance include/KPim6/AkonadiCore/Akonadi/AgentInstanceCreateJob include/KPim6/AkonadiCore/Akonadi/AgentInstanceFilterProxyModel include/KPim6/AkonadiCore/Akonadi/AgentInstanceModel include/KPim6/AkonadiCore/Akonadi/AgentManager include/KPim6/AkonadiCore/Akonadi/AgentType include/KPim6/AkonadiCore/Akonadi/AgentTypeModel include/KPim6/AkonadiCore/Akonadi/Attribute include/KPim6/AkonadiCore/Akonadi/AttributeFactory include/KPim6/AkonadiCore/Akonadi/CachePolicy include/KPim6/AkonadiCore/Akonadi/ChangeNotification include/KPim6/AkonadiCore/Akonadi/ChangeRecorder include/KPim6/AkonadiCore/Akonadi/Collection include/KPim6/AkonadiCore/Akonadi/CollectionAnnotationsAttribute include/KPim6/AkonadiCore/Akonadi/CollectionAttributesSynchronizationJob include/KPim6/AkonadiCore/Akonadi/CollectionColorAttribute include/KPim6/AkonadiCore/Akonadi/CollectionCopyJob include/KPim6/AkonadiCore/Akonadi/CollectionCreateJob include/KPim6/AkonadiCore/Akonadi/CollectionDeleteJob include/KPim6/AkonadiCore/Akonadi/CollectionFetchJob include/KPim6/AkonadiCore/Akonadi/CollectionFetchScope include/KPim6/AkonadiCore/Akonadi/CollectionFilterProxyModel include/KPim6/AkonadiCore/Akonadi/CollectionIdentificationAttribute include/KPim6/AkonadiCore/Akonadi/CollectionModifyJob include/KPim6/AkonadiCore/Akonadi/CollectionMoveJob include/KPim6/AkonadiCore/Akonadi/CollectionPathResolver include/KPim6/AkonadiCore/Akonadi/CollectionQuotaAttribute include/KPim6/AkonadiCore/Akonadi/CollectionStatistics include/KPim6/AkonadiCore/Akonadi/CollectionStatisticsJob include/KPim6/AkonadiCore/Akonadi/CollectionUtils +include/KPim6/AkonadiCore/Akonadi/ColorProxyModel include/KPim6/AkonadiCore/Akonadi/Control include/KPim6/AkonadiCore/Akonadi/DifferencesAlgorithmInterface include/KPim6/AkonadiCore/Akonadi/EntityAnnotationsAttribute include/KPim6/AkonadiCore/Akonadi/EntityDeletedAttribute include/KPim6/AkonadiCore/Akonadi/EntityDisplayAttribute include/KPim6/AkonadiCore/Akonadi/EntityHiddenAttribute include/KPim6/AkonadiCore/Akonadi/EntityMimeTypeFilterModel include/KPim6/AkonadiCore/Akonadi/EntityOrderProxyModel include/KPim6/AkonadiCore/Akonadi/EntityRightsFilterModel include/KPim6/AkonadiCore/Akonadi/EntityTreeModel include/KPim6/AkonadiCore/Akonadi/ExceptionBase include/KPim6/AkonadiCore/Akonadi/FavoriteCollectionAttribute include/KPim6/AkonadiCore/Akonadi/FavoriteCollectionsModel include/KPim6/AkonadiCore/Akonadi/GidExtractorInterface include/KPim6/AkonadiCore/Akonadi/IndexPolicyAttribute include/KPim6/AkonadiCore/Akonadi/Item include/KPim6/AkonadiCore/Akonadi/ItemCopyJob include/KPim6/AkonadiCore/Akonadi/ItemCreateJob include/KPim6/AkonadiCore/Akonadi/ItemDeleteJob include/KPim6/AkonadiCore/Akonadi/ItemFetchJob include/KPim6/AkonadiCore/Akonadi/ItemFetchScope include/KPim6/AkonadiCore/Akonadi/ItemModifyJob include/KPim6/AkonadiCore/Akonadi/ItemMonitor include/KPim6/AkonadiCore/Akonadi/ItemMoveJob include/KPim6/AkonadiCore/Akonadi/ItemSearchJob include/KPim6/AkonadiCore/Akonadi/ItemSerializerPlugin include/KPim6/AkonadiCore/Akonadi/ItemSync include/KPim6/AkonadiCore/Akonadi/Job include/KPim6/AkonadiCore/Akonadi/LinkJob include/KPim6/AkonadiCore/Akonadi/MimeTypeChecker include/KPim6/AkonadiCore/Akonadi/Monitor include/KPim6/AkonadiCore/Akonadi/NotificationSubscriber include/KPim6/AkonadiCore/Akonadi/PartFetcher include/KPim6/AkonadiCore/Akonadi/PersistentSearchAttribute include/KPim6/AkonadiCore/Akonadi/RecursiveCollectionFilterProxyModel include/KPim6/AkonadiCore/Akonadi/RecursiveItemFetchJob include/KPim6/AkonadiCore/Akonadi/ResourceSynchronizationJob include/KPim6/AkonadiCore/Akonadi/SearchCreateJob include/KPim6/AkonadiCore/Akonadi/SearchQuery include/KPim6/AkonadiCore/Akonadi/SelectionProxyModel include/KPim6/AkonadiCore/Akonadi/ServerManager include/KPim6/AkonadiCore/Akonadi/Session include/KPim6/AkonadiCore/Akonadi/SpecialCollectionAttribute include/KPim6/AkonadiCore/Akonadi/SpecialCollections include/KPim6/AkonadiCore/Akonadi/SpecialCollectionsDiscoveryJob include/KPim6/AkonadiCore/Akonadi/SpecialCollectionsRequestJob include/KPim6/AkonadiCore/Akonadi/StatisticsProxyModel include/KPim6/AkonadiCore/Akonadi/Supertrait include/KPim6/AkonadiCore/Akonadi/Tag include/KPim6/AkonadiCore/Akonadi/TagAttribute include/KPim6/AkonadiCore/Akonadi/TagCache include/KPim6/AkonadiCore/Akonadi/TagCreateJob include/KPim6/AkonadiCore/Akonadi/TagDeleteJob include/KPim6/AkonadiCore/Akonadi/TagFetchJob include/KPim6/AkonadiCore/Akonadi/TagFetchScope include/KPim6/AkonadiCore/Akonadi/TagModel include/KPim6/AkonadiCore/Akonadi/TagModifyJob include/KPim6/AkonadiCore/Akonadi/TransactionJobs include/KPim6/AkonadiCore/Akonadi/TransactionSequence include/KPim6/AkonadiCore/Akonadi/TrashFilterProxyModel include/KPim6/AkonadiCore/Akonadi/TrashJob include/KPim6/AkonadiCore/Akonadi/TrashRestoreJob include/KPim6/AkonadiCore/Akonadi/TrashSettings include/KPim6/AkonadiCore/Akonadi/UnlinkJob include/KPim6/AkonadiCore/Akonadi/VectorHelper include/KPim6/AkonadiCore/akonadi/abstractdifferencesreporter.h include/KPim6/AkonadiCore/akonadi/abstractsearchplugin.h include/KPim6/AkonadiCore/akonadi/accountactivitiesabstract.h include/KPim6/AkonadiCore/akonadi/agentconfigurationbase.h include/KPim6/AkonadiCore/akonadi/agentconfigurationfactorybase.h include/KPim6/AkonadiCore/akonadi/agentfilterproxymodel.h include/KPim6/AkonadiCore/akonadi/agentinstance.h include/KPim6/AkonadiCore/akonadi/agentinstancecreatejob.h include/KPim6/AkonadiCore/akonadi/agentinstancefilterproxymodel.h include/KPim6/AkonadiCore/akonadi/agentinstancemodel.h include/KPim6/AkonadiCore/akonadi/agentmanager.h include/KPim6/AkonadiCore/akonadi/agenttype.h include/KPim6/AkonadiCore/akonadi/agenttypemodel.h include/KPim6/AkonadiCore/akonadi/akonadicore_export.h include/KPim6/AkonadiCore/akonadi/attribute.h include/KPim6/AkonadiCore/akonadi/attributefactory.h include/KPim6/AkonadiCore/akonadi/cachepolicy.h include/KPim6/AkonadiCore/akonadi/changenotification.h include/KPim6/AkonadiCore/akonadi/changerecorder.h include/KPim6/AkonadiCore/akonadi/collection.h include/KPim6/AkonadiCore/akonadi/collectionannotationsattribute.h include/KPim6/AkonadiCore/akonadi/collectionattributessynchronizationjob.h include/KPim6/AkonadiCore/akonadi/collectioncolorattribute.h include/KPim6/AkonadiCore/akonadi/collectioncopyjob.h include/KPim6/AkonadiCore/akonadi/collectioncreatejob.h include/KPim6/AkonadiCore/akonadi/collectiondeletejob.h include/KPim6/AkonadiCore/akonadi/collectionfetchjob.h include/KPim6/AkonadiCore/akonadi/collectionfetchscope.h include/KPim6/AkonadiCore/akonadi/collectionfilterproxymodel.h include/KPim6/AkonadiCore/akonadi/collectionidentificationattribute.h include/KPim6/AkonadiCore/akonadi/collectionmodifyjob.h include/KPim6/AkonadiCore/akonadi/collectionmovejob.h include/KPim6/AkonadiCore/akonadi/collectionpathresolver.h include/KPim6/AkonadiCore/akonadi/collectionquotaattribute.h include/KPim6/AkonadiCore/akonadi/collectionstatistics.h include/KPim6/AkonadiCore/akonadi/collectionstatisticsjob.h include/KPim6/AkonadiCore/akonadi/collectionutils.h +include/KPim6/AkonadiCore/akonadi/colorproxymodel.h include/KPim6/AkonadiCore/akonadi/config-akonadi.h include/KPim6/AkonadiCore/akonadi/control.h include/KPim6/AkonadiCore/akonadi/differencesalgorithminterface.h include/KPim6/AkonadiCore/akonadi/entityannotationsattribute.h include/KPim6/AkonadiCore/akonadi/entitydeletedattribute.h include/KPim6/AkonadiCore/akonadi/entitydisplayattribute.h include/KPim6/AkonadiCore/akonadi/entityhiddenattribute.h include/KPim6/AkonadiCore/akonadi/entitymimetypefiltermodel.h include/KPim6/AkonadiCore/akonadi/entityorderproxymodel.h include/KPim6/AkonadiCore/akonadi/entityrightsfiltermodel.h include/KPim6/AkonadiCore/akonadi/entitytreemodel.h include/KPim6/AkonadiCore/akonadi/exceptionbase.h include/KPim6/AkonadiCore/akonadi/favoritecollectionattribute.h include/KPim6/AkonadiCore/akonadi/favoritecollectionsmodel.h include/KPim6/AkonadiCore/akonadi/gidextractorinterface.h include/KPim6/AkonadiCore/akonadi/indexpolicyattribute.h include/KPim6/AkonadiCore/akonadi/item.h include/KPim6/AkonadiCore/akonadi/itemcopyjob.h include/KPim6/AkonadiCore/akonadi/itemcreatejob.h include/KPim6/AkonadiCore/akonadi/itemdeletejob.h include/KPim6/AkonadiCore/akonadi/itemfetchjob.h include/KPim6/AkonadiCore/akonadi/itemfetchscope.h include/KPim6/AkonadiCore/akonadi/itemmodifyjob.h include/KPim6/AkonadiCore/akonadi/itemmonitor.h include/KPim6/AkonadiCore/akonadi/itemmovejob.h include/KPim6/AkonadiCore/akonadi/itempayloadinternals_p.h include/KPim6/AkonadiCore/akonadi/itemsearchjob.h include/KPim6/AkonadiCore/akonadi/itemserializerplugin.h include/KPim6/AkonadiCore/akonadi/itemsync.h include/KPim6/AkonadiCore/akonadi/job.h include/KPim6/AkonadiCore/akonadi/linkjob.h include/KPim6/AkonadiCore/akonadi/mimetypechecker.h include/KPim6/AkonadiCore/akonadi/monitor.h include/KPim6/AkonadiCore/akonadi/notificationsubscriber.h include/KPim6/AkonadiCore/akonadi/partfetcher.h include/KPim6/AkonadiCore/akonadi/persistentsearchattribute.h include/KPim6/AkonadiCore/akonadi/qtest_akonadi.h include/KPim6/AkonadiCore/akonadi/recursivecollectionfilterproxymodel.h include/KPim6/AkonadiCore/akonadi/recursiveitemfetchjob.h include/KPim6/AkonadiCore/akonadi/resourcesynchronizationjob.h include/KPim6/AkonadiCore/akonadi/searchcreatejob.h include/KPim6/AkonadiCore/akonadi/searchquery.h include/KPim6/AkonadiCore/akonadi/selectionproxymodel.h include/KPim6/AkonadiCore/akonadi/servermanager.h include/KPim6/AkonadiCore/akonadi/session.h include/KPim6/AkonadiCore/akonadi/specialcollectionattribute.h include/KPim6/AkonadiCore/akonadi/specialcollections.h include/KPim6/AkonadiCore/akonadi/specialcollectionsdiscoveryjob.h include/KPim6/AkonadiCore/akonadi/specialcollectionsrequestjob.h include/KPim6/AkonadiCore/akonadi/statisticsproxymodel.h include/KPim6/AkonadiCore/akonadi/supertrait.h include/KPim6/AkonadiCore/akonadi/tag.h include/KPim6/AkonadiCore/akonadi/tagattribute.h include/KPim6/AkonadiCore/akonadi/tagcache.h include/KPim6/AkonadiCore/akonadi/tagcreatejob.h include/KPim6/AkonadiCore/akonadi/tagdeletejob.h include/KPim6/AkonadiCore/akonadi/tagfetchjob.h include/KPim6/AkonadiCore/akonadi/tagfetchscope.h include/KPim6/AkonadiCore/akonadi/tagmodel.h include/KPim6/AkonadiCore/akonadi/tagmodifyjob.h include/KPim6/AkonadiCore/akonadi/transactionjobs.h include/KPim6/AkonadiCore/akonadi/transactionsequence.h include/KPim6/AkonadiCore/akonadi/trashfilterproxymodel.h include/KPim6/AkonadiCore/akonadi/trashjob.h include/KPim6/AkonadiCore/akonadi/trashrestorejob.h include/KPim6/AkonadiCore/akonadi/trashsettings.h include/KPim6/AkonadiCore/akonadi/unlinkjob.h include/KPim6/AkonadiCore/akonadi/vectorhelper.h include/KPim6/AkonadiCore/akonadi_version.h include/KPim6/AkonadiWidgets/Akonadi/AgentActionManager include/KPim6/AkonadiWidgets/Akonadi/AgentConfigurationDialog include/KPim6/AkonadiWidgets/Akonadi/AgentConfigurationWidget include/KPim6/AkonadiWidgets/Akonadi/AgentInstanceWidget include/KPim6/AkonadiWidgets/Akonadi/AgentTypeDialog include/KPim6/AkonadiWidgets/Akonadi/AgentTypeWidget include/KPim6/AkonadiWidgets/Akonadi/ClearCacheFoldersJob include/KPim6/AkonadiWidgets/Akonadi/CollectionComboBox include/KPim6/AkonadiWidgets/Akonadi/CollectionDialog include/KPim6/AkonadiWidgets/Akonadi/CollectionMaintenancePage include/KPim6/AkonadiWidgets/Akonadi/CollectionPropertiesDialog include/KPim6/AkonadiWidgets/Akonadi/CollectionPropertiesPage include/KPim6/AkonadiWidgets/Akonadi/CollectionRequester include/KPim6/AkonadiWidgets/Akonadi/CollectionStatisticsDelegate include/KPim6/AkonadiWidgets/Akonadi/ControlGui include/KPim6/AkonadiWidgets/Akonadi/DbAccess include/KPim6/AkonadiWidgets/Akonadi/ETMViewStateSaver include/KPim6/AkonadiWidgets/Akonadi/EntityListView include/KPim6/AkonadiWidgets/Akonadi/EntityTreeView include/KPim6/AkonadiWidgets/Akonadi/ManageAccountWidget include/KPim6/AkonadiWidgets/Akonadi/StandardActionManager include/KPim6/AkonadiWidgets/Akonadi/SubscriptionDialog include/KPim6/AkonadiWidgets/Akonadi/TagEditWidget include/KPim6/AkonadiWidgets/Akonadi/TagManagementDialog include/KPim6/AkonadiWidgets/Akonadi/TagSelectWidget include/KPim6/AkonadiWidgets/Akonadi/TagSelectionComboBox include/KPim6/AkonadiWidgets/Akonadi/TagSelectionDialog include/KPim6/AkonadiWidgets/Akonadi/TagWidget include/KPim6/AkonadiWidgets/akonadi/agentactionmanager.h include/KPim6/AkonadiWidgets/akonadi/agentconfigurationdialog.h include/KPim6/AkonadiWidgets/akonadi/agentconfigurationwidget.h include/KPim6/AkonadiWidgets/akonadi/agentinstancewidget.h include/KPim6/AkonadiWidgets/akonadi/agenttypedialog.h include/KPim6/AkonadiWidgets/akonadi/agenttypewidget.h include/KPim6/AkonadiWidgets/akonadi/akonadiwidgets_export.h include/KPim6/AkonadiWidgets/akonadi/clearcachefoldersjob.h include/KPim6/AkonadiWidgets/akonadi/collectioncombobox.h include/KPim6/AkonadiWidgets/akonadi/collectiondialog.h include/KPim6/AkonadiWidgets/akonadi/collectionmaintenancepage.h include/KPim6/AkonadiWidgets/akonadi/collectionpropertiesdialog.h include/KPim6/AkonadiWidgets/akonadi/collectionpropertiespage.h include/KPim6/AkonadiWidgets/akonadi/collectionrequester.h include/KPim6/AkonadiWidgets/akonadi/collectionstatisticsdelegate.h include/KPim6/AkonadiWidgets/akonadi/controlgui.h include/KPim6/AkonadiWidgets/akonadi/dbaccess.h include/KPim6/AkonadiWidgets/akonadi/entitylistview.h include/KPim6/AkonadiWidgets/akonadi/entitytreeview.h include/KPim6/AkonadiWidgets/akonadi/etmviewstatesaver.h include/KPim6/AkonadiWidgets/akonadi/manageaccountwidget.h include/KPim6/AkonadiWidgets/akonadi/standardactionmanager.h include/KPim6/AkonadiWidgets/akonadi/subscriptiondialog.h include/KPim6/AkonadiWidgets/akonadi/tageditwidget.h include/KPim6/AkonadiWidgets/akonadi/tagmanagementdialog.h include/KPim6/AkonadiWidgets/akonadi/tagselectioncombobox.h include/KPim6/AkonadiWidgets/akonadi/tagselectiondialog.h include/KPim6/AkonadiWidgets/akonadi/tagselectwidget.h include/KPim6/AkonadiWidgets/akonadi/tagwidget.h include/KPim6/AkonadiXml/Akonadi/XmlDocument include/KPim6/AkonadiXml/Akonadi/XmlReader include/KPim6/AkonadiXml/Akonadi/XmlWriteJob include/KPim6/AkonadiXml/Akonadi/XmlWriter include/KPim6/AkonadiXml/akonadi/akonadi-xml_export.h include/KPim6/AkonadiXml/akonadi/xmldocument.h include/KPim6/AkonadiXml/akonadi/xmlreader.h include/KPim6/AkonadiXml/akonadi/xmlwritejob.h include/KPim6/AkonadiXml/akonadi/xmlwriter.h lib/cmake/KPim6Akonadi/KPim6AkonadiConfig.cmake lib/cmake/KPim6Akonadi/KPim6AkonadiConfigVersion.cmake lib/cmake/KPim6Akonadi/KPim6AkonadiTargets-%%CMAKE_BUILD_TYPE%%.cmake lib/cmake/KPim6Akonadi/KPim6AkonadiTargets.cmake lib/cmake/KPim6Akonadi/KPimAkonadiMacros.cmake lib/libKPim6AkonadiAgentBase.so lib/libKPim6AkonadiAgentBase.so.6 lib/libKPim6AkonadiAgentBase.so.%%KDE_APPLICATIONS_SHLIB_VER%% lib/libKPim6AkonadiAgentWidgetBase.so lib/libKPim6AkonadiAgentWidgetBase.so.6 lib/libKPim6AkonadiAgentWidgetBase.so.%%KDE_APPLICATIONS_SHLIB_VER%% lib/libKPim6AkonadiCore.so lib/libKPim6AkonadiCore.so.6 lib/libKPim6AkonadiCore.so.%%KDE_APPLICATIONS_SHLIB_VER%% lib/libKPim6AkonadiPrivate.so lib/libKPim6AkonadiPrivate.so.6 lib/libKPim6AkonadiPrivate.so.%%KDE_APPLICATIONS_SHLIB_VER%% lib/libKPim6AkonadiWidgets.so lib/libKPim6AkonadiWidgets.so.6 lib/libKPim6AkonadiWidgets.so.%%KDE_APPLICATIONS_SHLIB_VER%% lib/libKPim6AkonadiXml.so lib/libKPim6AkonadiXml.so.6 lib/libKPim6AkonadiXml.so.%%KDE_APPLICATIONS_SHLIB_VER%% %%QT_PLUGINDIR%%/designer/akonadi6widgets.so %%QT_PLUGINDIR%%/pim6/akonadi/akonadi_test_searchplugin.so %%QT_PLUGINDIR%%/pim6/akonadi/config/knutconfig.so %%QT_QMLDIR%%/org/kde/akonadi/AgentConfigurationForm.qml %%QT_QMLDIR%%/org/kde/akonadi/CollectionChooserPage.qml %%QT_QMLDIR%%/org/kde/akonadi/CollectionComboBox.qml %%QT_QMLDIR%%/org/kde/akonadi/FormCollectionComboBox.qml %%QT_QMLDIR%%/org/kde/akonadi/TagManagerPage.qml %%QT_QMLDIR%%/org/kde/akonadi/akonadi_quick_plugin.qmltypes %%QT_QMLDIR%%/org/kde/akonadi/kde-qmlmodule.version %%QT_QMLDIR%%/org/kde/akonadi/libakonadi_quick_plugin.so %%QT_QMLDIR%%/org/kde/akonadi/qmldir +lib/systemd/user/akonadi_control.service %%DATADIR%%/agents/knutresource.desktop share/applications/org.kde.akonadi.configdialog.desktop share/config.kcfg/resourcebase.kcfg +share/dbus-1/interfaces/org.freedesktop.Akonadi.Agent.Account.xml 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/kf6/akonadi/akonadi-xml.xsd share/kf6/akonadi/kcfg2dbus.xsl share/kf6/akonadi_knut_resource/knut-template.xml share/locale/ar/LC_MESSAGES/akonadi-db-migrator.mo share/locale/ar/LC_MESSAGES/akonadi_knut_resource.mo share/locale/ar/LC_MESSAGES/libakonadi6.mo share/locale/ast/LC_MESSAGES/akonadi-db-migrator.mo share/locale/ast/LC_MESSAGES/akonadi_knut_resource.mo share/locale/ast/LC_MESSAGES/libakonadi6.mo share/locale/az/LC_MESSAGES/akonadi_knut_resource.mo share/locale/az/LC_MESSAGES/libakonadi6.mo share/locale/be/LC_MESSAGES/libakonadi6.mo share/locale/bg/LC_MESSAGES/akonadi-db-migrator.mo share/locale/bg/LC_MESSAGES/akonadi_knut_resource.mo share/locale/bg/LC_MESSAGES/libakonadi6.mo share/locale/bs/LC_MESSAGES/akonadi_knut_resource.mo share/locale/bs/LC_MESSAGES/libakonadi6.mo share/locale/ca/LC_MESSAGES/akonadi-db-migrator.mo share/locale/ca/LC_MESSAGES/akonadi_knut_resource.mo share/locale/ca/LC_MESSAGES/libakonadi6.mo share/locale/ca@valencia/LC_MESSAGES/akonadi-db-migrator.mo share/locale/ca@valencia/LC_MESSAGES/akonadi_knut_resource.mo share/locale/ca@valencia/LC_MESSAGES/libakonadi6.mo share/locale/cs/LC_MESSAGES/akonadi-db-migrator.mo share/locale/cs/LC_MESSAGES/akonadi_knut_resource.mo share/locale/cs/LC_MESSAGES/libakonadi6.mo share/locale/da/LC_MESSAGES/akonadi_knut_resource.mo share/locale/da/LC_MESSAGES/libakonadi6.mo share/locale/de/LC_MESSAGES/akonadi-db-migrator.mo share/locale/de/LC_MESSAGES/akonadi_knut_resource.mo share/locale/de/LC_MESSAGES/libakonadi6.mo share/locale/el/LC_MESSAGES/akonadi-db-migrator.mo share/locale/el/LC_MESSAGES/akonadi_knut_resource.mo share/locale/el/LC_MESSAGES/libakonadi6.mo share/locale/en_GB/LC_MESSAGES/akonadi-db-migrator.mo share/locale/en_GB/LC_MESSAGES/akonadi_knut_resource.mo share/locale/en_GB/LC_MESSAGES/libakonadi6.mo share/locale/eo/LC_MESSAGES/akonadi-db-migrator.mo share/locale/eo/LC_MESSAGES/akonadi_knut_resource.mo share/locale/eo/LC_MESSAGES/libakonadi6.mo share/locale/es/LC_MESSAGES/akonadi-db-migrator.mo share/locale/es/LC_MESSAGES/akonadi_knut_resource.mo share/locale/es/LC_MESSAGES/libakonadi6.mo share/locale/et/LC_MESSAGES/akonadi_knut_resource.mo share/locale/et/LC_MESSAGES/libakonadi6.mo share/locale/eu/LC_MESSAGES/akonadi-db-migrator.mo share/locale/eu/LC_MESSAGES/akonadi_knut_resource.mo share/locale/eu/LC_MESSAGES/libakonadi6.mo share/locale/fi/LC_MESSAGES/akonadi-db-migrator.mo share/locale/fi/LC_MESSAGES/akonadi_knut_resource.mo share/locale/fi/LC_MESSAGES/libakonadi6.mo share/locale/fr/LC_MESSAGES/akonadi-db-migrator.mo share/locale/fr/LC_MESSAGES/akonadi_knut_resource.mo share/locale/fr/LC_MESSAGES/libakonadi6.mo share/locale/ga/LC_MESSAGES/akonadi-db-migrator.mo share/locale/ga/LC_MESSAGES/akonadi_knut_resource.mo share/locale/ga/LC_MESSAGES/libakonadi6.mo share/locale/gl/LC_MESSAGES/akonadi-db-migrator.mo share/locale/gl/LC_MESSAGES/akonadi_knut_resource.mo share/locale/gl/LC_MESSAGES/libakonadi6.mo share/locale/he/LC_MESSAGES/akonadi-db-migrator.mo share/locale/he/LC_MESSAGES/akonadi_knut_resource.mo share/locale/he/LC_MESSAGES/libakonadi6.mo share/locale/hi/LC_MESSAGES/akonadi-db-migrator.mo share/locale/hi/LC_MESSAGES/akonadi_knut_resource.mo share/locale/hi/LC_MESSAGES/libakonadi6.mo share/locale/hsb/LC_MESSAGES/libakonadi6.mo share/locale/hu/LC_MESSAGES/akonadi-db-migrator.mo share/locale/hu/LC_MESSAGES/akonadi_knut_resource.mo share/locale/hu/LC_MESSAGES/libakonadi6.mo share/locale/ia/LC_MESSAGES/akonadi-db-migrator.mo share/locale/ia/LC_MESSAGES/akonadi_knut_resource.mo share/locale/ia/LC_MESSAGES/libakonadi6.mo share/locale/id/LC_MESSAGES/akonadi-db-migrator.mo share/locale/id/LC_MESSAGES/akonadi_knut_resource.mo share/locale/id/LC_MESSAGES/libakonadi6.mo share/locale/is/LC_MESSAGES/akonadi_knut_resource.mo share/locale/it/LC_MESSAGES/akonadi-db-migrator.mo share/locale/it/LC_MESSAGES/akonadi_knut_resource.mo share/locale/it/LC_MESSAGES/libakonadi6.mo share/locale/ja/LC_MESSAGES/akonadi-db-migrator.mo share/locale/ja/LC_MESSAGES/akonadi_knut_resource.mo share/locale/ja/LC_MESSAGES/libakonadi6.mo share/locale/ka/LC_MESSAGES/akonadi-db-migrator.mo share/locale/ka/LC_MESSAGES/akonadi_knut_resource.mo share/locale/ka/LC_MESSAGES/libakonadi6.mo share/locale/kk/LC_MESSAGES/akonadi_knut_resource.mo share/locale/kk/LC_MESSAGES/libakonadi6.mo share/locale/km/LC_MESSAGES/akonadi_knut_resource.mo share/locale/km/LC_MESSAGES/libakonadi6.mo share/locale/ko/LC_MESSAGES/akonadi-db-migrator.mo share/locale/ko/LC_MESSAGES/akonadi_knut_resource.mo share/locale/ko/LC_MESSAGES/libakonadi6.mo share/locale/lt/LC_MESSAGES/akonadi-db-migrator.mo share/locale/lt/LC_MESSAGES/akonadi_knut_resource.mo share/locale/lt/LC_MESSAGES/libakonadi6.mo share/locale/lv/LC_MESSAGES/akonadi-db-migrator.mo share/locale/lv/LC_MESSAGES/akonadi_knut_resource.mo share/locale/lv/LC_MESSAGES/libakonadi6.mo share/locale/mai/LC_MESSAGES/libakonadi6.mo share/locale/mr/LC_MESSAGES/akonadi_knut_resource.mo share/locale/mr/LC_MESSAGES/libakonadi6.mo share/locale/my/LC_MESSAGES/akonadi_knut_resource.mo share/locale/my/LC_MESSAGES/libakonadi6.mo share/locale/nb/LC_MESSAGES/akonadi_knut_resource.mo share/locale/nb/LC_MESSAGES/libakonadi6.mo share/locale/nds/LC_MESSAGES/akonadi_knut_resource.mo share/locale/nds/LC_MESSAGES/libakonadi6.mo share/locale/nl/LC_MESSAGES/akonadi-db-migrator.mo share/locale/nl/LC_MESSAGES/akonadi_knut_resource.mo share/locale/nl/LC_MESSAGES/libakonadi6.mo share/locale/nn/LC_MESSAGES/akonadi_knut_resource.mo share/locale/nn/LC_MESSAGES/libakonadi6.mo share/locale/pa/LC_MESSAGES/akonadi-db-migrator.mo share/locale/pa/LC_MESSAGES/akonadi_knut_resource.mo share/locale/pa/LC_MESSAGES/libakonadi6.mo share/locale/pl/LC_MESSAGES/akonadi-db-migrator.mo share/locale/pl/LC_MESSAGES/akonadi_knut_resource.mo share/locale/pl/LC_MESSAGES/libakonadi6.mo share/locale/pt/LC_MESSAGES/akonadi_knut_resource.mo share/locale/pt/LC_MESSAGES/libakonadi6.mo share/locale/pt_BR/LC_MESSAGES/akonadi-db-migrator.mo share/locale/pt_BR/LC_MESSAGES/akonadi_knut_resource.mo share/locale/pt_BR/LC_MESSAGES/libakonadi6.mo share/locale/ro/LC_MESSAGES/akonadi_knut_resource.mo share/locale/ro/LC_MESSAGES/libakonadi6.mo share/locale/ru/LC_MESSAGES/akonadi-db-migrator.mo share/locale/ru/LC_MESSAGES/akonadi_knut_resource.mo share/locale/ru/LC_MESSAGES/libakonadi6.mo share/locale/sa/LC_MESSAGES/akonadi-db-migrator.mo share/locale/sa/LC_MESSAGES/akonadi_knut_resource.mo share/locale/sa/LC_MESSAGES/libakonadi6.mo share/locale/se/LC_MESSAGES/libakonadi6.mo share/locale/sk/LC_MESSAGES/akonadi-db-migrator.mo share/locale/sk/LC_MESSAGES/akonadi_knut_resource.mo share/locale/sk/LC_MESSAGES/libakonadi6.mo share/locale/sl/LC_MESSAGES/akonadi-db-migrator.mo share/locale/sl/LC_MESSAGES/akonadi_knut_resource.mo share/locale/sl/LC_MESSAGES/libakonadi6.mo +share/locale/sq/LC_MESSAGES/akonadi-db-migrator.mo share/locale/sq/LC_MESSAGES/akonadi_knut_resource.mo +share/locale/sq/LC_MESSAGES/libakonadi6.mo share/locale/sr/LC_MESSAGES/akonadi_knut_resource.mo share/locale/sr/LC_MESSAGES/libakonadi6.mo share/locale/sr@ijekavian/LC_MESSAGES/akonadi_knut_resource.mo share/locale/sr@ijekavian/LC_MESSAGES/libakonadi6.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/akonadi_knut_resource.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/libakonadi6.mo share/locale/sr@latin/LC_MESSAGES/akonadi_knut_resource.mo share/locale/sr@latin/LC_MESSAGES/libakonadi6.mo share/locale/sv/LC_MESSAGES/akonadi-db-migrator.mo share/locale/sv/LC_MESSAGES/akonadi_knut_resource.mo share/locale/sv/LC_MESSAGES/libakonadi6.mo share/locale/ta/LC_MESSAGES/akonadi-db-migrator.mo share/locale/ta/LC_MESSAGES/akonadi_knut_resource.mo share/locale/ta/LC_MESSAGES/libakonadi6.mo share/locale/tg/LC_MESSAGES/akonadi_knut_resource.mo share/locale/tg/LC_MESSAGES/libakonadi6.mo share/locale/th/LC_MESSAGES/libakonadi6.mo share/locale/tr/LC_MESSAGES/akonadi-db-migrator.mo share/locale/tr/LC_MESSAGES/akonadi_knut_resource.mo share/locale/tr/LC_MESSAGES/libakonadi6.mo share/locale/ug/LC_MESSAGES/akonadi_knut_resource.mo share/locale/ug/LC_MESSAGES/libakonadi6.mo share/locale/uk/LC_MESSAGES/akonadi-db-migrator.mo share/locale/uk/LC_MESSAGES/akonadi_knut_resource.mo share/locale/uk/LC_MESSAGES/libakonadi6.mo share/locale/zh_CN/LC_MESSAGES/akonadi-db-migrator.mo share/locale/zh_CN/LC_MESSAGES/akonadi_knut_resource.mo share/locale/zh_CN/LC_MESSAGES/libakonadi6.mo share/locale/zh_TW/LC_MESSAGES/akonadi-db-migrator.mo share/locale/zh_TW/LC_MESSAGES/akonadi_knut_resource.mo share/locale/zh_TW/LC_MESSAGES/libakonadi6.mo share/mime/packages/akonadi-mime.xml share/qlogging-categories6/akonadi.categories share/qlogging-categories6/akonadi.renamecategories diff --git a/deskutils/akonadi-calendar-tools/distinfo b/deskutils/akonadi-calendar-tools/distinfo index 234869d6a442..62df6de931a0 100644 --- a/deskutils/akonadi-calendar-tools/distinfo +++ b/deskutils/akonadi-calendar-tools/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1772541781 -SHA256 (KDE/release-service/25.12.3/akonadi-calendar-tools-25.12.3.tar.xz) = 3415a89bfc387e2de4a30f6e80f106d8c4a6a91013e5759b5167e0d11142af50 -SIZE (KDE/release-service/25.12.3/akonadi-calendar-tools-25.12.3.tar.xz) = 274508 +TIMESTAMP = 1776248103 +SHA256 (KDE/release-service/26.04.0/akonadi-calendar-tools-26.04.0.tar.xz) = c8e0bd48ca7f2f1d30bd5ee10e850a4648fc733a7de45d4a9242fb852475ad30 +SIZE (KDE/release-service/26.04.0/akonadi-calendar-tools-26.04.0.tar.xz) = 269832 diff --git a/deskutils/akonadi-import-wizard/distinfo b/deskutils/akonadi-import-wizard/distinfo index 247a7342cac7..378aa39f5db7 100644 --- a/deskutils/akonadi-import-wizard/distinfo +++ b/deskutils/akonadi-import-wizard/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1772541782 -SHA256 (KDE/release-service/25.12.3/akonadi-import-wizard-25.12.3.tar.xz) = 21d12c6b38b04ea19320afe97907986a9a432a9cf6cff33afe015dc1aa6404b6 -SIZE (KDE/release-service/25.12.3/akonadi-import-wizard-25.12.3.tar.xz) = 499924 +TIMESTAMP = 1776248104 +SHA256 (KDE/release-service/26.04.0/akonadi-import-wizard-26.04.0.tar.xz) = f5fd55afb52a9fab9db659a13c03efea236e36e8ae33dc5a0643e92689ee8cdc +SIZE (KDE/release-service/26.04.0/akonadi-import-wizard-26.04.0.tar.xz) = 500936 diff --git a/deskutils/akonadiconsole/distinfo b/deskutils/akonadiconsole/distinfo index 946b6b6dd691..ef6c40cf323f 100644 --- a/deskutils/akonadiconsole/distinfo +++ b/deskutils/akonadiconsole/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1772541784 -SHA256 (KDE/release-service/25.12.3/akonadiconsole-25.12.3.tar.xz) = 1effdb62375b66435de8b75cfe1429eeda5facc546d9b192e8a8affeea216bba -SIZE (KDE/release-service/25.12.3/akonadiconsole-25.12.3.tar.xz) = 333644 +TIMESTAMP = 1776248106 +SHA256 (KDE/release-service/26.04.0/akonadiconsole-26.04.0.tar.xz) = 8c5f6cd2d46bafbb0bffef1fe0e91eb80edb76764ab96231e7795715ac397a5f +SIZE (KDE/release-service/26.04.0/akonadiconsole-26.04.0.tar.xz) = 334944 diff --git a/deskutils/akregator/distinfo b/deskutils/akregator/distinfo index 96a2df134f68..bc3e8c9a019c 100644 --- a/deskutils/akregator/distinfo +++ b/deskutils/akregator/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1772541786 -SHA256 (KDE/release-service/25.12.3/akregator-25.12.3.tar.xz) = b15411e8a67c8934ceb30c1b00399424d4a4273698f8560aef4e761921c139e3 -SIZE (KDE/release-service/25.12.3/akregator-25.12.3.tar.xz) = 2145384 +TIMESTAMP = 1776248108 +SHA256 (KDE/release-service/26.04.0/akregator-26.04.0.tar.xz) = 567b9ea0c665b924ebe8fe6a62eb3a2de75ccb2db84044d10c3ae4f7cf2c9a52 +SIZE (KDE/release-service/26.04.0/akregator-26.04.0.tar.xz) = 2146928 diff --git a/deskutils/grantlee-editor/distinfo b/deskutils/grantlee-editor/distinfo index 741e27edf368..55245f5331b8 100644 --- a/deskutils/grantlee-editor/distinfo +++ b/deskutils/grantlee-editor/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1772541787 -SHA256 (KDE/release-service/25.12.3/grantlee-editor-25.12.3.tar.xz) = 30558f34937773baf9d8ffe47e8c02d9b000087358fe7a6ddf892b8518c35404 -SIZE (KDE/release-service/25.12.3/grantlee-editor-25.12.3.tar.xz) = 132012 +TIMESTAMP = 1776248109 +SHA256 (KDE/release-service/26.04.0/grantlee-editor-26.04.0.tar.xz) = 09f63116719fafa26c3f5df31668d944e2e66ceadf66d3620187131f3d3a99bf +SIZE (KDE/release-service/26.04.0/grantlee-editor-26.04.0.tar.xz) = 133056 diff --git a/deskutils/grantleetheme/distinfo b/deskutils/grantleetheme/distinfo index 1c41544d961c..a53d8c2b8a1e 100644 --- a/deskutils/grantleetheme/distinfo +++ b/deskutils/grantleetheme/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1772541789 -SHA256 (KDE/release-service/25.12.3/grantleetheme-25.12.3.tar.xz) = ff0bf29f9727710bf90cb28871406e9c7a59006c7881c04f8a8f2c63d9f64330 -SIZE (KDE/release-service/25.12.3/grantleetheme-25.12.3.tar.xz) = 66120 +TIMESTAMP = 1776248111 +SHA256 (KDE/release-service/26.04.0/grantleetheme-26.04.0.tar.xz) = e2ab2426b3bf3a208d7ae3d17f052f66fcea2a5c03b3bd34f76097eb31419b1b +SIZE (KDE/release-service/26.04.0/grantleetheme-26.04.0.tar.xz) = 69788 diff --git a/deskutils/itinerary/distinfo b/deskutils/itinerary/distinfo index c1994222748f..1256fbabd032 100644 --- a/deskutils/itinerary/distinfo +++ b/deskutils/itinerary/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1772541790 -SHA256 (KDE/release-service/25.12.3/itinerary-25.12.3.tar.xz) = 4ceb62714637f02c80dfdcc7995f205f68930bc38ed5e503ef2e29a20016f5aa -SIZE (KDE/release-service/25.12.3/itinerary-25.12.3.tar.xz) = 933404 +TIMESTAMP = 1776248112 +SHA256 (KDE/release-service/26.04.0/itinerary-26.04.0.tar.xz) = f3545b99fbd155ea67a39323d60cd1d00d4fc0d30c63348bf74c5e38d0630433 +SIZE (KDE/release-service/26.04.0/itinerary-26.04.0.tar.xz) = 969704 diff --git a/deskutils/itinerary/pkg-plist b/deskutils/itinerary/pkg-plist index c89f290b4551..a117cf29b0e5 100644 --- a/deskutils/itinerary/pkg-plist +++ b/deskutils/itinerary/pkg-plist @@ -1,48 +1,45 @@ bin/itinerary -lib/libSolidExtras.so %%QT_PLUGINDIR%%/kf6/kfilemetadata/kfilemetadata_itineraryextractor.so %%QT_PLUGINDIR%%/kf6/thumbcreator/itinerarythumbnail.so -%%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/knotifications6/itinerary.notifyrc share/locale/ar/LC_MESSAGES/kde-itinerary.mo share/locale/ast/LC_MESSAGES/kde-itinerary.mo 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/eo/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/ga/LC_MESSAGES/kde-itinerary.mo share/locale/gl/LC_MESSAGES/kde-itinerary.mo share/locale/he/LC_MESSAGES/kde-itinerary.mo share/locale/hi/LC_MESSAGES/kde-itinerary.mo share/locale/hu/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/sa/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-categories6/org_kde_itinerary.categories diff --git a/deskutils/kaddressbook/distinfo b/deskutils/kaddressbook/distinfo index 55e724f2052f..ffe004f51972 100644 --- a/deskutils/kaddressbook/distinfo +++ b/deskutils/kaddressbook/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1772541792 -SHA256 (KDE/release-service/25.12.3/kaddressbook-25.12.3.tar.xz) = 5c3e77aa683eff9a96a5117768e8b1828f171dade1a035443bda37a1c5abcbd4 -SIZE (KDE/release-service/25.12.3/kaddressbook-25.12.3.tar.xz) = 3462800 +TIMESTAMP = 1776248114 +SHA256 (KDE/release-service/26.04.0/kaddressbook-26.04.0.tar.xz) = fe7535b08558835e06bb53dcde67810074d6184bc38f927ae170922f87ead607 +SIZE (KDE/release-service/26.04.0/kaddressbook-26.04.0.tar.xz) = 3459516 diff --git a/deskutils/kalarm/distinfo b/deskutils/kalarm/distinfo index fd3136d41309..c4cdbd0a672d 100644 --- a/deskutils/kalarm/distinfo +++ b/deskutils/kalarm/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1772541794 -SHA256 (KDE/release-service/25.12.3/kalarm-25.12.3.tar.xz) = 2ba214f9216f57b97899162aeb9ea7b7223edb2f7dba7ba49e8c9b0b10f72762 -SIZE (KDE/release-service/25.12.3/kalarm-25.12.3.tar.xz) = 2711496 +TIMESTAMP = 1776248116 +SHA256 (KDE/release-service/26.04.0/kalarm-26.04.0.tar.xz) = 87d46227f249c0bbb07880937a955e7a5ba76cd465992a9a0b365f46cea88559 +SIZE (KDE/release-service/26.04.0/kalarm-26.04.0.tar.xz) = 2742424 diff --git a/deskutils/kcharselect/distinfo b/deskutils/kcharselect/distinfo index cfb34e29d509..f03b34e8293f 100644 --- a/deskutils/kcharselect/distinfo +++ b/deskutils/kcharselect/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1772541795 -SHA256 (KDE/release-service/25.12.3/kcharselect-25.12.3.tar.xz) = 90df5543516dc72d83edff79f9bdca9763061d0dc3b0bd3eb7295ca912fcecde -SIZE (KDE/release-service/25.12.3/kcharselect-25.12.3.tar.xz) = 478460 +TIMESTAMP = 1776248117 +SHA256 (KDE/release-service/26.04.0/kcharselect-26.04.0.tar.xz) = e54e7a41882b0ea2cadb1ad5b694410278b9a31dd1dfcbb21261ba4b755842f3 +SIZE (KDE/release-service/26.04.0/kcharselect-26.04.0.tar.xz) = 478432 diff --git a/deskutils/kdeconnect-kde/Makefile b/deskutils/kdeconnect-kde/Makefile index d3083ca92e82..6d62f8b5d8ed 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= libdbus-1.so:devel/dbus \ + libei.so:x11/libei \ libfakekey.so:x11/libfakekey \ libwayland-client.so:graphics/wayland \ libxkbcommon.so:x11/libxkbcommon \ libKF6PulseAudioQt.so:audio/pulseaudio-qt BUILD_DEPENDS= ${LOCALBASE}/include/linux/input.h:devel/evdev-proto \ wayland-protocols>=0:graphics/wayland-protocols RUN_DEPENDS= sshpass:security/sshpass \ sshfs:filesystems/sshfs USES= cmake compiler:c++17-lang desktop-file-utils gettext-tools \ gl kde:6 localbase:ldflags pkgconfig qt:6 ssl tar:xz xorg USE_GL= gl opengl # GLX -USE_KDE= bookmarks colorscheme completion config configwidgets \ +USE_KDE= bookmarks colorscheme completion config \ coreaddons crash dbusaddons doctools guiaddons i18n iconthemes \ itemmodels itemviews jobwidgets kcmutils kio kirigami-addons \ kirigami2 notifications package people qqc2-desktop-style \ service solid statusnotifieritem widgetsaddons windowsystem \ ecm:build USE_QT= base connectivity declarative multimedia wayland 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 0435928f9ac1..3c78fee0e3f9 100644 --- a/deskutils/kdeconnect-kde/distinfo +++ b/deskutils/kdeconnect-kde/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1772541797 -SHA256 (KDE/release-service/25.12.3/kdeconnect-kde-25.12.3.tar.xz) = a242c968b7f83af21e02113ce5728b9fca98258b6e8f6e7a33d5d6c3cc9e69bb -SIZE (KDE/release-service/25.12.3/kdeconnect-kde-25.12.3.tar.xz) = 647392 +TIMESTAMP = 1776248119 +SHA256 (KDE/release-service/26.04.0/kdeconnect-kde-26.04.0.tar.xz) = 6cdf82d6c476005de5ffa85c46b6d698910ba1a74f6ecac7600cf3989256e66a +SIZE (KDE/release-service/26.04.0/kdeconnect-kde-26.04.0.tar.xz) = 689480 diff --git a/deskutils/kdeconnect-kde/pkg-plist b/deskutils/kdeconnect-kde/pkg-plist index c57789636719..f39dc44f291a 100644 --- a/deskutils/kdeconnect-kde/pkg-plist +++ b/deskutils/kdeconnect-kde/pkg-plist @@ -1,811 +1,813 @@ bin/kdeconnect-app bin/kdeconnect-cli bin/kdeconnect-handler bin/kdeconnect-indicator bin/kdeconnect-sms bin/kdeconnectd etc/ufw/applications.d/kdeconnect etc/xdg/autostart/org.kde.kdeconnect.daemon.desktop lib/libkdeconnectcore.so.%%KDE_APPLICATIONS_VERSION_SHORT%% lib/libkdeconnectcore.so.%%KDE_APPLICATIONS_SHLIB_VER%% -lib/libkdeconnectinterfaces.a %%QT_PLUGINDIR%%/kdeconnect/kdeconnect_battery.so %%QT_PLUGINDIR%%/kdeconnect/kdeconnect_clipboard.so %%QT_PLUGINDIR%%/kdeconnect/kdeconnect_connectivity_report.so %%QT_PLUGINDIR%%/kdeconnect/kdeconnect_contacts.so +%%QT_PLUGINDIR%%/kdeconnect/kdeconnect_digitizer.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_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%%/kf6/kfileitemaction/kdeconnectfileitemaction.so %%QT_PLUGINDIR%%/kf6/kio/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/kde-qmlmodule.version %%QT_QMLDIR%%/org/kde/kdeconnect/kdeconnectdeclarativeplugin.qmltypes %%QT_QMLDIR%%/org/kde/kdeconnect/libkdeconnectdeclarativeplugin.so %%QT_QMLDIR%%/org/kde/kdeconnect/private/findthisdevice/kde-qmlmodule.version %%QT_QMLDIR%%/org/kde/kdeconnect/private/findthisdevice/kdeconnect_findthisdevice_qmlhelper.qmltypes %%QT_QMLDIR%%/org/kde/kdeconnect/private/findthisdevice/libkdeconnect_findthisdevice_qmlhelper.so %%QT_QMLDIR%%/org/kde/kdeconnect/private/findthisdevice/qmldir %%QT_QMLDIR%%/org/kde/kdeconnect/qmldir +lib/udev/rules.d/40-kdeconnect-uinput.rules share/Thunar/sendto/kdeconnect-thunar.desktop share/applications/org.kde.kdeconnect.app.desktop share/applications/org.kde.kdeconnect.daemon.desktop share/applications/org.kde.kdeconnect.handler.desktop share/applications/org.kde.kdeconnect.nonplasma.desktop share/applications/org.kde.kdeconnect.sms.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_pausemusic_config.qml +share/kdeconnect/kdeconnect_presenter_config.qml share/kdeconnect/kdeconnect_runcommand_config.qml share/kdeconnect/kdeconnect_sendnotifications_config.qml share/kdeconnect/kdeconnect_share_config.qml share/knotifications6/kdeconnect.notifyrc 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-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-sms.mo share/locale/ar/LC_MESSAGES/kdeconnect-urlhandler.mo share/locale/ar/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo share/locale/ast/LC_MESSAGES/kdeconnect-app.mo share/locale/ast/LC_MESSAGES/kdeconnect-cli.mo share/locale/ast/LC_MESSAGES/kdeconnect-core.mo share/locale/ast/LC_MESSAGES/kdeconnect-fileitemaction.mo share/locale/ast/LC_MESSAGES/kdeconnect-indicator.mo share/locale/ast/LC_MESSAGES/kdeconnect-interfaces.mo share/locale/ast/LC_MESSAGES/kdeconnect-kded.mo share/locale/ast/LC_MESSAGES/kdeconnect-kio.mo share/locale/ast/LC_MESSAGES/kdeconnect-nautilus-extension.mo share/locale/ast/LC_MESSAGES/kdeconnect-plugins.mo share/locale/ast/LC_MESSAGES/kdeconnect-sms.mo share/locale/ast/LC_MESSAGES/kdeconnect-urlhandler.mo share/locale/ast/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo share/locale/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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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/eo/LC_MESSAGES/kdeconnect-app.mo share/locale/eo/LC_MESSAGES/kdeconnect-cli.mo share/locale/eo/LC_MESSAGES/kdeconnect-core.mo share/locale/eo/LC_MESSAGES/kdeconnect-fileitemaction.mo share/locale/eo/LC_MESSAGES/kdeconnect-indicator.mo share/locale/eo/LC_MESSAGES/kdeconnect-interfaces.mo share/locale/eo/LC_MESSAGES/kdeconnect-kded.mo share/locale/eo/LC_MESSAGES/kdeconnect-kio.mo share/locale/eo/LC_MESSAGES/kdeconnect-nautilus-extension.mo share/locale/eo/LC_MESSAGES/kdeconnect-plugins.mo share/locale/eo/LC_MESSAGES/kdeconnect-sms.mo share/locale/eo/LC_MESSAGES/kdeconnect-urlhandler.mo share/locale/eo/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-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-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-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-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-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-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-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-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-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-sms.mo share/locale/fr/LC_MESSAGES/kdeconnect-urlhandler.mo share/locale/fr/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo share/locale/ga/LC_MESSAGES/kdeconnect-app.mo share/locale/ga/LC_MESSAGES/kdeconnect-cli.mo share/locale/ga/LC_MESSAGES/kdeconnect-core.mo share/locale/ga/LC_MESSAGES/kdeconnect-fileitemaction.mo share/locale/ga/LC_MESSAGES/kdeconnect-indicator.mo share/locale/ga/LC_MESSAGES/kdeconnect-interfaces.mo share/locale/ga/LC_MESSAGES/kdeconnect-kded.mo share/locale/ga/LC_MESSAGES/kdeconnect-kio.mo share/locale/ga/LC_MESSAGES/kdeconnect-nautilus-extension.mo share/locale/ga/LC_MESSAGES/kdeconnect-plugins.mo share/locale/ga/LC_MESSAGES/kdeconnect-sms.mo share/locale/ga/LC_MESSAGES/kdeconnect-urlhandler.mo share/locale/ga/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-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-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-app.mo share/locale/he/LC_MESSAGES/kdeconnect-cli.mo share/locale/he/LC_MESSAGES/kdeconnect-core.mo share/locale/he/LC_MESSAGES/kdeconnect-fileitemaction.mo share/locale/he/LC_MESSAGES/kdeconnect-indicator.mo share/locale/he/LC_MESSAGES/kdeconnect-interfaces.mo share/locale/he/LC_MESSAGES/kdeconnect-kded.mo share/locale/he/LC_MESSAGES/kdeconnect-kio.mo share/locale/he/LC_MESSAGES/kdeconnect-nautilus-extension.mo share/locale/he/LC_MESSAGES/kdeconnect-plugins.mo share/locale/he/LC_MESSAGES/kdeconnect-sms.mo share/locale/he/LC_MESSAGES/kdeconnect-urlhandler.mo share/locale/he/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo share/locale/hi/LC_MESSAGES/kdeconnect-app.mo share/locale/hi/LC_MESSAGES/kdeconnect-cli.mo share/locale/hi/LC_MESSAGES/kdeconnect-core.mo share/locale/hi/LC_MESSAGES/kdeconnect-fileitemaction.mo share/locale/hi/LC_MESSAGES/kdeconnect-indicator.mo share/locale/hi/LC_MESSAGES/kdeconnect-interfaces.mo share/locale/hi/LC_MESSAGES/kdeconnect-kded.mo share/locale/hi/LC_MESSAGES/kdeconnect-kio.mo share/locale/hi/LC_MESSAGES/kdeconnect-nautilus-extension.mo share/locale/hi/LC_MESSAGES/kdeconnect-plugins.mo share/locale/hi/LC_MESSAGES/kdeconnect-sms.mo share/locale/hi/LC_MESSAGES/kdeconnect-urlhandler.mo share/locale/hi/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-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-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-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-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-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-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-kio.mo share/locale/ie/LC_MESSAGES/kdeconnect-nautilus-extension.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-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-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-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-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-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-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-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-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-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-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-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-sms.mo share/locale/lt/LC_MESSAGES/kdeconnect-urlhandler.mo share/locale/lt/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo share/locale/lv/LC_MESSAGES/kdeconnect-app.mo share/locale/lv/LC_MESSAGES/kdeconnect-cli.mo share/locale/lv/LC_MESSAGES/kdeconnect-core.mo share/locale/lv/LC_MESSAGES/kdeconnect-fileitemaction.mo share/locale/lv/LC_MESSAGES/kdeconnect-indicator.mo share/locale/lv/LC_MESSAGES/kdeconnect-interfaces.mo share/locale/lv/LC_MESSAGES/kdeconnect-kded.mo share/locale/lv/LC_MESSAGES/kdeconnect-kio.mo share/locale/lv/LC_MESSAGES/kdeconnect-nautilus-extension.mo share/locale/lv/LC_MESSAGES/kdeconnect-plugins.mo share/locale/lv/LC_MESSAGES/kdeconnect-sms.mo share/locale/lv/LC_MESSAGES/kdeconnect-urlhandler.mo share/locale/lv/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-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-sms.mo share/locale/ml/LC_MESSAGES/kdeconnect-urlhandler.mo share/locale/ml/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo share/locale/nb/LC_MESSAGES/kdeconnect-app.mo share/locale/nb/LC_MESSAGES/kdeconnect-core.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-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-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-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-sms.mo share/locale/nn/LC_MESSAGES/kdeconnect-urlhandler.mo share/locale/nn/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo share/locale/pa/LC_MESSAGES/kdeconnect-app.mo share/locale/pa/LC_MESSAGES/kdeconnect-cli.mo share/locale/pa/LC_MESSAGES/kdeconnect-core.mo share/locale/pa/LC_MESSAGES/kdeconnect-fileitemaction.mo share/locale/pa/LC_MESSAGES/kdeconnect-indicator.mo share/locale/pa/LC_MESSAGES/kdeconnect-interfaces.mo share/locale/pa/LC_MESSAGES/kdeconnect-kded.mo share/locale/pa/LC_MESSAGES/kdeconnect-kio.mo share/locale/pa/LC_MESSAGES/kdeconnect-nautilus-extension.mo share/locale/pa/LC_MESSAGES/kdeconnect-plugins.mo share/locale/pa/LC_MESSAGES/kdeconnect-sms.mo share/locale/pa/LC_MESSAGES/kdeconnect-urlhandler.mo share/locale/pa/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-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-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-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-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-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-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-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-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-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-sms.mo share/locale/ru/LC_MESSAGES/kdeconnect-urlhandler.mo share/locale/ru/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo share/locale/sa/LC_MESSAGES/kdeconnect-app.mo share/locale/sa/LC_MESSAGES/kdeconnect-cli.mo share/locale/sa/LC_MESSAGES/kdeconnect-core.mo share/locale/sa/LC_MESSAGES/kdeconnect-fileitemaction.mo share/locale/sa/LC_MESSAGES/kdeconnect-indicator.mo share/locale/sa/LC_MESSAGES/kdeconnect-interfaces.mo share/locale/sa/LC_MESSAGES/kdeconnect-kded.mo share/locale/sa/LC_MESSAGES/kdeconnect-kio.mo share/locale/sa/LC_MESSAGES/kdeconnect-nautilus-extension.mo share/locale/sa/LC_MESSAGES/kdeconnect-plugins.mo share/locale/sa/LC_MESSAGES/kdeconnect-sms.mo share/locale/sa/LC_MESSAGES/kdeconnect-urlhandler.mo share/locale/sa/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-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-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-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-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-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-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-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-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-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-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-cli.mo share/locale/ta/LC_MESSAGES/kdeconnect-core.mo share/locale/ta/LC_MESSAGES/kdeconnect-fileitemaction.mo share/locale/ta/LC_MESSAGES/kdeconnect-indicator.mo share/locale/ta/LC_MESSAGES/kdeconnect-interfaces.mo share/locale/ta/LC_MESSAGES/kdeconnect-kded.mo share/locale/ta/LC_MESSAGES/kdeconnect-kio.mo share/locale/ta/LC_MESSAGES/kdeconnect-nautilus-extension.mo share/locale/ta/LC_MESSAGES/kdeconnect-plugins.mo share/locale/ta/LC_MESSAGES/kdeconnect-sms.mo share/locale/ta/LC_MESSAGES/kdeconnect-urlhandler.mo share/locale/ta/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo share/locale/tg/LC_MESSAGES/kdeconnect-fileitemaction.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-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-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-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-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-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-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-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-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.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/Clipboard.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/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.json share/qlogging-categories6/kdeconnect-kde.categories share/zsh/site-functions/_kdeconnect diff --git a/deskutils/kdepim-addons/distinfo b/deskutils/kdepim-addons/distinfo index dcfd97cf64b1..b6ad1d41cecf 100644 --- a/deskutils/kdepim-addons/distinfo +++ b/deskutils/kdepim-addons/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1772541799 -SHA256 (KDE/release-service/25.12.3/kdepim-addons-25.12.3.tar.xz) = 0eebf8a6aee397b53ce1365ed6a27af5f7a348865c575ba7ac0f88787f7fa979 -SIZE (KDE/release-service/25.12.3/kdepim-addons-25.12.3.tar.xz) = 2676632 +TIMESTAMP = 1776248121 +SHA256 (KDE/release-service/26.04.0/kdepim-addons-26.04.0.tar.xz) = 723d83bd375725155d3da46ae1535f87f0f5de4b43974755b21190ff0ed9e5a2 +SIZE (KDE/release-service/26.04.0/kdepim-addons-26.04.0.tar.xz) = 2673396 diff --git a/deskutils/kdepim-addons/pkg-plist b/deskutils/kdepim-addons/pkg-plist index 695982432193..70185754a624 100644 --- a/deskutils/kdepim-addons/pkg-plist +++ b/deskutils/kdepim-addons/pkg-plist @@ -1,1417 +1,1422 @@ 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/libKPim6AutoGenerateText.so.6 lib/libKPim6AutoGenerateText.so.%%KDE_APPLICATIONS_SHLIB_VER%% lib/libakonadidatasetools.so.6 lib/libakonadidatasetools.so.%%KDE_APPLICATIONS_SHLIB_VER%% lib/libdkimverifyconfigure.so.6 lib/libdkimverifyconfigure.so.%%KDE_APPLICATIONS_SHLIB_VER%% lib/libexpireaccounttrashfolderconfig.so.6 lib/libexpireaccounttrashfolderconfig.so.%%KDE_APPLICATIONS_SHLIB_VER%% lib/libfolderconfiguresettings.so.6 lib/libfolderconfiguresettings.so.%%KDE_APPLICATIONS_SHLIB_VER%% lib/libkaddressbookmergelibprivate.so.6 lib/libkaddressbookmergelibprivate.so.%%KDE_APPLICATIONS_SHLIB_VER%% lib/libkmailconfirmbeforedeleting.so.6 lib/libkmailconfirmbeforedeleting.so.%%KDE_APPLICATIONS_SHLIB_VER%% lib/libkmailmarkdown.so.6 lib/libkmailmarkdown.so.%%KDE_APPLICATIONS_SHLIB_VER%% lib/libkmailquicktextpluginprivate.so.6 lib/libkmailquicktextpluginprivate.so.%%KDE_APPLICATIONS_SHLIB_VER%% lib/libopenurlwithconfigure.so.6 lib/libopenurlwithconfigure.so.%%KDE_APPLICATIONS_SHLIB_VER%% lib/libshorturlpluginprivate.so.6 lib/libshorturlpluginprivate.so.%%KDE_APPLICATIONS_SHLIB_VER%% %%QT_PLUGINDIR%%/autogeneratetext/toolplugins/kaichat_addressbookplugin.so %%QT_PLUGINDIR%%/autogeneratetext/toolplugins/kaichat_calendarplugin.so %%QT_PLUGINDIR%%/pim6/akonadi/emailaddressselectionldapdialogplugin.so %%QT_PLUGINDIR%%/pim6/contacteditor/editorpageplugins/cryptopageplugin.so %%QT_PLUGINDIR%%/pim6/importwizard/evolutionv1importerplugin.so %%QT_PLUGINDIR%%/pim6/importwizard/evolutionv2importerplugin.so %%QT_PLUGINDIR%%/pim6/importwizard/gearyimporterplugin.so %%QT_PLUGINDIR%%/pim6/importwizard/operaimporterplugin.so %%QT_PLUGINDIR%%/pim6/kaddressbook/importexportplugin/kaddressbook_importexportgmxplugin.so %%QT_PLUGINDIR%%/pim6/kaddressbook/importexportplugin/kaddressbook_importexportldapplugin.so %%QT_PLUGINDIR%%/pim6/kaddressbook/importexportplugin/kaddressbook_importexportldifplugin.so %%QT_PLUGINDIR%%/pim6/kaddressbook/importexportplugin/kaddressbook_importexportvcardplugin.so %%QT_PLUGINDIR%%/pim6/kaddressbook/importexportplugin/kaddressbook_importexportwindowscontactplugin.so %%QT_PLUGINDIR%%/pim6/kaddressbook/mainview/kaddressbook_checkgravatarplugin.so %%QT_PLUGINDIR%%/pim6/kaddressbook/mainview/kaddressbook_mergecontactsplugin.so %%QT_PLUGINDIR%%/pim6/kaddressbook/mainview/kaddressbook_searchduplicatesplugin.so %%QT_PLUGINDIR%%/pim6/kaddressbook/mainview/kaddressbook_sendmailplugin.so %%QT_PLUGINDIR%%/pim6/kaddressbook/mainview/kaddressbook_sendvcardsplugin.so %%QT_PLUGINDIR%%/pim6/kcms/kleopatra/kcm_kmail_gnupgsystem.so %%QT_PLUGINDIR%%/pim6/kmail/mainview/kmail_akonadidatabasetoolplugin.so %%QT_PLUGINDIR%%/pim6/kmail/mainview/kmail_antispamplugin.so %%QT_PLUGINDIR%%/pim6/kmail/mainview/kmail_antivirusplugin.so %%QT_PLUGINDIR%%/pim6/kmail/mainview/kmail_checkfoldersizeaccount.so %%QT_PLUGINDIR%%/pim6/kmail/mainview/kmail_expertplugin.so %%QT_PLUGINDIR%%/pim6/kmail/plugincheckbeforesend/kmail_automaticaddcontactseditorplugin.so %%QT_PLUGINDIR%%/pim6/kmail/plugincheckbeforesend/kmail_checkbeforesendeditorplugin.so %%QT_PLUGINDIR%%/pim6/kmail/plugincheckbeforesend/kmail_confirmaddresseditorplugin.so %%QT_PLUGINDIR%%/pim6/kmail/plugineditor/kmail_aitooleditorplugin.so %%QT_PLUGINDIR%%/pim6/kmail/plugineditor/kmail_askautogeneratetexteditorplugin.so %%QT_PLUGINDIR%%/pim6/kmail/plugineditor/kmail_autocorrectioneditorplugin.so %%QT_PLUGINDIR%%/pim6/kmail/plugineditor/kmail_autogenerateanswerseditorplugin.so %%QT_PLUGINDIR%%/pim6/kmail/plugineditor/kmail_changecaseeditorplugin.so %%QT_PLUGINDIR%%/pim6/kmail/plugineditor/kmail_insertemaileditorplugin.so %%QT_PLUGINDIR%%/pim6/kmail/plugineditor/kmail_insertshorturleditorplugin.so %%QT_PLUGINDIR%%/pim6/kmail/plugineditor/kmail_insertspecialcharactereditorplugin.so %%QT_PLUGINDIR%%/pim6/kmail/plugineditor/kmail_nonbreakingspaceeditorplugin.so %%QT_PLUGINDIR%%/pim6/kmail/plugineditor/kmail_quicktextplugin.so %%QT_PLUGINDIR%%/pim6/kmail/plugineditor/kmail_sharetexteditorplugin.so %%QT_PLUGINDIR%%/pim6/kmail/plugineditor/kmail_zoomtexteditorplugin.so %%QT_PLUGINDIR%%/pim6/kmail/plugineditorconverttext/kmail_markdownplugin.so %%QT_PLUGINDIR%%/pim6/kmail/plugineditorgrammar/kmail_grammalecteplugin.so %%QT_PLUGINDIR%%/pim6/kmail/plugineditorgrammar/kmail_languagetoolplugin.so %%QT_PLUGINDIR%%/pim6/kmail/plugineditorinit/kmail_externalcomposereditorplugin.so %%QT_PLUGINDIR%%/pim6/ldapactivities/kldapactivitiesplugin.so %%QT_PLUGINDIR%%/pim6/libksieve/emaillineeditplugin.so %%QT_PLUGINDIR%%/pim6/libksieve/imapfoldercompletionplugin.so %%QT_PLUGINDIR%%/pim6/mailtransport/mailtransport_sendplugin.so %%QT_PLUGINDIR%%/pim6/mailtransportactivities/kmailtransportactivitiesplugin.so %%QT_PLUGINDIR%%/pim6/messageviewer/bodypartformatter/messageviewer_bodypartformatter_application_gnupgwks.so %%QT_PLUGINDIR%%/pim6/messageviewer/bodypartformatter/messageviewer_bodypartformatter_application_mstnef.so %%QT_PLUGINDIR%%/pim6/messageviewer/bodypartformatter/messageviewer_bodypartformatter_pkpass.so %%QT_PLUGINDIR%%/pim6/messageviewer/bodypartformatter/messageviewer_bodypartformatter_semantic.so %%QT_PLUGINDIR%%/pim6/messageviewer/bodypartformatter/messageviewer_bodypartformatter_text_calendar.so %%QT_PLUGINDIR%%/pim6/messageviewer/bodypartformatter/messageviewer_bodypartformatter_text_highlighter.so %%QT_PLUGINDIR%%/pim6/messageviewer/bodypartformatter/messageviewer_bodypartformatter_text_markdown.so %%QT_PLUGINDIR%%/pim6/messageviewer/bodypartformatter/messageviewer_bodypartformatter_text_vcard.so %%QT_PLUGINDIR%%/pim6/messageviewer/checkbeforedeleting/kmail_confirmbeforedeletingplugin.so %%QT_PLUGINDIR%%/pim6/messageviewer/configuresettings/messageviewer_dkimconfigplugin.so %%QT_PLUGINDIR%%/pim6/messageviewer/configuresettings/messageviewer_expireaccounttrashfolderconfigplugin.so %%QT_PLUGINDIR%%/pim6/messageviewer/configuresettings/messageviewer_folderconfiguresettingsplugin.so %%QT_PLUGINDIR%%/pim6/messageviewer/configuresettings/messageviewer_gravatarconfigplugin.so %%QT_PLUGINDIR%%/pim6/messageviewer/configuresettings/messageviewer_openurlwithconfigplugin.so %%QT_PLUGINDIR%%/pim6/messageviewer/headerstyle/messageviewer_briefheaderstyleplugin.so %%QT_PLUGINDIR%%/pim6/messageviewer/headerstyle/messageviewer_fancyheaderstyleplugin.so %%QT_PLUGINDIR%%/pim6/messageviewer/headerstyle/messageviewer_grantleeheaderstyleplugin.so %%QT_PLUGINDIR%%/pim6/messageviewer/headerstyle/messageviewer_longheaderstyleplugin.so %%QT_PLUGINDIR%%/pim6/messageviewer/headerstyle/messageviewer_standardsheaderstyleplugin.so %%QT_PLUGINDIR%%/pim6/messageviewer/kf6/ktexttemplate/kitinerary_ktexttemplate_extension.so %%QT_PLUGINDIR%%/pim6/messageviewer/viewercommonplugin/messageviewer_aiplugin.so %%QT_PLUGINDIR%%/pim6/messageviewer/viewercommonplugin/messageviewer_expandurlplugin.so %%QT_PLUGINDIR%%/pim6/messageviewer/viewercommonplugin/messageviewer_translatorplugin.so %%QT_PLUGINDIR%%/pim6/messageviewer/viewerplugin/messageviewer_createeventplugin.so %%QT_PLUGINDIR%%/pim6/messageviewer/viewerplugin/messageviewer_createtodoplugin.so %%QT_PLUGINDIR%%/pim6/messageviewer/viewerplugin/messageviewer_externalscriptplugin.so %%QT_PLUGINDIR%%/pim6/pimcommon/customtools/pimcommon_translatorplugin.so %%QT_PLUGINDIR%%/pim6/pimcommon/shorturlengine/pimcommon_isgdshorturlengineplugin.so %%QT_PLUGINDIR%%/pim6/pimcommon/shorturlengine/pimcommon_tinyurlengineplugin.so %%QT_PLUGINDIR%%/pim6/pimcommon/shorturlengine/pimcommon_triopabshorturlengineplugin.so %%QT_PLUGINDIR%%/pim6/templateparser/templateparseraddressrequesterplugin.so %%QT_PLUGINDIR%%/pim6/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/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/kaichat_addressbook.mo share/locale/ar/LC_MESSAGES/kaichat_calendar.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/libpimautogeneratetext.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/sieveeditor_plugins.mo share/locale/ar/LC_MESSAGES/webengineurlinterceptor.mo share/locale/ast/LC_MESSAGES/cryptopageplugin.mo share/locale/ast/LC_MESSAGES/customtoolsplugin.mo share/locale/ast/LC_MESSAGES/importwizard_plugins.mo share/locale/ast/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/ast/LC_MESSAGES/kaddressbook_plugins.mo share/locale/ast/LC_MESSAGES/kmail_checkbeforedeleting_plugins.mo share/locale/ast/LC_MESSAGES/kmail_editor_plugins.mo share/locale/ast/LC_MESSAGES/kmail_editorconvertertext_plugins.mo share/locale/ast/LC_MESSAGES/kmail_editorgrammar_plugins.mo share/locale/ast/LC_MESSAGES/kmail_editorinit_plugins.mo share/locale/ast/LC_MESSAGES/kmail_editorsendcheck_plugins.mo share/locale/ast/LC_MESSAGES/kmail_plugins.mo share/locale/ast/LC_MESSAGES/kmailtransport_plugins.mo share/locale/ast/LC_MESSAGES/korganizer_plugins.mo share/locale/ast/LC_MESSAGES/messageviewer_application_gnupgwks_plugin.mo share/locale/ast/LC_MESSAGES/messageviewer_application_mstnef_plugin.mo share/locale/ast/LC_MESSAGES/messageviewer_bodypartformatter_pkpass.mo share/locale/ast/LC_MESSAGES/messageviewer_semantic_plugin.mo share/locale/ast/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/ast/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/ast/LC_MESSAGES/messageviewerconfiguresettingsplugins.mo share/locale/ast/LC_MESSAGES/messageviewerheaderplugins.mo share/locale/ast/LC_MESSAGES/messageviewerplugins.mo share/locale/ast/LC_MESSAGES/sieveeditor_plugins.mo share/locale/ast/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/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/kaichat_addressbook.mo share/locale/bg/LC_MESSAGES/kaichat_calendar.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/libpimautogeneratetext.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/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/kaichat_addressbook.mo share/locale/ca/LC_MESSAGES/kaichat_calendar.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/libpimautogeneratetext.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/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/kaichat_addressbook.mo share/locale/ca@valencia/LC_MESSAGES/kaichat_calendar.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/libpimautogeneratetext.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/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/kaichat_addressbook.mo +share/locale/cs/LC_MESSAGES/kaichat_calendar.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/libpimautogeneratetext.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/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/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/kaichat_addressbook.mo share/locale/de/LC_MESSAGES/kaichat_calendar.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/libpimautogeneratetext.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/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/sieveeditor_plugins.mo share/locale/en_GB/LC_MESSAGES/webengineurlinterceptor.mo share/locale/eo/LC_MESSAGES/cryptopageplugin.mo share/locale/eo/LC_MESSAGES/customtoolsplugin.mo share/locale/eo/LC_MESSAGES/importwizard_plugins.mo share/locale/eo/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/eo/LC_MESSAGES/kaddressbook_plugins.mo share/locale/eo/LC_MESSAGES/kmail_checkbeforedeleting_plugins.mo share/locale/eo/LC_MESSAGES/kmail_editor_plugins.mo share/locale/eo/LC_MESSAGES/kmail_editorconvertertext_plugins.mo share/locale/eo/LC_MESSAGES/kmail_editorgrammar_plugins.mo share/locale/eo/LC_MESSAGES/kmail_editorinit_plugins.mo share/locale/eo/LC_MESSAGES/kmail_editorsendcheck_plugins.mo share/locale/eo/LC_MESSAGES/kmail_plugins.mo share/locale/eo/LC_MESSAGES/kmailtransport_plugins.mo share/locale/eo/LC_MESSAGES/korganizer_plugins.mo share/locale/eo/LC_MESSAGES/messageviewer_application_gnupgwks_plugin.mo share/locale/eo/LC_MESSAGES/messageviewer_application_mstnef_plugin.mo share/locale/eo/LC_MESSAGES/messageviewer_bodypartformatter_pkpass.mo share/locale/eo/LC_MESSAGES/messageviewer_semantic_plugin.mo share/locale/eo/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/eo/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/eo/LC_MESSAGES/messageviewerconfiguresettingsplugins.mo share/locale/eo/LC_MESSAGES/messageviewerheaderplugins.mo share/locale/eo/LC_MESSAGES/messageviewerplugins.mo share/locale/eo/LC_MESSAGES/sieveeditor_plugins.mo share/locale/eo/LC_MESSAGES/webengineurlinterceptor.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/kaichat_addressbook.mo share/locale/es/LC_MESSAGES/kaichat_calendar.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/libpimautogeneratetext.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/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/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/kaichat_addressbook.mo share/locale/eu/LC_MESSAGES/kaichat_calendar.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/libpimautogeneratetext.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/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/kaichat_addressbook.mo share/locale/fi/LC_MESSAGES/kaichat_calendar.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/libpimautogeneratetext.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/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/kaichat_addressbook.mo share/locale/fr/LC_MESSAGES/kaichat_calendar.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/libpimautogeneratetext.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/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/customtoolsplugin.mo share/locale/ga/LC_MESSAGES/importwizard_plugins.mo share/locale/ga/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/ga/LC_MESSAGES/kaddressbook_plugins.mo share/locale/ga/LC_MESSAGES/kaichat_addressbook.mo share/locale/ga/LC_MESSAGES/kaichat_calendar.mo share/locale/ga/LC_MESSAGES/kmail_checkbeforedeleting_plugins.mo share/locale/ga/LC_MESSAGES/kmail_editor_plugins.mo share/locale/ga/LC_MESSAGES/kmail_editorconvertertext_plugins.mo share/locale/ga/LC_MESSAGES/kmail_editorgrammar_plugins.mo share/locale/ga/LC_MESSAGES/kmail_editorinit_plugins.mo share/locale/ga/LC_MESSAGES/kmail_editorsendcheck_plugins.mo share/locale/ga/LC_MESSAGES/kmail_plugins.mo share/locale/ga/LC_MESSAGES/kmailtransport_plugins.mo share/locale/ga/LC_MESSAGES/korganizer_plugins.mo share/locale/ga/LC_MESSAGES/libpimautogeneratetext.mo share/locale/ga/LC_MESSAGES/messageviewer_application_gnupgwks_plugin.mo share/locale/ga/LC_MESSAGES/messageviewer_application_mstnef_plugin.mo share/locale/ga/LC_MESSAGES/messageviewer_bodypartformatter_pkpass.mo share/locale/ga/LC_MESSAGES/messageviewer_semantic_plugin.mo share/locale/ga/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/ga/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/ga/LC_MESSAGES/messageviewerconfiguresettingsplugins.mo share/locale/ga/LC_MESSAGES/messageviewerheaderplugins.mo share/locale/ga/LC_MESSAGES/messageviewerplugins.mo share/locale/ga/LC_MESSAGES/sieveeditor_plugins.mo share/locale/ga/LC_MESSAGES/webengineurlinterceptor.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_checkbeforedeleting_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/libpimautogeneratetext.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/sieveeditor_plugins.mo share/locale/gl/LC_MESSAGES/webengineurlinterceptor.mo share/locale/he/LC_MESSAGES/cryptopageplugin.mo share/locale/he/LC_MESSAGES/customtoolsplugin.mo share/locale/he/LC_MESSAGES/importwizard_plugins.mo share/locale/he/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/he/LC_MESSAGES/kaddressbook_plugins.mo share/locale/he/LC_MESSAGES/kaichat_addressbook.mo share/locale/he/LC_MESSAGES/kaichat_calendar.mo share/locale/he/LC_MESSAGES/kmail_checkbeforedeleting_plugins.mo share/locale/he/LC_MESSAGES/kmail_editor_plugins.mo share/locale/he/LC_MESSAGES/kmail_editorconvertertext_plugins.mo share/locale/he/LC_MESSAGES/kmail_editorgrammar_plugins.mo share/locale/he/LC_MESSAGES/kmail_editorinit_plugins.mo share/locale/he/LC_MESSAGES/kmail_editorsendcheck_plugins.mo share/locale/he/LC_MESSAGES/kmail_plugins.mo share/locale/he/LC_MESSAGES/kmailtransport_plugins.mo share/locale/he/LC_MESSAGES/korganizer_plugins.mo share/locale/he/LC_MESSAGES/libpimautogeneratetext.mo share/locale/he/LC_MESSAGES/messageviewer_application_gnupgwks_plugin.mo share/locale/he/LC_MESSAGES/messageviewer_application_mstnef_plugin.mo share/locale/he/LC_MESSAGES/messageviewer_bodypartformatter_pkpass.mo share/locale/he/LC_MESSAGES/messageviewer_semantic_plugin.mo share/locale/he/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/he/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/he/LC_MESSAGES/messageviewerconfiguresettingsplugins.mo share/locale/he/LC_MESSAGES/messageviewerheaderplugins.mo share/locale/he/LC_MESSAGES/messageviewerplugins.mo share/locale/he/LC_MESSAGES/sieveeditor_plugins.mo share/locale/he/LC_MESSAGES/webengineurlinterceptor.mo share/locale/hi/LC_MESSAGES/cryptopageplugin.mo share/locale/hi/LC_MESSAGES/customtoolsplugin.mo share/locale/hi/LC_MESSAGES/importwizard_plugins.mo share/locale/hi/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/hi/LC_MESSAGES/kaddressbook_plugins.mo share/locale/hi/LC_MESSAGES/kmail_checkbeforedeleting_plugins.mo share/locale/hi/LC_MESSAGES/kmail_editor_plugins.mo share/locale/hi/LC_MESSAGES/kmail_editorconvertertext_plugins.mo share/locale/hi/LC_MESSAGES/kmail_editorgrammar_plugins.mo share/locale/hi/LC_MESSAGES/kmail_editorinit_plugins.mo share/locale/hi/LC_MESSAGES/kmail_editorsendcheck_plugins.mo share/locale/hi/LC_MESSAGES/kmail_plugins.mo share/locale/hi/LC_MESSAGES/kmailtransport_plugins.mo share/locale/hi/LC_MESSAGES/korganizer_plugins.mo share/locale/hi/LC_MESSAGES/messageviewer_application_gnupgwks_plugin.mo share/locale/hi/LC_MESSAGES/messageviewer_application_mstnef_plugin.mo share/locale/hi/LC_MESSAGES/messageviewer_bodypartformatter_pkpass.mo share/locale/hi/LC_MESSAGES/messageviewer_semantic_plugin.mo share/locale/hi/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/hi/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/hi/LC_MESSAGES/messageviewerconfiguresettingsplugins.mo share/locale/hi/LC_MESSAGES/messageviewerheaderplugins.mo share/locale/hi/LC_MESSAGES/messageviewerplugins.mo share/locale/hi/LC_MESSAGES/sieveeditor_plugins.mo share/locale/hi/LC_MESSAGES/webengineurlinterceptor.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/customtoolsplugin.mo share/locale/hu/LC_MESSAGES/importwizard_plugins.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_bodypartformatter_pkpass.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/kaichat_addressbook.mo share/locale/ia/LC_MESSAGES/kaichat_calendar.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/libpimautogeneratetext.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/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/kaichat_addressbook.mo share/locale/it/LC_MESSAGES/kaichat_calendar.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/libpimautogeneratetext.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/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/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/kaichat_addressbook.mo share/locale/ka/LC_MESSAGES/kaichat_calendar.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/libpimautogeneratetext.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/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/libpimautogeneratetext.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/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/kaichat_addressbook.mo +share/locale/lt/LC_MESSAGES/kaichat_calendar.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/libpimautogeneratetext.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/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/kaichat_addressbook.mo share/locale/nl/LC_MESSAGES/kaichat_calendar.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/libpimautogeneratetext.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/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/kaichat_addressbook.mo share/locale/pl/LC_MESSAGES/kaichat_calendar.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/libpimautogeneratetext.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/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/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/kaichat_addressbook.mo share/locale/pt_BR/LC_MESSAGES/kaichat_calendar.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/libpimautogeneratetext.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/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/sieveeditor_plugins.mo share/locale/ru/LC_MESSAGES/webengineurlinterceptor.mo share/locale/sa/LC_MESSAGES/cryptopageplugin.mo share/locale/sa/LC_MESSAGES/customtoolsplugin.mo share/locale/sa/LC_MESSAGES/importwizard_plugins.mo share/locale/sa/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/sa/LC_MESSAGES/kaddressbook_plugins.mo share/locale/sa/LC_MESSAGES/kmail_checkbeforedeleting_plugins.mo share/locale/sa/LC_MESSAGES/kmail_editor_plugins.mo share/locale/sa/LC_MESSAGES/kmail_editorconvertertext_plugins.mo share/locale/sa/LC_MESSAGES/kmail_editorgrammar_plugins.mo share/locale/sa/LC_MESSAGES/kmail_editorinit_plugins.mo share/locale/sa/LC_MESSAGES/kmail_editorsendcheck_plugins.mo share/locale/sa/LC_MESSAGES/kmail_plugins.mo share/locale/sa/LC_MESSAGES/kmailtransport_plugins.mo share/locale/sa/LC_MESSAGES/korganizer_plugins.mo share/locale/sa/LC_MESSAGES/messageviewer_application_gnupgwks_plugin.mo share/locale/sa/LC_MESSAGES/messageviewer_application_mstnef_plugin.mo share/locale/sa/LC_MESSAGES/messageviewer_bodypartformatter_pkpass.mo share/locale/sa/LC_MESSAGES/messageviewer_semantic_plugin.mo share/locale/sa/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/sa/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/sa/LC_MESSAGES/messageviewerconfiguresettingsplugins.mo share/locale/sa/LC_MESSAGES/messageviewerheaderplugins.mo share/locale/sa/LC_MESSAGES/messageviewerplugins.mo share/locale/sa/LC_MESSAGES/sieveeditor_plugins.mo share/locale/sa/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/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/kaichat_addressbook.mo share/locale/sl/LC_MESSAGES/kaichat_calendar.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/libpimautogeneratetext.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/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/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/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/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/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/kaichat_addressbook.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/libpimautogeneratetext.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/sieveeditor_plugins.mo share/locale/sv/LC_MESSAGES/webengineurlinterceptor.mo share/locale/ta/LC_MESSAGES/cryptopageplugin.mo share/locale/ta/LC_MESSAGES/customtoolsplugin.mo share/locale/ta/LC_MESSAGES/importwizard_plugins.mo share/locale/ta/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/ta/LC_MESSAGES/kaddressbook_plugins.mo share/locale/ta/LC_MESSAGES/kmail_checkbeforedeleting_plugins.mo share/locale/ta/LC_MESSAGES/kmail_editor_plugins.mo share/locale/ta/LC_MESSAGES/kmail_editorconvertertext_plugins.mo share/locale/ta/LC_MESSAGES/kmail_editorgrammar_plugins.mo share/locale/ta/LC_MESSAGES/kmail_editorinit_plugins.mo share/locale/ta/LC_MESSAGES/kmail_editorsendcheck_plugins.mo share/locale/ta/LC_MESSAGES/kmail_plugins.mo share/locale/ta/LC_MESSAGES/kmailtransport_plugins.mo share/locale/ta/LC_MESSAGES/korganizer_plugins.mo share/locale/ta/LC_MESSAGES/libpimautogeneratetext.mo share/locale/ta/LC_MESSAGES/messageviewer_application_gnupgwks_plugin.mo share/locale/ta/LC_MESSAGES/messageviewer_application_mstnef_plugin.mo share/locale/ta/LC_MESSAGES/messageviewer_bodypartformatter_pkpass.mo share/locale/ta/LC_MESSAGES/messageviewer_semantic_plugin.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/messageviewerconfiguresettingsplugins.mo share/locale/ta/LC_MESSAGES/messageviewerheaderplugins.mo share/locale/ta/LC_MESSAGES/messageviewerplugins.mo share/locale/ta/LC_MESSAGES/sieveeditor_plugins.mo share/locale/ta/LC_MESSAGES/webengineurlinterceptor.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/kaichat_addressbook.mo share/locale/tr/LC_MESSAGES/kaichat_calendar.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/libpimautogeneratetext.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/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/kaichat_addressbook.mo share/locale/uk/LC_MESSAGES/kaichat_calendar.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/libpimautogeneratetext.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/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/kaichat_addressbook.mo share/locale/zh_CN/LC_MESSAGES/kaichat_calendar.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/libpimautogeneratetext.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/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/kaichat_addressbook.mo share/locale/zh_TW/LC_MESSAGES/kaichat_calendar.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/libpimautogeneratetext.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/sieveeditor_plugins.mo share/locale/zh_TW/LC_MESSAGES/webengineurlinterceptor.mo share/qlogging-categories6/kdepim-addons.categories share/qlogging-categories6/kdepim-addons.renamecategories diff --git a/deskutils/kdepim-runtime/distinfo b/deskutils/kdepim-runtime/distinfo index f442e3f9e190..ac423d123cde 100644 --- a/deskutils/kdepim-runtime/distinfo +++ b/deskutils/kdepim-runtime/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1772541800 -SHA256 (KDE/release-service/25.12.3/kdepim-runtime-25.12.3.tar.xz) = 9c034771cc66ed5103acf5276fd2a5f9f43b503393e3779208c4f97c4d274689 -SIZE (KDE/release-service/25.12.3/kdepim-runtime-25.12.3.tar.xz) = 2455392 +TIMESTAMP = 1776248122 +SHA256 (KDE/release-service/26.04.0/kdepim-runtime-26.04.0.tar.xz) = a6641132af3ea09f3c0ec1fdb64197008652fbcf2b5139ae2183b22d92a3463d +SIZE (KDE/release-service/26.04.0/kdepim-runtime-26.04.0.tar.xz) = 2326372 diff --git a/deskutils/kdepim-runtime/pkg-plist b/deskutils/kdepim-runtime/pkg-plist index a90888a8d981..610a635a2aa9 100644 --- a/deskutils/kdepim-runtime/pkg-plist +++ b/deskutils/kdepim-runtime/pkg-plist @@ -1,1469 +1,1470 @@ 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_openxchange_resource bin/akonadi_pop3_resource bin/akonadi_vcard_resource bin/akonadi_vcarddir_resource bin/gidmigrator lib/libakonadi-filestore.so.6 lib/libakonadi-filestore.so.%%KDE_APPLICATIONS_SHLIB_VER%% lib/libakonadi-singlefileresource-widget.so.6 lib/libakonadi-singlefileresource-widget.so.%%KDE_APPLICATIONS_SHLIB_VER%% lib/libakonadi-singlefileresource.so.6 lib/libakonadi-singlefileresource.so.%%KDE_APPLICATIONS_SHLIB_VER%% lib/libfolderarchivesettings.so.6 lib/libfolderarchivesettings.so.%%KDE_APPLICATIONS_SHLIB_VER%% lib/libkmindexreader.so.6 lib/libkmindexreader.so.%%KDE_APPLICATIONS_SHLIB_VER%% lib/libmaildir.so.6 lib/libmaildir.so.%%KDE_APPLICATIONS_SHLIB_VER%% lib/libnewmailnotifier.so.6 lib/libnewmailnotifier.so.%%KDE_APPLICATIONS_SHLIB_VER%% %%QT_PLUGINDIR%%/kf6/kio/akonadi.so %%QT_PLUGINDIR%%/pim6/akonadi/config/birthdaysconfig.so %%QT_PLUGINDIR%%/pim6/akonadi/config/contactsconfig.so %%QT_PLUGINDIR%%/pim6/akonadi/config/davgroupwareconfig.so %%QT_PLUGINDIR%%/pim6/akonadi/config/googleconfig.so %%QT_PLUGINDIR%%/pim6/akonadi/config/icalconfig.so %%QT_PLUGINDIR%%/pim6/akonadi/config/icaldirconfig.so %%QT_PLUGINDIR%%/pim6/akonadi/config/imapconfig.so %%QT_PLUGINDIR%%/pim6/akonadi/config/kolabconfig.so %%QT_PLUGINDIR%%/pim6/akonadi/config/maildirconfig.so %%QT_PLUGINDIR%%/pim6/akonadi/config/maildispatcherconfig.so %%QT_PLUGINDIR%%/pim6/akonadi/config/mboxconfig.so %%QT_PLUGINDIR%%/pim6/akonadi/config/mixedmaildirconfig.so %%QT_PLUGINDIR%%/pim6/akonadi/config/newmailnotifierconfig.so %%QT_PLUGINDIR%%/pim6/akonadi/config/openxchangeconfig.so %%QT_PLUGINDIR%%/pim6/akonadi/config/pop3config.so %%QT_PLUGINDIR%%/pim6/akonadi/config/vcardconfig.so %%QT_PLUGINDIR%%/pim6/akonadi/config/vcarddirconfig.so %%QT_PLUGINDIR%%/pim6/kcms/common/kcm_ldap.so %%QT_PLUGINDIR%%/pim6/mailtransport/mailtransport_akonadiplugin.so 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/openxchangeresource.desktop share/akonadi/agents/pop3resource.desktop share/akonadi/agents/vcarddirresource.desktop share/akonadi/agents/vcardresource.desktop share/akonadi/davgroupware-providers/citadel.desktop share/akonadi/davgroupware-providers/davical.desktop share/akonadi/davgroupware-providers/egroupware.desktop share/akonadi/davgroupware-providers/fastmail.desktop share/akonadi/davgroupware-providers/kopano.desktop share/akonadi/davgroupware-providers/mailbox-org.desktop share/akonadi/davgroupware-providers/nextcloud.desktop share/akonadi/davgroupware-providers/owncloud-pre9.desktop share/akonadi/davgroupware-providers/owncloud.desktop share/akonadi/davgroupware-providers/sogo.desktop share/akonadi/davgroupware-providers/yahoo.desktop share/akonadi/davgroupware-providers/zimbra.desktop share/akonadi/davgroupware-providers/zoho.desktop share/akonadi/firstrun/birthdaycalendar share/akonadi/firstrun/defaultaddressbook share/akonadi/firstrun/defaultcalendar share/applications/org.kde.akonadi_contacts_resource.desktop share/applications/org.kde.akonadi_davgroupware_resource.desktop share/applications/org.kde.akonadi_ews_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/applications/org.kde.akonadi_openxchange_resource.desktop share/applications/org.kde.akonadi_vcard_resource.desktop share/applications/org.kde.akonadi_vcarddir_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/account-apple.png share/icons/hicolor/128x128/apps/account-citadel.png share/icons/hicolor/128x128/apps/account-davical.png share/icons/hicolor/128x128/apps/account-egroupware.png share/icons/hicolor/128x128/apps/account-fastmail.png share/icons/hicolor/128x128/apps/account-kopano.png share/icons/hicolor/128x128/apps/account-mailboxorg.png share/icons/hicolor/128x128/apps/account-nextcloud.png share/icons/hicolor/128x128/apps/account-owncloud.png share/icons/hicolor/128x128/apps/account-sogo.png share/icons/hicolor/128x128/apps/account-yahoo.png share/icons/hicolor/128x128/apps/account-zimbra.png share/icons/hicolor/128x128/apps/account-zoho.png share/icons/hicolor/128x128/apps/akonadi-ews.png share/icons/hicolor/128x128/apps/ox.png share/icons/hicolor/16x16/apps/account-apple.png share/icons/hicolor/16x16/apps/account-citadel.png share/icons/hicolor/16x16/apps/account-davical.png share/icons/hicolor/16x16/apps/account-egroupware.png share/icons/hicolor/16x16/apps/account-fastmail.png share/icons/hicolor/16x16/apps/account-kopano.png share/icons/hicolor/16x16/apps/account-mailboxorg.png share/icons/hicolor/16x16/apps/account-nextcloud.png share/icons/hicolor/16x16/apps/account-owncloud.png share/icons/hicolor/16x16/apps/account-sogo.png share/icons/hicolor/16x16/apps/account-yahoo.png share/icons/hicolor/16x16/apps/account-zimbra.png share/icons/hicolor/16x16/apps/account-zoho.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/account-apple.png share/icons/hicolor/32x32/apps/account-citadel.png share/icons/hicolor/32x32/apps/account-davical.png share/icons/hicolor/32x32/apps/account-egroupware.png share/icons/hicolor/32x32/apps/account-fastmail.png share/icons/hicolor/32x32/apps/account-kopano.png share/icons/hicolor/32x32/apps/account-mailboxorg.png share/icons/hicolor/32x32/apps/account-nextcloud.png share/icons/hicolor/32x32/apps/account-owncloud.png share/icons/hicolor/32x32/apps/account-sogo.png share/icons/hicolor/32x32/apps/account-yahoo.png share/icons/hicolor/32x32/apps/account-zimbra.png share/icons/hicolor/32x32/apps/account-zoho.png share/icons/hicolor/32x32/apps/akonadi-ews.png share/icons/hicolor/32x32/apps/ox.png share/icons/hicolor/48x48/apps/account-apple.png share/icons/hicolor/48x48/apps/account-citadel.png share/icons/hicolor/48x48/apps/account-davical.png share/icons/hicolor/48x48/apps/account-egroupware.png share/icons/hicolor/48x48/apps/account-fastmail.png share/icons/hicolor/48x48/apps/account-kopano.png share/icons/hicolor/48x48/apps/account-mailboxorg.png share/icons/hicolor/48x48/apps/account-nextcloud.png share/icons/hicolor/48x48/apps/account-owncloud.png share/icons/hicolor/48x48/apps/account-sogo.png share/icons/hicolor/48x48/apps/account-yahoo.png share/icons/hicolor/48x48/apps/account-zimbra.png share/icons/hicolor/48x48/apps/account-zoho.png share/icons/hicolor/48x48/apps/akonadi-ews.png share/icons/hicolor/48x48/apps/ox.png share/icons/hicolor/64x64/apps/account-apple.png share/icons/hicolor/64x64/apps/account-citadel.png share/icons/hicolor/64x64/apps/account-davical.png share/icons/hicolor/64x64/apps/account-egroupware.png share/icons/hicolor/64x64/apps/account-fastmail.png share/icons/hicolor/64x64/apps/account-kopano.png share/icons/hicolor/64x64/apps/account-mailboxorg.png share/icons/hicolor/64x64/apps/account-nextcloud.png share/icons/hicolor/64x64/apps/account-owncloud.png share/icons/hicolor/64x64/apps/account-sogo.png share/icons/hicolor/64x64/apps/account-yahoo.png share/icons/hicolor/64x64/apps/account-zimbra.png share/icons/hicolor/64x64/apps/account-zoho.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/knotifications6/akonadi_ews_resource.notifyrc share/knotifications6/akonadi_google_resource.notifyrc share/knotifications6/akonadi_imap_resource.notifyrc +share/knotifications6/akonadi_kolab_resource.notifyrc share/knotifications6/akonadi_maildispatcher_agent.notifyrc share/knotifications6/akonadi_newmailnotifier_agent.notifyrc share/knotifications6/akonadi_pop3_resource.notifyrc 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_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_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/ast/LC_MESSAGES/akonadi-filestore.mo share/locale/ast/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/ast/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/ast/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/ast/LC_MESSAGES/akonadi_etesync_resource.mo share/locale/ast/LC_MESSAGES/akonadi_ews_resource.mo share/locale/ast/LC_MESSAGES/akonadi_google_resource.mo share/locale/ast/LC_MESSAGES/akonadi_ical_resource.mo share/locale/ast/LC_MESSAGES/akonadi_icaldir_resource.mo share/locale/ast/LC_MESSAGES/akonadi_imap_resource.mo share/locale/ast/LC_MESSAGES/akonadi_maildir_resource.mo share/locale/ast/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/ast/LC_MESSAGES/akonadi_mbox_resource.mo share/locale/ast/LC_MESSAGES/akonadi_migration_agent.mo share/locale/ast/LC_MESSAGES/akonadi_mixedmaildir_resource.mo share/locale/ast/LC_MESSAGES/akonadi_newmailnotifier_agent.mo share/locale/ast/LC_MESSAGES/akonadi_openxchange_resource.mo share/locale/ast/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/ast/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/ast/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/ast/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/ast/LC_MESSAGES/gid-migrator.mo share/locale/ast/LC_MESSAGES/kio_akonadi.mo share/locale/ast/LC_MESSAGES/libfolderarchivesettings.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_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_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/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/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_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_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/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_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_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/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_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_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/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_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_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/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_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_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/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_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/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_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_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/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_etesync_resource.mo share/locale/eo/LC_MESSAGES/akonadi_ews_resource.mo share/locale/eo/LC_MESSAGES/akonadi_google_resource.mo share/locale/eo/LC_MESSAGES/akonadi_ical_resource.mo share/locale/eo/LC_MESSAGES/akonadi_icaldir_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_migration_agent.mo share/locale/eo/LC_MESSAGES/akonadi_mixedmaildir_resource.mo share/locale/eo/LC_MESSAGES/akonadi_newmailnotifier_agent.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/gid-migrator.mo share/locale/eo/LC_MESSAGES/kio_akonadi.mo share/locale/eo/LC_MESSAGES/libfolderarchivesettings.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_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_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/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_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_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/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_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_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/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_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_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/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_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_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/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_etesync_resource.mo share/locale/ga/LC_MESSAGES/akonadi_ews_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_migration_agent.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/gid-migrator.mo share/locale/ga/LC_MESSAGES/kio_akonadi.mo share/locale/ga/LC_MESSAGES/libfolderarchivesettings.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_etesync_resource.mo share/locale/gl/LC_MESSAGES/akonadi_ews_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_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/akonadi-filestore.mo share/locale/he/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/he/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/he/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/he/LC_MESSAGES/akonadi_etesync_resource.mo share/locale/he/LC_MESSAGES/akonadi_ews_resource.mo share/locale/he/LC_MESSAGES/akonadi_google_resource.mo share/locale/he/LC_MESSAGES/akonadi_ical_resource.mo share/locale/he/LC_MESSAGES/akonadi_icaldir_resource.mo share/locale/he/LC_MESSAGES/akonadi_imap_resource.mo share/locale/he/LC_MESSAGES/akonadi_maildir_resource.mo share/locale/he/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/he/LC_MESSAGES/akonadi_mbox_resource.mo share/locale/he/LC_MESSAGES/akonadi_migration_agent.mo share/locale/he/LC_MESSAGES/akonadi_mixedmaildir_resource.mo share/locale/he/LC_MESSAGES/akonadi_newmailnotifier_agent.mo share/locale/he/LC_MESSAGES/akonadi_openxchange_resource.mo share/locale/he/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/he/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/he/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/he/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/he/LC_MESSAGES/gid-migrator.mo share/locale/he/LC_MESSAGES/kio_akonadi.mo share/locale/he/LC_MESSAGES/libfolderarchivesettings.mo share/locale/hi/LC_MESSAGES/akonadi-filestore.mo share/locale/hi/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/hi/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/hi/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/hi/LC_MESSAGES/akonadi_etesync_resource.mo share/locale/hi/LC_MESSAGES/akonadi_ews_resource.mo share/locale/hi/LC_MESSAGES/akonadi_google_resource.mo share/locale/hi/LC_MESSAGES/akonadi_ical_resource.mo share/locale/hi/LC_MESSAGES/akonadi_icaldir_resource.mo share/locale/hi/LC_MESSAGES/akonadi_imap_resource.mo share/locale/hi/LC_MESSAGES/akonadi_maildir_resource.mo share/locale/hi/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/hi/LC_MESSAGES/akonadi_mbox_resource.mo share/locale/hi/LC_MESSAGES/akonadi_migration_agent.mo share/locale/hi/LC_MESSAGES/akonadi_mixedmaildir_resource.mo share/locale/hi/LC_MESSAGES/akonadi_newmailnotifier_agent.mo share/locale/hi/LC_MESSAGES/akonadi_openxchange_resource.mo share/locale/hi/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/hi/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/hi/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/hi/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/hi/LC_MESSAGES/gid-migrator.mo share/locale/hi/LC_MESSAGES/kio_akonadi.mo share/locale/hi/LC_MESSAGES/libfolderarchivesettings.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/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/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_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_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/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_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_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/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_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_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/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_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_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/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/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/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_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_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/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_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_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/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_etesync_resource.mo share/locale/lv/LC_MESSAGES/akonadi_ews_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_icaldir_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_migration_agent.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/gid-migrator.mo share/locale/lv/LC_MESSAGES/kio_akonadi.mo share/locale/lv/LC_MESSAGES/libfolderarchivesettings.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/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/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/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/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_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_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/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/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/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_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_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/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_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_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/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_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_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/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/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_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_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/sa/LC_MESSAGES/akonadi-filestore.mo share/locale/sa/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/sa/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/sa/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/sa/LC_MESSAGES/akonadi_etesync_resource.mo share/locale/sa/LC_MESSAGES/akonadi_ews_resource.mo share/locale/sa/LC_MESSAGES/akonadi_google_resource.mo share/locale/sa/LC_MESSAGES/akonadi_ical_resource.mo share/locale/sa/LC_MESSAGES/akonadi_icaldir_resource.mo share/locale/sa/LC_MESSAGES/akonadi_imap_resource.mo share/locale/sa/LC_MESSAGES/akonadi_maildir_resource.mo share/locale/sa/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/sa/LC_MESSAGES/akonadi_mbox_resource.mo share/locale/sa/LC_MESSAGES/akonadi_migration_agent.mo share/locale/sa/LC_MESSAGES/akonadi_mixedmaildir_resource.mo share/locale/sa/LC_MESSAGES/akonadi_newmailnotifier_agent.mo share/locale/sa/LC_MESSAGES/akonadi_openxchange_resource.mo share/locale/sa/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/sa/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/sa/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/sa/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/sa/LC_MESSAGES/gid-migrator.mo share/locale/sa/LC_MESSAGES/kio_akonadi.mo share/locale/sa/LC_MESSAGES/libfolderarchivesettings.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_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_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/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_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_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/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_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_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/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_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_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/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_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_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/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_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_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/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_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_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/ta/LC_MESSAGES/akonadi_maildir_resource.mo share/locale/ta/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/ta/LC_MESSAGES/akonadi_mixedmaildir_resource.mo share/locale/ta/LC_MESSAGES/akonadi_newmailnotifier_agent.mo share/locale/ta/LC_MESSAGES/libfolderarchivesettings.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/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_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_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/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/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_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_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/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_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_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/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_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_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-categories6/kdepim-runtime.categories share/qlogging-categories6/kdepim-runtime.renamecategories diff --git a/deskutils/keditbookmarks/distinfo b/deskutils/keditbookmarks/distinfo index 04c508bbc3c2..64029ec27e93 100644 --- a/deskutils/keditbookmarks/distinfo +++ b/deskutils/keditbookmarks/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1772541802 -SHA256 (KDE/release-service/25.12.3/keditbookmarks-25.12.3.tar.xz) = 1b96aefbcb1a9fd75304938af28215688afc43d806eec7d453de078721dd1c2e -SIZE (KDE/release-service/25.12.3/keditbookmarks-25.12.3.tar.xz) = 262396 +TIMESTAMP = 1776248124 +SHA256 (KDE/release-service/26.04.0/keditbookmarks-26.04.0.tar.xz) = ebaff000124ea716fe39d7de89049ce5fde0d8da64432c0ec87e9279bf053bd2 +SIZE (KDE/release-service/26.04.0/keditbookmarks-26.04.0.tar.xz) = 262384 diff --git a/deskutils/kfind/distinfo b/deskutils/kfind/distinfo index 1719ca9e3dfc..ee5cf4a1fac5 100644 --- a/deskutils/kfind/distinfo +++ b/deskutils/kfind/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1772541804 -SHA256 (KDE/release-service/25.12.3/kfind-25.12.3.tar.xz) = b053eb551706de18d46a3b96867f2cbcca42346fe5448b3dc6c8d4bc07c72ac1 -SIZE (KDE/release-service/25.12.3/kfind-25.12.3.tar.xz) = 335232 +TIMESTAMP = 1776248126 +SHA256 (KDE/release-service/26.04.0/kfind-26.04.0.tar.xz) = b35e4e216373b5d5cc14ce6b3efdf6d60362a99cad4f39249cfaef646c435b92 +SIZE (KDE/release-service/26.04.0/kfind-26.04.0.tar.xz) = 336004 diff --git a/deskutils/kmail-account-wizard/distinfo b/deskutils/kmail-account-wizard/distinfo index 0e817b4cd470..2115cce931d7 100644 --- a/deskutils/kmail-account-wizard/distinfo +++ b/deskutils/kmail-account-wizard/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1772541807 -SHA256 (KDE/release-service/25.12.3/kmail-account-wizard-25.12.3.tar.xz) = 0a41268e6b153700c4c815da1baa40637efa61943f4e387f66cf5599d8e8d502 -SIZE (KDE/release-service/25.12.3/kmail-account-wizard-25.12.3.tar.xz) = 173856 +TIMESTAMP = 1776248129 +SHA256 (KDE/release-service/26.04.0/kmail-account-wizard-26.04.0.tar.xz) = 86cb52249606ab44200e97d8f68a245d945b4f89816c6de8d6481e2c98918d11 +SIZE (KDE/release-service/26.04.0/kmail-account-wizard-26.04.0.tar.xz) = 175356 diff --git a/deskutils/kmail/distinfo b/deskutils/kmail/distinfo index 7ec228454f21..ecf7db62f2f9 100644 --- a/deskutils/kmail/distinfo +++ b/deskutils/kmail/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1772541805 -SHA256 (KDE/release-service/25.12.3/kmail-25.12.3.tar.xz) = e1ed980945ea3428100e01b5fccbb4e98b109c1d8503340c23b97238d36821c1 -SIZE (KDE/release-service/25.12.3/kmail-25.12.3.tar.xz) = 7846568 +TIMESTAMP = 1776248127 +SHA256 (KDE/release-service/26.04.0/kmail-26.04.0.tar.xz) = 755c6fc51f64301c8c225f000e7e0cb9b63da5db4e8bc701335180a1d60898c3 +SIZE (KDE/release-service/26.04.0/kmail-26.04.0.tar.xz) = 7834600 diff --git a/deskutils/kongress/distinfo b/deskutils/kongress/distinfo index 8c2b6ebd7a26..0aef6f1922b2 100644 --- a/deskutils/kongress/distinfo +++ b/deskutils/kongress/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1772541808 -SHA256 (KDE/release-service/25.12.3/kongress-25.12.3.tar.xz) = 488f06dc3270204ee16de2fd4c670d000f19d27cbbbae1c1ee5406c4dcbc7587 -SIZE (KDE/release-service/25.12.3/kongress-25.12.3.tar.xz) = 170132 +TIMESTAMP = 1776248131 +SHA256 (KDE/release-service/26.04.0/kongress-26.04.0.tar.xz) = 81f6f7a4f35da6f747a665c136bb0370ab498175ac09984cf4da188d09f6d5a7 +SIZE (KDE/release-service/26.04.0/kongress-26.04.0.tar.xz) = 173216 diff --git a/deskutils/kontact/distinfo b/deskutils/kontact/distinfo index 54d226ff2130..e8c67b831109 100644 --- a/deskutils/kontact/distinfo +++ b/deskutils/kontact/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1772541810 -SHA256 (KDE/release-service/25.12.3/kontact-25.12.3.tar.xz) = 4124c873d26a9047332aeeac8002a5619a1455f19280538f191efbf6edeef604 -SIZE (KDE/release-service/25.12.3/kontact-25.12.3.tar.xz) = 896272 +TIMESTAMP = 1776248132 +SHA256 (KDE/release-service/26.04.0/kontact-26.04.0.tar.xz) = 1de9dcd49d4962156b83a39a0033bbb6bb11ede72dd3843cf9286baf151130dd +SIZE (KDE/release-service/26.04.0/kontact-26.04.0.tar.xz) = 897128 diff --git a/deskutils/korganizer/distinfo b/deskutils/korganizer/distinfo index 3f9c6f2b2749..76c96babb995 100644 --- a/deskutils/korganizer/distinfo +++ b/deskutils/korganizer/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1772541812 -SHA256 (KDE/release-service/25.12.3/korganizer-25.12.3.tar.xz) = 9bb837f1a1f9aedbf35f3254a526cc6f5c7591b4c27e649817db6b563ad698c3 -SIZE (KDE/release-service/25.12.3/korganizer-25.12.3.tar.xz) = 3060144 +TIMESTAMP = 1776248134 +SHA256 (KDE/release-service/26.04.0/korganizer-26.04.0.tar.xz) = b890069f4397c7c0905a947dd3f0abc735363bb12e1422a8225b4f6befa06d4b +SIZE (KDE/release-service/26.04.0/korganizer-26.04.0.tar.xz) = 3118588 diff --git a/deskutils/kruler/distinfo b/deskutils/kruler/distinfo index ccbc90a9b74d..a71055dfb7a8 100644 --- a/deskutils/kruler/distinfo +++ b/deskutils/kruler/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1772541813 -SHA256 (KDE/release-service/25.12.3/kruler-25.12.3.tar.xz) = c211bec09a71bda55b1ab86223729603ec7c3206296466bc8ae98dcb76cb7084 -SIZE (KDE/release-service/25.12.3/kruler-25.12.3.tar.xz) = 286904 +TIMESTAMP = 1776248135 +SHA256 (KDE/release-service/26.04.0/kruler-26.04.0.tar.xz) = 65363baced1dff15c966d47c7c0c00287cf7c51b66de051c5859259ae47ce71a +SIZE (KDE/release-service/26.04.0/kruler-26.04.0.tar.xz) = 286916 diff --git a/deskutils/kweather/distinfo b/deskutils/kweather/distinfo index 8c2b84ca944e..41383ca5b17d 100644 --- a/deskutils/kweather/distinfo +++ b/deskutils/kweather/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1772541814 -SHA256 (KDE/release-service/25.12.3/kweather-25.12.3.tar.xz) = 70040d430bc0973aeaad38f1391e7c06753ad3489ed1b62ddb26d41745495894 -SIZE (KDE/release-service/25.12.3/kweather-25.12.3.tar.xz) = 381640 +TIMESTAMP = 1776248136 +SHA256 (KDE/release-service/26.04.0/kweather-26.04.0.tar.xz) = badaa2068b08d2bbb56a3548454bbf36039cb9c6c6d743c63968a6f437f0a081 +SIZE (KDE/release-service/26.04.0/kweather-26.04.0.tar.xz) = 384552 diff --git a/deskutils/kweathercore/distinfo b/deskutils/kweathercore/distinfo index e17e5c059a2f..0094694a88a7 100644 --- a/deskutils/kweathercore/distinfo +++ b/deskutils/kweathercore/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1772541814 -SHA256 (KDE/release-service/25.12.3/kweathercore-25.12.3.tar.xz) = 83cda4953ac7ac3f3473ce053e3d13b36c57dc0e198bc176663fdd30ba4b0945 -SIZE (KDE/release-service/25.12.3/kweathercore-25.12.3.tar.xz) = 86932 +TIMESTAMP = 1776248136 +SHA256 (KDE/release-service/26.04.0/kweathercore-26.04.0.tar.xz) = 5d2f47c6b47a352911c1697704bc0a6fd51fe93807def98aab4bdc193e7dcc3b +SIZE (KDE/release-service/26.04.0/kweathercore-26.04.0.tar.xz) = 86844 diff --git a/deskutils/libkdepim/distinfo b/deskutils/libkdepim/distinfo index d50a1f8f6203..f104418d8b66 100644 --- a/deskutils/libkdepim/distinfo +++ b/deskutils/libkdepim/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1772541816 -SHA256 (KDE/release-service/25.12.3/libkdepim-25.12.3.tar.xz) = 5b2ffc63f30ffdf513061b634db3df6019ab4aad56b1c11f50dadec081b8cf43 -SIZE (KDE/release-service/25.12.3/libkdepim-25.12.3.tar.xz) = 281956 +TIMESTAMP = 1776248138 +SHA256 (KDE/release-service/26.04.0/libkdepim-26.04.0.tar.xz) = cb8aef03a19dfc5abde0520464d43ad4ec0b30438218b42bce87a5b8580884e9 +SIZE (KDE/release-service/26.04.0/libkdepim-26.04.0.tar.xz) = 284612 diff --git a/deskutils/mbox-importer/distinfo b/deskutils/mbox-importer/distinfo index 7ec910998164..44fc00e8e0d4 100644 --- a/deskutils/mbox-importer/distinfo +++ b/deskutils/mbox-importer/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1772541818 -SHA256 (KDE/release-service/25.12.3/mbox-importer-25.12.3.tar.xz) = 628238e028aeaa2a6395a78449abfe4344d69fcff7c7f4b70994a98fc194be95 -SIZE (KDE/release-service/25.12.3/mbox-importer-25.12.3.tar.xz) = 34380 +TIMESTAMP = 1776248139 +SHA256 (KDE/release-service/26.04.0/mbox-importer-26.04.0.tar.xz) = e01e9255fbc919e1e8b8f28f5afecf0f0cf3a9bef4e4f4a238d86b1f2e264546 +SIZE (KDE/release-service/26.04.0/mbox-importer-26.04.0.tar.xz) = 35480 diff --git a/deskutils/merkuro/distinfo b/deskutils/merkuro/distinfo index 8ce16fc6953d..10276b172f4b 100644 --- a/deskutils/merkuro/distinfo +++ b/deskutils/merkuro/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1772541819 -SHA256 (KDE/release-service/25.12.3/merkuro-25.12.3.tar.xz) = f56169db85cb600ba2a49b32bf53d17eadd137e116d19f4b69ef2a5eab2c8bae -SIZE (KDE/release-service/25.12.3/merkuro-25.12.3.tar.xz) = 829892 +TIMESTAMP = 1776248141 +SHA256 (KDE/release-service/26.04.0/merkuro-26.04.0.tar.xz) = 88502900aa2229f2800aec7fd243488bc3cadc03397f0a56d8ba988354fdb602 +SIZE (KDE/release-service/26.04.0/merkuro-26.04.0.tar.xz) = 839016 diff --git a/deskutils/merkuro/pkg-plist b/deskutils/merkuro/pkg-plist index a2ede8435ea9..246e82b1faae 100644 --- a/deskutils/merkuro/pkg-plist +++ b/deskutils/merkuro/pkg-plist @@ -1,211 +1,202 @@ bin/merkuro-calendar bin/merkuro-contact bin/merkuro-mail lib/libMerkuroComponents.so lib/libMerkuroComponents.so.%%KDE_APPLICATIONS_VERSION%% lib/libMerkuroComponents.so.6 lib/libmerkuro_contact.so lib/libmerkuro_contact.so.%%KDE_APPLICATIONS_VERSION%% lib/libmerkuro_contact.so.6 +%%QT_PLUGINDIR%%/plasma/applets/org.kde.merkuro.contact.applet.so %%QT_QMLDIR%%/org/kde/merkuro/components/BaseApplication.qml %%QT_QMLDIR%%/org/kde/merkuro/components/ColoredCheckbox.qml +%%QT_QMLDIR%%/org/kde/merkuro/components/EditCollectionPage.qml %%QT_QMLDIR%%/org/kde/merkuro/components/EditMenu.qml %%QT_QMLDIR%%/org/kde/merkuro/components/FileMenu.qml %%QT_QMLDIR%%/org/kde/merkuro/components/HelpMenu.qml %%QT_QMLDIR%%/org/kde/merkuro/components/MerkuroComponents.qmltypes %%QT_QMLDIR%%/org/kde/merkuro/components/NativeEditMenu.qml %%QT_QMLDIR%%/org/kde/merkuro/components/NativeFileMenu.qml %%QT_QMLDIR%%/org/kde/merkuro/components/NativeHelpMenu.qml %%QT_QMLDIR%%/org/kde/merkuro/components/NativeWindowMenu.qml %%QT_QMLDIR%%/org/kde/merkuro/components/SettingsMenu.qml %%QT_QMLDIR%%/org/kde/merkuro/components/WindowMenu.qml %%QT_QMLDIR%%/org/kde/merkuro/components/kde-qmlmodule.version %%QT_QMLDIR%%/org/kde/merkuro/components/libMerkuroComponentsplugin.so %%QT_QMLDIR%%/org/kde/merkuro/components/qmldir -%%QT_QMLDIR%%/org/kde/merkuro/contact/AddressBookCollectionHandler.qml %%QT_QMLDIR%%/org/kde/merkuro/contact/ContactChooserPage.qml %%QT_QMLDIR%%/org/kde/merkuro/contact/ContactListItem.qml %%QT_QMLDIR%%/org/kde/merkuro/contact/ContactView.qml %%QT_QMLDIR%%/org/kde/merkuro/contact/GlobalMenuBar.qml %%QT_QMLDIR%%/org/kde/merkuro/contact/Main.qml %%QT_QMLDIR%%/org/kde/merkuro/contact/MenuBar.qml %%QT_QMLDIR%%/org/kde/merkuro/contact/Settings.qml %%QT_QMLDIR%%/org/kde/merkuro/contact/Sidebar.qml %%QT_QMLDIR%%/org/kde/merkuro/contact/kde-qmlmodule.version %%QT_QMLDIR%%/org/kde/merkuro/contact/libmerkuro_contactplugin.so %%QT_QMLDIR%%/org/kde/merkuro/contact/merkuro_contact.qmltypes %%QT_QMLDIR%%/org/kde/merkuro/contact/private/AddressBookMenu.qml %%QT_QMLDIR%%/org/kde/merkuro/contact/private/ContactGroupPage.qml %%QT_QMLDIR%%/org/kde/merkuro/contact/private/ContactPage.qml %%QT_QMLDIR%%/org/kde/merkuro/contact/private/ContactsPage.qml %%QT_QMLDIR%%/org/kde/merkuro/contact/private/DeleteContactDialog.qml %%QT_QMLDIR%%/org/kde/merkuro/contact/private/Header.qml %%QT_QMLDIR%%/org/kde/merkuro/contact/private/PhoneNumberDialog.qml %%QT_QMLDIR%%/org/kde/merkuro/contact/private/QrCodePage.qml %%QT_QMLDIR%%/org/kde/merkuro/contact/private/contact_editor/AddressBookEditorCard.qml %%QT_QMLDIR%%/org/kde/merkuro/contact/private/contact_editor/BusinessEditorCard.qml %%QT_QMLDIR%%/org/kde/merkuro/contact/private/contact_editor/ContactEditorPage.qml %%QT_QMLDIR%%/org/kde/merkuro/contact/private/contact_editor/ContactGroupEditorPage.qml %%QT_QMLDIR%%/org/kde/merkuro/contact/private/contact_editor/EmailEditorCard.qml %%QT_QMLDIR%%/org/kde/merkuro/contact/private/contact_editor/InstantMessengerEditorCard.qml %%QT_QMLDIR%%/org/kde/merkuro/contact/private/contact_editor/PersonalInfoEditorCard.qml %%QT_QMLDIR%%/org/kde/merkuro/contact/private/contact_editor/PhoneEditorCard.qml %%QT_QMLDIR%%/org/kde/merkuro/contact/private/contact_editor/PhotoEditor.qml %%QT_QMLDIR%%/org/kde/merkuro/contact/qmldir %%QT_QMLDIR%%/org/kde/merkuro/contact/resources/fallbackBackground.png share/applications/org.kde.merkuro.calendar.desktop share/applications/org.kde.merkuro.contact.desktop share/applications/org.kde.merkuro.desktop share/applications/org.kde.merkuro.mail.desktop share/icons/hicolor/128x128/apps/org.kde.merkuro.calendar.png share/icons/hicolor/128x128/apps/org.kde.merkuro.contact.png share/icons/hicolor/128x128/apps/org.kde.merkuro.mail.png share/icons/hicolor/16x16/apps/org.kde.merkuro.calendar.png share/icons/hicolor/16x16/apps/org.kde.merkuro.mail.png share/icons/hicolor/24x24/apps/org.kde.merkuro.calendar.png share/icons/hicolor/24x24/apps/org.kde.merkuro.mail.png share/icons/hicolor/256x256/apps/org.kde.merkuro.calendar.png share/icons/hicolor/256x256/apps/org.kde.merkuro.contact.png share/icons/hicolor/256x256/apps/org.kde.merkuro.mail.png share/icons/hicolor/32x32/apps/org.kde.merkuro.calendar.png share/icons/hicolor/32x32/apps/org.kde.merkuro.mail.png share/icons/hicolor/48x48/apps/org.kde.merkuro.calendar.png share/icons/hicolor/48x48/apps/org.kde.merkuro.contact.png share/icons/hicolor/48x48/apps/org.kde.merkuro.mail.png share/knotifications6/merkuro.mail.notifyrc share/locale/ar/LC_MESSAGES/merkuro.mo share/locale/ar/LC_MESSAGES/merkurolauncher.mo share/locale/ar/LC_MESSAGES/plasma_applet_org.kde.merkuro.contact.mo share/locale/ast/LC_MESSAGES/merkuro.mo share/locale/ast/LC_MESSAGES/plasma_applet_org.kde.merkuro.contact.mo share/locale/az/LC_MESSAGES/merkuro.mo share/locale/az/LC_MESSAGES/plasma_applet_org.kde.merkuro.contact.mo share/locale/bg/LC_MESSAGES/merkuro.mo share/locale/bg/LC_MESSAGES/merkurolauncher.mo share/locale/bg/LC_MESSAGES/plasma_applet_org.kde.merkuro.contact.mo share/locale/ca/LC_MESSAGES/merkuro.mo share/locale/ca/LC_MESSAGES/merkurolauncher.mo share/locale/ca/LC_MESSAGES/plasma_applet_org.kde.merkuro.contact.mo share/locale/ca@valencia/LC_MESSAGES/merkuro.mo share/locale/ca@valencia/LC_MESSAGES/merkurolauncher.mo share/locale/ca@valencia/LC_MESSAGES/plasma_applet_org.kde.merkuro.contact.mo share/locale/cs/LC_MESSAGES/merkuro.mo share/locale/cs/LC_MESSAGES/merkurolauncher.mo share/locale/cs/LC_MESSAGES/plasma_applet_org.kde.merkuro.contact.mo share/locale/da/LC_MESSAGES/merkuro.mo share/locale/da/LC_MESSAGES/plasma_applet_org.kde.merkuro.contact.mo share/locale/de/LC_MESSAGES/merkuro.mo share/locale/de/LC_MESSAGES/merkurolauncher.mo share/locale/de/LC_MESSAGES/plasma_applet_org.kde.merkuro.contact.mo share/locale/el/LC_MESSAGES/merkuro.mo share/locale/en_GB/LC_MESSAGES/merkuro.mo share/locale/en_GB/LC_MESSAGES/merkurolauncher.mo share/locale/en_GB/LC_MESSAGES/plasma_applet_org.kde.merkuro.contact.mo share/locale/eo/LC_MESSAGES/merkuro.mo share/locale/eo/LC_MESSAGES/plasma_applet_org.kde.merkuro.contact.mo share/locale/es/LC_MESSAGES/merkuro.mo share/locale/es/LC_MESSAGES/merkurolauncher.mo share/locale/es/LC_MESSAGES/plasma_applet_org.kde.merkuro.contact.mo share/locale/eu/LC_MESSAGES/merkuro.mo share/locale/eu/LC_MESSAGES/merkurolauncher.mo share/locale/eu/LC_MESSAGES/plasma_applet_org.kde.merkuro.contact.mo share/locale/fi/LC_MESSAGES/merkuro.mo share/locale/fi/LC_MESSAGES/merkurolauncher.mo share/locale/fi/LC_MESSAGES/plasma_applet_org.kde.merkuro.contact.mo share/locale/fr/LC_MESSAGES/merkuro.mo share/locale/fr/LC_MESSAGES/merkurolauncher.mo share/locale/fr/LC_MESSAGES/plasma_applet_org.kde.merkuro.contact.mo share/locale/ga/LC_MESSAGES/merkuro.mo share/locale/ga/LC_MESSAGES/merkurolauncher.mo share/locale/ga/LC_MESSAGES/plasma_applet_org.kde.merkuro.contact.mo share/locale/gl/LC_MESSAGES/merkuro.mo share/locale/gl/LC_MESSAGES/merkurolauncher.mo share/locale/gl/LC_MESSAGES/plasma_applet_org.kde.merkuro.contact.mo share/locale/he/LC_MESSAGES/merkuro.mo share/locale/he/LC_MESSAGES/merkurolauncher.mo share/locale/he/LC_MESSAGES/plasma_applet_org.kde.merkuro.contact.mo share/locale/hi/LC_MESSAGES/merkuro.mo share/locale/hi/LC_MESSAGES/merkurolauncher.mo share/locale/hi/LC_MESSAGES/plasma_applet_org.kde.merkuro.contact.mo share/locale/hu/LC_MESSAGES/merkuro.mo share/locale/hu/LC_MESSAGES/merkurolauncher.mo share/locale/hu/LC_MESSAGES/plasma_applet_org.kde.merkuro.contact.mo share/locale/ia/LC_MESSAGES/merkuro.mo share/locale/ia/LC_MESSAGES/merkurolauncher.mo share/locale/ia/LC_MESSAGES/plasma_applet_org.kde.merkuro.contact.mo share/locale/id/LC_MESSAGES/merkuro.mo share/locale/id/LC_MESSAGES/plasma_applet_org.kde.merkuro.contact.mo share/locale/it/LC_MESSAGES/merkuro.mo share/locale/it/LC_MESSAGES/merkurolauncher.mo share/locale/it/LC_MESSAGES/plasma_applet_org.kde.merkuro.contact.mo share/locale/ja/LC_MESSAGES/merkuro.mo share/locale/ja/LC_MESSAGES/plasma_applet_org.kde.merkuro.contact.mo share/locale/ka/LC_MESSAGES/merkuro.mo share/locale/ka/LC_MESSAGES/merkurolauncher.mo share/locale/ka/LC_MESSAGES/plasma_applet_org.kde.merkuro.contact.mo share/locale/ko/LC_MESSAGES/merkuro.mo share/locale/ko/LC_MESSAGES/merkurolauncher.mo share/locale/ko/LC_MESSAGES/plasma_applet_org.kde.merkuro.contact.mo share/locale/lt/LC_MESSAGES/merkuro.mo share/locale/lt/LC_MESSAGES/merkurolauncher.mo share/locale/lt/LC_MESSAGES/plasma_applet_org.kde.merkuro.contact.mo share/locale/lv/LC_MESSAGES/merkuro.mo share/locale/lv/LC_MESSAGES/merkurolauncher.mo share/locale/lv/LC_MESSAGES/plasma_applet_org.kde.merkuro.contact.mo share/locale/nl/LC_MESSAGES/merkuro.mo share/locale/nl/LC_MESSAGES/merkurolauncher.mo share/locale/nl/LC_MESSAGES/plasma_applet_org.kde.merkuro.contact.mo share/locale/nn/LC_MESSAGES/plasma_applet_org.kde.merkuro.contact.mo share/locale/pl/LC_MESSAGES/merkuro.mo share/locale/pl/LC_MESSAGES/merkurolauncher.mo share/locale/pl/LC_MESSAGES/plasma_applet_org.kde.merkuro.contact.mo share/locale/pt/LC_MESSAGES/merkuro.mo share/locale/pt/LC_MESSAGES/plasma_applet_org.kde.merkuro.contact.mo share/locale/pt_BR/LC_MESSAGES/merkuro.mo share/locale/pt_BR/LC_MESSAGES/merkurolauncher.mo share/locale/pt_BR/LC_MESSAGES/plasma_applet_org.kde.merkuro.contact.mo share/locale/ru/LC_MESSAGES/merkuro.mo share/locale/ru/LC_MESSAGES/merkurolauncher.mo share/locale/ru/LC_MESSAGES/plasma_applet_org.kde.merkuro.contact.mo share/locale/sa/LC_MESSAGES/merkuro.mo share/locale/sa/LC_MESSAGES/merkurolauncher.mo share/locale/sa/LC_MESSAGES/plasma_applet_org.kde.merkuro.contact.mo share/locale/sk/LC_MESSAGES/merkuro.mo share/locale/sk/LC_MESSAGES/merkurolauncher.mo share/locale/sk/LC_MESSAGES/plasma_applet_org.kde.merkuro.contact.mo share/locale/sl/LC_MESSAGES/merkuro.mo share/locale/sl/LC_MESSAGES/merkurolauncher.mo share/locale/sl/LC_MESSAGES/plasma_applet_org.kde.merkuro.contact.mo share/locale/sv/LC_MESSAGES/merkuro.mo share/locale/sv/LC_MESSAGES/merkurolauncher.mo share/locale/sv/LC_MESSAGES/plasma_applet_org.kde.merkuro.contact.mo share/locale/ta/LC_MESSAGES/merkuro.mo share/locale/ta/LC_MESSAGES/plasma_applet_org.kde.merkuro.contact.mo share/locale/tr/LC_MESSAGES/merkuro.mo share/locale/tr/LC_MESSAGES/merkurolauncher.mo share/locale/tr/LC_MESSAGES/plasma_applet_org.kde.merkuro.contact.mo share/locale/uk/LC_MESSAGES/merkuro.mo share/locale/uk/LC_MESSAGES/merkurolauncher.mo share/locale/uk/LC_MESSAGES/plasma_applet_org.kde.merkuro.contact.mo share/locale/zh_CN/LC_MESSAGES/merkuro.mo share/locale/zh_CN/LC_MESSAGES/merkurolauncher.mo share/locale/zh_CN/LC_MESSAGES/plasma_applet_org.kde.merkuro.contact.mo share/locale/zh_TW/LC_MESSAGES/merkuro.mo share/locale/zh_TW/LC_MESSAGES/merkurolauncher.mo share/locale/zh_TW/LC_MESSAGES/plasma_applet_org.kde.merkuro.contact.mo share/metainfo/org.kde.merkuro.calendar.metainfo.xml share/metainfo/org.kde.merkuro.contact.metainfo.xml share/metainfo/org.kde.merkuro.mail.metainfo.xml share/metainfo/org.kde.merkuro.metainfo.xml -share/plasma/plasmoids/org.kde.merkuro.contact.applet/contents/config/main.xml -share/plasma/plasmoids/org.kde.merkuro.contact.applet/contents/resources/fallbackBackground.png -share/plasma/plasmoids/org.kde.merkuro.contact.applet/contents/ui/CompactRepresentation.qml -share/plasma/plasmoids/org.kde.merkuro.contact.applet/contents/ui/ContactPage.qml -share/plasma/plasmoids/org.kde.merkuro.contact.applet/contents/ui/ContactsPage.qml -share/plasma/plasmoids/org.kde.merkuro.contact.applet/contents/ui/Header.qml -share/plasma/plasmoids/org.kde.merkuro.contact.applet/contents/ui/QrCodePage.qml -share/plasma/plasmoids/org.kde.merkuro.contact.applet/contents/ui/main.qml -share/plasma/plasmoids/org.kde.merkuro.contact.applet/metadata.json -share/plasma/plasmoids/org.kde.merkuro.contact.applet/metadata.json.license share/qlogging-categories6/merkuro.categories share/qlogging-categories6/merkuro.contact.categories diff --git a/deskutils/pim-data-exporter/distinfo b/deskutils/pim-data-exporter/distinfo index 5c8aaf7549a0..35c1819b158b 100644 --- a/deskutils/pim-data-exporter/distinfo +++ b/deskutils/pim-data-exporter/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1772541821 -SHA256 (KDE/release-service/25.12.3/pim-data-exporter-25.12.3.tar.xz) = d1e7c7ffeb8c1339d2214e7b368a5abb3db6f836115fec4cedb8fc3c18193af4 -SIZE (KDE/release-service/25.12.3/pim-data-exporter-25.12.3.tar.xz) = 430816 +TIMESTAMP = 1776248143 +SHA256 (KDE/release-service/26.04.0/pim-data-exporter-26.04.0.tar.xz) = 6fe5178dab3bac4ecac6c1e5d9f869346e0023653d764fec80cccae96750ac00 +SIZE (KDE/release-service/26.04.0/pim-data-exporter-26.04.0.tar.xz) = 431616 diff --git a/deskutils/pim-sieve-editor/distinfo b/deskutils/pim-sieve-editor/distinfo index df8ec908fdc2..44e99a9e6413 100644 --- a/deskutils/pim-sieve-editor/distinfo +++ b/deskutils/pim-sieve-editor/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1772541823 -SHA256 (KDE/release-service/25.12.3/pim-sieve-editor-25.12.3.tar.xz) = eae7f687f76950b8e490420747076087bf3fb04da15df6b04b663586b2550f81 -SIZE (KDE/release-service/25.12.3/pim-sieve-editor-25.12.3.tar.xz) = 484520 +TIMESTAMP = 1776248144 +SHA256 (KDE/release-service/26.04.0/pim-sieve-editor-26.04.0.tar.xz) = e666c3d2bf8dfdcc8a8310ad0d6b4afbc1ae1b558574bee3b7fe93336af457cd +SIZE (KDE/release-service/26.04.0/pim-sieve-editor-26.04.0.tar.xz) = 485460 diff --git a/deskutils/zanshin/distinfo b/deskutils/zanshin/distinfo index 44a9624bca5e..a9b4c03307d4 100644 --- a/deskutils/zanshin/distinfo +++ b/deskutils/zanshin/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1772541824 -SHA256 (KDE/release-service/25.12.3/zanshin-25.12.3.tar.xz) = 4df387da010b1875f73052849634df03bed453b62d0a01e8131d37ba5865cbd2 -SIZE (KDE/release-service/25.12.3/zanshin-25.12.3.tar.xz) = 391452 +TIMESTAMP = 1776248146 +SHA256 (KDE/release-service/26.04.0/zanshin-26.04.0.tar.xz) = 26a6d8dbed20e7cfda51093575a3d1ca59285e7665bb520baedcc5f47915f5d4 +SIZE (KDE/release-service/26.04.0/zanshin-26.04.0.tar.xz) = 390140 diff --git a/devel/dolphin-plugins/distinfo b/devel/dolphin-plugins/distinfo index 9a71c5fc855c..028a0d9ab36a 100644 --- a/devel/dolphin-plugins/distinfo +++ b/devel/dolphin-plugins/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1772541826 -SHA256 (KDE/release-service/25.12.3/dolphin-plugins-25.12.3.tar.xz) = a738d4f9f1148283ff0552ffc5a440cabc5f216aa2473c22e699593b3b01a7c0 -SIZE (KDE/release-service/25.12.3/dolphin-plugins-25.12.3.tar.xz) = 337964 +TIMESTAMP = 1776248148 +SHA256 (KDE/release-service/26.04.0/dolphin-plugins-26.04.0.tar.xz) = e60c8e3b253084d652fb99c3038eeb575de766b4ab928e55690e3b8207221fba +SIZE (KDE/release-service/26.04.0/dolphin-plugins-26.04.0.tar.xz) = 338228 diff --git a/devel/kapptemplate/distinfo b/devel/kapptemplate/distinfo index cbac02462fe6..d6b2e39dedba 100644 --- a/devel/kapptemplate/distinfo +++ b/devel/kapptemplate/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1772541828 -SHA256 (KDE/release-service/25.12.3/kapptemplate-25.12.3.tar.xz) = acf8a978600445c17119de70e509aa54391fa0abe494856a1269b31fda86fc14 -SIZE (KDE/release-service/25.12.3/kapptemplate-25.12.3.tar.xz) = 481656 +TIMESTAMP = 1776248149 +SHA256 (KDE/release-service/26.04.0/kapptemplate-26.04.0.tar.xz) = c69ff5f040f043666d3f17537c7c5072ac5b09c0bb6a1c459b0bb532bdfe377d +SIZE (KDE/release-service/26.04.0/kapptemplate-26.04.0.tar.xz) = 481708 diff --git a/devel/kcachegrind/distinfo b/devel/kcachegrind/distinfo index 5ccd277c4208..ebce9f6bc1f3 100644 --- a/devel/kcachegrind/distinfo +++ b/devel/kcachegrind/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1772541830 -SHA256 (KDE/release-service/25.12.3/kcachegrind-25.12.3.tar.xz) = e96acc0d688b12940ecc8896ab89ffd158bdf595fc69ad6d4a380e28e2e8efd2 -SIZE (KDE/release-service/25.12.3/kcachegrind-25.12.3.tar.xz) = 1005720 +TIMESTAMP = 1776248151 +SHA256 (KDE/release-service/26.04.0/kcachegrind-26.04.0.tar.xz) = 476919c3a9bec436b1a55a6c1a28ebfb07b43d6e22c05c6a476d0bfa537c8fa4 +SIZE (KDE/release-service/26.04.0/kcachegrind-26.04.0.tar.xz) = 1006188 diff --git a/devel/kde-dev-scripts/distinfo b/devel/kde-dev-scripts/distinfo index dec38655b913..e7acbfa599a7 100644 --- a/devel/kde-dev-scripts/distinfo +++ b/devel/kde-dev-scripts/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1772541831 -SHA256 (KDE/release-service/25.12.3/kde-dev-scripts-25.12.3.tar.xz) = 47b0d27442dd26aa69926bfbe24316b7c61f94e711a8d316c91f51328ba20264 -SIZE (KDE/release-service/25.12.3/kde-dev-scripts-25.12.3.tar.xz) = 377088 +TIMESTAMP = 1776248151 +SHA256 (KDE/release-service/26.04.0/kde-dev-scripts-26.04.0.tar.xz) = 2ac4de045842a6dafde3a38fe1d7ced6c409d9ca49731fa820c3e36e00a1a835 +SIZE (KDE/release-service/26.04.0/kde-dev-scripts-26.04.0.tar.xz) = 377248 diff --git a/devel/kde-dev-utils/distinfo b/devel/kde-dev-utils/distinfo index d794eeda3121..d58d196314bd 100644 --- a/devel/kde-dev-utils/distinfo +++ b/devel/kde-dev-utils/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1772541841 -SHA256 (KDE/release-service/25.12.3/kde-dev-utils-25.12.3.tar.xz) = 598fdfd5b981f47a6bc64d71bce1c81367e0f712154048accf10d00b439b5b9c -SIZE (KDE/release-service/25.12.3/kde-dev-utils-25.12.3.tar.xz) = 77756 +TIMESTAMP = 1776248153 +SHA256 (KDE/release-service/26.04.0/kde-dev-utils-26.04.0.tar.xz) = 1957381ab57c9c7fedd0a4b836de87de69161c385b50dcba05126ee3b091f8e4 +SIZE (KDE/release-service/26.04.0/kde-dev-utils-26.04.0.tar.xz) = 77772 diff --git a/devel/kdesdk-kio/distinfo b/devel/kdesdk-kio/distinfo index ada5bac94c4b..5ab11ee7572a 100644 --- a/devel/kdesdk-kio/distinfo +++ b/devel/kdesdk-kio/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1772541849 -SHA256 (KDE/release-service/25.12.3/kdesdk-kio-25.12.3.tar.xz) = 9605fa16d215195abca1a449eb73c854d6346529f58230baa31e231acd49b4d6 -SIZE (KDE/release-service/25.12.3/kdesdk-kio-25.12.3.tar.xz) = 43316 +TIMESTAMP = 1776248155 +SHA256 (KDE/release-service/26.04.0/kdesdk-kio-26.04.0.tar.xz) = 03e000cd9a054b8107a3a402054bd48e8aecda95d3f1d4549c24e44a2004422e +SIZE (KDE/release-service/26.04.0/kdesdk-kio-26.04.0.tar.xz) = 43484 diff --git a/devel/kdesdk-kio/pkg-plist b/devel/kdesdk-kio/pkg-plist index 48250603ef38..94c31533eb2c 100644 --- a/devel/kdesdk-kio/pkg-plist +++ b/devel/kdesdk-kio/pkg-plist @@ -1,51 +1,52 @@ %%QT_PLUGINDIR%%/kf6/kio/perldoc.so share/kio_perldoc/pod2html.pl share/locale/ar/LC_MESSAGES/kio6_perldoc.mo share/locale/bs/LC_MESSAGES/kio6_perldoc.mo share/locale/ca/LC_MESSAGES/kio6_perldoc.mo share/locale/ca@valencia/LC_MESSAGES/kio6_perldoc.mo share/locale/cs/LC_MESSAGES/kio6_perldoc.mo share/locale/da/LC_MESSAGES/kio6_perldoc.mo share/locale/de/LC_MESSAGES/kio6_perldoc.mo share/locale/el/LC_MESSAGES/kio6_perldoc.mo share/locale/en_GB/LC_MESSAGES/kio6_perldoc.mo share/locale/eo/LC_MESSAGES/kio6_perldoc.mo share/locale/es/LC_MESSAGES/kio6_perldoc.mo share/locale/et/LC_MESSAGES/kio6_perldoc.mo share/locale/eu/LC_MESSAGES/kio6_perldoc.mo share/locale/fi/LC_MESSAGES/kio6_perldoc.mo share/locale/fr/LC_MESSAGES/kio6_perldoc.mo share/locale/ga/LC_MESSAGES/kio6_perldoc.mo share/locale/gl/LC_MESSAGES/kio6_perldoc.mo share/locale/he/LC_MESSAGES/kio6_perldoc.mo share/locale/hi/LC_MESSAGES/kio6_perldoc.mo share/locale/hu/LC_MESSAGES/kio6_perldoc.mo share/locale/ia/LC_MESSAGES/kio6_perldoc.mo share/locale/it/LC_MESSAGES/kio6_perldoc.mo share/locale/ja/LC_MESSAGES/kio6_perldoc.mo share/locale/ka/LC_MESSAGES/kio6_perldoc.mo share/locale/kk/LC_MESSAGES/kio6_perldoc.mo share/locale/ko/LC_MESSAGES/kio6_perldoc.mo share/locale/lt/LC_MESSAGES/kio6_perldoc.mo share/locale/lv/LC_MESSAGES/kio6_perldoc.mo share/locale/mr/LC_MESSAGES/kio6_perldoc.mo share/locale/nb/LC_MESSAGES/kio6_perldoc.mo share/locale/nds/LC_MESSAGES/kio6_perldoc.mo share/locale/nl/LC_MESSAGES/kio6_perldoc.mo share/locale/nn/LC_MESSAGES/kio6_perldoc.mo share/locale/pa/LC_MESSAGES/kio6_perldoc.mo share/locale/pl/LC_MESSAGES/kio6_perldoc.mo share/locale/pt/LC_MESSAGES/kio6_perldoc.mo share/locale/pt_BR/LC_MESSAGES/kio6_perldoc.mo share/locale/ro/LC_MESSAGES/kio6_perldoc.mo share/locale/ru/LC_MESSAGES/kio6_perldoc.mo share/locale/sa/LC_MESSAGES/kio6_perldoc.mo share/locale/sk/LC_MESSAGES/kio6_perldoc.mo share/locale/sl/LC_MESSAGES/kio6_perldoc.mo share/locale/sq/LC_MESSAGES/kio6_perldoc.mo share/locale/sv/LC_MESSAGES/kio6_perldoc.mo +share/locale/ta/LC_MESSAGES/kio6_perldoc.mo share/locale/tr/LC_MESSAGES/kio6_perldoc.mo share/locale/ug/LC_MESSAGES/kio6_perldoc.mo share/locale/uk/LC_MESSAGES/kio6_perldoc.mo share/locale/zh_CN/LC_MESSAGES/kio6_perldoc.mo share/locale/zh_TW/LC_MESSAGES/kio6_perldoc.mo diff --git a/devel/kdesdk-thumbnailers/distinfo b/devel/kdesdk-thumbnailers/distinfo index f8e9d49a832c..da448214988a 100644 --- a/devel/kdesdk-thumbnailers/distinfo +++ b/devel/kdesdk-thumbnailers/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1772541851 -SHA256 (KDE/release-service/25.12.3/kdesdk-thumbnailers-25.12.3.tar.xz) = 7f819f1adf56531a03766961a549fbbe3d9b9a5fdf7c3f334a2ce76789506676 -SIZE (KDE/release-service/25.12.3/kdesdk-thumbnailers-25.12.3.tar.xz) = 20856 +TIMESTAMP = 1776248156 +SHA256 (KDE/release-service/26.04.0/kdesdk-thumbnailers-26.04.0.tar.xz) = 11c71bd9404e91039811e296b72fc5f686abe0762f0672fe3035cbb3d4f0b675 +SIZE (KDE/release-service/26.04.0/kdesdk-thumbnailers-26.04.0.tar.xz) = 21000 diff --git a/devel/kdev-php/distinfo b/devel/kdev-php/distinfo index 4238ef9a6c9b..a7ddaacfb05d 100644 --- a/devel/kdev-php/distinfo +++ b/devel/kdev-php/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1772541852 -SHA256 (KDE/release-service/25.12.3/kdev-php-25.12.3.tar.xz) = b011e0e5a92d4853c57b97dd6b8cb9407bcdd1bc54a9e34e219d14ce2725b56d -SIZE (KDE/release-service/25.12.3/kdev-php-25.12.3.tar.xz) = 1101084 +TIMESTAMP = 1776248158 +SHA256 (KDE/release-service/26.04.0/kdev-php-26.04.0.tar.xz) = 442cddea8dd86c1190b9c705fdbedfeeac2f33d5550ad3554ebc006a458b3121 +SIZE (KDE/release-service/26.04.0/kdev-php-26.04.0.tar.xz) = 1101076 diff --git a/devel/kdev-python/distinfo b/devel/kdev-python/distinfo index 13fa4658463d..f82096e5ec1f 100644 --- a/devel/kdev-python/distinfo +++ b/devel/kdev-python/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1772541854 -SHA256 (KDE/release-service/25.12.3/kdev-python-25.12.3.tar.xz) = 12b71fff7d3b0d780c7f444e236e8736f67ed2b00668a7b33d472aad759e984f -SIZE (KDE/release-service/25.12.3/kdev-python-25.12.3.tar.xz) = 1139728 +TIMESTAMP = 1776248160 +SHA256 (KDE/release-service/26.04.0/kdev-python-26.04.0.tar.xz) = 9e89b3019b09245289e22b06b4b81996fad1228f126f08506175763dd7fb482c +SIZE (KDE/release-service/26.04.0/kdev-python-26.04.0.tar.xz) = 1139768 diff --git a/devel/kdevelop/distinfo b/devel/kdevelop/distinfo index 790e9748b724..862c9f53b301 100644 --- a/devel/kdevelop/distinfo +++ b/devel/kdevelop/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1772541858 -SHA256 (KDE/release-service/25.12.3/kdevelop-25.12.3.tar.xz) = b6e8f6a02b3ab843b2212eda13aadee3f5d7039dc0b90c2070fec56e337dfcd5 -SIZE (KDE/release-service/25.12.3/kdevelop-25.12.3.tar.xz) = 8995148 +TIMESTAMP = 1776248161 +SHA256 (KDE/release-service/26.04.0/kdevelop-26.04.0.tar.xz) = 4af9c4a2a7d3c9c76caa53556ee756e1179b31e91363a909fcc3dbba64d8e3ca +SIZE (KDE/release-service/26.04.0/kdevelop-26.04.0.tar.xz) = 9032392 diff --git a/devel/kdevelop/kdevelop.mk b/devel/kdevelop/kdevelop.mk index e63be2d3af1b..5eff0b926bc4 100644 --- a/devel/kdevelop/kdevelop.mk +++ b/devel/kdevelop/kdevelop.mk @@ -1,11 +1,11 @@ # Common variables for KDevelop ports: # devel/kdev-php # devel/kdev-python # devel/kdevelop -_kdevelop_PROJECT_VERSION= 6.4 +_kdevelop_PROJECT_VERSION= 6.5 PLATFORM_VER= ${_kdevelop_PROJECT_VERSION:S/.//} PLIST_SUB+= PLATFORM_VER="${PLATFORM_VER}" PRIVATE_VER= 6.0 PLIST_SUB+= PRIVATE_VER=${PRIVATE_VER} diff --git a/devel/kdevelop/pkg-plist b/devel/kdevelop/pkg-plist index 749684e69e1e..69c619499e76 100644 --- a/devel/kdevelop/pkg-plist +++ b/devel/kdevelop/pkg-plist @@ -1,3555 +1,3558 @@ 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/execute/iexecutepluginhelpers.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/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/indexedstringview.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/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/sourceformatterconfig.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/kdevcoreaddons/kcompoundjob.h include/kdevplatform/util/kdevcoreaddons/ksequentialcompoundjob.h include/kdevplatform/util/kdevcoreaddons/ksimplesequentialcompoundjob.h include/kdevplatform/util/kdevstringhandler.h include/kdevplatform/util/kdevvarlengtharray.h include/kdevplatform/util/ksharedobject.h include/kdevplatform/util/multilevellistview.h include/kdevplatform/util/namespacedoperatorbitwiseorworkaroundqtbug.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/scopedincrementor.h include/kdevplatform/util/simpletoolviewfactory.h include/kdevplatform/util/stack.h include/kdevplatform/util/stringviewhelpers.h include/kdevplatform/util/texteditorhelpers.h include/kdevplatform/util/toggleonlybool.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.%%PLATFORM_VER%% lib/libKDevClangPrivate.so.%%PLATFORM_VER%% lib/libKDevCompileAnalyzerCommon.so.%%PLATFORM_VER%% lib/libKDevPlatformDebugger.so lib/libKDevPlatformDebugger.so.%%SHLIB_VER_LONG%% lib/libKDevPlatformDebugger.so.%%PLATFORM_VER%% lib/libKDevPlatformDocumentation.so lib/libKDevPlatformDocumentation.so.%%SHLIB_VER_LONG%% lib/libKDevPlatformDocumentation.so.%%PLATFORM_VER%% lib/libKDevPlatformInterfaces.so lib/libKDevPlatformInterfaces.so.%%SHLIB_VER_LONG%% lib/libKDevPlatformInterfaces.so.%%PLATFORM_VER%% lib/libKDevPlatformLanguage.so lib/libKDevPlatformLanguage.so.%%SHLIB_VER_LONG%% lib/libKDevPlatformLanguage.so.%%PLATFORM_VER%% lib/libKDevPlatformOutputView.so lib/libKDevPlatformOutputView.so.%%SHLIB_VER_LONG%% lib/libKDevPlatformOutputView.so.%%PLATFORM_VER%% lib/libKDevPlatformProject.so lib/libKDevPlatformProject.so.%%SHLIB_VER_LONG%% lib/libKDevPlatformProject.so.%%PLATFORM_VER%% lib/libKDevPlatformSerialization.so lib/libKDevPlatformSerialization.so.%%SHLIB_VER_LONG%% lib/libKDevPlatformSerialization.so.%%PLATFORM_VER%% lib/libKDevPlatformShell.so lib/libKDevPlatformShell.so.%%SHLIB_VER_LONG%% lib/libKDevPlatformShell.so.%%PLATFORM_VER%% lib/libKDevPlatformSublime.so lib/libKDevPlatformSublime.so.%%SHLIB_VER_LONG%% lib/libKDevPlatformSublime.so.%%PLATFORM_VER%% lib/libKDevPlatformUtil.so lib/libKDevPlatformUtil.so.%%SHLIB_VER_LONG%% lib/libKDevPlatformUtil.so.%%PLATFORM_VER%% lib/libKDevPlatformVcs.so lib/libKDevPlatformVcs.so.%%SHLIB_VER_LONG%% lib/libKDevPlatformVcs.so.%%PLATFORM_VER%% lib/libKDevelopSessionsWatch.so %%QT_PLUGINDIR%%/kdevplatform/%%PLATFORM_VER%%/KDevCMakeBuilder.so %%QT_PLUGINDIR%%/kdevplatform/%%PLATFORM_VER%%/KDevCMakeDocumentation.so %%QT_PLUGINDIR%%/kdevplatform/%%PLATFORM_VER%%/KDevCMakeManager.so %%QT_PLUGINDIR%%/kdevplatform/%%PLATFORM_VER%%/KDevCustomBuildSystem.so %%QT_PLUGINDIR%%/kdevplatform/%%PLATFORM_VER%%/KDevCustomMakeManager.so %%QT_PLUGINDIR%%/kdevplatform/%%PLATFORM_VER%%/KDevDefinesAndIncludesManager.so %%QT_PLUGINDIR%%/kdevplatform/%%PLATFORM_VER%%/KDevGenericManager.so %%QT_PLUGINDIR%%/kdevplatform/%%PLATFORM_VER%%/KDevMakeBuilder.so %%QT_PLUGINDIR%%/kdevplatform/%%PLATFORM_VER%%/KDevManPage.so %%QT_PLUGINDIR%%/kdevplatform/%%PLATFORM_VER%%/KDevMesonManager.so %%QT_PLUGINDIR%%/kdevplatform/%%PLATFORM_VER%%/KDevNinjaBuilder.so %%QT_PLUGINDIR%%/kdevplatform/%%PLATFORM_VER%%/KDevOutlineView.so %%QT_PLUGINDIR%%/kdevplatform/%%PLATFORM_VER%%/KDevProjectFilter.so %%QT_PLUGINDIR%%/kdevplatform/%%PLATFORM_VER%%/KDevProjectManagerView.so %%QT_PLUGINDIR%%/kdevplatform/%%PLATFORM_VER%%/KDevQMakeBuilder.so %%QT_PLUGINDIR%%/kdevplatform/%%PLATFORM_VER%%/KDevQMakeManager.so %%QT_PLUGINDIR%%/kdevplatform/%%PLATFORM_VER%%/KDevStandardOutputView.so %%QT_PLUGINDIR%%/kdevplatform/%%PLATFORM_VER%%/KDevWelcomePage.so %%QT_PLUGINDIR%%/kdevplatform/%%PLATFORM_VER%%/kdevandroid.so %%QT_PLUGINDIR%%/kdevplatform/%%PLATFORM_VER%%/kdevappwizard.so %%QT_PLUGINDIR%%/kdevplatform/%%PLATFORM_VER%%/kdevastyle.so %%QT_PLUGINDIR%%/kdevplatform/%%PLATFORM_VER%%/kdevbazaar.so %%QT_PLUGINDIR%%/kdevplatform/%%PLATFORM_VER%%/kdevclangsupport.so %%QT_PLUGINDIR%%/kdevplatform/%%PLATFORM_VER%%/kdevclangtidy.so %%QT_PLUGINDIR%%/kdevplatform/%%PLATFORM_VER%%/kdevclassbrowser.so %%QT_PLUGINDIR%%/kdevplatform/%%PLATFORM_VER%%/kdevclazy.so %%QT_PLUGINDIR%%/kdevplatform/%%PLATFORM_VER%%/kdevcodeutils.so %%QT_PLUGINDIR%%/kdevplatform/%%PLATFORM_VER%%/kdevcontextbrowser.so %%QT_PLUGINDIR%%/kdevplatform/%%PLATFORM_VER%%/kdevcppcheck.so %%QT_PLUGINDIR%%/kdevplatform/%%PLATFORM_VER%%/kdevcraft.so %%QT_PLUGINDIR%%/kdevplatform/%%PLATFORM_VER%%/kdevcustomscript.so %%QT_PLUGINDIR%%/kdevplatform/%%PLATFORM_VER%%/kdevdocker.so %%QT_PLUGINDIR%%/kdevplatform/%%PLATFORM_VER%%/kdevdocumentswitcher.so %%QT_PLUGINDIR%%/kdevplatform/%%PLATFORM_VER%%/kdevdocumentview.so %%QT_PLUGINDIR%%/kdevplatform/%%PLATFORM_VER%%/kdevexecute.so %%QT_PLUGINDIR%%/kdevplatform/%%PLATFORM_VER%%/kdevexecuteplasmoid.so %%QT_PLUGINDIR%%/kdevplatform/%%PLATFORM_VER%%/kdevexecutescript.so %%QT_PLUGINDIR%%/kdevplatform/%%PLATFORM_VER%%/kdevexternalscript.so %%QT_PLUGINDIR%%/kdevplatform/%%PLATFORM_VER%%/kdevfilemanager.so %%QT_PLUGINDIR%%/kdevplatform/%%PLATFORM_VER%%/kdevfiletemplates.so %%QT_PLUGINDIR%%/kdevplatform/%%PLATFORM_VER%%/kdevflatpak.so %%QT_PLUGINDIR%%/kdevplatform/%%PLATFORM_VER%%/kdevgdb.so %%QT_PLUGINDIR%%/kdevplatform/%%PLATFORM_VER%%/kdevghprovider.so %%QT_PLUGINDIR%%/kdevplatform/%%PLATFORM_VER%%/kdevgit.so %%QT_PLUGINDIR%%/kdevplatform/%%PLATFORM_VER%%/kdevgrepview.so %%QT_PLUGINDIR%%/kdevplatform/%%PLATFORM_VER%%/kdevheaptrack.so %%QT_PLUGINDIR%%/kdevplatform/%%PLATFORM_VER%%/kdevkonsoleview.so %%QT_PLUGINDIR%%/kdevplatform/%%PLATFORM_VER%%/kdevlldb.so %%QT_PLUGINDIR%%/kdevplatform/%%PLATFORM_VER%%/kdevopenwith.so %%QT_PLUGINDIR%%/kdevplatform/%%PLATFORM_VER%%/kdevpatchreview.so %%QT_PLUGINDIR%%/kdevplatform/%%PLATFORM_VER%%/kdevperforce.so %%QT_PLUGINDIR%%/kdevplatform/%%PLATFORM_VER%%/kdevproblemreporter.so %%QT_PLUGINDIR%%/kdevplatform/%%PLATFORM_VER%%/kdevqthelp.so %%QT_PLUGINDIR%%/kdevplatform/%%PLATFORM_VER%%/kdevquickopen.so %%QT_PLUGINDIR%%/kdevplatform/%%PLATFORM_VER%%/kdevsourceformatter.so %%QT_PLUGINDIR%%/kdevplatform/%%PLATFORM_VER%%/kdevsubversion.so %%QT_PLUGINDIR%%/kdevplatform/%%PLATFORM_VER%%/kdevswitchtobuddy.so %%QT_PLUGINDIR%%/kdevplatform/%%PLATFORM_VER%%/kdevtestview.so %%QT_PLUGINDIR%%/kdevplatform/%%PLATFORM_VER%%/kdevvcschangesviewplugin.so %%QT_PLUGINDIR%%/kdevplatform/%%PLATFORM_VER%%/scratchpad.so %%QT_PLUGINDIR%%/kf6/krunner/kdevelopsessions.so %%QT_PLUGINDIR%%/kf6/ktexttemplate/kdev_filters.so %%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/sl/kdevelop/index.cache.bz2 share/doc/HTML/sl/kdevelop/index.docbook share/doc/HTML/sv/kdevelop/index.cache.bz2 share/doc/HTML/sv/kdevelop/index.docbook +share/doc/HTML/tr/kdevelop/index.cache.bz2 +share/doc/HTML/tr/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/16x16/apps/kdevsubversion.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/32x32/apps/kdevsubversion.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/64x64/apps/kdevsubversion.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/kdevsubversion.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_qt6quick_app.tar.bz2 share/kdevappwizard/templates/cmake_qt6widgetsapp.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/gccCompatibility/additional_floating_types.h 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/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_qrc_file.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/kdevgdb/printers/qtcreator_debugger/README share/kdevgdb/printers/qtcreator_debugger/__init__.py share/kdevgdb/printers/qtcreator_debugger/dumper.py share/kdevgdb/printers/qtcreator_debugger/gdbbridge.py share/kdevgdb/printers/qtcreator_debugger/qttypes.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/knotifications6/kdevelop.notifyrc share/knsrcfiles/kdevappwizard.knsrc share/knsrcfiles/kdevelop-qthelp.knsrc share/knsrcfiles/kdevfiletemplates.knsrc share/locale/af/LC_MESSAGES/kdevelop.mo share/locale/ar/LC_MESSAGES/kdevandroid.mo share/locale/ar/LC_MESSAGES/kdevappwizard.mo share/locale/ar/LC_MESSAGES/kdevastyle.mo share/locale/ar/LC_MESSAGES/kdevbazaar.mo share/locale/ar/LC_MESSAGES/kdevclang.mo share/locale/ar/LC_MESSAGES/kdevclangtidy.mo share/locale/ar/LC_MESSAGES/kdevclassbrowser.mo share/locale/ar/LC_MESSAGES/kdevclazy.mo share/locale/ar/LC_MESSAGES/kdevcmake.mo share/locale/ar/LC_MESSAGES/kdevcmakebuilder.mo share/locale/ar/LC_MESSAGES/kdevcodeutils.mo share/locale/ar/LC_MESSAGES/kdevcompileanalyzercommon.mo share/locale/ar/LC_MESSAGES/kdevcontextbrowser.mo share/locale/ar/LC_MESSAGES/kdevcppcheck.mo share/locale/ar/LC_MESSAGES/kdevcustombuildsystem.mo share/locale/ar/LC_MESSAGES/kdevcustomdefinesandincludes.mo share/locale/ar/LC_MESSAGES/kdevcustommake.mo share/locale/ar/LC_MESSAGES/kdevcustomscript.mo share/locale/ar/LC_MESSAGES/kdevdebuggercommon.mo share/locale/ar/LC_MESSAGES/kdevdocker.mo share/locale/ar/LC_MESSAGES/kdevdocumentswitcher.mo share/locale/ar/LC_MESSAGES/kdevdocumentview.mo share/locale/ar/LC_MESSAGES/kdevelop.mo share/locale/ar/LC_MESSAGES/kdevexecute.mo share/locale/ar/LC_MESSAGES/kdevexecuteplasmoid.mo share/locale/ar/LC_MESSAGES/kdevexecutescript.mo share/locale/ar/LC_MESSAGES/kdevexternalscript.mo share/locale/ar/LC_MESSAGES/kdevfilemanager.mo share/locale/ar/LC_MESSAGES/kdevfiletemplates.mo share/locale/ar/LC_MESSAGES/kdevflatpak.mo share/locale/ar/LC_MESSAGES/kdevgdb.mo share/locale/ar/LC_MESSAGES/kdevghprovider.mo share/locale/ar/LC_MESSAGES/kdevgit.mo share/locale/ar/LC_MESSAGES/kdevgrepview.mo share/locale/ar/LC_MESSAGES/kdevheaptrack.mo share/locale/ar/LC_MESSAGES/kdevkonsole.mo share/locale/ar/LC_MESSAGES/kdevlldb.mo share/locale/ar/LC_MESSAGES/kdevmakebuilder.mo share/locale/ar/LC_MESSAGES/kdevmanpage.mo share/locale/ar/LC_MESSAGES/kdevmesonmanager.mo share/locale/ar/LC_MESSAGES/kdevninja.mo share/locale/ar/LC_MESSAGES/kdevokteta.mo share/locale/ar/LC_MESSAGES/kdevopenwith.mo share/locale/ar/LC_MESSAGES/kdevoutlineview.mo share/locale/ar/LC_MESSAGES/kdevpatchreview.mo share/locale/ar/LC_MESSAGES/kdevperforce.mo share/locale/ar/LC_MESSAGES/kdevplatform.mo share/locale/ar/LC_MESSAGES/kdevproblemreporter.mo share/locale/ar/LC_MESSAGES/kdevprojectfilter.mo share/locale/ar/LC_MESSAGES/kdevprojectmanagerview.mo share/locale/ar/LC_MESSAGES/kdevqmakebuilder.mo share/locale/ar/LC_MESSAGES/kdevqmakemanager.mo share/locale/ar/LC_MESSAGES/kdevqmljs.mo share/locale/ar/LC_MESSAGES/kdevqthelp.mo share/locale/ar/LC_MESSAGES/kdevquickopen.mo share/locale/ar/LC_MESSAGES/kdevscratchpad.mo share/locale/ar/LC_MESSAGES/kdevsourceformatter.mo share/locale/ar/LC_MESSAGES/kdevstandardoutputview.mo share/locale/ar/LC_MESSAGES/kdevsubversion.mo share/locale/ar/LC_MESSAGES/kdevswitchtobuddy.mo share/locale/ar/LC_MESSAGES/kdevtestview.mo share/locale/ar/LC_MESSAGES/kdevvcsprojectintegration.mo share/locale/ar/LC_MESSAGES/kdevwelcomepage.mo share/locale/ar/LC_MESSAGES/plasma_applet_kdevelopsessions.mo share/locale/ar/LC_MESSAGES/plasma_runner_kdevelopsessions.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/kdevcompileanalyzercommon.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/kdevfiletemplates.mo share/locale/el/LC_MESSAGES/kdevflatpak.mo share/locale/el/LC_MESSAGES/kdevgdb.mo share/locale/el/LC_MESSAGES/kdevghprovider.mo share/locale/el/LC_MESSAGES/kdevgit.mo share/locale/el/LC_MESSAGES/kdevgrepview.mo share/locale/el/LC_MESSAGES/kdevheaptrack.mo share/locale/el/LC_MESSAGES/kdevkonsole.mo share/locale/el/LC_MESSAGES/kdevlldb.mo share/locale/el/LC_MESSAGES/kdevmakebuilder.mo share/locale/el/LC_MESSAGES/kdevmanpage.mo share/locale/el/LC_MESSAGES/kdevmesonmanager.mo share/locale/el/LC_MESSAGES/kdevninja.mo share/locale/el/LC_MESSAGES/kdevokteta.mo share/locale/el/LC_MESSAGES/kdevopenwith.mo share/locale/el/LC_MESSAGES/kdevoutlineview.mo share/locale/el/LC_MESSAGES/kdevpatchreview.mo share/locale/el/LC_MESSAGES/kdevperforce.mo share/locale/el/LC_MESSAGES/kdevplatform.mo share/locale/el/LC_MESSAGES/kdevproblemreporter.mo share/locale/el/LC_MESSAGES/kdevprojectfilter.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/kdevqmljs.mo share/locale/el/LC_MESSAGES/kdevqthelp.mo share/locale/el/LC_MESSAGES/kdevquickopen.mo share/locale/el/LC_MESSAGES/kdevscratchpad.mo share/locale/el/LC_MESSAGES/kdevsourceformatter.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/kdevwelcomepage.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/kdevandroid.mo share/locale/eo/LC_MESSAGES/kdevappwizard.mo share/locale/eo/LC_MESSAGES/kdevastyle.mo share/locale/eo/LC_MESSAGES/kdevbazaar.mo share/locale/eo/LC_MESSAGES/kdevclang.mo share/locale/eo/LC_MESSAGES/kdevclangtidy.mo share/locale/eo/LC_MESSAGES/kdevclassbrowser.mo share/locale/eo/LC_MESSAGES/kdevclazy.mo share/locale/eo/LC_MESSAGES/kdevcmake.mo share/locale/eo/LC_MESSAGES/kdevcmakebuilder.mo share/locale/eo/LC_MESSAGES/kdevcodeutils.mo share/locale/eo/LC_MESSAGES/kdevcompileanalyzercommon.mo share/locale/eo/LC_MESSAGES/kdevcontextbrowser.mo share/locale/eo/LC_MESSAGES/kdevcppcheck.mo share/locale/eo/LC_MESSAGES/kdevcustombuildsystem.mo share/locale/eo/LC_MESSAGES/kdevcustomdefinesandincludes.mo share/locale/eo/LC_MESSAGES/kdevcustommake.mo share/locale/eo/LC_MESSAGES/kdevcustomscript.mo share/locale/eo/LC_MESSAGES/kdevdebuggercommon.mo share/locale/eo/LC_MESSAGES/kdevdocker.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/kdevexecuteplasmoid.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/kdevfiletemplates.mo share/locale/eo/LC_MESSAGES/kdevflatpak.mo share/locale/eo/LC_MESSAGES/kdevgdb.mo share/locale/eo/LC_MESSAGES/kdevghprovider.mo share/locale/eo/LC_MESSAGES/kdevgit.mo share/locale/eo/LC_MESSAGES/kdevgrepview.mo share/locale/eo/LC_MESSAGES/kdevheaptrack.mo share/locale/eo/LC_MESSAGES/kdevkonsole.mo share/locale/eo/LC_MESSAGES/kdevlldb.mo share/locale/eo/LC_MESSAGES/kdevmakebuilder.mo share/locale/eo/LC_MESSAGES/kdevmanpage.mo share/locale/eo/LC_MESSAGES/kdevmesonmanager.mo share/locale/eo/LC_MESSAGES/kdevninja.mo share/locale/eo/LC_MESSAGES/kdevokteta.mo share/locale/eo/LC_MESSAGES/kdevopenwith.mo share/locale/eo/LC_MESSAGES/kdevoutlineview.mo share/locale/eo/LC_MESSAGES/kdevpatchreview.mo share/locale/eo/LC_MESSAGES/kdevperforce.mo share/locale/eo/LC_MESSAGES/kdevplatform.mo share/locale/eo/LC_MESSAGES/kdevproblemreporter.mo share/locale/eo/LC_MESSAGES/kdevprojectfilter.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/kdevqmljs.mo share/locale/eo/LC_MESSAGES/kdevqthelp.mo share/locale/eo/LC_MESSAGES/kdevquickopen.mo share/locale/eo/LC_MESSAGES/kdevscratchpad.mo share/locale/eo/LC_MESSAGES/kdevsourceformatter.mo share/locale/eo/LC_MESSAGES/kdevstandardoutputview.mo share/locale/eo/LC_MESSAGES/kdevsubversion.mo share/locale/eo/LC_MESSAGES/kdevswitchtobuddy.mo share/locale/eo/LC_MESSAGES/kdevtestview.mo share/locale/eo/LC_MESSAGES/kdevvcsprojectintegration.mo share/locale/eo/LC_MESSAGES/kdevwelcomepage.mo share/locale/eo/LC_MESSAGES/plasma_applet_kdevelopsessions.mo share/locale/eo/LC_MESSAGES/plasma_runner_kdevelopsessions.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/kdevcontextbrowser.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/kdevexecuteplasmoid.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/kdevgrepview.mo share/locale/eu/LC_MESSAGES/kdevkonsole.mo share/locale/eu/LC_MESSAGES/kdevmanpage.mo share/locale/eu/LC_MESSAGES/kdevninja.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/kdevprojectfilter.mo share/locale/eu/LC_MESSAGES/kdevqmakebuilder.mo share/locale/eu/LC_MESSAGES/kdevqthelp.mo share/locale/eu/LC_MESSAGES/kdevsourceformatter.mo share/locale/eu/LC_MESSAGES/kdevsubversion.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/kdevwelcomepage.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/kdevcppcheck.mo share/locale/fi/LC_MESSAGES/kdevcustombuildsystem.mo share/locale/fi/LC_MESSAGES/kdevcustomdefinesandincludes.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/kdevdocker.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/kdevheaptrack.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/kdevandroid.mo share/locale/ga/LC_MESSAGES/kdevappwizard.mo share/locale/ga/LC_MESSAGES/kdevastyle.mo share/locale/ga/LC_MESSAGES/kdevbazaar.mo share/locale/ga/LC_MESSAGES/kdevclang.mo share/locale/ga/LC_MESSAGES/kdevclangtidy.mo share/locale/ga/LC_MESSAGES/kdevclassbrowser.mo share/locale/ga/LC_MESSAGES/kdevclazy.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/kdevcompileanalyzercommon.mo share/locale/ga/LC_MESSAGES/kdevcontextbrowser.mo share/locale/ga/LC_MESSAGES/kdevcppcheck.mo share/locale/ga/LC_MESSAGES/kdevcustombuildsystem.mo share/locale/ga/LC_MESSAGES/kdevcustomdefinesandincludes.mo share/locale/ga/LC_MESSAGES/kdevcustommake.mo share/locale/ga/LC_MESSAGES/kdevcustomscript.mo share/locale/ga/LC_MESSAGES/kdevdebuggercommon.mo share/locale/ga/LC_MESSAGES/kdevdocker.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/kdevexecuteplasmoid.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/kdevfiletemplates.mo share/locale/ga/LC_MESSAGES/kdevflatpak.mo share/locale/ga/LC_MESSAGES/kdevgdb.mo share/locale/ga/LC_MESSAGES/kdevghprovider.mo share/locale/ga/LC_MESSAGES/kdevgit.mo share/locale/ga/LC_MESSAGES/kdevgrepview.mo share/locale/ga/LC_MESSAGES/kdevheaptrack.mo share/locale/ga/LC_MESSAGES/kdevkonsole.mo share/locale/ga/LC_MESSAGES/kdevlldb.mo share/locale/ga/LC_MESSAGES/kdevmakebuilder.mo share/locale/ga/LC_MESSAGES/kdevmanpage.mo share/locale/ga/LC_MESSAGES/kdevmesonmanager.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/kdevoutlineview.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/kdevprojectfilter.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/kdevqmljs.mo share/locale/ga/LC_MESSAGES/kdevqthelp.mo share/locale/ga/LC_MESSAGES/kdevquickopen.mo share/locale/ga/LC_MESSAGES/kdevscratchpad.mo share/locale/ga/LC_MESSAGES/kdevsourceformatter.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/kdevtestview.mo share/locale/ga/LC_MESSAGES/kdevvcsprojectintegration.mo share/locale/ga/LC_MESSAGES/kdevwelcomepage.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/he/LC_MESSAGES/kdevandroid.mo share/locale/he/LC_MESSAGES/kdevappwizard.mo share/locale/he/LC_MESSAGES/kdevastyle.mo share/locale/he/LC_MESSAGES/kdevbazaar.mo share/locale/he/LC_MESSAGES/kdevclang.mo share/locale/he/LC_MESSAGES/kdevclangtidy.mo share/locale/he/LC_MESSAGES/kdevclassbrowser.mo +share/locale/he/LC_MESSAGES/kdevclazy.mo share/locale/he/LC_MESSAGES/kdevcodeutils.mo share/locale/he/LC_MESSAGES/kdevcompileanalyzercommon.mo share/locale/he/LC_MESSAGES/kdevcontextbrowser.mo share/locale/he/LC_MESSAGES/kdevcustommake.mo share/locale/he/LC_MESSAGES/kdevcustomscript.mo share/locale/he/LC_MESSAGES/kdevdocker.mo share/locale/he/LC_MESSAGES/kdevdocumentswitcher.mo share/locale/he/LC_MESSAGES/kdevdocumentview.mo share/locale/he/LC_MESSAGES/kdevexecute.mo share/locale/he/LC_MESSAGES/kdevexecuteplasmoid.mo share/locale/he/LC_MESSAGES/kdevexecutescript.mo share/locale/he/LC_MESSAGES/kdevfilemanager.mo share/locale/he/LC_MESSAGES/kdevflatpak.mo share/locale/he/LC_MESSAGES/kdevghprovider.mo share/locale/he/LC_MESSAGES/kdevgrepview.mo share/locale/he/LC_MESSAGES/kdevkonsole.mo share/locale/he/LC_MESSAGES/kdevlldb.mo share/locale/he/LC_MESSAGES/kdevmanpage.mo share/locale/he/LC_MESSAGES/kdevninja.mo share/locale/he/LC_MESSAGES/kdevokteta.mo share/locale/he/LC_MESSAGES/kdevopenwith.mo share/locale/he/LC_MESSAGES/kdevoutlineview.mo share/locale/he/LC_MESSAGES/kdevpatchreview.mo share/locale/he/LC_MESSAGES/kdevproblemreporter.mo share/locale/he/LC_MESSAGES/kdevprojectfilter.mo share/locale/he/LC_MESSAGES/kdevprojectmanagerview.mo share/locale/he/LC_MESSAGES/kdevqmakebuilder.mo share/locale/he/LC_MESSAGES/kdevqmljs.mo share/locale/he/LC_MESSAGES/kdevqthelp.mo share/locale/he/LC_MESSAGES/kdevquickopen.mo share/locale/he/LC_MESSAGES/kdevscratchpad.mo share/locale/he/LC_MESSAGES/kdevsourceformatter.mo share/locale/he/LC_MESSAGES/kdevstandardoutputview.mo share/locale/he/LC_MESSAGES/kdevswitchtobuddy.mo share/locale/he/LC_MESSAGES/kdevtestview.mo share/locale/he/LC_MESSAGES/kdevvcsprojectintegration.mo share/locale/he/LC_MESSAGES/kdevwelcomepage.mo share/locale/he/LC_MESSAGES/plasma_applet_kdevelopsessions.mo share/locale/he/LC_MESSAGES/plasma_runner_kdevelopsessions.mo share/locale/hi/LC_MESSAGES/kdevandroid.mo share/locale/hi/LC_MESSAGES/kdevappwizard.mo share/locale/hi/LC_MESSAGES/kdevastyle.mo share/locale/hi/LC_MESSAGES/kdevbazaar.mo share/locale/hi/LC_MESSAGES/kdevclang.mo share/locale/hi/LC_MESSAGES/kdevclangtidy.mo share/locale/hi/LC_MESSAGES/kdevclassbrowser.mo share/locale/hi/LC_MESSAGES/kdevclazy.mo share/locale/hi/LC_MESSAGES/kdevcmake.mo share/locale/hi/LC_MESSAGES/kdevcmakebuilder.mo share/locale/hi/LC_MESSAGES/kdevcodeutils.mo share/locale/hi/LC_MESSAGES/kdevcompileanalyzercommon.mo share/locale/hi/LC_MESSAGES/kdevcontextbrowser.mo share/locale/hi/LC_MESSAGES/kdevcppcheck.mo share/locale/hi/LC_MESSAGES/kdevcustombuildsystem.mo share/locale/hi/LC_MESSAGES/kdevcustomdefinesandincludes.mo share/locale/hi/LC_MESSAGES/kdevcustommake.mo share/locale/hi/LC_MESSAGES/kdevcustomscript.mo share/locale/hi/LC_MESSAGES/kdevdebuggercommon.mo share/locale/hi/LC_MESSAGES/kdevdocker.mo share/locale/hi/LC_MESSAGES/kdevdocumentswitcher.mo share/locale/hi/LC_MESSAGES/kdevdocumentview.mo share/locale/hi/LC_MESSAGES/kdevelop.mo share/locale/hi/LC_MESSAGES/kdevexecute.mo share/locale/hi/LC_MESSAGES/kdevexecuteplasmoid.mo share/locale/hi/LC_MESSAGES/kdevexecutescript.mo share/locale/hi/LC_MESSAGES/kdevexternalscript.mo share/locale/hi/LC_MESSAGES/kdevfilemanager.mo share/locale/hi/LC_MESSAGES/kdevfiletemplates.mo share/locale/hi/LC_MESSAGES/kdevflatpak.mo share/locale/hi/LC_MESSAGES/kdevgdb.mo share/locale/hi/LC_MESSAGES/kdevghprovider.mo share/locale/hi/LC_MESSAGES/kdevgit.mo share/locale/hi/LC_MESSAGES/kdevgrepview.mo share/locale/hi/LC_MESSAGES/kdevheaptrack.mo share/locale/hi/LC_MESSAGES/kdevkonsole.mo share/locale/hi/LC_MESSAGES/kdevlldb.mo share/locale/hi/LC_MESSAGES/kdevmakebuilder.mo share/locale/hi/LC_MESSAGES/kdevmanpage.mo share/locale/hi/LC_MESSAGES/kdevmesonmanager.mo share/locale/hi/LC_MESSAGES/kdevninja.mo share/locale/hi/LC_MESSAGES/kdevokteta.mo share/locale/hi/LC_MESSAGES/kdevopenwith.mo share/locale/hi/LC_MESSAGES/kdevoutlineview.mo share/locale/hi/LC_MESSAGES/kdevpatchreview.mo share/locale/hi/LC_MESSAGES/kdevperforce.mo share/locale/hi/LC_MESSAGES/kdevplatform.mo share/locale/hi/LC_MESSAGES/kdevproblemreporter.mo share/locale/hi/LC_MESSAGES/kdevprojectfilter.mo share/locale/hi/LC_MESSAGES/kdevprojectmanagerview.mo share/locale/hi/LC_MESSAGES/kdevqmakebuilder.mo share/locale/hi/LC_MESSAGES/kdevqmakemanager.mo share/locale/hi/LC_MESSAGES/kdevqmljs.mo share/locale/hi/LC_MESSAGES/kdevqthelp.mo share/locale/hi/LC_MESSAGES/kdevquickopen.mo share/locale/hi/LC_MESSAGES/kdevscratchpad.mo share/locale/hi/LC_MESSAGES/kdevsourceformatter.mo share/locale/hi/LC_MESSAGES/kdevstandardoutputview.mo share/locale/hi/LC_MESSAGES/kdevsubversion.mo share/locale/hi/LC_MESSAGES/kdevswitchtobuddy.mo share/locale/hi/LC_MESSAGES/kdevtestview.mo share/locale/hi/LC_MESSAGES/kdevvcsprojectintegration.mo share/locale/hi/LC_MESSAGES/kdevwelcomepage.mo share/locale/hi/LC_MESSAGES/plasma_applet_kdevelopsessions.mo share/locale/hi/LC_MESSAGES/plasma_runner_kdevelopsessions.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/kdevandroid.mo share/locale/hu/LC_MESSAGES/kdevappwizard.mo share/locale/hu/LC_MESSAGES/kdevastyle.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/kdevwelcomepage.mo share/locale/hu/LC_MESSAGES/plasma_applet_kdevelopsessions.mo share/locale/hu/LC_MESSAGES/plasma_runner_kdevelopsessions.mo share/locale/ia/LC_MESSAGES/kdevappwizard.mo share/locale/ia/LC_MESSAGES/kdevastyle.mo share/locale/ia/LC_MESSAGES/kdevelop.mo share/locale/ia/LC_MESSAGES/kdevplatform.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/sa/LC_MESSAGES/kdevandroid.mo share/locale/sa/LC_MESSAGES/kdevappwizard.mo share/locale/sa/LC_MESSAGES/kdevastyle.mo share/locale/sa/LC_MESSAGES/kdevbazaar.mo share/locale/sa/LC_MESSAGES/kdevclang.mo share/locale/sa/LC_MESSAGES/kdevclangtidy.mo share/locale/sa/LC_MESSAGES/kdevclassbrowser.mo share/locale/sa/LC_MESSAGES/kdevclazy.mo share/locale/sa/LC_MESSAGES/kdevcmake.mo share/locale/sa/LC_MESSAGES/kdevcmakebuilder.mo share/locale/sa/LC_MESSAGES/kdevcodeutils.mo share/locale/sa/LC_MESSAGES/kdevcompileanalyzercommon.mo share/locale/sa/LC_MESSAGES/kdevcontextbrowser.mo share/locale/sa/LC_MESSAGES/kdevcppcheck.mo share/locale/sa/LC_MESSAGES/kdevcustombuildsystem.mo share/locale/sa/LC_MESSAGES/kdevcustomdefinesandincludes.mo share/locale/sa/LC_MESSAGES/kdevcustommake.mo share/locale/sa/LC_MESSAGES/kdevcustomscript.mo share/locale/sa/LC_MESSAGES/kdevdebuggercommon.mo share/locale/sa/LC_MESSAGES/kdevdocker.mo share/locale/sa/LC_MESSAGES/kdevdocumentswitcher.mo share/locale/sa/LC_MESSAGES/kdevdocumentview.mo share/locale/sa/LC_MESSAGES/kdevelop.mo share/locale/sa/LC_MESSAGES/kdevexecute.mo share/locale/sa/LC_MESSAGES/kdevexecuteplasmoid.mo share/locale/sa/LC_MESSAGES/kdevexecutescript.mo share/locale/sa/LC_MESSAGES/kdevexternalscript.mo share/locale/sa/LC_MESSAGES/kdevfilemanager.mo share/locale/sa/LC_MESSAGES/kdevfiletemplates.mo share/locale/sa/LC_MESSAGES/kdevflatpak.mo share/locale/sa/LC_MESSAGES/kdevgdb.mo share/locale/sa/LC_MESSAGES/kdevghprovider.mo share/locale/sa/LC_MESSAGES/kdevgit.mo share/locale/sa/LC_MESSAGES/kdevgrepview.mo share/locale/sa/LC_MESSAGES/kdevheaptrack.mo share/locale/sa/LC_MESSAGES/kdevkonsole.mo share/locale/sa/LC_MESSAGES/kdevlldb.mo share/locale/sa/LC_MESSAGES/kdevmakebuilder.mo share/locale/sa/LC_MESSAGES/kdevmanpage.mo share/locale/sa/LC_MESSAGES/kdevmesonmanager.mo share/locale/sa/LC_MESSAGES/kdevninja.mo share/locale/sa/LC_MESSAGES/kdevokteta.mo share/locale/sa/LC_MESSAGES/kdevopenwith.mo share/locale/sa/LC_MESSAGES/kdevoutlineview.mo share/locale/sa/LC_MESSAGES/kdevpatchreview.mo share/locale/sa/LC_MESSAGES/kdevperforce.mo share/locale/sa/LC_MESSAGES/kdevplatform.mo share/locale/sa/LC_MESSAGES/kdevproblemreporter.mo share/locale/sa/LC_MESSAGES/kdevprojectfilter.mo share/locale/sa/LC_MESSAGES/kdevprojectmanagerview.mo share/locale/sa/LC_MESSAGES/kdevqmakebuilder.mo share/locale/sa/LC_MESSAGES/kdevqmakemanager.mo share/locale/sa/LC_MESSAGES/kdevqmljs.mo share/locale/sa/LC_MESSAGES/kdevqthelp.mo share/locale/sa/LC_MESSAGES/kdevquickopen.mo share/locale/sa/LC_MESSAGES/kdevscratchpad.mo share/locale/sa/LC_MESSAGES/kdevsourceformatter.mo share/locale/sa/LC_MESSAGES/kdevstandardoutputview.mo share/locale/sa/LC_MESSAGES/kdevsubversion.mo share/locale/sa/LC_MESSAGES/kdevswitchtobuddy.mo share/locale/sa/LC_MESSAGES/kdevtestview.mo share/locale/sa/LC_MESSAGES/kdevvcsprojectintegration.mo share/locale/sa/LC_MESSAGES/kdevwelcomepage.mo share/locale/sa/LC_MESSAGES/plasma_applet_kdevelopsessions.mo share/locale/sa/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/ta/LC_MESSAGES/kdevkonsole.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/org.kde.kdevelopsessions/contents/ui/main.qml share/plasma/plasmoids/org.kde.kdevelopsessions/metadata.json share/qlogging-categories6/kdevelop.categories share/qlogging-categories6/kdevplatform.categories diff --git a/devel/kio-extras/distinfo b/devel/kio-extras/distinfo index ee299adc7f15..4a822b20a7ce 100644 --- a/devel/kio-extras/distinfo +++ b/devel/kio-extras/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1772541860 -SHA256 (KDE/release-service/25.12.3/kio-extras-25.12.3.tar.xz) = b161e363320f96cffba0195e4045a88049fc3c5b93272532dce5ab6ce886916a -SIZE (KDE/release-service/25.12.3/kio-extras-25.12.3.tar.xz) = 5595468 +TIMESTAMP = 1776248163 +SHA256 (KDE/release-service/26.04.0/kio-extras-26.04.0.tar.xz) = 0abc1d61d03d3ebb04c05840d5910475f46abf97efef65e354c13c12a1c31fd2 +SIZE (KDE/release-service/26.04.0/kio-extras-26.04.0.tar.xz) = 5598804 diff --git a/devel/kio-extras/pkg-plist b/devel/kio-extras/pkg-plist index 137bdbdde2ac..9e186370f1b3 100644 --- a/devel/kio-extras/pkg-plist +++ b/devel/kio-extras/pkg-plist @@ -1,1112 +1,1114 @@ include/KioArchive6/kio_archivebase.h include/KioArchive6/kioarchive_version.h include/KioArchive6/libkioarchive_export.h lib/cmake/KioArchive6/KioArchive6Config.cmake lib/cmake/KioArchive6/KioArchive6ConfigVersion.cmake lib/cmake/KioArchive6/KioArchiveTargets-%%CMAKE_BUILD_TYPE%%.cmake lib/cmake/KioArchive6/KioArchiveTargets.cmake %%SAMBA%%lib/libexec/kf6/smbnotifier lib/libkioarchive6.so.6 lib/libkioarchive6.so.6.0.0 %%QT_PLUGINDIR%%/kcm_trash.so %%QT_PLUGINDIR%%/kf6/kded/filenamesearchmodule.so %%SAMBA%%%%QT_PLUGINDIR%%/kf6/kded/smbwatcher.so %%QT_PLUGINDIR%%/kf6/kfileitemaction/forgetfileitemaction.so %%QT_PLUGINDIR%%/kf6/kfileitemaction/kactivitymanagerd_fileitem_linking_plugin.so %%QT_PLUGINDIR%%/kf6/kio/activities.so %%AFC%%%%QT_PLUGINDIR%%/kf6/kio/afc.so %%QT_PLUGINDIR%%/kf6/kio/archive.so %%QT_PLUGINDIR%%/kf6/kio/filter.so %%QT_PLUGINDIR%%/kf6/kio/fish.so %%QT_PLUGINDIR%%/kf6/kio/info.so %%QT_PLUGINDIR%%/kf6/kio/kio_filenamesearch.so %%QT_PLUGINDIR%%/kf6/kio/man.so %%MTP%%%%QT_PLUGINDIR%%/kf6/kio/mtp.so %%QT_PLUGINDIR%%/kf6/kio/recentlyused.so %%SSH%%%%QT_PLUGINDIR%%/kf6/kio/sftp.so %%SAMBA%%%%QT_PLUGINDIR%%/kf6/kio/smb.so %%QT_PLUGINDIR%%/kf6/kio/thumbnail.so %%MTP%%%%QT_PLUGINDIR%%/kf6/kiod/kmtpd.so %%TAGLIB%%%%QT_PLUGINDIR%%/kf6/thumbcreator/audiothumbnail.so %%QT_PLUGINDIR%%/kf6/thumbcreator/comicbookthumbnail.so %%QT_PLUGINDIR%%/kf6/thumbcreator/cursorthumbnail.so %%QT_PLUGINDIR%%/kf6/thumbcreator/directorythumbnail.so %%QT_PLUGINDIR%%/kf6/thumbcreator/djvuthumbnail.so %%QT_PLUGINDIR%%/kf6/thumbcreator/ebookthumbnail.so %%OPENEXR%%%%QT_PLUGINDIR%%/kf6/thumbcreator/exrthumbnail.so %%QT_PLUGINDIR%%/kf6/thumbcreator/imagethumbnail.so %%QT_PLUGINDIR%%/kf6/thumbcreator/jpegthumbnail.so %%QT_PLUGINDIR%%/kf6/thumbcreator/kraorathumbnail.so %%QT_PLUGINDIR%%/kf6/thumbcreator/opendocumentthumbnail.so %%QT_PLUGINDIR%%/kf6/thumbcreator/svgthumbnail.so %%QT_PLUGINDIR%%/kf6/thumbcreator/textthumbnail.so %%QT_PLUGINDIR%%/kf6/thumbcreator/windowsexethumbnail.so %%QT_PLUGINDIR%%/kf6/thumbcreator/windowsimagethumbnail.so %%QT_PLUGINDIR%%/plasma/kcms/systemsettings_qwidgets/kcm_netpref.so %%QT_PLUGINDIR%%/plasma/kcms/systemsettings_qwidgets/kcm_proxy.so %%QT_PLUGINDIR%%/plasma/kcms/systemsettings_qwidgets/kcm_webshortcuts.so share/applications/kcm_netpref.desktop share/applications/kcm_proxy.desktop share/applications/kcm_trash.desktop share/applications/kcm_webshortcuts.desktop share/config.kcfg/jpegcreatorsettings5.kcfg %%MTP%%share/dbus-1/services/org.kde.kmtpd5.service share/kio_filenamesearch/kio-filenamesearch-grep 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/locale/af/LC_MESSAGES/kio-extras_kcms.mo share/locale/af/LC_MESSAGES/kio6_archive.mo share/locale/af/LC_MESSAGES/kio6_fish.mo share/locale/af/LC_MESSAGES/kio6_man.mo share/locale/af/LC_MESSAGES/kio6_nfs.mo share/locale/af/LC_MESSAGES/kio6_sftp.mo share/locale/af/LC_MESSAGES/kio6_smb.mo share/locale/af/LC_MESSAGES/kio6_thumbnail.mo share/locale/ar/LC_MESSAGES/kio-extras_kcms.mo share/locale/ar/LC_MESSAGES/kio6_activities.mo share/locale/ar/LC_MESSAGES/kio6_afc.mo share/locale/ar/LC_MESSAGES/kio6_archive.mo share/locale/ar/LC_MESSAGES/kio6_filenamesearch.mo share/locale/ar/LC_MESSAGES/kio6_fish.mo share/locale/ar/LC_MESSAGES/kio6_info.mo share/locale/ar/LC_MESSAGES/kio6_man.mo share/locale/ar/LC_MESSAGES/kio6_mtp.mo share/locale/ar/LC_MESSAGES/kio6_nfs.mo share/locale/ar/LC_MESSAGES/kio6_recentlyused.mo share/locale/ar/LC_MESSAGES/kio6_sftp.mo share/locale/ar/LC_MESSAGES/kio6_smb.mo share/locale/ar/LC_MESSAGES/kio6_thumbnail.mo share/locale/ast/LC_MESSAGES/kio-extras_kcms.mo share/locale/ast/LC_MESSAGES/kio6_activities.mo share/locale/ast/LC_MESSAGES/kio6_afc.mo share/locale/ast/LC_MESSAGES/kio6_archive.mo share/locale/ast/LC_MESSAGES/kio6_fish.mo share/locale/ast/LC_MESSAGES/kio6_info.mo share/locale/ast/LC_MESSAGES/kio6_man.mo share/locale/ast/LC_MESSAGES/kio6_mtp.mo share/locale/ast/LC_MESSAGES/kio6_nfs.mo share/locale/ast/LC_MESSAGES/kio6_sftp.mo share/locale/ast/LC_MESSAGES/kio6_smb.mo share/locale/ast/LC_MESSAGES/kio6_thumbnail.mo share/locale/az/LC_MESSAGES/kio-extras_kcms.mo share/locale/be/LC_MESSAGES/kio-extras_kcms.mo share/locale/be/LC_MESSAGES/kio6_activities.mo share/locale/be/LC_MESSAGES/kio6_afc.mo share/locale/be/LC_MESSAGES/kio6_archive.mo share/locale/be/LC_MESSAGES/kio6_filenamesearch.mo share/locale/be/LC_MESSAGES/kio6_fish.mo share/locale/be/LC_MESSAGES/kio6_info.mo share/locale/be/LC_MESSAGES/kio6_man.mo share/locale/be/LC_MESSAGES/kio6_mtp.mo share/locale/be/LC_MESSAGES/kio6_nfs.mo share/locale/be/LC_MESSAGES/kio6_recentlyused.mo share/locale/be/LC_MESSAGES/kio6_sftp.mo share/locale/be/LC_MESSAGES/kio6_smb.mo share/locale/be/LC_MESSAGES/kio6_thumbnail.mo share/locale/be@latin/LC_MESSAGES/kio-extras_kcms.mo share/locale/be@latin/LC_MESSAGES/kio6_archive.mo share/locale/be@latin/LC_MESSAGES/kio6_fish.mo share/locale/be@latin/LC_MESSAGES/kio6_man.mo share/locale/be@latin/LC_MESSAGES/kio6_nfs.mo share/locale/be@latin/LC_MESSAGES/kio6_smb.mo share/locale/be@latin/LC_MESSAGES/kio6_thumbnail.mo share/locale/bg/LC_MESSAGES/kio-extras_kcms.mo share/locale/bg/LC_MESSAGES/kio6_activities.mo share/locale/bg/LC_MESSAGES/kio6_afc.mo share/locale/bg/LC_MESSAGES/kio6_archive.mo share/locale/bg/LC_MESSAGES/kio6_filenamesearch.mo share/locale/bg/LC_MESSAGES/kio6_fish.mo share/locale/bg/LC_MESSAGES/kio6_info.mo share/locale/bg/LC_MESSAGES/kio6_man.mo share/locale/bg/LC_MESSAGES/kio6_mtp.mo share/locale/bg/LC_MESSAGES/kio6_nfs.mo share/locale/bg/LC_MESSAGES/kio6_recentlyused.mo share/locale/bg/LC_MESSAGES/kio6_sftp.mo share/locale/bg/LC_MESSAGES/kio6_smb.mo share/locale/bg/LC_MESSAGES/kio6_thumbnail.mo share/locale/bn/LC_MESSAGES/kio-extras_kcms.mo share/locale/bn/LC_MESSAGES/kio6_fish.mo share/locale/bn/LC_MESSAGES/kio6_man.mo share/locale/bn/LC_MESSAGES/kio6_nfs.mo share/locale/bn_IN/LC_MESSAGES/kio6_archive.mo share/locale/bn_IN/LC_MESSAGES/kio6_fish.mo share/locale/bn_IN/LC_MESSAGES/kio6_man.mo share/locale/bn_IN/LC_MESSAGES/kio6_nfs.mo share/locale/bn_IN/LC_MESSAGES/kio6_sftp.mo share/locale/bn_IN/LC_MESSAGES/kio6_smb.mo share/locale/bn_IN/LC_MESSAGES/kio6_thumbnail.mo share/locale/br/LC_MESSAGES/kio-extras_kcms.mo share/locale/br/LC_MESSAGES/kio6_fish.mo share/locale/br/LC_MESSAGES/kio6_man.mo share/locale/br/LC_MESSAGES/kio6_nfs.mo share/locale/br/LC_MESSAGES/kio6_sftp.mo share/locale/br/LC_MESSAGES/kio6_smb.mo share/locale/br/LC_MESSAGES/kio6_thumbnail.mo share/locale/bs/LC_MESSAGES/kio-extras_kcms.mo share/locale/bs/LC_MESSAGES/kio6_activities.mo share/locale/bs/LC_MESSAGES/kio6_archive.mo share/locale/bs/LC_MESSAGES/kio6_fish.mo share/locale/bs/LC_MESSAGES/kio6_info.mo share/locale/bs/LC_MESSAGES/kio6_man.mo share/locale/bs/LC_MESSAGES/kio6_mtp.mo share/locale/bs/LC_MESSAGES/kio6_nfs.mo share/locale/bs/LC_MESSAGES/kio6_sftp.mo share/locale/bs/LC_MESSAGES/kio6_smb.mo share/locale/bs/LC_MESSAGES/kio6_thumbnail.mo share/locale/ca/LC_MESSAGES/kio-extras_kcms.mo share/locale/ca/LC_MESSAGES/kio6_activities.mo share/locale/ca/LC_MESSAGES/kio6_afc.mo share/locale/ca/LC_MESSAGES/kio6_archive.mo share/locale/ca/LC_MESSAGES/kio6_filenamesearch.mo share/locale/ca/LC_MESSAGES/kio6_fish.mo share/locale/ca/LC_MESSAGES/kio6_info.mo share/locale/ca/LC_MESSAGES/kio6_man.mo share/locale/ca/LC_MESSAGES/kio6_mtp.mo share/locale/ca/LC_MESSAGES/kio6_nfs.mo share/locale/ca/LC_MESSAGES/kio6_recentlyused.mo share/locale/ca/LC_MESSAGES/kio6_sftp.mo share/locale/ca/LC_MESSAGES/kio6_smb.mo share/locale/ca/LC_MESSAGES/kio6_thumbnail.mo share/locale/ca@valencia/LC_MESSAGES/kio-extras_kcms.mo share/locale/ca@valencia/LC_MESSAGES/kio6_activities.mo share/locale/ca@valencia/LC_MESSAGES/kio6_afc.mo share/locale/ca@valencia/LC_MESSAGES/kio6_archive.mo share/locale/ca@valencia/LC_MESSAGES/kio6_filenamesearch.mo share/locale/ca@valencia/LC_MESSAGES/kio6_fish.mo share/locale/ca@valencia/LC_MESSAGES/kio6_info.mo share/locale/ca@valencia/LC_MESSAGES/kio6_man.mo share/locale/ca@valencia/LC_MESSAGES/kio6_mtp.mo share/locale/ca@valencia/LC_MESSAGES/kio6_nfs.mo share/locale/ca@valencia/LC_MESSAGES/kio6_recentlyused.mo share/locale/ca@valencia/LC_MESSAGES/kio6_sftp.mo share/locale/ca@valencia/LC_MESSAGES/kio6_smb.mo share/locale/ca@valencia/LC_MESSAGES/kio6_thumbnail.mo share/locale/cs/LC_MESSAGES/kio-extras_kcms.mo share/locale/cs/LC_MESSAGES/kio6_activities.mo share/locale/cs/LC_MESSAGES/kio6_afc.mo share/locale/cs/LC_MESSAGES/kio6_archive.mo share/locale/cs/LC_MESSAGES/kio6_filenamesearch.mo share/locale/cs/LC_MESSAGES/kio6_fish.mo share/locale/cs/LC_MESSAGES/kio6_info.mo share/locale/cs/LC_MESSAGES/kio6_man.mo share/locale/cs/LC_MESSAGES/kio6_mtp.mo share/locale/cs/LC_MESSAGES/kio6_nfs.mo share/locale/cs/LC_MESSAGES/kio6_recentlyused.mo share/locale/cs/LC_MESSAGES/kio6_sftp.mo share/locale/cs/LC_MESSAGES/kio6_smb.mo share/locale/cs/LC_MESSAGES/kio6_thumbnail.mo share/locale/csb/LC_MESSAGES/kio-extras_kcms.mo share/locale/csb/LC_MESSAGES/kio6_archive.mo share/locale/csb/LC_MESSAGES/kio6_fish.mo share/locale/csb/LC_MESSAGES/kio6_man.mo share/locale/csb/LC_MESSAGES/kio6_nfs.mo share/locale/csb/LC_MESSAGES/kio6_sftp.mo share/locale/csb/LC_MESSAGES/kio6_smb.mo share/locale/csb/LC_MESSAGES/kio6_thumbnail.mo share/locale/cy/LC_MESSAGES/kio-extras_kcms.mo share/locale/cy/LC_MESSAGES/kio6_fish.mo share/locale/cy/LC_MESSAGES/kio6_man.mo share/locale/cy/LC_MESSAGES/kio6_nfs.mo share/locale/cy/LC_MESSAGES/kio6_sftp.mo share/locale/cy/LC_MESSAGES/kio6_smb.mo share/locale/da/LC_MESSAGES/kio-extras_kcms.mo share/locale/da/LC_MESSAGES/kio6_activities.mo share/locale/da/LC_MESSAGES/kio6_archive.mo share/locale/da/LC_MESSAGES/kio6_fish.mo share/locale/da/LC_MESSAGES/kio6_info.mo share/locale/da/LC_MESSAGES/kio6_man.mo share/locale/da/LC_MESSAGES/kio6_mtp.mo share/locale/da/LC_MESSAGES/kio6_nfs.mo share/locale/da/LC_MESSAGES/kio6_sftp.mo share/locale/da/LC_MESSAGES/kio6_smb.mo share/locale/da/LC_MESSAGES/kio6_thumbnail.mo share/locale/de/LC_MESSAGES/kio-extras_kcms.mo share/locale/de/LC_MESSAGES/kio6_activities.mo share/locale/de/LC_MESSAGES/kio6_afc.mo share/locale/de/LC_MESSAGES/kio6_archive.mo share/locale/de/LC_MESSAGES/kio6_filenamesearch.mo share/locale/de/LC_MESSAGES/kio6_fish.mo share/locale/de/LC_MESSAGES/kio6_info.mo share/locale/de/LC_MESSAGES/kio6_man.mo share/locale/de/LC_MESSAGES/kio6_mtp.mo share/locale/de/LC_MESSAGES/kio6_nfs.mo share/locale/de/LC_MESSAGES/kio6_recentlyused.mo share/locale/de/LC_MESSAGES/kio6_sftp.mo share/locale/de/LC_MESSAGES/kio6_smb.mo share/locale/de/LC_MESSAGES/kio6_thumbnail.mo share/locale/el/LC_MESSAGES/kio-extras_kcms.mo share/locale/el/LC_MESSAGES/kio6_activities.mo share/locale/el/LC_MESSAGES/kio6_archive.mo share/locale/el/LC_MESSAGES/kio6_fish.mo share/locale/el/LC_MESSAGES/kio6_info.mo share/locale/el/LC_MESSAGES/kio6_man.mo share/locale/el/LC_MESSAGES/kio6_mtp.mo share/locale/el/LC_MESSAGES/kio6_nfs.mo share/locale/el/LC_MESSAGES/kio6_sftp.mo share/locale/el/LC_MESSAGES/kio6_smb.mo share/locale/el/LC_MESSAGES/kio6_thumbnail.mo share/locale/en_GB/LC_MESSAGES/kio-extras_kcms.mo share/locale/en_GB/LC_MESSAGES/kio6_activities.mo share/locale/en_GB/LC_MESSAGES/kio6_afc.mo share/locale/en_GB/LC_MESSAGES/kio6_archive.mo share/locale/en_GB/LC_MESSAGES/kio6_filenamesearch.mo share/locale/en_GB/LC_MESSAGES/kio6_fish.mo share/locale/en_GB/LC_MESSAGES/kio6_info.mo share/locale/en_GB/LC_MESSAGES/kio6_man.mo share/locale/en_GB/LC_MESSAGES/kio6_mtp.mo share/locale/en_GB/LC_MESSAGES/kio6_nfs.mo share/locale/en_GB/LC_MESSAGES/kio6_recentlyused.mo share/locale/en_GB/LC_MESSAGES/kio6_sftp.mo share/locale/en_GB/LC_MESSAGES/kio6_smb.mo share/locale/en_GB/LC_MESSAGES/kio6_thumbnail.mo share/locale/eo/LC_MESSAGES/kio-extras_kcms.mo share/locale/eo/LC_MESSAGES/kio6_activities.mo share/locale/eo/LC_MESSAGES/kio6_afc.mo share/locale/eo/LC_MESSAGES/kio6_archive.mo share/locale/eo/LC_MESSAGES/kio6_filenamesearch.mo share/locale/eo/LC_MESSAGES/kio6_fish.mo share/locale/eo/LC_MESSAGES/kio6_info.mo share/locale/eo/LC_MESSAGES/kio6_man.mo share/locale/eo/LC_MESSAGES/kio6_mtp.mo share/locale/eo/LC_MESSAGES/kio6_nfs.mo share/locale/eo/LC_MESSAGES/kio6_recentlyused.mo share/locale/eo/LC_MESSAGES/kio6_sftp.mo share/locale/eo/LC_MESSAGES/kio6_smb.mo share/locale/eo/LC_MESSAGES/kio6_thumbnail.mo share/locale/es/LC_MESSAGES/kio-extras_kcms.mo share/locale/es/LC_MESSAGES/kio6_activities.mo share/locale/es/LC_MESSAGES/kio6_afc.mo share/locale/es/LC_MESSAGES/kio6_archive.mo share/locale/es/LC_MESSAGES/kio6_filenamesearch.mo share/locale/es/LC_MESSAGES/kio6_fish.mo share/locale/es/LC_MESSAGES/kio6_info.mo share/locale/es/LC_MESSAGES/kio6_man.mo share/locale/es/LC_MESSAGES/kio6_mtp.mo share/locale/es/LC_MESSAGES/kio6_nfs.mo share/locale/es/LC_MESSAGES/kio6_recentlyused.mo share/locale/es/LC_MESSAGES/kio6_sftp.mo share/locale/es/LC_MESSAGES/kio6_smb.mo share/locale/es/LC_MESSAGES/kio6_thumbnail.mo share/locale/et/LC_MESSAGES/kio-extras_kcms.mo share/locale/et/LC_MESSAGES/kio6_activities.mo share/locale/et/LC_MESSAGES/kio6_archive.mo share/locale/et/LC_MESSAGES/kio6_fish.mo share/locale/et/LC_MESSAGES/kio6_info.mo share/locale/et/LC_MESSAGES/kio6_man.mo share/locale/et/LC_MESSAGES/kio6_mtp.mo share/locale/et/LC_MESSAGES/kio6_nfs.mo share/locale/et/LC_MESSAGES/kio6_sftp.mo share/locale/et/LC_MESSAGES/kio6_smb.mo share/locale/et/LC_MESSAGES/kio6_thumbnail.mo share/locale/eu/LC_MESSAGES/kio-extras_kcms.mo share/locale/eu/LC_MESSAGES/kio6_activities.mo share/locale/eu/LC_MESSAGES/kio6_afc.mo share/locale/eu/LC_MESSAGES/kio6_archive.mo share/locale/eu/LC_MESSAGES/kio6_filenamesearch.mo share/locale/eu/LC_MESSAGES/kio6_fish.mo share/locale/eu/LC_MESSAGES/kio6_info.mo share/locale/eu/LC_MESSAGES/kio6_man.mo share/locale/eu/LC_MESSAGES/kio6_mtp.mo share/locale/eu/LC_MESSAGES/kio6_nfs.mo share/locale/eu/LC_MESSAGES/kio6_recentlyused.mo share/locale/eu/LC_MESSAGES/kio6_sftp.mo share/locale/eu/LC_MESSAGES/kio6_smb.mo share/locale/eu/LC_MESSAGES/kio6_thumbnail.mo share/locale/fa/LC_MESSAGES/kio-extras_kcms.mo share/locale/fa/LC_MESSAGES/kio6_archive.mo share/locale/fa/LC_MESSAGES/kio6_fish.mo share/locale/fa/LC_MESSAGES/kio6_info.mo share/locale/fa/LC_MESSAGES/kio6_man.mo share/locale/fa/LC_MESSAGES/kio6_nfs.mo share/locale/fa/LC_MESSAGES/kio6_sftp.mo share/locale/fa/LC_MESSAGES/kio6_smb.mo share/locale/fa/LC_MESSAGES/kio6_thumbnail.mo share/locale/fi/LC_MESSAGES/kio-extras_kcms.mo share/locale/fi/LC_MESSAGES/kio6_activities.mo share/locale/fi/LC_MESSAGES/kio6_afc.mo share/locale/fi/LC_MESSAGES/kio6_archive.mo share/locale/fi/LC_MESSAGES/kio6_filenamesearch.mo share/locale/fi/LC_MESSAGES/kio6_fish.mo share/locale/fi/LC_MESSAGES/kio6_info.mo share/locale/fi/LC_MESSAGES/kio6_man.mo share/locale/fi/LC_MESSAGES/kio6_mtp.mo share/locale/fi/LC_MESSAGES/kio6_nfs.mo share/locale/fi/LC_MESSAGES/kio6_recentlyused.mo share/locale/fi/LC_MESSAGES/kio6_sftp.mo share/locale/fi/LC_MESSAGES/kio6_smb.mo share/locale/fi/LC_MESSAGES/kio6_thumbnail.mo share/locale/fr/LC_MESSAGES/kio-extras_kcms.mo share/locale/fr/LC_MESSAGES/kio6_activities.mo share/locale/fr/LC_MESSAGES/kio6_afc.mo share/locale/fr/LC_MESSAGES/kio6_archive.mo share/locale/fr/LC_MESSAGES/kio6_filenamesearch.mo share/locale/fr/LC_MESSAGES/kio6_fish.mo share/locale/fr/LC_MESSAGES/kio6_info.mo share/locale/fr/LC_MESSAGES/kio6_man.mo share/locale/fr/LC_MESSAGES/kio6_mtp.mo share/locale/fr/LC_MESSAGES/kio6_nfs.mo share/locale/fr/LC_MESSAGES/kio6_recentlyused.mo share/locale/fr/LC_MESSAGES/kio6_sftp.mo share/locale/fr/LC_MESSAGES/kio6_smb.mo share/locale/fr/LC_MESSAGES/kio6_thumbnail.mo share/locale/fy/LC_MESSAGES/kio-extras_kcms.mo share/locale/fy/LC_MESSAGES/kio6_archive.mo share/locale/fy/LC_MESSAGES/kio6_fish.mo share/locale/fy/LC_MESSAGES/kio6_info.mo share/locale/fy/LC_MESSAGES/kio6_man.mo share/locale/fy/LC_MESSAGES/kio6_nfs.mo share/locale/fy/LC_MESSAGES/kio6_sftp.mo share/locale/fy/LC_MESSAGES/kio6_smb.mo share/locale/fy/LC_MESSAGES/kio6_thumbnail.mo share/locale/ga/LC_MESSAGES/kio-extras_kcms.mo share/locale/ga/LC_MESSAGES/kio6_activities.mo share/locale/ga/LC_MESSAGES/kio6_afc.mo share/locale/ga/LC_MESSAGES/kio6_archive.mo share/locale/ga/LC_MESSAGES/kio6_filenamesearch.mo share/locale/ga/LC_MESSAGES/kio6_fish.mo share/locale/ga/LC_MESSAGES/kio6_info.mo share/locale/ga/LC_MESSAGES/kio6_man.mo share/locale/ga/LC_MESSAGES/kio6_mtp.mo share/locale/ga/LC_MESSAGES/kio6_nfs.mo share/locale/ga/LC_MESSAGES/kio6_recentlyused.mo share/locale/ga/LC_MESSAGES/kio6_sftp.mo share/locale/ga/LC_MESSAGES/kio6_smb.mo share/locale/ga/LC_MESSAGES/kio6_thumbnail.mo share/locale/gd/LC_MESSAGES/kio6_activities.mo share/locale/gl/LC_MESSAGES/kio-extras_kcms.mo share/locale/gl/LC_MESSAGES/kio6_activities.mo share/locale/gl/LC_MESSAGES/kio6_afc.mo share/locale/gl/LC_MESSAGES/kio6_archive.mo share/locale/gl/LC_MESSAGES/kio6_filenamesearch.mo share/locale/gl/LC_MESSAGES/kio6_fish.mo share/locale/gl/LC_MESSAGES/kio6_info.mo share/locale/gl/LC_MESSAGES/kio6_man.mo share/locale/gl/LC_MESSAGES/kio6_mtp.mo share/locale/gl/LC_MESSAGES/kio6_nfs.mo share/locale/gl/LC_MESSAGES/kio6_recentlyused.mo share/locale/gl/LC_MESSAGES/kio6_sftp.mo share/locale/gl/LC_MESSAGES/kio6_smb.mo share/locale/gl/LC_MESSAGES/kio6_thumbnail.mo share/locale/gu/LC_MESSAGES/kio-extras_kcms.mo share/locale/gu/LC_MESSAGES/kio6_activities.mo share/locale/gu/LC_MESSAGES/kio6_archive.mo share/locale/gu/LC_MESSAGES/kio6_fish.mo share/locale/gu/LC_MESSAGES/kio6_info.mo share/locale/gu/LC_MESSAGES/kio6_man.mo share/locale/gu/LC_MESSAGES/kio6_nfs.mo share/locale/gu/LC_MESSAGES/kio6_sftp.mo share/locale/gu/LC_MESSAGES/kio6_smb.mo share/locale/gu/LC_MESSAGES/kio6_thumbnail.mo share/locale/he/LC_MESSAGES/kio-extras_kcms.mo share/locale/he/LC_MESSAGES/kio6_activities.mo share/locale/he/LC_MESSAGES/kio6_afc.mo share/locale/he/LC_MESSAGES/kio6_archive.mo share/locale/he/LC_MESSAGES/kio6_filenamesearch.mo share/locale/he/LC_MESSAGES/kio6_fish.mo share/locale/he/LC_MESSAGES/kio6_info.mo share/locale/he/LC_MESSAGES/kio6_man.mo share/locale/he/LC_MESSAGES/kio6_mtp.mo share/locale/he/LC_MESSAGES/kio6_nfs.mo share/locale/he/LC_MESSAGES/kio6_recentlyused.mo share/locale/he/LC_MESSAGES/kio6_sftp.mo share/locale/he/LC_MESSAGES/kio6_smb.mo share/locale/he/LC_MESSAGES/kio6_thumbnail.mo share/locale/hi/LC_MESSAGES/kio-extras_kcms.mo share/locale/hi/LC_MESSAGES/kio6_activities.mo share/locale/hi/LC_MESSAGES/kio6_afc.mo share/locale/hi/LC_MESSAGES/kio6_archive.mo share/locale/hi/LC_MESSAGES/kio6_filenamesearch.mo share/locale/hi/LC_MESSAGES/kio6_fish.mo share/locale/hi/LC_MESSAGES/kio6_info.mo share/locale/hi/LC_MESSAGES/kio6_man.mo share/locale/hi/LC_MESSAGES/kio6_mtp.mo share/locale/hi/LC_MESSAGES/kio6_nfs.mo share/locale/hi/LC_MESSAGES/kio6_recentlyused.mo share/locale/hi/LC_MESSAGES/kio6_sftp.mo share/locale/hi/LC_MESSAGES/kio6_smb.mo share/locale/hi/LC_MESSAGES/kio6_thumbnail.mo share/locale/hne/LC_MESSAGES/kio6_archive.mo share/locale/hne/LC_MESSAGES/kio6_fish.mo share/locale/hne/LC_MESSAGES/kio6_man.mo share/locale/hne/LC_MESSAGES/kio6_nfs.mo share/locale/hne/LC_MESSAGES/kio6_sftp.mo share/locale/hne/LC_MESSAGES/kio6_smb.mo share/locale/hne/LC_MESSAGES/kio6_thumbnail.mo share/locale/hr/LC_MESSAGES/kio-extras_kcms.mo share/locale/hr/LC_MESSAGES/kio6_activities.mo share/locale/hr/LC_MESSAGES/kio6_archive.mo share/locale/hr/LC_MESSAGES/kio6_fish.mo share/locale/hr/LC_MESSAGES/kio6_info.mo share/locale/hr/LC_MESSAGES/kio6_man.mo share/locale/hr/LC_MESSAGES/kio6_nfs.mo share/locale/hr/LC_MESSAGES/kio6_sftp.mo share/locale/hr/LC_MESSAGES/kio6_smb.mo share/locale/hr/LC_MESSAGES/kio6_thumbnail.mo share/locale/hsb/LC_MESSAGES/kio-extras_kcms.mo share/locale/hsb/LC_MESSAGES/kio6_archive.mo share/locale/hsb/LC_MESSAGES/kio6_fish.mo share/locale/hsb/LC_MESSAGES/kio6_man.mo share/locale/hsb/LC_MESSAGES/kio6_nfs.mo share/locale/hsb/LC_MESSAGES/kio6_sftp.mo share/locale/hsb/LC_MESSAGES/kio6_smb.mo share/locale/hsb/LC_MESSAGES/kio6_thumbnail.mo share/locale/hu/LC_MESSAGES/kio-extras_kcms.mo share/locale/hu/LC_MESSAGES/kio6_activities.mo share/locale/hu/LC_MESSAGES/kio6_afc.mo share/locale/hu/LC_MESSAGES/kio6_archive.mo share/locale/hu/LC_MESSAGES/kio6_filenamesearch.mo share/locale/hu/LC_MESSAGES/kio6_fish.mo share/locale/hu/LC_MESSAGES/kio6_info.mo share/locale/hu/LC_MESSAGES/kio6_man.mo share/locale/hu/LC_MESSAGES/kio6_mtp.mo share/locale/hu/LC_MESSAGES/kio6_nfs.mo share/locale/hu/LC_MESSAGES/kio6_recentlyused.mo share/locale/hu/LC_MESSAGES/kio6_sftp.mo share/locale/hu/LC_MESSAGES/kio6_smb.mo share/locale/hu/LC_MESSAGES/kio6_thumbnail.mo share/locale/hy/LC_MESSAGES/kio6_fish.mo share/locale/ia/LC_MESSAGES/kio-extras_kcms.mo share/locale/ia/LC_MESSAGES/kio6_activities.mo share/locale/ia/LC_MESSAGES/kio6_afc.mo share/locale/ia/LC_MESSAGES/kio6_archive.mo share/locale/ia/LC_MESSAGES/kio6_filenamesearch.mo share/locale/ia/LC_MESSAGES/kio6_fish.mo share/locale/ia/LC_MESSAGES/kio6_info.mo share/locale/ia/LC_MESSAGES/kio6_man.mo share/locale/ia/LC_MESSAGES/kio6_mtp.mo share/locale/ia/LC_MESSAGES/kio6_nfs.mo share/locale/ia/LC_MESSAGES/kio6_recentlyused.mo share/locale/ia/LC_MESSAGES/kio6_sftp.mo share/locale/ia/LC_MESSAGES/kio6_smb.mo share/locale/ia/LC_MESSAGES/kio6_thumbnail.mo share/locale/id/LC_MESSAGES/kio-extras_kcms.mo share/locale/id/LC_MESSAGES/kio6_activities.mo share/locale/id/LC_MESSAGES/kio6_archive.mo share/locale/id/LC_MESSAGES/kio6_fish.mo share/locale/id/LC_MESSAGES/kio6_info.mo share/locale/id/LC_MESSAGES/kio6_man.mo share/locale/id/LC_MESSAGES/kio6_mtp.mo share/locale/id/LC_MESSAGES/kio6_nfs.mo share/locale/id/LC_MESSAGES/kio6_sftp.mo share/locale/id/LC_MESSAGES/kio6_smb.mo share/locale/id/LC_MESSAGES/kio6_thumbnail.mo share/locale/ie/LC_MESSAGES/kio-extras_kcms.mo share/locale/ie/LC_MESSAGES/kio6_archive.mo share/locale/ie/LC_MESSAGES/kio6_mtp.mo share/locale/is/LC_MESSAGES/kio-extras_kcms.mo share/locale/is/LC_MESSAGES/kio6_activities.mo share/locale/is/LC_MESSAGES/kio6_afc.mo share/locale/is/LC_MESSAGES/kio6_archive.mo share/locale/is/LC_MESSAGES/kio6_filenamesearch.mo share/locale/is/LC_MESSAGES/kio6_fish.mo share/locale/is/LC_MESSAGES/kio6_info.mo share/locale/is/LC_MESSAGES/kio6_man.mo share/locale/is/LC_MESSAGES/kio6_mtp.mo share/locale/is/LC_MESSAGES/kio6_nfs.mo share/locale/is/LC_MESSAGES/kio6_recentlyused.mo share/locale/is/LC_MESSAGES/kio6_sftp.mo share/locale/is/LC_MESSAGES/kio6_smb.mo share/locale/is/LC_MESSAGES/kio6_thumbnail.mo share/locale/it/LC_MESSAGES/kio-extras_kcms.mo share/locale/it/LC_MESSAGES/kio6_activities.mo share/locale/it/LC_MESSAGES/kio6_afc.mo share/locale/it/LC_MESSAGES/kio6_archive.mo share/locale/it/LC_MESSAGES/kio6_filenamesearch.mo share/locale/it/LC_MESSAGES/kio6_fish.mo share/locale/it/LC_MESSAGES/kio6_info.mo share/locale/it/LC_MESSAGES/kio6_man.mo share/locale/it/LC_MESSAGES/kio6_mtp.mo share/locale/it/LC_MESSAGES/kio6_nfs.mo share/locale/it/LC_MESSAGES/kio6_recentlyused.mo share/locale/it/LC_MESSAGES/kio6_sftp.mo share/locale/it/LC_MESSAGES/kio6_smb.mo share/locale/it/LC_MESSAGES/kio6_thumbnail.mo share/locale/ja/LC_MESSAGES/kio-extras_kcms.mo share/locale/ja/LC_MESSAGES/kio6_activities.mo share/locale/ja/LC_MESSAGES/kio6_afc.mo share/locale/ja/LC_MESSAGES/kio6_archive.mo share/locale/ja/LC_MESSAGES/kio6_fish.mo share/locale/ja/LC_MESSAGES/kio6_info.mo share/locale/ja/LC_MESSAGES/kio6_man.mo share/locale/ja/LC_MESSAGES/kio6_mtp.mo share/locale/ja/LC_MESSAGES/kio6_nfs.mo share/locale/ja/LC_MESSAGES/kio6_sftp.mo share/locale/ja/LC_MESSAGES/kio6_smb.mo share/locale/ja/LC_MESSAGES/kio6_thumbnail.mo share/locale/ka/LC_MESSAGES/kio-extras_kcms.mo share/locale/ka/LC_MESSAGES/kio6_activities.mo share/locale/ka/LC_MESSAGES/kio6_afc.mo share/locale/ka/LC_MESSAGES/kio6_archive.mo share/locale/ka/LC_MESSAGES/kio6_filenamesearch.mo share/locale/ka/LC_MESSAGES/kio6_fish.mo share/locale/ka/LC_MESSAGES/kio6_info.mo share/locale/ka/LC_MESSAGES/kio6_man.mo share/locale/ka/LC_MESSAGES/kio6_mtp.mo share/locale/ka/LC_MESSAGES/kio6_nfs.mo share/locale/ka/LC_MESSAGES/kio6_recentlyused.mo share/locale/ka/LC_MESSAGES/kio6_sftp.mo share/locale/ka/LC_MESSAGES/kio6_smb.mo share/locale/ka/LC_MESSAGES/kio6_thumbnail.mo share/locale/kk/LC_MESSAGES/kio-extras_kcms.mo share/locale/kk/LC_MESSAGES/kio6_activities.mo share/locale/kk/LC_MESSAGES/kio6_archive.mo share/locale/kk/LC_MESSAGES/kio6_fish.mo share/locale/kk/LC_MESSAGES/kio6_info.mo share/locale/kk/LC_MESSAGES/kio6_man.mo share/locale/kk/LC_MESSAGES/kio6_nfs.mo share/locale/kk/LC_MESSAGES/kio6_sftp.mo share/locale/kk/LC_MESSAGES/kio6_smb.mo share/locale/kk/LC_MESSAGES/kio6_thumbnail.mo share/locale/km/LC_MESSAGES/kio-extras_kcms.mo share/locale/km/LC_MESSAGES/kio6_activities.mo share/locale/km/LC_MESSAGES/kio6_archive.mo share/locale/km/LC_MESSAGES/kio6_fish.mo share/locale/km/LC_MESSAGES/kio6_info.mo share/locale/km/LC_MESSAGES/kio6_man.mo share/locale/km/LC_MESSAGES/kio6_nfs.mo share/locale/km/LC_MESSAGES/kio6_sftp.mo share/locale/km/LC_MESSAGES/kio6_smb.mo share/locale/km/LC_MESSAGES/kio6_thumbnail.mo share/locale/kn/LC_MESSAGES/kio6_activities.mo share/locale/kn/LC_MESSAGES/kio6_archive.mo share/locale/kn/LC_MESSAGES/kio6_fish.mo share/locale/kn/LC_MESSAGES/kio6_info.mo share/locale/kn/LC_MESSAGES/kio6_man.mo share/locale/kn/LC_MESSAGES/kio6_nfs.mo share/locale/kn/LC_MESSAGES/kio6_sftp.mo share/locale/kn/LC_MESSAGES/kio6_smb.mo share/locale/kn/LC_MESSAGES/kio6_thumbnail.mo share/locale/ko/LC_MESSAGES/kio-extras_kcms.mo share/locale/ko/LC_MESSAGES/kio6_activities.mo share/locale/ko/LC_MESSAGES/kio6_afc.mo share/locale/ko/LC_MESSAGES/kio6_archive.mo share/locale/ko/LC_MESSAGES/kio6_filenamesearch.mo share/locale/ko/LC_MESSAGES/kio6_fish.mo share/locale/ko/LC_MESSAGES/kio6_info.mo share/locale/ko/LC_MESSAGES/kio6_man.mo share/locale/ko/LC_MESSAGES/kio6_mtp.mo share/locale/ko/LC_MESSAGES/kio6_nfs.mo share/locale/ko/LC_MESSAGES/kio6_recentlyused.mo share/locale/ko/LC_MESSAGES/kio6_sftp.mo share/locale/ko/LC_MESSAGES/kio6_smb.mo share/locale/ko/LC_MESSAGES/kio6_thumbnail.mo share/locale/ku/LC_MESSAGES/kio-extras_kcms.mo share/locale/ku/LC_MESSAGES/kio6_archive.mo share/locale/ku/LC_MESSAGES/kio6_fish.mo share/locale/ku/LC_MESSAGES/kio6_man.mo share/locale/ku/LC_MESSAGES/kio6_nfs.mo share/locale/ku/LC_MESSAGES/kio6_sftp.mo share/locale/ku/LC_MESSAGES/kio6_smb.mo share/locale/ku/LC_MESSAGES/kio6_thumbnail.mo share/locale/lb/LC_MESSAGES/kio6_archive.mo share/locale/lb/LC_MESSAGES/kio6_nfs.mo share/locale/lt/LC_MESSAGES/kio-extras_kcms.mo share/locale/lt/LC_MESSAGES/kio6_activities.mo share/locale/lt/LC_MESSAGES/kio6_afc.mo share/locale/lt/LC_MESSAGES/kio6_archive.mo share/locale/lt/LC_MESSAGES/kio6_filenamesearch.mo share/locale/lt/LC_MESSAGES/kio6_fish.mo share/locale/lt/LC_MESSAGES/kio6_info.mo share/locale/lt/LC_MESSAGES/kio6_man.mo share/locale/lt/LC_MESSAGES/kio6_mtp.mo share/locale/lt/LC_MESSAGES/kio6_nfs.mo share/locale/lt/LC_MESSAGES/kio6_recentlyused.mo share/locale/lt/LC_MESSAGES/kio6_sftp.mo share/locale/lt/LC_MESSAGES/kio6_smb.mo share/locale/lt/LC_MESSAGES/kio6_thumbnail.mo share/locale/lv/LC_MESSAGES/kio-extras_kcms.mo share/locale/lv/LC_MESSAGES/kio6_activities.mo share/locale/lv/LC_MESSAGES/kio6_afc.mo share/locale/lv/LC_MESSAGES/kio6_archive.mo share/locale/lv/LC_MESSAGES/kio6_filenamesearch.mo share/locale/lv/LC_MESSAGES/kio6_fish.mo share/locale/lv/LC_MESSAGES/kio6_info.mo share/locale/lv/LC_MESSAGES/kio6_man.mo share/locale/lv/LC_MESSAGES/kio6_mtp.mo share/locale/lv/LC_MESSAGES/kio6_nfs.mo share/locale/lv/LC_MESSAGES/kio6_recentlyused.mo share/locale/lv/LC_MESSAGES/kio6_sftp.mo share/locale/lv/LC_MESSAGES/kio6_smb.mo share/locale/lv/LC_MESSAGES/kio6_thumbnail.mo share/locale/mai/LC_MESSAGES/kio-extras_kcms.mo share/locale/mai/LC_MESSAGES/kio6_archive.mo share/locale/mai/LC_MESSAGES/kio6_fish.mo share/locale/mai/LC_MESSAGES/kio6_info.mo share/locale/mai/LC_MESSAGES/kio6_man.mo share/locale/mai/LC_MESSAGES/kio6_nfs.mo share/locale/mai/LC_MESSAGES/kio6_sftp.mo share/locale/mai/LC_MESSAGES/kio6_smb.mo share/locale/mai/LC_MESSAGES/kio6_thumbnail.mo share/locale/mk/LC_MESSAGES/kio-extras_kcms.mo share/locale/mk/LC_MESSAGES/kio6_archive.mo share/locale/mk/LC_MESSAGES/kio6_fish.mo share/locale/mk/LC_MESSAGES/kio6_man.mo share/locale/mk/LC_MESSAGES/kio6_nfs.mo share/locale/mk/LC_MESSAGES/kio6_sftp.mo share/locale/mk/LC_MESSAGES/kio6_smb.mo share/locale/mk/LC_MESSAGES/kio6_thumbnail.mo share/locale/ml/LC_MESSAGES/kio-extras_kcms.mo share/locale/ml/LC_MESSAGES/kio6_archive.mo share/locale/ml/LC_MESSAGES/kio6_fish.mo share/locale/ml/LC_MESSAGES/kio6_info.mo share/locale/ml/LC_MESSAGES/kio6_man.mo share/locale/ml/LC_MESSAGES/kio6_nfs.mo share/locale/ml/LC_MESSAGES/kio6_sftp.mo share/locale/ml/LC_MESSAGES/kio6_smb.mo share/locale/ml/LC_MESSAGES/kio6_thumbnail.mo share/locale/mr/LC_MESSAGES/kio-extras_kcms.mo share/locale/mr/LC_MESSAGES/kio6_activities.mo share/locale/mr/LC_MESSAGES/kio6_archive.mo share/locale/mr/LC_MESSAGES/kio6_fish.mo share/locale/mr/LC_MESSAGES/kio6_info.mo share/locale/mr/LC_MESSAGES/kio6_man.mo share/locale/mr/LC_MESSAGES/kio6_nfs.mo share/locale/mr/LC_MESSAGES/kio6_sftp.mo share/locale/mr/LC_MESSAGES/kio6_smb.mo share/locale/mr/LC_MESSAGES/kio6_thumbnail.mo share/locale/ms/LC_MESSAGES/kio-extras_kcms.mo share/locale/ms/LC_MESSAGES/kio6_activities.mo share/locale/ms/LC_MESSAGES/kio6_archive.mo share/locale/ms/LC_MESSAGES/kio6_fish.mo share/locale/ms/LC_MESSAGES/kio6_info.mo share/locale/ms/LC_MESSAGES/kio6_man.mo share/locale/ms/LC_MESSAGES/kio6_nfs.mo share/locale/ms/LC_MESSAGES/kio6_sftp.mo share/locale/ms/LC_MESSAGES/kio6_smb.mo share/locale/ms/LC_MESSAGES/kio6_thumbnail.mo share/locale/my/LC_MESSAGES/kio-extras_kcms.mo share/locale/nb/LC_MESSAGES/kio-extras_kcms.mo share/locale/nb/LC_MESSAGES/kio6_activities.mo share/locale/nb/LC_MESSAGES/kio6_archive.mo share/locale/nb/LC_MESSAGES/kio6_fish.mo share/locale/nb/LC_MESSAGES/kio6_info.mo share/locale/nb/LC_MESSAGES/kio6_man.mo share/locale/nb/LC_MESSAGES/kio6_nfs.mo share/locale/nb/LC_MESSAGES/kio6_sftp.mo share/locale/nb/LC_MESSAGES/kio6_smb.mo share/locale/nb/LC_MESSAGES/kio6_thumbnail.mo share/locale/nds/LC_MESSAGES/kio-extras_kcms.mo share/locale/nds/LC_MESSAGES/kio6_activities.mo share/locale/nds/LC_MESSAGES/kio6_archive.mo share/locale/nds/LC_MESSAGES/kio6_fish.mo share/locale/nds/LC_MESSAGES/kio6_info.mo share/locale/nds/LC_MESSAGES/kio6_man.mo share/locale/nds/LC_MESSAGES/kio6_nfs.mo share/locale/nds/LC_MESSAGES/kio6_sftp.mo share/locale/nds/LC_MESSAGES/kio6_smb.mo share/locale/nds/LC_MESSAGES/kio6_thumbnail.mo share/locale/ne/LC_MESSAGES/kio-extras_kcms.mo share/locale/ne/LC_MESSAGES/kio6_archive.mo share/locale/ne/LC_MESSAGES/kio6_fish.mo share/locale/ne/LC_MESSAGES/kio6_man.mo share/locale/ne/LC_MESSAGES/kio6_nfs.mo share/locale/ne/LC_MESSAGES/kio6_sftp.mo share/locale/ne/LC_MESSAGES/kio6_smb.mo share/locale/ne/LC_MESSAGES/kio6_thumbnail.mo share/locale/nl/LC_MESSAGES/kio-extras_kcms.mo share/locale/nl/LC_MESSAGES/kio6_activities.mo share/locale/nl/LC_MESSAGES/kio6_afc.mo share/locale/nl/LC_MESSAGES/kio6_archive.mo share/locale/nl/LC_MESSAGES/kio6_filenamesearch.mo share/locale/nl/LC_MESSAGES/kio6_fish.mo share/locale/nl/LC_MESSAGES/kio6_info.mo share/locale/nl/LC_MESSAGES/kio6_man.mo share/locale/nl/LC_MESSAGES/kio6_mtp.mo share/locale/nl/LC_MESSAGES/kio6_nfs.mo share/locale/nl/LC_MESSAGES/kio6_recentlyused.mo share/locale/nl/LC_MESSAGES/kio6_sftp.mo share/locale/nl/LC_MESSAGES/kio6_smb.mo share/locale/nl/LC_MESSAGES/kio6_thumbnail.mo share/locale/nn/LC_MESSAGES/kio-extras_kcms.mo share/locale/nn/LC_MESSAGES/kio6_activities.mo share/locale/nn/LC_MESSAGES/kio6_afc.mo share/locale/nn/LC_MESSAGES/kio6_archive.mo share/locale/nn/LC_MESSAGES/kio6_filenamesearch.mo share/locale/nn/LC_MESSAGES/kio6_fish.mo share/locale/nn/LC_MESSAGES/kio6_info.mo share/locale/nn/LC_MESSAGES/kio6_man.mo share/locale/nn/LC_MESSAGES/kio6_mtp.mo share/locale/nn/LC_MESSAGES/kio6_nfs.mo share/locale/nn/LC_MESSAGES/kio6_recentlyused.mo share/locale/nn/LC_MESSAGES/kio6_sftp.mo share/locale/nn/LC_MESSAGES/kio6_smb.mo share/locale/nn/LC_MESSAGES/kio6_thumbnail.mo share/locale/oc/LC_MESSAGES/kio-extras_kcms.mo share/locale/oc/LC_MESSAGES/kio6_archive.mo share/locale/oc/LC_MESSAGES/kio6_fish.mo share/locale/oc/LC_MESSAGES/kio6_man.mo share/locale/oc/LC_MESSAGES/kio6_nfs.mo share/locale/oc/LC_MESSAGES/kio6_sftp.mo share/locale/oc/LC_MESSAGES/kio6_smb.mo share/locale/oc/LC_MESSAGES/kio6_thumbnail.mo share/locale/or/LC_MESSAGES/kio6_archive.mo share/locale/or/LC_MESSAGES/kio6_fish.mo share/locale/or/LC_MESSAGES/kio6_man.mo share/locale/or/LC_MESSAGES/kio6_nfs.mo share/locale/or/LC_MESSAGES/kio6_sftp.mo share/locale/or/LC_MESSAGES/kio6_smb.mo share/locale/or/LC_MESSAGES/kio6_thumbnail.mo share/locale/pa/LC_MESSAGES/kio-extras_kcms.mo share/locale/pa/LC_MESSAGES/kio6_activities.mo share/locale/pa/LC_MESSAGES/kio6_afc.mo share/locale/pa/LC_MESSAGES/kio6_archive.mo share/locale/pa/LC_MESSAGES/kio6_fish.mo share/locale/pa/LC_MESSAGES/kio6_info.mo share/locale/pa/LC_MESSAGES/kio6_man.mo share/locale/pa/LC_MESSAGES/kio6_mtp.mo share/locale/pa/LC_MESSAGES/kio6_nfs.mo share/locale/pa/LC_MESSAGES/kio6_sftp.mo share/locale/pa/LC_MESSAGES/kio6_smb.mo share/locale/pa/LC_MESSAGES/kio6_thumbnail.mo share/locale/pl/LC_MESSAGES/kio-extras_kcms.mo share/locale/pl/LC_MESSAGES/kio6_activities.mo share/locale/pl/LC_MESSAGES/kio6_afc.mo share/locale/pl/LC_MESSAGES/kio6_archive.mo share/locale/pl/LC_MESSAGES/kio6_filenamesearch.mo share/locale/pl/LC_MESSAGES/kio6_fish.mo share/locale/pl/LC_MESSAGES/kio6_info.mo share/locale/pl/LC_MESSAGES/kio6_man.mo share/locale/pl/LC_MESSAGES/kio6_mtp.mo share/locale/pl/LC_MESSAGES/kio6_nfs.mo share/locale/pl/LC_MESSAGES/kio6_recentlyused.mo share/locale/pl/LC_MESSAGES/kio6_sftp.mo share/locale/pl/LC_MESSAGES/kio6_smb.mo share/locale/pl/LC_MESSAGES/kio6_thumbnail.mo share/locale/pt/LC_MESSAGES/kio-extras_kcms.mo share/locale/pt/LC_MESSAGES/kio6_activities.mo share/locale/pt/LC_MESSAGES/kio6_afc.mo share/locale/pt/LC_MESSAGES/kio6_archive.mo share/locale/pt/LC_MESSAGES/kio6_fish.mo share/locale/pt/LC_MESSAGES/kio6_info.mo share/locale/pt/LC_MESSAGES/kio6_man.mo share/locale/pt/LC_MESSAGES/kio6_mtp.mo share/locale/pt/LC_MESSAGES/kio6_nfs.mo share/locale/pt/LC_MESSAGES/kio6_sftp.mo share/locale/pt/LC_MESSAGES/kio6_smb.mo share/locale/pt/LC_MESSAGES/kio6_thumbnail.mo share/locale/pt_BR/LC_MESSAGES/kio-extras_kcms.mo share/locale/pt_BR/LC_MESSAGES/kio6_activities.mo share/locale/pt_BR/LC_MESSAGES/kio6_afc.mo share/locale/pt_BR/LC_MESSAGES/kio6_archive.mo share/locale/pt_BR/LC_MESSAGES/kio6_filenamesearch.mo share/locale/pt_BR/LC_MESSAGES/kio6_fish.mo share/locale/pt_BR/LC_MESSAGES/kio6_info.mo share/locale/pt_BR/LC_MESSAGES/kio6_man.mo share/locale/pt_BR/LC_MESSAGES/kio6_mtp.mo share/locale/pt_BR/LC_MESSAGES/kio6_nfs.mo share/locale/pt_BR/LC_MESSAGES/kio6_recentlyused.mo share/locale/pt_BR/LC_MESSAGES/kio6_sftp.mo share/locale/pt_BR/LC_MESSAGES/kio6_smb.mo share/locale/pt_BR/LC_MESSAGES/kio6_thumbnail.mo share/locale/ro/LC_MESSAGES/kio-extras_kcms.mo share/locale/ro/LC_MESSAGES/kio6_activities.mo share/locale/ro/LC_MESSAGES/kio6_afc.mo share/locale/ro/LC_MESSAGES/kio6_archive.mo share/locale/ro/LC_MESSAGES/kio6_filenamesearch.mo share/locale/ro/LC_MESSAGES/kio6_fish.mo share/locale/ro/LC_MESSAGES/kio6_info.mo share/locale/ro/LC_MESSAGES/kio6_man.mo share/locale/ro/LC_MESSAGES/kio6_mtp.mo share/locale/ro/LC_MESSAGES/kio6_nfs.mo share/locale/ro/LC_MESSAGES/kio6_recentlyused.mo share/locale/ro/LC_MESSAGES/kio6_sftp.mo share/locale/ro/LC_MESSAGES/kio6_smb.mo share/locale/ro/LC_MESSAGES/kio6_thumbnail.mo share/locale/ru/LC_MESSAGES/kio-extras_kcms.mo share/locale/ru/LC_MESSAGES/kio6_activities.mo share/locale/ru/LC_MESSAGES/kio6_afc.mo share/locale/ru/LC_MESSAGES/kio6_archive.mo share/locale/ru/LC_MESSAGES/kio6_filenamesearch.mo share/locale/ru/LC_MESSAGES/kio6_fish.mo share/locale/ru/LC_MESSAGES/kio6_info.mo share/locale/ru/LC_MESSAGES/kio6_man.mo share/locale/ru/LC_MESSAGES/kio6_mtp.mo share/locale/ru/LC_MESSAGES/kio6_nfs.mo share/locale/ru/LC_MESSAGES/kio6_recentlyused.mo share/locale/ru/LC_MESSAGES/kio6_sftp.mo share/locale/ru/LC_MESSAGES/kio6_smb.mo share/locale/ru/LC_MESSAGES/kio6_thumbnail.mo share/locale/sa/LC_MESSAGES/kio-extras_kcms.mo share/locale/sa/LC_MESSAGES/kio6_activities.mo share/locale/sa/LC_MESSAGES/kio6_afc.mo share/locale/sa/LC_MESSAGES/kio6_archive.mo share/locale/sa/LC_MESSAGES/kio6_filenamesearch.mo share/locale/sa/LC_MESSAGES/kio6_fish.mo share/locale/sa/LC_MESSAGES/kio6_info.mo share/locale/sa/LC_MESSAGES/kio6_man.mo share/locale/sa/LC_MESSAGES/kio6_mtp.mo share/locale/sa/LC_MESSAGES/kio6_nfs.mo share/locale/sa/LC_MESSAGES/kio6_recentlyused.mo share/locale/sa/LC_MESSAGES/kio6_sftp.mo share/locale/sa/LC_MESSAGES/kio6_smb.mo share/locale/sa/LC_MESSAGES/kio6_thumbnail.mo share/locale/se/LC_MESSAGES/kio-extras_kcms.mo share/locale/se/LC_MESSAGES/kio6_activities.mo share/locale/se/LC_MESSAGES/kio6_fish.mo share/locale/se/LC_MESSAGES/kio6_man.mo share/locale/se/LC_MESSAGES/kio6_nfs.mo share/locale/se/LC_MESSAGES/kio6_sftp.mo share/locale/se/LC_MESSAGES/kio6_smb.mo share/locale/se/LC_MESSAGES/kio6_thumbnail.mo share/locale/si/LC_MESSAGES/kio6_archive.mo share/locale/si/LC_MESSAGES/kio6_fish.mo share/locale/si/LC_MESSAGES/kio6_info.mo share/locale/si/LC_MESSAGES/kio6_man.mo share/locale/si/LC_MESSAGES/kio6_nfs.mo share/locale/si/LC_MESSAGES/kio6_sftp.mo share/locale/si/LC_MESSAGES/kio6_smb.mo share/locale/si/LC_MESSAGES/kio6_thumbnail.mo share/locale/sk/LC_MESSAGES/kio-extras_kcms.mo share/locale/sk/LC_MESSAGES/kio6_activities.mo share/locale/sk/LC_MESSAGES/kio6_afc.mo share/locale/sk/LC_MESSAGES/kio6_archive.mo share/locale/sk/LC_MESSAGES/kio6_filenamesearch.mo share/locale/sk/LC_MESSAGES/kio6_fish.mo share/locale/sk/LC_MESSAGES/kio6_info.mo share/locale/sk/LC_MESSAGES/kio6_man.mo share/locale/sk/LC_MESSAGES/kio6_mtp.mo share/locale/sk/LC_MESSAGES/kio6_nfs.mo share/locale/sk/LC_MESSAGES/kio6_recentlyused.mo share/locale/sk/LC_MESSAGES/kio6_sftp.mo share/locale/sk/LC_MESSAGES/kio6_smb.mo share/locale/sk/LC_MESSAGES/kio6_thumbnail.mo share/locale/sl/LC_MESSAGES/kio-extras_kcms.mo share/locale/sl/LC_MESSAGES/kio6_activities.mo share/locale/sl/LC_MESSAGES/kio6_afc.mo share/locale/sl/LC_MESSAGES/kio6_archive.mo share/locale/sl/LC_MESSAGES/kio6_filenamesearch.mo share/locale/sl/LC_MESSAGES/kio6_fish.mo share/locale/sl/LC_MESSAGES/kio6_info.mo share/locale/sl/LC_MESSAGES/kio6_man.mo share/locale/sl/LC_MESSAGES/kio6_mtp.mo share/locale/sl/LC_MESSAGES/kio6_nfs.mo share/locale/sl/LC_MESSAGES/kio6_recentlyused.mo share/locale/sl/LC_MESSAGES/kio6_sftp.mo share/locale/sl/LC_MESSAGES/kio6_smb.mo share/locale/sl/LC_MESSAGES/kio6_thumbnail.mo share/locale/sq/LC_MESSAGES/kio-extras_kcms.mo share/locale/sq/LC_MESSAGES/kio6_archive.mo share/locale/sq/LC_MESSAGES/kio6_fish.mo share/locale/sq/LC_MESSAGES/kio6_info.mo share/locale/sq/LC_MESSAGES/kio6_man.mo share/locale/sq/LC_MESSAGES/kio6_nfs.mo share/locale/sq/LC_MESSAGES/kio6_sftp.mo share/locale/sq/LC_MESSAGES/kio6_smb.mo share/locale/sq/LC_MESSAGES/kio6_thumbnail.mo share/locale/sr/LC_MESSAGES/kio-extras_kcms.mo share/locale/sr/LC_MESSAGES/kio6_activities.mo share/locale/sr/LC_MESSAGES/kio6_archive.mo share/locale/sr/LC_MESSAGES/kio6_fish.mo share/locale/sr/LC_MESSAGES/kio6_info.mo share/locale/sr/LC_MESSAGES/kio6_man.mo share/locale/sr/LC_MESSAGES/kio6_mtp.mo share/locale/sr/LC_MESSAGES/kio6_nfs.mo share/locale/sr/LC_MESSAGES/kio6_sftp.mo share/locale/sr/LC_MESSAGES/kio6_smb.mo share/locale/sr/LC_MESSAGES/kio6_thumbnail.mo share/locale/sr@ijekavian/LC_MESSAGES/kio-extras_kcms.mo share/locale/sr@ijekavian/LC_MESSAGES/kio6_activities.mo share/locale/sr@ijekavian/LC_MESSAGES/kio6_archive.mo share/locale/sr@ijekavian/LC_MESSAGES/kio6_fish.mo share/locale/sr@ijekavian/LC_MESSAGES/kio6_info.mo share/locale/sr@ijekavian/LC_MESSAGES/kio6_man.mo share/locale/sr@ijekavian/LC_MESSAGES/kio6_mtp.mo share/locale/sr@ijekavian/LC_MESSAGES/kio6_nfs.mo share/locale/sr@ijekavian/LC_MESSAGES/kio6_sftp.mo share/locale/sr@ijekavian/LC_MESSAGES/kio6_smb.mo share/locale/sr@ijekavian/LC_MESSAGES/kio6_thumbnail.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kio-extras_kcms.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kio6_activities.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kio6_archive.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kio6_fish.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kio6_info.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kio6_man.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kio6_mtp.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kio6_nfs.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kio6_sftp.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kio6_smb.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kio6_thumbnail.mo share/locale/sr@latin/LC_MESSAGES/kio-extras_kcms.mo share/locale/sr@latin/LC_MESSAGES/kio6_activities.mo share/locale/sr@latin/LC_MESSAGES/kio6_archive.mo share/locale/sr@latin/LC_MESSAGES/kio6_fish.mo share/locale/sr@latin/LC_MESSAGES/kio6_info.mo share/locale/sr@latin/LC_MESSAGES/kio6_man.mo share/locale/sr@latin/LC_MESSAGES/kio6_mtp.mo share/locale/sr@latin/LC_MESSAGES/kio6_nfs.mo share/locale/sr@latin/LC_MESSAGES/kio6_sftp.mo share/locale/sr@latin/LC_MESSAGES/kio6_smb.mo share/locale/sr@latin/LC_MESSAGES/kio6_thumbnail.mo share/locale/sv/LC_MESSAGES/kio-extras_kcms.mo share/locale/sv/LC_MESSAGES/kio6_activities.mo share/locale/sv/LC_MESSAGES/kio6_afc.mo share/locale/sv/LC_MESSAGES/kio6_archive.mo share/locale/sv/LC_MESSAGES/kio6_filenamesearch.mo share/locale/sv/LC_MESSAGES/kio6_fish.mo share/locale/sv/LC_MESSAGES/kio6_info.mo share/locale/sv/LC_MESSAGES/kio6_man.mo share/locale/sv/LC_MESSAGES/kio6_mtp.mo share/locale/sv/LC_MESSAGES/kio6_nfs.mo share/locale/sv/LC_MESSAGES/kio6_recentlyused.mo share/locale/sv/LC_MESSAGES/kio6_sftp.mo share/locale/sv/LC_MESSAGES/kio6_smb.mo share/locale/sv/LC_MESSAGES/kio6_thumbnail.mo share/locale/ta/LC_MESSAGES/kio-extras_kcms.mo share/locale/ta/LC_MESSAGES/kio6_activities.mo share/locale/ta/LC_MESSAGES/kio6_afc.mo share/locale/ta/LC_MESSAGES/kio6_archive.mo +share/locale/ta/LC_MESSAGES/kio6_filenamesearch.mo share/locale/ta/LC_MESSAGES/kio6_fish.mo share/locale/ta/LC_MESSAGES/kio6_info.mo share/locale/ta/LC_MESSAGES/kio6_man.mo share/locale/ta/LC_MESSAGES/kio6_mtp.mo share/locale/ta/LC_MESSAGES/kio6_nfs.mo +share/locale/ta/LC_MESSAGES/kio6_recentlyused.mo share/locale/ta/LC_MESSAGES/kio6_sftp.mo share/locale/ta/LC_MESSAGES/kio6_smb.mo share/locale/ta/LC_MESSAGES/kio6_thumbnail.mo share/locale/te/LC_MESSAGES/kio6_archive.mo share/locale/te/LC_MESSAGES/kio6_fish.mo share/locale/te/LC_MESSAGES/kio6_man.mo share/locale/te/LC_MESSAGES/kio6_nfs.mo share/locale/te/LC_MESSAGES/kio6_sftp.mo share/locale/te/LC_MESSAGES/kio6_smb.mo share/locale/te/LC_MESSAGES/kio6_thumbnail.mo share/locale/tg/LC_MESSAGES/kio-extras_kcms.mo share/locale/tg/LC_MESSAGES/kio6_activities.mo share/locale/tg/LC_MESSAGES/kio6_archive.mo share/locale/tg/LC_MESSAGES/kio6_fish.mo share/locale/tg/LC_MESSAGES/kio6_info.mo share/locale/tg/LC_MESSAGES/kio6_man.mo share/locale/tg/LC_MESSAGES/kio6_nfs.mo share/locale/tg/LC_MESSAGES/kio6_sftp.mo share/locale/tg/LC_MESSAGES/kio6_smb.mo share/locale/tg/LC_MESSAGES/kio6_thumbnail.mo share/locale/th/LC_MESSAGES/kio-extras_kcms.mo share/locale/th/LC_MESSAGES/kio6_activities.mo share/locale/th/LC_MESSAGES/kio6_archive.mo share/locale/th/LC_MESSAGES/kio6_fish.mo share/locale/th/LC_MESSAGES/kio6_info.mo share/locale/th/LC_MESSAGES/kio6_man.mo share/locale/th/LC_MESSAGES/kio6_nfs.mo share/locale/th/LC_MESSAGES/kio6_sftp.mo share/locale/th/LC_MESSAGES/kio6_smb.mo share/locale/th/LC_MESSAGES/kio6_thumbnail.mo share/locale/tok/LC_MESSAGES/kio-extras_kcms.mo share/locale/tr/LC_MESSAGES/kio-extras_kcms.mo share/locale/tr/LC_MESSAGES/kio6_activities.mo share/locale/tr/LC_MESSAGES/kio6_afc.mo share/locale/tr/LC_MESSAGES/kio6_archive.mo share/locale/tr/LC_MESSAGES/kio6_filenamesearch.mo share/locale/tr/LC_MESSAGES/kio6_fish.mo share/locale/tr/LC_MESSAGES/kio6_info.mo share/locale/tr/LC_MESSAGES/kio6_man.mo share/locale/tr/LC_MESSAGES/kio6_mtp.mo share/locale/tr/LC_MESSAGES/kio6_nfs.mo share/locale/tr/LC_MESSAGES/kio6_recentlyused.mo share/locale/tr/LC_MESSAGES/kio6_sftp.mo share/locale/tr/LC_MESSAGES/kio6_smb.mo share/locale/tr/LC_MESSAGES/kio6_thumbnail.mo share/locale/ug/LC_MESSAGES/kio-extras_kcms.mo share/locale/ug/LC_MESSAGES/kio6_activities.mo share/locale/ug/LC_MESSAGES/kio6_archive.mo share/locale/ug/LC_MESSAGES/kio6_fish.mo share/locale/ug/LC_MESSAGES/kio6_info.mo share/locale/ug/LC_MESSAGES/kio6_man.mo share/locale/ug/LC_MESSAGES/kio6_nfs.mo share/locale/ug/LC_MESSAGES/kio6_sftp.mo share/locale/ug/LC_MESSAGES/kio6_smb.mo share/locale/ug/LC_MESSAGES/kio6_thumbnail.mo share/locale/uk/LC_MESSAGES/kio-extras_kcms.mo share/locale/uk/LC_MESSAGES/kio6_activities.mo share/locale/uk/LC_MESSAGES/kio6_afc.mo share/locale/uk/LC_MESSAGES/kio6_archive.mo share/locale/uk/LC_MESSAGES/kio6_filenamesearch.mo share/locale/uk/LC_MESSAGES/kio6_fish.mo share/locale/uk/LC_MESSAGES/kio6_info.mo share/locale/uk/LC_MESSAGES/kio6_man.mo share/locale/uk/LC_MESSAGES/kio6_mtp.mo share/locale/uk/LC_MESSAGES/kio6_nfs.mo share/locale/uk/LC_MESSAGES/kio6_recentlyused.mo share/locale/uk/LC_MESSAGES/kio6_sftp.mo share/locale/uk/LC_MESSAGES/kio6_smb.mo share/locale/uk/LC_MESSAGES/kio6_thumbnail.mo share/locale/uz/LC_MESSAGES/kio-extras_kcms.mo share/locale/uz/LC_MESSAGES/kio6_archive.mo share/locale/uz/LC_MESSAGES/kio6_fish.mo share/locale/uz/LC_MESSAGES/kio6_man.mo share/locale/uz/LC_MESSAGES/kio6_nfs.mo share/locale/uz/LC_MESSAGES/kio6_sftp.mo share/locale/uz/LC_MESSAGES/kio6_smb.mo share/locale/uz/LC_MESSAGES/kio6_thumbnail.mo share/locale/uz@cyrillic/LC_MESSAGES/kio-extras_kcms.mo share/locale/uz@cyrillic/LC_MESSAGES/kio6_archive.mo share/locale/uz@cyrillic/LC_MESSAGES/kio6_fish.mo share/locale/uz@cyrillic/LC_MESSAGES/kio6_man.mo share/locale/uz@cyrillic/LC_MESSAGES/kio6_nfs.mo share/locale/uz@cyrillic/LC_MESSAGES/kio6_sftp.mo share/locale/uz@cyrillic/LC_MESSAGES/kio6_smb.mo share/locale/uz@cyrillic/LC_MESSAGES/kio6_thumbnail.mo share/locale/vi/LC_MESSAGES/kio-extras_kcms.mo share/locale/vi/LC_MESSAGES/kio6_activities.mo share/locale/vi/LC_MESSAGES/kio6_afc.mo share/locale/vi/LC_MESSAGES/kio6_archive.mo share/locale/vi/LC_MESSAGES/kio6_fish.mo share/locale/vi/LC_MESSAGES/kio6_info.mo share/locale/vi/LC_MESSAGES/kio6_man.mo share/locale/vi/LC_MESSAGES/kio6_mtp.mo share/locale/vi/LC_MESSAGES/kio6_nfs.mo share/locale/vi/LC_MESSAGES/kio6_sftp.mo share/locale/vi/LC_MESSAGES/kio6_smb.mo share/locale/vi/LC_MESSAGES/kio6_thumbnail.mo share/locale/wa/LC_MESSAGES/kio-extras_kcms.mo share/locale/wa/LC_MESSAGES/kio6_activities.mo share/locale/wa/LC_MESSAGES/kio6_archive.mo share/locale/wa/LC_MESSAGES/kio6_fish.mo share/locale/wa/LC_MESSAGES/kio6_info.mo share/locale/wa/LC_MESSAGES/kio6_man.mo share/locale/wa/LC_MESSAGES/kio6_nfs.mo share/locale/wa/LC_MESSAGES/kio6_sftp.mo share/locale/wa/LC_MESSAGES/kio6_smb.mo share/locale/wa/LC_MESSAGES/kio6_thumbnail.mo share/locale/xh/LC_MESSAGES/kio-extras_kcms.mo share/locale/xh/LC_MESSAGES/kio6_man.mo share/locale/xh/LC_MESSAGES/kio6_nfs.mo share/locale/xh/LC_MESSAGES/kio6_sftp.mo share/locale/xh/LC_MESSAGES/kio6_smb.mo share/locale/zh_CN/LC_MESSAGES/kio-extras_kcms.mo share/locale/zh_CN/LC_MESSAGES/kio6_activities.mo share/locale/zh_CN/LC_MESSAGES/kio6_afc.mo share/locale/zh_CN/LC_MESSAGES/kio6_archive.mo share/locale/zh_CN/LC_MESSAGES/kio6_filenamesearch.mo share/locale/zh_CN/LC_MESSAGES/kio6_fish.mo share/locale/zh_CN/LC_MESSAGES/kio6_info.mo share/locale/zh_CN/LC_MESSAGES/kio6_man.mo share/locale/zh_CN/LC_MESSAGES/kio6_mtp.mo share/locale/zh_CN/LC_MESSAGES/kio6_nfs.mo share/locale/zh_CN/LC_MESSAGES/kio6_recentlyused.mo share/locale/zh_CN/LC_MESSAGES/kio6_sftp.mo share/locale/zh_CN/LC_MESSAGES/kio6_smb.mo share/locale/zh_CN/LC_MESSAGES/kio6_thumbnail.mo share/locale/zh_TW/LC_MESSAGES/kio-extras_kcms.mo share/locale/zh_TW/LC_MESSAGES/kio6_activities.mo share/locale/zh_TW/LC_MESSAGES/kio6_afc.mo share/locale/zh_TW/LC_MESSAGES/kio6_archive.mo share/locale/zh_TW/LC_MESSAGES/kio6_filenamesearch.mo share/locale/zh_TW/LC_MESSAGES/kio6_fish.mo share/locale/zh_TW/LC_MESSAGES/kio6_info.mo share/locale/zh_TW/LC_MESSAGES/kio6_man.mo share/locale/zh_TW/LC_MESSAGES/kio6_mtp.mo share/locale/zh_TW/LC_MESSAGES/kio6_nfs.mo share/locale/zh_TW/LC_MESSAGES/kio6_recentlyused.mo share/locale/zh_TW/LC_MESSAGES/kio6_sftp.mo share/locale/zh_TW/LC_MESSAGES/kio6_smb.mo share/locale/zh_TW/LC_MESSAGES/kio6_thumbnail.mo %%SAMBA%%share/mime/packages/org.kde.kio.smb.xml share/qlogging-categories6/kio-extras.categories share/qlogging-categories6/kio-extras.renamecategories %%AFC%%share/remoteview/afc-network.desktop %%MTP%%share/remoteview/mtp-network.desktop %%SAMBA%%share/remoteview/smb-network.desktop %%AFC%%share/solid/actions/solid_afc.desktop %%MTP%%share/solid/actions/solid_mtp.desktop diff --git a/devel/kirigami-gallery/distinfo b/devel/kirigami-gallery/distinfo index 74f4ea6d652e..ebe5262355b5 100644 --- a/devel/kirigami-gallery/distinfo +++ b/devel/kirigami-gallery/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1772541862 -SHA256 (KDE/release-service/25.12.3/kirigami-gallery-25.12.3.tar.xz) = 9cd49dbcc4fbab9269fe0cdcb49c16ecbb0c76dce02d204380fcdeb9fb60b2a2 -SIZE (KDE/release-service/25.12.3/kirigami-gallery-25.12.3.tar.xz) = 381836 +TIMESTAMP = 1776248165 +SHA256 (KDE/release-service/26.04.0/kirigami-gallery-26.04.0.tar.xz) = f85b0ac55c7912b4969d6a30facb87675084e36bc994b1142603e6ea6b9f3386 +SIZE (KDE/release-service/26.04.0/kirigami-gallery-26.04.0.tar.xz) = 382040 diff --git a/devel/kopeninghours/Makefile b/devel/kopeninghours/Makefile index 9573df3170ee..968fbcb92544 100644 --- a/devel/kopeninghours/Makefile +++ b/devel/kopeninghours/Makefile @@ -1,21 +1,19 @@ PORTNAME= kopeninghours DISTVERSION= ${KDE_APPLICATIONS_VERSION} CATEGORIES= devel kde kde-applications MAINTAINER= kde@FreeBSD.org COMMENT= Library for parsing and evaluating OSM opening hours expressions WWW= https://www.kde.org/ LICENSE= LGPL21 USES= bison cmake compiler:c++11-lib gettext kde:6 qt:6 tar:xz USE_KDE= holidays i18n \ ecm:build USE_QT= base declarative USE_LDCONFIG= yes OPTIONS_DEFINE= DOCS -PLIST_SUB= SHLIB_VER=${KDE_APPLICATIONS_VERSION:R:S/0//}.${KDE_APPLICATIONS_VERSION:E} - .include diff --git a/devel/kopeninghours/distinfo b/devel/kopeninghours/distinfo index 7dca4a3b0395..ce9a64443f33 100644 --- a/devel/kopeninghours/distinfo +++ b/devel/kopeninghours/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1772541863 -SHA256 (KDE/release-service/25.12.3/kopeninghours-25.12.3.tar.xz) = 674f7dd168679eecbc85d7e68052a0a979f4243a432958a698ba5bbd82178589 -SIZE (KDE/release-service/25.12.3/kopeninghours-25.12.3.tar.xz) = 76264 +TIMESTAMP = 1776248166 +SHA256 (KDE/release-service/26.04.0/kopeninghours-26.04.0.tar.xz) = dbcb9aa8018fe1b42bab1031b4f76d363aa0872380e125e04649f4ef5f6421ef +SIZE (KDE/release-service/26.04.0/kopeninghours-26.04.0.tar.xz) = 76408 diff --git a/devel/kopeninghours/pkg-plist b/devel/kopeninghours/pkg-plist index 4445b00db946..3f960db11263 100644 --- a/devel/kopeninghours/pkg-plist +++ b/devel/kopeninghours/pkg-plist @@ -1,61 +1,61 @@ include/KOpeningHours/Display include/KOpeningHours/Interval include/KOpeningHours/IntervalModel include/KOpeningHours/OpeningHours include/kopeninghours/display.h include/kopeninghours/interval.h include/kopeninghours/intervalmodel.h include/kopeninghours/kopeninghours_export.h include/kopeninghours/openinghours.h include/kopeninghours_version.h lib/cmake/KOpeningHours/KOpeningHoursConfig.cmake lib/cmake/KOpeningHours/KOpeningHoursConfigVersion.cmake lib/cmake/KOpeningHours/KOpeningHoursTargets-%%CMAKE_BUILD_TYPE%%.cmake lib/cmake/KOpeningHours/KOpeningHoursTargets.cmake lib/libKOpeningHours.so lib/libKOpeningHours.so.1 -lib/libKOpeningHours.so.%%SHLIB_VER%% +lib/libKOpeningHours.so.%%KDE_APPLICATIONS_VERSION%% %%QT_QMLDIR%%/org/kde/kopeninghours/kde-qmlmodule.version %%QT_QMLDIR%%/org/kde/kopeninghours/kopeninghoursqmlplugin.qmltypes %%QT_QMLDIR%%/org/kde/kopeninghours/libkopeninghoursqmlplugin.so %%QT_QMLDIR%%/org/kde/kopeninghours/qmldir share/locale/ar/LC_MESSAGES/kopeninghours.mo share/locale/ast/LC_MESSAGES/kopeninghours.mo share/locale/ca/LC_MESSAGES/kopeninghours.mo share/locale/ca@valencia/LC_MESSAGES/kopeninghours.mo share/locale/cs/LC_MESSAGES/kopeninghours.mo share/locale/de/LC_MESSAGES/kopeninghours.mo share/locale/en_GB/LC_MESSAGES/kopeninghours.mo share/locale/eo/LC_MESSAGES/kopeninghours.mo share/locale/es/LC_MESSAGES/kopeninghours.mo share/locale/eu/LC_MESSAGES/kopeninghours.mo share/locale/fi/LC_MESSAGES/kopeninghours.mo share/locale/fr/LC_MESSAGES/kopeninghours.mo share/locale/ga/LC_MESSAGES/kopeninghours.mo share/locale/gl/LC_MESSAGES/kopeninghours.mo share/locale/he/LC_MESSAGES/kopeninghours.mo share/locale/hi/LC_MESSAGES/kopeninghours.mo share/locale/hu/LC_MESSAGES/kopeninghours.mo share/locale/ia/LC_MESSAGES/kopeninghours.mo share/locale/it/LC_MESSAGES/kopeninghours.mo share/locale/ja/LC_MESSAGES/kopeninghours.mo share/locale/ka/LC_MESSAGES/kopeninghours.mo share/locale/ko/LC_MESSAGES/kopeninghours.mo share/locale/lt/LC_MESSAGES/kopeninghours.mo share/locale/lv/LC_MESSAGES/kopeninghours.mo share/locale/nl/LC_MESSAGES/kopeninghours.mo share/locale/nn/LC_MESSAGES/kopeninghours.mo share/locale/pl/LC_MESSAGES/kopeninghours.mo share/locale/pt/LC_MESSAGES/kopeninghours.mo share/locale/pt_BR/LC_MESSAGES/kopeninghours.mo share/locale/ro/LC_MESSAGES/kopeninghours.mo share/locale/ru/LC_MESSAGES/kopeninghours.mo share/locale/sa/LC_MESSAGES/kopeninghours.mo share/locale/sk/LC_MESSAGES/kopeninghours.mo share/locale/sl/LC_MESSAGES/kopeninghours.mo share/locale/sv/LC_MESSAGES/kopeninghours.mo share/locale/tr/LC_MESSAGES/kopeninghours.mo share/locale/uk/LC_MESSAGES/kopeninghours.mo share/locale/zh_CN/LC_MESSAGES/kopeninghours.mo share/locale/zh_TW/LC_MESSAGES/kopeninghours.mo share/qlogging-categories6/org_kde_kopeninghours.categories diff --git a/devel/kpublictransport/Makefile b/devel/kpublictransport/Makefile index 2ac3823b718a..d011b11f0746 100644 --- a/devel/kpublictransport/Makefile +++ b/devel/kpublictransport/Makefile @@ -1,23 +1,22 @@ PORTNAME= kpublictransport DISTVERSION= ${KDE_APPLICATIONS_VERSION} -PORTREVISION= 1 CATEGORIES= devel kde kde-applications MAINTAINER= kde@FreeBSD.org COMMENT= Access realtime public transport data LIB_DEPENDS= libprotobuf.so:devel/protobuf USES= cmake compiler:c++11-lang gettext kde:6 qt:6 tar:xz USE_KDE= kirigami-addons ecm:build USE_QT= base location OPTIONS_DEFINE= DOCS CMAKE_ON= CMAKE_DISABLE_FIND_PACKAGE_KF6NetworkManagerQt CXXFLAGS= -DPROTOBUF_ENABLE_DEBUG_LOGGING_MAY_LEAK_PII=0 # Override shared library version #KDE_APPLICATIONS_SHLIB_VER= ${KDE_APPLICATIONS_VERSION} .include diff --git a/devel/kpublictransport/distinfo b/devel/kpublictransport/distinfo index 3d8c8a789334..e497f47746b1 100644 --- a/devel/kpublictransport/distinfo +++ b/devel/kpublictransport/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1772541865 -SHA256 (KDE/release-service/25.12.3/kpublictransport-25.12.3.tar.xz) = 5817a6d41d485322e79aef8dcab52b2dd01b86f5df2327a9104809addb0c44e7 -SIZE (KDE/release-service/25.12.3/kpublictransport-25.12.3.tar.xz) = 909668 +TIMESTAMP = 1776248168 +SHA256 (KDE/release-service/26.04.0/kpublictransport-26.04.0.tar.xz) = e4aad868410e97a6c2c34a8255888405ee272607bb3e4ae6fffeb0c92d98702b +SIZE (KDE/release-service/26.04.0/kpublictransport-26.04.0.tar.xz) = 957020 diff --git a/devel/kunifiedpush/distinfo b/devel/kunifiedpush/distinfo index 31095e9bd8dd..11cfe1aa3857 100644 --- a/devel/kunifiedpush/distinfo +++ b/devel/kunifiedpush/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1772541867 -SHA256 (KDE/release-service/25.12.3/kunifiedpush-25.12.3.tar.xz) = 3ebd6ef38fafb0abd3ec434ccf79468453ea53897f69dccf18226dd5f122c229 -SIZE (KDE/release-service/25.12.3/kunifiedpush-25.12.3.tar.xz) = 86280 +TIMESTAMP = 1776248169 +SHA256 (KDE/release-service/26.04.0/kunifiedpush-26.04.0.tar.xz) = 0756dfc94de2bc065542e5c1e366dec2226615bfecc2993381a45051b1c24f03 +SIZE (KDE/release-service/26.04.0/kunifiedpush-26.04.0.tar.xz) = 89276 diff --git a/devel/lokalize/distinfo b/devel/lokalize/distinfo index 97fbb2e4dd9e..cab5ee9bb1b7 100644 --- a/devel/lokalize/distinfo +++ b/devel/lokalize/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1772541868 -SHA256 (KDE/release-service/25.12.3/lokalize-25.12.3.tar.xz) = f62c5c1116d0fa8c7c3d24b1b642060bc3a0fddc6aa65218f375303de4191e8e -SIZE (KDE/release-service/25.12.3/lokalize-25.12.3.tar.xz) = 2069888 +TIMESTAMP = 1776248171 +SHA256 (KDE/release-service/26.04.0/lokalize-26.04.0.tar.xz) = d72c4d817b529c252eff748792676ee8535f5928642701ec4e18b36d066f64f9 +SIZE (KDE/release-service/26.04.0/lokalize-26.04.0.tar.xz) = 2099580 diff --git a/devel/massif-visualizer/distinfo b/devel/massif-visualizer/distinfo index c5870571957e..559ab2c48455 100644 --- a/devel/massif-visualizer/distinfo +++ b/devel/massif-visualizer/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1772541870 -SHA256 (KDE/release-service/25.12.3/massif-visualizer-25.12.3.tar.xz) = 051801ee3d9704bb254332e7a317c228a510a5b83ff0304937011148b0212311 -SIZE (KDE/release-service/25.12.3/massif-visualizer-25.12.3.tar.xz) = 286636 +TIMESTAMP = 1776248173 +SHA256 (KDE/release-service/26.04.0/massif-visualizer-26.04.0.tar.xz) = 05059258104f8c98fc6c2cb5e52ffd0c357bc9fdb656952624f552c9920feab5 +SIZE (KDE/release-service/26.04.0/massif-visualizer-26.04.0.tar.xz) = 286684 diff --git a/devel/massif-visualizer/pkg-plist b/devel/massif-visualizer/pkg-plist index ae67f35df61e..61c47b4a8cc6 100644 --- a/devel/massif-visualizer/pkg-plist +++ b/devel/massif-visualizer/pkg-plist @@ -1,54 +1,54 @@ 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/locale/ar/LC_MESSAGES/massif-visualizer.mo share/locale/bg/LC_MESSAGES/massif-visualizer.mo share/locale/bs/LC_MESSAGES/massif-visualizer.mo share/locale/ca/LC_MESSAGES/massif-visualizer.mo share/locale/ca@valencia/LC_MESSAGES/massif-visualizer.mo share/locale/cs/LC_MESSAGES/massif-visualizer.mo share/locale/da/LC_MESSAGES/massif-visualizer.mo share/locale/de/LC_MESSAGES/massif-visualizer.mo share/locale/el/LC_MESSAGES/massif-visualizer.mo share/locale/en_GB/LC_MESSAGES/massif-visualizer.mo share/locale/eo/LC_MESSAGES/massif-visualizer.mo share/locale/es/LC_MESSAGES/massif-visualizer.mo share/locale/et/LC_MESSAGES/massif-visualizer.mo share/locale/eu/LC_MESSAGES/massif-visualizer.mo share/locale/fi/LC_MESSAGES/massif-visualizer.mo share/locale/fr/LC_MESSAGES/massif-visualizer.mo share/locale/ga/LC_MESSAGES/massif-visualizer.mo share/locale/gl/LC_MESSAGES/massif-visualizer.mo share/locale/he/LC_MESSAGES/massif-visualizer.mo share/locale/hi/LC_MESSAGES/massif-visualizer.mo share/locale/hu/LC_MESSAGES/massif-visualizer.mo share/locale/ia/LC_MESSAGES/massif-visualizer.mo share/locale/is/LC_MESSAGES/massif-visualizer.mo share/locale/it/LC_MESSAGES/massif-visualizer.mo share/locale/ja/LC_MESSAGES/massif-visualizer.mo share/locale/ka/LC_MESSAGES/massif-visualizer.mo share/locale/kk/LC_MESSAGES/massif-visualizer.mo share/locale/ko/LC_MESSAGES/massif-visualizer.mo share/locale/lt/LC_MESSAGES/massif-visualizer.mo share/locale/mr/LC_MESSAGES/massif-visualizer.mo share/locale/nb/LC_MESSAGES/massif-visualizer.mo share/locale/nds/LC_MESSAGES/massif-visualizer.mo share/locale/nl/LC_MESSAGES/massif-visualizer.mo share/locale/nn/LC_MESSAGES/massif-visualizer.mo share/locale/pl/LC_MESSAGES/massif-visualizer.mo share/locale/pt/LC_MESSAGES/massif-visualizer.mo share/locale/pt_BR/LC_MESSAGES/massif-visualizer.mo share/locale/ru/LC_MESSAGES/massif-visualizer.mo share/locale/sa/LC_MESSAGES/massif-visualizer.mo share/locale/sk/LC_MESSAGES/massif-visualizer.mo share/locale/sl/LC_MESSAGES/massif-visualizer.mo share/locale/sv/LC_MESSAGES/massif-visualizer.mo share/locale/tr/LC_MESSAGES/massif-visualizer.mo share/locale/ug/LC_MESSAGES/massif-visualizer.mo share/locale/uk/LC_MESSAGES/massif-visualizer.mo share/locale/zh_CN/LC_MESSAGES/massif-visualizer.mo share/locale/zh_TW/LC_MESSAGES/massif-visualizer.mo %%DATADIR%%/icons/hicolor/22x22/actions/shortentemplates.png -share/metainfo/org.kde.massif-visualizer.appdata.xml +share/metainfo/org.kde.massif_visualizer.appdata.xml share/mime/packages/massif.xml diff --git a/devel/poxml/distinfo b/devel/poxml/distinfo index 2e52017845b7..d45f5d828cba 100644 --- a/devel/poxml/distinfo +++ b/devel/poxml/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1772541872 -SHA256 (KDE/release-service/25.12.3/poxml-25.12.3.tar.xz) = f40957124b78a7dd954016bffa238c9ef2bb16a30a09e35f85cca35d3053547c -SIZE (KDE/release-service/25.12.3/poxml-25.12.3.tar.xz) = 45204 +TIMESTAMP = 1776248174 +SHA256 (KDE/release-service/26.04.0/poxml-26.04.0.tar.xz) = dce68a16977ed0bc5b3e6d17600e2b58e15f336a731b403b4b2aaa0d13fc1055 +SIZE (KDE/release-service/26.04.0/poxml-26.04.0.tar.xz) = 45216 diff --git a/devel/umbrello/distinfo b/devel/umbrello/distinfo index 1cea3a938e68..d7480e585348 100644 --- a/devel/umbrello/distinfo +++ b/devel/umbrello/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1772541873 -SHA256 (KDE/release-service/25.12.3/umbrello-25.12.3.tar.xz) = 45714539df740badcbbd7cba63a8436786ff85ef071af8e5d04f4971e7d62dcb -SIZE (KDE/release-service/25.12.3/umbrello-25.12.3.tar.xz) = 5657620 +TIMESTAMP = 1776248176 +SHA256 (KDE/release-service/26.04.0/umbrello-26.04.0.tar.xz) = 4685cf3d61cdf2cd6aa1ad524e07e578c60928ff5254fe0ddc5eb2dba7a0cb48 +SIZE (KDE/release-service/26.04.0/umbrello-26.04.0.tar.xz) = 5662420 diff --git a/editors/calligra/Makefile b/editors/calligra/Makefile index e6e18f94bff7..1d4002c85650 100644 --- a/editors/calligra/Makefile +++ b/editors/calligra/Makefile @@ -1,61 +1,62 @@ PORTNAME= calligra DISTVERSION= ${KDE_APPLICATIONS_VERSION} CATEGORIES= editors kde kde-applications MAINTAINER= kde@FreeBSD.org COMMENT= KDE office suite WWW= https://calligra.org/ LICENSE= GPLv2+ LICENSE_FILE= ${WRKSRC}/COPYING IGNORE_i386= is not supported on 32-bit systems LIB_DEPENDS= libImath.so:math/Imath \ libboost_thread.so:devel/boost-libs \ libgit2.so:devel/libgit2 \ libetonyek-0.1.so:graphics/libetonyek01 \ libfontconfig.so:x11-fonts/fontconfig \ libfreetype.so:print/freetype2 \ libgsl.so:math/gsl \ liblcms2.so:graphics/lcms2 \ libKChart6.so:graphics/kdiagram-qt6 \ libOkular6Core.so:graphics/okular \ libodfgen-0.1.so:textproc/libodfgen01 \ libpoppler-qt6.so:graphics/poppler-qt6 \ libpoppler.so:graphics/poppler \ libqca-qt6.so:devel/qca@qt6 \ libqt6keychain.so:security/qtkeychain@qt6 \ librevenge-0.0.so:textproc/librevenge \ libvisio-0.1.so:textproc/libvisio01 \ libwpd-0.10.so:textproc/libwpd010 \ libwpg-0.3.so:graphics/libwpg03 \ libwps-0.4.so:textproc/libwps RUN_DEPENDS= pstoedit:graphics/pstoedit USES= cmake compiler:c++17-lang cpe desktop-file-utils eigen:3 \ gettext gl iconv:translit jpeg kde:6 localbase:ldflags perl5 \ pkgconfig qt:6 shared-mime-info ssl tar:xz xorg USE_GL= gl opengl USE_LDCONFIG= yes USE_KDE= archive bookmarks colorscheme completion config configwidgets \ coreaddons crash dbusaddons guiaddons i18n iconthemes \ itemviews jobwidgets kcmutils kio notifications notifyconfig \ phonon service solid sonnet textwidgets widgetsaddons \ windowsystem xmlgui \ doctools:build ecm:build USE_QT= base declarative positioning svg webchannel webengine \ tools:build USE_XORG= ice sm x11 xext CMAKE_ARGS= -DCMAKE_INCLUDE_PATH:STRING="${QT_INCDIR} ${LOCALBASE}/include" \ -DPRODUCTSET:STRING="DESKTOP" # Requested by upstream, to not include unfinished modules CMAKE_ON= RELEASE_BUILD # Performance increase according to README.PACKAGERS CMAKE_ARGS+= -DCMAKE_CXX_FLAGS="-DKDE_NO_DEBUG_OUTPUT" -PLIST_SUB= SHLIB_VER=40 +# SHLIB_VER=${KDE_APPLICATIONS_VERSION:R:R} + 15 +PLIST_SUB= SHLIB_VER=41 .include diff --git a/editors/calligra/distinfo b/editors/calligra/distinfo index 6e8d29fda8b7..70d180db3a64 100644 --- a/editors/calligra/distinfo +++ b/editors/calligra/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1772541875 -SHA256 (KDE/release-service/25.12.3/calligra-25.12.3.tar.xz) = 98648733fc0052cb20aca00ac10fbd4656549422bc50fdf79d1b5f5efc5ebec1 -SIZE (KDE/release-service/25.12.3/calligra-25.12.3.tar.xz) = 57982464 +TIMESTAMP = 1776248178 +SHA256 (KDE/release-service/26.04.0/calligra-26.04.0.tar.xz) = b8f478f38fa36c26f344bd9607c0b8d65f8a42d098be66b0bd79b3a4f67eb53f +SIZE (KDE/release-service/26.04.0/calligra-26.04.0.tar.xz) = 57990632 diff --git a/editors/ghostwriter/distinfo b/editors/ghostwriter/distinfo index 02334b2251af..095096a19390 100644 --- a/editors/ghostwriter/distinfo +++ b/editors/ghostwriter/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1772541877 -SHA256 (KDE/release-service/25.12.3/ghostwriter-25.12.3.tar.xz) = b70127c420e1d8f72379cee4c70c809104b581f63c9da7c83ff344497934d796 -SIZE (KDE/release-service/25.12.3/ghostwriter-25.12.3.tar.xz) = 2736152 +TIMESTAMP = 1776248179 +SHA256 (KDE/release-service/26.04.0/ghostwriter-26.04.0.tar.xz) = 209f95a58ad6c0908cf1a085e8e6a953b12c5c0908ccd8599dfc5a810cf4668b +SIZE (KDE/release-service/26.04.0/ghostwriter-26.04.0.tar.xz) = 2743184 diff --git a/editors/ghostwriter/pkg-plist b/editors/ghostwriter/pkg-plist index 1a10a499a981..68587ad2e3c1 100644 --- a/editors/ghostwriter/pkg-plist +++ b/editors/ghostwriter/pkg-plist @@ -1,57 +1,58 @@ bin/ghostwriter share/applications/org.kde.ghostwriter.desktop share/icons/hicolor/128x128/apps/ghostwriter.png share/icons/hicolor/16x16/apps/ghostwriter.png share/icons/hicolor/22x22/apps/ghostwriter.png share/icons/hicolor/256x256/apps/ghostwriter.png share/icons/hicolor/32x32/apps/ghostwriter.png share/icons/hicolor/64x64/apps/ghostwriter.png share/icons/hicolor/scalable/apps/ghostwriter.svg share/locale/ar/LC_MESSAGES/ghostwriter_qt.qm share/locale/ca/LC_MESSAGES/ghostwriter_qt.qm share/locale/ca@valencia/LC_MESSAGES/ghostwriter_qt.qm share/locale/cs/LC_MESSAGES/ghostwriter_qt.qm share/locale/de/LC_MESSAGES/ghostwriter_qt.qm share/locale/en/LC_MESSAGES/ghostwriter_qt.qm share/locale/en_GB/LC_MESSAGES/ghostwriter_qt.qm share/locale/eo/LC_MESSAGES/ghostwriter_qt.qm share/locale/es/LC_MESSAGES/ghostwriter_qt.qm share/locale/eu/LC_MESSAGES/ghostwriter_qt.qm share/locale/fi/LC_MESSAGES/ghostwriter_qt.qm share/locale/fr/LC_MESSAGES/ghostwriter_qt.qm share/locale/ga/LC_MESSAGES/ghostwriter_qt.qm share/locale/gl/LC_MESSAGES/ghostwriter_qt.qm share/locale/he/LC_MESSAGES/ghostwriter_qt.qm share/locale/hi/LC_MESSAGES/ghostwriter_qt.qm share/locale/ia/LC_MESSAGES/ghostwriter_qt.qm share/locale/id/LC_MESSAGES/ghostwriter_qt.qm share/locale/it/LC_MESSAGES/ghostwriter_qt.qm share/locale/ja/LC_MESSAGES/ghostwriter_qt.qm share/locale/ka/LC_MESSAGES/ghostwriter_qt.qm share/locale/ko/LC_MESSAGES/ghostwriter_qt.qm share/locale/lt/LC_MESSAGES/ghostwriter_qt.qm share/locale/lv/LC_MESSAGES/ghostwriter_qt.qm share/locale/nl/LC_MESSAGES/ghostwriter_qt.qm share/locale/pl/LC_MESSAGES/ghostwriter_qt.qm share/locale/pt/LC_MESSAGES/ghostwriter_qt.qm share/locale/pt_BR/LC_MESSAGES/ghostwriter_qt.qm share/locale/ru/LC_MESSAGES/ghostwriter_qt.qm share/locale/sa/LC_MESSAGES/ghostwriter_qt.qm share/locale/sk/LC_MESSAGES/ghostwriter_qt.qm share/locale/sl/LC_MESSAGES/ghostwriter_qt.qm share/locale/sv/LC_MESSAGES/ghostwriter_qt.qm share/locale/tr/LC_MESSAGES/ghostwriter_qt.qm share/locale/uk/LC_MESSAGES/ghostwriter_qt.qm share/locale/zh_CN/LC_MESSAGES/ghostwriter_qt.qm share/locale/zh_TW/LC_MESSAGES/ghostwriter_qt.qm share/man/ca/man1/ghostwriter.1.gz share/man/es/man1/ghostwriter.1.gz share/man/it/man1/ghostwriter.1.gz share/man/man1/ghostwriter.1.gz share/man/nl/man1/ghostwriter.1.gz share/man/pt_BR/man1/ghostwriter.1.gz share/man/ru/man1/ghostwriter.1.gz share/man/sl/man1/ghostwriter.1.gz share/man/sv/man1/ghostwriter.1.gz +share/man/tr/man1/ghostwriter.1.gz share/man/uk/man1/ghostwriter.1.gz share/metainfo/org.kde.ghostwriter.metainfo.xml diff --git a/editors/kate/distinfo b/editors/kate/distinfo index 7991fe22c579..d60ad800254b 100644 --- a/editors/kate/distinfo +++ b/editors/kate/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1772541878 -SHA256 (KDE/release-service/25.12.3/kate-25.12.3.tar.xz) = d761d976c19922843617211d9069ded08d6eb43891e28e56eb9385b626ce90ab -SIZE (KDE/release-service/25.12.3/kate-25.12.3.tar.xz) = 8561744 +TIMESTAMP = 1776248181 +SHA256 (KDE/release-service/26.04.0/kate-26.04.0.tar.xz) = ad4a04785a289f9ffb58f71eae6f5f2236118c09bd08b773b49a4a6363418d0d +SIZE (KDE/release-service/26.04.0/kate-26.04.0.tar.xz) = 8609728 diff --git a/editors/kate/pkg-plist b/editors/kate/pkg-plist index 005a65a81300..8d1aa1676c29 100644 --- a/editors/kate/pkg-plist +++ b/editors/kate/pkg-plist @@ -1,1842 +1,1850 @@ bin/exec_inspect.sh bin/kate bin/kwrite lib/libkateprivate.so.%%KDE_APPLICATIONS_VERSION%% %%QT_PLUGINDIR%%/kf6/kio/kio_kateexec.so %%QT_PLUGINDIR%%/kf6/ktexteditor/bookmarksplugin.so %%QT_PLUGINDIR%%/kf6/ktexteditor/cmaketoolsplugin.so %%QT_PLUGINDIR%%/kf6/ktexteditor/compilerexplorer.so %%QT_PLUGINDIR%%/kf6/ktexteditor/eslintplugin.so %%QT_PLUGINDIR%%/kf6/ktexteditor/externaltoolsplugin.so %%QT_PLUGINDIR%%/kf6/ktexteditor/formatplugin.so %%QT_PLUGINDIR%%/kf6/ktexteditor/katebacktracebrowserplugin.so %%QT_PLUGINDIR%%/kf6/ktexteditor/katebuildplugin.so %%QT_PLUGINDIR%%/kf6/ktexteditor/katecloseexceptplugin.so %%QT_PLUGINDIR%%/kf6/ktexteditor/katecolorpickerplugin.so %%QT_PLUGINDIR%%/kf6/ktexteditor/katectagsplugin.so %%QT_PLUGINDIR%%/kf6/ktexteditor/katefilebrowserplugin.so %%QT_PLUGINDIR%%/kf6/ktexteditor/katefiletreeplugin.so %%QT_PLUGINDIR%%/kf6/ktexteditor/kategdbplugin.so %%QT_PLUGINDIR%%/kf6/ktexteditor/kategitblameplugin.so %%QT_PLUGINDIR%%/kf6/ktexteditor/kategpgplugin.so %%QT_PLUGINDIR%%/kf6/ktexteditor/katekonsoleplugin.so %%QT_PLUGINDIR%%/kf6/ktexteditor/kateprojectplugin.so %%QT_PLUGINDIR%%/kf6/ktexteditor/katereplicodeplugin.so %%QT_PLUGINDIR%%/kf6/ktexteditor/katesearchplugin.so %%QT_PLUGINDIR%%/kf6/ktexteditor/katesnippetsplugin.so %%QT_PLUGINDIR%%/kf6/ktexteditor/katesqlplugin.so %%QT_PLUGINDIR%%/kf6/ktexteditor/katesymbolviewerplugin.so %%QT_PLUGINDIR%%/kf6/ktexteditor/katexmlcheckplugin.so %%QT_PLUGINDIR%%/kf6/ktexteditor/katexmltoolsplugin.so %%QT_PLUGINDIR%%/kf6/ktexteditor/keyboardmacrosplugin.so %%QT_PLUGINDIR%%/kf6/ktexteditor/ktexteditorpreviewplugin.so %%QT_PLUGINDIR%%/kf6/ktexteditor/latexcompletionplugin.so %%QT_PLUGINDIR%%/kf6/ktexteditor/lspclientplugin.so %%QT_PLUGINDIR%%/kf6/ktexteditor/openlinkplugin.so %%QT_PLUGINDIR%%/kf6/ktexteditor/rainbowparens.so %%QT_PLUGINDIR%%/kf6/ktexteditor/rbqlplugin.so %%QT_PLUGINDIR%%/kf6/ktexteditor/tabswitcherplugin.so %%QT_PLUGINDIR%%/kf6/ktexteditor/templateplugin.so %%QT_PLUGINDIR%%/kf6/ktexteditor/textfilterplugin.so 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/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/formatplugin.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/katebookmarksplugin.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/katecompilerexplorer.mo share/locale/ar/LC_MESSAGES/kateexternaltoolsplugin.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/kategitblameplugin.mo share/locale/ar/LC_MESSAGES/kategpgplugin.mo share/locale/ar/LC_MESSAGES/katekeyboardmacros.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/lspclient.mo share/locale/ar/LC_MESSAGES/rainbowparens.mo share/locale/ar/LC_MESSAGES/rbqlplugin.mo share/locale/ar/LC_MESSAGES/tabswitcherplugin.mo share/locale/ast/LC_MESSAGES/formatplugin.mo share/locale/ast/LC_MESSAGES/kate-ctags-plugin.mo share/locale/ast/LC_MESSAGES/kate-replicode-plugin.mo share/locale/ast/LC_MESSAGES/kate.mo share/locale/ast/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/ast/LC_MESSAGES/katebuild-plugin.mo share/locale/ast/LC_MESSAGES/katecloseexceptplugin.mo share/locale/ast/LC_MESSAGES/katecolorpickerplugin.mo share/locale/ast/LC_MESSAGES/kateexternaltoolsplugin.mo share/locale/ast/LC_MESSAGES/katefilebrowserplugin.mo share/locale/ast/LC_MESSAGES/katefiletree.mo share/locale/ast/LC_MESSAGES/kategdbplugin.mo share/locale/ast/LC_MESSAGES/kategitblameplugin.mo share/locale/ast/LC_MESSAGES/katekeyboardmacros.mo share/locale/ast/LC_MESSAGES/katekonsoleplugin.mo share/locale/ast/LC_MESSAGES/kateproject.mo share/locale/ast/LC_MESSAGES/katesearch.mo share/locale/ast/LC_MESSAGES/katesnippetsplugin.mo share/locale/ast/LC_MESSAGES/katesql.mo share/locale/ast/LC_MESSAGES/katesymbolviewer.mo share/locale/ast/LC_MESSAGES/katetextfilter.mo share/locale/ast/LC_MESSAGES/katexmlcheck.mo share/locale/ast/LC_MESSAGES/katexmltools.mo share/locale/ast/LC_MESSAGES/ktexteditorpreviewplugin.mo share/locale/ast/LC_MESSAGES/lspclient.mo share/locale/ast/LC_MESSAGES/rainbowparens.mo share/locale/ast/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/katekeyboardmacros.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/formatplugin.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/katebookmarksplugin.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/katecompilerexplorer.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/rainbowparens.mo share/locale/bg/LC_MESSAGES/rbqlplugin.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/formatplugin.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/katebookmarksplugin.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/katecompilerexplorer.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/kategpgplugin.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/rainbowparens.mo share/locale/ca/LC_MESSAGES/rbqlplugin.mo share/locale/ca/LC_MESSAGES/tabswitcherplugin.mo share/locale/ca@valencia/LC_MESSAGES/formatplugin.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/katebookmarksplugin.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/katecompilerexplorer.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/kategpgplugin.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/rainbowparens.mo share/locale/ca@valencia/LC_MESSAGES/rbqlplugin.mo share/locale/ca@valencia/LC_MESSAGES/tabswitcherplugin.mo share/locale/cs/LC_MESSAGES/formatplugin.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/katebookmarksplugin.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/katecompilerexplorer.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/kategpgplugin.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/rainbowparens.mo share/locale/cs/LC_MESSAGES/rbqlplugin.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/formatplugin.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/katebookmarksplugin.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/katecompilerexplorer.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/kategpgplugin.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/rainbowparens.mo share/locale/de/LC_MESSAGES/rbqlplugin.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/formatplugin.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/katecompilerexplorer.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/rainbowparens.mo share/locale/en_GB/LC_MESSAGES/rbqlplugin.mo share/locale/en_GB/LC_MESSAGES/tabswitcherplugin.mo share/locale/eo/LC_MESSAGES/formatplugin.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/katecompilerexplorer.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/rainbowparens.mo share/locale/eo/LC_MESSAGES/rbqlplugin.mo share/locale/eo/LC_MESSAGES/tabswitcherplugin.mo share/locale/es/LC_MESSAGES/formatplugin.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/katebookmarksplugin.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/katecompilerexplorer.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/kategpgplugin.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/rainbowparens.mo share/locale/es/LC_MESSAGES/rbqlplugin.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/formatplugin.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/katebookmarksplugin.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/katecompilerexplorer.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/kategpgplugin.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/rainbowparens.mo share/locale/eu/LC_MESSAGES/rbqlplugin.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/formatplugin.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/katebookmarksplugin.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/katecompilerexplorer.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/kategpgplugin.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/rainbowparens.mo share/locale/fi/LC_MESSAGES/rbqlplugin.mo share/locale/fi/LC_MESSAGES/tabswitcherplugin.mo share/locale/fr/LC_MESSAGES/formatplugin.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/katebookmarksplugin.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/katecompilerexplorer.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/kategpgplugin.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/rainbowparens.mo share/locale/fr/LC_MESSAGES/rbqlplugin.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/formatplugin.mo share/locale/ga/LC_MESSAGES/kate-ctags-plugin.mo share/locale/ga/LC_MESSAGES/kate-replicode-plugin.mo share/locale/ga/LC_MESSAGES/kate.mo share/locale/ga/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/ga/LC_MESSAGES/katebookmarksplugin.mo share/locale/ga/LC_MESSAGES/katebuild-plugin.mo share/locale/ga/LC_MESSAGES/katecloseexceptplugin.mo share/locale/ga/LC_MESSAGES/katecolorpickerplugin.mo share/locale/ga/LC_MESSAGES/katecompilerexplorer.mo share/locale/ga/LC_MESSAGES/kateexternaltoolsplugin.mo share/locale/ga/LC_MESSAGES/katefilebrowserplugin.mo share/locale/ga/LC_MESSAGES/katefiletree.mo share/locale/ga/LC_MESSAGES/kategdbplugin.mo share/locale/ga/LC_MESSAGES/kategitblameplugin.mo share/locale/ga/LC_MESSAGES/kategpgplugin.mo share/locale/ga/LC_MESSAGES/katekeyboardmacros.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/katexmlcheck.mo share/locale/ga/LC_MESSAGES/katexmltools.mo share/locale/ga/LC_MESSAGES/ktexteditorpreviewplugin.mo share/locale/ga/LC_MESSAGES/lspclient.mo share/locale/ga/LC_MESSAGES/rainbowparens.mo share/locale/ga/LC_MESSAGES/rbqlplugin.mo share/locale/ga/LC_MESSAGES/tabswitcherplugin.mo share/locale/gl/LC_MESSAGES/formatplugin.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/katecolorpickerplugin.mo share/locale/gl/LC_MESSAGES/katecompilerexplorer.mo share/locale/gl/LC_MESSAGES/kateexternaltoolsplugin.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/kategitblameplugin.mo share/locale/gl/LC_MESSAGES/katekeyboardmacros.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/rainbowparens.mo share/locale/gl/LC_MESSAGES/rbqlplugin.mo share/locale/gl/LC_MESSAGES/tabswitcherplugin.mo share/locale/he/LC_MESSAGES/formatplugin.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/katebookmarksplugin.mo share/locale/he/LC_MESSAGES/katebuild-plugin.mo share/locale/he/LC_MESSAGES/katecloseexceptplugin.mo share/locale/he/LC_MESSAGES/katecolorpickerplugin.mo share/locale/he/LC_MESSAGES/katecompilerexplorer.mo share/locale/he/LC_MESSAGES/kateexternaltoolsplugin.mo share/locale/he/LC_MESSAGES/katefilebrowserplugin.mo share/locale/he/LC_MESSAGES/katefiletree.mo share/locale/he/LC_MESSAGES/kategdbplugin.mo share/locale/he/LC_MESSAGES/kategitblameplugin.mo share/locale/he/LC_MESSAGES/kategpgplugin.mo share/locale/he/LC_MESSAGES/katekeyboardmacros.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/katesnippetsplugin.mo share/locale/he/LC_MESSAGES/katesql.mo share/locale/he/LC_MESSAGES/katesymbolviewer.mo share/locale/he/LC_MESSAGES/katetextfilter.mo share/locale/he/LC_MESSAGES/katexmlcheck.mo share/locale/he/LC_MESSAGES/katexmltools.mo share/locale/he/LC_MESSAGES/ktexteditorpreviewplugin.mo share/locale/he/LC_MESSAGES/lspclient.mo share/locale/he/LC_MESSAGES/rainbowparens.mo share/locale/he/LC_MESSAGES/rbqlplugin.mo share/locale/he/LC_MESSAGES/tabswitcherplugin.mo share/locale/hi/LC_MESSAGES/formatplugin.mo share/locale/hi/LC_MESSAGES/kate-ctags-plugin.mo share/locale/hi/LC_MESSAGES/kate-replicode-plugin.mo share/locale/hi/LC_MESSAGES/kate.mo share/locale/hi/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/hi/LC_MESSAGES/katebuild-plugin.mo share/locale/hi/LC_MESSAGES/katecloseexceptplugin.mo share/locale/hi/LC_MESSAGES/katecolorpickerplugin.mo share/locale/hi/LC_MESSAGES/katecompilerexplorer.mo share/locale/hi/LC_MESSAGES/kateexternaltoolsplugin.mo share/locale/hi/LC_MESSAGES/katefilebrowserplugin.mo share/locale/hi/LC_MESSAGES/katefiletree.mo share/locale/hi/LC_MESSAGES/kategdbplugin.mo share/locale/hi/LC_MESSAGES/kategitblameplugin.mo share/locale/hi/LC_MESSAGES/katekeyboardmacros.mo share/locale/hi/LC_MESSAGES/katekonsoleplugin.mo share/locale/hi/LC_MESSAGES/kateproject.mo share/locale/hi/LC_MESSAGES/katesearch.mo share/locale/hi/LC_MESSAGES/katesnippetsplugin.mo share/locale/hi/LC_MESSAGES/katesql.mo share/locale/hi/LC_MESSAGES/katesymbolviewer.mo share/locale/hi/LC_MESSAGES/katetextfilter.mo share/locale/hi/LC_MESSAGES/katexmlcheck.mo share/locale/hi/LC_MESSAGES/katexmltools.mo share/locale/hi/LC_MESSAGES/ktexteditorpreviewplugin.mo share/locale/hi/LC_MESSAGES/lspclient.mo share/locale/hi/LC_MESSAGES/rainbowparens.mo share/locale/hi/LC_MESSAGES/rbqlplugin.mo share/locale/hi/LC_MESSAGES/tabswitcherplugin.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/formatplugin.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/rainbowparens.mo share/locale/hu/LC_MESSAGES/tabswitcherplugin.mo share/locale/ia/LC_MESSAGES/formatplugin.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/katebookmarksplugin.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/katecompilerexplorer.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/kategpgplugin.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/rainbowparens.mo share/locale/ia/LC_MESSAGES/rbqlplugin.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/formatplugin.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/is/LC_MESSAGES/rainbowparens.mo share/locale/it/LC_MESSAGES/formatplugin.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/katebookmarksplugin.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/katecompilerexplorer.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/kategpgplugin.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/rainbowparens.mo share/locale/it/LC_MESSAGES/rbqlplugin.mo share/locale/it/LC_MESSAGES/tabswitcherplugin.mo share/locale/ja/LC_MESSAGES/formatplugin.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/rainbowparens.mo share/locale/ja/LC_MESSAGES/tabswitcherplugin.mo share/locale/ka/LC_MESSAGES/formatplugin.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/katebookmarksplugin.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/katecompilerexplorer.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/kategpgplugin.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/rainbowparens.mo share/locale/ka/LC_MESSAGES/rbqlplugin.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/formatplugin.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/katebookmarksplugin.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/katecompilerexplorer.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/katekeyboardmacros.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/rainbowparens.mo share/locale/ko/LC_MESSAGES/rbqlplugin.mo share/locale/ko/LC_MESSAGES/tabswitcherplugin.mo share/locale/ku/LC_MESSAGES/kate.mo share/locale/lt/LC_MESSAGES/formatplugin.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/katebookmarksplugin.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/katecompilerexplorer.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/kategpgplugin.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/rainbowparens.mo share/locale/lt/LC_MESSAGES/rbqlplugin.mo share/locale/lt/LC_MESSAGES/tabswitcherplugin.mo share/locale/lv/LC_MESSAGES/formatplugin.mo share/locale/lv/LC_MESSAGES/kate-ctags-plugin.mo share/locale/lv/LC_MESSAGES/kate-replicode-plugin.mo share/locale/lv/LC_MESSAGES/kate.mo share/locale/lv/LC_MESSAGES/katebacktracebrowserplugin.mo +share/locale/lv/LC_MESSAGES/katebookmarksplugin.mo share/locale/lv/LC_MESSAGES/katebuild-plugin.mo share/locale/lv/LC_MESSAGES/katecloseexceptplugin.mo share/locale/lv/LC_MESSAGES/katecolorpickerplugin.mo share/locale/lv/LC_MESSAGES/katecompilerexplorer.mo share/locale/lv/LC_MESSAGES/kateexternaltoolsplugin.mo share/locale/lv/LC_MESSAGES/katefilebrowserplugin.mo share/locale/lv/LC_MESSAGES/katefiletree.mo share/locale/lv/LC_MESSAGES/kategdbplugin.mo share/locale/lv/LC_MESSAGES/kategitblameplugin.mo share/locale/lv/LC_MESSAGES/katekeyboardmacros.mo share/locale/lv/LC_MESSAGES/katekonsoleplugin.mo share/locale/lv/LC_MESSAGES/kateproject.mo share/locale/lv/LC_MESSAGES/katesearch.mo share/locale/lv/LC_MESSAGES/katesnippetsplugin.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/katexmlcheck.mo share/locale/lv/LC_MESSAGES/katexmltools.mo share/locale/lv/LC_MESSAGES/ktexteditorpreviewplugin.mo share/locale/lv/LC_MESSAGES/lspclient.mo share/locale/lv/LC_MESSAGES/rainbowparens.mo share/locale/lv/LC_MESSAGES/rbqlplugin.mo share/locale/lv/LC_MESSAGES/tabswitcherplugin.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/formatplugin.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/katebookmarksplugin.mo share/locale/nb/LC_MESSAGES/katebuild-plugin.mo share/locale/nb/LC_MESSAGES/katecloseexceptplugin.mo share/locale/nb/LC_MESSAGES/katecolorpickerplugin.mo share/locale/nb/LC_MESSAGES/katecompilerexplorer.mo share/locale/nb/LC_MESSAGES/kateexternaltoolsplugin.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/kategitblameplugin.mo share/locale/nb/LC_MESSAGES/kategpgplugin.mo share/locale/nb/LC_MESSAGES/katekeyboardmacros.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/katexmlcheck.mo share/locale/nb/LC_MESSAGES/katexmltools.mo share/locale/nb/LC_MESSAGES/ktexteditorpreviewplugin.mo share/locale/nb/LC_MESSAGES/lspclient.mo share/locale/nb/LC_MESSAGES/rainbowparens.mo share/locale/nb/LC_MESSAGES/rbqlplugin.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/formatplugin.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/katebookmarksplugin.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/katecompilerexplorer.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/kategpgplugin.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/rainbowparens.mo share/locale/nl/LC_MESSAGES/rbqlplugin.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/katecompilerexplorer.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/kategitblameplugin.mo share/locale/nn/LC_MESSAGES/katekeyboardmacros.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/formatplugin.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/katebookmarksplugin.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/katecompilerexplorer.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/kategpgplugin.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/rainbowparens.mo share/locale/pl/LC_MESSAGES/rbqlplugin.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/formatplugin.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/katebookmarksplugin.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/katecompilerexplorer.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/kategpgplugin.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/rainbowparens.mo share/locale/pt_BR/LC_MESSAGES/rbqlplugin.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/katebookmarksplugin.mo share/locale/ro/LC_MESSAGES/katebuild-plugin.mo share/locale/ro/LC_MESSAGES/katecloseexceptplugin.mo +share/locale/ro/LC_MESSAGES/katecolorpickerplugin.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/rainbowparens.mo +share/locale/ro/LC_MESSAGES/rbqlplugin.mo share/locale/ro/LC_MESSAGES/tabswitcherplugin.mo share/locale/ru/LC_MESSAGES/formatplugin.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/katecompilerexplorer.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/rainbowparens.mo share/locale/ru/LC_MESSAGES/rbqlplugin.mo share/locale/ru/LC_MESSAGES/tabswitcherplugin.mo share/locale/sa/LC_MESSAGES/formatplugin.mo share/locale/sa/LC_MESSAGES/kate-ctags-plugin.mo share/locale/sa/LC_MESSAGES/kate-replicode-plugin.mo share/locale/sa/LC_MESSAGES/kate.mo share/locale/sa/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/sa/LC_MESSAGES/katebuild-plugin.mo share/locale/sa/LC_MESSAGES/katecloseexceptplugin.mo share/locale/sa/LC_MESSAGES/katecolorpickerplugin.mo share/locale/sa/LC_MESSAGES/katecompilerexplorer.mo share/locale/sa/LC_MESSAGES/kateexternaltoolsplugin.mo share/locale/sa/LC_MESSAGES/katefilebrowserplugin.mo share/locale/sa/LC_MESSAGES/katefiletree.mo share/locale/sa/LC_MESSAGES/kategdbplugin.mo share/locale/sa/LC_MESSAGES/kategitblameplugin.mo share/locale/sa/LC_MESSAGES/katekeyboardmacros.mo share/locale/sa/LC_MESSAGES/katekonsoleplugin.mo share/locale/sa/LC_MESSAGES/kateproject.mo share/locale/sa/LC_MESSAGES/katesearch.mo share/locale/sa/LC_MESSAGES/katesnippetsplugin.mo share/locale/sa/LC_MESSAGES/katesql.mo share/locale/sa/LC_MESSAGES/katesymbolviewer.mo share/locale/sa/LC_MESSAGES/katetextfilter.mo share/locale/sa/LC_MESSAGES/katexmlcheck.mo share/locale/sa/LC_MESSAGES/katexmltools.mo share/locale/sa/LC_MESSAGES/ktexteditorpreviewplugin.mo share/locale/sa/LC_MESSAGES/lspclient.mo share/locale/sa/LC_MESSAGES/rainbowparens.mo share/locale/sa/LC_MESSAGES/rbqlplugin.mo share/locale/sa/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/formatplugin.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/katecompilerexplorer.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/rainbowparens.mo share/locale/sk/LC_MESSAGES/rbqlplugin.mo share/locale/sk/LC_MESSAGES/tabswitcherplugin.mo share/locale/sl/LC_MESSAGES/formatplugin.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/katebookmarksplugin.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/katecompilerexplorer.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/kategpgplugin.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/rainbowparens.mo share/locale/sl/LC_MESSAGES/rbqlplugin.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/formatplugin.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/katebookmarksplugin.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/katecompilerexplorer.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/rainbowparens.mo share/locale/sv/LC_MESSAGES/rbqlplugin.mo share/locale/sv/LC_MESSAGES/tabswitcherplugin.mo share/locale/ta/LC_MESSAGES/formatplugin.mo share/locale/ta/LC_MESSAGES/kate-ctags-plugin.mo share/locale/ta/LC_MESSAGES/kate-replicode-plugin.mo share/locale/ta/LC_MESSAGES/kate.mo share/locale/ta/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/ta/LC_MESSAGES/katebuild-plugin.mo share/locale/ta/LC_MESSAGES/katecloseexceptplugin.mo share/locale/ta/LC_MESSAGES/katecolorpickerplugin.mo share/locale/ta/LC_MESSAGES/kateexternaltoolsplugin.mo share/locale/ta/LC_MESSAGES/katefilebrowserplugin.mo share/locale/ta/LC_MESSAGES/katefiletree.mo share/locale/ta/LC_MESSAGES/kategdbplugin.mo share/locale/ta/LC_MESSAGES/kategitblameplugin.mo share/locale/ta/LC_MESSAGES/katekeyboardmacros.mo share/locale/ta/LC_MESSAGES/katekonsoleplugin.mo share/locale/ta/LC_MESSAGES/kateproject.mo share/locale/ta/LC_MESSAGES/katesearch.mo share/locale/ta/LC_MESSAGES/katesnippetsplugin.mo share/locale/ta/LC_MESSAGES/katesql.mo share/locale/ta/LC_MESSAGES/katesymbolviewer.mo share/locale/ta/LC_MESSAGES/katetextfilter.mo share/locale/ta/LC_MESSAGES/katexmlcheck.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/rainbowparens.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/formatplugin.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/katebookmarksplugin.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/katecompilerexplorer.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/kategpgplugin.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/rainbowparens.mo share/locale/tr/LC_MESSAGES/rbqlplugin.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/formatplugin.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/katebookmarksplugin.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/katecompilerexplorer.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/kategpgplugin.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/rainbowparens.mo share/locale/uk/LC_MESSAGES/rbqlplugin.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/formatplugin.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/katebookmarksplugin.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/katecompilerexplorer.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/kategpgplugin.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/rainbowparens.mo share/locale/zh_CN/LC_MESSAGES/rbqlplugin.mo share/locale/zh_CN/LC_MESSAGES/tabswitcherplugin.mo share/locale/zh_TW/LC_MESSAGES/formatplugin.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/katebookmarksplugin.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/katecompilerexplorer.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/kategpgplugin.mo share/locale/zh_TW/LC_MESSAGES/katekeyboardmacros.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/rainbowparens.mo share/locale/zh_TW/LC_MESSAGES/rbqlplugin.mo share/locale/zh_TW/LC_MESSAGES/tabswitcherplugin.mo share/man/ca/man1/kate.1.gz share/man/de/man1/kate.1.gz share/man/eo/man1/kate.1.gz share/man/es/man1/kate.1.gz share/man/fr/man1/kate.1.gz share/man/it/man1/kate.1.gz share/man/man1/kate.1.gz share/man/nl/man1/kate.1.gz share/man/pt/man1/kate.1.gz share/man/pt_BR/man1/kate.1.gz share/man/ru/man1/kate.1.gz share/man/sv/man1/kate.1.gz share/man/tr/man1/kate.1.gz share/man/uk/man1/kate.1.gz 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 e9d852347fdf..5468e753c989 100644 --- a/games/blinken/distinfo +++ b/games/blinken/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1772541880 -SHA256 (KDE/release-service/25.12.3/blinken-25.12.3.tar.xz) = b744aadafc3afaa10e602c57122c350a12280aa158c1559f925a639a439a7e37 -SIZE (KDE/release-service/25.12.3/blinken-25.12.3.tar.xz) = 2715280 +TIMESTAMP = 1776248183 +SHA256 (KDE/release-service/26.04.0/blinken-26.04.0.tar.xz) = 8f0836e0e2f368feefe458a1d18a4bee127169311052b24d4a5d830d02c97c76 +SIZE (KDE/release-service/26.04.0/blinken-26.04.0.tar.xz) = 2715340 diff --git a/games/bomber/distinfo b/games/bomber/distinfo index 144b295bca6e..9318dfb3c3b0 100644 --- a/games/bomber/distinfo +++ b/games/bomber/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1772541883 -SHA256 (KDE/release-service/25.12.3/bomber-25.12.3.tar.xz) = 5150d3038c6d09453d2792219476894b719d51a1b8ed6e5eefdc2086f7e39370 -SIZE (KDE/release-service/25.12.3/bomber-25.12.3.tar.xz) = 840500 +TIMESTAMP = 1776248184 +SHA256 (KDE/release-service/26.04.0/bomber-26.04.0.tar.xz) = d4e3083d7c82fb7de42da7181daefd2a8a3976ee454066d7962b624e074f8f45 +SIZE (KDE/release-service/26.04.0/bomber-26.04.0.tar.xz) = 840908 diff --git a/games/bovo/distinfo b/games/bovo/distinfo index faa5be4b0537..a36f5d993ba1 100644 --- a/games/bovo/distinfo +++ b/games/bovo/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1772541885 -SHA256 (KDE/release-service/25.12.3/bovo-25.12.3.tar.xz) = b5ab38158518353360ce95de017236d3a235afe499fe9fd95a692afead80ae15 -SIZE (KDE/release-service/25.12.3/bovo-25.12.3.tar.xz) = 221608 +TIMESTAMP = 1776248186 +SHA256 (KDE/release-service/26.04.0/bovo-26.04.0.tar.xz) = 2d7587dfa003df020ad9c1d1add83868d39d1285cf3b5e959cd6e89a8d87a55e +SIZE (KDE/release-service/26.04.0/bovo-26.04.0.tar.xz) = 221680 diff --git a/games/granatier/distinfo b/games/granatier/distinfo index ac7f3bc5d497..3a34693ffb5b 100644 --- a/games/granatier/distinfo +++ b/games/granatier/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1772541886 -SHA256 (KDE/release-service/25.12.3/granatier-25.12.3.tar.xz) = c5b8814ed4acad3e84edcddfaa9c7fdc380347e50e738c9116de42be07145c95 -SIZE (KDE/release-service/25.12.3/granatier-25.12.3.tar.xz) = 2017120 +TIMESTAMP = 1776248188 +SHA256 (KDE/release-service/26.04.0/granatier-26.04.0.tar.xz) = dfce44b1db4d2ece904784ee2d9958254ffef4ebf178ccc8fc3685d232e6cf2e +SIZE (KDE/release-service/26.04.0/granatier-26.04.0.tar.xz) = 2016956 diff --git a/games/kajongg/distinfo b/games/kajongg/distinfo index 2335dc1f97e1..c6861b8b5bf9 100644 --- a/games/kajongg/distinfo +++ b/games/kajongg/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1772541888 -SHA256 (KDE/release-service/25.12.3/kajongg-25.12.3.tar.xz) = b24ebbc30e68f5fd52d180cd2cc2734d481b3d793f084dd6bfc4a19ac3264b99 -SIZE (KDE/release-service/25.12.3/kajongg-25.12.3.tar.xz) = 4637628 +TIMESTAMP = 1776248189 +SHA256 (KDE/release-service/26.04.0/kajongg-26.04.0.tar.xz) = cc931551dec0102a8c2caf39f856ec11ef68d5a9612e3d716d2e401da0dc13b3 +SIZE (KDE/release-service/26.04.0/kajongg-26.04.0.tar.xz) = 4637692 diff --git a/games/kanagram/distinfo b/games/kanagram/distinfo index c2855997c2a1..4c3bf77f0b81 100644 --- a/games/kanagram/distinfo +++ b/games/kanagram/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1772541889 -SHA256 (KDE/release-service/25.12.3/kanagram-25.12.3.tar.xz) = a7dfcaa7593058cde334bc5d15a29ed63567563fca25ab1d3e23ef62f354ed56 -SIZE (KDE/release-service/25.12.3/kanagram-25.12.3.tar.xz) = 7786360 +TIMESTAMP = 1776248191 +SHA256 (KDE/release-service/26.04.0/kanagram-26.04.0.tar.xz) = c78ded7b9686000aa4cc2d4d82ebf99f925cc9b28757eb9078f4d9c318a4ba7c +SIZE (KDE/release-service/26.04.0/kanagram-26.04.0.tar.xz) = 7786388 diff --git a/games/kapman/distinfo b/games/kapman/distinfo index 00f298d40a24..6b5bf4cc4f1c 100644 --- a/games/kapman/distinfo +++ b/games/kapman/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1772541891 -SHA256 (KDE/release-service/25.12.3/kapman-25.12.3.tar.xz) = 7059b1341d4ff142388ed502f903256262722c2fbe4f73c1b288e4d713c8d261 -SIZE (KDE/release-service/25.12.3/kapman-25.12.3.tar.xz) = 2150088 +TIMESTAMP = 1776248193 +SHA256 (KDE/release-service/26.04.0/kapman-26.04.0.tar.xz) = 4510a5382f1d0b5263d1315ff818f5c89d64dfee0ae584faa83a80652b69d862 +SIZE (KDE/release-service/26.04.0/kapman-26.04.0.tar.xz) = 2149820 diff --git a/games/katomic/distinfo b/games/katomic/distinfo index fca4e653724e..a7a7ecfd88eb 100644 --- a/games/katomic/distinfo +++ b/games/katomic/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1772541892 -SHA256 (KDE/release-service/25.12.3/katomic-25.12.3.tar.xz) = b2fb1bf379c345f8754e7e284e65c8ac174099fb63a5130134d164e922af624f -SIZE (KDE/release-service/25.12.3/katomic-25.12.3.tar.xz) = 1450312 +TIMESTAMP = 1776248194 +SHA256 (KDE/release-service/26.04.0/katomic-26.04.0.tar.xz) = 6bbfad9bea1529b2b08b260720fd724a2360383e7959f3fc36fe499f0373b6d7 +SIZE (KDE/release-service/26.04.0/katomic-26.04.0.tar.xz) = 1448960 diff --git a/games/kblackbox/distinfo b/games/kblackbox/distinfo index aba224109611..52720ea96eaf 100644 --- a/games/kblackbox/distinfo +++ b/games/kblackbox/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1772541894 -SHA256 (KDE/release-service/25.12.3/kblackbox-25.12.3.tar.xz) = 143e0e45e48fa3de16952c60cbb436e8386c76b48a5445af61e36dd8eedab4a8 -SIZE (KDE/release-service/25.12.3/kblackbox-25.12.3.tar.xz) = 555628 +TIMESTAMP = 1776248196 +SHA256 (KDE/release-service/26.04.0/kblackbox-26.04.0.tar.xz) = 238c54006b05fdeeb05b38e5a106f10d5c51451a0be42b46b94b91d5fe87b58e +SIZE (KDE/release-service/26.04.0/kblackbox-26.04.0.tar.xz) = 555488 diff --git a/games/kblocks/distinfo b/games/kblocks/distinfo index 7085199ce028..3c236f3fb1eb 100644 --- a/games/kblocks/distinfo +++ b/games/kblocks/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1772541895 -SHA256 (KDE/release-service/25.12.3/kblocks-25.12.3.tar.xz) = 23ffac3c3bfcd8064df9e2487cca03af685cd42ec6b8403d26ba8baeb14f6a47 -SIZE (KDE/release-service/25.12.3/kblocks-25.12.3.tar.xz) = 2104700 +TIMESTAMP = 1776248198 +SHA256 (KDE/release-service/26.04.0/kblocks-26.04.0.tar.xz) = 05726ea742e5efffe6284a1c9077530a56f427d635ec8b0a1de2f8aa91076467 +SIZE (KDE/release-service/26.04.0/kblocks-26.04.0.tar.xz) = 2103940 diff --git a/games/kbounce/distinfo b/games/kbounce/distinfo index d5d045e790d4..fdbea2352b23 100644 --- a/games/kbounce/distinfo +++ b/games/kbounce/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1772541897 -SHA256 (KDE/release-service/25.12.3/kbounce-25.12.3.tar.xz) = 6d4c9eabc8cc39c3402076dfd0c5a6566a130a81824db106a44da433ee6cae08 -SIZE (KDE/release-service/25.12.3/kbounce-25.12.3.tar.xz) = 3324464 +TIMESTAMP = 1776248199 +SHA256 (KDE/release-service/26.04.0/kbounce-26.04.0.tar.xz) = 5b0b4c6608e9032272499dcf53433b71a68d80743219a86800567cb8876857f8 +SIZE (KDE/release-service/26.04.0/kbounce-26.04.0.tar.xz) = 3327540 diff --git a/games/kbreakout/distinfo b/games/kbreakout/distinfo index 4755aa89cb19..36fc7a5b8445 100644 --- a/games/kbreakout/distinfo +++ b/games/kbreakout/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1772541898 -SHA256 (KDE/release-service/25.12.3/kbreakout-25.12.3.tar.xz) = dc9346e793d521e830245b0be339d28ee9fbe75763e1918565070bb335534029 -SIZE (KDE/release-service/25.12.3/kbreakout-25.12.3.tar.xz) = 2558556 +TIMESTAMP = 1776248201 +SHA256 (KDE/release-service/26.04.0/kbreakout-26.04.0.tar.xz) = 952d60415830052ad6854cb1665035a0aee65a54616fed97544e676bb510eb4e +SIZE (KDE/release-service/26.04.0/kbreakout-26.04.0.tar.xz) = 2559196 diff --git a/games/kdiamond/distinfo b/games/kdiamond/distinfo index b93fcae9ecae..10eee45767f4 100644 --- a/games/kdiamond/distinfo +++ b/games/kdiamond/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1772541899 -SHA256 (KDE/release-service/25.12.3/kdiamond-25.12.3.tar.xz) = 8c546b013c173200e08f953da74efd374324ffa15ab2cf0a22ce707a028b5121 -SIZE (KDE/release-service/25.12.3/kdiamond-25.12.3.tar.xz) = 4674992 +TIMESTAMP = 1776248203 +SHA256 (KDE/release-service/26.04.0/kdiamond-26.04.0.tar.xz) = a4170e5ff4211ac695f6e65d19a7711580b6cf13edfbef2035f2f35ba8950d0c +SIZE (KDE/release-service/26.04.0/kdiamond-26.04.0.tar.xz) = 4674900 diff --git a/games/kfourinline/distinfo b/games/kfourinline/distinfo index b26ce1026dc4..e445f42be4fd 100644 --- a/games/kfourinline/distinfo +++ b/games/kfourinline/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1772541901 -SHA256 (KDE/release-service/25.12.3/kfourinline-25.12.3.tar.xz) = 104c73e8c98b107f249f1e7a81cada2563cf1b748ffd9190333705143d95b3de -SIZE (KDE/release-service/25.12.3/kfourinline-25.12.3.tar.xz) = 748672 +TIMESTAMP = 1776248204 +SHA256 (KDE/release-service/26.04.0/kfourinline-26.04.0.tar.xz) = 3164c1eb0ea3b3724a85f9bbd96b98c1791ef063e2bd48bf6da8c32ab8c1f386 +SIZE (KDE/release-service/26.04.0/kfourinline-26.04.0.tar.xz) = 748480 diff --git a/games/kgoldrunner/distinfo b/games/kgoldrunner/distinfo index 08262d03ace4..3c2e94d85c5e 100644 --- a/games/kgoldrunner/distinfo +++ b/games/kgoldrunner/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1772541902 -SHA256 (KDE/release-service/25.12.3/kgoldrunner-25.12.3.tar.xz) = 851ca9d6e95399737c77c367015ab8465e339b4ec00491b665ecedcd287d537c -SIZE (KDE/release-service/25.12.3/kgoldrunner-25.12.3.tar.xz) = 4464452 +TIMESTAMP = 1776248206 +SHA256 (KDE/release-service/26.04.0/kgoldrunner-26.04.0.tar.xz) = 375fca9618287cd884fb3bb824ece47c28c41b2b3c04dd7362a144ef74fb829d +SIZE (KDE/release-service/26.04.0/kgoldrunner-26.04.0.tar.xz) = 4468728 diff --git a/games/khangman/distinfo b/games/khangman/distinfo index 2e85e5414f6e..5ffa0c63e529 100644 --- a/games/khangman/distinfo +++ b/games/khangman/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1772541904 -SHA256 (KDE/release-service/25.12.3/khangman-25.12.3.tar.xz) = 9d76254b3fbeff70113d50700ad1c14a4313ace4ab030fb0017d885b679996b1 -SIZE (KDE/release-service/25.12.3/khangman-25.12.3.tar.xz) = 7034448 +TIMESTAMP = 1776248208 +SHA256 (KDE/release-service/26.04.0/khangman-26.04.0.tar.xz) = 06e770c29bd1016e6e9364caf9ef6f30cffc86ab8ae95a8cf3c3657772585bf2 +SIZE (KDE/release-service/26.04.0/khangman-26.04.0.tar.xz) = 7034432 diff --git a/games/kigo/distinfo b/games/kigo/distinfo index 10a0a433dd3f..1448ca4c9b31 100644 --- a/games/kigo/distinfo +++ b/games/kigo/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1772541905 -SHA256 (KDE/release-service/25.12.3/kigo-25.12.3.tar.xz) = ca00c01a636d0a636dd11926dd6a8a018b2018c3877b445eec3cc1617b7f0a69 -SIZE (KDE/release-service/25.12.3/kigo-25.12.3.tar.xz) = 4838208 +TIMESTAMP = 1776248209 +SHA256 (KDE/release-service/26.04.0/kigo-26.04.0.tar.xz) = 7bdac78f71c8c042a886bcd5422105dbf68250e902b3df03c182bcb94dabb475 +SIZE (KDE/release-service/26.04.0/kigo-26.04.0.tar.xz) = 4838176 diff --git a/games/killbots/distinfo b/games/killbots/distinfo index dcf4b21367bf..ba75ecc4d232 100644 --- a/games/killbots/distinfo +++ b/games/killbots/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1772541907 -SHA256 (KDE/release-service/25.12.3/killbots-25.12.3.tar.xz) = 02636d7f178a3dba76a45920165b306666631753dd3772f4d34d7e46ecd50b57 -SIZE (KDE/release-service/25.12.3/killbots-25.12.3.tar.xz) = 1177428 +TIMESTAMP = 1776248211 +SHA256 (KDE/release-service/26.04.0/killbots-26.04.0.tar.xz) = 09dcd17593833a4902dcff6ca8907c9a9f2fcbc65c50127f14db28f75ceb2041 +SIZE (KDE/release-service/26.04.0/killbots-26.04.0.tar.xz) = 1178428 diff --git a/games/kiriki/distinfo b/games/kiriki/distinfo index 3196e8de003a..05739a14e96b 100644 --- a/games/kiriki/distinfo +++ b/games/kiriki/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1772541908 -SHA256 (KDE/release-service/25.12.3/kiriki-25.12.3.tar.xz) = c5d768313baa3325a9bc64b6a8a9d7075861c052bc72235bf9aa6c96158ce16a -SIZE (KDE/release-service/25.12.3/kiriki-25.12.3.tar.xz) = 376044 +TIMESTAMP = 1776248212 +SHA256 (KDE/release-service/26.04.0/kiriki-26.04.0.tar.xz) = 602555ecc26f7f0df92d2ad76600bf30b69c1ba0c2291eee96a78a5c3ea3953a +SIZE (KDE/release-service/26.04.0/kiriki-26.04.0.tar.xz) = 375840 diff --git a/games/kjumpingcube/distinfo b/games/kjumpingcube/distinfo index e7e58f1f59d9..83425eac3875 100644 --- a/games/kjumpingcube/distinfo +++ b/games/kjumpingcube/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1772541910 -SHA256 (KDE/release-service/25.12.3/kjumpingcube-25.12.3.tar.xz) = 519f68570fa0152470645caca846c888a348dd2bdefde1c07715ba91ddcb1490 -SIZE (KDE/release-service/25.12.3/kjumpingcube-25.12.3.tar.xz) = 351116 +TIMESTAMP = 1776248214 +SHA256 (KDE/release-service/26.04.0/kjumpingcube-26.04.0.tar.xz) = 834e1245d84b40608d06d80c34c10eeaf7fdf26d068b56335b04aa19c60ba447 +SIZE (KDE/release-service/26.04.0/kjumpingcube-26.04.0.tar.xz) = 352640 diff --git a/games/klickety/distinfo b/games/klickety/distinfo index 843cabfcedca..93880f56ad12 100644 --- a/games/klickety/distinfo +++ b/games/klickety/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1772541911 -SHA256 (KDE/release-service/25.12.3/klickety-25.12.3.tar.xz) = c9f59671ef1f026f9780699e4e1572ee038494caebbf73cab05ee0bf15736faa -SIZE (KDE/release-service/25.12.3/klickety-25.12.3.tar.xz) = 1389980 +TIMESTAMP = 1776248216 +SHA256 (KDE/release-service/26.04.0/klickety-26.04.0.tar.xz) = d0cf11e0cac9c25542bbf912e80aaa228309a54ba690465310d09bb90833ef3f +SIZE (KDE/release-service/26.04.0/klickety-26.04.0.tar.xz) = 1506256 diff --git a/games/klines/distinfo b/games/klines/distinfo index a564491afa8e..40e889bc2e75 100644 --- a/games/klines/distinfo +++ b/games/klines/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1772541913 -SHA256 (KDE/release-service/25.12.3/klines-25.12.3.tar.xz) = 5e42f87474452d128f8091715f6b0582afa45da7dd7266b0bc20108f860d0c99 -SIZE (KDE/release-service/25.12.3/klines-25.12.3.tar.xz) = 1675196 +TIMESTAMP = 1776248217 +SHA256 (KDE/release-service/26.04.0/klines-26.04.0.tar.xz) = bee78be06fbc85f576e03ab4dd7cf8c59df7f840e26dd5d1d9b93d4b9e600772 +SIZE (KDE/release-service/26.04.0/klines-26.04.0.tar.xz) = 1675252 diff --git a/games/kmahjongg/distinfo b/games/kmahjongg/distinfo index 1f4ab2609e4b..635e9f6481ad 100644 --- a/games/kmahjongg/distinfo +++ b/games/kmahjongg/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1772541914 -SHA256 (KDE/release-service/25.12.3/kmahjongg-25.12.3.tar.xz) = 769798d2e03b9a8de4675b8bcf932a9e0c63229d4712e73074fc4bea75f2793e -SIZE (KDE/release-service/25.12.3/kmahjongg-25.12.3.tar.xz) = 3724884 +TIMESTAMP = 1776248219 +SHA256 (KDE/release-service/26.04.0/kmahjongg-26.04.0.tar.xz) = b3d39d0d464cde50da0ce5f2a299dfa7ff4cc497aec022689a0db9193c4a2b5b +SIZE (KDE/release-service/26.04.0/kmahjongg-26.04.0.tar.xz) = 3724708 diff --git a/games/kmines/distinfo b/games/kmines/distinfo index 06fdc676b3a6..eac3c0bba857 100644 --- a/games/kmines/distinfo +++ b/games/kmines/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1772541916 -SHA256 (KDE/release-service/25.12.3/kmines-25.12.3.tar.xz) = 4bb6fe8eb7a5f5d4aa5d5604258dc907aba491ca9c67066771a55190ec1d751a -SIZE (KDE/release-service/25.12.3/kmines-25.12.3.tar.xz) = 950152 +TIMESTAMP = 1776248221 +SHA256 (KDE/release-service/26.04.0/kmines-26.04.0.tar.xz) = 269e66f23dab785e147ba49e85d70f9cc6c46ed9ded89044d9e46ed284a17a95 +SIZE (KDE/release-service/26.04.0/kmines-26.04.0.tar.xz) = 951988 diff --git a/games/knavalbattle/distinfo b/games/knavalbattle/distinfo index 71be09f2a998..282de265730c 100644 --- a/games/knavalbattle/distinfo +++ b/games/knavalbattle/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1772541917 -SHA256 (KDE/release-service/25.12.3/knavalbattle-25.12.3.tar.xz) = 3836446f6c797ee8e664877383aa1f7bd001e2938b107a9bea82e7d9f96d78e5 -SIZE (KDE/release-service/25.12.3/knavalbattle-25.12.3.tar.xz) = 1050028 +TIMESTAMP = 1776248222 +SHA256 (KDE/release-service/26.04.0/knavalbattle-26.04.0.tar.xz) = e5e251b18a3951d831f90ffbf43582ea2076636d1d4b3305e235c9b58a0be98a +SIZE (KDE/release-service/26.04.0/knavalbattle-26.04.0.tar.xz) = 1050344 diff --git a/games/knetwalk/distinfo b/games/knetwalk/distinfo index 568e9a6c9301..0fd6cc4b43d1 100644 --- a/games/knetwalk/distinfo +++ b/games/knetwalk/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1772541919 -SHA256 (KDE/release-service/25.12.3/knetwalk-25.12.3.tar.xz) = 50c693f6d1e1778b24d235f4322314f80becb4044c38e71c5999efb356096ee2 -SIZE (KDE/release-service/25.12.3/knetwalk-25.12.3.tar.xz) = 1012232 +TIMESTAMP = 1776248224 +SHA256 (KDE/release-service/26.04.0/knetwalk-26.04.0.tar.xz) = 534f57ab3a24146a2c32344dbfb6e8cecb16097ab10aa951dc328c2ff98f2989 +SIZE (KDE/release-service/26.04.0/knetwalk-26.04.0.tar.xz) = 1014072 diff --git a/games/knights/distinfo b/games/knights/distinfo index c9ffb81ac22e..484cfdcab483 100644 --- a/games/knights/distinfo +++ b/games/knights/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1772541920 -SHA256 (KDE/release-service/25.12.3/knights-25.12.3.tar.xz) = a4ce42235f47bd5a90c87c9fb51c43de40bd325c7ba046634a36499bbd16dff3 -SIZE (KDE/release-service/25.12.3/knights-25.12.3.tar.xz) = 2499936 +TIMESTAMP = 1776248226 +SHA256 (KDE/release-service/26.04.0/knights-26.04.0.tar.xz) = 216e6489c2fe97eae866a33c868816cf52fe4cdd98cad70b3f9cbb07d72faa4e +SIZE (KDE/release-service/26.04.0/knights-26.04.0.tar.xz) = 2501380 diff --git a/games/kolf/distinfo b/games/kolf/distinfo index 6445ff7d1b45..d9bc78c14d06 100644 --- a/games/kolf/distinfo +++ b/games/kolf/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1772541922 -SHA256 (KDE/release-service/25.12.3/kolf-25.12.3.tar.xz) = 6d9359bafd035027516e9c50f64ac25d2718fb4a81141f469d80c7454dc895e8 -SIZE (KDE/release-service/25.12.3/kolf-25.12.3.tar.xz) = 1085460 +TIMESTAMP = 1776248227 +SHA256 (KDE/release-service/26.04.0/kolf-26.04.0.tar.xz) = dfb88b8e44bfdfc2e06b9499a17561a97e31de839b1d788c564c3ea8e05e9386 +SIZE (KDE/release-service/26.04.0/kolf-26.04.0.tar.xz) = 1084136 diff --git a/games/kollision/distinfo b/games/kollision/distinfo index f2daddb6fcea..cd0ee9729341 100644 --- a/games/kollision/distinfo +++ b/games/kollision/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1772541923 -SHA256 (KDE/release-service/25.12.3/kollision-25.12.3.tar.xz) = 298a0a940235f4fa592d92373ffb1dd9679c5bfa44910e7bcfe014603db90ebb -SIZE (KDE/release-service/25.12.3/kollision-25.12.3.tar.xz) = 313616 +TIMESTAMP = 1776248229 +SHA256 (KDE/release-service/26.04.0/kollision-26.04.0.tar.xz) = d18e8288525e5ee529f352e651d9317981393084126b57b07e10e9f06094debc +SIZE (KDE/release-service/26.04.0/kollision-26.04.0.tar.xz) = 313484 diff --git a/games/konquest/distinfo b/games/konquest/distinfo index ea39f3e9d341..71f6ded7e2e8 100644 --- a/games/konquest/distinfo +++ b/games/konquest/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1772541925 -SHA256 (KDE/release-service/25.12.3/konquest-25.12.3.tar.xz) = 93a91e75b93af3d528ded66327cbba137db7150b0b71cfbbc455bc59962975b7 -SIZE (KDE/release-service/25.12.3/konquest-25.12.3.tar.xz) = 863352 +TIMESTAMP = 1776248231 +SHA256 (KDE/release-service/26.04.0/konquest-26.04.0.tar.xz) = 8a627220f878875d49ed32cf69383db55a5c3341f7a2294185f4fdfdcfb1bd48 +SIZE (KDE/release-service/26.04.0/konquest-26.04.0.tar.xz) = 863144 diff --git a/games/kpat/distinfo b/games/kpat/distinfo index 607c40d64600..1877565226ef 100644 --- a/games/kpat/distinfo +++ b/games/kpat/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1772541926 -SHA256 (KDE/release-service/25.12.3/kpat-25.12.3.tar.xz) = 67e5fefd247edc9d3a22ceaa3fc9d5c0c72d49d0c05f02ab48f2f7bba0c4b997 -SIZE (KDE/release-service/25.12.3/kpat-25.12.3.tar.xz) = 3743516 +TIMESTAMP = 1776248232 +SHA256 (KDE/release-service/26.04.0/kpat-26.04.0.tar.xz) = bce863292ce75530235957be3178723115cbac193b61f2b953d6d33f237ac543 +SIZE (KDE/release-service/26.04.0/kpat-26.04.0.tar.xz) = 3746012 diff --git a/games/kreversi/distinfo b/games/kreversi/distinfo index a5a07e2d1f91..d14e31b196e9 100644 --- a/games/kreversi/distinfo +++ b/games/kreversi/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1772541928 -SHA256 (KDE/release-service/25.12.3/kreversi-25.12.3.tar.xz) = 2dbb1e9b0e6aed1632a6499e75396f3eac9a0c1030e8175f1b71af19bdf87687 -SIZE (KDE/release-service/25.12.3/kreversi-25.12.3.tar.xz) = 1037084 +TIMESTAMP = 1776248234 +SHA256 (KDE/release-service/26.04.0/kreversi-26.04.0.tar.xz) = 8df08c1f856ade5e211ccec2f1b72c7b72c2f7bcf6cfdf9a0e0e5f40bf956b91 +SIZE (KDE/release-service/26.04.0/kreversi-26.04.0.tar.xz) = 1036904 diff --git a/games/kshisen/distinfo b/games/kshisen/distinfo index c8c671920599..a515f7eff44e 100644 --- a/games/kshisen/distinfo +++ b/games/kshisen/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1772541929 -SHA256 (KDE/release-service/25.12.3/kshisen-25.12.3.tar.xz) = eb84a40a83d7c2392f0100e91ca14547ab7ec2eebe15f02a08ce4a60358e3629 -SIZE (KDE/release-service/25.12.3/kshisen-25.12.3.tar.xz) = 976416 +TIMESTAMP = 1776248235 +SHA256 (KDE/release-service/26.04.0/kshisen-26.04.0.tar.xz) = a9ba5bed3520980bf70473d4183e57dcc990e71da60a050a63609b9ec4a457b4 +SIZE (KDE/release-service/26.04.0/kshisen-26.04.0.tar.xz) = 976096 diff --git a/games/ksirk/distinfo b/games/ksirk/distinfo index bd97f2b99e5c..108da267018b 100644 --- a/games/ksirk/distinfo +++ b/games/ksirk/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1772541930 -SHA256 (KDE/release-service/25.12.3/ksirk-25.12.3.tar.xz) = 9c3ad4febe1a92bbec5ad6e2770dc968b810fdafcd08e300c6f8a9fcd510bca3 -SIZE (KDE/release-service/25.12.3/ksirk-25.12.3.tar.xz) = 6719056 +TIMESTAMP = 1776248237 +SHA256 (KDE/release-service/26.04.0/ksirk-26.04.0.tar.xz) = 3f79d803eafc380800bc101fc2c521ff6afdb9ee3ea2ae0e232d3e54aa9bb950 +SIZE (KDE/release-service/26.04.0/ksirk-26.04.0.tar.xz) = 6718888 diff --git a/games/ksnakeduel/distinfo b/games/ksnakeduel/distinfo index ae4decb3cb30..f997b20bdfec 100644 --- a/games/ksnakeduel/distinfo +++ b/games/ksnakeduel/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1772541932 -SHA256 (KDE/release-service/25.12.3/ksnakeduel-25.12.3.tar.xz) = fa57895556535388a011f596a816f8565850c4ec5ff9d95ea11abf813c2a1fb1 -SIZE (KDE/release-service/25.12.3/ksnakeduel-25.12.3.tar.xz) = 580416 +TIMESTAMP = 1776248239 +SHA256 (KDE/release-service/26.04.0/ksnakeduel-26.04.0.tar.xz) = 1e10865dcc3798ee1b0558cd680ab453d179499d7a1ae47003a1ac73acf7f6a6 +SIZE (KDE/release-service/26.04.0/ksnakeduel-26.04.0.tar.xz) = 580216 diff --git a/games/kspaceduel/distinfo b/games/kspaceduel/distinfo index 2abeaf104d3d..f742df1b4116 100644 --- a/games/kspaceduel/distinfo +++ b/games/kspaceduel/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1772541933 -SHA256 (KDE/release-service/25.12.3/kspaceduel-25.12.3.tar.xz) = a319f2a55dfd3fb5b87d68312bd2689ef892e9aa0456345e5ac66130cbf2a291 -SIZE (KDE/release-service/25.12.3/kspaceduel-25.12.3.tar.xz) = 637048 +TIMESTAMP = 1776248240 +SHA256 (KDE/release-service/26.04.0/kspaceduel-26.04.0.tar.xz) = d133f0b271c3d57f644e08809e8edbaac4fabde30d55218ab63fb6462d030110 +SIZE (KDE/release-service/26.04.0/kspaceduel-26.04.0.tar.xz) = 637072 diff --git a/games/ksquares/distinfo b/games/ksquares/distinfo index 0c0d7d66c17f..fd0a7bfc17d6 100644 --- a/games/ksquares/distinfo +++ b/games/ksquares/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1772541935 -SHA256 (KDE/release-service/25.12.3/ksquares-25.12.3.tar.xz) = 0c5f2fdf2cae5b1eb6a693f4d19c22c025746707e9e964fa23a5fc4e7a510a31 -SIZE (KDE/release-service/25.12.3/ksquares-25.12.3.tar.xz) = 324200 +TIMESTAMP = 1776248242 +SHA256 (KDE/release-service/26.04.0/ksquares-26.04.0.tar.xz) = 6c1f3cc80e20be88616367f9912860efa55702d0f00ea6d1d97c5c0d06dc44d4 +SIZE (KDE/release-service/26.04.0/ksquares-26.04.0.tar.xz) = 324056 diff --git a/games/ksudoku/distinfo b/games/ksudoku/distinfo index 14ebe01dc700..2bcef064793a 100644 --- a/games/ksudoku/distinfo +++ b/games/ksudoku/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1772541936 -SHA256 (KDE/release-service/25.12.3/ksudoku-25.12.3.tar.xz) = 9bbcfa9353f106350b4e9d9782d4b93ce5353106ff97fc5a929292c8ba9a4ff3 -SIZE (KDE/release-service/25.12.3/ksudoku-25.12.3.tar.xz) = 1751024 +TIMESTAMP = 1776248244 +SHA256 (KDE/release-service/26.04.0/ksudoku-26.04.0.tar.xz) = 42feab5fea4f49ff132e95494e8a2ca4b95828dbf1ce66dc34f5685d6e6a85ec +SIZE (KDE/release-service/26.04.0/ksudoku-26.04.0.tar.xz) = 1751064 diff --git a/games/ktuberling/distinfo b/games/ktuberling/distinfo index b13b939fa5b2..34eae9aef597 100644 --- a/games/ktuberling/distinfo +++ b/games/ktuberling/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1772541938 -SHA256 (KDE/release-service/25.12.3/ktuberling-25.12.3.tar.xz) = 0d2962a37c51b7317c9c5cf2b49c7977c3ddfc7e598556ebcd17e06c44587c53 -SIZE (KDE/release-service/25.12.3/ktuberling-25.12.3.tar.xz) = 71573988 +TIMESTAMP = 1776248246 +SHA256 (KDE/release-service/26.04.0/ktuberling-26.04.0.tar.xz) = 5a6f2ad4bf22755c890a5899bce54b3c76fe345da19da7806fd8be4708705150 +SIZE (KDE/release-service/26.04.0/ktuberling-26.04.0.tar.xz) = 71571092 diff --git a/games/kubrick/distinfo b/games/kubrick/distinfo index b32ddc83aaa1..9acfac9b91f0 100644 --- a/games/kubrick/distinfo +++ b/games/kubrick/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1772541940 -SHA256 (KDE/release-service/25.12.3/kubrick-25.12.3.tar.xz) = 156efe2cd2e0e3dc5e31ecaf9fcc422973a13d2d77dd5f7cd2ab0f2e5651843c -SIZE (KDE/release-service/25.12.3/kubrick-25.12.3.tar.xz) = 384964 +TIMESTAMP = 1776248247 +SHA256 (KDE/release-service/26.04.0/kubrick-26.04.0.tar.xz) = cf6b550fe17273d15e9b599777c1d26ea94c24d118002ea768258db5c4787f91 +SIZE (KDE/release-service/26.04.0/kubrick-26.04.0.tar.xz) = 384800 diff --git a/games/libkdegames/distinfo b/games/libkdegames/distinfo index c5fe3351a96d..09404768c780 100644 --- a/games/libkdegames/distinfo +++ b/games/libkdegames/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1772541941 -SHA256 (KDE/release-service/25.12.3/libkdegames-25.12.3.tar.xz) = 64605a58b087a57dc504d8e7fa4d637b4d59fb91ba1b4ed60f96fc78568f141c -SIZE (KDE/release-service/25.12.3/libkdegames-25.12.3.tar.xz) = 5975236 +TIMESTAMP = 1776288786 +SHA256 (KDE/release-service/26.04.0/libkdegames-26.04.0.tar.xz) = 12d615bc466bbdff4e85336d9cab6453dda8b4b20c8a48b74c49ec89e70d76bd +SIZE (KDE/release-service/26.04.0/libkdegames-26.04.0.tar.xz) = 6000120 diff --git a/games/libkmahjongg/distinfo b/games/libkmahjongg/distinfo index 549fcefab0e6..d3531045a207 100644 --- a/games/libkmahjongg/distinfo +++ b/games/libkmahjongg/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1772541943 -SHA256 (KDE/release-service/25.12.3/libkmahjongg-25.12.3.tar.xz) = ac5feb1f49db0ee47ac9b1e607ac6ec4582316aed761d9f0b4625ebd25bd97ab -SIZE (KDE/release-service/25.12.3/libkmahjongg-25.12.3.tar.xz) = 1693416 +TIMESTAMP = 1776248251 +SHA256 (KDE/release-service/26.04.0/libkmahjongg-26.04.0.tar.xz) = 6720c525249cfd7d9e9879aa97fcb92fde5da29095313847667adbc38430bbd9 +SIZE (KDE/release-service/26.04.0/libkmahjongg-26.04.0.tar.xz) = 1694104 diff --git a/games/lskat/distinfo b/games/lskat/distinfo index 3d00d0ece94c..5105c8423c17 100644 --- a/games/lskat/distinfo +++ b/games/lskat/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1772541944 -SHA256 (KDE/release-service/25.12.3/lskat-25.12.3.tar.xz) = 211188dceb5d84d39af70cd66d43ec26908834d1ebc682c0902492fd9481cfcf -SIZE (KDE/release-service/25.12.3/lskat-25.12.3.tar.xz) = 1229268 +TIMESTAMP = 1776248252 +SHA256 (KDE/release-service/26.04.0/lskat-26.04.0.tar.xz) = 0c1f2c1c615159e81456f2f2efacd24d2ba9690ab4c04671aed55973845b55ce +SIZE (KDE/release-service/26.04.0/lskat-26.04.0.tar.xz) = 1229092 diff --git a/games/palapeli/distinfo b/games/palapeli/distinfo index 478200c8b377..822647939c7a 100644 --- a/games/palapeli/distinfo +++ b/games/palapeli/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1772541945 -SHA256 (KDE/release-service/25.12.3/palapeli-25.12.3.tar.xz) = 5a8f5cd6ae8fa8f29dada3808417a51c355e4e3077b1063152324d9406cd25e5 -SIZE (KDE/release-service/25.12.3/palapeli-25.12.3.tar.xz) = 2134420 +TIMESTAMP = 1776248254 +SHA256 (KDE/release-service/26.04.0/palapeli-26.04.0.tar.xz) = 182073c27e161057eedace86e9b1d483710ba32fa095aa4b822d787e71107905 +SIZE (KDE/release-service/26.04.0/palapeli-26.04.0.tar.xz) = 2134408 diff --git a/games/picmi/distinfo b/games/picmi/distinfo index 6caf12bb92a4..3bf3d3a8d7da 100644 --- a/games/picmi/distinfo +++ b/games/picmi/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1772541947 -SHA256 (KDE/release-service/25.12.3/picmi-25.12.3.tar.xz) = 0ade2dc87a68fd091c550b0e971f02c1642d4f702819e3302d2ae6aab9c6b7b5 -SIZE (KDE/release-service/25.12.3/picmi-25.12.3.tar.xz) = 1523780 +TIMESTAMP = 1776248255 +SHA256 (KDE/release-service/26.04.0/picmi-26.04.0.tar.xz) = 14087c204624ec532f9f658d96200eb32e1af2af21113cb8d527b41c3db68453 +SIZE (KDE/release-service/26.04.0/picmi-26.04.0.tar.xz) = 1523716 diff --git a/games/skladnik/distinfo b/games/skladnik/distinfo index fb57df2650ab..e808f66613e9 100644 --- a/games/skladnik/distinfo +++ b/games/skladnik/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1772541948 -SHA256 (KDE/release-service/25.12.3/skladnik-25.12.3.tar.xz) = ed41b3eced568c82a1f6d1bdb6e8c5c7dbe7264b718da506e8cd52e52b9b175a -SIZE (KDE/release-service/25.12.3/skladnik-25.12.3.tar.xz) = 419988 +TIMESTAMP = 1776248257 +SHA256 (KDE/release-service/26.04.0/skladnik-26.04.0.tar.xz) = 4043878b9090623cc83a64faa51b7bbbf42928543e1897036d9ad2ad5904e7fd +SIZE (KDE/release-service/26.04.0/skladnik-26.04.0.tar.xz) = 420092 diff --git a/graphics/colord-kde/distinfo b/graphics/colord-kde/distinfo index 7183d4b20e56..356d6bfe70bf 100644 --- a/graphics/colord-kde/distinfo +++ b/graphics/colord-kde/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1772541949 -SHA256 (KDE/release-service/25.12.3/colord-kde-25.12.3.tar.xz) = a9ceeea73efa2c9d11de6cbf81a42c4d627aba99790c1b4872deca873d299f47 -SIZE (KDE/release-service/25.12.3/colord-kde-25.12.3.tar.xz) = 121116 +TIMESTAMP = 1776248257 +SHA256 (KDE/release-service/26.04.0/colord-kde-26.04.0.tar.xz) = cae62752f7f60baa78fa294f13ed3fe3da30d173d68cc192ccc17fb00478d45f +SIZE (KDE/release-service/26.04.0/colord-kde-26.04.0.tar.xz) = 121048 diff --git a/graphics/gwenview/distinfo b/graphics/gwenview/distinfo index a4a4c5270779..a74db0e0c9ee 100644 --- a/graphics/gwenview/distinfo +++ b/graphics/gwenview/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1772541950 -SHA256 (KDE/release-service/25.12.3/gwenview-25.12.3.tar.xz) = 06ea32a51d8e9efebc4a4e63eb3ef8b23b68a5af5ab38045a7e2837a4fd193b4 -SIZE (KDE/release-service/25.12.3/gwenview-25.12.3.tar.xz) = 6538216 +TIMESTAMP = 1776248259 +SHA256 (KDE/release-service/26.04.0/gwenview-26.04.0.tar.xz) = 45aa9d633a867567dae07d75e43421e8f156b176755f8f81b888597955b115a9 +SIZE (KDE/release-service/26.04.0/gwenview-26.04.0.tar.xz) = 6539828 diff --git a/graphics/kamera/distinfo b/graphics/kamera/distinfo index b44bc9770ebe..001c9d9fb856 100644 --- a/graphics/kamera/distinfo +++ b/graphics/kamera/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1772541952 -SHA256 (KDE/release-service/25.12.3/kamera-25.12.3.tar.xz) = fdeff4611a2ee78b4b43152256232dc23208c72bec49938c0f742742ff998063 -SIZE (KDE/release-service/25.12.3/kamera-25.12.3.tar.xz) = 132968 +TIMESTAMP = 1776248261 +SHA256 (KDE/release-service/26.04.0/kamera-26.04.0.tar.xz) = a67fde23047ea136afb9415b8ecbc5cb4b275a7311d889bebc027ec2a40e3053 +SIZE (KDE/release-service/26.04.0/kamera-26.04.0.tar.xz) = 133072 diff --git a/graphics/kamera/pkg-plist b/graphics/kamera/pkg-plist index 81f7f59aec6c..198ee5de68f6 100644 --- a/graphics/kamera/pkg-plist +++ b/graphics/kamera/pkg-plist @@ -1,131 +1,132 @@ %%QT_PLUGINDIR%%/kf6/kio/kio_kamera.so %%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/kio6_kamera.mo share/locale/ast/LC_MESSAGES/kcmkamera.mo share/locale/ast/LC_MESSAGES/kio6_kamera.mo share/locale/az/LC_MESSAGES/kcmkamera.mo share/locale/az/LC_MESSAGES/kio6_kamera.mo share/locale/be/LC_MESSAGES/kcmkamera.mo share/locale/bg/LC_MESSAGES/kcmkamera.mo share/locale/bg/LC_MESSAGES/kio6_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/kio6_kamera.mo share/locale/ca@valencia/LC_MESSAGES/kcmkamera.mo share/locale/ca@valencia/LC_MESSAGES/kio6_kamera.mo share/locale/cs/LC_MESSAGES/kcmkamera.mo share/locale/cs/LC_MESSAGES/kio6_kamera.mo share/locale/cy/LC_MESSAGES/kcmkamera.mo share/locale/da/LC_MESSAGES/kcmkamera.mo share/locale/da/LC_MESSAGES/kio6_kamera.mo share/locale/de/LC_MESSAGES/kcmkamera.mo share/locale/de/LC_MESSAGES/kio6_kamera.mo share/locale/el/LC_MESSAGES/kcmkamera.mo share/locale/el/LC_MESSAGES/kio6_kamera.mo share/locale/en_GB/LC_MESSAGES/kcmkamera.mo share/locale/en_GB/LC_MESSAGES/kio6_kamera.mo share/locale/eo/LC_MESSAGES/kcmkamera.mo share/locale/eo/LC_MESSAGES/kio6_kamera.mo share/locale/es/LC_MESSAGES/kcmkamera.mo share/locale/es/LC_MESSAGES/kio6_kamera.mo share/locale/et/LC_MESSAGES/kcmkamera.mo share/locale/et/LC_MESSAGES/kio6_kamera.mo share/locale/eu/LC_MESSAGES/kcmkamera.mo share/locale/eu/LC_MESSAGES/kio6_kamera.mo share/locale/fa/LC_MESSAGES/kcmkamera.mo share/locale/fi/LC_MESSAGES/kcmkamera.mo share/locale/fi/LC_MESSAGES/kio6_kamera.mo share/locale/fr/LC_MESSAGES/kcmkamera.mo share/locale/fr/LC_MESSAGES/kio6_kamera.mo share/locale/fy/LC_MESSAGES/kcmkamera.mo share/locale/ga/LC_MESSAGES/kcmkamera.mo share/locale/ga/LC_MESSAGES/kio6_kamera.mo share/locale/gl/LC_MESSAGES/kcmkamera.mo share/locale/gl/LC_MESSAGES/kio6_kamera.mo share/locale/he/LC_MESSAGES/kcmkamera.mo share/locale/he/LC_MESSAGES/kio6_kamera.mo share/locale/hi/LC_MESSAGES/kcmkamera.mo share/locale/hi/LC_MESSAGES/kio6_kamera.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/kio6_kamera.mo share/locale/ia/LC_MESSAGES/kcmkamera.mo share/locale/ia/LC_MESSAGES/kio6_kamera.mo share/locale/id/LC_MESSAGES/kcmkamera.mo share/locale/id/LC_MESSAGES/kio6_kamera.mo share/locale/is/LC_MESSAGES/kcmkamera.mo share/locale/is/LC_MESSAGES/kio6_kamera.mo share/locale/it/LC_MESSAGES/kcmkamera.mo share/locale/it/LC_MESSAGES/kio6_kamera.mo share/locale/ja/LC_MESSAGES/kcmkamera.mo share/locale/ja/LC_MESSAGES/kio6_kamera.mo share/locale/ka/LC_MESSAGES/kcmkamera.mo share/locale/ka/LC_MESSAGES/kio6_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/kio6_kamera.mo share/locale/lt/LC_MESSAGES/kcmkamera.mo share/locale/lt/LC_MESSAGES/kio6_kamera.mo share/locale/lv/LC_MESSAGES/kcmkamera.mo share/locale/lv/LC_MESSAGES/kio6_kamera.mo share/locale/mk/LC_MESSAGES/kcmkamera.mo share/locale/ml/LC_MESSAGES/kcmkamera.mo share/locale/ml/LC_MESSAGES/kio6_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/kio6_kamera.mo share/locale/nn/LC_MESSAGES/kcmkamera.mo share/locale/nn/LC_MESSAGES/kio6_kamera.mo share/locale/oc/LC_MESSAGES/kcmkamera.mo share/locale/pa/LC_MESSAGES/kcmkamera.mo share/locale/pa/LC_MESSAGES/kio6_kamera.mo share/locale/pl/LC_MESSAGES/kcmkamera.mo share/locale/pl/LC_MESSAGES/kio6_kamera.mo share/locale/pt/LC_MESSAGES/kcmkamera.mo share/locale/pt/LC_MESSAGES/kio6_kamera.mo share/locale/pt_BR/LC_MESSAGES/kcmkamera.mo share/locale/pt_BR/LC_MESSAGES/kio6_kamera.mo share/locale/ro/LC_MESSAGES/kcmkamera.mo share/locale/ro/LC_MESSAGES/kio6_kamera.mo share/locale/ru/LC_MESSAGES/kcmkamera.mo share/locale/ru/LC_MESSAGES/kio6_kamera.mo share/locale/sa/LC_MESSAGES/kcmkamera.mo share/locale/sa/LC_MESSAGES/kio6_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/kio6_kamera.mo share/locale/sl/LC_MESSAGES/kcmkamera.mo share/locale/sl/LC_MESSAGES/kio6_kamera.mo share/locale/sq/LC_MESSAGES/kcmkamera.mo share/locale/sv/LC_MESSAGES/kcmkamera.mo share/locale/sv/LC_MESSAGES/kio6_kamera.mo share/locale/ta/LC_MESSAGES/kcmkamera.mo +share/locale/ta/LC_MESSAGES/kio6_kamera.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/kio6_kamera.mo share/locale/ug/LC_MESSAGES/kcmkamera.mo share/locale/uk/LC_MESSAGES/kcmkamera.mo share/locale/uk/LC_MESSAGES/kio6_kamera.mo share/locale/vi/LC_MESSAGES/kcmkamera.mo share/locale/vi/LC_MESSAGES/kio6_kamera.mo share/locale/xh/LC_MESSAGES/kcmkamera.mo share/locale/zh_CN/LC_MESSAGES/kcmkamera.mo share/locale/zh_CN/LC_MESSAGES/kio6_kamera.mo share/locale/zh_HK/LC_MESSAGES/kcmkamera.mo share/locale/zh_TW/LC_MESSAGES/kcmkamera.mo share/locale/zh_TW/LC_MESSAGES/kio6_kamera.mo share/metainfo/org.kde.kamera.metainfo.xml share/qlogging-categories6/kamera.categories share/solid/actions/solid_camera.desktop diff --git a/graphics/kcolorchooser/distinfo b/graphics/kcolorchooser/distinfo index 80e952c4f884..71f1c95518f8 100644 --- a/graphics/kcolorchooser/distinfo +++ b/graphics/kcolorchooser/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1772541953 -SHA256 (KDE/release-service/25.12.3/kcolorchooser-25.12.3.tar.xz) = 088b44471b0fec80fb5099c69bc737b67a4e68a08a3d52f901821417defdc865 -SIZE (KDE/release-service/25.12.3/kcolorchooser-25.12.3.tar.xz) = 36532 +TIMESTAMP = 1776248262 +SHA256 (KDE/release-service/26.04.0/kcolorchooser-26.04.0.tar.xz) = 8595c4294a087b516d55443ea009b8fdcb2e9fd798f550acc6a6c11fdcca1f24 +SIZE (KDE/release-service/26.04.0/kcolorchooser-26.04.0.tar.xz) = 36832 diff --git a/graphics/kdegraphics-mobipocket/distinfo b/graphics/kdegraphics-mobipocket/distinfo index 3a9d74afed74..24ac061656a8 100644 --- a/graphics/kdegraphics-mobipocket/distinfo +++ b/graphics/kdegraphics-mobipocket/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1772541955 -SHA256 (KDE/release-service/25.12.3/kdegraphics-mobipocket-25.12.3.tar.xz) = fbe6c0a2a15c124fa8f6052ec44329d3de2850018f4c25edbef8c163626b1e56 -SIZE (KDE/release-service/25.12.3/kdegraphics-mobipocket-25.12.3.tar.xz) = 20396 +TIMESTAMP = 1776248264 +SHA256 (KDE/release-service/26.04.0/kdegraphics-mobipocket-26.04.0.tar.xz) = 78b48775544dd4bc2bbec8c13c479eaa1668e50e420e8249b5eafd6f8f7311f9 +SIZE (KDE/release-service/26.04.0/kdegraphics-mobipocket-26.04.0.tar.xz) = 20396 diff --git a/graphics/kdegraphics-svgpart/distinfo b/graphics/kdegraphics-svgpart/distinfo index c39f029dc91e..58cc3c61d5ea 100644 --- a/graphics/kdegraphics-svgpart/distinfo +++ b/graphics/kdegraphics-svgpart/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1772541956 -SHA256 (KDE/release-service/25.12.3/svgpart-25.12.3.tar.xz) = 09df6252c0335278b95b341d60a7e9f09ebc9ac613103c2f497e7fba9ae94718 -SIZE (KDE/release-service/25.12.3/svgpart-25.12.3.tar.xz) = 30232 +TIMESTAMP = 1776248266 +SHA256 (KDE/release-service/26.04.0/svgpart-26.04.0.tar.xz) = 2b5d8a6a783006d1603fbe09ec73df554fbe4afd75ec26b1cf25dcab25e599f9 +SIZE (KDE/release-service/26.04.0/svgpart-26.04.0.tar.xz) = 30236 diff --git a/graphics/kdegraphics-thumbnailers/distinfo b/graphics/kdegraphics-thumbnailers/distinfo index fb35df641a3d..bc9e8db82a3b 100644 --- a/graphics/kdegraphics-thumbnailers/distinfo +++ b/graphics/kdegraphics-thumbnailers/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1772541958 -SHA256 (KDE/release-service/25.12.3/kdegraphics-thumbnailers-25.12.3.tar.xz) = 05eb9e268c161d25c6899f1affdb99acaf8ec506a11083fea807e335a5de18f9 -SIZE (KDE/release-service/25.12.3/kdegraphics-thumbnailers-25.12.3.tar.xz) = 128588 +TIMESTAMP = 1776248267 +SHA256 (KDE/release-service/26.04.0/kdegraphics-thumbnailers-26.04.0.tar.xz) = 2ca5bc167146a22f6a11e152f5ea756c5a973d9ee50916ccc6afaa420af5eca1 +SIZE (KDE/release-service/26.04.0/kdegraphics-thumbnailers-26.04.0.tar.xz) = 128848 diff --git a/graphics/kgraphviewer/distinfo b/graphics/kgraphviewer/distinfo index 2133459097f1..8d63330df9ff 100644 --- a/graphics/kgraphviewer/distinfo +++ b/graphics/kgraphviewer/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1772541959 -SHA256 (KDE/release-service/25.12.3/kgraphviewer-25.12.3.tar.xz) = 634d92f9bedb09e5e491e7c8ceb1c4a6607ccb8ef87f8c8b1c8a9f52e3f8c0c6 -SIZE (KDE/release-service/25.12.3/kgraphviewer-25.12.3.tar.xz) = 1608376 +TIMESTAMP = 1776248269 +SHA256 (KDE/release-service/26.04.0/kgraphviewer-26.04.0.tar.xz) = 0c6c84b5a75c970eaaf4a5dfa6dd6c2afe4e31137c2547c78a0176c0833d3bfc +SIZE (KDE/release-service/26.04.0/kgraphviewer-26.04.0.tar.xz) = 1608476 diff --git a/graphics/kimagemapeditor/distinfo b/graphics/kimagemapeditor/distinfo index 6a10b94f8024..988ec7fbdaa0 100644 --- a/graphics/kimagemapeditor/distinfo +++ b/graphics/kimagemapeditor/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1772541960 -SHA256 (KDE/release-service/25.12.3/kimagemapeditor-25.12.3.tar.xz) = 313786289a31324b79bd94e94c2a59b51b325edd6f3f63d69c84709ca3addf66 -SIZE (KDE/release-service/25.12.3/kimagemapeditor-25.12.3.tar.xz) = 1077048 +TIMESTAMP = 1776248271 +SHA256 (KDE/release-service/26.04.0/kimagemapeditor-26.04.0.tar.xz) = 71bc88310a029e71c29cd281c7ae06caf60b19fb208332a535afa7f8db9ac34b +SIZE (KDE/release-service/26.04.0/kimagemapeditor-26.04.0.tar.xz) = 1076940 diff --git a/graphics/kolourpaint/distinfo b/graphics/kolourpaint/distinfo index 110d6f39ffaf..c547cca491e1 100644 --- a/graphics/kolourpaint/distinfo +++ b/graphics/kolourpaint/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1772541962 -SHA256 (KDE/release-service/25.12.3/kolourpaint-25.12.3.tar.xz) = ecbd48b7a13eb46bad63b0afe638c6c87f1b661b79740320902c890861543568 -SIZE (KDE/release-service/25.12.3/kolourpaint-25.12.3.tar.xz) = 5318288 +TIMESTAMP = 1776248272 +SHA256 (KDE/release-service/26.04.0/kolourpaint-26.04.0.tar.xz) = 034ec0eb5581935538ac5aacdb1224d26c5ad5b692ca17d9458a365cefa23beb +SIZE (KDE/release-service/26.04.0/kolourpaint-26.04.0.tar.xz) = 5319668 diff --git a/graphics/kontrast/distinfo b/graphics/kontrast/distinfo index f55c3c85b810..b8cacbfbbed7 100644 --- a/graphics/kontrast/distinfo +++ b/graphics/kontrast/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1772541963 -SHA256 (KDE/release-service/25.12.3/kontrast-25.12.3.tar.xz) = 0c740050bce4ee870db0aa22b27dfeba268ec95e48d57407ca533b6eda6f9108 -SIZE (KDE/release-service/25.12.3/kontrast-25.12.3.tar.xz) = 222372 +TIMESTAMP = 1776248274 +SHA256 (KDE/release-service/26.04.0/kontrast-26.04.0.tar.xz) = 1f473fabd9a96f4baf891e86f9d8c54bb9317c3100ce3b1afa9f0717b28ae4b8 +SIZE (KDE/release-service/26.04.0/kontrast-26.04.0.tar.xz) = 222468 diff --git a/graphics/kqtquickcharts/distinfo b/graphics/kqtquickcharts/distinfo index c73cd52fd565..ca108b803b07 100644 --- a/graphics/kqtquickcharts/distinfo +++ b/graphics/kqtquickcharts/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1772541965 -SHA256 (KDE/release-service/25.12.3/kqtquickcharts-25.12.3.tar.xz) = 6c590488698efca35d0db93b1b03264cc5da1e7c726d19f62272255a7469dc4b -SIZE (KDE/release-service/25.12.3/kqtquickcharts-25.12.3.tar.xz) = 30840 +TIMESTAMP = 1776248275 +SHA256 (KDE/release-service/26.04.0/kqtquickcharts-26.04.0.tar.xz) = c3389dfe523cd6d29b8308f2eeea67b867f63299f932c969d869d2b487d6df29 +SIZE (KDE/release-service/26.04.0/kqtquickcharts-26.04.0.tar.xz) = 30852 diff --git a/graphics/ksanecore/distinfo b/graphics/ksanecore/distinfo index e4d6fe666c6b..cc40e20bccaf 100644 --- a/graphics/ksanecore/distinfo +++ b/graphics/ksanecore/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1772541966 -SHA256 (KDE/release-service/25.12.3/ksanecore-25.12.3.tar.xz) = 60476b5e7ad764142cf69af1f827e9f7af8883eae3cbd3faa6d1a42d635ee282 -SIZE (KDE/release-service/25.12.3/ksanecore-25.12.3.tar.xz) = 54328 +TIMESTAMP = 1776248277 +SHA256 (KDE/release-service/26.04.0/ksanecore-26.04.0.tar.xz) = 35091dc0b3ad4963e30aaecd63d76ba9a964c9817cf37a6506c2150138c3421a +SIZE (KDE/release-service/26.04.0/ksanecore-26.04.0.tar.xz) = 54644 diff --git a/graphics/ksanecore/pkg-plist b/graphics/ksanecore/pkg-plist index 3ebfaf569146..ea87195840c3 100644 --- a/graphics/ksanecore/pkg-plist +++ b/graphics/ksanecore/pkg-plist @@ -1,54 +1,55 @@ include/KSaneCore6/KSaneCore/DeviceInformation include/KSaneCore6/KSaneCore/Interface include/KSaneCore6/KSaneCore/Option include/KSaneCore6/ksanecore/deviceinformation.h include/KSaneCore6/ksanecore/interface.h include/KSaneCore6/ksanecore/option.h include/KSaneCore6/ksanecore_export.h include/KSaneCore6/ksanecore_version.h lib/cmake/KSaneCore6/KSaneCore6Config.cmake lib/cmake/KSaneCore6/KSaneCore6ConfigVersion.cmake lib/cmake/KSaneCore6/KSaneCore6Targets-%%CMAKE_BUILD_TYPE%%.cmake lib/cmake/KSaneCore6/KSaneCore6Targets.cmake lib/libKSaneCore6.so lib/libKSaneCore6.so.1 lib/libKSaneCore6.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/eo/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/ga/LC_MESSAGES/ksanecore.mo share/locale/gl/LC_MESSAGES/ksanecore.mo share/locale/he/LC_MESSAGES/ksanecore.mo share/locale/hi/LC_MESSAGES/ksanecore.mo share/locale/hu/LC_MESSAGES/ksanecore.mo share/locale/ia/LC_MESSAGES/ksanecore.mo +share/locale/is/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/lv/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/sa/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 65bd50285c37..b02871941cc7 100644 --- a/graphics/libkdcraw/distinfo +++ b/graphics/libkdcraw/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1772541968 -SHA256 (KDE/release-service/25.12.3/libkdcraw-25.12.3.tar.xz) = 23b220f14bbaa21858b6f8e18169499389835b6693e73a877f8e0d788f4499af -SIZE (KDE/release-service/25.12.3/libkdcraw-25.12.3.tar.xz) = 37448 +TIMESTAMP = 1776248279 +SHA256 (KDE/release-service/26.04.0/libkdcraw-26.04.0.tar.xz) = 37139a9228f894ae097fbabe15c536788c750119011c9b52eb88d27bfcb026ef +SIZE (KDE/release-service/26.04.0/libkdcraw-26.04.0.tar.xz) = 37224 diff --git a/graphics/libkexiv2/distinfo b/graphics/libkexiv2/distinfo index e1b7491bce69..52bab87e6b36 100644 --- a/graphics/libkexiv2/distinfo +++ b/graphics/libkexiv2/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1772541969 -SHA256 (KDE/release-service/25.12.3/libkexiv2-25.12.3.tar.xz) = 8ed6de46cdd084a834dd0f2049d6490977a8eedc50a2e59f715fb1cecf6653ec -SIZE (KDE/release-service/25.12.3/libkexiv2-25.12.3.tar.xz) = 60116 +TIMESTAMP = 1776248280 +SHA256 (KDE/release-service/26.04.0/libkexiv2-26.04.0.tar.xz) = be2057aa2b5287d9f64c9c64260f9d125827abaf10fe4b786b39f59de3b2c319 +SIZE (KDE/release-service/26.04.0/libkexiv2-26.04.0.tar.xz) = 50652 diff --git a/graphics/libksane/distinfo b/graphics/libksane/distinfo index ee285b6a26af..96fb9b848ff1 100644 --- a/graphics/libksane/distinfo +++ b/graphics/libksane/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1772541971 -SHA256 (KDE/release-service/25.12.3/libksane-25.12.3.tar.xz) = ca6e7e776f2f6932b68bb48bf58f0c4c300453ed233b2f5c5a761d3d857a9805 -SIZE (KDE/release-service/25.12.3/libksane-25.12.3.tar.xz) = 156136 +TIMESTAMP = 1776248282 +SHA256 (KDE/release-service/26.04.0/libksane-26.04.0.tar.xz) = b2d4db16d41efc6dd502986e14a02277e02b94600ae042c26c6367a5cf301d77 +SIZE (KDE/release-service/26.04.0/libksane-26.04.0.tar.xz) = 156180 diff --git a/graphics/okular/distinfo b/graphics/okular/distinfo index 7c61d2cde5f5..a4506a4577de 100644 --- a/graphics/okular/distinfo +++ b/graphics/okular/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1772541972 -SHA256 (KDE/release-service/25.12.3/okular-25.12.3.tar.xz) = 9d509a702aa00c82c075e5a60ed224fcf884bbcd983e5e988d2520ff2fb86276 -SIZE (KDE/release-service/25.12.3/okular-25.12.3.tar.xz) = 8231424 +TIMESTAMP = 1776248284 +SHA256 (KDE/release-service/26.04.0/okular-26.04.0.tar.xz) = 030d54cf3971258dcddd503fd9ad66f11aefb804c72bedd2ab5bf8777fb7f1f3 +SIZE (KDE/release-service/26.04.0/okular-26.04.0.tar.xz) = 8233816 diff --git a/graphics/skanlite/distinfo b/graphics/skanlite/distinfo index 6ccb07691b58..abbbf1bb49ad 100644 --- a/graphics/skanlite/distinfo +++ b/graphics/skanlite/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1772541974 -SHA256 (KDE/release-service/25.12.3/skanlite-25.12.3.tar.xz) = e30dfc3601545291fc3d813ceaafcee91d0b850dcb54688be49a0f431779501f -SIZE (KDE/release-service/25.12.3/skanlite-25.12.3.tar.xz) = 2392496 +TIMESTAMP = 1776248285 +SHA256 (KDE/release-service/26.04.0/skanlite-26.04.0.tar.xz) = 668963c3e8a9b204abbbaa5d80f382f589cd3001a84a8ad012c0d72184e14465 +SIZE (KDE/release-service/26.04.0/skanlite-26.04.0.tar.xz) = 2392688 diff --git a/graphics/skanpage/distinfo b/graphics/skanpage/distinfo index 3cfd35341112..3b7449c5d602 100644 --- a/graphics/skanpage/distinfo +++ b/graphics/skanpage/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1772541975 -SHA256 (KDE/release-service/25.12.3/skanpage-25.12.3.tar.xz) = 2133b783bafb2e7d8cae873b648f10bf2d6edd7baa31d34fcc6c4b0d6507a13d -SIZE (KDE/release-service/25.12.3/skanpage-25.12.3.tar.xz) = 1370004 +TIMESTAMP = 1776248287 +SHA256 (KDE/release-service/26.04.0/skanpage-26.04.0.tar.xz) = 0c5450ddf8ca203407f74035fec45c17d59ddcd8f9d2e986c88a750d90bdc45a +SIZE (KDE/release-service/26.04.0/skanpage-26.04.0.tar.xz) = 1372696 diff --git a/graphics/skanpage/pkg-plist b/graphics/skanpage/pkg-plist index 3ad42c443398..624e93aac415 100644 --- a/graphics/skanpage/pkg-plist +++ b/graphics/skanpage/pkg-plist @@ -1,51 +1,52 @@ 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/ast/LC_MESSAGES/skanpage.mo share/locale/az/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/eo/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/ga/LC_MESSAGES/skanpage.mo share/locale/gl/LC_MESSAGES/skanpage.mo share/locale/he/LC_MESSAGES/skanpage.mo share/locale/hi/LC_MESSAGES/skanpage.mo share/locale/hu/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/lv/LC_MESSAGES/skanpage.mo +share/locale/nb/LC_MESSAGES/skanpage.mo share/locale/nl/LC_MESSAGES/skanpage.mo share/locale/pa/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/ro/LC_MESSAGES/skanpage.mo share/locale/ru/LC_MESSAGES/skanpage.mo share/locale/sa/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-categories6/skanpage.categories diff --git a/irc/konversation/distinfo b/irc/konversation/distinfo index 6d3cb4f4afa6..e8f2265ff0a9 100644 --- a/irc/konversation/distinfo +++ b/irc/konversation/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1772541977 -SHA256 (KDE/release-service/25.12.3/konversation-25.12.3.tar.xz) = b859bcf527fec1d4fbb29a0ba4d1e18430cef58871994617881895e7867fb6f7 -SIZE (KDE/release-service/25.12.3/konversation-25.12.3.tar.xz) = 4500288 +TIMESTAMP = 1776248289 +SHA256 (KDE/release-service/26.04.0/konversation-26.04.0.tar.xz) = 25b0aff0d485fb6bac3625e1deca02db700f576bf547a2ef490acf2c45d0c140 +SIZE (KDE/release-service/26.04.0/konversation-26.04.0.tar.xz) = 4519812 diff --git a/japanese/kiten/distinfo b/japanese/kiten/distinfo index 1e495b3e0b59..8c1c824da2d4 100644 --- a/japanese/kiten/distinfo +++ b/japanese/kiten/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1772541978 -SHA256 (KDE/release-service/25.12.3/kiten-25.12.3.tar.xz) = 2a1e9cdc77fc63d7b7d845153dea099d58965dcf0d98ab821de13dbcffc5c0cb -SIZE (KDE/release-service/25.12.3/kiten-25.12.3.tar.xz) = 11319044 +TIMESTAMP = 1776248290 +SHA256 (KDE/release-service/26.04.0/kiten-26.04.0.tar.xz) = c89c612e0f77d1affbe924669c0e7daace1c59d2b740980eb6ae7a0ec0bcf59a +SIZE (KDE/release-service/26.04.0/kiten-26.04.0.tar.xz) = 11318264 diff --git a/lang/kturtle/distinfo b/lang/kturtle/distinfo index a49e7bca2e6a..8d19544262c8 100644 --- a/lang/kturtle/distinfo +++ b/lang/kturtle/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1772541980 -SHA256 (KDE/release-service/25.12.3/kturtle-25.12.3.tar.xz) = 7520152856ad0b8dac7d2212dc8bbb4d4fdc281205d9c0cc0de27d36de6e36dc -SIZE (KDE/release-service/25.12.3/kturtle-25.12.3.tar.xz) = 2102380 +TIMESTAMP = 1776248292 +SHA256 (KDE/release-service/26.04.0/kturtle-26.04.0.tar.xz) = 4b63de7100ea2a9ae2b97218b86c3799f629b733c920c1df06ca5a639486b566 +SIZE (KDE/release-service/26.04.0/kturtle-26.04.0.tar.xz) = 1890900 diff --git a/math/analitza/distinfo b/math/analitza/distinfo index 46be9c305306..166049e4dd87 100644 --- a/math/analitza/distinfo +++ b/math/analitza/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1772541981 -SHA256 (KDE/release-service/25.12.3/analitza-25.12.3.tar.xz) = 4f0bc01116d61953d9759f91f943eb9da674f1f048a453d55035f4459c3bfdb7 -SIZE (KDE/release-service/25.12.3/analitza-25.12.3.tar.xz) = 369764 +TIMESTAMP = 1776248294 +SHA256 (KDE/release-service/26.04.0/analitza-26.04.0.tar.xz) = 2fd1803bcc011515716ed802265e63dc4d34ee6fccbdf6d523f39475eb64431f +SIZE (KDE/release-service/26.04.0/analitza-26.04.0.tar.xz) = 369880 diff --git a/math/cantor/distinfo b/math/cantor/distinfo index 2b1c080df2d5..cc5c44fabd90 100644 --- a/math/cantor/distinfo +++ b/math/cantor/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1772541983 -SHA256 (KDE/release-service/25.12.3/cantor-25.12.3.tar.xz) = 08873503b24e77a2f0d334327d639fb88ca71a4a72f6a92453c0d47f43caae4b -SIZE (KDE/release-service/25.12.3/cantor-25.12.3.tar.xz) = 10917600 +TIMESTAMP = 1776248295 +SHA256 (KDE/release-service/26.04.0/cantor-26.04.0.tar.xz) = 316392b4b0c7651bf861f8afb2b1438153471e3b421994da121b8d387c5e4b0b +SIZE (KDE/release-service/26.04.0/cantor-26.04.0.tar.xz) = 10923912 diff --git a/math/cantor/pkg-plist b/math/cantor/pkg-plist index 1a9b2e2407f5..52092003feec 100644 --- a/math/cantor/pkg-plist +++ b/math/cantor/pkg-plist @@ -1,169 +1,168 @@ 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/keywordsmanager.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_plugins/assistants/cantor_advancedplotassistant.so %%QT_PLUGINDIR%%/cantor_plugins/assistants/cantor_creatematrixassistant.so %%QT_PLUGINDIR%%/cantor_plugins/assistants/cantor_differentiateassistant.so %%QT_PLUGINDIR%%/cantor_plugins/assistants/cantor_eigenvaluesassistant.so %%QT_PLUGINDIR%%/cantor_plugins/assistants/cantor_eigenvectorsassistant.so %%QT_PLUGINDIR%%/cantor_plugins/assistants/cantor_importpackageassistant.so %%QT_PLUGINDIR%%/cantor_plugins/assistants/cantor_integrateassistant.so %%QT_PLUGINDIR%%/cantor_plugins/assistants/cantor_invertmatrixassistant.so %%QT_PLUGINDIR%%/cantor_plugins/assistants/cantor_plot2dassistant.so %%QT_PLUGINDIR%%/cantor_plugins/assistants/cantor_plot3dassistant.so %%QT_PLUGINDIR%%/cantor_plugins/assistants/cantor_qalculateplotassistant.so %%QT_PLUGINDIR%%/cantor_plugins/assistants/cantor_runscriptassistant.so %%QT_PLUGINDIR%%/cantor_plugins/assistants/cantor_solveassistant.so %%QT_PLUGINDIR%%/cantor_plugins/backends/cantor_kalgebrabackend.so %%LUAJIT%%%%QT_PLUGINDIR%%/cantor_plugins/backends/cantor_luabackend.so %%QT_PLUGINDIR%%/cantor_plugins/backends/cantor_maximabackend.so %%QT_PLUGINDIR%%/cantor_plugins/backends/cantor_octavebackend.so %%QT_PLUGINDIR%%/cantor_plugins/backends/cantor_pythonbackend.so %%QT_PLUGINDIR%%/cantor_plugins/backends/cantor_qalculatebackend.so %%R%%%%QT_PLUGINDIR%%/cantor_plugins/backends/cantor_rbackend.so %%QT_PLUGINDIR%%/cantor_plugins/backends/cantor_sagebackend.so %%QT_PLUGINDIR%%/cantor_plugins/backends/cantor_scilabbackend.so %%QT_PLUGINDIR%%/cantor_plugins/panels/cantor_documentationpanelplugin.so %%QT_PLUGINDIR%%/cantor_plugins/panels/cantor_filebrowserpanelplugin.so %%QT_PLUGINDIR%%/cantor_plugins/panels/cantor_helppanelplugin.so %%QT_PLUGINDIR%%/cantor_plugins/panels/cantor_tocpanelplugin.so %%QT_PLUGINDIR%%/cantor_plugins/panels/cantor_variablemanagerplugin.so %%QT_PLUGINDIR%%/kf6/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%%/python/graphic_packages.xml %%DATADIR%%/xslt/latex.xsl share/config.kcfg/cantor.kcfg share/config.kcfg/cantor_libs.kcfg %%LUAJIT%%share/config.kcfg/luabackend.kcfg share/config.kcfg/kalgebrabackend.kcfg share/config.kcfg/maximabackend.kcfg share/config.kcfg/octavebackend.kcfg.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/knsrcfiles/cantor-documentation.knsrc share/knsrcfiles/cantor.knsrc %%LUAJIT%%share/knsrcfiles/cantor_lua.knsrc share/knsrcfiles/cantor_kalgebra.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/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/he/LC_MESSAGES/cantor.mo share/locale/hi/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/sa/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 f75f2284818c..1def002ecee1 100644 --- a/math/kalgebra/distinfo +++ b/math/kalgebra/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1772541984 -SHA256 (KDE/release-service/25.12.3/kalgebra-25.12.3.tar.xz) = 75ad5abc971c50978fe88f157c3f35f37e6047ea5c9d626c9b74b3fd0ba29015 -SIZE (KDE/release-service/25.12.3/kalgebra-25.12.3.tar.xz) = 951764 +TIMESTAMP = 1776248297 +SHA256 (KDE/release-service/26.04.0/kalgebra-26.04.0.tar.xz) = 6b6003d6217737eac883a1868feeea9e6f05aad7b1be8d8ee3592cc20903aa12 +SIZE (KDE/release-service/26.04.0/kalgebra-26.04.0.tar.xz) = 951664 diff --git a/math/kalk/distinfo b/math/kalk/distinfo index 4968738c3147..a665b0115385 100644 --- a/math/kalk/distinfo +++ b/math/kalk/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1772541985 -SHA256 (KDE/release-service/25.12.3/kalk-25.12.3.tar.xz) = 7ccac0e900b0da63bcd956057983a646fdf6f421005ce508c75f3ba77dc959c2 -SIZE (KDE/release-service/25.12.3/kalk-25.12.3.tar.xz) = 83344 +TIMESTAMP = 1776248297 +SHA256 (KDE/release-service/26.04.0/kalk-26.04.0.tar.xz) = e1e3159cf6f34a8df65c53e81f9f69ce3d2a316596fb45b766fe8e7484f3f09e +SIZE (KDE/release-service/26.04.0/kalk-26.04.0.tar.xz) = 86792 diff --git a/math/kbruch/distinfo b/math/kbruch/distinfo index 7ee229e638e6..a0a9e3a1cadb 100644 --- a/math/kbruch/distinfo +++ b/math/kbruch/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1772541986 -SHA256 (KDE/release-service/25.12.3/kbruch-25.12.3.tar.xz) = 2c9c0c4774108d8dc58ca4f14168cb9e53377e3fd2ff787c8e81d9dd3179b4fe -SIZE (KDE/release-service/25.12.3/kbruch-25.12.3.tar.xz) = 5162860 +TIMESTAMP = 1776248299 +SHA256 (KDE/release-service/26.04.0/kbruch-26.04.0.tar.xz) = 6d2193e116ffd36c7c9d69dbddcbc4013ce1dd5d708803ab77bc19a8057ae17f +SIZE (KDE/release-service/26.04.0/kbruch-26.04.0.tar.xz) = 5162900 diff --git a/math/kcalc/distinfo b/math/kcalc/distinfo index 24d861c09d6b..38e1a48bb9d4 100644 --- a/math/kcalc/distinfo +++ b/math/kcalc/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1772541988 -SHA256 (KDE/release-service/25.12.3/kcalc-25.12.3.tar.xz) = c2382c232e06744b2b82ab96797f59d30fd4fe239b2aa0c07fbe7424cf10aafa -SIZE (KDE/release-service/25.12.3/kcalc-25.12.3.tar.xz) = 484396 +TIMESTAMP = 1776248301 +SHA256 (KDE/release-service/26.04.0/kcalc-26.04.0.tar.xz) = 5ea9601ada9752c8b10d0267b0322383f0f1d62fb7431163ba7cf99db4399a0e +SIZE (KDE/release-service/26.04.0/kcalc-26.04.0.tar.xz) = 486360 diff --git a/math/kig/distinfo b/math/kig/distinfo index 8e734a66fb3a..19cbec08baee 100644 --- a/math/kig/distinfo +++ b/math/kig/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1772541989 -SHA256 (KDE/release-service/25.12.3/kig-25.12.3.tar.xz) = a181598f6a990c194c58e238b6807cae5491bdc47d35a1764b95d39bbca2d6ee -SIZE (KDE/release-service/25.12.3/kig-25.12.3.tar.xz) = 3262312 +TIMESTAMP = 1776248302 +SHA256 (KDE/release-service/26.04.0/kig-26.04.0.tar.xz) = b460c04b596e2ff05caa20898d1e9a75c8ddeb537450bcc4ae470aa238497821 +SIZE (KDE/release-service/26.04.0/kig-26.04.0.tar.xz) = 3264296 diff --git a/math/kmplot/distinfo b/math/kmplot/distinfo index c226020ca948..2c0fb07a00e3 100644 --- a/math/kmplot/distinfo +++ b/math/kmplot/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1772541991 -SHA256 (KDE/release-service/25.12.3/kmplot-25.12.3.tar.xz) = 4d9bf8bc654ce1e4b477e156e5d4c1a117374e2220398c7e7baa818e214eb043 -SIZE (KDE/release-service/25.12.3/kmplot-25.12.3.tar.xz) = 3030952 +TIMESTAMP = 1776248304 +SHA256 (KDE/release-service/26.04.0/kmplot-26.04.0.tar.xz) = 46ca9b478e0ec7ff92298e1c9fc9a79d4caa74ff2781bd6c34ac93087e89c01c +SIZE (KDE/release-service/26.04.0/kmplot-26.04.0.tar.xz) = 3030764 diff --git a/math/rocs/distinfo b/math/rocs/distinfo index 0ba7e456fbc3..4f1595d74f42 100644 --- a/math/rocs/distinfo +++ b/math/rocs/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1772541992 -SHA256 (KDE/release-service/25.12.3/rocs-25.12.3.tar.xz) = 39d2b3ce9a9185042a67da755fb669eb92c9f5b7618d99a42879d5951adc731f -SIZE (KDE/release-service/25.12.3/rocs-25.12.3.tar.xz) = 1578476 +TIMESTAMP = 1776248306 +SHA256 (KDE/release-service/26.04.0/rocs-26.04.0.tar.xz) = a7c6694e86e5c54d55978654359ebf603e2401a3e75464288c3a288ee4483bd6 +SIZE (KDE/release-service/26.04.0/rocs-26.04.0.tar.xz) = 1578580 diff --git a/misc/artikulate/distinfo b/misc/artikulate/distinfo index 029f4314754c..aecef1a7d202 100644 --- a/misc/artikulate/distinfo +++ b/misc/artikulate/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1772541994 -SHA256 (KDE/release-service/25.12.3/artikulate-25.12.3.tar.xz) = d837d477075779ab2ac0501e2d1a8069a761fc1cfc43a68ec5bbc5d81c0c9ebc -SIZE (KDE/release-service/25.12.3/artikulate-25.12.3.tar.xz) = 1059816 +TIMESTAMP = 1776248307 +SHA256 (KDE/release-service/26.04.0/artikulate-26.04.0.tar.xz) = 6f0116f3946dc0bff31e50f53edb6c6a90a982751fd594142dfd7e9f9b8a4fdf +SIZE (KDE/release-service/26.04.0/artikulate-26.04.0.tar.xz) = 1058380 diff --git a/misc/kdeedu-data/distinfo b/misc/kdeedu-data/distinfo index e38b6a6ac09c..e41b3042ad4f 100644 --- a/misc/kdeedu-data/distinfo +++ b/misc/kdeedu-data/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1772541994 -SHA256 (KDE/release-service/25.12.3/kdeedu-data-25.12.3.tar.xz) = ce32148f41a2776a02a593035ba5c3df573b7fa0123a8134b9255c9de3b27f04 -SIZE (KDE/release-service/25.12.3/kdeedu-data-25.12.3.tar.xz) = 338856 +TIMESTAMP = 1776248308 +SHA256 (KDE/release-service/26.04.0/kdeedu-data-26.04.0.tar.xz) = e1bfb87224fee90052b6a288028ad3dadbc4e2793638d9c8e99cbc8a72486300 +SIZE (KDE/release-service/26.04.0/kdeedu-data-26.04.0.tar.xz) = 338764 diff --git a/misc/kgeography/distinfo b/misc/kgeography/distinfo index 2ec0f1b8c672..325954e3e347 100644 --- a/misc/kgeography/distinfo +++ b/misc/kgeography/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1772541995 -SHA256 (KDE/release-service/25.12.3/kgeography-25.12.3.tar.xz) = a9ad85ed43881cf034f24e140b1fedeb32b3a6f5f08e5d6c081ffb3aa15ee02c -SIZE (KDE/release-service/25.12.3/kgeography-25.12.3.tar.xz) = 12468664 +TIMESTAMP = 1776248309 +SHA256 (KDE/release-service/26.04.0/kgeography-26.04.0.tar.xz) = 5f4ab2a3088bf15134943d397a72fadc9c1658c69c4b36f2957bb00c200cbe1f +SIZE (KDE/release-service/26.04.0/kgeography-26.04.0.tar.xz) = 12468160 diff --git a/misc/klettres/distinfo b/misc/klettres/distinfo index 56b188267898..bcee062fce58 100644 --- a/misc/klettres/distinfo +++ b/misc/klettres/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1772541997 -SHA256 (KDE/release-service/25.12.3/klettres-25.12.3.tar.xz) = 1e164d8129778503687970a55f01fbdce03a31642b767f6d6157bf946fa0b5cc -SIZE (KDE/release-service/25.12.3/klettres-25.12.3.tar.xz) = 47189188 +TIMESTAMP = 1776248311 +SHA256 (KDE/release-service/26.04.0/klettres-26.04.0.tar.xz) = 3abd0e26d5c164a4751a8a99db44ee0bfd2f1fb719327e16cbd82964a19a6ebb +SIZE (KDE/release-service/26.04.0/klettres-26.04.0.tar.xz) = 47190252 diff --git a/misc/ktouch/distinfo b/misc/ktouch/distinfo index 2996d7f1b99e..e7094dfa1c90 100644 --- a/misc/ktouch/distinfo +++ b/misc/ktouch/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1772541997 -SHA256 (KDE/release-service/25.12.3/ktouch-25.12.3.tar.xz) = 88ed5ef0c492321be6c926bc3af3b573c4a7d2fba0b65568b5ad50b40a48c790 -SIZE (KDE/release-service/25.12.3/ktouch-25.12.3.tar.xz) = 4785972 +TIMESTAMP = 1776248311 +SHA256 (KDE/release-service/26.04.0/ktouch-26.04.0.tar.xz) = 263a6cfb7356da9d25eeacd02e33af4afcb40b1dab8e85b6a5e2a66be1847cc2 +SIZE (KDE/release-service/26.04.0/ktouch-26.04.0.tar.xz) = 4786532 diff --git a/misc/kwordquiz/distinfo b/misc/kwordquiz/distinfo index 75d49f7d5461..4c8405d1532d 100644 --- a/misc/kwordquiz/distinfo +++ b/misc/kwordquiz/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1772541999 -SHA256 (KDE/release-service/25.12.3/kwordquiz-25.12.3.tar.xz) = fb98383c0b921253a4e4c06c16b96019a0d629b413e6451db64d69889f52cf52 -SIZE (KDE/release-service/25.12.3/kwordquiz-25.12.3.tar.xz) = 3615112 +TIMESTAMP = 1776248313 +SHA256 (KDE/release-service/26.04.0/kwordquiz-26.04.0.tar.xz) = affe58681df903a4f100ae2afca3b23a66ad0b3434bf4a6f0491115d50d60f06 +SIZE (KDE/release-service/26.04.0/kwordquiz-26.04.0.tar.xz) = 3615212 diff --git a/misc/libkeduvocdocument/distinfo b/misc/libkeduvocdocument/distinfo index 42a5937e3117..92c26700b218 100644 --- a/misc/libkeduvocdocument/distinfo +++ b/misc/libkeduvocdocument/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1772542000 -SHA256 (KDE/release-service/25.12.3/libkeduvocdocument-25.12.3.tar.xz) = 92a680125c75bb9d419d36335bdce78510ff74d3b892b3573729a19cae18752d -SIZE (KDE/release-service/25.12.3/libkeduvocdocument-25.12.3.tar.xz) = 225628 +TIMESTAMP = 1776248315 +SHA256 (KDE/release-service/26.04.0/libkeduvocdocument-26.04.0.tar.xz) = 032689e3af4da9ce578bfa8efb8945d214556a09ddff412a5c2f8d5be720d653 +SIZE (KDE/release-service/26.04.0/libkeduvocdocument-26.04.0.tar.xz) = 222040 diff --git a/misc/minuet/Makefile b/misc/minuet/Makefile index 11995d18617e..1ec46e9dc1f9 100644 --- a/misc/minuet/Makefile +++ b/misc/minuet/Makefile @@ -1,18 +1,18 @@ PORTNAME= minuet DISTVERSION= ${KDE_APPLICATIONS_VERSION} CATEGORIES= misc education kde kde-applications MAINTAINER= kde@FreeBSD.org COMMENT= KDE software for music education WWW= https://apps.kde.org/minuet/ LIB_DEPENDS= libfluidsynth.so:audio/fluidsynth -USES= cmake compiler:c++17-lang gettext kde:6 qt:6 tar:xz -USE_KDE= coreaddons crash i18n \ +USES= cmake compiler:c++17-lang gettext kde:6 pkgconfig qt:6 tar:xz +USE_KDE= coreaddons crash doctools i18n kirigami2 \ ecm:build USE_QT= base declarative OPTIONS_DEFINE= DOCS .include diff --git a/misc/minuet/distinfo b/misc/minuet/distinfo index faf92f77feb7..aa2678d33203 100644 --- a/misc/minuet/distinfo +++ b/misc/minuet/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1772542002 -SHA256 (KDE/release-service/25.12.3/minuet-25.12.3.tar.xz) = e0c9c852df80afb1738087efe6055d8402fff9e696422f186d0fec204b3cd0d3 -SIZE (KDE/release-service/25.12.3/minuet-25.12.3.tar.xz) = 27691564 +TIMESTAMP = 1776248316 +SHA256 (KDE/release-service/26.04.0/minuet-26.04.0.tar.xz) = d1340adf29c7866d5bd6648b3e04c06c4ab35ae61bd0e5cbeca99eba26fc027f +SIZE (KDE/release-service/26.04.0/minuet-26.04.0.tar.xz) = 27686560 diff --git a/misc/minuet/files/patch-CMakeLists.txt b/misc/minuet/files/patch-CMakeLists.txt new file mode 100644 index 000000000000..e2b65484ae6f --- /dev/null +++ b/misc/minuet/files/patch-CMakeLists.txt @@ -0,0 +1,16 @@ +--- CMakeLists.txt.orig 2026-04-09 04:24:46 UTC ++++ CMakeLists.txt +@@ -55,13 +55,6 @@ ENDIF(NOT ${CMAKE_SYSTEM_NAME} MATCHES "Android") + ecm_find_qmlmodule(org.kde.kirigami REQUIRED) + ENDIF(NOT ${CMAKE_SYSTEM_NAME} MATCHES "Android") + +-IF(NOT ${CMAKE_SYSTEM_NAME} MATCHES "Linux") +- find_package(KF6 ${KF_MIN_VERSION} REQUIRED COMPONENTS +- QQC2DesktopStyle +- ) +- ecm_find_qmlmodule(org.kde.desktop REQUIRED) +-ENDIF(NOT ${CMAKE_SYSTEM_NAME} MATCHES "Linux") +- + include_directories(${minuet_SOURCE_DIR}/src/ ${minuet_BINARY_DIR}/src/) + + add_subdirectory(src) diff --git a/misc/parley/distinfo b/misc/parley/distinfo index 88896f25601c..8b5875f9dc6f 100644 --- a/misc/parley/distinfo +++ b/misc/parley/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1772542002 -SHA256 (KDE/release-service/25.12.3/parley-25.12.3.tar.xz) = a8d5e35070a535f90af9e8faa9a9f933b7ae1ad3d04bfb8ebd03dc42ac2ede0c -SIZE (KDE/release-service/25.12.3/parley-25.12.3.tar.xz) = 8445388 +TIMESTAMP = 1776248317 +SHA256 (KDE/release-service/26.04.0/parley-26.04.0.tar.xz) = 261f51ae8c2b9aaff291cddbcf58b699b2d29d40f4e36533c2263f53b3b5ea0b +SIZE (KDE/release-service/26.04.0/parley-26.04.0.tar.xz) = 8447376 diff --git a/multimedia/dragon/distinfo b/multimedia/dragon/distinfo index 1673a5eb141d..cb5b9e878a2a 100644 --- a/multimedia/dragon/distinfo +++ b/multimedia/dragon/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1772542004 -SHA256 (KDE/release-service/25.12.3/dragon-25.12.3.tar.xz) = 3af4f7ef4b848ab6ee9a4169721c6c59d6cf19acd876619d647001a86d7ae4ce -SIZE (KDE/release-service/25.12.3/dragon-25.12.3.tar.xz) = 152384 +TIMESTAMP = 1776248318 +SHA256 (KDE/release-service/26.04.0/dragon-26.04.0.tar.xz) = 98697fcb2803b0e87b7265ff5858f9c28a303f3fac8775ce94e3fd826165f2b6 +SIZE (KDE/release-service/26.04.0/dragon-26.04.0.tar.xz) = 153300 diff --git a/multimedia/kamoso/Makefile b/multimedia/kamoso/Makefile index 8fd223eed914..294920ad00ac 100644 --- a/multimedia/kamoso/Makefile +++ b/multimedia/kamoso/Makefile @@ -1,32 +1,31 @@ PORTNAME= kamoso DISTVERSION= ${KDE_APPLICATIONS_VERSION} -PORTREVISION= 1 CATEGORIES= multimedia kde kde-applications MAINTAINER= kde@FreeBSD.org COMMENT= Application to take pictures and videos out of your webcam WWW= https://apps.kde.org/kamoso/ LICENSE= GPLv2 RUN_DEPENDS= frei0r>0:graphics/frei0r USES= cmake compiler:c++20-lang gettext gl gnome gstreamer kde:6 \ pkgconfig qt:6 tar:xz xorg USE_GL= gl USE_GNOME= glib20 USE_GSTREAMER= qt6 v4l2 USE_KDE= config i18n kio notifications purpose \ doctools:build ecm:build \ kirigami2:run USE_QT= base declarative USE_XORG= x11 OPTIONS_DEFINE= DOCS # Remove at 13.5-RELEASE EOL: .if !exists(/usr/bin/clang-scan-deps) USES+= llvm .endif .include diff --git a/multimedia/kamoso/distinfo b/multimedia/kamoso/distinfo index 104755a374c2..6354ca688996 100644 --- a/multimedia/kamoso/distinfo +++ b/multimedia/kamoso/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1772542005 -SHA256 (KDE/release-service/25.12.3/kamoso-25.12.3.tar.xz) = 781aa669979a0326994f90f71e8c2a391d89ec2e1fef066146773577fe8eb864 -SIZE (KDE/release-service/25.12.3/kamoso-25.12.3.tar.xz) = 212980 +TIMESTAMP = 1776248320 +SHA256 (KDE/release-service/26.04.0/kamoso-26.04.0.tar.xz) = 3fef5054c3b972a3c59fbf4e204a6e7c3ea83818ba4941385c6239d23f3a1965 +SIZE (KDE/release-service/26.04.0/kamoso-26.04.0.tar.xz) = 213496 diff --git a/multimedia/kasts/distinfo b/multimedia/kasts/distinfo index 0688b6835d44..775880b1d408 100644 --- a/multimedia/kasts/distinfo +++ b/multimedia/kasts/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1772542005 -SHA256 (KDE/release-service/25.12.3/kasts-25.12.3.tar.xz) = b5d19512a5887a1a763eb9de9530dd7f861d667631cd78a84a79a50e410c00d0 -SIZE (KDE/release-service/25.12.3/kasts-25.12.3.tar.xz) = 671936 +TIMESTAMP = 1776248320 +SHA256 (KDE/release-service/26.04.0/kasts-26.04.0.tar.xz) = 4afe5874ef87508078781569221a1780d9f318274d7ab6f915c1385189e229dd +SIZE (KDE/release-service/26.04.0/kasts-26.04.0.tar.xz) = 691900 diff --git a/multimedia/kdemultimedia-ffmpegthumbs/distinfo b/multimedia/kdemultimedia-ffmpegthumbs/distinfo index 8eb69f14a07e..74bf82751609 100644 --- a/multimedia/kdemultimedia-ffmpegthumbs/distinfo +++ b/multimedia/kdemultimedia-ffmpegthumbs/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1772542007 -SHA256 (KDE/release-service/25.12.3/ffmpegthumbs-25.12.3.tar.xz) = eeb38acc65a955c16532b83a20bca08fce3e484674dbb0ccaecae44277ef8de8 -SIZE (KDE/release-service/25.12.3/ffmpegthumbs-25.12.3.tar.xz) = 35228 +TIMESTAMP = 1776248322 +SHA256 (KDE/release-service/26.04.0/ffmpegthumbs-26.04.0.tar.xz) = 7663ba531dbd90fbb15d6309fd94e96a4b283f57d8a48da6778f7130ee45c5f1 +SIZE (KDE/release-service/26.04.0/ffmpegthumbs-26.04.0.tar.xz) = 35292 diff --git a/multimedia/kdenlive/distinfo b/multimedia/kdenlive/distinfo index 3a739ad40854..e4e94c176748 100644 --- a/multimedia/kdenlive/distinfo +++ b/multimedia/kdenlive/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1772542008 -SHA256 (KDE/release-service/25.12.3/kdenlive-25.12.3.tar.xz) = 12ef075c6df73637948cdce7725bb8380ccd164b158157d495e6821804ce4a7f -SIZE (KDE/release-service/25.12.3/kdenlive-25.12.3.tar.xz) = 14297744 +TIMESTAMP = 1776248324 +SHA256 (KDE/release-service/26.04.0/kdenlive-26.04.0.tar.xz) = be0ff5d679c5f6c72646c13fecf882b01b7c389899063c9d6417dda2f5623a62 +SIZE (KDE/release-service/26.04.0/kdenlive-26.04.0.tar.xz) = 19697140 diff --git a/multimedia/kdenlive/pkg-plist b/multimedia/kdenlive/pkg-plist index 4845bbfd0919..d3441450970d 100644 --- a/multimedia/kdenlive/pkg-plist +++ b/multimedia/kdenlive/pkg-plist @@ -1,704 +1,818 @@ bin/kdenlive bin/kdenlive_render lib/libkdenliveLibplugin.a %%QT_PLUGINDIR%%/kf6/thumbcreator/mltpreview.so %%QT_QMLDIR%%/org/kde/kdenlive/AssetMenu.qml %%QT_QMLDIR%%/org/kde/kdenlive/AssetView.qml %%QT_QMLDIR%%/org/kde/kdenlive/AudioLevels.qml %%QT_QMLDIR%%/org/kde/kdenlive/AudioRecordButton.qml %%QT_QMLDIR%%/org/kde/kdenlive/AudioRecordingControls.qml %%QT_QMLDIR%%/org/kde/kdenlive/AudioView.qml %%QT_QMLDIR%%/org/kde/kdenlive/AudioZoomBar.qml %%QT_QMLDIR%%/org/kde/kdenlive/Clip.qml %%QT_QMLDIR%%/org/kde/kdenlive/ClipAudioThumbs.qml %%QT_QMLDIR%%/org/kde/kdenlive/ClipMonitor.qml %%QT_QMLDIR%%/org/kde/kdenlive/ClipThumbs.qml %%QT_QMLDIR%%/org/kde/kdenlive/Composition.qml %%QT_QMLDIR%%/org/kde/kdenlive/CornerSelectionShadow.qml %%QT_QMLDIR%%/org/kde/kdenlive/Countdown.qml %%QT_QMLDIR%%/org/kde/kdenlive/EffectToolBar.qml %%QT_QMLDIR%%/org/kde/kdenlive/GuidesMenu.qml %%QT_QMLDIR%%/org/kde/kdenlive/KeyframeView.qml %%QT_QMLDIR%%/org/kde/kdenlive/MaskToolBar.qml %%QT_QMLDIR%%/org/kde/kdenlive/MixShape.qml %%QT_QMLDIR%%/org/kde/kdenlive/MonitorAutomask.qml %%QT_QMLDIR%%/org/kde/kdenlive/MonitorCornerScene.qml %%QT_QMLDIR%%/org/kde/kdenlive/MonitorGeometryScene.qml %%QT_QMLDIR%%/org/kde/kdenlive/MonitorOverlay.qml %%QT_QMLDIR%%/org/kde/kdenlive/MonitorRotoScene.qml %%QT_QMLDIR%%/org/kde/kdenlive/MonitorRuler.qml %%QT_QMLDIR%%/org/kde/kdenlive/MonitorSafeZone.qml %%QT_QMLDIR%%/org/kde/kdenlive/MonitorSplit.qml %%QT_QMLDIR%%/org/kde/kdenlive/MonitorSplitTracks.qml %%QT_QMLDIR%%/org/kde/kdenlive/MonitorToolButton.qml %%QT_QMLDIR%%/org/kde/kdenlive/MonitorTrimming.qml %%QT_QMLDIR%%/org/kde/kdenlive/MonitorZoomButton.qml %%QT_QMLDIR%%/org/kde/kdenlive/MultiScreenToolBar.qml %%QT_QMLDIR%%/org/kde/kdenlive/OverlayCenter.qml %%QT_QMLDIR%%/org/kde/kdenlive/OverlayCenterDiagonal.qml %%QT_QMLDIR%%/org/kde/kdenlive/OverlayLabel.qml %%QT_QMLDIR%%/org/kde/kdenlive/OverlayMinimal.qml %%QT_QMLDIR%%/org/kde/kdenlive/OverlayStandard.qml %%QT_QMLDIR%%/org/kde/kdenlive/OverlayThirds.qml %%QT_QMLDIR%%/org/kde/kdenlive/ProjectMonitor.qml %%QT_QMLDIR%%/org/kde/kdenlive/PulsingAnimation.qml %%QT_QMLDIR%%/org/kde/kdenlive/ResizeHandle.qml %%QT_QMLDIR%%/org/kde/kdenlive/ResizeLogic.js %%QT_QMLDIR%%/org/kde/kdenlive/RotationHandle.qml %%QT_QMLDIR%%/org/kde/kdenlive/Ruler.qml %%QT_QMLDIR%%/org/kde/kdenlive/RulerZone.qml %%QT_QMLDIR%%/org/kde/kdenlive/Safe169.qml %%QT_QMLDIR%%/org/kde/kdenlive/Safe916.qml %%QT_QMLDIR%%/org/kde/kdenlive/SceneToolBar.qml %%QT_QMLDIR%%/org/kde/kdenlive/Simplesplash.qml %%QT_QMLDIR%%/org/kde/kdenlive/SnappingLogic.js %%QT_QMLDIR%%/org/kde/kdenlive/Splash.qml %%QT_QMLDIR%%/org/kde/kdenlive/SubTitle.qml %%QT_QMLDIR%%/org/kde/kdenlive/SubtitleTrackHead.qml %%QT_QMLDIR%%/org/kde/kdenlive/Timeline.qml %%QT_QMLDIR%%/org/kde/kdenlive/TimelineLogic.js %%QT_QMLDIR%%/org/kde/kdenlive/Track.qml %%QT_QMLDIR%%/org/kde/kdenlive/TrackHead.qml %%QT_QMLDIR%%/org/kde/kdenlive/Utils.js %%QT_QMLDIR%%/org/kde/kdenlive/ZoomBar.qml %%QT_QMLDIR%%/org/kde/kdenlive/kde-qmlmodule.version %%QT_QMLDIR%%/org/kde/kdenlive/kdenliveLib.qmltypes %%QT_QMLDIR%%/org/kde/kdenlive/qmldir share/applications/org.kde.kdenlive.desktop share/config.kcfg/kdenlivesettings.kcfg %%PORTDOCS%%%%DOCSDIR%%/Kdenlive/AUTHORS %%PORTDOCS%%%%DOCSDIR%%/Kdenlive/LICENSES/Apache-2.0.txt %%PORTDOCS%%%%DOCSDIR%%/Kdenlive/LICENSES/BSD-2-Clause.txt %%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-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/LGPL-3.0-or-later.txt %%PORTDOCS%%%%DOCSDIR%%/Kdenlive/LICENSES/LicenseRef-KDE-Accepted-GPL.txt %%PORTDOCS%%%%DOCSDIR%%/Kdenlive/LICENSES/LicenseRef-KDE-Accepted-LGPL.txt %%PORTDOCS%%%%DOCSDIR%%/Kdenlive/LICENSES/MIT.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/apps/kdenlive.png 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/512x512/apps/kdenlive.png share/icons/hicolor/64x64/apps/kdenlive.png share/icons/hicolor/64x64/mimetypes/application-x-kdenlivetitle.png share/icons/hicolor/scalable/apps/kdenlive.svg 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/secondary_color_correction_v2.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_backgroundkey.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_ciescope.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_dblur.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_gradfun.xml %%DATADIR%%/effects/avfilter_graphmonitor.xml +%%DATADIR%%/effects/avfilter_grayworld.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_hsvhold.xml %%DATADIR%%/effects/avfilter_hsvkey.xml %%DATADIR%%/effects/avfilter_huesaturation.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_oscilloscope.xml %%DATADIR%%/effects/avfilter_phase.xml %%DATADIR%%/effects/avfilter_photosensitivity.xml %%DATADIR%%/effects/avfilter_pixelize.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_scharr.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_swapuv.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/burningtv.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/dropshadow.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_aech0r.xml %%DATADIR%%/effects/frei0r_alpha0ps.xml %%DATADIR%%/effects/frei0r_alpha0ps_alpha0ps.xml %%DATADIR%%/effects/frei0r_alpha0ps_alphagrad.xml %%DATADIR%%/effects/frei0r_alpha0ps_alphaspot.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_cap.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_eq_wrap.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_bluescreen0r.xml %%DATADIR%%/effects/frei0r_brightness.xml +%%DATADIR%%/effects/frei0r_bw0r.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_denoise_hqdn3d.xml %%DATADIR%%/effects/frei0r_distort0r.xml %%DATADIR%%/effects/frei0r_dither.xml %%DATADIR%%/effects/frei0r_edgeglow.xml %%DATADIR%%/effects/frei0r_elastic_scale.xml %%DATADIR%%/effects/frei0r_emboss.xml %%DATADIR%%/effects/frei0r_equaliz0r.xml %%DATADIR%%/effects/frei0r_facebl0r.xml %%DATADIR%%/effects/frei0r_facedetect.xml %%DATADIR%%/effects/frei0r_filmgrain.xml %%DATADIR%%/effects/frei0r_flippo.xml %%DATADIR%%/effects/frei0r_glitch0r.xml %%DATADIR%%/effects/frei0r_glow.xml +%%DATADIR%%/effects/frei0r_heatmap0r.xml %%DATADIR%%/effects/frei0r_hqdn3d.xml %%DATADIR%%/effects/frei0r_hueshift0r.xml %%DATADIR%%/effects/frei0r_iirblur.xml +%%DATADIR%%/effects/frei0r_invert0r.xml %%DATADIR%%/effects/frei0r_kaleid0sc0pe.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_measure_pr0be.xml %%DATADIR%%/effects/frei0r_measure_pr0file.xml %%DATADIR%%/effects/frei0r_medians.xml %%DATADIR%%/effects/frei0r_mirr0r.xml +%%DATADIR%%/effects/frei0r_ndvi.xml %%DATADIR%%/effects/frei0r_nervous.xml %%DATADIR%%/effects/frei0r_normaliz0r.xml %%DATADIR%%/effects/frei0r_nosync0r.xml %%DATADIR%%/effects/frei0r_ntsc.xml %%DATADIR%%/effects/frei0r_pixeliz0r.xml %%DATADIR%%/effects/frei0r_pixs0r.xml %%DATADIR%%/effects/frei0r_posterize.xml %%DATADIR%%/effects/frei0r_pr0be.xml %%DATADIR%%/effects/frei0r_pr0file.xml +%%DATADIR%%/effects/frei0r_premultiply.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_spillsupress.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/gpsgraphic.xml %%DATADIR%%/effects/gpstext.xml %%DATADIR%%/effects/gradientmap.xml %%DATADIR%%/effects/grain.xml %%DATADIR%%/effects/greyedge.xml %%DATADIR%%/effects/greyscale.xml %%DATADIR%%/effects/hsl_primaries.xml %%DATADIR%%/effects/hsl_range.xml %%DATADIR%%/effects/invert.xml %%DATADIR%%/effects/ladspa_2141.xml %%DATADIR%%/effects/ladspa_2142.xml %%DATADIR%%/effects/ladspa_2143.xml %%DATADIR%%/effects/ladspa_2144.xml %%DATADIR%%/effects/ladspa_2145.xml %%DATADIR%%/effects/ladspa_2146.xml %%DATADIR%%/effects/ladspa_2147.xml %%DATADIR%%/effects/ladspa_2148.xml %%DATADIR%%/effects/ladspa_2149.xml %%DATADIR%%/effects/ladspa_2150.xml %%DATADIR%%/effects/ladspa_2151.xml %%DATADIR%%/effects/ladspa_2152.xml %%DATADIR%%/effects/ladspa_2153.xml %%DATADIR%%/effects/ladspa_2154.xml %%DATADIR%%/effects/ladspa_2155.xml %%DATADIR%%/effects/ladspa_2156.xml %%DATADIR%%/effects/ladspa_2157.xml %%DATADIR%%/effects/ladspa_2158.xml %%DATADIR%%/effects/ladspa_2159.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/lumakey.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/rotate-3-way.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/shear.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/strobe.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%%/kdenliveeffectscategory.rc %%DATADIR%%/kdenlivetranscodingrc %%DATADIR%%/layouts/audio.json %%DATADIR%%/layouts/color.json %%DATADIR%%/layouts/editing.json %%DATADIR%%/layouts/editing_vertical.json %%DATADIR%%/layouts/effects.json %%DATADIR%%/layouts/logging.json %%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%%/profiles/hd_ready_768p_25 +%%DATADIR%%/profiles/hd_ready_768p_2997 +%%DATADIR%%/profiles/hd_ready_768p_30 +%%DATADIR%%/profiles/hd_ready_768p_50 +%%DATADIR%%/profiles/hd_ready_768p_5994 +%%DATADIR%%/profiles/hd_ready_768p_60 %%DATADIR%%/profiles/vertical_1080p_25 %%DATADIR%%/resourceproviders/archiveorg.json %%DATADIR%%/resourceproviders/freesound.json %%DATADIR%%/resourceproviders/pexels_photo.json %%DATADIR%%/resourceproviders/pexels_video.json %%DATADIR%%/resourceproviders/pixabay_photo.json %%DATADIR%%/resourceproviders/pixabay_videos.json %%DATADIR%%/sammodelsinfo.rc %%DATADIR%%/scripts/automask/kdenlive_build_sam.py %%DATADIR%%/scripts/automask/kdenlive_sam2_video_predictor.py %%DATADIR%%/scripts/automask/requirements-cuda118.txt %%DATADIR%%/scripts/automask/requirements-cuda124.txt %%DATADIR%%/scripts/automask/requirements-cuda126.txt %%DATADIR%%/scripts/automask/requirements-cuda128.txt %%DATADIR%%/scripts/automask/requirements-sam.txt %%DATADIR%%/scripts/automask/sam-objectmask.py %%DATADIR%%/scripts/checkgpu.py %%DATADIR%%/scripts/checkpackages.py +%%DATADIR%%/scripts/generate_transition_previews.py %%DATADIR%%/scripts/otiointerface.py %%DATADIR%%/scripts/vosk/speech.py %%DATADIR%%/scripts/vosk/speechtotext.py %%DATADIR%%/scripts/whisper/requirements-cuda118.txt %%DATADIR%%/scripts/whisper/requirements-cuda124.txt %%DATADIR%%/scripts/whisper/requirements-cuda126.txt %%DATADIR%%/scripts/whisper/requirements-cuda128.txt %%DATADIR%%/scripts/whisper/requirements-seamless.txt %%DATADIR%%/scripts/whisper/requirements-whisper.txt %%DATADIR%%/scripts/whisper/seamlessquery.py %%DATADIR%%/scripts/whisper/whisperquery.py %%DATADIR%%/scripts/whisper/whispertosrt.py %%DATADIR%%/scripts/whisper/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_euclid_eraser.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/parameters.txt +%%DATADIR%%/transitions/previews/affine.webp +%%DATADIR%%/transitions/previews/bi-linear_x.webp +%%DATADIR%%/transitions/previews/bi-linear_y.webp +%%DATADIR%%/transitions/previews/burst.webp +%%DATADIR%%/transitions/previews/checkerboard_small.webp +%%DATADIR%%/transitions/previews/clock.webp +%%DATADIR%%/transitions/previews/cloud.webp +%%DATADIR%%/transitions/previews/composite.webp +%%DATADIR%%/transitions/previews/curtain.webp +%%DATADIR%%/transitions/previews/dissolve.webp +%%DATADIR%%/transitions/previews/frei0r.addition.webp +%%DATADIR%%/transitions/previews/frei0r.addition_alpha.webp +%%DATADIR%%/transitions/previews/frei0r.alphaatop.webp +%%DATADIR%%/transitions/previews/frei0r.alphain.webp +%%DATADIR%%/transitions/previews/frei0r.alphaout.webp +%%DATADIR%%/transitions/previews/frei0r.alphaover.webp +%%DATADIR%%/transitions/previews/frei0r.alphaxor.webp +%%DATADIR%%/transitions/previews/frei0r.burn.webp +%%DATADIR%%/transitions/previews/frei0r.cairoaffineblend.webp +%%DATADIR%%/transitions/previews/frei0r.cairoblend.webp +%%DATADIR%%/transitions/previews/frei0r.color_only.webp +%%DATADIR%%/transitions/previews/frei0r.darken.webp +%%DATADIR%%/transitions/previews/frei0r.difference.webp +%%DATADIR%%/transitions/previews/frei0r.divide.webp +%%DATADIR%%/transitions/previews/frei0r.dodge.webp +%%DATADIR%%/transitions/previews/frei0r.euclid_eraser.webp +%%DATADIR%%/transitions/previews/frei0r.grain_extract.webp +%%DATADIR%%/transitions/previews/frei0r.grain_merge.webp +%%DATADIR%%/transitions/previews/frei0r.hardlight.webp +%%DATADIR%%/transitions/previews/frei0r.hue.webp +%%DATADIR%%/transitions/previews/frei0r.lighten.webp +%%DATADIR%%/transitions/previews/frei0r.multiply.webp +%%DATADIR%%/transitions/previews/frei0r.overlay.webp +%%DATADIR%%/transitions/previews/frei0r.saturation.webp +%%DATADIR%%/transitions/previews/frei0r.screen.webp +%%DATADIR%%/transitions/previews/frei0r.sleid0r_push-down.webp +%%DATADIR%%/transitions/previews/frei0r.sleid0r_push-left.webp +%%DATADIR%%/transitions/previews/frei0r.sleid0r_push-right.webp +%%DATADIR%%/transitions/previews/frei0r.sleid0r_push-up.webp +%%DATADIR%%/transitions/previews/frei0r.sleid0r_slide-down.webp +%%DATADIR%%/transitions/previews/frei0r.sleid0r_slide-left.webp +%%DATADIR%%/transitions/previews/frei0r.sleid0r_slide-right.webp +%%DATADIR%%/transitions/previews/frei0r.sleid0r_slide-up.webp +%%DATADIR%%/transitions/previews/frei0r.sleid0r_wipe-barn-door-h.webp +%%DATADIR%%/transitions/previews/frei0r.sleid0r_wipe-barn-door-v.webp +%%DATADIR%%/transitions/previews/frei0r.sleid0r_wipe-circle.webp +%%DATADIR%%/transitions/previews/frei0r.sleid0r_wipe-down.webp +%%DATADIR%%/transitions/previews/frei0r.sleid0r_wipe-left.webp +%%DATADIR%%/transitions/previews/frei0r.sleid0r_wipe-rect.webp +%%DATADIR%%/transitions/previews/frei0r.sleid0r_wipe-right.webp +%%DATADIR%%/transitions/previews/frei0r.sleid0r_wipe-up.webp +%%DATADIR%%/transitions/previews/frei0r.softlight.webp +%%DATADIR%%/transitions/previews/frei0r.subtract.webp +%%DATADIR%%/transitions/previews/frei0r.uvmap.webp +%%DATADIR%%/transitions/previews/frei0r.value.webp +%%DATADIR%%/transitions/previews/horizontal_blinds.webp +%%DATADIR%%/transitions/previews/linear_x.webp +%%DATADIR%%/transitions/previews/linear_y.webp +%%DATADIR%%/transitions/previews/luma.webp +%%DATADIR%%/transitions/previews/luma01.webp +%%DATADIR%%/transitions/previews/luma02.webp +%%DATADIR%%/transitions/previews/luma03.webp +%%DATADIR%%/transitions/previews/luma04.webp +%%DATADIR%%/transitions/previews/luma05.webp +%%DATADIR%%/transitions/previews/luma06.webp +%%DATADIR%%/transitions/previews/luma07.webp +%%DATADIR%%/transitions/previews/luma08.webp +%%DATADIR%%/transitions/previews/luma09.webp +%%DATADIR%%/transitions/previews/luma10.webp +%%DATADIR%%/transitions/previews/luma11.webp +%%DATADIR%%/transitions/previews/luma12.webp +%%DATADIR%%/transitions/previews/luma13.webp +%%DATADIR%%/transitions/previews/luma14.webp +%%DATADIR%%/transitions/previews/luma15.webp +%%DATADIR%%/transitions/previews/luma16.webp +%%DATADIR%%/transitions/previews/luma17.webp +%%DATADIR%%/transitions/previews/luma18.webp +%%DATADIR%%/transitions/previews/luma19.webp +%%DATADIR%%/transitions/previews/luma20.webp +%%DATADIR%%/transitions/previews/luma21.webp +%%DATADIR%%/transitions/previews/luma22.webp +%%DATADIR%%/transitions/previews/matte.webp +%%DATADIR%%/transitions/previews/mix.webp +%%DATADIR%%/transitions/previews/qtblend.webp +%%DATADIR%%/transitions/previews/radial-bars.webp +%%DATADIR%%/transitions/previews/radial.webp +%%DATADIR%%/transitions/previews/region.webp +%%DATADIR%%/transitions/previews/slide.webp +%%DATADIR%%/transitions/previews/spiral.webp +%%DATADIR%%/transitions/previews/spiral2.webp +%%DATADIR%%/transitions/previews/square.webp +%%DATADIR%%/transitions/previews/square2-bars.webp +%%DATADIR%%/transitions/previews/square2.webp +%%DATADIR%%/transitions/previews/symmetric_clock.webp +%%DATADIR%%/transitions/previews/vqm.webp +%%DATADIR%%/transitions/previews/wipe.webp %%DATADIR%%/transitions/qtblend.xml %%DATADIR%%/transitions/region.xml %%DATADIR%%/transitions/slide.xml %%DATADIR%%/transitions/vqm.xml %%DATADIR%%/transitions/wipe.xml share/knotifications6/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/locale/ar/LC_MESSAGES/kdenlive.mo share/locale/ast/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/eo/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/hi/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/lv/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/sa/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/tok/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/man/man1/kdenlive.1.gz share/man/man1/kdenlive_render.1.gz share/metainfo/org.kde.kdenlive.appdata.xml share/mime/packages/org.kde.kdenlive.xml share/mime/packages/westley.xml share/qlogging-categories6/kdenlive.categories share/qlogging-categories6/kdenlive.renamecategories diff --git a/multimedia/plasmatube/distinfo b/multimedia/plasmatube/distinfo index ebf13e2becfe..e8be1249067a 100644 --- a/multimedia/plasmatube/distinfo +++ b/multimedia/plasmatube/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1772542009 -SHA256 (KDE/release-service/25.12.3/plasmatube-25.12.3.tar.xz) = c5fe282148181865daa5423ee7595194b1cbfa0168ec722fdcac9ebb67cc52a4 -SIZE (KDE/release-service/25.12.3/plasmatube-25.12.3.tar.xz) = 227052 +TIMESTAMP = 1776248324 +SHA256 (KDE/release-service/26.04.0/plasmatube-26.04.0.tar.xz) = 2301ab0fe3d7841fe21e730e070788d9de0f087388ee39c0330fe6753d4f7e35 +SIZE (KDE/release-service/26.04.0/plasmatube-26.04.0.tar.xz) = 228896 diff --git a/net-im/kaccounts-integration/distinfo b/net-im/kaccounts-integration/distinfo index c48c485faf0e..301f653a54fa 100644 --- a/net-im/kaccounts-integration/distinfo +++ b/net-im/kaccounts-integration/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1772542010 -SHA256 (KDE/release-service/25.12.3/kaccounts-integration-25.12.3.tar.xz) = 71c20ae5ca1459f732cc3c92248885b2d1d84e251f2d1b0f462b00adda8fc3b6 -SIZE (KDE/release-service/25.12.3/kaccounts-integration-25.12.3.tar.xz) = 94600 +TIMESTAMP = 1776248326 +SHA256 (KDE/release-service/26.04.0/kaccounts-integration-26.04.0.tar.xz) = 9d23ce5f11d0055bd26bad437910015d598ce8a1b8f8af30e56a8a7a3b15953b +SIZE (KDE/release-service/26.04.0/kaccounts-integration-26.04.0.tar.xz) = 94800 diff --git a/net-im/kaccounts-providers/distinfo b/net-im/kaccounts-providers/distinfo index 720a08736b0c..1279a221a8fe 100644 --- a/net-im/kaccounts-providers/distinfo +++ b/net-im/kaccounts-providers/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1772542012 -SHA256 (KDE/release-service/25.12.3/kaccounts-providers-25.12.3.tar.xz) = 0ce6455e601c122ad1179d3808a12d44c5d36377cf0ce5556520d0f8eee3e6bc -SIZE (KDE/release-service/25.12.3/kaccounts-providers-25.12.3.tar.xz) = 69040 +TIMESTAMP = 1776248327 +SHA256 (KDE/release-service/26.04.0/kaccounts-providers-26.04.0.tar.xz) = 56cebf01d5adc721d6e832246806215ebc258912915e98d6c3c11c1d13208744 +SIZE (KDE/release-service/26.04.0/kaccounts-providers-26.04.0.tar.xz) = 69168 diff --git a/net-im/neochat/distinfo b/net-im/neochat/distinfo index b25792ac7b04..d72c979f2de1 100644 --- a/net-im/neochat/distinfo +++ b/net-im/neochat/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1772542013 -SHA256 (KDE/release-service/25.12.3/neochat-25.12.3.tar.xz) = 58f7a58d577466277ed96be7ca10481c52645241400afafd49ba8dc46120a6d9 -SIZE (KDE/release-service/25.12.3/neochat-25.12.3.tar.xz) = 1295028 +TIMESTAMP = 1776248329 +SHA256 (KDE/release-service/26.04.0/neochat-26.04.0.tar.xz) = 890e46495784cb1d9109c235e5e9b808320f5fd581f6bc4ef8001e294cce893a +SIZE (KDE/release-service/26.04.0/neochat-26.04.0.tar.xz) = 1407408 diff --git a/net-im/tokodon/distinfo b/net-im/tokodon/distinfo index 583cef22cf9d..9dc4a45073a7 100644 --- a/net-im/tokodon/distinfo +++ b/net-im/tokodon/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1772542013 -SHA256 (KDE/release-service/25.12.3/tokodon-25.12.3.tar.xz) = f5197e65c8d7969f93deca601ac3d84493de22d3d2440bd50c5193af22defb28 -SIZE (KDE/release-service/25.12.3/tokodon-25.12.3.tar.xz) = 840588 +TIMESTAMP = 1776248329 +SHA256 (KDE/release-service/26.04.0/tokodon-26.04.0.tar.xz) = 38d48fe6d3b5f592518632fd7416f7b24625816e01353509b415b3eb8ce05e25 +SIZE (KDE/release-service/26.04.0/tokodon-26.04.0.tar.xz) = 855880 diff --git a/net-p2p/ktorrent/distinfo b/net-p2p/ktorrent/distinfo index c866d1ab32e3..7fa520818d8a 100644 --- a/net-p2p/ktorrent/distinfo +++ b/net-p2p/ktorrent/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1772542015 -SHA256 (KDE/release-service/25.12.3/ktorrent-25.12.3.tar.xz) = d7aeef6fd792ecffc0a836c2978cfb8754223d725db1a12397dfcc9787be98d2 -SIZE (KDE/release-service/25.12.3/ktorrent-25.12.3.tar.xz) = 2230652 +TIMESTAMP = 1776248331 +SHA256 (KDE/release-service/26.04.0/ktorrent-26.04.0.tar.xz) = 505affd4db76b22b0b1fa127d9eb97a373b510aa55adcf0125936b17b1810a08 +SIZE (KDE/release-service/26.04.0/ktorrent-26.04.0.tar.xz) = 2244104 diff --git a/net-p2p/libktorrent/distinfo b/net-p2p/libktorrent/distinfo index ef7f8e43e513..052ff870cca7 100644 --- a/net-p2p/libktorrent/distinfo +++ b/net-p2p/libktorrent/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1772542016 -SHA256 (KDE/release-service/25.12.3/libktorrent-25.12.3.tar.xz) = e462cba899d4d122923aa4d0c6efd395ebc4ef9eb688e6b7a405234da6c8c302 -SIZE (KDE/release-service/25.12.3/libktorrent-25.12.3.tar.xz) = 596240 +TIMESTAMP = 1776248332 +SHA256 (KDE/release-service/26.04.0/libktorrent-26.04.0.tar.xz) = 4c7ef4b7416fcedf9d1ca8b759cae8ee0cd4254dca80e3978753399445dcf008 +SIZE (KDE/release-service/26.04.0/libktorrent-26.04.0.tar.xz) = 603328 diff --git a/net/akonadi-calendar/distinfo b/net/akonadi-calendar/distinfo index 382ccdab6ac2..4774bdc51235 100644 --- a/net/akonadi-calendar/distinfo +++ b/net/akonadi-calendar/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1772542018 -SHA256 (KDE/release-service/25.12.3/akonadi-calendar-25.12.3.tar.xz) = ac606d2210ba581167b0f17bc81dc60ed4c0de66daf9adcd55fce25c73c60014 -SIZE (KDE/release-service/25.12.3/akonadi-calendar-25.12.3.tar.xz) = 546632 +TIMESTAMP = 1776248334 +SHA256 (KDE/release-service/26.04.0/akonadi-calendar-26.04.0.tar.xz) = 942a1cd2e1d154c2274921e48439e649647ffe5aae85cdd464a2bc4e554a9230 +SIZE (KDE/release-service/26.04.0/akonadi-calendar-26.04.0.tar.xz) = 553952 diff --git a/net/akonadi-calendar/pkg-plist b/net/akonadi-calendar/pkg-plist index 2aa130e59522..05430d724594 100644 --- a/net/akonadi-calendar/pkg-plist +++ b/net/akonadi-calendar/pkg-plist @@ -1,232 +1,233 @@ bin/kalendarac etc/xdg/autostart/org.kde.kalendarac.desktop include/KPim6/AkonadiCalendar/Akonadi/BlockAlarmsAttribute include/KPim6/AkonadiCalendar/Akonadi/CalFilterPartStatusProxyModel include/KPim6/AkonadiCalendar/Akonadi/CalFilterProxyModel include/KPim6/AkonadiCalendar/Akonadi/CalendarBase include/KPim6/AkonadiCalendar/Akonadi/CalendarClipboard include/KPim6/AkonadiCalendar/Akonadi/CalendarUtils include/KPim6/AkonadiCalendar/Akonadi/CollectionCalendar include/KPim6/AkonadiCalendar/Akonadi/ETMCalendar include/KPim6/AkonadiCalendar/Akonadi/FetchJobCalendar include/KPim6/AkonadiCalendar/Akonadi/FreeBusyManager include/KPim6/AkonadiCalendar/Akonadi/History include/KPim6/AkonadiCalendar/Akonadi/ICalImporter include/KPim6/AkonadiCalendar/Akonadi/ITIPHandler include/KPim6/AkonadiCalendar/Akonadi/IncidenceChanger include/KPim6/AkonadiCalendar/Akonadi/IncidenceTreeModel include/KPim6/AkonadiCalendar/Akonadi/PublishDialog include/KPim6/AkonadiCalendar/Akonadi/SearchCollectionHelper include/KPim6/AkonadiCalendar/Akonadi/SelectCollection include/KPim6/AkonadiCalendar/Akonadi/StandardCalendarActionManager include/KPim6/AkonadiCalendar/Akonadi/TodoModel include/KPim6/AkonadiCalendar/Akonadi/TodoPurger include/KPim6/AkonadiCalendar/akonadi-calendar_version.h include/KPim6/AkonadiCalendar/akonadi/akonadi-calendar_export.h include/KPim6/AkonadiCalendar/akonadi/blockalarmsattribute.h include/KPim6/AkonadiCalendar/akonadi/calendarbase.h include/KPim6/AkonadiCalendar/akonadi/calendarclipboard.h include/KPim6/AkonadiCalendar/akonadi/calendarsettings.h include/KPim6/AkonadiCalendar/akonadi/calendarutils.h include/KPim6/AkonadiCalendar/akonadi/calfilterpartstatusproxymodel.h include/KPim6/AkonadiCalendar/akonadi/calfilterproxymodel.h include/KPim6/AkonadiCalendar/akonadi/collectioncalendar.h include/KPim6/AkonadiCalendar/akonadi/etmcalendar.h include/KPim6/AkonadiCalendar/akonadi/fetchjobcalendar.h include/KPim6/AkonadiCalendar/akonadi/freebusymanager.h include/KPim6/AkonadiCalendar/akonadi/history.h include/KPim6/AkonadiCalendar/akonadi/icalimporter.h include/KPim6/AkonadiCalendar/akonadi/incidencechanger.h include/KPim6/AkonadiCalendar/akonadi/incidencetreemodel.h include/KPim6/AkonadiCalendar/akonadi/itiphandler.h include/KPim6/AkonadiCalendar/akonadi/publishdialog.h include/KPim6/AkonadiCalendar/akonadi/searchcollectionhelper.h include/KPim6/AkonadiCalendar/akonadi/selectcollection.h include/KPim6/AkonadiCalendar/akonadi/standardcalendaractionmanager.h include/KPim6/AkonadiCalendar/akonadi/todomodel.h include/KPim6/AkonadiCalendar/akonadi/todopurger.h include/KPim6/AkonadiCalendarCore/Akonadi/FreeBusyProviderBase include/KPim6/AkonadiCalendarCore/akonadi-calendar-core_version.h include/KPim6/AkonadiCalendarCore/akonadi/akonadi-calendar-core_export.h include/KPim6/AkonadiCalendarCore/akonadi/freebusyproviderbase.h lib/cmake/KPim6AkonadiCalendar/KPim6AkonadiCalendarConfig.cmake lib/cmake/KPim6AkonadiCalendar/KPim6AkonadiCalendarConfigVersion.cmake lib/cmake/KPim6AkonadiCalendar/KPim6AkonadiCalendarTargets-%%CMAKE_BUILD_TYPE%%.cmake lib/cmake/KPim6AkonadiCalendar/KPim6AkonadiCalendarTargets.cmake lib/cmake/KPim6AkonadiCalendarCore/KPim6AkonadiCalendarCoreConfig.cmake lib/cmake/KPim6AkonadiCalendarCore/KPim6AkonadiCalendarCoreConfigVersion.cmake lib/cmake/KPim6AkonadiCalendarCore/KPim6AkonadiCalendarCoreTargets-%%CMAKE_BUILD_TYPE%%.cmake lib/cmake/KPim6AkonadiCalendarCore/KPim6AkonadiCalendarCoreTargets.cmake lib/libKPim6AkonadiCalendar.so lib/libKPim6AkonadiCalendar.so.6 lib/libKPim6AkonadiCalendar.so.%%KDE_APPLICATIONS_SHLIB_VER%% lib/libKPim6AkonadiCalendarCore.so lib/libKPim6AkonadiCalendarCore.so.6 lib/libKPim6AkonadiCalendarCore.so.%%KDE_APPLICATIONS_SHLIB_VER%% %%QT_PLUGINDIR%%/akonadi_serializer_kcalcore.so %%QT_PLUGINDIR%%/kf6/org.kde.kcalendarcore.calendars/libakonadicalendarplugin.so share/akonadi/plugins/serializer/akonadi_serializer_kcalcore.desktop share/dbus-1/services/org.kde.kalendarac.service share/knotifications6/kalendarac.notifyrc share/locale/ar/LC_MESSAGES/kalendarac.mo share/locale/ar/LC_MESSAGES/libakonadi-calendar6-serializer.mo share/locale/ar/LC_MESSAGES/libakonadi-calendar6.mo share/locale/ast/LC_MESSAGES/kalendarac.mo share/locale/ast/LC_MESSAGES/libakonadi-calendar6-serializer.mo share/locale/ast/LC_MESSAGES/libakonadi-calendar6.mo share/locale/az/LC_MESSAGES/kalendarac.mo share/locale/az/LC_MESSAGES/libakonadi-calendar6-serializer.mo share/locale/az/LC_MESSAGES/libakonadi-calendar6.mo share/locale/bg/LC_MESSAGES/kalendarac.mo share/locale/bg/LC_MESSAGES/libakonadi-calendar6-serializer.mo share/locale/bg/LC_MESSAGES/libakonadi-calendar6.mo share/locale/bs/LC_MESSAGES/libakonadi-calendar6-serializer.mo share/locale/bs/LC_MESSAGES/libakonadi-calendar6.mo share/locale/ca/LC_MESSAGES/kalendarac.mo share/locale/ca/LC_MESSAGES/libakonadi-calendar6-serializer.mo share/locale/ca/LC_MESSAGES/libakonadi-calendar6.mo share/locale/ca@valencia/LC_MESSAGES/kalendarac.mo share/locale/ca@valencia/LC_MESSAGES/libakonadi-calendar6-serializer.mo share/locale/ca@valencia/LC_MESSAGES/libakonadi-calendar6.mo share/locale/cs/LC_MESSAGES/kalendarac.mo share/locale/cs/LC_MESSAGES/libakonadi-calendar6-serializer.mo share/locale/cs/LC_MESSAGES/libakonadi-calendar6.mo share/locale/da/LC_MESSAGES/kalendarac.mo share/locale/da/LC_MESSAGES/libakonadi-calendar6-serializer.mo share/locale/da/LC_MESSAGES/libakonadi-calendar6.mo share/locale/de/LC_MESSAGES/kalendarac.mo share/locale/de/LC_MESSAGES/libakonadi-calendar6-serializer.mo share/locale/de/LC_MESSAGES/libakonadi-calendar6.mo share/locale/el/LC_MESSAGES/kalendarac.mo share/locale/el/LC_MESSAGES/libakonadi-calendar6-serializer.mo share/locale/el/LC_MESSAGES/libakonadi-calendar6.mo share/locale/en_GB/LC_MESSAGES/kalendarac.mo share/locale/en_GB/LC_MESSAGES/libakonadi-calendar6-serializer.mo share/locale/en_GB/LC_MESSAGES/libakonadi-calendar6.mo share/locale/eo/LC_MESSAGES/kalendarac.mo share/locale/eo/LC_MESSAGES/libakonadi-calendar6-serializer.mo share/locale/eo/LC_MESSAGES/libakonadi-calendar6.mo share/locale/es/LC_MESSAGES/kalendarac.mo share/locale/es/LC_MESSAGES/libakonadi-calendar6-serializer.mo share/locale/es/LC_MESSAGES/libakonadi-calendar6.mo share/locale/et/LC_MESSAGES/libakonadi-calendar6-serializer.mo share/locale/et/LC_MESSAGES/libakonadi-calendar6.mo share/locale/eu/LC_MESSAGES/kalendarac.mo share/locale/eu/LC_MESSAGES/libakonadi-calendar6-serializer.mo share/locale/eu/LC_MESSAGES/libakonadi-calendar6.mo share/locale/fi/LC_MESSAGES/kalendarac.mo share/locale/fi/LC_MESSAGES/libakonadi-calendar6-serializer.mo share/locale/fi/LC_MESSAGES/libakonadi-calendar6.mo share/locale/fr/LC_MESSAGES/kalendarac.mo share/locale/fr/LC_MESSAGES/libakonadi-calendar6-serializer.mo share/locale/fr/LC_MESSAGES/libakonadi-calendar6.mo share/locale/ga/LC_MESSAGES/kalendarac.mo share/locale/ga/LC_MESSAGES/libakonadi-calendar6-serializer.mo share/locale/ga/LC_MESSAGES/libakonadi-calendar6.mo share/locale/gl/LC_MESSAGES/kalendarac.mo share/locale/gl/LC_MESSAGES/libakonadi-calendar6-serializer.mo share/locale/gl/LC_MESSAGES/libakonadi-calendar6.mo share/locale/he/LC_MESSAGES/kalendarac.mo share/locale/he/LC_MESSAGES/libakonadi-calendar6-serializer.mo share/locale/he/LC_MESSAGES/libakonadi-calendar6.mo share/locale/hi/LC_MESSAGES/kalendarac.mo share/locale/hi/LC_MESSAGES/libakonadi-calendar6-serializer.mo share/locale/hi/LC_MESSAGES/libakonadi-calendar6.mo share/locale/hu/LC_MESSAGES/kalendarac.mo share/locale/hu/LC_MESSAGES/libakonadi-calendar6-serializer.mo share/locale/hu/LC_MESSAGES/libakonadi-calendar6.mo share/locale/ia/LC_MESSAGES/kalendarac.mo share/locale/ia/LC_MESSAGES/libakonadi-calendar6-serializer.mo share/locale/ia/LC_MESSAGES/libakonadi-calendar6.mo share/locale/id/LC_MESSAGES/kalendarac.mo share/locale/id/LC_MESSAGES/libakonadi-calendar6-serializer.mo share/locale/id/LC_MESSAGES/libakonadi-calendar6.mo share/locale/is/LC_MESSAGES/kalendarac.mo share/locale/is/LC_MESSAGES/libakonadi-calendar6-serializer.mo share/locale/it/LC_MESSAGES/kalendarac.mo share/locale/it/LC_MESSAGES/libakonadi-calendar6-serializer.mo share/locale/it/LC_MESSAGES/libakonadi-calendar6.mo share/locale/ja/LC_MESSAGES/kalendarac.mo share/locale/ja/LC_MESSAGES/libakonadi-calendar6-serializer.mo share/locale/ja/LC_MESSAGES/libakonadi-calendar6.mo share/locale/ka/LC_MESSAGES/kalendarac.mo share/locale/ka/LC_MESSAGES/libakonadi-calendar6-serializer.mo share/locale/ka/LC_MESSAGES/libakonadi-calendar6.mo share/locale/kk/LC_MESSAGES/libakonadi-calendar6-serializer.mo share/locale/kk/LC_MESSAGES/libakonadi-calendar6.mo share/locale/km/LC_MESSAGES/libakonadi-calendar6-serializer.mo share/locale/km/LC_MESSAGES/libakonadi-calendar6.mo share/locale/ko/LC_MESSAGES/kalendarac.mo share/locale/ko/LC_MESSAGES/libakonadi-calendar6-serializer.mo share/locale/ko/LC_MESSAGES/libakonadi-calendar6.mo share/locale/lt/LC_MESSAGES/kalendarac.mo share/locale/lt/LC_MESSAGES/libakonadi-calendar6-serializer.mo share/locale/lt/LC_MESSAGES/libakonadi-calendar6.mo share/locale/lv/LC_MESSAGES/kalendarac.mo share/locale/lv/LC_MESSAGES/libakonadi-calendar6-serializer.mo share/locale/lv/LC_MESSAGES/libakonadi-calendar6.mo share/locale/mai/LC_MESSAGES/libakonadi-calendar6.mo share/locale/mr/LC_MESSAGES/libakonadi-calendar6-serializer.mo share/locale/mr/LC_MESSAGES/libakonadi-calendar6.mo share/locale/nb/LC_MESSAGES/libakonadi-calendar6-serializer.mo share/locale/nb/LC_MESSAGES/libakonadi-calendar6.mo share/locale/nds/LC_MESSAGES/libakonadi-calendar6-serializer.mo share/locale/nds/LC_MESSAGES/libakonadi-calendar6.mo share/locale/nl/LC_MESSAGES/kalendarac.mo share/locale/nl/LC_MESSAGES/libakonadi-calendar6-serializer.mo share/locale/nl/LC_MESSAGES/libakonadi-calendar6.mo share/locale/pa/LC_MESSAGES/libakonadi-calendar6-serializer.mo share/locale/pl/LC_MESSAGES/kalendarac.mo share/locale/pl/LC_MESSAGES/libakonadi-calendar6-serializer.mo share/locale/pl/LC_MESSAGES/libakonadi-calendar6.mo share/locale/pt/LC_MESSAGES/kalendarac.mo share/locale/pt/LC_MESSAGES/libakonadi-calendar6-serializer.mo share/locale/pt/LC_MESSAGES/libakonadi-calendar6.mo share/locale/pt_BR/LC_MESSAGES/kalendarac.mo share/locale/pt_BR/LC_MESSAGES/libakonadi-calendar6-serializer.mo share/locale/pt_BR/LC_MESSAGES/libakonadi-calendar6.mo share/locale/ro/LC_MESSAGES/libakonadi-calendar6-serializer.mo share/locale/ro/LC_MESSAGES/libakonadi-calendar6.mo share/locale/ru/LC_MESSAGES/kalendarac.mo share/locale/ru/LC_MESSAGES/libakonadi-calendar6-serializer.mo share/locale/ru/LC_MESSAGES/libakonadi-calendar6.mo share/locale/sa/LC_MESSAGES/kalendarac.mo share/locale/sa/LC_MESSAGES/libakonadi-calendar6-serializer.mo share/locale/sa/LC_MESSAGES/libakonadi-calendar6.mo share/locale/sk/LC_MESSAGES/kalendarac.mo share/locale/sk/LC_MESSAGES/libakonadi-calendar6-serializer.mo share/locale/sk/LC_MESSAGES/libakonadi-calendar6.mo share/locale/sl/LC_MESSAGES/kalendarac.mo share/locale/sl/LC_MESSAGES/libakonadi-calendar6-serializer.mo share/locale/sl/LC_MESSAGES/libakonadi-calendar6.mo +share/locale/sq/LC_MESSAGES/libakonadi-calendar6.mo share/locale/sr/LC_MESSAGES/libakonadi-calendar6-serializer.mo share/locale/sr/LC_MESSAGES/libakonadi-calendar6.mo share/locale/sr@ijekavian/LC_MESSAGES/libakonadi-calendar6-serializer.mo share/locale/sr@ijekavian/LC_MESSAGES/libakonadi-calendar6.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/libakonadi-calendar6-serializer.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/libakonadi-calendar6.mo share/locale/sr@latin/LC_MESSAGES/libakonadi-calendar6-serializer.mo share/locale/sr@latin/LC_MESSAGES/libakonadi-calendar6.mo share/locale/sv/LC_MESSAGES/kalendarac.mo share/locale/sv/LC_MESSAGES/libakonadi-calendar6-serializer.mo share/locale/sv/LC_MESSAGES/libakonadi-calendar6.mo share/locale/ta/LC_MESSAGES/kalendarac.mo share/locale/ta/LC_MESSAGES/libakonadi-calendar6-serializer.mo share/locale/ta/LC_MESSAGES/libakonadi-calendar6.mo share/locale/tr/LC_MESSAGES/kalendarac.mo share/locale/tr/LC_MESSAGES/libakonadi-calendar6-serializer.mo share/locale/tr/LC_MESSAGES/libakonadi-calendar6.mo share/locale/ug/LC_MESSAGES/libakonadi-calendar6-serializer.mo share/locale/ug/LC_MESSAGES/libakonadi-calendar6.mo share/locale/uk/LC_MESSAGES/kalendarac.mo share/locale/uk/LC_MESSAGES/libakonadi-calendar6-serializer.mo share/locale/uk/LC_MESSAGES/libakonadi-calendar6.mo share/locale/zh_CN/LC_MESSAGES/kalendarac.mo share/locale/zh_CN/LC_MESSAGES/libakonadi-calendar6-serializer.mo share/locale/zh_CN/LC_MESSAGES/libakonadi-calendar6.mo share/locale/zh_TW/LC_MESSAGES/kalendarac.mo share/locale/zh_TW/LC_MESSAGES/libakonadi-calendar6-serializer.mo share/locale/zh_TW/LC_MESSAGES/libakonadi-calendar6.mo share/qlogging-categories6/akonadi-calendar.categories share/qlogging-categories6/akonadi-calendar.renamecategories share/qlogging-categories6/org_kde_kalendarac.categories diff --git a/net/akonadi-contacts/distinfo b/net/akonadi-contacts/distinfo index ee5afb70934d..32c232b9560e 100644 --- a/net/akonadi-contacts/distinfo +++ b/net/akonadi-contacts/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1772542019 -SHA256 (KDE/release-service/25.12.3/akonadi-contacts-25.12.3.tar.xz) = 575bb419a6bfde2bb3eaceda9636878492f8601fe87c767721f9cea5c250898f -SIZE (KDE/release-service/25.12.3/akonadi-contacts-25.12.3.tar.xz) = 442032 +TIMESTAMP = 1776248336 +SHA256 (KDE/release-service/26.04.0/akonadi-contacts-26.04.0.tar.xz) = 97a8d52caa3c101fbb854fe71e016b27e1746404b0134b84ede08f6b0b1e1a85 +SIZE (KDE/release-service/26.04.0/akonadi-contacts-26.04.0.tar.xz) = 445396 diff --git a/net/akonadi-mime/distinfo b/net/akonadi-mime/distinfo index 506af061e1cd..ef812acb9182 100644 --- a/net/akonadi-mime/distinfo +++ b/net/akonadi-mime/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1772542021 -SHA256 (KDE/release-service/25.12.3/akonadi-mime-25.12.3.tar.xz) = 15e4c7ff51fa3f3d9373b3f8fc9fb87a9ddddb260103161e08c249ce8dbfbfa0 -SIZE (KDE/release-service/25.12.3/akonadi-mime-25.12.3.tar.xz) = 182512 +TIMESTAMP = 1776248337 +SHA256 (KDE/release-service/26.04.0/akonadi-mime-26.04.0.tar.xz) = 11eb9c3482662c1fb1df1d8b4a9d1d96f6f04a65208b5ef71e37cb18a41f297a +SIZE (KDE/release-service/26.04.0/akonadi-mime-26.04.0.tar.xz) = 185328 diff --git a/net/akonadi-search/distinfo b/net/akonadi-search/distinfo index 0bfbb3482c4c..0b9bd64d4814 100644 --- a/net/akonadi-search/distinfo +++ b/net/akonadi-search/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1772542022 -SHA256 (KDE/release-service/25.12.3/akonadi-search-25.12.3.tar.xz) = 75eca6c38ab9db5882a6a72af0f2fe0f96d94864198b4a4cf89d774807121d09 -SIZE (KDE/release-service/25.12.3/akonadi-search-25.12.3.tar.xz) = 115956 +TIMESTAMP = 1776248339 +SHA256 (KDE/release-service/26.04.0/akonadi-search-26.04.0.tar.xz) = 14b98b08c9515ffc886d30d0d950a77e607eba508a73ce4f577bab314dece132 +SIZE (KDE/release-service/26.04.0/akonadi-search-26.04.0.tar.xz) = 119896 diff --git a/net/akonadi-search/pkg-plist b/net/akonadi-search/pkg-plist index 4fbca0248e57..e4897f31b2fd 100644 --- a/net/akonadi-search/pkg-plist +++ b/net/akonadi-search/pkg-plist @@ -1,107 +1,106 @@ bin/akonadi_html_to_text bin/akonadi_indexing_agent include/KPim6/AkonadiSearch/Core/Query include/KPim6/AkonadiSearch/Core/ResultIterator include/KPim6/AkonadiSearch/Core/SearchStore include/KPim6/AkonadiSearch/Core/Term include/KPim6/AkonadiSearch/Debug/akonadisearchdebugdialog.h include/KPim6/AkonadiSearch/Debug/akonadisearchdebugsearchpathcombobox.h include/KPim6/AkonadiSearch/Debug/search_debug_export.h include/KPim6/AkonadiSearch/PIM/collectionquery.h include/KPim6/AkonadiSearch/PIM/contactcompleter.h include/KPim6/AkonadiSearch/PIM/contactquery.h include/KPim6/AkonadiSearch/PIM/emailquery.h include/KPim6/AkonadiSearch/PIM/indexeditems.h include/KPim6/AkonadiSearch/PIM/notequery.h include/KPim6/AkonadiSearch/PIM/query.h include/KPim6/AkonadiSearch/PIM/resultiterator.h include/KPim6/AkonadiSearch/PIM/search_pim_export.h include/KPim6/AkonadiSearch/Xapian/search_xapian_export.h include/KPim6/AkonadiSearch/Xapian/xapiandatabase.h include/KPim6/AkonadiSearch/Xapian/xapiandocument.h include/KPim6/AkonadiSearch/Xapian/xapianqueryparser.h include/KPim6/AkonadiSearch/Xapian/xapiansearchstore.h include/KPim6/AkonadiSearch/Xapian/xapiantermgenerator.h include/KPim6/AkonadiSearch/akonadi_search_version.h include/KPim6/AkonadiSearch/core/query.h include/KPim6/AkonadiSearch/core/resultiterator.h include/KPim6/AkonadiSearch/core/searchstore.h include/KPim6/AkonadiSearch/core/term.h include/KPim6/AkonadiSearch/search_core_export.h lib/cmake/KPim6AkonadiSearch/KPim6AkonadiSearchConfig.cmake lib/cmake/KPim6AkonadiSearch/KPim6AkonadiSearchConfigVersion.cmake lib/cmake/KPim6AkonadiSearch/KPim6AkonadiSearchTargets-%%CMAKE_BUILD_TYPE%%.cmake lib/cmake/KPim6AkonadiSearch/KPim6AkonadiSearchTargets.cmake lib/libKPim6AkonadiSearchCore.so lib/libKPim6AkonadiSearchCore.so.6 lib/libKPim6AkonadiSearchCore.so.%%KDE_APPLICATIONS_SHLIB_VER%% lib/libKPim6AkonadiSearchDebug.so lib/libKPim6AkonadiSearchDebug.so.6 lib/libKPim6AkonadiSearchDebug.so.%%KDE_APPLICATIONS_SHLIB_VER%% lib/libKPim6AkonadiSearchPIM.so lib/libKPim6AkonadiSearchPIM.so.6 lib/libKPim6AkonadiSearchPIM.so.%%KDE_APPLICATIONS_SHLIB_VER%% lib/libKPim6AkonadiSearchXapian.so lib/libKPim6AkonadiSearchXapian.so.6 lib/libKPim6AkonadiSearchXapian.so.%%KDE_APPLICATIONS_SHLIB_VER%% %%QT_PLUGINDIR%%/kf6/krunner/kcms/kcm_krunner_pimcontacts.so %%QT_PLUGINDIR%%/kf6/krunner/krunner_pimcontacts.so %%QT_PLUGINDIR%%/pim6/akonadi/akonadi_search_plugin.so %%QT_PLUGINDIR%%/pim6/akonadi/calendarsearchstore.so %%QT_PLUGINDIR%%/pim6/akonadi/contactsearchstore.so %%QT_PLUGINDIR%%/pim6/akonadi/emailsearchstore.so -%%QT_PLUGINDIR%%/pim6/akonadi/notesearchstore.so share/akonadi/agents/akonadiindexingagent.desktop share/locale/ar/LC_MESSAGES/akonadi_search.mo share/locale/ast/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/eo/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/ga/LC_MESSAGES/akonadi_search.mo share/locale/gl/LC_MESSAGES/akonadi_search.mo share/locale/he/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/id/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/lv/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/sa/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-categories6/akonadi-search.categories share/qlogging-categories6/akonadi-search.renamecategories diff --git a/net/alligator/distinfo b/net/alligator/distinfo index a4dfb58152e0..fa3b1ac8c6a9 100644 --- a/net/alligator/distinfo +++ b/net/alligator/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1772542022 -SHA256 (KDE/release-service/25.12.3/alligator-25.12.3.tar.xz) = dc3b82fd754b55ceef0042ed6232f3b4be734daca7092ec3542fcc0255c2769b -SIZE (KDE/release-service/25.12.3/alligator-25.12.3.tar.xz) = 246552 +TIMESTAMP = 1776248339 +SHA256 (KDE/release-service/26.04.0/alligator-26.04.0.tar.xz) = 9c757421c0c6b10f989dfb60c184e1da08fa36f91d09c6dcd40e78e7dce24edf +SIZE (KDE/release-service/26.04.0/alligator-26.04.0.tar.xz) = 250136 diff --git a/net/calendarsupport/distinfo b/net/calendarsupport/distinfo index 0f5928c56fd3..cedaebdd476b 100644 --- a/net/calendarsupport/distinfo +++ b/net/calendarsupport/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1772542024 -SHA256 (KDE/release-service/25.12.3/calendarsupport-25.12.3.tar.xz) = 455785712a32f0dba7947a314eb99065d902ac6c432947e9e699a44ca18c70a1 -SIZE (KDE/release-service/25.12.3/calendarsupport-25.12.3.tar.xz) = 991136 +TIMESTAMP = 1776248341 +SHA256 (KDE/release-service/26.04.0/calendarsupport-26.04.0.tar.xz) = 29becf51fd2fbbd45129a8cf708269ea4a498df5db5dd0079bcbf0b2a5abcea5 +SIZE (KDE/release-service/26.04.0/calendarsupport-26.04.0.tar.xz) = 994704 diff --git a/net/calendarsupport/pkg-plist b/net/calendarsupport/pkg-plist index 99a0a68e161d..4a18389956e4 100644 --- a/net/calendarsupport/pkg-plist +++ b/net/calendarsupport/pkg-plist @@ -1,138 +1,134 @@ include/KPim6/CalendarSupport/CalendarSupport/ArchiveDialog -include/KPim6/CalendarSupport/CalendarSupport/CalPrintDefaultPlugins -include/KPim6/CalendarSupport/CalendarSupport/CalPrintPluginBase include/KPim6/CalendarSupport/CalendarSupport/CalPrinter include/KPim6/CalendarSupport/CalendarSupport/CalendarSingleton include/KPim6/CalendarSupport/CalendarSupport/CategoryHierarchyReader include/KPim6/CalendarSupport/CalendarSupport/CellItem include/KPim6/CalendarSupport/CalendarSupport/CollectionSelection include/KPim6/CalendarSupport/CalendarSupport/EventArchiver include/KPim6/CalendarSupport/CalendarSupport/FreeBusyCalendar include/KPim6/CalendarSupport/CalendarSupport/FreeBusyItem include/KPim6/CalendarSupport/CalendarSupport/FreeBusyItemModel include/KPim6/CalendarSupport/CalendarSupport/FreePeriodModel include/KPim6/CalendarSupport/CalendarSupport/IdentityManager include/KPim6/CalendarSupport/CalendarSupport/IncidenceViewer include/KPim6/CalendarSupport/CalendarSupport/KCalPrefs include/KPim6/CalendarSupport/CalendarSupport/MessageWidget include/KPim6/CalendarSupport/CalendarSupport/PrintPlugin include/KPim6/CalendarSupport/CalendarSupport/UriHandler include/KPim6/CalendarSupport/CalendarSupport/Utils include/KPim6/CalendarSupport/calendarsupport/archivedialog.h include/KPim6/CalendarSupport/calendarsupport/calendarsingleton.h include/KPim6/CalendarSupport/calendarsupport/calendarsupport_export.h -include/KPim6/CalendarSupport/calendarsupport/calprintdefaultplugins.h include/KPim6/CalendarSupport/calendarsupport/calprinter.h -include/KPim6/CalendarSupport/calendarsupport/calprintpluginbase.h include/KPim6/CalendarSupport/calendarsupport/categoryhierarchyreader.h include/KPim6/CalendarSupport/calendarsupport/cellitem.h include/KPim6/CalendarSupport/calendarsupport/collectionselection.h include/KPim6/CalendarSupport/calendarsupport/eventarchiver.h include/KPim6/CalendarSupport/calendarsupport/freebusycalendar.h include/KPim6/CalendarSupport/calendarsupport/freebusyitem.h include/KPim6/CalendarSupport/calendarsupport/freebusyitemmodel.h include/KPim6/CalendarSupport/calendarsupport/freeperiodmodel.h include/KPim6/CalendarSupport/calendarsupport/identitymanager.h include/KPim6/CalendarSupport/calendarsupport/incidenceviewer.h include/KPim6/CalendarSupport/calendarsupport/kcalprefs.h include/KPim6/CalendarSupport/calendarsupport/kcalprefs_base.h include/KPim6/CalendarSupport/calendarsupport/messagewidget.h include/KPim6/CalendarSupport/calendarsupport/printplugin.h include/KPim6/CalendarSupport/calendarsupport/ui_calprintdayconfig_base.h include/KPim6/CalendarSupport/calendarsupport/ui_calprintincidenceconfig_base.h include/KPim6/CalendarSupport/calendarsupport/ui_calprintmonthconfig_base.h include/KPim6/CalendarSupport/calendarsupport/ui_calprinttodoconfig_base.h include/KPim6/CalendarSupport/calendarsupport/ui_calprintweekconfig_base.h include/KPim6/CalendarSupport/calendarsupport/urihandler.h include/KPim6/CalendarSupport/calendarsupport/utils.h include/KPim6/CalendarSupport/calendarsupport_version.h lib/cmake/KPim6CalendarSupport/KPim6CalendarSupportConfig.cmake lib/cmake/KPim6CalendarSupport/KPim6CalendarSupportConfigVersion.cmake lib/cmake/KPim6CalendarSupport/KPim6CalendarSupportTargets-%%CMAKE_BUILD_TYPE%%.cmake lib/cmake/KPim6CalendarSupport/KPim6CalendarSupportTargets.cmake lib/libKPim6CalendarSupport.so lib/libKPim6CalendarSupport.so.6 lib/libKPim6CalendarSupport.so.%%KDE_APPLICATIONS_SHLIB_VER%% share/locale/af/LC_MESSAGES/calendarsupport6.mo share/locale/ar/LC_MESSAGES/calendarsupport6.mo share/locale/ast/LC_MESSAGES/calendarsupport6.mo share/locale/az/LC_MESSAGES/calendarsupport6.mo share/locale/be/LC_MESSAGES/calendarsupport6.mo share/locale/bg/LC_MESSAGES/calendarsupport6.mo share/locale/br/LC_MESSAGES/calendarsupport6.mo share/locale/bs/LC_MESSAGES/calendarsupport6.mo share/locale/ca/LC_MESSAGES/calendarsupport6.mo share/locale/ca@valencia/LC_MESSAGES/calendarsupport6.mo share/locale/cs/LC_MESSAGES/calendarsupport6.mo share/locale/cy/LC_MESSAGES/calendarsupport6.mo share/locale/da/LC_MESSAGES/calendarsupport6.mo share/locale/de/LC_MESSAGES/calendarsupport6.mo share/locale/el/LC_MESSAGES/calendarsupport6.mo share/locale/en_GB/LC_MESSAGES/calendarsupport6.mo share/locale/eo/LC_MESSAGES/calendarsupport6.mo share/locale/es/LC_MESSAGES/calendarsupport6.mo share/locale/et/LC_MESSAGES/calendarsupport6.mo share/locale/eu/LC_MESSAGES/calendarsupport6.mo share/locale/fa/LC_MESSAGES/calendarsupport6.mo share/locale/fi/LC_MESSAGES/calendarsupport6.mo share/locale/fr/LC_MESSAGES/calendarsupport6.mo share/locale/fy/LC_MESSAGES/calendarsupport6.mo share/locale/ga/LC_MESSAGES/calendarsupport6.mo share/locale/gl/LC_MESSAGES/calendarsupport6.mo share/locale/he/LC_MESSAGES/calendarsupport6.mo share/locale/hi/LC_MESSAGES/calendarsupport6.mo share/locale/hne/LC_MESSAGES/calendarsupport6.mo share/locale/hr/LC_MESSAGES/calendarsupport6.mo share/locale/hsb/LC_MESSAGES/calendarsupport6.mo share/locale/hu/LC_MESSAGES/calendarsupport6.mo share/locale/ia/LC_MESSAGES/calendarsupport6.mo share/locale/id/LC_MESSAGES/calendarsupport6.mo share/locale/is/LC_MESSAGES/calendarsupport6.mo share/locale/it/LC_MESSAGES/calendarsupport6.mo share/locale/ja/LC_MESSAGES/calendarsupport6.mo share/locale/ka/LC_MESSAGES/calendarsupport6.mo share/locale/kk/LC_MESSAGES/calendarsupport6.mo share/locale/km/LC_MESSAGES/calendarsupport6.mo share/locale/ko/LC_MESSAGES/calendarsupport6.mo share/locale/lt/LC_MESSAGES/calendarsupport6.mo share/locale/lv/LC_MESSAGES/calendarsupport6.mo share/locale/mai/LC_MESSAGES/calendarsupport6.mo share/locale/mk/LC_MESSAGES/calendarsupport6.mo share/locale/mr/LC_MESSAGES/calendarsupport6.mo share/locale/ms/LC_MESSAGES/calendarsupport6.mo share/locale/nb/LC_MESSAGES/calendarsupport6.mo share/locale/nds/LC_MESSAGES/calendarsupport6.mo share/locale/ne/LC_MESSAGES/calendarsupport6.mo share/locale/nl/LC_MESSAGES/calendarsupport6.mo share/locale/nn/LC_MESSAGES/calendarsupport6.mo share/locale/pa/LC_MESSAGES/calendarsupport6.mo share/locale/pl/LC_MESSAGES/calendarsupport6.mo share/locale/pt/LC_MESSAGES/calendarsupport6.mo share/locale/pt_BR/LC_MESSAGES/calendarsupport6.mo share/locale/ro/LC_MESSAGES/calendarsupport6.mo share/locale/ru/LC_MESSAGES/calendarsupport6.mo share/locale/sa/LC_MESSAGES/calendarsupport6.mo share/locale/se/LC_MESSAGES/calendarsupport6.mo share/locale/si/LC_MESSAGES/calendarsupport6.mo share/locale/sk/LC_MESSAGES/calendarsupport6.mo share/locale/sl/LC_MESSAGES/calendarsupport6.mo share/locale/sq/LC_MESSAGES/calendarsupport6.mo share/locale/sr/LC_MESSAGES/calendarsupport6.mo share/locale/sr@ijekavian/LC_MESSAGES/calendarsupport6.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/calendarsupport6.mo share/locale/sr@latin/LC_MESSAGES/calendarsupport6.mo share/locale/sv/LC_MESSAGES/calendarsupport6.mo share/locale/ta/LC_MESSAGES/calendarsupport6.mo share/locale/tg/LC_MESSAGES/calendarsupport6.mo share/locale/th/LC_MESSAGES/calendarsupport6.mo share/locale/tr/LC_MESSAGES/calendarsupport6.mo share/locale/ug/LC_MESSAGES/calendarsupport6.mo share/locale/uk/LC_MESSAGES/calendarsupport6.mo share/locale/uz/LC_MESSAGES/calendarsupport6.mo share/locale/uz@cyrillic/LC_MESSAGES/calendarsupport6.mo share/locale/wa/LC_MESSAGES/calendarsupport6.mo share/locale/xh/LC_MESSAGES/calendarsupport6.mo share/locale/zh_CN/LC_MESSAGES/calendarsupport6.mo share/locale/zh_TW/LC_MESSAGES/calendarsupport6.mo share/qlogging-categories6/calendarsupport.categories share/qlogging-categories6/calendarsupport.renamecategories diff --git a/net/eventviews/distinfo b/net/eventviews/distinfo index 0ab13d606276..5171b97291bf 100644 --- a/net/eventviews/distinfo +++ b/net/eventviews/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1772542025 -SHA256 (KDE/release-service/25.12.3/eventviews-25.12.3.tar.xz) = c2e776f55e485b346d256a9f21fd244af2b75e18c489ec811e334050cccbca6a -SIZE (KDE/release-service/25.12.3/eventviews-25.12.3.tar.xz) = 536512 +TIMESTAMP = 1776248343 +SHA256 (KDE/release-service/26.04.0/eventviews-26.04.0.tar.xz) = 8032a3c08e75a73ec3082d3524d208f03a56657e687affc11284b29c72bb88b0 +SIZE (KDE/release-service/26.04.0/eventviews-26.04.0.tar.xz) = 544628 diff --git a/net/incidenceeditor/distinfo b/net/incidenceeditor/distinfo index 4886c88027d2..9616ea3061d5 100644 --- a/net/incidenceeditor/distinfo +++ b/net/incidenceeditor/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1772542027 -SHA256 (KDE/release-service/25.12.3/incidenceeditor-25.12.3.tar.xz) = c4ab1c0b44e68be4c3c287c2a5b0b41aaaf6ba746202694101ab4a50f5d8977a -SIZE (KDE/release-service/25.12.3/incidenceeditor-25.12.3.tar.xz) = 607884 +TIMESTAMP = 1776248344 +SHA256 (KDE/release-service/26.04.0/incidenceeditor-26.04.0.tar.xz) = 68e1d3c70244fb040725a684db59fb90aef7672c460f96db6a3c54b3bfc87a72 +SIZE (KDE/release-service/26.04.0/incidenceeditor-26.04.0.tar.xz) = 611048 diff --git a/net/kcalutils/distinfo b/net/kcalutils/distinfo index 89ad70b2fdd4..1bb51db565a4 100644 --- a/net/kcalutils/distinfo +++ b/net/kcalutils/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1772542028 -SHA256 (KDE/release-service/25.12.3/kcalutils-25.12.3.tar.xz) = 8d54dfef43b7929c9d9b52ba2b6234f94537923e4ff94984611bf7489502a234 -SIZE (KDE/release-service/25.12.3/kcalutils-25.12.3.tar.xz) = 368580 +TIMESTAMP = 1776248346 +SHA256 (KDE/release-service/26.04.0/kcalutils-26.04.0.tar.xz) = 83a0e34c753134cbbde755ff8b3b62657d7800e868b56009a78d3e0b09e80a77 +SIZE (KDE/release-service/26.04.0/kcalutils-26.04.0.tar.xz) = 371388 diff --git a/net/kdenetwork-filesharing/distinfo b/net/kdenetwork-filesharing/distinfo index 6edfb75ea41c..329082347f82 100644 --- a/net/kdenetwork-filesharing/distinfo +++ b/net/kdenetwork-filesharing/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1772542030 -SHA256 (KDE/release-service/25.12.3/kdenetwork-filesharing-25.12.3.tar.xz) = 269de47fccf26ce1c989a4b66d432c4306913d1a814199c5ffce533c67305696 -SIZE (KDE/release-service/25.12.3/kdenetwork-filesharing-25.12.3.tar.xz) = 518428 +TIMESTAMP = 1776248348 +SHA256 (KDE/release-service/26.04.0/kdenetwork-filesharing-26.04.0.tar.xz) = c53fe19f37153d14fdf84181c4edffe368d4dc2196cce510c88ad8ebe71f9b01 +SIZE (KDE/release-service/26.04.0/kdenetwork-filesharing-26.04.0.tar.xz) = 531972 diff --git a/net/kdenetwork-filesharing/pkg-plist b/net/kdenetwork-filesharing/pkg-plist index 7f46cb49d3cc..d7cc4efa82a1 100644 --- a/net/kdenetwork-filesharing/pkg-plist +++ b/net/kdenetwork-filesharing/pkg-plist @@ -1,84 +1,84 @@ -lib/libexec/kf6/kauth/authhelper +lib/libexec/kf6/kauth/sambausershareplugin_authhelper %%QT_PLUGINDIR%%/kf6/propertiesdialog/SambaAcl.so %%QT_PLUGINDIR%%/kf6/propertiesdialog/sambausershareplugin.so share/dbus-1/system-services/org.kde.filesharing.samba.service share/dbus-1/system.d/org.kde.filesharing.samba.conf share/locale/ar/LC_MESSAGES/kfileshare.mo share/locale/ast/LC_MESSAGES/kfileshare.mo share/locale/az/LC_MESSAGES/kfileshare.mo share/locale/be/LC_MESSAGES/kfileshare.mo share/locale/bg/LC_MESSAGES/kfileshare.mo share/locale/br/LC_MESSAGES/kfileshare.mo share/locale/bs/LC_MESSAGES/kfileshare.mo share/locale/ca/LC_MESSAGES/kfileshare.mo share/locale/ca@valencia/LC_MESSAGES/kfileshare.mo share/locale/cs/LC_MESSAGES/kfileshare.mo share/locale/cy/LC_MESSAGES/kfileshare.mo share/locale/da/LC_MESSAGES/kfileshare.mo share/locale/de/LC_MESSAGES/kfileshare.mo share/locale/el/LC_MESSAGES/kfileshare.mo share/locale/en_GB/LC_MESSAGES/kfileshare.mo share/locale/eo/LC_MESSAGES/kfileshare.mo share/locale/es/LC_MESSAGES/kfileshare.mo share/locale/et/LC_MESSAGES/kfileshare.mo share/locale/eu/LC_MESSAGES/kfileshare.mo share/locale/fa/LC_MESSAGES/kfileshare.mo share/locale/fi/LC_MESSAGES/kfileshare.mo share/locale/fr/LC_MESSAGES/kfileshare.mo share/locale/ga/LC_MESSAGES/kfileshare.mo share/locale/gl/LC_MESSAGES/kfileshare.mo share/locale/he/LC_MESSAGES/kfileshare.mo share/locale/hi/LC_MESSAGES/kfileshare.mo share/locale/hne/LC_MESSAGES/kfileshare.mo share/locale/hr/LC_MESSAGES/kfileshare.mo share/locale/hsb/LC_MESSAGES/kfileshare.mo share/locale/hu/LC_MESSAGES/kfileshare.mo share/locale/ia/LC_MESSAGES/kfileshare.mo share/locale/id/LC_MESSAGES/kfileshare.mo share/locale/is/LC_MESSAGES/kfileshare.mo share/locale/it/LC_MESSAGES/kfileshare.mo share/locale/ja/LC_MESSAGES/kfileshare.mo share/locale/ka/LC_MESSAGES/kfileshare.mo share/locale/kk/LC_MESSAGES/kfileshare.mo share/locale/km/LC_MESSAGES/kfileshare.mo share/locale/ko/LC_MESSAGES/kfileshare.mo share/locale/lt/LC_MESSAGES/kfileshare.mo share/locale/lv/LC_MESSAGES/kfileshare.mo share/locale/mai/LC_MESSAGES/kfileshare.mo share/locale/mk/LC_MESSAGES/kfileshare.mo share/locale/mr/LC_MESSAGES/kfileshare.mo share/locale/ms/LC_MESSAGES/kfileshare.mo share/locale/nb/LC_MESSAGES/kfileshare.mo share/locale/nds/LC_MESSAGES/kfileshare.mo share/locale/ne/LC_MESSAGES/kfileshare.mo share/locale/nl/LC_MESSAGES/kfileshare.mo share/locale/nn/LC_MESSAGES/kfileshare.mo share/locale/oc/LC_MESSAGES/kfileshare.mo share/locale/pa/LC_MESSAGES/kfileshare.mo share/locale/pl/LC_MESSAGES/kfileshare.mo share/locale/pt/LC_MESSAGES/kfileshare.mo share/locale/pt_BR/LC_MESSAGES/kfileshare.mo share/locale/ro/LC_MESSAGES/kfileshare.mo share/locale/ru/LC_MESSAGES/kfileshare.mo share/locale/sa/LC_MESSAGES/kfileshare.mo share/locale/se/LC_MESSAGES/kfileshare.mo share/locale/sk/LC_MESSAGES/kfileshare.mo share/locale/sl/LC_MESSAGES/kfileshare.mo share/locale/sq/LC_MESSAGES/kfileshare.mo share/locale/sr/LC_MESSAGES/kfileshare.mo share/locale/sr@ijekavian/LC_MESSAGES/kfileshare.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kfileshare.mo share/locale/sr@latin/LC_MESSAGES/kfileshare.mo share/locale/sv/LC_MESSAGES/kfileshare.mo share/locale/ta/LC_MESSAGES/kfileshare.mo share/locale/tg/LC_MESSAGES/kfileshare.mo share/locale/th/LC_MESSAGES/kfileshare.mo share/locale/tr/LC_MESSAGES/kfileshare.mo share/locale/ug/LC_MESSAGES/kfileshare.mo share/locale/uk/LC_MESSAGES/kfileshare.mo share/locale/vi/LC_MESSAGES/kfileshare.mo share/locale/zh_CN/LC_MESSAGES/kfileshare.mo share/locale/zh_HK/LC_MESSAGES/kfileshare.mo share/locale/zh_TW/LC_MESSAGES/kfileshare.mo share/metainfo/org.kde.kdenetwork-filesharing.metainfo.xml share/polkit-1/actions/org.kde.filesharing.samba.policy diff --git a/net/kget/distinfo b/net/kget/distinfo index 3da47cb5034a..cda18afbdd5a 100644 --- a/net/kget/distinfo +++ b/net/kget/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1772542031 -SHA256 (KDE/release-service/25.12.3/kget-25.12.3.tar.xz) = a82873a7dffc52825c12c043e93b3be1326176c276e98c735d5831ff8ea1b0bb -SIZE (KDE/release-service/25.12.3/kget-25.12.3.tar.xz) = 4850572 +TIMESTAMP = 1776248349 +SHA256 (KDE/release-service/26.04.0/kget-26.04.0.tar.xz) = 3cc8d8e63f1ce6685990e26317bb77f69d7ae93eb261e94553af11caf05c8ef2 +SIZE (KDE/release-service/26.04.0/kget-26.04.0.tar.xz) = 4851124 diff --git a/net/kidentitymanagement/distinfo b/net/kidentitymanagement/distinfo index ea7d5718c8cb..010e90d618bd 100644 --- a/net/kidentitymanagement/distinfo +++ b/net/kidentitymanagement/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1772542033 -SHA256 (KDE/release-service/25.12.3/kidentitymanagement-25.12.3.tar.xz) = 18b24c23bd6fdb5e617b0cd7c7b2ce1da6ffb566e309c796176691c633d49e87 -SIZE (KDE/release-service/25.12.3/kidentitymanagement-25.12.3.tar.xz) = 200688 +TIMESTAMP = 1776248351 +SHA256 (KDE/release-service/26.04.0/kidentitymanagement-26.04.0.tar.xz) = ae77a285c4bb2444088ba36b25b8df6d6b356d55521be768203025da5848b559 +SIZE (KDE/release-service/26.04.0/kidentitymanagement-26.04.0.tar.xz) = 205352 diff --git a/net/kimap/distinfo b/net/kimap/distinfo index 7d7ebca484f1..d69fbdf8f1b2 100644 --- a/net/kimap/distinfo +++ b/net/kimap/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1772542034 -SHA256 (KDE/release-service/25.12.3/kimap-25.12.3.tar.xz) = 96303168f2bf97905e68bfbc93f7efba9a93a9331eca53294557d3ef3f56678a -SIZE (KDE/release-service/25.12.3/kimap-25.12.3.tar.xz) = 136244 +TIMESTAMP = 1776248352 +SHA256 (KDE/release-service/26.04.0/kimap-26.04.0.tar.xz) = d445daeedb378481a9ee4cfd65524b4c2f36c9710a65e27f42ddc325ba1fdc71 +SIZE (KDE/release-service/26.04.0/kimap-26.04.0.tar.xz) = 134676 diff --git a/net/kio-gdrive/distinfo b/net/kio-gdrive/distinfo index 4626c0cc9e14..0bc01e32e2b2 100644 --- a/net/kio-gdrive/distinfo +++ b/net/kio-gdrive/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1772542035 -SHA256 (KDE/release-service/25.12.3/kio-gdrive-25.12.3.tar.xz) = d1035fa5abc0e9c46efce592863c147c86c3c41bdbbef02f38f5b801b37895d2 -SIZE (KDE/release-service/25.12.3/kio-gdrive-25.12.3.tar.xz) = 84168 +TIMESTAMP = 1776248353 +SHA256 (KDE/release-service/26.04.0/kio-gdrive-26.04.0.tar.xz) = 4e41302539182e4bca482eb1bd93b2f15315e2a39d6ff0844a50a07098c541aa +SIZE (KDE/release-service/26.04.0/kio-gdrive-26.04.0.tar.xz) = 84280 diff --git a/net/kio-zeroconf/distinfo b/net/kio-zeroconf/distinfo index 8dd3ae5c25a6..496569260239 100644 --- a/net/kio-zeroconf/distinfo +++ b/net/kio-zeroconf/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1772542036 -SHA256 (KDE/release-service/25.12.3/kio-zeroconf-25.12.3.tar.xz) = 0b21379d71ebc41cf454d56849feaf5b19e851d796cffbb0e2d9d4b362860a5a -SIZE (KDE/release-service/25.12.3/kio-zeroconf-25.12.3.tar.xz) = 45488 +TIMESTAMP = 1776248354 +SHA256 (KDE/release-service/26.04.0/kio-zeroconf-26.04.0.tar.xz) = db2e089f15883e33f4cfa971cfe232b0ee2f4f0505b0a276f867d3a44fe84ae1 +SIZE (KDE/release-service/26.04.0/kio-zeroconf-26.04.0.tar.xz) = 45520 diff --git a/net/kitinerary/distinfo b/net/kitinerary/distinfo index 6ca3f872cb75..6833173745cc 100644 --- a/net/kitinerary/distinfo +++ b/net/kitinerary/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1772542037 -SHA256 (KDE/release-service/25.12.3/kitinerary-25.12.3.tar.xz) = dd8374be2e4c488902f6c0b4b9fd12ad7f808de23b7df4561ef30b3f79b44d13 -SIZE (KDE/release-service/25.12.3/kitinerary-25.12.3.tar.xz) = 2177352 +TIMESTAMP = 1776248356 +SHA256 (KDE/release-service/26.04.0/kitinerary-26.04.0.tar.xz) = 75a310debea448774265e312a71b5f3043d4e52d6f6f88a75aa4740bf3446f05 +SIZE (KDE/release-service/26.04.0/kitinerary-26.04.0.tar.xz) = 2178828 diff --git a/net/kldap/distinfo b/net/kldap/distinfo index ffe90a17db5b..7a69b3c22bd7 100644 --- a/net/kldap/distinfo +++ b/net/kldap/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1772542039 -SHA256 (KDE/release-service/25.12.3/kldap-25.12.3.tar.xz) = 496cabade483caaea19f77cfa63047c3c0a2ee4dfc9bfe2e810dcffcc08af155 -SIZE (KDE/release-service/25.12.3/kldap-25.12.3.tar.xz) = 193976 +TIMESTAMP = 1776248358 +SHA256 (KDE/release-service/26.04.0/kldap-26.04.0.tar.xz) = 4aee62437b1103fdaa53c78c54292f3e1a45ef368b15bacadd82e2ee3ba5bbe3 +SIZE (KDE/release-service/26.04.0/kldap-26.04.0.tar.xz) = 198060 diff --git a/net/kmailtransport/distinfo b/net/kmailtransport/distinfo index 13fc91e720d5..306ecb5a2bd3 100644 --- a/net/kmailtransport/distinfo +++ b/net/kmailtransport/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1772542040 -SHA256 (KDE/release-service/25.12.3/kmailtransport-25.12.3.tar.xz) = f0c03316437f81f15a17ef31fe82884d816d2bace134a0aa45dc8bb0741eb501 -SIZE (KDE/release-service/25.12.3/kmailtransport-25.12.3.tar.xz) = 193592 +TIMESTAMP = 1776248360 +SHA256 (KDE/release-service/26.04.0/kmailtransport-26.04.0.tar.xz) = 82f603b0f0ffa7b4c62863dc0333a2bd9dcc63b7e312b421a805e0d5d230f577 +SIZE (KDE/release-service/26.04.0/kmailtransport-26.04.0.tar.xz) = 195820 diff --git a/net/kmbox/distinfo b/net/kmbox/distinfo index d261aeabed4e..287f79eca1d8 100644 --- a/net/kmbox/distinfo +++ b/net/kmbox/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1772542042 -SHA256 (KDE/release-service/25.12.3/kmbox-25.12.3.tar.xz) = 088e88b85686374da855215351e0e5248464921c8b546531d91b8dcef952ff93 -SIZE (KDE/release-service/25.12.3/kmbox-25.12.3.tar.xz) = 31600 +TIMESTAMP = 1776248361 +SHA256 (KDE/release-service/26.04.0/kmbox-26.04.0.tar.xz) = 314e7af47da88d371b01c7c1e3157ae13ffc6200b6f822665bbe0c7a3d2558ee +SIZE (KDE/release-service/26.04.0/kmbox-26.04.0.tar.xz) = 33924 diff --git a/net/kmime/distinfo b/net/kmime/distinfo index 8b56d526fa57..b12e4350b592 100644 --- a/net/kmime/distinfo +++ b/net/kmime/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1772542043 -SHA256 (KDE/release-service/25.12.3/kmime-25.12.3.tar.xz) = fce3c603cac3fec9a3f0e101c49785c32ace07b8f60b52739b638d329f43826d -SIZE (KDE/release-service/25.12.3/kmime-25.12.3.tar.xz) = 167076 +TIMESTAMP = 1776248363 +SHA256 (KDE/release-service/26.04.0/kmime-26.04.0.tar.xz) = ce8d5c95f8beaa1dc11201d1ee903689955455247c76cdaf8ef17400bffd4ad1 +SIZE (KDE/release-service/26.04.0/kmime-26.04.0.tar.xz) = 167716 diff --git a/net/kontactinterface/distinfo b/net/kontactinterface/distinfo index 8dcabec301db..227ed06ef64c 100644 --- a/net/kontactinterface/distinfo +++ b/net/kontactinterface/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1772542045 -SHA256 (KDE/release-service/25.12.3/kontactinterface-25.12.3.tar.xz) = 5e39b97021293811346a659926bbe8830d40fe8349d5cb7f9e8b63a180d78790 -SIZE (KDE/release-service/25.12.3/kontactinterface-25.12.3.tar.xz) = 43188 +TIMESTAMP = 1776248365 +SHA256 (KDE/release-service/26.04.0/kontactinterface-26.04.0.tar.xz) = ff55c854955e93418ef2afb72b060e928e71b5d3c5f92b8e0e75ee8a59ff57b7 +SIZE (KDE/release-service/26.04.0/kontactinterface-26.04.0.tar.xz) = 44936 diff --git a/net/kpimtextedit/distinfo b/net/kpimtextedit/distinfo index 65816e07293a..707157171336 100644 --- a/net/kpimtextedit/distinfo +++ b/net/kpimtextedit/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1772542046 -SHA256 (KDE/release-service/25.12.3/kpimtextedit-25.12.3.tar.xz) = 100f5dd703adea988f63f2975034a0eff3d4e7d55d088009b02031dc0e47b9c5 -SIZE (KDE/release-service/25.12.3/kpimtextedit-25.12.3.tar.xz) = 183396 +TIMESTAMP = 1776248366 +SHA256 (KDE/release-service/26.04.0/kpimtextedit-26.04.0.tar.xz) = eed48b3190f13178dada96d793529c0ca4959520c411d2ffc60463ab859f9046 +SIZE (KDE/release-service/26.04.0/kpimtextedit-26.04.0.tar.xz) = 188304 diff --git a/net/krdc/Makefile b/net/krdc/Makefile index e89d38c59921..70b417586745 100644 --- a/net/krdc/Makefile +++ b/net/krdc/Makefile @@ -1,36 +1,37 @@ PORTNAME= krdc DISTVERSION= ${KDE_APPLICATIONS_VERSION} CATEGORIES= net kde kde-applications MAINTAINER= kde@FreeBSD.org COMMENT= RDP and VNC client for KDE WWW= https://kde.org/applications/internet/krdc/ LIB_DEPENDS= libvncclient.so:net/libvncserver \ libxkbcommon.so:x11/libxkbcommon \ libwayland-client.so:graphics/wayland \ libwayland-cursor.so:graphics/wayland \ + libqt6keychain.so:security/qtkeychain@qt6 \ libssh.so:security/libssh USES= cmake compiler:c++11-lang desktop-file-utils gettext gl kde:6 \ pkgconfig qt:6 shared-mime-info tar:xz xorg USE_GL= opengl USE_KDE= activities bookmarks colorscheme completion config \ configwidgets coreaddons crash dnssd doctools i18n iconthemes \ jobwidgets kcmutils kio notifications notifyconfig service \ - solid statusnotifieritem wallet widgetsaddons windowsystem \ + solid statusnotifieritem widgetsaddons windowsystem \ xmlgui ecm:build USE_QT= base declarative wayland USE_XORG= x11 USE_LDCONFIG= yes CMAKE_ON= WITH_VNC OPTIONS_DEFINE= FREERDP DOCS OPTIONS_DEFAULT= FREERDP OPTIONS_SUB= yes FREERDP_DESC= Remote Desktop support via FreeRDP FREERDP_LIB_DEPENDS= libfreerdp3.so:net/freerdp3 FREERDP_CMAKE_BOOL= WITH_RDP .include diff --git a/net/krdc/distinfo b/net/krdc/distinfo index e9d7781afcbd..2c3dc4c82ec2 100644 --- a/net/krdc/distinfo +++ b/net/krdc/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1772542048 -SHA256 (KDE/release-service/25.12.3/krdc-25.12.3.tar.xz) = 1997463cd64cfb88a015d2b665cb7d5d451e8f54285af047d18f1bd838a4cd27 -SIZE (KDE/release-service/25.12.3/krdc-25.12.3.tar.xz) = 1597364 +TIMESTAMP = 1776248368 +SHA256 (KDE/release-service/26.04.0/krdc-26.04.0.tar.xz) = 430dc9e821fc0db7730eadd2306d81531015315a0a194fd0cb3ed6dcdff6489d +SIZE (KDE/release-service/26.04.0/krdc-26.04.0.tar.xz) = 1599900 diff --git a/net/krfb/distinfo b/net/krfb/distinfo index 645471617123..030bd85a2ed2 100644 --- a/net/krfb/distinfo +++ b/net/krfb/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1772542049 -SHA256 (KDE/release-service/25.12.3/krfb-25.12.3.tar.xz) = 3dd46a3a0e6da3008a11407333453b5e7763057e739025d3525106301ed38c4a -SIZE (KDE/release-service/25.12.3/krfb-25.12.3.tar.xz) = 1218940 +TIMESTAMP = 1776248370 +SHA256 (KDE/release-service/26.04.0/krfb-26.04.0.tar.xz) = 9a9441fb2699e81745feeefcece24e1a78fb5f025857bdabd72b660838bf9fbf +SIZE (KDE/release-service/26.04.0/krfb-26.04.0.tar.xz) = 1220512 diff --git a/net/ksmtp/distinfo b/net/ksmtp/distinfo index 7399e5bdd0c3..dc21e8167ffe 100644 --- a/net/ksmtp/distinfo +++ b/net/ksmtp/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1772542051 -SHA256 (KDE/release-service/25.12.3/ksmtp-25.12.3.tar.xz) = a4a76de3a2471d8828c086ea04633a3de2d9ba135b80c5c0ede7eb285ac45a9e -SIZE (KDE/release-service/25.12.3/ksmtp-25.12.3.tar.xz) = 55764 +TIMESTAMP = 1776248371 +SHA256 (KDE/release-service/26.04.0/ksmtp-26.04.0.tar.xz) = fdb0ea95f971eb181a0ea6229768dbcaa22518db76e8beb848091a25e200ffd4 +SIZE (KDE/release-service/26.04.0/ksmtp-26.04.0.tar.xz) = 57644 diff --git a/net/ktnef/distinfo b/net/ktnef/distinfo index 81b507ad5955..1cfd2cb36057 100644 --- a/net/ktnef/distinfo +++ b/net/ktnef/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1772542052 -SHA256 (KDE/release-service/25.12.3/ktnef-25.12.3.tar.xz) = f31a9008c62b380a615447669fd96b65aa25062ba4d314de42aadb267d1ec747 -SIZE (KDE/release-service/25.12.3/ktnef-25.12.3.tar.xz) = 317008 +TIMESTAMP = 1776248373 +SHA256 (KDE/release-service/26.04.0/ktnef-26.04.0.tar.xz) = 498843bc0c8511cc95513c1e0e80597aec60a5b2ec2aab3efab4da69f77fba1f +SIZE (KDE/release-service/26.04.0/ktnef-26.04.0.tar.xz) = 318496 diff --git a/net/libgravatar/distinfo b/net/libgravatar/distinfo index 206097ff6ebd..952efb64c2dd 100644 --- a/net/libgravatar/distinfo +++ b/net/libgravatar/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1772542054 -SHA256 (KDE/release-service/25.12.3/libgravatar-25.12.3.tar.xz) = 3a7388ad15f0da3556e36be0b9ae604b3e5b1a6bb1424220122767bc0d3c88a6 -SIZE (KDE/release-service/25.12.3/libgravatar-25.12.3.tar.xz) = 41040 +TIMESTAMP = 1776248374 +SHA256 (KDE/release-service/26.04.0/libgravatar-26.04.0.tar.xz) = 8106b9290a33ea6a0b2f35da478e6d27d333c978e81265900d9e8e98a342f8e7 +SIZE (KDE/release-service/26.04.0/libgravatar-26.04.0.tar.xz) = 43680 diff --git a/net/libkgapi/distinfo b/net/libkgapi/distinfo index 2fcb2922dd99..c074535dac6f 100644 --- a/net/libkgapi/distinfo +++ b/net/libkgapi/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1772542055 -SHA256 (KDE/release-service/25.12.3/libkgapi-25.12.3.tar.xz) = 3d8f6dd6e0d4274102cbf7c3dff67d8cef074e25fbf34bb8e505fd38273656b1 -SIZE (KDE/release-service/25.12.3/libkgapi-25.12.3.tar.xz) = 342216 +TIMESTAMP = 1776248376 +SHA256 (KDE/release-service/26.04.0/libkgapi-26.04.0.tar.xz) = fa211ea7450d3ac3917850fa404679e6c2a7f2e53fe542447dad2b1a9eb124b6 +SIZE (KDE/release-service/26.04.0/libkgapi-26.04.0.tar.xz) = 342800 diff --git a/net/libksieve/distinfo b/net/libksieve/distinfo index df9ab8859390..764d8826b94d 100644 --- a/net/libksieve/distinfo +++ b/net/libksieve/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1772542057 -SHA256 (KDE/release-service/25.12.3/libksieve-25.12.3.tar.xz) = 4dfde60dfa60f2c6c4c1235acc32f8bd6e2bbe65e419cdae71dd26fea5993e0d -SIZE (KDE/release-service/25.12.3/libksieve-25.12.3.tar.xz) = 634084 +TIMESTAMP = 1776248378 +SHA256 (KDE/release-service/26.04.0/libksieve-26.04.0.tar.xz) = ac811f0a8a44c534ef0708b885ae5edef1cdaad99b64bd92517d14bcc8267ab8 +SIZE (KDE/release-service/26.04.0/libksieve-26.04.0.tar.xz) = 641780 diff --git a/net/mailcommon/Makefile b/net/mailcommon/Makefile index 74ba28048cf4..b3685cf708a4 100644 --- a/net/mailcommon/Makefile +++ b/net/mailcommon/Makefile @@ -1,37 +1,35 @@ PORTNAME= mailcommon DISTVERSION= ${KDE_APPLICATIONS_VERSION} CATEGORIES= net kde kde-applications MAINTAINER= kde@FreeBSD.org COMMENT= Common libraries for KDEPim WWW= https://invent.kde.org/pim/mailcommon LICENSE= LGPL21 BUILD_DEPENDS= ${LOCALBASE}/include/boost/range/algorithm.hpp:devel/boost-libs LIB_DEPENDS= libassuan.so:security/libassuan \ libgpg-error.so:security/libgpg-error \ libgpgme.so:security/gpgme \ libgpgmepp.so:security/gpgmepp \ libqgpgmeqt6.so:security/qgpgme@qt6 USES= cmake compiler:c++11-lib gettext kde:6 qt:6 tar:xz xorg USE_KDE= archive auth codecs completion config configwidgets coreaddons \ guiaddons i18n iconthemes itemmodels itemviews jobwidgets kio \ phonon service solid sonnet syntaxhighlighting textwidgets \ widgetsaddons windowsystem xmlgui \ ecm:build # pim components USE_KDE+= akonadi akonadicontacts akonadimime contacts grantleetheme \ identitymanagement imap ktextaddons ldap libkdepim libkleo \ mailimporter mailtransport messagelib mime pimcommon \ pimtextedit USE_QT= base USE_XORG= x11 USE_LDCONFIG= yes OPTIONS_DEFINE= DOCS -KDE_APPLICATIONS_SHLIB_VER= 6.6.41 - .include diff --git a/net/mailcommon/distinfo b/net/mailcommon/distinfo index f15f40df8d83..4339940f0411 100644 --- a/net/mailcommon/distinfo +++ b/net/mailcommon/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1772542058 -SHA256 (KDE/release-service/25.12.3/mailcommon-25.12.3.tar.xz) = 8ac657f8050b968b592e5ec24c7123a9f33bc2703c3c461c4a87531b5f15da59 -SIZE (KDE/release-service/25.12.3/mailcommon-25.12.3.tar.xz) = 836016 +TIMESTAMP = 1776248379 +SHA256 (KDE/release-service/26.04.0/mailcommon-26.04.0.tar.xz) = d8167f3f4f2a59aca4fc62d95f51fe375fa2a55e3f88fa37882f5fc5212d3957 +SIZE (KDE/release-service/26.04.0/mailcommon-26.04.0.tar.xz) = 843188 diff --git a/net/mailimporter/distinfo b/net/mailimporter/distinfo index fa80e65c6815..8b42d1f1c2ab 100644 --- a/net/mailimporter/distinfo +++ b/net/mailimporter/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1772542060 -SHA256 (KDE/release-service/25.12.3/mailimporter-25.12.3.tar.xz) = eb99de68d8f5febe3d9eef8e6a793f9bdf62f54ad016fabe78f564d90e7a2db4 -SIZE (KDE/release-service/25.12.3/mailimporter-25.12.3.tar.xz) = 603520 +TIMESTAMP = 1776248381 +SHA256 (KDE/release-service/26.04.0/mailimporter-26.04.0.tar.xz) = 8e8034f9ebf2dec9b88662dd43c0ff367e250140e90803fa1e87072abe2333b1 +SIZE (KDE/release-service/26.04.0/mailimporter-26.04.0.tar.xz) = 607416 diff --git a/net/messagelib/distinfo b/net/messagelib/distinfo index f8d504bd093c..1d8a2eca2f94 100644 --- a/net/messagelib/distinfo +++ b/net/messagelib/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1772542061 -SHA256 (KDE/release-service/25.12.3/messagelib-25.12.3.tar.xz) = d2d9e8e1eb6d053d82254f8962543ce81ce3d44b583d015f91c8e15ad284d6ba -SIZE (KDE/release-service/25.12.3/messagelib-25.12.3.tar.xz) = 7393232 +TIMESTAMP = 1776248383 +SHA256 (KDE/release-service/26.04.0/messagelib-26.04.0.tar.xz) = 5988cca68574a91f4e62b2967c88d2e416d8ca32509fef148896f490cdff8fe9 +SIZE (KDE/release-service/26.04.0/messagelib-26.04.0.tar.xz) = 7409936 diff --git a/net/messagelib/pkg-plist b/net/messagelib/pkg-plist index 02d20cd1bf17..d97ba6101c78 100644 --- a/net/messagelib/pkg-plist +++ b/net/messagelib/pkg-plist @@ -1,1070 +1,1055 @@ include/KPim6/MessageComposer/MessageComposer/AbstractEncryptJob include/KPim6/MessageComposer/MessageComposer/AkonadiSender include/KPim6/MessageComposer/MessageComposer/AliasesExpandJob include/KPim6/MessageComposer/MessageComposer/AttachmentClipBoardJob include/KPim6/MessageComposer/MessageComposer/AttachmentControllerBase include/KPim6/MessageComposer/MessageComposer/AttachmentFromPublicKeyJob include/KPim6/MessageComposer/MessageComposer/AttachmentJob include/KPim6/MessageComposer/MessageComposer/AttachmentModel include/KPim6/MessageComposer/MessageComposer/AttachmentVcardFromAddressBookJob include/KPim6/MessageComposer/MessageComposer/AutocryptHeadersJob include/KPim6/MessageComposer/MessageComposer/AutocryptKeyResolverCore include/KPim6/MessageComposer/MessageComposer/ComposerAttachmentInterface include/KPim6/MessageComposer/MessageComposer/ComposerJob include/KPim6/MessageComposer/MessageComposer/ComposerLineEdit include/KPim6/MessageComposer/MessageComposer/ComposerViewBase include/KPim6/MessageComposer/MessageComposer/ComposerViewInterface include/KPim6/MessageComposer/MessageComposer/ContactPreference include/KPim6/MessageComposer/MessageComposer/ContentJobBase include/KPim6/MessageComposer/MessageComposer/ConvertSnippetVariableMenu include/KPim6/MessageComposer/MessageComposer/ConvertSnippetVariablesJob include/KPim6/MessageComposer/MessageComposer/ConvertSnippetVariablesUtil include/KPim6/MessageComposer/MessageComposer/DraftStatus include/KPim6/MessageComposer/MessageComposer/EditorWatcher include/KPim6/MessageComposer/MessageComposer/EncryptJob include/KPim6/MessageComposer/MessageComposer/FollowUpReminderSelectDateDialog include/KPim6/MessageComposer/MessageComposer/FollowupReminder include/KPim6/MessageComposer/MessageComposer/FollowupReminderCreateJob include/KPim6/MessageComposer/MessageComposer/GlobalPart include/KPim6/MessageComposer/MessageComposer/ImageScalingWidget include/KPim6/MessageComposer/MessageComposer/InfoPart include/KPim6/MessageComposer/MessageComposer/InsertTextFileJob include/KPim6/MessageComposer/MessageComposer/ItipJob include/KPim6/MessageComposer/MessageComposer/ItipPart include/KPim6/MessageComposer/MessageComposer/JobBase include/KPim6/MessageComposer/MessageComposer/KeyResolver include/KPim6/MessageComposer/MessageComposer/Kleo_Util include/KPim6/MessageComposer/MessageComposer/MDNAdviceDialog include/KPim6/MessageComposer/MessageComposer/MDNAdviceHelper include/KPim6/MessageComposer/MessageComposer/MDNWarningWidgetJob include/KPim6/MessageComposer/MessageComposer/MainTextJob include/KPim6/MessageComposer/MessageComposer/MessageComposerSettings include/KPim6/MessageComposer/MessageComposer/MessageFactoryNG include/KPim6/MessageComposer/MessageComposer/MessageHelper include/KPim6/MessageComposer/MessageComposer/MessagePart include/KPim6/MessageComposer/MessageComposer/MessageSender include/KPim6/MessageComposer/MessageComposer/MultipartJob include/KPim6/MessageComposer/MessageComposer/PluginActionType include/KPim6/MessageComposer/MessageComposer/PluginComposerInterface include/KPim6/MessageComposer/MessageComposer/PluginEditor include/KPim6/MessageComposer/MessageComposer/PluginEditorBase include/KPim6/MessageComposer/MessageComposer/PluginEditorCheckBeforeSend include/KPim6/MessageComposer/MessageComposer/PluginEditorCheckBeforeSendInterface include/KPim6/MessageComposer/MessageComposer/PluginEditorCheckBeforeSendManager include/KPim6/MessageComposer/MessageComposer/PluginEditorCheckBeforeSendParams include/KPim6/MessageComposer/MessageComposer/PluginEditorConfigureBaseWidget include/KPim6/MessageComposer/MessageComposer/PluginEditorConvertText include/KPim6/MessageComposer/MessageComposer/PluginEditorConvertTextInterface include/KPim6/MessageComposer/MessageComposer/PluginEditorConvertTextManager include/KPim6/MessageComposer/MessageComposer/PluginEditorConverterBeforeConvertingData include/KPim6/MessageComposer/MessageComposer/PluginEditorConverterInitialData include/KPim6/MessageComposer/MessageComposer/PluginEditorGrammarCustomToolsViewInterface include/KPim6/MessageComposer/MessageComposer/PluginEditorGrammarManager include/KPim6/MessageComposer/MessageComposer/PluginEditorInit include/KPim6/MessageComposer/MessageComposer/PluginEditorInitInterface include/KPim6/MessageComposer/MessageComposer/PluginEditorInitManager include/KPim6/MessageComposer/MessageComposer/PluginEditorInterface include/KPim6/MessageComposer/MessageComposer/PluginEditorManager include/KPim6/MessageComposer/MessageComposer/ProtectedHeadersJob include/KPim6/MessageComposer/MessageComposer/Recipient include/KPim6/MessageComposer/MessageComposer/RecipientLine include/KPim6/MessageComposer/MessageComposer/RecipientsEditor include/KPim6/MessageComposer/MessageComposer/RichTextComposerNg include/KPim6/MessageComposer/MessageComposer/RichTextComposerSignatures include/KPim6/MessageComposer/MessageComposer/SaveContactPreferenceJob include/KPim6/MessageComposer/MessageComposer/SendLaterCreateJob include/KPim6/MessageComposer/MessageComposer/SendLaterDialog include/KPim6/MessageComposer/MessageComposer/SendLaterInfo include/KPim6/MessageComposer/MessageComposer/SendLaterJob include/KPim6/MessageComposer/MessageComposer/SendLaterRemoveJob include/KPim6/MessageComposer/MessageComposer/SendLaterUtil include/KPim6/MessageComposer/MessageComposer/SignEncryptJob include/KPim6/MessageComposer/MessageComposer/SignJob include/KPim6/MessageComposer/MessageComposer/SignatureController include/KPim6/MessageComposer/MessageComposer/SinglepartJob include/KPim6/MessageComposer/MessageComposer/SkeletonMessageJob include/KPim6/MessageComposer/MessageComposer/StatusBarLabelToggledState include/KPim6/MessageComposer/MessageComposer/TextPart include/KPim6/MessageComposer/MessageComposer/TransparentJob include/KPim6/MessageComposer/MessageComposer/Util include/KPim6/MessageComposer/messagecomposer/abstractencryptjob.h include/KPim6/MessageComposer/messagecomposer/akonadisender.h include/KPim6/MessageComposer/messagecomposer/aliasesexpandjob.h include/KPim6/MessageComposer/messagecomposer/attachmentclipboardjob.h include/KPim6/MessageComposer/messagecomposer/attachmentcontrollerbase.h include/KPim6/MessageComposer/messagecomposer/attachmentfrompublickeyjob.h include/KPim6/MessageComposer/messagecomposer/attachmentjob.h include/KPim6/MessageComposer/messagecomposer/attachmentmodel.h include/KPim6/MessageComposer/messagecomposer/attachmentvcardfromaddressbookjob.h include/KPim6/MessageComposer/messagecomposer/autocryptheadersjob.h include/KPim6/MessageComposer/messagecomposer/autocryptkeyresolvercore.h include/KPim6/MessageComposer/messagecomposer/composerattachmentinterface.h include/KPim6/MessageComposer/messagecomposer/composerjob.h include/KPim6/MessageComposer/messagecomposer/composerlineedit.h include/KPim6/MessageComposer/messagecomposer/composerviewbase.h include/KPim6/MessageComposer/messagecomposer/composerviewinterface.h include/KPim6/MessageComposer/messagecomposer/contactpreference.h include/KPim6/MessageComposer/messagecomposer/contentjobbase.h include/KPim6/MessageComposer/messagecomposer/convertsnippetvariablemenu.h include/KPim6/MessageComposer/messagecomposer/convertsnippetvariablesjob.h include/KPim6/MessageComposer/messagecomposer/convertsnippetvariablesutil.h include/KPim6/MessageComposer/messagecomposer/draftstatus.h include/KPim6/MessageComposer/messagecomposer/editorwatcher.h include/KPim6/MessageComposer/messagecomposer/encryptjob.h include/KPim6/MessageComposer/messagecomposer/followupreminder.h include/KPim6/MessageComposer/messagecomposer/followupremindercreatejob.h include/KPim6/MessageComposer/messagecomposer/followupreminderselectdatedialog.h include/KPim6/MessageComposer/messagecomposer/globalpart.h include/KPim6/MessageComposer/messagecomposer/imagescalingwidget.h include/KPim6/MessageComposer/messagecomposer/infopart.h include/KPim6/MessageComposer/messagecomposer/inserttextfilejob.h include/KPim6/MessageComposer/messagecomposer/itipjob.h include/KPim6/MessageComposer/messagecomposer/itippart.h include/KPim6/MessageComposer/messagecomposer/jobbase.h include/KPim6/MessageComposer/messagecomposer/keyresolver.h include/KPim6/MessageComposer/messagecomposer/kleo_util.h include/KPim6/MessageComposer/messagecomposer/maintextjob.h include/KPim6/MessageComposer/messagecomposer/mdnadvicedialog.h include/KPim6/MessageComposer/messagecomposer/mdnadvicehelper.h include/KPim6/MessageComposer/messagecomposer/mdnwarningwidgetjob.h include/KPim6/MessageComposer/messagecomposer/messagecomposer_debug.h include/KPim6/MessageComposer/messagecomposer/messagecomposer_export.h include/KPim6/MessageComposer/messagecomposer/messagecomposersettings.h include/KPim6/MessageComposer/messagecomposer/messagecomposersettings_base.h include/KPim6/MessageComposer/messagecomposer/messagefactoryng.h include/KPim6/MessageComposer/messagecomposer/messagehelper.h include/KPim6/MessageComposer/messagecomposer/messagepart.h include/KPim6/MessageComposer/messagecomposer/messagesender.h include/KPim6/MessageComposer/messagecomposer/multipartjob.h include/KPim6/MessageComposer/messagecomposer/pluginactiontype.h include/KPim6/MessageComposer/messagecomposer/plugincomposerinterface.h include/KPim6/MessageComposer/messagecomposer/plugineditor.h include/KPim6/MessageComposer/messagecomposer/plugineditorbase.h include/KPim6/MessageComposer/messagecomposer/plugineditorcheckbeforesend.h include/KPim6/MessageComposer/messagecomposer/plugineditorcheckbeforesendinterface.h include/KPim6/MessageComposer/messagecomposer/plugineditorcheckbeforesendmanager.h include/KPim6/MessageComposer/messagecomposer/plugineditorcheckbeforesendparams.h include/KPim6/MessageComposer/messagecomposer/plugineditorconfigurebasewidget.h include/KPim6/MessageComposer/messagecomposer/plugineditorconverterbeforeconvertingdata.h include/KPim6/MessageComposer/messagecomposer/plugineditorconverterinitialdata.h include/KPim6/MessageComposer/messagecomposer/plugineditorconverttext.h include/KPim6/MessageComposer/messagecomposer/plugineditorconverttextinterface.h include/KPim6/MessageComposer/messagecomposer/plugineditorconverttextmanager.h include/KPim6/MessageComposer/messagecomposer/plugineditorgrammarcustomtoolsviewinterface.h include/KPim6/MessageComposer/messagecomposer/plugineditorgrammarmanager.h include/KPim6/MessageComposer/messagecomposer/plugineditorinit.h include/KPim6/MessageComposer/messagecomposer/plugineditorinitinterface.h include/KPim6/MessageComposer/messagecomposer/plugineditorinitmanager.h include/KPim6/MessageComposer/messagecomposer/plugineditorinterface.h include/KPim6/MessageComposer/messagecomposer/plugineditormanager.h include/KPim6/MessageComposer/messagecomposer/protectedheadersjob.h include/KPim6/MessageComposer/messagecomposer/recipient.h include/KPim6/MessageComposer/messagecomposer/recipientline.h include/KPim6/MessageComposer/messagecomposer/recipientseditor.h include/KPim6/MessageComposer/messagecomposer/richtextcomposerng.h include/KPim6/MessageComposer/messagecomposer/richtextcomposersignatures.h include/KPim6/MessageComposer/messagecomposer/savecontactpreferencejob.h include/KPim6/MessageComposer/messagecomposer/sendlatercreatejob.h include/KPim6/MessageComposer/messagecomposer/sendlaterdialog.h include/KPim6/MessageComposer/messagecomposer/sendlaterinfo.h include/KPim6/MessageComposer/messagecomposer/sendlaterjob.h include/KPim6/MessageComposer/messagecomposer/sendlaterremovejob.h include/KPim6/MessageComposer/messagecomposer/sendlaterutil.h include/KPim6/MessageComposer/messagecomposer/signaturecontroller.h include/KPim6/MessageComposer/messagecomposer/signencryptjob.h include/KPim6/MessageComposer/messagecomposer/signjob.h include/KPim6/MessageComposer/messagecomposer/singlepartjob.h include/KPim6/MessageComposer/messagecomposer/skeletonmessagejob.h include/KPim6/MessageComposer/messagecomposer/statusbarlabeltoggledstate.h include/KPim6/MessageComposer/messagecomposer/textpart.h include/KPim6/MessageComposer/messagecomposer/transparentjob.h include/KPim6/MessageComposer/messagecomposer/util.h include/KPim6/MessageComposer/messagecomposer_version.h include/KPim6/MessageCore/MessageCore/AttachmentCompressJob include/KPim6/MessageCore/MessageCore/AttachmentFromUrlBaseJob include/KPim6/MessageCore/MessageCore/AttachmentFromUrlUtils include/KPim6/MessageCore/MessageCore/AttachmentLoadJob include/KPim6/MessageCore/MessageCore/AttachmentPart include/KPim6/MessageCore/MessageCore/AttachmentPropertiesDialog include/KPim6/MessageCore/MessageCore/AttachmentUpdateJob include/KPim6/MessageCore/MessageCore/AutocryptRecipient include/KPim6/MessageCore/MessageCore/AutocryptStorage include/KPim6/MessageCore/MessageCore/AutocryptUtils include/KPim6/MessageCore/MessageCore/ColorUtil include/KPim6/MessageCore/MessageCore/DateFormatter include/KPim6/MessageCore/MessageCore/ImageCollector include/KPim6/MessageCore/MessageCore/MailingList include/KPim6/MessageCore/MessageCore/MessageCoreSettings include/KPim6/MessageCore/MessageCore/StringUtil include/KPim6/MessageCore/MessageCore/Util include/KPim6/MessageCore/messagecore/attachmentcompressjob.h include/KPim6/MessageCore/messagecore/attachmentfromurlbasejob.h include/KPim6/MessageCore/messagecore/attachmentfromurlutils.h include/KPim6/MessageCore/messagecore/attachmentloadjob.h include/KPim6/MessageCore/messagecore/attachmentpart.h include/KPim6/MessageCore/messagecore/attachmentpropertiesdialog.h include/KPim6/MessageCore/messagecore/attachmentupdatejob.h include/KPim6/MessageCore/messagecore/autocryptrecipient.h include/KPim6/MessageCore/messagecore/autocryptstorage.h include/KPim6/MessageCore/messagecore/autocryptutils.h include/KPim6/MessageCore/messagecore/colorutil.h include/KPim6/MessageCore/messagecore/dateformatter.h include/KPim6/MessageCore/messagecore/globalsettings_messagecore.h include/KPim6/MessageCore/messagecore/imagecollector.h include/KPim6/MessageCore/messagecore/mailinglist.h include/KPim6/MessageCore/messagecore/messagecore_export.h include/KPim6/MessageCore/messagecore/messagecoresettings.h include/KPim6/MessageCore/messagecore/stringutil.h include/KPim6/MessageCore/messagecore/util.h include/KPim6/MessageCore/messagecore_version.h include/KPim6/MessageList/MessageList/AggregationComboBox include/KPim6/MessageList/MessageList/AggregationConfigButton include/KPim6/MessageList/MessageList/Enums include/KPim6/MessageList/MessageList/MD5Hash include/KPim6/MessageList/MessageList/MessageListUtil include/KPim6/MessageList/MessageList/Pane include/KPim6/MessageList/MessageList/QuickSearchLine include/KPim6/MessageList/MessageList/SearchLineCommand include/KPim6/MessageList/MessageList/SearchMessageByButtons include/KPim6/MessageList/MessageList/StorageModel include/KPim6/MessageList/MessageList/StorageModelBase include/KPim6/MessageList/MessageList/ThemeComboBox include/KPim6/MessageList/MessageList/ThemeConfigButton include/KPim6/MessageList/MessageList/View include/KPim6/MessageList/MessageList/WidgetBase include/KPim6/MessageList/messagelist/aggregationcombobox.h include/KPim6/MessageList/messagelist/aggregationconfigbutton.h include/KPim6/MessageList/messagelist/config-messagelist.h include/KPim6/MessageList/messagelist/enums.h include/KPim6/MessageList/messagelist/md5hash.h include/KPim6/MessageList/messagelist/messagelist_export.h include/KPim6/MessageList/messagelist/messagelistsettings.h include/KPim6/MessageList/messagelist/messagelistutil.h include/KPim6/MessageList/messagelist/pane.h include/KPim6/MessageList/messagelist/quicksearchline.h include/KPim6/MessageList/messagelist/searchlinecommand.h include/KPim6/MessageList/messagelist/searchmessagebybuttons.h include/KPim6/MessageList/messagelist/storagemodel.h include/KPim6/MessageList/messagelist/storagemodelbase.h include/KPim6/MessageList/messagelist/themecombobox.h include/KPim6/MessageList/messagelist/themeconfigbutton.h include/KPim6/MessageList/messagelist/view.h include/KPim6/MessageList/messagelist/widgetbase.h include/KPim6/MessageList/messagelist_version.h include/KPim6/MessageViewer/MessageViewer/AttachmentStrategy include/KPim6/MessageViewer/MessageViewer/BodyPartURLHandler include/KPim6/MessageViewer/MessageViewer/BufferedHtmlWriter include/KPim6/MessageViewer/MessageViewer/CSSHelper include/KPim6/MessageViewer/MessageViewer/CSSHelperBase include/KPim6/MessageViewer/MessageViewer/ConfigureWidget include/KPim6/MessageViewer/MessageViewer/DKIMCheckPolicy include/KPim6/MessageViewer/MessageViewer/DKIMCheckSignatureJob include/KPim6/MessageViewer/MessageViewer/DKIMHeaderParser include/KPim6/MessageViewer/MessageViewer/DKIMInfo include/KPim6/MessageViewer/MessageViewer/DKIMKeyRecord include/KPim6/MessageViewer/MessageViewer/DKIMManageRulesDialog include/KPim6/MessageViewer/MessageViewer/DKIMManageRulesWidget include/KPim6/MessageViewer/MessageViewer/DKIMManager include/KPim6/MessageViewer/MessageViewer/DKIMManagerAuthenticationServer include/KPim6/MessageViewer/MessageViewer/DKIMManagerKey include/KPim6/MessageViewer/MessageViewer/DKIMManagerKeyDialog include/KPim6/MessageViewer/MessageViewer/DKIMManagerKeyWidget include/KPim6/MessageViewer/MessageViewer/DKIMManagerRules include/KPim6/MessageViewer/MessageViewer/DKIMRule include/KPim6/MessageViewer/MessageViewer/DKIMViewerMenu include/KPim6/MessageViewer/MessageViewer/DKIMWidgetInfo include/KPim6/MessageViewer/MessageViewer/FileHtmlWriter include/KPim6/MessageViewer/MessageViewer/GrantleeHeaderStyle include/KPim6/MessageViewer/MessageViewer/GrantleeHeaderTestStyle include/KPim6/MessageViewer/MessageViewer/HeaderStrategy include/KPim6/MessageViewer/MessageViewer/HeaderStyle include/KPim6/MessageViewer/MessageViewer/HeaderStyleInterface include/KPim6/MessageViewer/MessageViewer/HeaderStyleMenuManager include/KPim6/MessageViewer/MessageViewer/HeaderStylePlugin include/KPim6/MessageViewer/MessageViewer/HeaderStylePluginManager include/KPim6/MessageViewer/MessageViewer/HeaderStyle_Util include/KPim6/MessageViewer/MessageViewer/HtmlBlock include/KPim6/MessageViewer/MessageViewer/HtmlWriter include/KPim6/MessageViewer/MessageViewer/IconNameCache include/KPim6/MessageViewer/MessageViewer/InvitationSettings include/KPim6/MessageViewer/MessageViewer/KXFace include/KPim6/MessageViewer/MessageViewer/MDNWarningWidget include/KPim6/MessageViewer/MessageViewer/MailWebEnginePage include/KPim6/MessageViewer/MessageViewer/MailWebEngineView include/KPim6/MessageViewer/MessageViewer/MarkMessageReadHandler include/KPim6/MessageViewer/MessageViewer/MessagePartRenderPlugin include/KPim6/MessageViewer/MessageViewer/MessagePartRendererBase include/KPim6/MessageViewer/MessageViewer/MessagePartRendererManager include/KPim6/MessageViewer/MessageViewer/MessageViewerCheckBeforeDeletingInterface include/KPim6/MessageViewer/MessageViewer/MessageViewerCheckBeforeDeletingParameters include/KPim6/MessageViewer/MessageViewer/MessageViewerCheckBeforeDeletingPlugin include/KPim6/MessageViewer/MessageViewer/MessageViewerCheckBeforeDeletingPluginManager include/KPim6/MessageViewer/MessageViewer/MessageViewerCheckBeforeDeletingPluginWidget include/KPim6/MessageViewer/MessageViewer/MessageViewerConfigureSettingsPlugin include/KPim6/MessageViewer/MessageViewer/MessageViewerConfigureSettingsPluginManager include/KPim6/MessageViewer/MessageViewer/MessageViewerConfigureSettingsPluginWidget include/KPim6/MessageViewer/MessageViewer/MessageViewerSettings include/KPim6/MessageViewer/MessageViewer/MessageViewerUtil include/KPim6/MessageViewer/MessageViewer/MimeType include/KPim6/MessageViewer/MessageViewer/ObjectTreeEmptySource include/KPim6/MessageViewer/MessageViewer/OpenUrlWithManager include/KPim6/MessageViewer/MessageViewer/OpenWithUrlInfo include/KPim6/MessageViewer/MessageViewer/PlainHeaderStyle include/KPim6/MessageViewer/MessageViewer/PrintMessage include/KPim6/MessageViewer/MessageViewer/PrintingSettings include/KPim6/MessageViewer/MessageViewer/RemoteContentConfigureDialog include/KPim6/MessageViewer/MessageViewer/RemoteContentMenu include/KPim6/MessageViewer/MessageViewer/RichHeaderStrategy include/KPim6/MessageViewer/MessageViewer/ScamCheckShortUrl include/KPim6/MessageViewer/MessageViewer/ScamCheckShortUrlManager include/KPim6/MessageViewer/MessageViewer/ScamDetectionInfo include/KPim6/MessageViewer/MessageViewer/ScamDetectionWhiteListSettingsManager include/KPim6/MessageViewer/MessageViewer/ScamExpandUrlJob include/KPim6/MessageViewer/MessageViewer/SpamHeaderAnalyzer include/KPim6/MessageViewer/MessageViewer/Stl_Util include/KPim6/MessageViewer/MessageViewer/URLHandler include/KPim6/MessageViewer/MessageViewer/Viewer include/KPim6/MessageViewer/MessageViewer/ViewerPlugin include/KPim6/MessageViewer/MessageViewer/ViewerPluginInterface include/KPim6/MessageViewer/MessageViewer/ViewerPluginManager include/KPim6/MessageViewer/MessageViewer/ViewerPluginToolManager include/KPim6/MessageViewer/messageviewer/attachmentstrategy.h include/KPim6/MessageViewer/messageviewer/bodyparturlhandler.h include/KPim6/MessageViewer/messageviewer/bufferedhtmlwriter.h include/KPim6/MessageViewer/messageviewer/configurewidget.h include/KPim6/MessageViewer/messageviewer/csshelper.h include/KPim6/MessageViewer/messageviewer/csshelperbase.h include/KPim6/MessageViewer/messageviewer/dkimcheckpolicy.h include/KPim6/MessageViewer/messageviewer/dkimchecksignaturejob.h include/KPim6/MessageViewer/messageviewer/dkimheaderparser.h include/KPim6/MessageViewer/messageviewer/dkiminfo.h include/KPim6/MessageViewer/messageviewer/dkimkeyrecord.h include/KPim6/MessageViewer/messageviewer/dkimmanager.h include/KPim6/MessageViewer/messageviewer/dkimmanagerauthenticationserver.h include/KPim6/MessageViewer/messageviewer/dkimmanagerkey.h include/KPim6/MessageViewer/messageviewer/dkimmanagerkeydialog.h include/KPim6/MessageViewer/messageviewer/dkimmanagerkeywidget.h include/KPim6/MessageViewer/messageviewer/dkimmanagerrules.h include/KPim6/MessageViewer/messageviewer/dkimmanagerulesdialog.h include/KPim6/MessageViewer/messageviewer/dkimmanageruleswidget.h include/KPim6/MessageViewer/messageviewer/dkimrule.h include/KPim6/MessageViewer/messageviewer/dkimviewermenu.h include/KPim6/MessageViewer/messageviewer/dkimwidgetinfo.h include/KPim6/MessageViewer/messageviewer/filehtmlwriter.h include/KPim6/MessageViewer/messageviewer/globalsettings_messageviewer.h include/KPim6/MessageViewer/messageviewer/grantleeheaderstyle.h include/KPim6/MessageViewer/messageviewer/grantleeheaderteststyle.h include/KPim6/MessageViewer/messageviewer/headerstrategy.h include/KPim6/MessageViewer/messageviewer/headerstyle.h include/KPim6/MessageViewer/messageviewer/headerstyle_util.h include/KPim6/MessageViewer/messageviewer/headerstyleinterface.h include/KPim6/MessageViewer/messageviewer/headerstylemenumanager.h include/KPim6/MessageViewer/messageviewer/headerstyleplugin.h include/KPim6/MessageViewer/messageviewer/headerstylepluginmanager.h include/KPim6/MessageViewer/messageviewer/htmlblock.h include/KPim6/MessageViewer/messageviewer/htmlwriter.h include/KPim6/MessageViewer/messageviewer/iconnamecache.h include/KPim6/MessageViewer/messageviewer/invitationsettings.h include/KPim6/MessageViewer/messageviewer/kxface.h include/KPim6/MessageViewer/messageviewer/mailwebenginepage.h include/KPim6/MessageViewer/messageviewer/mailwebengineview.h include/KPim6/MessageViewer/messageviewer/markmessagereadhandler.h include/KPim6/MessageViewer/messageviewer/mdnwarningwidget.h include/KPim6/MessageViewer/messageviewer/messagepartrendererbase.h include/KPim6/MessageViewer/messageviewer/messagepartrenderermanager.h include/KPim6/MessageViewer/messageviewer/messagepartrenderplugin.h include/KPim6/MessageViewer/messageviewer/messageviewer_debug.h include/KPim6/MessageViewer/messageviewer/messageviewer_export.h include/KPim6/MessageViewer/messageviewer/messageviewercheckbeforedeletinginterface.h include/KPim6/MessageViewer/messageviewer/messageviewercheckbeforedeletingparameters.h include/KPim6/MessageViewer/messageviewer/messageviewercheckbeforedeletingplugin.h include/KPim6/MessageViewer/messageviewer/messageviewercheckbeforedeletingpluginmanager.h include/KPim6/MessageViewer/messageviewer/messageviewercheckbeforedeletingpluginwidget.h include/KPim6/MessageViewer/messageviewer/messageviewerconfiguresettingsplugin.h include/KPim6/MessageViewer/messageviewer/messageviewerconfiguresettingspluginmanager.h include/KPim6/MessageViewer/messageviewer/messageviewerconfiguresettingspluginwidget.h include/KPim6/MessageViewer/messageviewer/messageviewersettings.h include/KPim6/MessageViewer/messageviewer/messageviewerutil.h include/KPim6/MessageViewer/messageviewer/mimetype.h include/KPim6/MessageViewer/messageviewer/objecttreeemptysource.h include/KPim6/MessageViewer/messageviewer/openurlwithmanager.h include/KPim6/MessageViewer/messageviewer/openwithurlinfo.h include/KPim6/MessageViewer/messageviewer/plainheaderstyle.h include/KPim6/MessageViewer/messageviewer/printingsettings.h include/KPim6/MessageViewer/messageviewer/printmessage.h include/KPim6/MessageViewer/messageviewer/remotecontentconfiguredialog.h include/KPim6/MessageViewer/messageviewer/remotecontentmenu.h include/KPim6/MessageViewer/messageviewer/richheaderstrategy.h include/KPim6/MessageViewer/messageviewer/scamcheckshorturl.h include/KPim6/MessageViewer/messageviewer/scamcheckshorturlmanager.h include/KPim6/MessageViewer/messageviewer/scamdetectioninfo.h include/KPim6/MessageViewer/messageviewer/scamdetectionwhitelistsettingsmanager.h include/KPim6/MessageViewer/messageviewer/scamexpandurljob.h include/KPim6/MessageViewer/messageviewer/spamheaderanalyzer.h include/KPim6/MessageViewer/messageviewer/stl_util.h include/KPim6/MessageViewer/messageviewer/urlhandler.h include/KPim6/MessageViewer/messageviewer/viewer.h include/KPim6/MessageViewer/messageviewer/viewerplugin.h include/KPim6/MessageViewer/messageviewer/viewerplugininterface.h include/KPim6/MessageViewer/messageviewer/viewerpluginmanager.h include/KPim6/MessageViewer/messageviewer/viewerplugintoolmanager.h include/KPim6/MessageViewer/messageviewer_version.h include/KPim6/MimeTreeParser/MimeTreeParser/AttachmentTemporaryFilesDirs include/KPim6/MimeTreeParser/MimeTreeParser/BodyPart include/KPim6/MimeTreeParser/MimeTreeParser/BodyPartFormatter include/KPim6/MimeTreeParser/MimeTreeParser/BodyPartFormatterFactory include/KPim6/MimeTreeParser/MimeTreeParser/Enums include/KPim6/MimeTreeParser/MimeTreeParser/MessagePart include/KPim6/MimeTreeParser/MimeTreeParser/NodeHelper include/KPim6/MimeTreeParser/MimeTreeParser/ObjectTreeParser include/KPim6/MimeTreeParser/MimeTreeParser/ObjectTreeSource include/KPim6/MimeTreeParser/MimeTreeParser/PartMetaData include/KPim6/MimeTreeParser/MimeTreeParser/PartNodeBodyPart include/KPim6/MimeTreeParser/MimeTreeParser/SimpleObjectTreeSource include/KPim6/MimeTreeParser/MimeTreeParser/Util include/KPim6/MimeTreeParser/mimetreeparser/attachmenttemporaryfilesdirs.h include/KPim6/MimeTreeParser/mimetreeparser/bodypart.h include/KPim6/MimeTreeParser/mimetreeparser/bodypartformatter.h include/KPim6/MimeTreeParser/mimetreeparser/bodypartformatterfactory.h include/KPim6/MimeTreeParser/mimetreeparser/enums.h include/KPim6/MimeTreeParser/mimetreeparser/messagepart.h include/KPim6/MimeTreeParser/mimetreeparser/mimetreeparser_export.h include/KPim6/MimeTreeParser/mimetreeparser/nodehelper.h include/KPim6/MimeTreeParser/mimetreeparser/objecttreeparser.h include/KPim6/MimeTreeParser/mimetreeparser/objecttreesource.h include/KPim6/MimeTreeParser/mimetreeparser/partmetadata.h include/KPim6/MimeTreeParser/mimetreeparser/partnodebodypart.h include/KPim6/MimeTreeParser/mimetreeparser/simpleobjecttreesource.h include/KPim6/MimeTreeParser/mimetreeparser/util.h include/KPim6/MimeTreeParser/mimetreeparser_version.h include/KPim6/TemplateParser/TemplateParser/CustomTemplates include/KPim6/TemplateParser/TemplateParser/CustomTemplatesMenu include/KPim6/TemplateParser/TemplateParser/DefaultTemplates include/KPim6/TemplateParser/TemplateParser/TemplateConvertCommandJob include/KPim6/TemplateParser/TemplateParser/TemplateParserEmailAddressRequesterBase include/KPim6/TemplateParser/TemplateParser/TemplateParserExtractHtmlInfoResult include/KPim6/TemplateParser/TemplateParser/TemplateParserJob include/KPim6/TemplateParser/TemplateParser/TemplatesCommandMenu include/KPim6/TemplateParser/TemplateParser/TemplatesConfiguration include/KPim6/TemplateParser/TemplateParser/TemplatesInsertCommandAction include/KPim6/TemplateParser/TemplateParser/TemplatesInsertCommandPushButton include/KPim6/TemplateParser/TemplateParser/TemplatesTextEdit include/KPim6/TemplateParser/TemplateParser/TemplatesUtil include/KPim6/TemplateParser/templateparser/customtemplates.h include/KPim6/TemplateParser/templateparser/customtemplates_kfg.h include/KPim6/TemplateParser/templateparser/customtemplatesmenu.h include/KPim6/TemplateParser/templateparser/defaulttemplates.h include/KPim6/TemplateParser/templateparser/globalsettings_templateparser.h include/KPim6/TemplateParser/templateparser/templateconvertcommandjob.h include/KPim6/TemplateParser/templateparser/templateparser_export.h include/KPim6/TemplateParser/templateparser/templateparseremailaddressrequesterbase.h include/KPim6/TemplateParser/templateparser/templateparserextracthtmlinforesult.h include/KPim6/TemplateParser/templateparser/templateparserjob.h include/KPim6/TemplateParser/templateparser/templatescommandmenu.h include/KPim6/TemplateParser/templateparser/templatesconfiguration.h include/KPim6/TemplateParser/templateparser/templatesconfiguration_kfg.h include/KPim6/TemplateParser/templateparser/templatesinsertcommandaction.h include/KPim6/TemplateParser/templateparser/templatesinsertcommandpushbutton.h include/KPim6/TemplateParser/templateparser/templatestextedit.h include/KPim6/TemplateParser/templateparser/templatesutil.h include/KPim6/TemplateParser/templateparser/ui_templatesconfiguration_base.h include/KPim6/TemplateParser/templateparser_version.h include/KPim6/WebEngineViewer/WebEngineViewer/BlockExternalResourcesUrlInterceptor include/KPim6/WebEngineViewer/WebEngineViewer/BlockTrackingUrlInterceptor include/KPim6/WebEngineViewer/WebEngineViewer/CheckPhishingUrlCache include/KPim6/WebEngineViewer/WebEngineViewer/CheckPhishingUrlJob include/KPim6/WebEngineViewer/WebEngineViewer/CheckPhishingUrlUtil include/KPim6/WebEngineViewer/WebEngineViewer/CreatePhishingUrlDataBaseJob include/KPim6/WebEngineViewer/WebEngineViewer/DeveloperToolDialog include/KPim6/WebEngineViewer/WebEngineViewer/FindBarBase include/KPim6/WebEngineViewer/WebEngineViewer/FindBarWebEngineView include/KPim6/WebEngineViewer/WebEngineViewer/HashCacheManager include/KPim6/WebEngineViewer/WebEngineViewer/InterceptorManager include/KPim6/WebEngineViewer/WebEngineViewer/LoadExternalReferencesUrlInterceptor include/KPim6/WebEngineViewer/WebEngineViewer/LocalDataBaseManager include/KPim6/WebEngineViewer/WebEngineViewer/NetworkPluginUrlInterceptor include/KPim6/WebEngineViewer/WebEngineViewer/NetworkPluginUrlInterceptorConfigureWidget include/KPim6/WebEngineViewer/WebEngineViewer/NetworkPluginUrlInterceptorInterface include/KPim6/WebEngineViewer/WebEngineViewer/NetworkUrlInterceptor include/KPim6/WebEngineViewer/WebEngineViewer/NetworkUrlInterceptorPluginManager include/KPim6/WebEngineViewer/WebEngineViewer/SearchFullHashJob include/KPim6/WebEngineViewer/WebEngineViewer/SubmittedFormWarningWidget include/KPim6/WebEngineViewer/WebEngineViewer/TrackingWarningWidget include/KPim6/WebEngineViewer/WebEngineViewer/UpdateDataBaseInfo include/KPim6/WebEngineViewer/WebEngineViewer/WebEngineAccessKey include/KPim6/WebEngineViewer/WebEngineViewer/WebEngineExportPdfPageJob include/KPim6/WebEngineViewer/WebEngineViewer/WebEngineManageScript include/KPim6/WebEngineViewer/WebEngineViewer/WebEnginePage include/KPim6/WebEngineViewer/WebEngineViewer/WebEngineScript include/KPim6/WebEngineViewer/WebEngineViewer/WebEngineView include/KPim6/WebEngineViewer/WebEngineViewer/WebHitTest include/KPim6/WebEngineViewer/WebEngineViewer/WebHitTestResult include/KPim6/WebEngineViewer/WebEngineViewer/ZoomActionMenu include/KPim6/WebEngineViewer/webengineviewer/blockexternalresourcesurlinterceptor.h include/KPim6/WebEngineViewer/webengineviewer/blocktrackingurlinterceptor.h include/KPim6/WebEngineViewer/webengineviewer/checkphishingurlcache.h include/KPim6/WebEngineViewer/webengineviewer/checkphishingurljob.h include/KPim6/WebEngineViewer/webengineviewer/checkphishingurlutil.h include/KPim6/WebEngineViewer/webengineviewer/createphishingurldatabasejob.h include/KPim6/WebEngineViewer/webengineviewer/developertooldialog.h include/KPim6/WebEngineViewer/webengineviewer/findbarbase.h include/KPim6/WebEngineViewer/webengineviewer/findbarwebengineview.h include/KPim6/WebEngineViewer/webengineviewer/hashcachemanager.h include/KPim6/WebEngineViewer/webengineviewer/interceptormanager.h include/KPim6/WebEngineViewer/webengineviewer/loadexternalreferencesurlinterceptor.h include/KPim6/WebEngineViewer/webengineviewer/localdatabasemanager.h include/KPim6/WebEngineViewer/webengineviewer/networkpluginurlinterceptor.h include/KPim6/WebEngineViewer/webengineviewer/networkpluginurlinterceptorconfigurewidget.h include/KPim6/WebEngineViewer/webengineviewer/networkpluginurlinterceptorinterface.h include/KPim6/WebEngineViewer/webengineviewer/networkurlinterceptor.h include/KPim6/WebEngineViewer/webengineviewer/networkurlinterceptorpluginmanager.h include/KPim6/WebEngineViewer/webengineviewer/searchfullhashjob.h include/KPim6/WebEngineViewer/webengineviewer/submittedformwarningwidget.h include/KPim6/WebEngineViewer/webengineviewer/trackingwarningwidget.h include/KPim6/WebEngineViewer/webengineviewer/updatedatabaseinfo.h include/KPim6/WebEngineViewer/webengineviewer/webengineaccesskey.h include/KPim6/WebEngineViewer/webengineviewer/webengineexportpdfpagejob.h include/KPim6/WebEngineViewer/webengineviewer/webenginemanagescript.h include/KPim6/WebEngineViewer/webengineviewer/webenginepage.h include/KPim6/WebEngineViewer/webengineviewer/webenginescript.h include/KPim6/WebEngineViewer/webengineviewer/webengineview.h include/KPim6/WebEngineViewer/webengineviewer/webengineviewer_export.h include/KPim6/WebEngineViewer/webengineviewer/webhittest.h include/KPim6/WebEngineViewer/webengineviewer/webhittestresult.h include/KPim6/WebEngineViewer/webengineviewer/zoomactionmenu.h include/KPim6/WebEngineViewer/webengineviewer_version.h lib/cmake/KPim6MessageComposer/KPim6MessageComposerConfig.cmake lib/cmake/KPim6MessageComposer/KPim6MessageComposerConfigVersion.cmake lib/cmake/KPim6MessageComposer/KPim6MessageComposerTargets-%%CMAKE_BUILD_TYPE%%.cmake lib/cmake/KPim6MessageComposer/KPim6MessageComposerTargets.cmake lib/cmake/KPim6MessageCore/KPim6MessageCoreConfig.cmake lib/cmake/KPim6MessageCore/KPim6MessageCoreConfigVersion.cmake lib/cmake/KPim6MessageCore/KPim6MessageCoreTargets-%%CMAKE_BUILD_TYPE%%.cmake lib/cmake/KPim6MessageCore/KPim6MessageCoreTargets.cmake lib/cmake/KPim6MessageList/KPim6MessageListConfig.cmake lib/cmake/KPim6MessageList/KPim6MessageListConfigVersion.cmake lib/cmake/KPim6MessageList/KPim6MessageListTargets-%%CMAKE_BUILD_TYPE%%.cmake lib/cmake/KPim6MessageList/KPim6MessageListTargets.cmake lib/cmake/KPim6MessageViewer/KPim6MessageViewerConfig.cmake lib/cmake/KPim6MessageViewer/KPim6MessageViewerConfigVersion.cmake lib/cmake/KPim6MessageViewer/KPim6MessageViewerTargets-%%CMAKE_BUILD_TYPE%%.cmake lib/cmake/KPim6MessageViewer/KPim6MessageViewerTargets.cmake lib/cmake/KPim6MimeTreeParser/KPim6MimeTreeParserConfig.cmake lib/cmake/KPim6MimeTreeParser/KPim6MimeTreeParserConfigVersion.cmake lib/cmake/KPim6MimeTreeParser/KPim6MimeTreeParserTargets-%%CMAKE_BUILD_TYPE%%.cmake lib/cmake/KPim6MimeTreeParser/KPim6MimeTreeParserTargets.cmake lib/cmake/KPim6TemplateParser/KPim6TemplateParserConfig.cmake lib/cmake/KPim6TemplateParser/KPim6TemplateParserConfigVersion.cmake lib/cmake/KPim6TemplateParser/KPim6TemplateParserTargets-%%CMAKE_BUILD_TYPE%%.cmake lib/cmake/KPim6TemplateParser/KPim6TemplateParserTargets.cmake lib/cmake/KPim6WebEngineViewer/KPim6WebEngineViewerConfig.cmake lib/cmake/KPim6WebEngineViewer/KPim6WebEngineViewerConfigVersion.cmake lib/cmake/KPim6WebEngineViewer/KPim6WebEngineViewerTargets-%%CMAKE_BUILD_TYPE%%.cmake lib/cmake/KPim6WebEngineViewer/KPim6WebEngineViewerTargets.cmake lib/libKPim6MessageComposer.so lib/libKPim6MessageComposer.so.6 lib/libKPim6MessageComposer.so.%%KDE_APPLICATIONS_SHLIB_VER%% lib/libKPim6MessageCore.so lib/libKPim6MessageCore.so.6 lib/libKPim6MessageCore.so.%%KDE_APPLICATIONS_SHLIB_VER%% lib/libKPim6MessageList.so lib/libKPim6MessageList.so.6 lib/libKPim6MessageList.so.%%KDE_APPLICATIONS_SHLIB_VER%% lib/libKPim6MessageViewer.so lib/libKPim6MessageViewer.so.6 lib/libKPim6MessageViewer.so.%%KDE_APPLICATIONS_SHLIB_VER%% lib/libKPim6MimeTreeParser.so lib/libKPim6MimeTreeParser.so.6 lib/libKPim6MimeTreeParser.so.%%KDE_APPLICATIONS_SHLIB_VER%% lib/libKPim6TemplateParser.so lib/libKPim6TemplateParser.so.6 lib/libKPim6TemplateParser.so.%%KDE_APPLICATIONS_SHLIB_VER%% lib/libKPim6WebEngineViewer.so lib/libKPim6WebEngineViewer.so.6 lib/libKPim6WebEngineViewer.so.%%KDE_APPLICATIONS_SHLIB_VER%% %%QT_PLUGINDIR%%/pim6/messageviewer/headerstyle/messageviewer_defaultgrantleeheaderstyleplugin.so %%QT_PLUGINDIR%%/pim6/messageviewer/kf6/ktexttemplate/messageviewer_ktexttemplate_extension.so share/config.kcfg/customtemplates_kfg.kcfg share/config.kcfg/templatesconfiguration_kfg.kcfg share/knotifications6/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/libmessagelist6.mo share/locale/af/LC_MESSAGES/libmessageviewer6.mo share/locale/af/LC_MESSAGES/libmimetreeparser6.mo share/locale/ar/LC_MESSAGES/libmessagecomposer6.mo share/locale/ar/LC_MESSAGES/libmessagecore6.mo share/locale/ar/LC_MESSAGES/libmessagelist6.mo share/locale/ar/LC_MESSAGES/libmessageviewer6.mo share/locale/ar/LC_MESSAGES/libmimetreeparser6.mo share/locale/ar/LC_MESSAGES/libtemplateparser6.mo share/locale/ar/LC_MESSAGES/libwebengineviewer6.mo share/locale/ast/LC_MESSAGES/libmessagecomposer6.mo share/locale/ast/LC_MESSAGES/libmessagecore6.mo share/locale/ast/LC_MESSAGES/libmessagelist6.mo share/locale/ast/LC_MESSAGES/libmessageviewer6.mo share/locale/ast/LC_MESSAGES/libmimetreeparser6.mo share/locale/ast/LC_MESSAGES/libtemplateparser6.mo share/locale/ast/LC_MESSAGES/libwebengineviewer6.mo share/locale/be/LC_MESSAGES/libmessagelist6.mo share/locale/be/LC_MESSAGES/libmessageviewer6.mo share/locale/be/LC_MESSAGES/libmimetreeparser6.mo share/locale/bg/LC_MESSAGES/libmessagecomposer6.mo share/locale/bg/LC_MESSAGES/libmessagecore6.mo share/locale/bg/LC_MESSAGES/libmessagelist6.mo share/locale/bg/LC_MESSAGES/libmessageviewer6.mo share/locale/bg/LC_MESSAGES/libmimetreeparser6.mo share/locale/bg/LC_MESSAGES/libtemplateparser6.mo share/locale/bg/LC_MESSAGES/libwebengineviewer6.mo share/locale/bn/LC_MESSAGES/libmessagelist6.mo share/locale/bn/LC_MESSAGES/libmessageviewer6.mo share/locale/bn/LC_MESSAGES/libmimetreeparser6.mo share/locale/br/LC_MESSAGES/libmessagelist6.mo share/locale/br/LC_MESSAGES/libmessageviewer6.mo share/locale/br/LC_MESSAGES/libmimetreeparser6.mo share/locale/bs/LC_MESSAGES/libmessagecomposer6.mo share/locale/bs/LC_MESSAGES/libmessagecore6.mo share/locale/bs/LC_MESSAGES/libmessagelist6.mo share/locale/bs/LC_MESSAGES/libmessageviewer6.mo share/locale/bs/LC_MESSAGES/libmimetreeparser6.mo share/locale/bs/LC_MESSAGES/libtemplateparser6.mo share/locale/ca/LC_MESSAGES/libmessagecomposer6.mo share/locale/ca/LC_MESSAGES/libmessagecore6.mo share/locale/ca/LC_MESSAGES/libmessagelist6.mo share/locale/ca/LC_MESSAGES/libmessageviewer6.mo share/locale/ca/LC_MESSAGES/libmimetreeparser6.mo share/locale/ca/LC_MESSAGES/libtemplateparser6.mo share/locale/ca/LC_MESSAGES/libwebengineviewer6.mo share/locale/ca@valencia/LC_MESSAGES/libmessagecomposer6.mo share/locale/ca@valencia/LC_MESSAGES/libmessagecore6.mo share/locale/ca@valencia/LC_MESSAGES/libmessagelist6.mo share/locale/ca@valencia/LC_MESSAGES/libmessageviewer6.mo share/locale/ca@valencia/LC_MESSAGES/libmimetreeparser6.mo share/locale/ca@valencia/LC_MESSAGES/libtemplateparser6.mo share/locale/ca@valencia/LC_MESSAGES/libwebengineviewer6.mo share/locale/cs/LC_MESSAGES/libmessagecomposer6.mo share/locale/cs/LC_MESSAGES/libmessagecore6.mo share/locale/cs/LC_MESSAGES/libmessagelist6.mo share/locale/cs/LC_MESSAGES/libmessageviewer6.mo share/locale/cs/LC_MESSAGES/libmimetreeparser6.mo share/locale/cs/LC_MESSAGES/libtemplateparser6.mo share/locale/cs/LC_MESSAGES/libwebengineviewer6.mo share/locale/cy/LC_MESSAGES/libmessagelist6.mo share/locale/cy/LC_MESSAGES/libmessageviewer6.mo share/locale/cy/LC_MESSAGES/libmimetreeparser6.mo share/locale/da/LC_MESSAGES/libmessagecomposer6.mo share/locale/da/LC_MESSAGES/libmessagecore6.mo share/locale/da/LC_MESSAGES/libmessagelist6.mo share/locale/da/LC_MESSAGES/libmessageviewer6.mo share/locale/da/LC_MESSAGES/libmimetreeparser6.mo share/locale/da/LC_MESSAGES/libtemplateparser6.mo share/locale/da/LC_MESSAGES/libwebengineviewer6.mo share/locale/de/LC_MESSAGES/libmessagecomposer6.mo share/locale/de/LC_MESSAGES/libmessagecore6.mo share/locale/de/LC_MESSAGES/libmessagelist6.mo share/locale/de/LC_MESSAGES/libmessageviewer6.mo share/locale/de/LC_MESSAGES/libmimetreeparser6.mo share/locale/de/LC_MESSAGES/libtemplateparser6.mo share/locale/de/LC_MESSAGES/libwebengineviewer6.mo share/locale/el/LC_MESSAGES/libmessagecomposer6.mo share/locale/el/LC_MESSAGES/libmessagecore6.mo share/locale/el/LC_MESSAGES/libmessagelist6.mo share/locale/el/LC_MESSAGES/libmessageviewer6.mo share/locale/el/LC_MESSAGES/libmimetreeparser6.mo share/locale/el/LC_MESSAGES/libtemplateparser6.mo share/locale/en_GB/LC_MESSAGES/libmessagecomposer6.mo share/locale/en_GB/LC_MESSAGES/libmessagecore6.mo share/locale/en_GB/LC_MESSAGES/libmessagelist6.mo share/locale/en_GB/LC_MESSAGES/libmessageviewer6.mo share/locale/en_GB/LC_MESSAGES/libmimetreeparser6.mo share/locale/en_GB/LC_MESSAGES/libtemplateparser6.mo share/locale/en_GB/LC_MESSAGES/libwebengineviewer6.mo share/locale/eo/LC_MESSAGES/libmessagecomposer6.mo share/locale/eo/LC_MESSAGES/libmessagecore6.mo share/locale/eo/LC_MESSAGES/libmessagelist6.mo share/locale/eo/LC_MESSAGES/libmessageviewer6.mo share/locale/eo/LC_MESSAGES/libmimetreeparser6.mo share/locale/eo/LC_MESSAGES/libtemplateparser6.mo share/locale/eo/LC_MESSAGES/libwebengineviewer6.mo share/locale/es/LC_MESSAGES/libmessagecomposer6.mo share/locale/es/LC_MESSAGES/libmessagecore6.mo share/locale/es/LC_MESSAGES/libmessagelist6.mo share/locale/es/LC_MESSAGES/libmessageviewer6.mo share/locale/es/LC_MESSAGES/libmimetreeparser6.mo share/locale/es/LC_MESSAGES/libtemplateparser6.mo share/locale/es/LC_MESSAGES/libwebengineviewer6.mo share/locale/et/LC_MESSAGES/libmessagecomposer6.mo share/locale/et/LC_MESSAGES/libmessagecore6.mo share/locale/et/LC_MESSAGES/libmessagelist6.mo share/locale/et/LC_MESSAGES/libmessageviewer6.mo share/locale/et/LC_MESSAGES/libmimetreeparser6.mo share/locale/et/LC_MESSAGES/libtemplateparser6.mo share/locale/et/LC_MESSAGES/libwebengineviewer6.mo share/locale/eu/LC_MESSAGES/libmessagecomposer6.mo share/locale/eu/LC_MESSAGES/libmessagecore6.mo share/locale/eu/LC_MESSAGES/libmessagelist6.mo share/locale/eu/LC_MESSAGES/libmessageviewer6.mo share/locale/eu/LC_MESSAGES/libmimetreeparser6.mo share/locale/eu/LC_MESSAGES/libtemplateparser6.mo share/locale/eu/LC_MESSAGES/libwebengineviewer6.mo share/locale/fa/LC_MESSAGES/libmessagelist6.mo share/locale/fa/LC_MESSAGES/libmessageviewer6.mo share/locale/fa/LC_MESSAGES/libmimetreeparser6.mo share/locale/fi/LC_MESSAGES/libmessagecomposer6.mo share/locale/fi/LC_MESSAGES/libmessagecore6.mo share/locale/fi/LC_MESSAGES/libmessagelist6.mo share/locale/fi/LC_MESSAGES/libmessageviewer6.mo share/locale/fi/LC_MESSAGES/libmimetreeparser6.mo share/locale/fi/LC_MESSAGES/libtemplateparser6.mo share/locale/fi/LC_MESSAGES/libwebengineviewer6.mo share/locale/fr/LC_MESSAGES/libmessagecomposer6.mo share/locale/fr/LC_MESSAGES/libmessagecore6.mo share/locale/fr/LC_MESSAGES/libmessagelist6.mo share/locale/fr/LC_MESSAGES/libmessageviewer6.mo share/locale/fr/LC_MESSAGES/libmimetreeparser6.mo share/locale/fr/LC_MESSAGES/libtemplateparser6.mo share/locale/fr/LC_MESSAGES/libwebengineviewer6.mo share/locale/fy/LC_MESSAGES/libmessagelist6.mo share/locale/fy/LC_MESSAGES/libmessageviewer6.mo share/locale/fy/LC_MESSAGES/libmimetreeparser6.mo share/locale/ga/LC_MESSAGES/libmessagecomposer6.mo share/locale/ga/LC_MESSAGES/libmessagecore6.mo share/locale/ga/LC_MESSAGES/libmessagelist6.mo share/locale/ga/LC_MESSAGES/libmessageviewer6.mo share/locale/ga/LC_MESSAGES/libmimetreeparser6.mo share/locale/ga/LC_MESSAGES/libtemplateparser6.mo share/locale/ga/LC_MESSAGES/libwebengineviewer6.mo share/locale/gl/LC_MESSAGES/libmessagecomposer6.mo share/locale/gl/LC_MESSAGES/libmessagecore6.mo share/locale/gl/LC_MESSAGES/libmessagelist6.mo share/locale/gl/LC_MESSAGES/libmessageviewer6.mo share/locale/gl/LC_MESSAGES/libmimetreeparser6.mo share/locale/gl/LC_MESSAGES/libtemplateparser6.mo share/locale/gl/LC_MESSAGES/libwebengineviewer6.mo share/locale/he/LC_MESSAGES/libmessagecomposer6.mo share/locale/he/LC_MESSAGES/libmessagecore6.mo share/locale/he/LC_MESSAGES/libmessagelist6.mo share/locale/he/LC_MESSAGES/libmessageviewer6.mo share/locale/he/LC_MESSAGES/libmimetreeparser6.mo share/locale/he/LC_MESSAGES/libtemplateparser6.mo share/locale/he/LC_MESSAGES/libwebengineviewer6.mo share/locale/hi/LC_MESSAGES/libmessagecomposer6.mo share/locale/hi/LC_MESSAGES/libmessagecore6.mo share/locale/hi/LC_MESSAGES/libmessagelist6.mo share/locale/hi/LC_MESSAGES/libmessageviewer6.mo share/locale/hi/LC_MESSAGES/libmimetreeparser6.mo share/locale/hi/LC_MESSAGES/libtemplateparser6.mo share/locale/hi/LC_MESSAGES/libwebengineviewer6.mo share/locale/hr/LC_MESSAGES/libmessagelist6.mo share/locale/hr/LC_MESSAGES/libmessageviewer6.mo share/locale/hr/LC_MESSAGES/libmimetreeparser6.mo share/locale/hsb/LC_MESSAGES/libmessagecomposer6.mo share/locale/hsb/LC_MESSAGES/libmessagelist6.mo share/locale/hsb/LC_MESSAGES/libmessageviewer6.mo share/locale/hsb/LC_MESSAGES/libmimetreeparser6.mo share/locale/hu/LC_MESSAGES/libmessagecomposer6.mo share/locale/hu/LC_MESSAGES/libmessagecore6.mo share/locale/hu/LC_MESSAGES/libmessagelist6.mo share/locale/hu/LC_MESSAGES/libmessageviewer6.mo share/locale/hu/LC_MESSAGES/libmimetreeparser6.mo share/locale/hu/LC_MESSAGES/libtemplateparser6.mo share/locale/hu/LC_MESSAGES/libwebengineviewer6.mo share/locale/ia/LC_MESSAGES/libmessagecomposer6.mo share/locale/ia/LC_MESSAGES/libmessagecore6.mo share/locale/ia/LC_MESSAGES/libmessagelist6.mo share/locale/ia/LC_MESSAGES/libmessageviewer6.mo share/locale/ia/LC_MESSAGES/libmimetreeparser6.mo share/locale/ia/LC_MESSAGES/libtemplateparser6.mo share/locale/ia/LC_MESSAGES/libwebengineviewer6.mo share/locale/is/LC_MESSAGES/libmessagelist6.mo share/locale/is/LC_MESSAGES/libmessageviewer6.mo share/locale/is/LC_MESSAGES/libmimetreeparser6.mo share/locale/it/LC_MESSAGES/libmessagecomposer6.mo share/locale/it/LC_MESSAGES/libmessagecore6.mo share/locale/it/LC_MESSAGES/libmessagelist6.mo share/locale/it/LC_MESSAGES/libmessageviewer6.mo share/locale/it/LC_MESSAGES/libmimetreeparser6.mo share/locale/it/LC_MESSAGES/libtemplateparser6.mo share/locale/it/LC_MESSAGES/libwebengineviewer6.mo share/locale/ja/LC_MESSAGES/libmessagecomposer6.mo share/locale/ja/LC_MESSAGES/libmessagecore6.mo share/locale/ja/LC_MESSAGES/libmessagelist6.mo share/locale/ja/LC_MESSAGES/libmessageviewer6.mo share/locale/ja/LC_MESSAGES/libmimetreeparser6.mo share/locale/ja/LC_MESSAGES/libtemplateparser6.mo share/locale/ja/LC_MESSAGES/libwebengineviewer6.mo share/locale/ka/LC_MESSAGES/libmessagecomposer6.mo share/locale/ka/LC_MESSAGES/libmessagecore6.mo share/locale/ka/LC_MESSAGES/libmessagelist6.mo share/locale/ka/LC_MESSAGES/libmessageviewer6.mo share/locale/ka/LC_MESSAGES/libmimetreeparser6.mo share/locale/ka/LC_MESSAGES/libtemplateparser6.mo share/locale/ka/LC_MESSAGES/libwebengineviewer6.mo share/locale/kk/LC_MESSAGES/libmessagecomposer6.mo share/locale/kk/LC_MESSAGES/libmessagecore6.mo share/locale/kk/LC_MESSAGES/libmessagelist6.mo share/locale/kk/LC_MESSAGES/libmessageviewer6.mo share/locale/kk/LC_MESSAGES/libmimetreeparser6.mo share/locale/kk/LC_MESSAGES/libtemplateparser6.mo share/locale/km/LC_MESSAGES/libmessagecore6.mo share/locale/km/LC_MESSAGES/libmessagelist6.mo share/locale/km/LC_MESSAGES/libmessageviewer6.mo share/locale/km/LC_MESSAGES/libmimetreeparser6.mo share/locale/km/LC_MESSAGES/libtemplateparser6.mo share/locale/ko/LC_MESSAGES/libmessagecomposer6.mo share/locale/ko/LC_MESSAGES/libmessagecore6.mo share/locale/ko/LC_MESSAGES/libmessagelist6.mo share/locale/ko/LC_MESSAGES/libmessageviewer6.mo share/locale/ko/LC_MESSAGES/libmimetreeparser6.mo share/locale/ko/LC_MESSAGES/libtemplateparser6.mo share/locale/ko/LC_MESSAGES/libwebengineviewer6.mo share/locale/lt/LC_MESSAGES/libmessagecomposer6.mo share/locale/lt/LC_MESSAGES/libmessagecore6.mo share/locale/lt/LC_MESSAGES/libmessagelist6.mo share/locale/lt/LC_MESSAGES/libmessageviewer6.mo share/locale/lt/LC_MESSAGES/libmimetreeparser6.mo share/locale/lt/LC_MESSAGES/libtemplateparser6.mo share/locale/lt/LC_MESSAGES/libwebengineviewer6.mo share/locale/lv/LC_MESSAGES/libmessagecomposer6.mo share/locale/lv/LC_MESSAGES/libmessagecore6.mo share/locale/lv/LC_MESSAGES/libmessagelist6.mo share/locale/lv/LC_MESSAGES/libmessageviewer6.mo share/locale/lv/LC_MESSAGES/libmimetreeparser6.mo share/locale/lv/LC_MESSAGES/libtemplateparser6.mo share/locale/lv/LC_MESSAGES/libwebengineviewer6.mo share/locale/mai/LC_MESSAGES/libmessagelist6.mo share/locale/mai/LC_MESSAGES/libmessageviewer6.mo share/locale/mai/LC_MESSAGES/libmimetreeparser6.mo share/locale/mai/LC_MESSAGES/libtemplateparser6.mo share/locale/mk/LC_MESSAGES/libmessagelist6.mo share/locale/mk/LC_MESSAGES/libmessageviewer6.mo share/locale/mk/LC_MESSAGES/libmimetreeparser6.mo share/locale/mr/LC_MESSAGES/libmessagecomposer6.mo share/locale/mr/LC_MESSAGES/libmessagecore6.mo share/locale/mr/LC_MESSAGES/libmessagelist6.mo share/locale/mr/LC_MESSAGES/libmessageviewer6.mo share/locale/mr/LC_MESSAGES/libmimetreeparser6.mo share/locale/mr/LC_MESSAGES/libtemplateparser6.mo share/locale/ms/LC_MESSAGES/libmessagelist6.mo share/locale/ms/LC_MESSAGES/libmessageviewer6.mo share/locale/ms/LC_MESSAGES/libmimetreeparser6.mo share/locale/nb/LC_MESSAGES/libmessagecomposer6.mo share/locale/nb/LC_MESSAGES/libmessagecore6.mo share/locale/nb/LC_MESSAGES/libmessagelist6.mo share/locale/nb/LC_MESSAGES/libmessageviewer6.mo share/locale/nb/LC_MESSAGES/libmimetreeparser6.mo share/locale/nb/LC_MESSAGES/libtemplateparser6.mo share/locale/nds/LC_MESSAGES/libmessagecomposer6.mo share/locale/nds/LC_MESSAGES/libmessagecore6.mo share/locale/nds/LC_MESSAGES/libmessagelist6.mo share/locale/nds/LC_MESSAGES/libmessageviewer6.mo share/locale/nds/LC_MESSAGES/libmimetreeparser6.mo share/locale/nds/LC_MESSAGES/libtemplateparser6.mo share/locale/ne/LC_MESSAGES/libmessagelist6.mo share/locale/ne/LC_MESSAGES/libmessageviewer6.mo share/locale/ne/LC_MESSAGES/libmimetreeparser6.mo share/locale/nl/LC_MESSAGES/libmessagecomposer6.mo share/locale/nl/LC_MESSAGES/libmessagecore6.mo share/locale/nl/LC_MESSAGES/libmessagelist6.mo share/locale/nl/LC_MESSAGES/libmessageviewer6.mo share/locale/nl/LC_MESSAGES/libmimetreeparser6.mo share/locale/nl/LC_MESSAGES/libtemplateparser6.mo share/locale/nl/LC_MESSAGES/libwebengineviewer6.mo share/locale/nn/LC_MESSAGES/libmessagecomposer6.mo share/locale/nn/LC_MESSAGES/libmessagecore6.mo share/locale/nn/LC_MESSAGES/libmessagelist6.mo share/locale/nn/LC_MESSAGES/libmessageviewer6.mo share/locale/nn/LC_MESSAGES/libmimetreeparser6.mo share/locale/pa/LC_MESSAGES/libmessagecomposer6.mo share/locale/pa/LC_MESSAGES/libmessagecore6.mo share/locale/pa/LC_MESSAGES/libmessagelist6.mo share/locale/pa/LC_MESSAGES/libmessageviewer6.mo share/locale/pa/LC_MESSAGES/libmimetreeparser6.mo share/locale/pa/LC_MESSAGES/libtemplateparser6.mo share/locale/pl/LC_MESSAGES/libmessagecomposer6.mo share/locale/pl/LC_MESSAGES/libmessagecore6.mo share/locale/pl/LC_MESSAGES/libmessagelist6.mo share/locale/pl/LC_MESSAGES/libmessageviewer6.mo share/locale/pl/LC_MESSAGES/libmimetreeparser6.mo share/locale/pl/LC_MESSAGES/libtemplateparser6.mo share/locale/pl/LC_MESSAGES/libwebengineviewer6.mo share/locale/pt/LC_MESSAGES/libmessagecomposer6.mo share/locale/pt/LC_MESSAGES/libmessagecore6.mo share/locale/pt/LC_MESSAGES/libmessagelist6.mo share/locale/pt/LC_MESSAGES/libmessageviewer6.mo share/locale/pt/LC_MESSAGES/libmimetreeparser6.mo share/locale/pt/LC_MESSAGES/libtemplateparser6.mo share/locale/pt/LC_MESSAGES/libwebengineviewer6.mo share/locale/pt_BR/LC_MESSAGES/libmessagecomposer6.mo share/locale/pt_BR/LC_MESSAGES/libmessagecore6.mo share/locale/pt_BR/LC_MESSAGES/libmessagelist6.mo share/locale/pt_BR/LC_MESSAGES/libmessageviewer6.mo share/locale/pt_BR/LC_MESSAGES/libmimetreeparser6.mo share/locale/pt_BR/LC_MESSAGES/libtemplateparser6.mo share/locale/pt_BR/LC_MESSAGES/libwebengineviewer6.mo share/locale/ro/LC_MESSAGES/libmessagecomposer6.mo share/locale/ro/LC_MESSAGES/libmessagecore6.mo share/locale/ro/LC_MESSAGES/libmessagelist6.mo share/locale/ro/LC_MESSAGES/libmessageviewer6.mo share/locale/ro/LC_MESSAGES/libmimetreeparser6.mo share/locale/ro/LC_MESSAGES/libtemplateparser6.mo share/locale/ru/LC_MESSAGES/libmessagecomposer6.mo share/locale/ru/LC_MESSAGES/libmessagecore6.mo share/locale/ru/LC_MESSAGES/libmessagelist6.mo share/locale/ru/LC_MESSAGES/libmessageviewer6.mo share/locale/ru/LC_MESSAGES/libmimetreeparser6.mo share/locale/ru/LC_MESSAGES/libtemplateparser6.mo share/locale/ru/LC_MESSAGES/libwebengineviewer6.mo share/locale/sa/LC_MESSAGES/libmessagecomposer6.mo share/locale/sa/LC_MESSAGES/libmessagecore6.mo share/locale/sa/LC_MESSAGES/libmessagelist6.mo share/locale/sa/LC_MESSAGES/libmessageviewer6.mo share/locale/sa/LC_MESSAGES/libmimetreeparser6.mo share/locale/sa/LC_MESSAGES/libtemplateparser6.mo share/locale/sa/LC_MESSAGES/libwebengineviewer6.mo share/locale/se/LC_MESSAGES/libmessagelist6.mo share/locale/se/LC_MESSAGES/libmessageviewer6.mo share/locale/se/LC_MESSAGES/libmimetreeparser6.mo share/locale/sk/LC_MESSAGES/libmessagecomposer6.mo share/locale/sk/LC_MESSAGES/libmessagecore6.mo share/locale/sk/LC_MESSAGES/libmessagelist6.mo share/locale/sk/LC_MESSAGES/libmessageviewer6.mo share/locale/sk/LC_MESSAGES/libmimetreeparser6.mo share/locale/sk/LC_MESSAGES/libtemplateparser6.mo share/locale/sk/LC_MESSAGES/libwebengineviewer6.mo share/locale/sl/LC_MESSAGES/libmessagecomposer6.mo share/locale/sl/LC_MESSAGES/libmessagecore6.mo share/locale/sl/LC_MESSAGES/libmessagelist6.mo share/locale/sl/LC_MESSAGES/libmessageviewer6.mo share/locale/sl/LC_MESSAGES/libmimetreeparser6.mo share/locale/sl/LC_MESSAGES/libtemplateparser6.mo share/locale/sl/LC_MESSAGES/libwebengineviewer6.mo share/locale/sr/LC_MESSAGES/libmessagecomposer6.mo share/locale/sr/LC_MESSAGES/libmessagecore6.mo share/locale/sr/LC_MESSAGES/libmessagelist6.mo share/locale/sr/LC_MESSAGES/libmessageviewer6.mo share/locale/sr/LC_MESSAGES/libmimetreeparser6.mo share/locale/sr/LC_MESSAGES/libtemplateparser6.mo share/locale/sr/LC_MESSAGES/libwebengineviewer6.mo share/locale/sr@ijekavian/LC_MESSAGES/libmessagecomposer6.mo share/locale/sr@ijekavian/LC_MESSAGES/libmessagecore6.mo share/locale/sr@ijekavian/LC_MESSAGES/libmessagelist6.mo share/locale/sr@ijekavian/LC_MESSAGES/libmessageviewer6.mo share/locale/sr@ijekavian/LC_MESSAGES/libmimetreeparser6.mo share/locale/sr@ijekavian/LC_MESSAGES/libtemplateparser6.mo share/locale/sr@ijekavian/LC_MESSAGES/libwebengineviewer6.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/libmessagecomposer6.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/libmessagecore6.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/libmessagelist6.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/libmessageviewer6.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/libmimetreeparser6.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/libtemplateparser6.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/libwebengineviewer6.mo share/locale/sr@latin/LC_MESSAGES/libmessagecomposer6.mo share/locale/sr@latin/LC_MESSAGES/libmessagecore6.mo share/locale/sr@latin/LC_MESSAGES/libmessagelist6.mo share/locale/sr@latin/LC_MESSAGES/libmessageviewer6.mo share/locale/sr@latin/LC_MESSAGES/libmimetreeparser6.mo share/locale/sr@latin/LC_MESSAGES/libtemplateparser6.mo share/locale/sr@latin/LC_MESSAGES/libwebengineviewer6.mo share/locale/sv/LC_MESSAGES/libmessagecomposer6.mo share/locale/sv/LC_MESSAGES/libmessagecore6.mo share/locale/sv/LC_MESSAGES/libmessagelist6.mo share/locale/sv/LC_MESSAGES/libmessageviewer6.mo share/locale/sv/LC_MESSAGES/libmimetreeparser6.mo share/locale/sv/LC_MESSAGES/libtemplateparser6.mo share/locale/sv/LC_MESSAGES/libwebengineviewer6.mo share/locale/ta/LC_MESSAGES/libmessagecomposer6.mo share/locale/ta/LC_MESSAGES/libmessagecore6.mo share/locale/ta/LC_MESSAGES/libmessagelist6.mo share/locale/ta/LC_MESSAGES/libmessageviewer6.mo share/locale/ta/LC_MESSAGES/libmimetreeparser6.mo share/locale/ta/LC_MESSAGES/libtemplateparser6.mo share/locale/ta/LC_MESSAGES/libwebengineviewer6.mo share/locale/tg/LC_MESSAGES/libmessagelist6.mo share/locale/tg/LC_MESSAGES/libmessageviewer6.mo share/locale/tg/LC_MESSAGES/libmimetreeparser6.mo share/locale/th/LC_MESSAGES/libmessagecore6.mo share/locale/th/LC_MESSAGES/libmessagelist6.mo share/locale/th/LC_MESSAGES/libmessageviewer6.mo share/locale/th/LC_MESSAGES/libmimetreeparser6.mo share/locale/tr/LC_MESSAGES/libmessagecomposer6.mo share/locale/tr/LC_MESSAGES/libmessagecore6.mo share/locale/tr/LC_MESSAGES/libmessagelist6.mo share/locale/tr/LC_MESSAGES/libmessageviewer6.mo share/locale/tr/LC_MESSAGES/libmimetreeparser6.mo share/locale/tr/LC_MESSAGES/libtemplateparser6.mo share/locale/tr/LC_MESSAGES/libwebengineviewer6.mo share/locale/ug/LC_MESSAGES/libmessagecomposer6.mo share/locale/ug/LC_MESSAGES/libmessagecore6.mo share/locale/ug/LC_MESSAGES/libmessagelist6.mo share/locale/ug/LC_MESSAGES/libmessageviewer6.mo share/locale/ug/LC_MESSAGES/libmimetreeparser6.mo share/locale/ug/LC_MESSAGES/libtemplateparser6.mo share/locale/uk/LC_MESSAGES/libmessagecomposer6.mo share/locale/uk/LC_MESSAGES/libmessagecore6.mo share/locale/uk/LC_MESSAGES/libmessagelist6.mo share/locale/uk/LC_MESSAGES/libmessageviewer6.mo share/locale/uk/LC_MESSAGES/libmimetreeparser6.mo share/locale/uk/LC_MESSAGES/libtemplateparser6.mo share/locale/uk/LC_MESSAGES/libwebengineviewer6.mo share/locale/uz/LC_MESSAGES/libmessagelist6.mo share/locale/uz/LC_MESSAGES/libmessageviewer6.mo share/locale/uz/LC_MESSAGES/libmimetreeparser6.mo share/locale/uz@cyrillic/LC_MESSAGES/libmessagelist6.mo share/locale/uz@cyrillic/LC_MESSAGES/libmessageviewer6.mo share/locale/uz@cyrillic/LC_MESSAGES/libmimetreeparser6.mo share/locale/wa/LC_MESSAGES/libmessagelist6.mo share/locale/wa/LC_MESSAGES/libmessageviewer6.mo share/locale/wa/LC_MESSAGES/libmimetreeparser6.mo share/locale/wa/LC_MESSAGES/libtemplateparser6.mo share/locale/xh/LC_MESSAGES/libmessagelist6.mo share/locale/xh/LC_MESSAGES/libmessageviewer6.mo share/locale/xh/LC_MESSAGES/libmimetreeparser6.mo share/locale/zh_CN/LC_MESSAGES/libmessagecomposer6.mo share/locale/zh_CN/LC_MESSAGES/libmessagecore6.mo share/locale/zh_CN/LC_MESSAGES/libmessagelist6.mo share/locale/zh_CN/LC_MESSAGES/libmessageviewer6.mo share/locale/zh_CN/LC_MESSAGES/libmimetreeparser6.mo share/locale/zh_CN/LC_MESSAGES/libtemplateparser6.mo share/locale/zh_CN/LC_MESSAGES/libwebengineviewer6.mo share/locale/zh_TW/LC_MESSAGES/libmessagecomposer6.mo share/locale/zh_TW/LC_MESSAGES/libmessagecore6.mo share/locale/zh_TW/LC_MESSAGES/libmessagelist6.mo share/locale/zh_TW/LC_MESSAGES/libmessageviewer6.mo share/locale/zh_TW/LC_MESSAGES/libmimetreeparser6.mo share/locale/zh_TW/LC_MESSAGES/libtemplateparser6.mo share/locale/zh_TW/LC_MESSAGES/libwebengineviewer6.mo share/messagelist/pics/mail-horizontal-space.png share/messagelist/pics/mail-vertical-separator-line.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-categories6/messagelib.categories share/qlogging-categories6/messagelib.renamecategories diff --git a/net/mimetreeparser/distinfo b/net/mimetreeparser/distinfo index 6294d3d2eda9..130e6267289c 100644 --- a/net/mimetreeparser/distinfo +++ b/net/mimetreeparser/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1772542063 -SHA256 (KDE/release-service/25.12.3/mimetreeparser-25.12.3.tar.xz) = e83b96782634c8d7dda443ffc005d1d2991620ecfb270c4bf16a67d5d3e949f5 -SIZE (KDE/release-service/25.12.3/mimetreeparser-25.12.3.tar.xz) = 655664 +TIMESTAMP = 1776248384 +SHA256 (KDE/release-service/26.04.0/mimetreeparser-26.04.0.tar.xz) = 91059c4c79463d2ae9a41f9ce4c0bedb251f63d8d2e6aa6e34496990eb64e4e3 +SIZE (KDE/release-service/26.04.0/mimetreeparser-26.04.0.tar.xz) = 689864 diff --git a/net/mimetreeparser/pkg-plist b/net/mimetreeparser/pkg-plist index bc7bcab85833..a1a4b3964c59 100644 --- a/net/mimetreeparser/pkg-plist +++ b/net/mimetreeparser/pkg-plist @@ -1,99 +1,133 @@ include/KPim6/MimeTreeParserCore/MimeTreeParserCore/AttachmentModel include/KPim6/MimeTreeParserCore/MimeTreeParserCore/CryptoHelper include/KPim6/MimeTreeParserCore/MimeTreeParserCore/Enums include/KPim6/MimeTreeParserCore/MimeTreeParserCore/Errors include/KPim6/MimeTreeParserCore/MimeTreeParserCore/FileOpener include/KPim6/MimeTreeParserCore/MimeTreeParserCore/MessageParser include/KPim6/MimeTreeParserCore/MimeTreeParserCore/MessagePart include/KPim6/MimeTreeParserCore/MimeTreeParserCore/ObjectTreeParser include/KPim6/MimeTreeParserCore/MimeTreeParserCore/PartMetaData include/KPim6/MimeTreeParserCore/MimeTreeParserCore/PartModel include/KPim6/MimeTreeParserCore/MimeTreeParserCore/UrlHandler include/KPim6/MimeTreeParserCore/mimetreeparsercore/attachmentmodel.h include/KPim6/MimeTreeParserCore/mimetreeparsercore/cryptohelper.h include/KPim6/MimeTreeParserCore/mimetreeparsercore/enums.h include/KPim6/MimeTreeParserCore/mimetreeparsercore/errors.h include/KPim6/MimeTreeParserCore/mimetreeparsercore/fileopener.h include/KPim6/MimeTreeParserCore/mimetreeparsercore/messageparser.h include/KPim6/MimeTreeParserCore/mimetreeparsercore/messagepart.h include/KPim6/MimeTreeParserCore/mimetreeparsercore/mimetreeparser_core_export.h include/KPim6/MimeTreeParserCore/mimetreeparsercore/objecttreeparser.h include/KPim6/MimeTreeParserCore/mimetreeparsercore/partmetadata.h include/KPim6/MimeTreeParserCore/mimetreeparsercore/partmodel.h include/KPim6/MimeTreeParserCore/mimetreeparsercore/urlhandler.h include/KPim6/MimeTreeParserCore/mimetreeparserng_version.h include/KPim6/MimeTreeParserWidgets/MimeTreeParserWidgets/MessageViewer include/KPim6/MimeTreeParserWidgets/MimeTreeParserWidgets/MessageViewerDialog include/KPim6/MimeTreeParserWidgets/MimeTreeParserWidgets/MessageViewerWindow include/KPim6/MimeTreeParserWidgets/mimetreeparser_widgets_version.h include/KPim6/MimeTreeParserWidgets/mimetreeparserwidgets/messageviewer.h include/KPim6/MimeTreeParserWidgets/mimetreeparserwidgets/messageviewerdialog.h include/KPim6/MimeTreeParserWidgets/mimetreeparserwidgets/messageviewerwindow.h include/KPim6/MimeTreeParserWidgets/mimetreeparserwidgets/mimetreeparser_widgets_export.h lib/cmake/KPim6MimeTreeParserCore/KPim6MimeTreeParserCoreConfig.cmake lib/cmake/KPim6MimeTreeParserCore/KPim6MimeTreeParserCoreConfigVersion.cmake lib/cmake/KPim6MimeTreeParserCore/KPim6MimeTreeParserCoreTargets-%%CMAKE_BUILD_TYPE%%.cmake lib/cmake/KPim6MimeTreeParserCore/KPim6MimeTreeParserCoreTargets.cmake lib/cmake/KPim6MimeTreeParserWidgets/KPim6MimeTreeParserWidgetsConfig.cmake lib/cmake/KPim6MimeTreeParserWidgets/KPim6MimeTreeParserWidgetsConfigVersion.cmake lib/cmake/KPim6MimeTreeParserWidgets/KPim6MimeTreeParserWidgetsTargets-%%CMAKE_BUILD_TYPE%%.cmake lib/cmake/KPim6MimeTreeParserWidgets/KPim6MimeTreeParserWidgetsTargets.cmake lib/libKPim6MimeTreeParserCore.so lib/libKPim6MimeTreeParserCore.so.6 lib/libKPim6MimeTreeParserCore.so.%%KDE_APPLICATIONS_SHLIB_VER%% lib/libKPim6MimeTreeParserWidgets.so lib/libKPim6MimeTreeParserWidgets.so.6 lib/libKPim6MimeTreeParserWidgets.so.%%KDE_APPLICATIONS_SHLIB_VER%% %%QT_MKSPECDIR%%/modules/qt_MimeTreeParserCore.pri %%QT_MKSPECDIR%%/modules/qt_MimeTreeParserWidgets.pri %%QT_QMLDIR%%/org/kde/pim/mimetreeparser/MailViewer.qml +%%QT_QMLDIR%%/org/kde/pim/mimetreeparser/bike.svg +%%QT_QMLDIR%%/org/kde/pim/mimetreeparser/bus.svg +%%QT_QMLDIR%%/org/kde/pim/mimetreeparser/cablecar.svg +%%QT_QMLDIR%%/org/kde/pim/mimetreeparser/car.svg +%%QT_QMLDIR%%/org/kde/pim/mimetreeparser/coach.svg +%%QT_QMLDIR%%/org/kde/pim/mimetreeparser/couchettecar.svg +%%QT_QMLDIR%%/org/kde/pim/mimetreeparser/elevator.svg +%%QT_QMLDIR%%/org/kde/pim/mimetreeparser/escalator.svg +%%QT_QMLDIR%%/org/kde/pim/mimetreeparser/ferry.svg +%%QT_QMLDIR%%/org/kde/pim/mimetreeparser/flight.svg +%%QT_QMLDIR%%/org/kde/pim/mimetreeparser/foodestablishment.svg +%%QT_QMLDIR%%/org/kde/pim/mimetreeparser/funicular.svg +%%QT_QMLDIR%%/org/kde/pim/mimetreeparser/itinerary/FlightReservationComponent.qml +%%QT_QMLDIR%%/org/kde/pim/mimetreeparser/itinerary/FoodReservationComponent.qml +%%QT_QMLDIR%%/org/kde/pim/mimetreeparser/itinerary/HotelReservationComponent.qml +%%QT_QMLDIR%%/org/kde/pim/mimetreeparser/itinerary/ItineraryComponent.qml +%%QT_QMLDIR%%/org/kde/pim/mimetreeparser/itinerary/ItineraryReservationComponent.qml +%%QT_QMLDIR%%/org/kde/pim/mimetreeparser/itinerary/JourneySectionStopDelegateLineSegment.qml +%%QT_QMLDIR%%/org/kde/pim/mimetreeparser/itinerary/TrainReservationComponent.qml +%%QT_QMLDIR%%/org/kde/pim/mimetreeparser/itinerary/TransportIcon.qml +%%QT_QMLDIR%%/org/kde/pim/mimetreeparser/itinerary/TripMenu.qml %%QT_QMLDIR%%/org/kde/pim/mimetreeparser/kde-qmlmodule.version %%QT_QMLDIR%%/org/kde/pim/mimetreeparser/libmimetreeparser_plugin.so +%%QT_QMLDIR%%/org/kde/pim/mimetreeparser/longdistancetrain.svg %%QT_QMLDIR%%/org/kde/pim/mimetreeparser/mimetreeparser_plugin.qmltypes %%QT_QMLDIR%%/org/kde/pim/mimetreeparser/private/AttachmentDelegate.qml %%QT_QMLDIR%%/org/kde/pim/mimetreeparser/private/Banner.qml %%QT_QMLDIR%%/org/kde/pim/mimetreeparser/private/ErrorPart.qml %%QT_QMLDIR%%/org/kde/pim/mimetreeparser/private/HtmlPart.qml %%QT_QMLDIR%%/org/kde/pim/mimetreeparser/private/ICalPart.qml %%QT_QMLDIR%%/org/kde/pim/mimetreeparser/private/MailPart.qml %%QT_QMLDIR%%/org/kde/pim/mimetreeparser/private/MailPartModel.qml %%QT_QMLDIR%%/org/kde/pim/mimetreeparser/private/MailPartView.qml %%QT_QMLDIR%%/org/kde/pim/mimetreeparser/private/TextPart.qml %%QT_QMLDIR%%/org/kde/pim/mimetreeparser/qmldir +%%QT_QMLDIR%%/org/kde/pim/mimetreeparser/rapidtransit.svg +%%QT_QMLDIR%%/org/kde/pim/mimetreeparser/seat.svg +%%QT_QMLDIR%%/org/kde/pim/mimetreeparser/shuttle.svg +%%QT_QMLDIR%%/org/kde/pim/mimetreeparser/sleepingcar.svg +%%QT_QMLDIR%%/org/kde/pim/mimetreeparser/stairs.svg +%%QT_QMLDIR%%/org/kde/pim/mimetreeparser/subway.svg +%%QT_QMLDIR%%/org/kde/pim/mimetreeparser/taxi.svg +%%QT_QMLDIR%%/org/kde/pim/mimetreeparser/train.svg +%%QT_QMLDIR%%/org/kde/pim/mimetreeparser/tramway.svg +%%QT_QMLDIR%%/org/kde/pim/mimetreeparser/transfer.svg +%%QT_QMLDIR%%/org/kde/pim/mimetreeparser/wait.svg +%%QT_QMLDIR%%/org/kde/pim/mimetreeparser/walk.svg share/locale/ar/LC_MESSAGES/mimetreeparser6.mo share/locale/ast/LC_MESSAGES/mimetreeparser6.mo share/locale/ca/LC_MESSAGES/mimetreeparser6.mo share/locale/ca@valencia/LC_MESSAGES/mimetreeparser6.mo share/locale/cs/LC_MESSAGES/mimetreeparser6.mo share/locale/de/LC_MESSAGES/mimetreeparser6.mo share/locale/en_GB/LC_MESSAGES/mimetreeparser6.mo share/locale/eo/LC_MESSAGES/mimetreeparser6.mo share/locale/es/LC_MESSAGES/mimetreeparser6.mo share/locale/eu/LC_MESSAGES/mimetreeparser6.mo share/locale/fi/LC_MESSAGES/mimetreeparser6.mo share/locale/fr/LC_MESSAGES/mimetreeparser6.mo share/locale/ga/LC_MESSAGES/mimetreeparser6.mo share/locale/gl/LC_MESSAGES/mimetreeparser6.mo share/locale/he/LC_MESSAGES/mimetreeparser6.mo share/locale/hi/LC_MESSAGES/mimetreeparser6.mo share/locale/hu/LC_MESSAGES/mimetreeparser6.mo share/locale/ia/LC_MESSAGES/mimetreeparser6.mo share/locale/it/LC_MESSAGES/mimetreeparser6.mo share/locale/ja/LC_MESSAGES/mimetreeparser6.mo share/locale/ka/LC_MESSAGES/mimetreeparser6.mo share/locale/ko/LC_MESSAGES/mimetreeparser6.mo share/locale/lt/LC_MESSAGES/mimetreeparser6.mo share/locale/lv/LC_MESSAGES/mimetreeparser6.mo share/locale/nl/LC_MESSAGES/mimetreeparser6.mo share/locale/pl/LC_MESSAGES/mimetreeparser6.mo share/locale/pt_BR/LC_MESSAGES/mimetreeparser6.mo share/locale/ru/LC_MESSAGES/mimetreeparser6.mo share/locale/sa/LC_MESSAGES/mimetreeparser6.mo share/locale/sk/LC_MESSAGES/mimetreeparser6.mo share/locale/sl/LC_MESSAGES/mimetreeparser6.mo share/locale/sv/LC_MESSAGES/mimetreeparser6.mo share/locale/tr/LC_MESSAGES/mimetreeparser6.mo share/locale/uk/LC_MESSAGES/mimetreeparser6.mo share/locale/zh_CN/LC_MESSAGES/mimetreeparser6.mo share/locale/zh_TW/LC_MESSAGES/mimetreeparser6.mo share/qlogging-categories6/mimetreeparser.categories diff --git a/net/pimcommon/distinfo b/net/pimcommon/distinfo index 41c6a22f6c62..c77e3e341a79 100644 --- a/net/pimcommon/distinfo +++ b/net/pimcommon/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1772542064 -SHA256 (KDE/release-service/25.12.3/pimcommon-25.12.3.tar.xz) = 6496e293294e23c6db8a19e4774313426bcdc8478defb2141ec4f6653f9f4b2f -SIZE (KDE/release-service/25.12.3/pimcommon-25.12.3.tar.xz) = 379664 +TIMESTAMP = 1776248386 +SHA256 (KDE/release-service/26.04.0/pimcommon-26.04.0.tar.xz) = d954ea655a8e1ec911ce8954af4644ffbbf35abc9af9d59d2415d5839a1ab138 +SIZE (KDE/release-service/26.04.0/pimcommon-26.04.0.tar.xz) = 373960 diff --git a/net/pimcommon/pkg-plist b/net/pimcommon/pkg-plist index 93708a835792..1f4a03661a41 100644 --- a/net/pimcommon/pkg-plist +++ b/net/pimcommon/pkg-plist @@ -1,182 +1,178 @@ include/KPim6/PimCommon/PimCommon/AbstractGenericPlugin include/KPim6/PimCommon/PimCommon/AbstractGenericPluginInterface include/KPim6/PimCommon/PimCommon/BroadcastStatus include/KPim6/PimCommon/PimCommon/ConfigureImmutableWidgetUtils include/KPim6/PimCommon/PimCommon/ConfigurePluginDialog -include/KPim6/PimCommon/PimCommon/ConfigurePluginsListWidget -include/KPim6/PimCommon/PimCommon/ConfigurePluginsTreeWidgetDelegate include/KPim6/PimCommon/PimCommon/ConfigurePluginsWidget include/KPim6/PimCommon/PimCommon/CustomLogWidget include/KPim6/PimCommon/PimCommon/CustomToolsPlugin include/KPim6/PimCommon/PimCommon/CustomToolsPluginManager include/KPim6/PimCommon/PimCommon/CustomToolsViewInterface include/KPim6/PimCommon/PimCommon/CustomToolsWidgetng include/KPim6/PimCommon/PimCommon/CustomTreeView include/KPim6/PimCommon/PimCommon/GenericPlugin include/KPim6/PimCommon/PimCommon/GenericPluginManager include/KPim6/PimCommon/PimCommon/KActionMenuChangeCase include/KPim6/PimCommon/PimCommon/LineEditWithAutoCorrection include/KPim6/PimCommon/PimCommon/LineEditWithCompleterNg include/KPim6/PimCommon/PimCommon/NetworkManager include/KPim6/PimCommon/PimCommon/PimUtil include/KPim6/PimCommon/PimCommon/PluginUtil include/KPim6/PimCommon/PimCommon/PurposeMenuMessageWidget include/KPim6/PimCommon/PimCommon/PurposeMenuWidget include/KPim6/PimCommon/PimCommon/RenameFileDialog include/KPim6/PimCommon/PimCommon/ShareServiceUrlManager include/KPim6/PimCommon/PimCommon/SimpleStringListEditor include/KPim6/PimCommon/PimCommon/SpellCheckLineEdit include/KPim6/PimCommon/PimCommon/TemplateListWidget include/KPim6/PimCommon/PimCommon/TemplateManager include/KPim6/PimCommon/pimcommon/abstractgenericplugin.h include/KPim6/PimCommon/pimcommon/abstractgenericplugininterface.h include/KPim6/PimCommon/pimcommon/broadcaststatus.h include/KPim6/PimCommon/pimcommon/configureimmutablewidgetutils.h include/KPim6/PimCommon/pimcommon/configureplugindialog.h -include/KPim6/PimCommon/pimcommon/configurepluginslistwidget.h -include/KPim6/PimCommon/pimcommon/configurepluginstreewidgetdelegate.h include/KPim6/PimCommon/pimcommon/configurepluginswidget.h include/KPim6/PimCommon/pimcommon/customlogwidget.h include/KPim6/PimCommon/pimcommon/customtoolsplugin.h include/KPim6/PimCommon/pimcommon/customtoolspluginmanager.h include/KPim6/PimCommon/pimcommon/customtoolsviewinterface.h include/KPim6/PimCommon/pimcommon/customtoolswidgetng.h include/KPim6/PimCommon/pimcommon/customtreeview.h include/KPim6/PimCommon/pimcommon/genericplugin.h include/KPim6/PimCommon/pimcommon/genericpluginmanager.h include/KPim6/PimCommon/pimcommon/imapresourcesettings.h include/KPim6/PimCommon/pimcommon/kactionmenuchangecase.h include/KPim6/PimCommon/pimcommon/lineeditwithautocorrection.h include/KPim6/PimCommon/pimcommon/lineeditwithcompleterng.h include/KPim6/PimCommon/pimcommon/networkmanager.h include/KPim6/PimCommon/pimcommon/pimcommon_export.h include/KPim6/PimCommon/pimcommon/pimutil.h include/KPim6/PimCommon/pimcommon/pluginutil.h include/KPim6/PimCommon/pimcommon/purposemenumessagewidget.h include/KPim6/PimCommon/pimcommon/purposemenuwidget.h include/KPim6/PimCommon/pimcommon/renamefiledialog.h include/KPim6/PimCommon/pimcommon/shareserviceurlmanager.h include/KPim6/PimCommon/pimcommon/simplestringlisteditor.h include/KPim6/PimCommon/pimcommon/spellchecklineedit.h include/KPim6/PimCommon/pimcommon/templatelistwidget.h include/KPim6/PimCommon/pimcommon/templatemanager.h include/KPim6/PimCommon/pimcommon_version.h include/KPim6/PimCommonActivities/PimCommonActivities/ActivitiesBaseManager include/KPim6/PimCommonActivities/PimCommonActivities/ConfigureActivitiesWidget include/KPim6/PimCommonActivities/pimcommonactivities/activitiesbasemanager.h include/KPim6/PimCommonActivities/pimcommonactivities/configureactivitieswidget.h include/KPim6/PimCommonActivities/pimcommonactivities/pimcommonactivities_export.h include/KPim6/PimCommonActivities/pimcommonactivities_version.h include/KPim6/PimCommonAkonadi/PimCommonAkonadi/AddresseeLineEdit include/KPim6/PimCommonAkonadi/PimCommonAkonadi/CheckedCollectionWidget include/KPim6/PimCommonAkonadi/PimCommonAkonadi/CollectionAclPage include/KPim6/PimCommonAkonadi/PimCommonAkonadi/CollectionTypeUtil include/KPim6/PimCommonAkonadi/PimCommonAkonadi/CompletionConfigureDialog include/KPim6/PimCommonAkonadi/PimCommonAkonadi/ContentTypeWidget include/KPim6/PimCommonAkonadi/PimCommonAkonadi/CreateResource include/KPim6/PimCommonAkonadi/PimCommonAkonadi/GenericPluginInterface include/KPim6/PimCommonAkonadi/PimCommonAkonadi/ImapAclAttribute include/KPim6/PimCommonAkonadi/PimCommonAkonadi/ImapResourceCapabilitiesManager include/KPim6/PimCommonAkonadi/PimCommonAkonadi/IncidencesForWidget include/KPim6/PimCommonAkonadi/PimCommonAkonadi/LdapSearchDialog include/KPim6/PimCommonAkonadi/PimCommonAkonadi/MailUtil include/KPim6/PimCommonAkonadi/PimCommonAkonadi/PluginInterface include/KPim6/PimCommonAkonadi/PimCommonAkonadi/ProgressManagerAkonadi include/KPim6/PimCommonAkonadi/PimCommonAkonadi/RecentAddresses include/KPim6/PimCommonAkonadi/PimCommonAkonadi/SelectMultiCollectionDialog include/KPim6/PimCommonAkonadi/pimcommonakonadi/addresseelineedit.h include/KPim6/PimCommonAkonadi/pimcommonakonadi/checkedcollectionwidget.h include/KPim6/PimCommonAkonadi/pimcommonakonadi/collectionaclpage.h include/KPim6/PimCommonAkonadi/pimcommonakonadi/collectiontypeutil.h include/KPim6/PimCommonAkonadi/pimcommonakonadi/completionconfiguredialog.h include/KPim6/PimCommonAkonadi/pimcommonakonadi/contenttypewidget.h include/KPim6/PimCommonAkonadi/pimcommonakonadi/createresource.h include/KPim6/PimCommonAkonadi/pimcommonakonadi/genericplugininterface.h include/KPim6/PimCommonAkonadi/pimcommonakonadi/imapaclattribute.h include/KPim6/PimCommonAkonadi/pimcommonakonadi/imapresourcecapabilitiesmanager.h include/KPim6/PimCommonAkonadi/pimcommonakonadi/incidencesforwidget.h include/KPim6/PimCommonAkonadi/pimcommonakonadi/ldapsearchdialog.h include/KPim6/PimCommonAkonadi/pimcommonakonadi/mailutil.h include/KPim6/PimCommonAkonadi/pimcommonakonadi/pimcommonakonadi_export.h include/KPim6/PimCommonAkonadi/pimcommonakonadi/plugininterface.h include/KPim6/PimCommonAkonadi/pimcommonakonadi/progressmanagerakonadi.h include/KPim6/PimCommonAkonadi/pimcommonakonadi/recentaddresses.h include/KPim6/PimCommonAkonadi/pimcommonakonadi/selectmulticollectiondialog.h include/KPim6/PimCommonAkonadi/pimcommonakonadi_version.h lib/cmake/KPim6PimCommon/KPim6PimCommonConfig.cmake lib/cmake/KPim6PimCommon/KPim6PimCommonConfigVersion.cmake lib/cmake/KPim6PimCommon/KPim6PimCommonTargets-%%CMAKE_BUILD_TYPE%%.cmake lib/cmake/KPim6PimCommon/KPim6PimCommonTargets.cmake lib/cmake/KPim6PimCommonActivities/KPim6PimCommonActivitiesConfig.cmake lib/cmake/KPim6PimCommonActivities/KPim6PimCommonActivitiesConfigVersion.cmake lib/cmake/KPim6PimCommonActivities/KPim6PimCommonActivitiesTargets-%%CMAKE_BUILD_TYPE%%.cmake lib/cmake/KPim6PimCommonActivities/KPim6PimCommonActivitiesTargets.cmake lib/cmake/KPim6PimCommonAkonadi/KPim6PimCommonAkonadiConfig.cmake lib/cmake/KPim6PimCommonAkonadi/KPim6PimCommonAkonadiConfigVersion.cmake lib/cmake/KPim6PimCommonAkonadi/KPim6PimCommonAkonadiTargets-%%CMAKE_BUILD_TYPE%%.cmake lib/cmake/KPim6PimCommonAkonadi/KPim6PimCommonAkonadiTargets.cmake lib/libKPim6PimCommon.so lib/libKPim6PimCommon.so.6 lib/libKPim6PimCommon.so.%%KDE_APPLICATIONS_SHLIB_VER%% lib/libKPim6PimCommonActivities.so lib/libKPim6PimCommonActivities.so.6 lib/libKPim6PimCommonActivities.so.%%KDE_APPLICATIONS_SHLIB_VER%% lib/libKPim6PimCommonAkonadi.so lib/libKPim6PimCommonAkonadi.so.6 lib/libKPim6PimCommonAkonadi.so.%%KDE_APPLICATIONS_SHLIB_VER%% %%QT_PLUGINDIR%%/designer/pimcommon6akonadiwidgets.so %%QT_PLUGINDIR%%/designer/pimcommon6widgets.so share/locale/ar/LC_MESSAGES/libpimcommon6.mo share/locale/ast/LC_MESSAGES/libpimcommon6.mo share/locale/bs/LC_MESSAGES/libpimcommon6.mo share/locale/ca/LC_MESSAGES/libpimcommon6.mo share/locale/ca@valencia/LC_MESSAGES/libpimcommon6.mo share/locale/cs/LC_MESSAGES/libpimcommon6.mo share/locale/da/LC_MESSAGES/libpimcommon6.mo share/locale/de/LC_MESSAGES/libpimcommon6.mo share/locale/el/LC_MESSAGES/libpimcommon6.mo share/locale/en_GB/LC_MESSAGES/libpimcommon6.mo share/locale/eo/LC_MESSAGES/libpimcommon6.mo share/locale/es/LC_MESSAGES/libpimcommon6.mo share/locale/et/LC_MESSAGES/libpimcommon6.mo share/locale/eu/LC_MESSAGES/libpimcommon6.mo share/locale/fi/LC_MESSAGES/libpimcommon6.mo share/locale/fr/LC_MESSAGES/libpimcommon6.mo share/locale/ga/LC_MESSAGES/libpimcommon6.mo share/locale/gl/LC_MESSAGES/libpimcommon6.mo share/locale/he/LC_MESSAGES/libpimcommon6.mo share/locale/hi/LC_MESSAGES/libpimcommon6.mo share/locale/hu/LC_MESSAGES/libpimcommon6.mo share/locale/ia/LC_MESSAGES/libpimcommon6.mo share/locale/it/LC_MESSAGES/libpimcommon6.mo share/locale/ja/LC_MESSAGES/libpimcommon6.mo share/locale/ka/LC_MESSAGES/libpimcommon6.mo share/locale/kk/LC_MESSAGES/libpimcommon6.mo share/locale/ko/LC_MESSAGES/libpimcommon6.mo share/locale/lt/LC_MESSAGES/libpimcommon6.mo share/locale/lv/LC_MESSAGES/libpimcommon6.mo share/locale/mr/LC_MESSAGES/libpimcommon6.mo share/locale/nb/LC_MESSAGES/libpimcommon6.mo share/locale/nds/LC_MESSAGES/libpimcommon6.mo share/locale/nl/LC_MESSAGES/libpimcommon6.mo share/locale/pl/LC_MESSAGES/libpimcommon6.mo share/locale/pt/LC_MESSAGES/libpimcommon6.mo share/locale/pt_BR/LC_MESSAGES/libpimcommon6.mo share/locale/ro/LC_MESSAGES/libpimcommon6.mo share/locale/ru/LC_MESSAGES/libpimcommon6.mo share/locale/sa/LC_MESSAGES/libpimcommon6.mo share/locale/sk/LC_MESSAGES/libpimcommon6.mo share/locale/sl/LC_MESSAGES/libpimcommon6.mo share/locale/sr/LC_MESSAGES/libpimcommon6.mo share/locale/sr@ijekavian/LC_MESSAGES/libpimcommon6.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/libpimcommon6.mo share/locale/sr@latin/LC_MESSAGES/libpimcommon6.mo share/locale/sv/LC_MESSAGES/libpimcommon6.mo share/locale/ta/LC_MESSAGES/libpimcommon6.mo share/locale/tr/LC_MESSAGES/libpimcommon6.mo share/locale/ug/LC_MESSAGES/libpimcommon6.mo share/locale/uk/LC_MESSAGES/libpimcommon6.mo share/locale/zh_CN/LC_MESSAGES/libpimcommon6.mo share/locale/zh_TW/LC_MESSAGES/libpimcommon6.mo share/qlogging-categories6/pimcommon.categories share/qlogging-categories6/pimcommon.renamecategories diff --git a/science/kalzium/distinfo b/science/kalzium/distinfo index 76bed92ad871..2266ca188730 100644 --- a/science/kalzium/distinfo +++ b/science/kalzium/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1772542066 -SHA256 (KDE/release-service/25.12.3/kalzium-25.12.3.tar.xz) = 59d8d5138f75f3979df62a18a4fc9ed12c1d2adfeb455aded8cb3acd41aee9cb -SIZE (KDE/release-service/25.12.3/kalzium-25.12.3.tar.xz) = 22674504 +TIMESTAMP = 1776248388 +SHA256 (KDE/release-service/26.04.0/kalzium-26.04.0.tar.xz) = bff944d960642f90ed703c2284d655c1eca7eed09ff3a1d7361e2cb417c57849 +SIZE (KDE/release-service/26.04.0/kalzium-26.04.0.tar.xz) = 22679832 diff --git a/science/step/distinfo b/science/step/distinfo index 106c2f6d6a50..c1784fb3855a 100644 --- a/science/step/distinfo +++ b/science/step/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1772542067 -SHA256 (KDE/release-service/25.12.3/step-25.12.3.tar.xz) = 4e77b1d8b3ef586cd17fe23fea944fa2d88e368b29e1de2ed2d93c9ac41fde61 -SIZE (KDE/release-service/25.12.3/step-25.12.3.tar.xz) = 1020068 +TIMESTAMP = 1776248389 +SHA256 (KDE/release-service/26.04.0/step-26.04.0.tar.xz) = 568e380d52592ed29c99d14ca7e50c626d366d8096b7cf5c94a0296490bd6489 +SIZE (KDE/release-service/26.04.0/step-26.04.0.tar.xz) = 1023448 diff --git a/security/keysmith/distinfo b/security/keysmith/distinfo index 47fab15aaba0..4b58bfead1f2 100644 --- a/security/keysmith/distinfo +++ b/security/keysmith/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1772542068 -SHA256 (KDE/release-service/25.12.3/keysmith-25.12.3.tar.xz) = e1bcd577cabec0235ae08a693a94f71ae5de0df2271febc64f04ebc8319da2d4 -SIZE (KDE/release-service/25.12.3/keysmith-25.12.3.tar.xz) = 243484 +TIMESTAMP = 1776248390 +SHA256 (KDE/release-service/26.04.0/keysmith-26.04.0.tar.xz) = 3048dc5cf27de5ca7293a6801ea773674d4f0363b848d6bb92eacf119bcbdb01 +SIZE (KDE/release-service/26.04.0/keysmith-26.04.0.tar.xz) = 249972 diff --git a/security/kgpg/distinfo b/security/kgpg/distinfo index 2584205ef654..90da1571a23b 100644 --- a/security/kgpg/distinfo +++ b/security/kgpg/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1772542069 -SHA256 (KDE/release-service/25.12.3/kgpg-25.12.3.tar.xz) = ba8a4056a1138b777178ef30510793b20a8dc2f60eadee0aac30989238928f8a -SIZE (KDE/release-service/25.12.3/kgpg-25.12.3.tar.xz) = 3046700 +TIMESTAMP = 1776248391 +SHA256 (KDE/release-service/26.04.0/kgpg-26.04.0.tar.xz) = 1d6d6cd67d67a730ee68533470249312e8de24a9be625e19779235ee5c1529fd +SIZE (KDE/release-service/26.04.0/kgpg-26.04.0.tar.xz) = 3048464 diff --git a/security/kleopatra/distinfo b/security/kleopatra/distinfo index 700bfc40396c..0d67e1b31212 100644 --- a/security/kleopatra/distinfo +++ b/security/kleopatra/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1772542071 -SHA256 (KDE/release-service/25.12.3/kleopatra-25.12.3.tar.xz) = 2d5f02713e07594a8e8c693331776d957e91413ce48ac85c240be91fd670d9ab -SIZE (KDE/release-service/25.12.3/kleopatra-25.12.3.tar.xz) = 2886888 +TIMESTAMP = 1776248393 +SHA256 (KDE/release-service/26.04.0/kleopatra-26.04.0.tar.xz) = d45b7f2a7ef7f0840ffbb07587d735fc112f04154d3e2257708b4efffc7e2a4a +SIZE (KDE/release-service/26.04.0/kleopatra-26.04.0.tar.xz) = 2919972 diff --git a/security/kpkpass/distinfo b/security/kpkpass/distinfo index 810f3fab5614..dd876a1478fe 100644 --- a/security/kpkpass/distinfo +++ b/security/kpkpass/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1772542072 -SHA256 (KDE/release-service/25.12.3/kpkpass-25.12.3.tar.xz) = f916bdc37c11740cc527ee76a1326d3457ed9bf153d609cdb5ea7bb581885df9 -SIZE (KDE/release-service/25.12.3/kpkpass-25.12.3.tar.xz) = 34556 +TIMESTAMP = 1776248395 +SHA256 (KDE/release-service/26.04.0/kpkpass-26.04.0.tar.xz) = b083a39b141cf292b762d8bf2d2a0b390d92659748e09e686f070e16efdc6cc0 +SIZE (KDE/release-service/26.04.0/kpkpass-26.04.0.tar.xz) = 36124 diff --git a/security/kwalletmanager/distinfo b/security/kwalletmanager/distinfo index bc4dde2b72f5..10277004cfbc 100644 --- a/security/kwalletmanager/distinfo +++ b/security/kwalletmanager/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1772542074 -SHA256 (KDE/release-service/25.12.3/kwalletmanager-25.12.3.tar.xz) = b74adfa977f5c3aaae9cb4e225c30acfb1999246820c6c485d45367f1da0ad89 -SIZE (KDE/release-service/25.12.3/kwalletmanager-25.12.3.tar.xz) = 1051424 +TIMESTAMP = 1776248396 +SHA256 (KDE/release-service/26.04.0/kwalletmanager-26.04.0.tar.xz) = fbeba153744b653d255d3a814f04e8702b2fb0e58f646ecd0212868fde262141 +SIZE (KDE/release-service/26.04.0/kwalletmanager-26.04.0.tar.xz) = 1011064 diff --git a/security/kwalletmanager/pkg-plist b/security/kwalletmanager/pkg-plist index 88141d8094f9..ed6719f87f1a 100644 --- a/security/kwalletmanager/pkg-plist +++ b/security/kwalletmanager/pkg-plist @@ -1,180 +1,175 @@ bin/kwalletmanager5 lib/libexec/kf6/kauth/kcm_kwallet_helper5 %%QT_PLUGINDIR%%/plasma/kcms/systemsettings_qwidgets/kcm_kwallet5.so share/applications/kwalletmanager5-kwalletd.desktop share/applications/org.kde.kwalletmanager.desktop share/dbus-1/services/org.kde.kwalletmanager.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/locale/ar/LC_MESSAGES/kcmkwallet.mo share/locale/ar/LC_MESSAGES/kwalletmanager.mo share/locale/ast/LC_MESSAGES/kcmkwallet.mo share/locale/ast/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/he/LC_MESSAGES/kcmkwallet.mo share/locale/he/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/sa/LC_MESSAGES/kcmkwallet.mo share/locale/sa/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-categories6/kwalletmanager.categories diff --git a/security/libkleo/distinfo b/security/libkleo/distinfo index 3bbd5ba99c5a..3ea213ca6bad 100644 --- a/security/libkleo/distinfo +++ b/security/libkleo/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1772542075 -SHA256 (KDE/release-service/25.12.3/libkleo-25.12.3.tar.xz) = 5fab807b445305cdc790a9a9c93804e809c897919576426f3ea8cd543a59de2c -SIZE (KDE/release-service/25.12.3/libkleo-25.12.3.tar.xz) = 676688 +TIMESTAMP = 1776248398 +SHA256 (KDE/release-service/26.04.0/libkleo-26.04.0.tar.xz) = c5816b9c46dc46e3f11a805c7a9508db2c33ad0fbf98d7e8fe681eb9bd8f84f6 +SIZE (KDE/release-service/26.04.0/libkleo-26.04.0.tar.xz) = 686148 diff --git a/security/libkleo/pkg-plist b/security/libkleo/pkg-plist index d3998f2dfd32..12fc2850af5b 100644 --- a/security/libkleo/pkg-plist +++ b/security/libkleo/pkg-plist @@ -1,249 +1,251 @@ etc/xdg/libkleopatrarc include/KPim6/Libkleo/Libkleo/Algorithm include/KPim6/Libkleo/Libkleo/AnimatedExpander include/KPim6/Libkleo/Libkleo/ApplicationPaletteWatcher include/KPim6/Libkleo/Libkleo/Assuan include/KPim6/Libkleo/Libkleo/AuditLogEntry include/KPim6/Libkleo/Libkleo/AuditLogViewer include/KPim6/Libkleo/Libkleo/ChecksumDefinition include/KPim6/Libkleo/Libkleo/Chrono include/KPim6/Libkleo/Libkleo/Classify include/KPim6/Libkleo/Libkleo/Compat include/KPim6/Libkleo/Libkleo/Compliance include/KPim6/Libkleo/Libkleo/CryptoConfig include/KPim6/Libkleo/Libkleo/CryptoConfigModule include/KPim6/Libkleo/Libkleo/DNAttributeOrderConfigWidget include/KPim6/Libkleo/Libkleo/Debug include/KPim6/Libkleo/Libkleo/DefaultKeyFilter include/KPim6/Libkleo/Libkleo/DefaultKeyGenerationJob include/KPim6/Libkleo/Libkleo/DirectoryServicesWidget include/KPim6/Libkleo/Libkleo/Dn include/KPim6/Libkleo/Libkleo/DnAttributes include/KPim6/Libkleo/Libkleo/DocAction include/KPim6/Libkleo/Libkleo/EditDirectoryServiceDialog include/KPim6/Libkleo/Libkleo/Enum include/KPim6/Libkleo/Libkleo/ErrorLabel include/KPim6/Libkleo/Libkleo/Expiration include/KPim6/Libkleo/Libkleo/ExpiryChecker include/KPim6/Libkleo/Libkleo/ExpiryCheckerConfig include/KPim6/Libkleo/Libkleo/ExpiryCheckerSettings include/KPim6/Libkleo/Libkleo/FileNameRequester include/KPim6/Libkleo/Libkleo/FileSystemWatcher include/KPim6/Libkleo/Libkleo/FormTextInput include/KPim6/Libkleo/Libkleo/Formatting include/KPim6/Libkleo/Libkleo/GnuPG include/KPim6/Libkleo/Libkleo/Hex include/KPim6/Libkleo/Libkleo/KConfigBasedKeyFilter include/KPim6/Libkleo/Libkleo/KeyApprovalDialog include/KPim6/Libkleo/Libkleo/KeyCache include/KPim6/Libkleo/Libkleo/KeyFilter include/KPim6/Libkleo/Libkleo/KeyFilterManager include/KPim6/Libkleo/Libkleo/KeyGroup include/KPim6/Libkleo/Libkleo/KeyGroupConfig include/KPim6/Libkleo/Libkleo/KeyGroupImportExport include/KPim6/Libkleo/Libkleo/KeyHelpers include/KPim6/Libkleo/Libkleo/KeyList include/KPim6/Libkleo/Libkleo/KeyListModel include/KPim6/Libkleo/Libkleo/KeyListModelInterface include/KPim6/Libkleo/Libkleo/KeyListSortFilterProxyModel include/KPim6/Libkleo/Libkleo/KeyListView include/KPim6/Libkleo/Libkleo/KeyParameters include/KPim6/Libkleo/Libkleo/KeyRearrangeColumnsProxyModel include/KPim6/Libkleo/Libkleo/KeyRequester include/KPim6/Libkleo/Libkleo/KeyResolver include/KPim6/Libkleo/Libkleo/KeyResolverCore include/KPim6/Libkleo/Libkleo/KeySelectionCombo include/KPim6/Libkleo/Libkleo/KeySelectionDialog include/KPim6/Libkleo/Libkleo/KeyUsage include/KPim6/Libkleo/Libkleo/KeyserverConfig include/KPim6/Libkleo/Libkleo/KleoException include/KPim6/Libkleo/Libkleo/MessageBox include/KPim6/Libkleo/Libkleo/NameAndEmailWidget include/KPim6/Libkleo/Libkleo/NewKeyApprovalDialog include/KPim6/Libkleo/Libkleo/OidMap include/KPim6/Libkleo/Libkleo/OpenPGPCertificateCreationDialog include/KPim6/Libkleo/Libkleo/Predicates include/KPim6/Libkleo/Libkleo/ProgressDialog include/KPim6/Libkleo/Libkleo/QtStlHelpers include/KPim6/Libkleo/Libkleo/ReaderPortSelection include/KPim6/Libkleo/Libkleo/SCDaemon include/KPim6/Libkleo/Libkleo/Stl_Util include/KPim6/Libkleo/Libkleo/StringUtils include/KPim6/Libkleo/Libkleo/SubkeyListModel include/KPim6/Libkleo/Libkleo/SystemInfo include/KPim6/Libkleo/Libkleo/Test include/KPim6/Libkleo/Libkleo/TreeView include/KPim6/Libkleo/Libkleo/TreeWidget include/KPim6/Libkleo/Libkleo/UserIDListModel include/KPim6/Libkleo/Libkleo/UserIDListProxyModel include/KPim6/Libkleo/Libkleo/UserIDProxyModel include/KPim6/Libkleo/Libkleo/UserIDSelectionCombo include/KPim6/Libkleo/Libkleo/Validation +include/KPim6/Libkleo/Libkleo/Verification include/KPim6/Libkleo/libkleo/algorithm.h include/KPim6/Libkleo/libkleo/animatedexpander.h include/KPim6/Libkleo/libkleo/applicationpalettewatcher.h include/KPim6/Libkleo/libkleo/assuan.h include/KPim6/Libkleo/libkleo/auditlogentry.h include/KPim6/Libkleo/libkleo/auditlogviewer.h include/KPim6/Libkleo/libkleo/checksumdefinition.h include/KPim6/Libkleo/libkleo/chrono.h include/KPim6/Libkleo/libkleo/classify.h include/KPim6/Libkleo/libkleo/classifyconfig.h include/KPim6/Libkleo/libkleo/compat.h include/KPim6/Libkleo/libkleo/compliance.h include/KPim6/Libkleo/libkleo/cryptoconfig.h include/KPim6/Libkleo/libkleo/cryptoconfigmodule.h include/KPim6/Libkleo/libkleo/debug.h include/KPim6/Libkleo/libkleo/defaultkeyfilter.h include/KPim6/Libkleo/libkleo/defaultkeygenerationjob.h include/KPim6/Libkleo/libkleo/directoryserviceswidget.h include/KPim6/Libkleo/libkleo/dn.h include/KPim6/Libkleo/libkleo/dnattributeorderconfigwidget.h include/KPim6/Libkleo/libkleo/dnattributes.h include/KPim6/Libkleo/libkleo/docaction.h include/KPim6/Libkleo/libkleo/editdirectoryservicedialog.h include/KPim6/Libkleo/libkleo/enum.h include/KPim6/Libkleo/libkleo/errorlabel.h include/KPim6/Libkleo/libkleo/expiration.h include/KPim6/Libkleo/libkleo/expirychecker.h include/KPim6/Libkleo/libkleo/expirycheckerconfig.h include/KPim6/Libkleo/libkleo/expirycheckerconfigbase.h include/KPim6/Libkleo/libkleo/expirycheckersettings.h include/KPim6/Libkleo/libkleo/filenamerequester.h include/KPim6/Libkleo/libkleo/filesystemwatcher.h include/KPim6/Libkleo/libkleo/formatting.h include/KPim6/Libkleo/libkleo/formtextinput.h include/KPim6/Libkleo/libkleo/gnupg.h include/KPim6/Libkleo/libkleo/hex.h include/KPim6/Libkleo/libkleo/kconfigbasedkeyfilter.h include/KPim6/Libkleo/libkleo/keyapprovaldialog.h include/KPim6/Libkleo/libkleo/keycache.h include/KPim6/Libkleo/libkleo/keyfilter.h include/KPim6/Libkleo/libkleo/keyfiltermanager.h include/KPim6/Libkleo/libkleo/keygroup.h include/KPim6/Libkleo/libkleo/keygroupconfig.h include/KPim6/Libkleo/libkleo/keygroupimportexport.h include/KPim6/Libkleo/libkleo/keyhelpers.h include/KPim6/Libkleo/libkleo/keylist.h include/KPim6/Libkleo/libkleo/keylistmodel.h include/KPim6/Libkleo/libkleo/keylistmodelinterface.h include/KPim6/Libkleo/libkleo/keylistsortfilterproxymodel.h include/KPim6/Libkleo/libkleo/keylistview.h include/KPim6/Libkleo/libkleo/keyparameters.h include/KPim6/Libkleo/libkleo/keyrearrangecolumnsproxymodel.h include/KPim6/Libkleo/libkleo/keyrequester.h include/KPim6/Libkleo/libkleo/keyresolver.h include/KPim6/Libkleo/libkleo/keyresolvercore.h include/KPim6/Libkleo/libkleo/keyselectioncombo.h include/KPim6/Libkleo/libkleo/keyselectiondialog.h include/KPim6/Libkleo/libkleo/keyserverconfig.h include/KPim6/Libkleo/libkleo/keyusage.h include/KPim6/Libkleo/libkleo/kleo_export.h include/KPim6/Libkleo/libkleo/kleoexception.h include/KPim6/Libkleo/libkleo/messagebox.h include/KPim6/Libkleo/libkleo/nameandemailwidget.h include/KPim6/Libkleo/libkleo/newkeyapprovaldialog.h include/KPim6/Libkleo/libkleo/oidmap.h include/KPim6/Libkleo/libkleo/openpgpcertificatecreationdialog.h include/KPim6/Libkleo/libkleo/predicates.h include/KPim6/Libkleo/libkleo/progressdialog.h include/KPim6/Libkleo/libkleo/qtstlhelpers.h include/KPim6/Libkleo/libkleo/readerportselection.h include/KPim6/Libkleo/libkleo/scdaemon.h include/KPim6/Libkleo/libkleo/stl_util.h include/KPim6/Libkleo/libkleo/stringutils.h include/KPim6/Libkleo/libkleo/subkeylistmodel.h include/KPim6/Libkleo/libkleo/systeminfo.h include/KPim6/Libkleo/libkleo/test.h include/KPim6/Libkleo/libkleo/treeview.h include/KPim6/Libkleo/libkleo/treewidget.h include/KPim6/Libkleo/libkleo/useridlistmodel.h include/KPim6/Libkleo/libkleo/useridlistproxymodel.h include/KPim6/Libkleo/libkleo/useridproxymodel.h include/KPim6/Libkleo/libkleo/useridselectioncombo.h include/KPim6/Libkleo/libkleo/validation.h +include/KPim6/Libkleo/libkleo/verification.h include/KPim6/Libkleo/libkleo_version.h lib/cmake/KPim6Libkleo/KPim6LibkleoConfig.cmake lib/cmake/KPim6Libkleo/KPim6LibkleoConfigVersion.cmake lib/cmake/KPim6Libkleo/KPim6LibkleoTargets-%%CMAKE_BUILD_TYPE%%.cmake lib/cmake/KPim6Libkleo/KPim6LibkleoTargets.cmake lib/libKPim6Libkleo.so lib/libKPim6Libkleo.so.6 lib/libKPim6Libkleo.so.%%KDE_APPLICATIONS_SHLIB_VER%% share/KPim6Libkleo/find-modules/FindLibAssuan.cmake share/KPim6Libkleo/find-modules/FindLibGpgError.cmake share/libkleopatra/pics/smartcard.xpm share/locale/ar/LC_MESSAGES/libkleopatra6.mo share/locale/ast/LC_MESSAGES/libkleopatra6.mo share/locale/be/LC_MESSAGES/libkleopatra6.mo share/locale/bg/LC_MESSAGES/libkleopatra6.mo share/locale/br/LC_MESSAGES/libkleopatra6.mo share/locale/bs/LC_MESSAGES/libkleopatra6.mo share/locale/ca/LC_MESSAGES/libkleopatra6.mo share/locale/ca@valencia/LC_MESSAGES/libkleopatra6.mo share/locale/cs/LC_MESSAGES/libkleopatra6.mo share/locale/cy/LC_MESSAGES/libkleopatra6.mo share/locale/da/LC_MESSAGES/libkleopatra6.mo share/locale/de/LC_MESSAGES/libkleopatra6.mo share/locale/el/LC_MESSAGES/libkleopatra6.mo share/locale/en_GB/LC_MESSAGES/libkleopatra6.mo share/locale/eo/LC_MESSAGES/libkleopatra6.mo share/locale/es/LC_MESSAGES/libkleopatra6.mo share/locale/et/LC_MESSAGES/libkleopatra6.mo share/locale/eu/LC_MESSAGES/libkleopatra6.mo share/locale/fa/LC_MESSAGES/libkleopatra6.mo share/locale/fi/LC_MESSAGES/libkleopatra6.mo share/locale/fr/LC_MESSAGES/libkleopatra6.mo share/locale/fy/LC_MESSAGES/libkleopatra6.mo share/locale/ga/LC_MESSAGES/libkleopatra6.mo share/locale/gl/LC_MESSAGES/libkleopatra6.mo share/locale/he/LC_MESSAGES/libkleopatra6.mo share/locale/hi/LC_MESSAGES/libkleopatra6.mo share/locale/hne/LC_MESSAGES/libkleopatra6.mo share/locale/hr/LC_MESSAGES/libkleopatra6.mo share/locale/hu/LC_MESSAGES/libkleopatra6.mo share/locale/ia/LC_MESSAGES/libkleopatra6.mo share/locale/ie/LC_MESSAGES/libkleopatra6.mo share/locale/is/LC_MESSAGES/libkleopatra6.mo share/locale/it/LC_MESSAGES/libkleopatra6.mo share/locale/ja/LC_MESSAGES/libkleopatra6.mo share/locale/ka/LC_MESSAGES/libkleopatra6.mo share/locale/kk/LC_MESSAGES/libkleopatra6.mo share/locale/km/LC_MESSAGES/libkleopatra6.mo share/locale/ko/LC_MESSAGES/libkleopatra6.mo share/locale/lt/LC_MESSAGES/libkleopatra6.mo share/locale/lv/LC_MESSAGES/libkleopatra6.mo share/locale/mai/LC_MESSAGES/libkleopatra6.mo share/locale/mk/LC_MESSAGES/libkleopatra6.mo share/locale/mr/LC_MESSAGES/libkleopatra6.mo share/locale/ms/LC_MESSAGES/libkleopatra6.mo share/locale/nb/LC_MESSAGES/libkleopatra6.mo share/locale/nds/LC_MESSAGES/libkleopatra6.mo share/locale/ne/LC_MESSAGES/libkleopatra6.mo share/locale/nl/LC_MESSAGES/libkleopatra6.mo share/locale/nn/LC_MESSAGES/libkleopatra6.mo share/locale/pa/LC_MESSAGES/libkleopatra6.mo share/locale/pl/LC_MESSAGES/libkleopatra6.mo share/locale/pt/LC_MESSAGES/libkleopatra6.mo share/locale/pt_BR/LC_MESSAGES/libkleopatra6.mo share/locale/ro/LC_MESSAGES/libkleopatra6.mo share/locale/ru/LC_MESSAGES/libkleopatra6.mo share/locale/sa/LC_MESSAGES/libkleopatra6.mo share/locale/se/LC_MESSAGES/libkleopatra6.mo share/locale/sk/LC_MESSAGES/libkleopatra6.mo share/locale/sl/LC_MESSAGES/libkleopatra6.mo share/locale/sq/LC_MESSAGES/libkleopatra6.mo share/locale/sr/LC_MESSAGES/libkleopatra6.mo share/locale/sr@ijekavian/LC_MESSAGES/libkleopatra6.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/libkleopatra6.mo share/locale/sr@latin/LC_MESSAGES/libkleopatra6.mo share/locale/sv/LC_MESSAGES/libkleopatra6.mo share/locale/ta/LC_MESSAGES/libkleopatra6.mo share/locale/tg/LC_MESSAGES/libkleopatra6.mo share/locale/tr/LC_MESSAGES/libkleopatra6.mo share/locale/ug/LC_MESSAGES/libkleopatra6.mo share/locale/uk/LC_MESSAGES/libkleopatra6.mo share/locale/zh_CN/LC_MESSAGES/libkleopatra6.mo share/locale/zh_TW/LC_MESSAGES/libkleopatra6.mo share/qlogging-categories6/libkleo.categories share/qlogging-categories6/libkleo.renamecategories diff --git a/sysutils/baloo-widgets/distinfo b/sysutils/baloo-widgets/distinfo index cdba38ff0fde..4b45a97618f9 100644 --- a/sysutils/baloo-widgets/distinfo +++ b/sysutils/baloo-widgets/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1772542077 -SHA256 (KDE/release-service/25.12.3/baloo-widgets-25.12.3.tar.xz) = 0b03fc0adfeda46deeb53fb5e22bb9108715ebc1d8f5b19ca4e5c2216332c711 -SIZE (KDE/release-service/25.12.3/baloo-widgets-25.12.3.tar.xz) = 278244 +TIMESTAMP = 1776248400 +SHA256 (KDE/release-service/26.04.0/baloo-widgets-26.04.0.tar.xz) = aa3f15c66d5bdf46c1fb66d8fb2f4c7693f2b3ba46a8fe56a3c193fc9e92d6d3 +SIZE (KDE/release-service/26.04.0/baloo-widgets-26.04.0.tar.xz) = 278712 diff --git a/sysutils/filelight/distinfo b/sysutils/filelight/distinfo index 5f22a15a2695..5e53b905d1ec 100644 --- a/sysutils/filelight/distinfo +++ b/sysutils/filelight/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1772542078 -SHA256 (KDE/release-service/25.12.3/filelight-25.12.3.tar.xz) = 914876f16e0a07da4c84fbac66b260a5b03ecebeb55c2ff3743781fe5039d3dc -SIZE (KDE/release-service/25.12.3/filelight-25.12.3.tar.xz) = 690920 +TIMESTAMP = 1776248401 +SHA256 (KDE/release-service/26.04.0/filelight-26.04.0.tar.xz) = 141a734d1ba99a51f9068804755e6e1400c813ad22b2059294017398de37c13a +SIZE (KDE/release-service/26.04.0/filelight-26.04.0.tar.xz) = 693532 diff --git a/sysutils/filelight/pkg-plist b/sysutils/filelight/pkg-plist index 07d786928a77..015f4c457484 100644 --- a/sysutils/filelight/pkg-plist +++ b/sysutils/filelight/pkg-plist @@ -1,71 +1,70 @@ bin/filelight -etc/xdg/filelightrc share/applications/org.kde.filelight.desktop share/icons/hicolor/128x128/apps/filelight.png share/icons/hicolor/16x16/apps/filelight.png share/icons/hicolor/22x22/apps/filelight.png share/icons/hicolor/32x32/apps/filelight.png share/icons/hicolor/48x48/apps/filelight.png share/icons/hicolor/64x64/apps/filelight.png share/kio/servicemenus/filelight.desktop share/locale/ar/LC_MESSAGES/filelight.mo share/locale/ast/LC_MESSAGES/filelight.mo share/locale/az/LC_MESSAGES/filelight.mo share/locale/bg/LC_MESSAGES/filelight.mo share/locale/bs/LC_MESSAGES/filelight.mo share/locale/ca/LC_MESSAGES/filelight.mo share/locale/ca@valencia/LC_MESSAGES/filelight.mo share/locale/cs/LC_MESSAGES/filelight.mo share/locale/da/LC_MESSAGES/filelight.mo share/locale/de/LC_MESSAGES/filelight.mo share/locale/el/LC_MESSAGES/filelight.mo share/locale/en_GB/LC_MESSAGES/filelight.mo share/locale/eo/LC_MESSAGES/filelight.mo share/locale/es/LC_MESSAGES/filelight.mo share/locale/et/LC_MESSAGES/filelight.mo share/locale/eu/LC_MESSAGES/filelight.mo share/locale/fi/LC_MESSAGES/filelight.mo share/locale/fr/LC_MESSAGES/filelight.mo share/locale/ga/LC_MESSAGES/filelight.mo share/locale/gl/LC_MESSAGES/filelight.mo share/locale/he/LC_MESSAGES/filelight.mo share/locale/hi/LC_MESSAGES/filelight.mo share/locale/hu/LC_MESSAGES/filelight.mo share/locale/ia/LC_MESSAGES/filelight.mo share/locale/id/LC_MESSAGES/filelight.mo share/locale/ie/LC_MESSAGES/filelight.mo share/locale/is/LC_MESSAGES/filelight.mo share/locale/it/LC_MESSAGES/filelight.mo share/locale/ja/LC_MESSAGES/filelight.mo share/locale/ka/LC_MESSAGES/filelight.mo share/locale/kk/LC_MESSAGES/filelight.mo share/locale/ko/LC_MESSAGES/filelight.mo share/locale/lt/LC_MESSAGES/filelight.mo share/locale/lv/LC_MESSAGES/filelight.mo share/locale/mr/LC_MESSAGES/filelight.mo share/locale/nb/LC_MESSAGES/filelight.mo share/locale/nds/LC_MESSAGES/filelight.mo share/locale/nl/LC_MESSAGES/filelight.mo share/locale/nn/LC_MESSAGES/filelight.mo share/locale/pa/LC_MESSAGES/filelight.mo share/locale/pl/LC_MESSAGES/filelight.mo share/locale/pt/LC_MESSAGES/filelight.mo share/locale/pt_BR/LC_MESSAGES/filelight.mo share/locale/ro/LC_MESSAGES/filelight.mo share/locale/ru/LC_MESSAGES/filelight.mo share/locale/sa/LC_MESSAGES/filelight.mo share/locale/sk/LC_MESSAGES/filelight.mo share/locale/sl/LC_MESSAGES/filelight.mo share/locale/sr/LC_MESSAGES/filelight.mo share/locale/sr@ijekavian/LC_MESSAGES/filelight.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/filelight.mo share/locale/sr@latin/LC_MESSAGES/filelight.mo share/locale/sv/LC_MESSAGES/filelight.mo share/locale/ta/LC_MESSAGES/filelight.mo share/locale/tr/LC_MESSAGES/filelight.mo share/locale/ug/LC_MESSAGES/filelight.mo share/locale/uk/LC_MESSAGES/filelight.mo share/locale/zh_CN/LC_MESSAGES/filelight.mo share/locale/zh_TW/LC_MESSAGES/filelight.mo share/metainfo/org.kde.filelight.appdata.xml share/qlogging-categories6/filelight.categories diff --git a/sysutils/k3b/distinfo b/sysutils/k3b/distinfo index 7cf9718d1e3a..476bf6f04b3e 100644 --- a/sysutils/k3b/distinfo +++ b/sysutils/k3b/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1772542080 -SHA256 (KDE/release-service/25.12.3/k3b-25.12.3.tar.xz) = 51792146c932b58174c475c6e40b47b7dfd6ccce85346b31f711db3c32592be8 -SIZE (KDE/release-service/25.12.3/k3b-25.12.3.tar.xz) = 10794224 +TIMESTAMP = 1776248403 +SHA256 (KDE/release-service/26.04.0/k3b-26.04.0.tar.xz) = 103df0719d7971463302a87dfb758d26b6bb22f0ab7a5eb69ab047ae2338e114 +SIZE (KDE/release-service/26.04.0/k3b-26.04.0.tar.xz) = 10797660 diff --git a/sysutils/kbackup/distinfo b/sysutils/kbackup/distinfo index f04980aab8d6..a2e880d318a3 100644 --- a/sysutils/kbackup/distinfo +++ b/sysutils/kbackup/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1772542081 -SHA256 (KDE/release-service/25.12.3/kbackup-25.12.3.tar.xz) = 00c0ce7efdbfdb8db338fe78802ee8997199f305c61c37a5f58aa5986cb2940d -SIZE (KDE/release-service/25.12.3/kbackup-25.12.3.tar.xz) = 402288 +TIMESTAMP = 1776248405 +SHA256 (KDE/release-service/26.04.0/kbackup-26.04.0.tar.xz) = 605ca76baa936bd3866634f29183942329c3c07ff8e308ed2bfe708bb1b8948c +SIZE (KDE/release-service/26.04.0/kbackup-26.04.0.tar.xz) = 447416 diff --git a/sysutils/kbackup/pkg-plist b/sysutils/kbackup/pkg-plist index 2c94559f76b8..37a5d13fe329 100644 --- a/sysutils/kbackup/pkg-plist +++ b/sysutils/kbackup/pkg-plist @@ -1,66 +1,67 @@ bin/kbackup share/applications/org.kde.kbackup.desktop share/icons/hicolor/128x128/apps/kbackup.png share/icons/hicolor/16x16/apps/kbackup.png share/icons/hicolor/16x16/mimetypes/text-x-kbp.png share/icons/hicolor/22x22/actions/kbackup_cancel.png share/icons/hicolor/22x22/actions/kbackup_runs.png share/icons/hicolor/22x22/actions/kbackup_start.png share/icons/hicolor/32x32/apps/kbackup.png share/icons/hicolor/32x32/mimetypes/text-x-kbp.png share/locale/ar/LC_MESSAGES/kbackup.mo share/locale/ast/LC_MESSAGES/kbackup.mo share/locale/bg/LC_MESSAGES/kbackup.mo share/locale/ca/LC_MESSAGES/kbackup.mo share/locale/ca@valencia/LC_MESSAGES/kbackup.mo share/locale/cs/LC_MESSAGES/kbackup.mo share/locale/da/LC_MESSAGES/kbackup.mo share/locale/de/LC_MESSAGES/kbackup.mo share/locale/el/LC_MESSAGES/kbackup.mo share/locale/en_GB/LC_MESSAGES/kbackup.mo share/locale/eo/LC_MESSAGES/kbackup.mo share/locale/es/LC_MESSAGES/kbackup.mo share/locale/et/LC_MESSAGES/kbackup.mo share/locale/eu/LC_MESSAGES/kbackup.mo share/locale/fi/LC_MESSAGES/kbackup.mo share/locale/fr/LC_MESSAGES/kbackup.mo share/locale/ga/LC_MESSAGES/kbackup.mo share/locale/gl/LC_MESSAGES/kbackup.mo share/locale/he/LC_MESSAGES/kbackup.mo share/locale/hi/LC_MESSAGES/kbackup.mo share/locale/ia/LC_MESSAGES/kbackup.mo share/locale/ie/LC_MESSAGES/kbackup.mo share/locale/is/LC_MESSAGES/kbackup.mo share/locale/it/LC_MESSAGES/kbackup.mo share/locale/ja/LC_MESSAGES/kbackup.mo share/locale/ka/LC_MESSAGES/kbackup.mo share/locale/ko/LC_MESSAGES/kbackup.mo share/locale/lt/LC_MESSAGES/kbackup.mo share/locale/lv/LC_MESSAGES/kbackup.mo share/locale/nl/LC_MESSAGES/kbackup.mo share/locale/nn/LC_MESSAGES/kbackup.mo share/locale/pl/LC_MESSAGES/kbackup.mo share/locale/pt/LC_MESSAGES/kbackup.mo share/locale/pt_BR/LC_MESSAGES/kbackup.mo +share/locale/ro/LC_MESSAGES/kbackup.mo share/locale/ru/LC_MESSAGES/kbackup.mo share/locale/sa/LC_MESSAGES/kbackup.mo share/locale/sk/LC_MESSAGES/kbackup.mo share/locale/sl/LC_MESSAGES/kbackup.mo share/locale/sv/LC_MESSAGES/kbackup.mo share/locale/tr/LC_MESSAGES/kbackup.mo share/locale/uk/LC_MESSAGES/kbackup.mo share/locale/zh_CN/LC_MESSAGES/kbackup.mo share/locale/zh_TW/LC_MESSAGES/kbackup.mo share/man/ca/man1/kbackup.1.gz share/man/de/man1/kbackup.1.gz share/man/es/man1/kbackup.1.gz share/man/it/man1/kbackup.1.gz share/man/man1/kbackup.1.gz share/man/nl/man1/kbackup.1.gz share/man/pt_BR/man1/kbackup.1.gz share/man/sl/man1/kbackup.1.gz share/man/sv/man1/kbackup.1.gz share/man/tr/man1/kbackup.1.gz share/man/uk/man1/kbackup.1.gz share/metainfo/org.kde.kbackup.appdata.xml share/mime/packages/kbackup.xml diff --git a/sysutils/kcron/distinfo b/sysutils/kcron/distinfo index 99ba6938c8a4..84bc9c11eadb 100644 --- a/sysutils/kcron/distinfo +++ b/sysutils/kcron/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1772542083 -SHA256 (KDE/release-service/25.12.3/kcron-25.12.3.tar.xz) = 0b3e9bdaf3a9f2766efb7007dff9bb1278d4753eaa05eca138f24231ac485de2 -SIZE (KDE/release-service/25.12.3/kcron-25.12.3.tar.xz) = 898292 +TIMESTAMP = 1776248406 +SHA256 (KDE/release-service/26.04.0/kcron-26.04.0.tar.xz) = a539d942f31bdc0838afdbffc50bb52f84db5e9d50bd1b98f9dcf1b9bb8b26c4 +SIZE (KDE/release-service/26.04.0/kcron-26.04.0.tar.xz) = 902712 diff --git a/sysutils/kdebugsettings/distinfo b/sysutils/kdebugsettings/distinfo index d79f1f49eb77..1f09d860e02f 100644 --- a/sysutils/kdebugsettings/distinfo +++ b/sysutils/kdebugsettings/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1772542084 -SHA256 (KDE/release-service/25.12.3/kdebugsettings-25.12.3.tar.xz) = c2a258f9ce3b46eed5ab8878684ac5fdcf611285c58b5979042d152fc0d0adbe -SIZE (KDE/release-service/25.12.3/kdebugsettings-25.12.3.tar.xz) = 123656 +TIMESTAMP = 1776248408 +SHA256 (KDE/release-service/26.04.0/kdebugsettings-26.04.0.tar.xz) = b7bfad5d04ae86781c08adc8eab219230e48528f4ab53ad4a12c7e576eeb9787 +SIZE (KDE/release-service/26.04.0/kdebugsettings-26.04.0.tar.xz) = 124344 diff --git a/sysutils/kdf/distinfo b/sysutils/kdf/distinfo index 21328dec2649..db1b2f346bd6 100644 --- a/sysutils/kdf/distinfo +++ b/sysutils/kdf/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1772542086 -SHA256 (KDE/release-service/25.12.3/kdf-25.12.3.tar.xz) = bbea67e19d3236724cfc1067f414f9bcf50364f1b4fd18e9478640288448b154 -SIZE (KDE/release-service/25.12.3/kdf-25.12.3.tar.xz) = 481300 +TIMESTAMP = 1776248409 +SHA256 (KDE/release-service/26.04.0/kdf-26.04.0.tar.xz) = be7ed02c7d800ff02f26e045363d80f2d1d70bc8f2532f530d0bc58449fb4eed +SIZE (KDE/release-service/26.04.0/kdf-26.04.0.tar.xz) = 481688 diff --git a/sysutils/kdialog/distinfo b/sysutils/kdialog/distinfo index b8d623e22a27..cf8f9192d18d 100644 --- a/sysutils/kdialog/distinfo +++ b/sysutils/kdialog/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1772542087 -SHA256 (KDE/release-service/25.12.3/kdialog-25.12.3.tar.xz) = fee5a3d52394916a7adca76eaea471cdd5137b0d27b2ef2936cf100981105ea1 -SIZE (KDE/release-service/25.12.3/kdialog-25.12.3.tar.xz) = 149236 +TIMESTAMP = 1776248411 +SHA256 (KDE/release-service/26.04.0/kdialog-26.04.0.tar.xz) = cd612d72c629a5eab5dd2b6385e93e0926df39a6874ece0cf989d345d3aa225f +SIZE (KDE/release-service/26.04.0/kdialog-26.04.0.tar.xz) = 149132 diff --git a/sysutils/khelpcenter/distinfo b/sysutils/khelpcenter/distinfo index 067e6c4f633f..9a0aafa232cb 100644 --- a/sysutils/khelpcenter/distinfo +++ b/sysutils/khelpcenter/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1772542089 -SHA256 (KDE/release-service/25.12.3/khelpcenter-25.12.3.tar.xz) = 53f4fd37ced3e882b197600439df43105cd18197124fcfb01e47d1b8ce68b1c1 -SIZE (KDE/release-service/25.12.3/khelpcenter-25.12.3.tar.xz) = 4254116 +TIMESTAMP = 1776248413 +SHA256 (KDE/release-service/26.04.0/khelpcenter-26.04.0.tar.xz) = 77e1897fa689ac2f6fde5a9e4fea2e1eb4d3e710e09ac6c579433fdbffbdfc6b +SIZE (KDE/release-service/26.04.0/khelpcenter-26.04.0.tar.xz) = 4254572 diff --git a/sysutils/kpmcore/distinfo b/sysutils/kpmcore/distinfo index 879097561393..300a3ddd81cb 100644 --- a/sysutils/kpmcore/distinfo +++ b/sysutils/kpmcore/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1772542089 -SHA256 (KDE/release-service/25.12.3/kpmcore-25.12.3.tar.xz) = 2e6ff446448b6640e7290784519e19ad326d56f93f8e83cacd11d033197f3e62 -SIZE (KDE/release-service/25.12.3/kpmcore-25.12.3.tar.xz) = 670600 +TIMESTAMP = 1776248413 +SHA256 (KDE/release-service/26.04.0/kpmcore-26.04.0.tar.xz) = 085781d0dc68c9142fca11be0c746c4f4937fa49dcc4d6f97e20add117622b1a +SIZE (KDE/release-service/26.04.0/kpmcore-26.04.0.tar.xz) = 670912 diff --git a/sysutils/ksystemlog/distinfo b/sysutils/ksystemlog/distinfo index 5d666e365ebb..ba723d447978 100644 --- a/sysutils/ksystemlog/distinfo +++ b/sysutils/ksystemlog/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1772542090 -SHA256 (KDE/release-service/25.12.3/ksystemlog-25.12.3.tar.xz) = 70d7ae368b1522dcaced130dd3fa49e552a794c80c819c92700cb0776ab5d385 -SIZE (KDE/release-service/25.12.3/ksystemlog-25.12.3.tar.xz) = 1884724 +TIMESTAMP = 1776248415 +SHA256 (KDE/release-service/26.04.0/ksystemlog-26.04.0.tar.xz) = c3eb32ff947b0cc001c0cd71c8b729d914fcf12319cf11e92de4d1fd6042c342 +SIZE (KDE/release-service/26.04.0/ksystemlog-26.04.0.tar.xz) = 1884476 diff --git a/sysutils/signon-kwallet-extension/distinfo b/sysutils/signon-kwallet-extension/distinfo index e51b75388c47..ecc839843d81 100644 --- a/sysutils/signon-kwallet-extension/distinfo +++ b/sysutils/signon-kwallet-extension/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1772542092 -SHA256 (KDE/release-service/25.12.3/signon-kwallet-extension-25.12.3.tar.xz) = 4fc7566893bf8dd0d6e236d52e13319c809642b7e85f6680bcfbad47888a4836 -SIZE (KDE/release-service/25.12.3/signon-kwallet-extension-25.12.3.tar.xz) = 11264 +TIMESTAMP = 1776248416 +SHA256 (KDE/release-service/26.04.0/signon-kwallet-extension-26.04.0.tar.xz) = 82c4c7136b3d9aa8c84eef7170cb9f042adf74bd7e322bbddad8f9d6cd923802 +SIZE (KDE/release-service/26.04.0/signon-kwallet-extension-26.04.0.tar.xz) = 11268 diff --git a/sysutils/sweeper/distinfo b/sysutils/sweeper/distinfo index 26aa9c8af441..dfef00ce4f65 100644 --- a/sysutils/sweeper/distinfo +++ b/sysutils/sweeper/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1772542093 -SHA256 (KDE/release-service/25.12.3/sweeper-25.12.3.tar.xz) = 18ad9dba43cb524458ad1f38097212fdaf5d01e3d5d71931b341026a48d3dcd0 -SIZE (KDE/release-service/25.12.3/sweeper-25.12.3.tar.xz) = 386804 +TIMESTAMP = 1776248418 +SHA256 (KDE/release-service/26.04.0/sweeper-26.04.0.tar.xz) = 6229818162a721f9505f6f49f5d3187c68a211fc6a96a3195ba9c4e4bd212c2e +SIZE (KDE/release-service/26.04.0/sweeper-26.04.0.tar.xz) = 386824 diff --git a/textproc/arianna/distinfo b/textproc/arianna/distinfo index 2ceb78456f09..86614df26a71 100644 --- a/textproc/arianna/distinfo +++ b/textproc/arianna/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1772542094 -SHA256 (KDE/release-service/25.12.3/arianna-25.12.3.tar.xz) = 03369b86f259256300f280b8d883b25bd02e50cf9dc45096b2496d6302fe8308 -SIZE (KDE/release-service/25.12.3/arianna-25.12.3.tar.xz) = 1184444 +TIMESTAMP = 1776248418 +SHA256 (KDE/release-service/26.04.0/arianna-26.04.0.tar.xz) = 60c888a03f22a6272e55d8efe4fd85c96c9a2b9f0475670bbc38d0120559cdc0 +SIZE (KDE/release-service/26.04.0/arianna-26.04.0.tar.xz) = 1188260 diff --git a/textproc/kompare/distinfo b/textproc/kompare/distinfo index 3bc878f428ab..6e9d81b94773 100644 --- a/textproc/kompare/distinfo +++ b/textproc/kompare/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1772542095 -SHA256 (KDE/release-service/25.12.3/kompare-25.12.3.tar.xz) = 97b01230aa06ba7e3bfff5e2c2ac4cc43b87ed18e4ae98851d5fb4a1314dc353 -SIZE (KDE/release-service/25.12.3/kompare-25.12.3.tar.xz) = 963412 +TIMESTAMP = 1776248420 +SHA256 (KDE/release-service/26.04.0/kompare-26.04.0.tar.xz) = fcde2ab01d1825988d8be4916ebf8f255a3324a53c35c382e8c7909bbca62d57 +SIZE (KDE/release-service/26.04.0/kompare-26.04.0.tar.xz) = 963140 diff --git a/textproc/libkomparediff2/distinfo b/textproc/libkomparediff2/distinfo index 9de19ffab346..2dd5648cd724 100644 --- a/textproc/libkomparediff2/distinfo +++ b/textproc/libkomparediff2/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1772542097 -SHA256 (KDE/release-service/25.12.3/libkomparediff2-25.12.3.tar.xz) = b864e90f77c8bae73d3191b4a55e1a40441184c2251c68a664f89000d62472ac -SIZE (KDE/release-service/25.12.3/libkomparediff2-25.12.3.tar.xz) = 184788 +TIMESTAMP = 1776248422 +SHA256 (KDE/release-service/26.04.0/libkomparediff2-26.04.0.tar.xz) = b05d1eedec1f500de7931da4a4dd8aa9514c021b27e00b3cac7118d0ec425e8c +SIZE (KDE/release-service/26.04.0/libkomparediff2-26.04.0.tar.xz) = 185332 diff --git a/textproc/markdownpart/distinfo b/textproc/markdownpart/distinfo index a80ac1e629eb..68b2d8714cf5 100644 --- a/textproc/markdownpart/distinfo +++ b/textproc/markdownpart/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1772542098 -SHA256 (KDE/release-service/25.12.3/markdownpart-25.12.3.tar.xz) = d04cdc3c09c2be102a7199d73dd24c7f3cd709f95af7e51804f2668663422cfd -SIZE (KDE/release-service/25.12.3/markdownpart-25.12.3.tar.xz) = 34760 +TIMESTAMP = 1776248423 +SHA256 (KDE/release-service/26.04.0/markdownpart-26.04.0.tar.xz) = 97a8ab2378add8f04b978f6784c26aaa34bf3d77ad2b9a395149a0d226cc8f68 +SIZE (KDE/release-service/26.04.0/markdownpart-26.04.0.tar.xz) = 34860 diff --git a/www/angelfish/distinfo b/www/angelfish/distinfo index f464cee8651d..21dfad6a05fe 100644 --- a/www/angelfish/distinfo +++ b/www/angelfish/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1772542098 -SHA256 (KDE/release-service/25.12.3/angelfish-25.12.3.tar.xz) = 344138769158714d45c7bf2625c517b126afd375166c47ac2caa11d007352325 -SIZE (KDE/release-service/25.12.3/angelfish-25.12.3.tar.xz) = 306460 +TIMESTAMP = 1776248424 +SHA256 (KDE/release-service/26.04.0/angelfish-26.04.0.tar.xz) = ab4caa582c6c98672ef83eeeb69242ca8b45013a0cd56e17fb6461c326da4ed1 +SIZE (KDE/release-service/26.04.0/angelfish-26.04.0.tar.xz) = 310812 diff --git a/www/falkon/distinfo b/www/falkon/distinfo index 11bc5d7d4306..9775d65457b2 100644 --- a/www/falkon/distinfo +++ b/www/falkon/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1772542099 -SHA256 (KDE/release-service/25.12.3/falkon-25.12.3.tar.xz) = 25f90957335058fff8536b511135e36d96e74c49fab45690be89b994015777b5 -SIZE (KDE/release-service/25.12.3/falkon-25.12.3.tar.xz) = 2708692 +TIMESTAMP = 1776248424 +SHA256 (KDE/release-service/26.04.0/falkon-26.04.0.tar.xz) = f1f7b91cedc70bf51010f1eecb06f8d5cc4f170f77105b9ffaf0bb1dd6cf075c +SIZE (KDE/release-service/26.04.0/falkon-26.04.0.tar.xz) = 2712636 diff --git a/x11-clocks/kteatime/distinfo b/x11-clocks/kteatime/distinfo index 235ec462e94f..d0889404c9db 100644 --- a/x11-clocks/kteatime/distinfo +++ b/x11-clocks/kteatime/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1772542100 -SHA256 (KDE/release-service/25.12.3/kteatime-25.12.3.tar.xz) = a83e1c8fc7a3f009c2ccdb0a1106b098aeaf9d5b3c2e2658e2ce2f8e6a0c70cd -SIZE (KDE/release-service/25.12.3/kteatime-25.12.3.tar.xz) = 311604 +TIMESTAMP = 1776248426 +SHA256 (KDE/release-service/26.04.0/kteatime-26.04.0.tar.xz) = 9d5dcd070c34c18374f087d14a65ae2d69d3c75cf27f2f8a96365ae6203a2c3a +SIZE (KDE/release-service/26.04.0/kteatime-26.04.0.tar.xz) = 311500 diff --git a/x11-clocks/ktimer/distinfo b/x11-clocks/ktimer/distinfo index 12372d6386c2..e64046587a52 100644 --- a/x11-clocks/ktimer/distinfo +++ b/x11-clocks/ktimer/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1772542102 -SHA256 (KDE/release-service/25.12.3/ktimer-25.12.3.tar.xz) = fe73cdeb8e984e81fc3db2c2c4f97bc419093b9544a6f3e824fa58bd9be5235c -SIZE (KDE/release-service/25.12.3/ktimer-25.12.3.tar.xz) = 454900 +TIMESTAMP = 1776248427 +SHA256 (KDE/release-service/26.04.0/ktimer-26.04.0.tar.xz) = 00654fffedec9e40bd04631b3f31d4c9e42289b5b7255a8ec3906db00e307827 +SIZE (KDE/release-service/26.04.0/ktimer-26.04.0.tar.xz) = 454896 diff --git a/x11-fm/dolphin/distinfo b/x11-fm/dolphin/distinfo index bb936e9620d4..6d35d4a8af18 100644 --- a/x11-fm/dolphin/distinfo +++ b/x11-fm/dolphin/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1772542103 -SHA256 (KDE/release-service/25.12.3/dolphin-25.12.3.tar.xz) = 9961de7cc076d9d7d598bb7f53afdebcfba20567093231f42ba72e031e089a3b -SIZE (KDE/release-service/25.12.3/dolphin-25.12.3.tar.xz) = 5865916 +TIMESTAMP = 1776248429 +SHA256 (KDE/release-service/26.04.0/dolphin-26.04.0.tar.xz) = 5c5e5024835fddbcd9dfaa9c16ab2bcff2475645b0e28d1b269de42e412ec543 +SIZE (KDE/release-service/26.04.0/dolphin-26.04.0.tar.xz) = 5892688 diff --git a/x11-fm/dolphin/pkg-plist b/x11-fm/dolphin/pkg-plist index 37444dc85fca..576209c4a2bc 100644 --- a/x11-fm/dolphin/pkg-plist +++ b/x11-fm/dolphin/pkg-plist @@ -1,190 +1,191 @@ 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/kconf_update_bin/dolphin_25.04_update_statusandlocationbarssettings +lib/kconf_update_bin/dolphin_update_splitviewsettings lib/libdolphinprivate.so.%%KDE_APPLICATIONS_VERSION%% lib/libdolphinprivate.so.%%SHLIB_SHVER%% lib/libdolphinvcs.so lib/libdolphinvcs.so.%%KDE_APPLICATIONS_VERSION%% lib/libdolphinvcs.so.%%SHLIB_SHVER%% %%QT_PLUGINDIR%%/dolphin/kcms/kcm_dolphingeneral.so %%QT_PLUGINDIR%%/dolphin/kcms/kcm_dolphinviewmodes.so %%QT_PLUGINDIR%%/kf6/kfileitemaction/hidefileitemaction.so %%QT_PLUGINDIR%%/kf6/kfileitemaction/setfoldericonitemaction.so %%QT_PLUGINDIR%%/kf6/kfileitemaction/movetonewfolderitemaction.so %%QT_PLUGINDIR%%/kf6/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/icons/hicolor/scalable/apps/org.kde.dolphin.svg share/kconf_update/dolphin_detailsmodesettings.upd share/kconf_update/dolphin_replace_view_mode_with_view_settings_in_toolbar.py share/kconf_update/dolphin_replace_view_mode_with_view_settings_in_toolbar.upd share/kconf_update/dolphin_statusandlocationbarssettings.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/ast/LC_MESSAGES/dolphin.mo share/locale/ast/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/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/ga/LC_MESSAGES/dolphin_servicemenuinstaller.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/he/LC_MESSAGES/dolphin_servicemenuinstaller.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/sa/LC_MESSAGES/dolphin.mo share/locale/sa/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-categories6/dolphin.categories share/zsh/site-functions/_dolphin diff --git a/x11-fm/konqueror/distinfo b/x11-fm/konqueror/distinfo index d7a2d6be7547..a3ce74ab50de 100644 --- a/x11-fm/konqueror/distinfo +++ b/x11-fm/konqueror/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1772542105 -SHA256 (KDE/release-service/25.12.3/konqueror-25.12.3.tar.xz) = 8f383beada857b522a59b9259ae1f1f83554c5d25d3c39a39fb6f172ec0f889d -SIZE (KDE/release-service/25.12.3/konqueror-25.12.3.tar.xz) = 9799728 +TIMESTAMP = 1776248430 +SHA256 (KDE/release-service/26.04.0/konqueror-26.04.0.tar.xz) = c6c3e053caf5cd2e01baf155f9579213f7fca3f85d8ef1edc95396a4fff08bfa +SIZE (KDE/release-service/26.04.0/konqueror-26.04.0.tar.xz) = 9848088 diff --git a/x11-fm/konqueror/pkg-plist b/x11-fm/konqueror/pkg-plist index 02afae960ffc..b19e74d8bb0f 100644 --- a/x11-fm/konqueror/pkg-plist +++ b/x11-fm/konqueror/pkg-plist @@ -1,2062 +1,2089 @@ bin/fsview bin/kcreatewebarchive bin/kfmclient bin/konqueror etc/xdg/autostart/konqy_preload.desktop etc/xdg/konqautofiltersrc etc/xdg/konqsidebartngrc etc/xdg/translaterc etc/xdg/useragenttemplatesrc include/KF6/konq_events.h include/KF6/konq_historyentry.h include/KF6/konq_historyprovider.h include/KF6/konq_kpart_plugin.h include/KF6/konq_popupmenu.h include/KF6/konq_version.h include/KF6/konqsettings.h include/KF6/konqsettings_version.h include/KF6/konqsidebarplugin.h include/KF6/libkonq_export.h include/KF6/libkonqsettings_export.h include/KF6/selectorinterface.h lib/cmake/KF6Konq/KF6KonqConfig.cmake lib/cmake/KF6Konq/KF6KonqConfigVersion.cmake lib/cmake/KF6Konq/KF6KonqSettingsConfig.cmake lib/cmake/KF6Konq/KF6KonqSettingsConfigVersion.cmake lib/cmake/KF6Konq/KF6KonqSettingsTargets-%%CMAKE_BUILD_TYPE%%.cmake lib/cmake/KF6Konq/KF6KonqSettingsTargets.cmake lib/cmake/KF6Konq/KF6KonqTargets-%%CMAKE_BUILD_TYPE%%.cmake lib/cmake/KF6Konq/KF6KonqTargets.cmake lib/libKF6Konq.so lib/libKF6Konq.so.5.97.0 lib/libKF6Konq.so.7 lib/libKF6KonqSettings.so lib/libKF6KonqSettings.so.5.97.0 lib/libKF6KonqSettings.so.7 lib/libkonqsidebarplugin.so lib/libkonqsidebarplugin.so.%%KDE_APPLICATIONS_VERSION%% lib/libkonqsidebarplugin.so.6 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%%/kf6/kfileitemaction/akregatorplugin.so %%QT_PLUGINDIR%%/kf6/kio/bookmarks.so %%QT_PLUGINDIR%%/kf6/parts/fsviewpart.so %%QT_PLUGINDIR%%/kf6/parts/konq_sidebar.so %%QT_PLUGINDIR%%/kf6/parts/webenginepart.so %%QT_PLUGINDIR%%/kf6/thumbcreator/webarchivethumbnail.so %%QT_PLUGINDIR%%/khtmlsettingsplugin.so %%QT_PLUGINDIR%%/konqueror/kpartplugins/searchbarplugin.so %%QT_PLUGINDIR%%/konqueror/sidebar/konqsidebar_bookmarks.so %%QT_PLUGINDIR%%/konqueror/sidebar/konqsidebar_history.so %%QT_PLUGINDIR%%/konqueror/sidebar/konqsidebar_places.so %%QT_PLUGINDIR%%/konqueror/sidebar/konqsidebar_tree.so %%QT_PLUGINDIR%%/konqueror/sidebar/konqsidebar_verticaltabbar.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/kcm_speeddial.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_cookies.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_kcms/khtml_tabs.so %%QT_PLUGINDIR%%/konqueror_kcms/khtml_useragent.so %%QT_PLUGINDIR%%/konqueror_kget_browser_integration.so %%QT_PLUGINDIR%%/temporarysavedir.so %%QT_PLUGINDIR%%/uachangerplugin.so %%QT_PLUGINDIR%%/webarchiverplugin.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/konqueror_kget_browser_integrationwebenginepart_kpartplugins.so %%QT_PLUGINDIR%%/webenginepart/kpartplugins/temporarysavedirwebenginepart_kpartplugins.so %%QT_PLUGINDIR%%/webenginepart/kpartplugins/uachangerpluginwebenginepart_kpartplugins.so %%QT_PLUGINDIR%%/webenginepart/kpartplugins/webarchiverpluginwebenginepart_kpartplugins.so share/akregator/pics/feed.png share/applications/bookmarks.desktop share/applications/kcm_bookmarks.desktop +share/applications/kcm_speeddial.desktop 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/applications/speeddial.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/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/kf6/kbookmark/directory_bookmarkbar.desktop share/kio_bookmarks/kio_bookmarks.css 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 %%DATADIR%%/about/body-background.png %%DATADIR%%/about/box-bottom-left.png %%DATADIR%%/about/box-bottom-middle.png %%DATADIR%%/about/box-bottom-right.png %%DATADIR%%/about/box-center.png %%DATADIR%%/about/box-middle-left.png %%DATADIR%%/about/box-middle-right.png %%DATADIR%%/about/box-top-left.png %%DATADIR%%/about/box-top-middle.png %%DATADIR%%/about/box-top-right.png %%DATADIR%%/about/intro.html %%DATADIR%%/about/kde_infopage.css %%DATADIR%%/about/kde_infopage_rtl.css %%DATADIR%%/about/konq.css %%DATADIR%%/about/launch.html %%DATADIR%%/about/plugins.html %%DATADIR%%/about/plugins_rtl.html +%%DATADIR%%/about/speeddial.css +%%DATADIR%%/about/speeddial.html %%DATADIR%%/about/tips.html %%DATADIR%%/about/top-left-konqueror.png %%DATADIR%%/about/top-middle.png %%DATADIR%%/icons/hicolor/16x16/actions/google.png %%DATADIR%%/icons/hicolor/22x22/actions/google.png %%DATADIR%%/icons/hicolor/32x32/actions/google.png %%DATADIR%%/icons/hicolor/48x48/actions/google.png %%DATADIR%%/icons/hicolor/64x64/actions/google.png %%DATADIR%%/icons/hicolor/scalable/actions/google.svgz %%DATADIR%%/partsrcfiles/akregatorkonqfeedicon.rc %%DATADIR%%/partsrcfiles/autorefresh.rc %%DATADIR%%/partsrcfiles/babelfishplugin.rc %%DATADIR%%/partsrcfiles/dirfilterplugin.rc %%DATADIR%%/partsrcfiles/khtmlsettingsplugin.rc %%DATADIR%%/partsrcfiles/kimgallery.rc %%DATADIR%%/partsrcfiles/konq_shellcmdplugin.rc %%DATADIR%%/partsrcfiles/konqueror_kget_browser_integration.rc %%DATADIR%%/partsrcfiles/searchbarplugin.rc %%DATADIR%%/partsrcfiles/temporarysavedir.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/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/kio6_bookmarks.mo share/locale/ar/LC_MESSAGES/konqsidebar.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/speeddial.mo share/locale/ar/LC_MESSAGES/temporarysavedir.mo share/locale/ar/LC_MESSAGES/uachangerplugin.mo share/locale/ar/LC_MESSAGES/webarchiver.mo share/locale/ar/LC_MESSAGES/webenginepart.mo share/locale/ast/LC_MESSAGES/akregator_konqplugin.mo share/locale/ast/LC_MESSAGES/autorefresh.mo share/locale/ast/LC_MESSAGES/babelfish.mo share/locale/ast/LC_MESSAGES/dirfilterplugin.mo share/locale/ast/LC_MESSAGES/fsview.mo share/locale/ast/LC_MESSAGES/imgalleryplugin.mo share/locale/ast/LC_MESSAGES/kcmbookmarks.mo share/locale/ast/LC_MESSAGES/kcmkonq.mo share/locale/ast/LC_MESSAGES/kcmkonqhtml.mo share/locale/ast/LC_MESSAGES/kcmperformance.mo share/locale/ast/LC_MESSAGES/kfmclient.mo share/locale/ast/LC_MESSAGES/kgetplugin.mo share/locale/ast/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/ast/LC_MESSAGES/khtmltts.mo share/locale/ast/LC_MESSAGES/kio6_bookmarks.mo share/locale/ast/LC_MESSAGES/konqueror.mo share/locale/ast/LC_MESSAGES/kshellcmdplugin.mo share/locale/ast/LC_MESSAGES/libkonq.mo share/locale/ast/LC_MESSAGES/searchbarplugin.mo share/locale/ast/LC_MESSAGES/uachangerplugin.mo share/locale/ast/LC_MESSAGES/webarchiver.mo share/locale/ast/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/kio6_bookmarks.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/kio6_bookmarks.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/kio6_bookmarks.mo share/locale/bg/LC_MESSAGES/konqsidebar.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/speeddial.mo share/locale/bg/LC_MESSAGES/temporarysavedir.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/kio6_bookmarks.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/kio6_bookmarks.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/kio6_bookmarks.mo share/locale/ca/LC_MESSAGES/konqsidebar.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/speeddial.mo share/locale/ca/LC_MESSAGES/temporarysavedir.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/kio6_bookmarks.mo share/locale/ca@valencia/LC_MESSAGES/konqsidebar.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/speeddial.mo share/locale/ca@valencia/LC_MESSAGES/temporarysavedir.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/kio6_bookmarks.mo share/locale/cs/LC_MESSAGES/konqsidebar.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/speeddial.mo share/locale/cs/LC_MESSAGES/temporarysavedir.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/kio6_bookmarks.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/kio6_bookmarks.mo share/locale/de/LC_MESSAGES/konqsidebar.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/speeddial.mo share/locale/de/LC_MESSAGES/temporarysavedir.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/kio6_bookmarks.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/kio6_bookmarks.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/kio6_bookmarks.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/webarchiver.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/kio6_bookmarks.mo share/locale/es/LC_MESSAGES/konqsidebar.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/speeddial.mo share/locale/es/LC_MESSAGES/temporarysavedir.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/kio6_bookmarks.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/kio6_bookmarks.mo share/locale/eu/LC_MESSAGES/konqsidebar.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/speeddial.mo share/locale/eu/LC_MESSAGES/temporarysavedir.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/kio6_bookmarks.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/kio6_bookmarks.mo share/locale/fi/LC_MESSAGES/konqsidebar.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/speeddial.mo share/locale/fi/LC_MESSAGES/temporarysavedir.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/kio6_bookmarks.mo share/locale/fr/LC_MESSAGES/konqsidebar.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/speeddial.mo share/locale/fr/LC_MESSAGES/temporarysavedir.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/kio6_bookmarks.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/kio6_bookmarks.mo share/locale/ga/LC_MESSAGES/konqsidebar.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/speeddial.mo share/locale/ga/LC_MESSAGES/temporarysavedir.mo share/locale/ga/LC_MESSAGES/uachangerplugin.mo share/locale/ga/LC_MESSAGES/webarchiver.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/kio6_bookmarks.mo share/locale/gl/LC_MESSAGES/konqsidebar.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/temporarysavedir.mo share/locale/gl/LC_MESSAGES/uachangerplugin.mo share/locale/gl/LC_MESSAGES/webarchiver.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/kio6_bookmarks.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/kio6_bookmarks.mo share/locale/he/LC_MESSAGES/konqsidebar.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/speeddial.mo share/locale/he/LC_MESSAGES/temporarysavedir.mo share/locale/he/LC_MESSAGES/uachangerplugin.mo share/locale/he/LC_MESSAGES/webarchiver.mo share/locale/he/LC_MESSAGES/webenginepart.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/kio6_bookmarks.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/hi/LC_MESSAGES/webarchiver.mo share/locale/hi/LC_MESSAGES/webenginepart.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/kio6_bookmarks.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/kio6_bookmarks.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/kio6_bookmarks.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/kio6_bookmarks.mo share/locale/ia/LC_MESSAGES/konqsidebar.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/speeddial.mo share/locale/ia/LC_MESSAGES/temporarysavedir.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/kio6_bookmarks.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/kio6_bookmarks.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/kio6_bookmarks.mo share/locale/it/LC_MESSAGES/konqsidebar.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/speeddial.mo share/locale/it/LC_MESSAGES/temporarysavedir.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/kio6_bookmarks.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/kio6_bookmarks.mo share/locale/ka/LC_MESSAGES/konqsidebar.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/speeddial.mo share/locale/ka/LC_MESSAGES/temporarysavedir.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/kio6_bookmarks.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/kio6_bookmarks.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/kio6_bookmarks.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/kio6_bookmarks.mo share/locale/ko/LC_MESSAGES/konqsidebar.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/temporarysavedir.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/kio6_bookmarks.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/kio6_bookmarks.mo share/locale/lt/LC_MESSAGES/konqsidebar.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/temporarysavedir.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/kio6_bookmarks.mo share/locale/lv/LC_MESSAGES/konqsidebar.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/temporarysavedir.mo share/locale/lv/LC_MESSAGES/uachangerplugin.mo share/locale/lv/LC_MESSAGES/webarchiver.mo share/locale/lv/LC_MESSAGES/webenginepart.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/kio6_bookmarks.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/kio6_bookmarks.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/kio6_bookmarks.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/kio6_bookmarks.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/kio6_bookmarks.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/kio6_bookmarks.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/kio6_bookmarks.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/kio6_bookmarks.mo share/locale/nl/LC_MESSAGES/konqsidebar.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/speeddial.mo share/locale/nl/LC_MESSAGES/temporarysavedir.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/kio6_bookmarks.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/kio6_bookmarks.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/kio6_bookmarks.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/kio6_bookmarks.mo share/locale/pl/LC_MESSAGES/konqsidebar.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/temporarysavedir.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/kio6_bookmarks.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/kio6_bookmarks.mo share/locale/pt_BR/LC_MESSAGES/konqsidebar.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/speeddial.mo share/locale/pt_BR/LC_MESSAGES/temporarysavedir.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/kio6_bookmarks.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/kio6_bookmarks.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/sa/LC_MESSAGES/akregator_konqplugin.mo share/locale/sa/LC_MESSAGES/autorefresh.mo share/locale/sa/LC_MESSAGES/babelfish.mo share/locale/sa/LC_MESSAGES/dirfilterplugin.mo share/locale/sa/LC_MESSAGES/fsview.mo share/locale/sa/LC_MESSAGES/imgalleryplugin.mo share/locale/sa/LC_MESSAGES/kcmbookmarks.mo share/locale/sa/LC_MESSAGES/kcmkonq.mo share/locale/sa/LC_MESSAGES/kcmkonqhtml.mo share/locale/sa/LC_MESSAGES/kcmperformance.mo share/locale/sa/LC_MESSAGES/kfmclient.mo share/locale/sa/LC_MESSAGES/kgetplugin.mo share/locale/sa/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/sa/LC_MESSAGES/khtmltts.mo share/locale/sa/LC_MESSAGES/kio6_bookmarks.mo share/locale/sa/LC_MESSAGES/konqueror.mo share/locale/sa/LC_MESSAGES/kshellcmdplugin.mo share/locale/sa/LC_MESSAGES/libkonq.mo share/locale/sa/LC_MESSAGES/searchbarplugin.mo share/locale/sa/LC_MESSAGES/uachangerplugin.mo share/locale/sa/LC_MESSAGES/webarchiver.mo share/locale/sa/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/kio6_bookmarks.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/kio6_bookmarks.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/kio6_bookmarks.mo share/locale/sl/LC_MESSAGES/konqsidebar.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/speeddial.mo share/locale/sl/LC_MESSAGES/temporarysavedir.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/kio6_bookmarks.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/kio6_bookmarks.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/kio6_bookmarks.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/kio6_bookmarks.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/kio6_bookmarks.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/kio6_bookmarks.mo share/locale/sv/LC_MESSAGES/konqsidebar.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/temporarysavedir.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/kio6_bookmarks.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/kio6_bookmarks.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/kio6_bookmarks.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/kio6_bookmarks.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/kio6_bookmarks.mo share/locale/tr/LC_MESSAGES/konqsidebar.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/speeddial.mo share/locale/tr/LC_MESSAGES/temporarysavedir.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/kio6_bookmarks.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/kio6_bookmarks.mo share/locale/uk/LC_MESSAGES/konqsidebar.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/speeddial.mo share/locale/uk/LC_MESSAGES/temporarysavedir.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/kio6_bookmarks.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/kio6_bookmarks.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/kio6_bookmarks.mo share/locale/zh_CN/LC_MESSAGES/konqsidebar.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/speeddial.mo share/locale/zh_CN/LC_MESSAGES/temporarysavedir.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/kio6_bookmarks.mo share/locale/zh_TW/LC_MESSAGES/konqsidebar.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/speeddial.mo share/locale/zh_TW/LC_MESSAGES/temporarysavedir.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-categories6/akregatorplugin.categories share/qlogging-categories6/fsview.categories share/qlogging-categories6/konqueror.categories share/webenginepart/error.html diff --git a/x11/konsole/distinfo b/x11/konsole/distinfo index cf339a5d67ec..c551d8f2b50f 100644 --- a/x11/konsole/distinfo +++ b/x11/konsole/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1772542106 -SHA256 (KDE/release-service/25.12.3/konsole-25.12.3.tar.xz) = c3e13be55cbe553ebd6ba5f04f9194c79a4ba15d1ed8f3d151ac7afae016f232 -SIZE (KDE/release-service/25.12.3/konsole-25.12.3.tar.xz) = 1865608 +TIMESTAMP = 1776248432 +SHA256 (KDE/release-service/26.04.0/konsole-26.04.0.tar.xz) = a413aea8c336b2f452f2daeb9685de6c4a17ba8bb2c1a8a54c3c449693f922eb +SIZE (KDE/release-service/26.04.0/konsole-26.04.0.tar.xz) = 1903108 diff --git a/x11/yakuake/Makefile b/x11/yakuake/Makefile index c7b660c15a31..02664f3f4001 100644 --- a/x11/yakuake/Makefile +++ b/x11/yakuake/Makefile @@ -1,25 +1,25 @@ PORTNAME= yakuake DISTVERSION= ${KDE_APPLICATIONS_VERSION} CATEGORIES= x11 kde kde-applications MAINTAINER= kde@FreeBSD.org COMMENT= Drop-down terminal emulator for KDE WWW= https://www.kde.org/applications/system/yakuake LICENSE= GPLv2 RUN_DEPENDS= konsole:x11/konsole USES= cmake compiler:c++11-lang gettext kde:6 qt:6 tar:xz xorg -USE_KDE= archive attica auth codecs completion config configwidgets \ +USE_KDE= archive attica auth codecs colorscheme completion config configwidgets \ coreaddons crash dbusaddons globalaccel i18n iconthemes \ jobwidgets kio newstuff notifications notifyconfig parts \ service solid sonnet statusnotifieritem textwidgets wayland \ widgetsaddons windowsystem xmlgui \ - ecm:build + ecm:build plasma-wayland-protocols:build USE_QT= base USE_XORG= x11 OPTIONS_DEFINE= DOCS .include diff --git a/x11/yakuake/distinfo b/x11/yakuake/distinfo index a9c26d8963de..07ab07a75db8 100644 --- a/x11/yakuake/distinfo +++ b/x11/yakuake/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1772542108 -SHA256 (KDE/release-service/25.12.3/yakuake-25.12.3.tar.xz) = 362c9d376c4ff451d42777f8f8f9f21f2042cecb117f1b5cf2da77b10a43c9df -SIZE (KDE/release-service/25.12.3/yakuake-25.12.3.tar.xz) = 404568 +TIMESTAMP = 1776248434 +SHA256 (KDE/release-service/26.04.0/yakuake-26.04.0.tar.xz) = 98c56fd23155e528f5136583de7700109cc4812dd5bc6c7d8940046f020223c5 +SIZE (KDE/release-service/26.04.0/yakuake-26.04.0.tar.xz) = 411352