diff --git a/Mk/Uses/kde.mk b/Mk/Uses/kde.mk index fc4d64a24b56..c028b08eb74f 100644 --- a/Mk/Uses/kde.mk +++ b/Mk/Uses/kde.mk @@ -1,1046 +1,1046 @@ # 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} # 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_BASED_PATCHLEVEL?= ${KDE_APPLICATIONS_VERSION:R:S/.//}0${KDE_APPLICATIONS_VERSION:E} # Legacy KDE Plasma. KDE_PLASMA5_VERSION?= 5.27.12 KDE_PLASMA5_BRANCH?= stable # Current KDE Plasma desktop. KDE_PLASMA6_VERSION?= 6.3.2 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.11.0 KDE_FRAMEWORKS6_BRANCH?= stable # Current KDE applications. Update _${PORTNAME}_PROJECT_VERSION for the following ports: # devel/kdevelop, games/libkdegames, games/libkmahjongg, graphics/kgraphviewer -KDE_APPLICATIONS6_VERSION?= 24.12.2 -KDE_APPLICATIONS6_SHLIB_VER?= 6.3.2 +KDE_APPLICATIONS6_VERSION?= 24.12.3 +KDE_APPLICATIONS6_SHLIB_VER?= 6.3.3 # 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 # ============================================================================== # === 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} . 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/frameworks/${PORTNAME}/html/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} DESCR= ${.CURDIR:H:H}/x11/kf6-frameworks/pkg-descr . 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 networkmanagerqt _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 \ notifications notifyconfig package parts people \ plasma-wayland-protocols 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 \ breeze breeze-gtk decoration discover drkonqi \ globalacceld infocenter kde-cli-tools \ kde-gtk-config kdeplasma-addons kgamma kmenuedit \ kpipewire kscreen kscreenlocker ksshaskpass \ ksystemstats kwallet-pam kwin 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_GEAR5_ALL= libkdcraw libkexiv2 _USE_GEAR6_ALL= baloo-widgets kate kosm kpublictransport \ libkcddb libkcompactdisc 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-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}/lib/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-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-drkonqi_PORT= sysutils/plasma${_KDE_VERSION}-drkonqi kde-drkonqi_PATH= ${KDE_PREFIX}/lib/libexec/drkonqi 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-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_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/libmilouqmlplugin.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-add-printer 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-kate_PORT= editors/kate kde-kate_PATH= ${QT_PLUGINDIR}/ktexteditor/katebacktracebrowserplugin.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@qt${_KDE_VERSION} kde-libkdcraw_LIB5= libKF${_KDE_VERSION}KDcraw.so kde-libkdcraw_LIB6= libKDcrawQt${_KDE_VERSION}.so kde-libkdcraw_LIB= ${kde-libkdcraw_LIB${_KDE_VERSION}} 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@qt${_KDE_VERSION} kde-libkexiv2_LIB5= libKF${_KDE_VERSION}KExiv2.so kde-libkexiv2_LIB6= libKExiv2Qt${_KDE_VERSION}.so kde-libkexiv2_LIB= ${kde-libkexiv2_LIB${_KDE_VERSION}} 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 10b4679c7bec..0d15fc83f843 100644 --- a/accessibility/kmag/distinfo +++ b/accessibility/kmag/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1738936909 -SHA256 (KDE/release-service/24.12.2/kmag-24.12.2.tar.xz) = 9dfbd20c7074f6c66ba93dc1a121a0e77ec4d5c7881637f57799512412ea4861 -SIZE (KDE/release-service/24.12.2/kmag-24.12.2.tar.xz) = 677740 +TIMESTAMP = 1741275218 +SHA256 (KDE/release-service/24.12.3/kmag-24.12.3.tar.xz) = 7fe889bef8b4ca9c63f8fedbf91295d543507fc381293463b1a9751a040a4c11 +SIZE (KDE/release-service/24.12.3/kmag-24.12.3.tar.xz) = 677832 diff --git a/accessibility/kmousetool/distinfo b/accessibility/kmousetool/distinfo index 16f85651b96c..b513cd24c8a7 100644 --- a/accessibility/kmousetool/distinfo +++ b/accessibility/kmousetool/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1738936912 -SHA256 (KDE/release-service/24.12.2/kmousetool-24.12.2.tar.xz) = 57f6a2c917fdf2002ce484960e9b402f14abe5049735bddd352d7fe6f77d5353 -SIZE (KDE/release-service/24.12.2/kmousetool-24.12.2.tar.xz) = 134540 +TIMESTAMP = 1741275221 +SHA256 (KDE/release-service/24.12.3/kmousetool-24.12.3.tar.xz) = 92b53c521659167616ead9e3fc513afacbdf17d41c6577de9cfbad37ed35f22a +SIZE (KDE/release-service/24.12.3/kmousetool-24.12.3.tar.xz) = 134548 diff --git a/accessibility/kmouth/distinfo b/accessibility/kmouth/distinfo index 686e367f8b89..d493c6f45f78 100644 --- a/accessibility/kmouth/distinfo +++ b/accessibility/kmouth/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1738936913 -SHA256 (KDE/release-service/24.12.2/kmouth-24.12.2.tar.xz) = 82fd0d18cf44b23feda8b64066a539bf333d6f24bd138a29453526bccb27055d -SIZE (KDE/release-service/24.12.2/kmouth-24.12.2.tar.xz) = 1940452 +TIMESTAMP = 1741275226 +SHA256 (KDE/release-service/24.12.3/kmouth-24.12.3.tar.xz) = 70351fb29b183188ad38ea64eada79317bbaef1afac12e5d00c1c95ae674a2ba +SIZE (KDE/release-service/24.12.3/kmouth-24.12.3.tar.xz) = 1940356 diff --git a/archivers/ark/distinfo b/archivers/ark/distinfo index 3511f84ac13e..2c4c01a823dd 100644 --- a/archivers/ark/distinfo +++ b/archivers/ark/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1738936917 -SHA256 (KDE/release-service/24.12.2/ark-24.12.2.tar.xz) = adad7aaf594fa55e5f79a60dd1a305174adbd8b6d582761aeb08bcbd4b413ca0 -SIZE (KDE/release-service/24.12.2/ark-24.12.2.tar.xz) = 3010740 +TIMESTAMP = 1741275227 +SHA256 (KDE/release-service/24.12.3/ark-24.12.3.tar.xz) = 4eb1d43878f55169bfb27a65e6f0d7f6093a69d56d905fdff249138653fe4abf +SIZE (KDE/release-service/24.12.3/ark-24.12.3.tar.xz) = 3010672 diff --git a/astro/kosmindoormap/distinfo b/astro/kosmindoormap/distinfo index 9eebf135eeae..97b5f92a0722 100644 --- a/astro/kosmindoormap/distinfo +++ b/astro/kosmindoormap/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1738936918 -SHA256 (KDE/release-service/24.12.2/kosmindoormap-24.12.2.tar.xz) = 8a43b2e157727e44ac4a3ee81ac7049a8a6a425bcb4257b3e824f615cdc2fcee -SIZE (KDE/release-service/24.12.2/kosmindoormap-24.12.2.tar.xz) = 694728 +TIMESTAMP = 1741275232 +SHA256 (KDE/release-service/24.12.3/kosmindoormap-24.12.3.tar.xz) = d935c46736040ba0013bb02c3aa30ebd3e9417f0f13cac0e37c24cf41de9747d +SIZE (KDE/release-service/24.12.3/kosmindoormap-24.12.3.tar.xz) = 694640 diff --git a/astro/marble/distinfo b/astro/marble/distinfo index 8c75ad519b06..160bf8d8736f 100644 --- a/astro/marble/distinfo +++ b/astro/marble/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1738936949 -SHA256 (KDE/release-service/24.12.2/marble-24.12.2.tar.xz) = 83d0a459dc87a7ac0e421c4b5e634f14b8d513a1f93fa8ff1bb43cdc87b8db9f -SIZE (KDE/release-service/24.12.2/marble-24.12.2.tar.xz) = 53627908 +TIMESTAMP = 1741275263 +SHA256 (KDE/release-service/24.12.3/marble-24.12.3.tar.xz) = 94e07cfce3af3fd6fd05d83f032301b9a4781442aba3910c526064cc92de95f1 +SIZE (KDE/release-service/24.12.3/marble-24.12.3.tar.xz) = 53629616 diff --git a/audio/audiocd-kio/Makefile b/audio/audiocd-kio/Makefile index 1c140e2f2545..674e389ad7bd 100644 --- a/audio/audiocd-kio/Makefile +++ b/audio/audiocd-kio/Makefile @@ -1,34 +1,33 @@ PORTNAME= audiocd-kio DISTVERSION= ${KDE_APPLICATIONS_VERSION} -PORTREVISION= 1 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 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 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 6298bade9362..6820c6378d61 100644 --- a/audio/audiocd-kio/distinfo +++ b/audio/audiocd-kio/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1738936950 -SHA256 (KDE/release-service/24.12.2/audiocd-kio-24.12.2.tar.xz) = 862ab2e71b13e6cb166730bbbfc583402a296d315ed22c68fe28270a8742d95a -SIZE (KDE/release-service/24.12.2/audiocd-kio-24.12.2.tar.xz) = 580204 +TIMESTAMP = 1741275264 +SHA256 (KDE/release-service/24.12.3/audiocd-kio-24.12.3.tar.xz) = f614f61ebee728e94a67a6ced5320bfb01e03c5f6dde6e3bbd5d250825ea4975 +SIZE (KDE/release-service/24.12.3/audiocd-kio-24.12.3.tar.xz) = 580232 diff --git a/audio/elisa/distinfo b/audio/elisa/distinfo index de1115599b9a..358f2f96f13f 100644 --- a/audio/elisa/distinfo +++ b/audio/elisa/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1738936951 -SHA256 (KDE/release-service/24.12.2/elisa-24.12.2.tar.xz) = 8aabb7905b875df43e452b839acad930ac94789616747e84dd9881449241ecb8 -SIZE (KDE/release-service/24.12.2/elisa-24.12.2.tar.xz) = 1924736 +TIMESTAMP = 1741275269 +SHA256 (KDE/release-service/24.12.3/elisa-24.12.3.tar.xz) = 5d19ab3db41cb2133ac5198f686db49e82b2228e80a3d6f425e04f244588ffc3 +SIZE (KDE/release-service/24.12.3/elisa-24.12.3.tar.xz) = 1483796 diff --git a/audio/elisa/pkg-plist b/audio/elisa/pkg-plist index 0e918376f774..8368d2de251b 100644 --- a/audio/elisa/pkg-plist +++ b/audio/elisa/pkg-plist @@ -1,63 +1,64 @@ bin/elisa lib/elisa/libelisaLib.so.0 lib/elisa/libelisaLib.so.0.1 share/applications/org.kde.elisa.desktop share/dbus-1/services/org.kde.elisa.service share/icons/hicolor/128x128/apps/elisa.png share/icons/hicolor/16x16/apps/elisa.png share/icons/hicolor/22x22/apps/elisa.png share/icons/hicolor/32x32/apps/elisa.png share/icons/hicolor/48x48/apps/elisa.png share/icons/hicolor/64x64/apps/elisa.png share/icons/hicolor/scalable/apps/elisa.svg share/locale/ar/LC_MESSAGES/elisa.mo share/locale/ast/LC_MESSAGES/elisa.mo share/locale/az/LC_MESSAGES/elisa.mo share/locale/be/LC_MESSAGES/elisa.mo share/locale/bg/LC_MESSAGES/elisa.mo share/locale/bs/LC_MESSAGES/elisa.mo share/locale/ca/LC_MESSAGES/elisa.mo share/locale/ca@valencia/LC_MESSAGES/elisa.mo share/locale/cs/LC_MESSAGES/elisa.mo share/locale/da/LC_MESSAGES/elisa.mo share/locale/de/LC_MESSAGES/elisa.mo share/locale/el/LC_MESSAGES/elisa.mo share/locale/en_GB/LC_MESSAGES/elisa.mo share/locale/eo/LC_MESSAGES/elisa.mo share/locale/es/LC_MESSAGES/elisa.mo share/locale/et/LC_MESSAGES/elisa.mo share/locale/eu/LC_MESSAGES/elisa.mo share/locale/fi/LC_MESSAGES/elisa.mo share/locale/fr/LC_MESSAGES/elisa.mo share/locale/gl/LC_MESSAGES/elisa.mo share/locale/he/LC_MESSAGES/elisa.mo share/locale/hi/LC_MESSAGES/elisa.mo share/locale/hu/LC_MESSAGES/elisa.mo share/locale/ia/LC_MESSAGES/elisa.mo share/locale/id/LC_MESSAGES/elisa.mo share/locale/is/LC_MESSAGES/elisa.mo share/locale/it/LC_MESSAGES/elisa.mo share/locale/ja/LC_MESSAGES/elisa.mo share/locale/ka/LC_MESSAGES/elisa.mo share/locale/ko/LC_MESSAGES/elisa.mo share/locale/lt/LC_MESSAGES/elisa.mo share/locale/lv/LC_MESSAGES/elisa.mo share/locale/nl/LC_MESSAGES/elisa.mo share/locale/nn/LC_MESSAGES/elisa.mo share/locale/pa/LC_MESSAGES/elisa.mo share/locale/pl/LC_MESSAGES/elisa.mo share/locale/pt/LC_MESSAGES/elisa.mo share/locale/pt_BR/LC_MESSAGES/elisa.mo share/locale/ro/LC_MESSAGES/elisa.mo share/locale/ru/LC_MESSAGES/elisa.mo share/locale/sa/LC_MESSAGES/elisa.mo share/locale/sk/LC_MESSAGES/elisa.mo share/locale/sl/LC_MESSAGES/elisa.mo share/locale/sv/LC_MESSAGES/elisa.mo share/locale/ta/LC_MESSAGES/elisa.mo +share/locale/th/LC_MESSAGES/elisa.mo share/locale/tr/LC_MESSAGES/elisa.mo share/locale/uk/LC_MESSAGES/elisa.mo share/locale/zh_CN/LC_MESSAGES/elisa.mo share/locale/zh_TW/LC_MESSAGES/elisa.mo share/metainfo/org.kde.elisa.appdata.xml share/qlogging-categories6/elisa.categories diff --git a/audio/juk/distinfo b/audio/juk/distinfo index 01474075181e..94258e73f8f4 100644 --- a/audio/juk/distinfo +++ b/audio/juk/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1738936952 -SHA256 (KDE/release-service/24.12.2/juk-24.12.2.tar.xz) = 7e40f5014e1356d4d90b2858bc37cb0dd44902f236a7464f59c0962be6d863e9 -SIZE (KDE/release-service/24.12.2/juk-24.12.2.tar.xz) = 1910880 +TIMESTAMP = 1741275274 +SHA256 (KDE/release-service/24.12.3/juk-24.12.3.tar.xz) = 3fbf1662347769b273bbeefbafea4bf170db17bfc2e9d792030a4647effb417b +SIZE (KDE/release-service/24.12.3/juk-24.12.3.tar.xz) = 1910992 diff --git a/audio/kmix/distinfo b/audio/kmix/distinfo index 55734812cea6..6e144a3d15e5 100644 --- a/audio/kmix/distinfo +++ b/audio/kmix/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1738936953 -SHA256 (KDE/release-service/24.12.2/kmix-24.12.2.tar.xz) = c835eebfdd1c4915a675d8d8e4df37256e483ad525ee874e90a3b599338c7a5e -SIZE (KDE/release-service/24.12.2/kmix-24.12.2.tar.xz) = 1167820 +TIMESTAMP = 1741275279 +SHA256 (KDE/release-service/24.12.3/kmix-24.12.3.tar.xz) = e834bb6532342558d4acfe7b1d89294241565c7addcab9e38c149ad025570ed8 +SIZE (KDE/release-service/24.12.3/kmix-24.12.3.tar.xz) = 1167852 diff --git a/audio/kwave/Makefile b/audio/kwave/Makefile index 651b806f57cb..248a31f456eb 100644 --- a/audio/kwave/Makefile +++ b/audio/kwave/Makefile @@ -1,39 +1,38 @@ PORTNAME= kwave DISTVERSION= ${KDE_APPLICATIONS_VERSION} -PORTREVISION= 1 CATEGORIES= audio kde kde-applications MAINTAINER= kde@FreeBSD.org COMMENT= Sound editor for KDE WWW= https://kwave.sourceforge.net/ LIB_DEPENDS= libaudiofile.so:audio/libaudiofile \ libFLAC.so:audio/flac \ libfftw3.so:math/fftw3 \ libid3.so:audio/id3lib \ libmad.so:audio/libmad \ libogg.so:audio/libogg \ libopus.so:audio/opus \ libsamplerate.so:audio/libsamplerate \ libvorbisenc.so:audio/libvorbis USES= cmake compiler:c++11-lang desktop-file-utils gettext kde:6 \ localbase:ldflags pkgconfig qt:6 tar:xz xorg USE_KDE= archive auth bookmarks codecs completion config configwidgets \ coreaddons crash dbusaddons doctools i18n iconthemes itemviews \ jobwidgets kio service solid sonnet textwidgets widgetsaddons \ windowsystem xmlgui \ ecm:build USE_QT= base USE_XORG= x11 OPTIONS_GROUP= AUDIOPLUGIN OPTIONS_GROUP_AUDIOPLUGIN= ALSA PULSEAUDIO ALSA_CMAKE_BOOL= WITH_ALSA ALSA_LIB_DEPENDS= libasound.so:audio/alsa-lib PULSEAUDIO_CMAKE_BOOL= WITH_PULSEAUDIO PULSEAUDIO_LIB_DEPENDS= libpulse.so:audio/pulseaudio OPTIONS_DEFINE= DOCS .include diff --git a/audio/kwave/distinfo b/audio/kwave/distinfo index 71d268a90842..9ee6a49f6cfc 100644 --- a/audio/kwave/distinfo +++ b/audio/kwave/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1738936954 -SHA256 (KDE/release-service/24.12.2/kwave-24.12.2.tar.xz) = 0c731a8ad8e0da37e72d9464b29f92719edb44f30c4255c5eab4ab8e95ff7916 -SIZE (KDE/release-service/24.12.2/kwave-24.12.2.tar.xz) = 6478224 +TIMESTAMP = 1741275284 +SHA256 (KDE/release-service/24.12.3/kwave-24.12.3.tar.xz) = bde20a09e1e4e97c3c6e189448fd9c05e191379fcfd9eb4c83a6715ab5b12b16 +SIZE (KDE/release-service/24.12.3/kwave-24.12.3.tar.xz) = 6478112 diff --git a/audio/libkcddb/distinfo b/audio/libkcddb/distinfo index 7c6739aff376..515ec52880cb 100644 --- a/audio/libkcddb/distinfo +++ b/audio/libkcddb/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1738936955 -SHA256 (KDE/release-service/24.12.2/libkcddb-24.12.2.tar.xz) = 234544640d0d2f358354fe65d7571876f74399cf4fee263c76f7ced5cef29b31 -SIZE (KDE/release-service/24.12.2/libkcddb-24.12.2.tar.xz) = 449948 +TIMESTAMP = 1741275288 +SHA256 (KDE/release-service/24.12.3/libkcddb-24.12.3.tar.xz) = bf404bb565b50d6ca1a0388116b51489998fb556828a0e334351ac1408fd580e +SIZE (KDE/release-service/24.12.3/libkcddb-24.12.3.tar.xz) = 450048 diff --git a/audio/libkcompactdisc/distinfo b/audio/libkcompactdisc/distinfo index 3dd0bd3299bc..7742edfc4761 100644 --- a/audio/libkcompactdisc/distinfo +++ b/audio/libkcompactdisc/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1738936955 -SHA256 (KDE/release-service/24.12.2/libkcompactdisc-24.12.2.tar.xz) = 0232b2fc09c4e5a3b0db9f4e11893bf15b6dab0b795cf2e58d8eebc080a6ed98 -SIZE (KDE/release-service/24.12.2/libkcompactdisc-24.12.2.tar.xz) = 100592 +TIMESTAMP = 1741275291 +SHA256 (KDE/release-service/24.12.3/libkcompactdisc-24.12.3.tar.xz) = 1a54bc40e82d0f0ae018752d4edfe5ebdae043271bddae3f2f3cae61909c075a +SIZE (KDE/release-service/24.12.3/libkcompactdisc-24.12.3.tar.xz) = 100592 diff --git a/databases/akonadi/Makefile b/databases/akonadi/Makefile index 8d003ecddac1..60f5b9fb2739 100644 --- a/databases/akonadi/Makefile +++ b/databases/akonadi/Makefile @@ -1,62 +1,61 @@ PORTNAME= akonadi DISTVERSION= ${KDE_APPLICATIONS_VERSION} -PORTREVISION= 1 CATEGORIES= databases kde kde-applications MAINTAINER= kde@FreeBSD.org COMMENT= Storage server for KDE-Pim WWW= https://community.kde.org/KDE_PIM/Akonadi LICENSE= LGPL21 LIB_DEPENDS= libboost_thread.so:devel/boost-libs \ libkaccounts6.so:net-im/kaccounts-integration \ libaccounts-qt6.so:net-im/libaccounts-qt@qt6 # Let process generate meaningful backtrace on core dump. BUILD_DEPENDS= xsltproc:textproc/libxslt USES= cmake compiler:c++11-lib gettext gnome kde:6 qt:6 \ shared-mime-info sqlite:3 tar:xz xorg USE_GNOME= libxml2 USE_KDE= auth codecs completion config configwidgets coreaddons crash \ dbusaddons guiaddons i18n iconthemes itemmodels itemviews kio \ service widgetsaddons windowsystem xmlgui \ ecm:build USE_QT= base \ sqldriver-sqlite:run USE_XORG= x11 CMAKE_ARGS+= -DCMAKE_REQUIRED_INCLUDES:STRING="${LOCALBASE}/include" \ -DMYSQLD_EXECUTABLE:FILEPATH="${LOCALBASE}/libexec/mysqld" \ -DMYSQLD_SCRIPTS_PATH:PATH="${LOCALBASE}/bin" \ -DPOSTGRES_PATH:FILEPATH="${LOCALBASE}/bin/pg_ctl" USE_LDCONFIG= yes OPTIONS_DEFINE= DOCS OPTIONS_GROUP= DB OPTIONS_GROUP_DB= MYSQL PGSQL OPTIONS_DEFAULT= MYSQL MYSQL_DESC= Install MySQL Qt plugin and server MYSQL_USES= mysql:server MYSQL_USE= QT=sqldriver-mysql:run PGSQL_DESC= Install PostgreSQL Qt plugin PGSQL_USE= QT=sqldriver-psql:run .include .if ${PORT_OPTIONS:MMYSQL} CMAKE_ARGS+= -DDATABASE_BACKEND:STRING="MYSQL" .elif ${PORT_OPTIONS:MPGSQL} CMAKE_ARGS+= -DDATABASE_BACKEND:STRING="POSTGRES" .endif post-patch: # To avoid overflow, MySQL settings need to be lower than # INT_MAX / kern.hz. This setting assumes kern.hz=2000, and # it's nothing but a temporary hack. ${REINPLACE_CMD} -e '/wait_timeout/ s|31536000|1073741|' \ ${PATCH_WRKSRC}/src/server/storage/*.conf .include diff --git a/databases/akonadi/distinfo b/databases/akonadi/distinfo index b7e81d02d527..1e0187b427a7 100644 --- a/databases/akonadi/distinfo +++ b/databases/akonadi/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1738936959 -SHA256 (KDE/release-service/24.12.2/akonadi-24.12.2.tar.xz) = aabd0645fee7bd868f520f8c129aa179eadabd11ea6da1ecf926d9486d74c692 -SIZE (KDE/release-service/24.12.2/akonadi-24.12.2.tar.xz) = 1712112 +TIMESTAMP = 1741275292 +SHA256 (KDE/release-service/24.12.3/akonadi-24.12.3.tar.xz) = e1e4de8050e578e65d71b0279d10ae4d0906ba5a5b0239f88d0145602b0c17c8 +SIZE (KDE/release-service/24.12.3/akonadi-24.12.3.tar.xz) = 1712368 diff --git a/deskutils/akonadi-calendar-tools/distinfo b/deskutils/akonadi-calendar-tools/distinfo index 8486c5adeebb..a94ad1691a82 100644 --- a/deskutils/akonadi-calendar-tools/distinfo +++ b/deskutils/akonadi-calendar-tools/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1738936960 -SHA256 (KDE/release-service/24.12.2/akonadi-calendar-tools-24.12.2.tar.xz) = 0c93ae99ef5db5bf10bfdfa1e684039e43e4f09daa3ba25333b55d8f60be5d94 -SIZE (KDE/release-service/24.12.2/akonadi-calendar-tools-24.12.2.tar.xz) = 270064 +TIMESTAMP = 1741275293 +SHA256 (KDE/release-service/24.12.3/akonadi-calendar-tools-24.12.3.tar.xz) = e5b34b90d6a4c7b6e300d904aa817867eea7ecbfae5c8eec692368d230685703 +SIZE (KDE/release-service/24.12.3/akonadi-calendar-tools-24.12.3.tar.xz) = 270076 diff --git a/deskutils/akonadi-import-wizard/distinfo b/deskutils/akonadi-import-wizard/distinfo index 3c469a4ba19e..8af17a1d4a08 100644 --- a/deskutils/akonadi-import-wizard/distinfo +++ b/deskutils/akonadi-import-wizard/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1738936963 -SHA256 (KDE/release-service/24.12.2/akonadi-import-wizard-24.12.2.tar.xz) = 732c5e062285d67c3920555bb96d448309b7c4880c8a47f8270638ede796c4e6 -SIZE (KDE/release-service/24.12.2/akonadi-import-wizard-24.12.2.tar.xz) = 491972 +TIMESTAMP = 1741275295 +SHA256 (KDE/release-service/24.12.3/akonadi-import-wizard-24.12.3.tar.xz) = ee4958ac93c37ee29ddebd36ff60bf1212ccb7de6253387128dd2ada32f2f32c +SIZE (KDE/release-service/24.12.3/akonadi-import-wizard-24.12.3.tar.xz) = 491924 diff --git a/deskutils/akonadiconsole/distinfo b/deskutils/akonadiconsole/distinfo index 56cb52c8d3f6..21c9ababaa48 100644 --- a/deskutils/akonadiconsole/distinfo +++ b/deskutils/akonadiconsole/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1738936964 -SHA256 (KDE/release-service/24.12.2/akonadiconsole-24.12.2.tar.xz) = f64f83c1ed06c9d6e662c7b9f8294a38f44744cc2018033d8d78703e74b7c693 -SIZE (KDE/release-service/24.12.2/akonadiconsole-24.12.2.tar.xz) = 313892 +TIMESTAMP = 1741275296 +SHA256 (KDE/release-service/24.12.3/akonadiconsole-24.12.3.tar.xz) = fd78539f4a67d51d0ca9f8ba9bcabcb2690c22b580ff041c74cad559af2e8f75 +SIZE (KDE/release-service/24.12.3/akonadiconsole-24.12.3.tar.xz) = 313864 diff --git a/deskutils/akregator/distinfo b/deskutils/akregator/distinfo index d4a2a2a228cd..560255064dd7 100644 --- a/deskutils/akregator/distinfo +++ b/deskutils/akregator/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1738936965 -SHA256 (KDE/release-service/24.12.2/akregator-24.12.2.tar.xz) = 5357c253a230aed20e3101cc9272d38ffa4193a81e307cea51b70a9c86b90e18 -SIZE (KDE/release-service/24.12.2/akregator-24.12.2.tar.xz) = 2134480 +TIMESTAMP = 1741275297 +SHA256 (KDE/release-service/24.12.3/akregator-24.12.3.tar.xz) = 1b0b25bee2e4d538eb7e1c9d0a0da8c62036f72456459f090a14744fb71eaf44 +SIZE (KDE/release-service/24.12.3/akregator-24.12.3.tar.xz) = 2134576 diff --git a/deskutils/grantlee-editor/distinfo b/deskutils/grantlee-editor/distinfo index b8e172954ac0..8d483a2d3e38 100644 --- a/deskutils/grantlee-editor/distinfo +++ b/deskutils/grantlee-editor/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1738936966 -SHA256 (KDE/release-service/24.12.2/grantlee-editor-24.12.2.tar.xz) = 4401d00db5c0aecdacadd1fb6ca426bddccd1cf4330894915f69de3e72b34334 -SIZE (KDE/release-service/24.12.2/grantlee-editor-24.12.2.tar.xz) = 124356 +TIMESTAMP = 1741275300 +SHA256 (KDE/release-service/24.12.3/grantlee-editor-24.12.3.tar.xz) = 92e4dbe356175dfb3f3169c98726e62009886cf810442463bdac29aa552cf82f +SIZE (KDE/release-service/24.12.3/grantlee-editor-24.12.3.tar.xz) = 124348 diff --git a/deskutils/grantleetheme/distinfo b/deskutils/grantleetheme/distinfo index 32a139531048..d4c6c5d2bfdf 100644 --- a/deskutils/grantleetheme/distinfo +++ b/deskutils/grantleetheme/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1738936967 -SHA256 (KDE/release-service/24.12.2/grantleetheme-24.12.2.tar.xz) = 595c2330f8ca23cf000e13a7ae6ae7c7ce2a5ed410ceefd506d017eea1dcd563 -SIZE (KDE/release-service/24.12.2/grantleetheme-24.12.2.tar.xz) = 63492 +TIMESTAMP = 1741275303 +SHA256 (KDE/release-service/24.12.3/grantleetheme-24.12.3.tar.xz) = d6502421c47282eab48c9b17023ce93da034660b6d84a0f8af5e42c5d473e136 +SIZE (KDE/release-service/24.12.3/grantleetheme-24.12.3.tar.xz) = 63528 diff --git a/deskutils/itinerary/distinfo b/deskutils/itinerary/distinfo index 0eed2d5be4fa..1102a6685a6e 100644 --- a/deskutils/itinerary/distinfo +++ b/deskutils/itinerary/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1738936968 -SHA256 (KDE/release-service/24.12.2/itinerary-24.12.2.tar.xz) = a139ffa1fdeb9b2b471b67fca89f7dda1d7c2343fd70df4220e64f45622fc7cd -SIZE (KDE/release-service/24.12.2/itinerary-24.12.2.tar.xz) = 770120 +TIMESTAMP = 1741275307 +SHA256 (KDE/release-service/24.12.3/itinerary-24.12.3.tar.xz) = 2415aa7b6a5d0fba91fd5cb3e7fdbcaf3c8d1ca347c216bc64ccd28a0eb8b94e +SIZE (KDE/release-service/24.12.3/itinerary-24.12.3.tar.xz) = 770480 diff --git a/deskutils/kaddressbook/distinfo b/deskutils/kaddressbook/distinfo index 429ea6c74d7e..12577db4dff4 100644 --- a/deskutils/kaddressbook/distinfo +++ b/deskutils/kaddressbook/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1738936969 -SHA256 (KDE/release-service/24.12.2/kaddressbook-24.12.2.tar.xz) = 05797b47b19f013519fba01768bb356fd669127f78a877a84501961629c76521 -SIZE (KDE/release-service/24.12.2/kaddressbook-24.12.2.tar.xz) = 3430768 +TIMESTAMP = 1741275313 +SHA256 (KDE/release-service/24.12.3/kaddressbook-24.12.3.tar.xz) = fa0e4d75f2e7bf9c2e373547032ab43b8a9b6b09469dc9735966476b87588490 +SIZE (KDE/release-service/24.12.3/kaddressbook-24.12.3.tar.xz) = 3430680 diff --git a/deskutils/kalarm/distinfo b/deskutils/kalarm/distinfo index 879026f6a295..4606623eeb31 100644 --- a/deskutils/kalarm/distinfo +++ b/deskutils/kalarm/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1738936971 -SHA256 (KDE/release-service/24.12.2/kalarm-24.12.2.tar.xz) = b0da9756471091a43f7f521eb3532cbd4980a6c87c9bc7181d942e966b74346a -SIZE (KDE/release-service/24.12.2/kalarm-24.12.2.tar.xz) = 2639044 +TIMESTAMP = 1741275318 +SHA256 (KDE/release-service/24.12.3/kalarm-24.12.3.tar.xz) = 0a5ac651a95f632595c662d570676643995a73a55fa87810ba8ef392559cbe91 +SIZE (KDE/release-service/24.12.3/kalarm-24.12.3.tar.xz) = 2648416 diff --git a/deskutils/kcharselect/distinfo b/deskutils/kcharselect/distinfo index 4c1fb68722fe..0363345e8ef9 100644 --- a/deskutils/kcharselect/distinfo +++ b/deskutils/kcharselect/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1738936972 -SHA256 (KDE/release-service/24.12.2/kcharselect-24.12.2.tar.xz) = 799beb4cf93e70158be09fb45006c153c0e67f97eefffec0d152b317f6d5e9f5 -SIZE (KDE/release-service/24.12.2/kcharselect-24.12.2.tar.xz) = 477140 +TIMESTAMP = 1741275321 +SHA256 (KDE/release-service/24.12.3/kcharselect-24.12.3.tar.xz) = 04fa8fd6a0e2b92e09e9c4ec26f0a5bbbff2a5976539f381a7b5930c21cc1b66 +SIZE (KDE/release-service/24.12.3/kcharselect-24.12.3.tar.xz) = 477216 diff --git a/deskutils/kdeconnect-kde/Makefile b/deskutils/kdeconnect-kde/Makefile index a4209d237251..81910024be62 100644 --- a/deskutils/kdeconnect-kde/Makefile +++ b/deskutils/kdeconnect-kde/Makefile @@ -1,39 +1,38 @@ PORTNAME= kdeconnect-kde DISTVERSION= ${KDE_APPLICATIONS_VERSION} -PORTREVISION= 1 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 \ 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 \ coreaddons crash dbusaddons doctools guiaddons i18n iconthemes \ 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 c78538feabac..b1737ad33b95 100644 --- a/deskutils/kdeconnect-kde/distinfo +++ b/deskutils/kdeconnect-kde/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1738936973 -SHA256 (KDE/release-service/24.12.2/kdeconnect-kde-24.12.2.tar.xz) = ae29d9168af26eb0b5284ffe14025e971574e3f891c36ffb27431fa2d3ef47ff -SIZE (KDE/release-service/24.12.2/kdeconnect-kde-24.12.2.tar.xz) = 715744 +TIMESTAMP = 1741275325 +SHA256 (KDE/release-service/24.12.3/kdeconnect-kde-24.12.3.tar.xz) = 48d0eb908539a21f36e1784c2e782a4dca1c90402fe24a631ed2aff43aebab17 +SIZE (KDE/release-service/24.12.3/kdeconnect-kde-24.12.3.tar.xz) = 716168 diff --git a/deskutils/kdepim-addons/distinfo b/deskutils/kdepim-addons/distinfo index 2da2345b5f99..3acfc7b67631 100644 --- a/deskutils/kdepim-addons/distinfo +++ b/deskutils/kdepim-addons/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1738936974 -SHA256 (KDE/release-service/24.12.2/kdepim-addons-24.12.2.tar.xz) = e218af13ea76ec06fb72483af0f2ed3986595a23dbeef76f15e9d00cb5e338f9 -SIZE (KDE/release-service/24.12.2/kdepim-addons-24.12.2.tar.xz) = 2618424 +TIMESTAMP = 1741275331 +SHA256 (KDE/release-service/24.12.3/kdepim-addons-24.12.3.tar.xz) = 0ab482e5725d02c702ba65a3a41c7ee774b1e621cedb84734d8a8fbea41f97d9 +SIZE (KDE/release-service/24.12.3/kdepim-addons-24.12.3.tar.xz) = 2618472 diff --git a/deskutils/kdepim-runtime/Makefile b/deskutils/kdepim-runtime/Makefile index 87724873d958..b02fcf6a3f63 100644 --- a/deskutils/kdepim-runtime/Makefile +++ b/deskutils/kdepim-runtime/Makefile @@ -1,49 +1,48 @@ PORTNAME= kdepim-runtime DISTVERSION= ${KDE_APPLICATIONS_VERSION} -PORTREVISION= 1 CATEGORIES= deskutils kde kde-applications MAINTAINER= kde@FreeBSD.org COMMENT= KDE PIM tools and services WWW= https://www.kde.org/ LICENSE= LGPL21 LIB_DEPENDS= libboost_date_time.so:devel/boost-libs \ libcurl.so:ftp/curl \ libkolabxml.so:textproc/libkolabxml \ libqca-qt6.so:devel/qca@qt6 \ libsasl2.so:security/cyrus-sasl2 \ libxerces-c.so:textproc/xerces-c3 \ libqt6keychain.so:security/qtkeychain@qt6 USES= cmake:noninja compiler:c++11-lib gettext kde:6 qt:6 \ shared-mime-info tar:xz xorg USE_KDE= auth bookmarks codecs completion config configwidgets \ coreaddons crash dbusaddons guiaddons holidays i18n iconthemes \ itemmodels itemviews jobwidgets kcmutils kdav kio \ notifications notifyconfig parts service solid sonnet \ textwidgets unitconversion wallet widgetsaddons windowsystem \ xmlgui \ ecm:build # pim components USE_KDE+= akonadi akonadicalendar akonadicontacts akonadimime \ akonadisearch calendarcore calendarutils contacts \ gapi grantleetheme identitymanagement imap kontactinterface \ ldap libkdepim mailtransport mbox mime pimcommon pimtextedit \ syndication USE_QT= base networkauth USE_XORG= x11 USE_LDCONFIG= yes DESCR= ${.CURDIR:H:H}/deskutils/kdepim/pkg-descr OPTIONS_DEFINE= DOCS .include .if ${CHOSEN_COMPILER_TYPE} == clang CXXFLAGS+= -Wno-error=enum-constexpr-conversion .endif .include diff --git a/deskutils/kdepim-runtime/distinfo b/deskutils/kdepim-runtime/distinfo index c28429adf406..c75cb24b7008 100644 --- a/deskutils/kdepim-runtime/distinfo +++ b/deskutils/kdepim-runtime/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1738936975 -SHA256 (KDE/release-service/24.12.2/kdepim-runtime-24.12.2.tar.xz) = f10659b042e4adcfe4aca206f3ee7d5d6f203ef60c48d294a119b79ed3075e07 -SIZE (KDE/release-service/24.12.2/kdepim-runtime-24.12.2.tar.xz) = 1667832 +TIMESTAMP = 1741275335 +SHA256 (KDE/release-service/24.12.3/kdepim-runtime-24.12.3.tar.xz) = a207537bc5f05057bb6fdb0a445fd281d6829370c987e50aa6db67fb51e4892c +SIZE (KDE/release-service/24.12.3/kdepim-runtime-24.12.3.tar.xz) = 1667960 diff --git a/deskutils/keditbookmarks/distinfo b/deskutils/keditbookmarks/distinfo index 57cc00a12d1b..ff8a07572c65 100644 --- a/deskutils/keditbookmarks/distinfo +++ b/deskutils/keditbookmarks/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1738936976 -SHA256 (KDE/release-service/24.12.2/keditbookmarks-24.12.2.tar.xz) = c788c8ac24decd0a6370e6085fbe4b2b5020667dbdaccdd1d77237b38cf9af3e -SIZE (KDE/release-service/24.12.2/keditbookmarks-24.12.2.tar.xz) = 260628 +TIMESTAMP = 1741275339 +SHA256 (KDE/release-service/24.12.3/keditbookmarks-24.12.3.tar.xz) = 1d088634e91c7b9018aadc08a86bebcf67e192a514a938b6a81ca1a7e4c1cb82 +SIZE (KDE/release-service/24.12.3/keditbookmarks-24.12.3.tar.xz) = 260656 diff --git a/deskutils/kfind/distinfo b/deskutils/kfind/distinfo index dcf371607a91..d059d443ec42 100644 --- a/deskutils/kfind/distinfo +++ b/deskutils/kfind/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1738936977 -SHA256 (KDE/release-service/24.12.2/kfind-24.12.2.tar.xz) = f5cf704e35a372ff41a845593b346cf43de7ca8f437d5bb192ec96335208840f -SIZE (KDE/release-service/24.12.2/kfind-24.12.2.tar.xz) = 330472 +TIMESTAMP = 1741275342 +SHA256 (KDE/release-service/24.12.3/kfind-24.12.3.tar.xz) = ed549c07d1e91dfaf535b7dbc28a8761bfdabeeb7b802b9497a2e13c282b042b +SIZE (KDE/release-service/24.12.3/kfind-24.12.3.tar.xz) = 330488 diff --git a/deskutils/kmail-account-wizard/distinfo b/deskutils/kmail-account-wizard/distinfo index 485eae9fc40d..290d9b9a6060 100644 --- a/deskutils/kmail-account-wizard/distinfo +++ b/deskutils/kmail-account-wizard/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1738936982 -SHA256 (KDE/release-service/24.12.2/kmail-account-wizard-24.12.2.tar.xz) = d622ddec2d40445d88b900cde00de55211491968f109125a31c498b411c18b12 -SIZE (KDE/release-service/24.12.2/kmail-account-wizard-24.12.2.tar.xz) = 167712 +TIMESTAMP = 1741275352 +SHA256 (KDE/release-service/24.12.3/kmail-account-wizard-24.12.3.tar.xz) = bd07e2b7bc21422e5c235a4e6192c4ca5c9c2ce566803b9edb24a49b261a930c +SIZE (KDE/release-service/24.12.3/kmail-account-wizard-24.12.3.tar.xz) = 168300 diff --git a/deskutils/kmail/distinfo b/deskutils/kmail/distinfo index 7b04c42d9a20..d02ff4a913ec 100644 --- a/deskutils/kmail/distinfo +++ b/deskutils/kmail/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1738936982 -SHA256 (KDE/release-service/24.12.2/kmail-24.12.2.tar.xz) = 316949439902dde5130c7e2ef96d2bee458123ed33d160b478d57f9a6a864271 -SIZE (KDE/release-service/24.12.2/kmail-24.12.2.tar.xz) = 7772620 +TIMESTAMP = 1741275349 +SHA256 (KDE/release-service/24.12.3/kmail-24.12.3.tar.xz) = 20caaa4fabcfe2d2c73a0391f94dbc91b265707ab3a6f75def1a7300d97870d7 +SIZE (KDE/release-service/24.12.3/kmail-24.12.3.tar.xz) = 7772952 diff --git a/deskutils/kongress/distinfo b/deskutils/kongress/distinfo index e7718d3bc3bc..97996146b703 100644 --- a/deskutils/kongress/distinfo +++ b/deskutils/kongress/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1740253318 -SHA256 (KDE/release-service/24.12.2/kongress-24.12.2.tar.xz) = 41bd22c08df00531be3690fdf27ed9e0688c5dbbceb2c6505f9737d577648c76 -SIZE (KDE/release-service/24.12.2/kongress-24.12.2.tar.xz) = 158324 +TIMESTAMP = 1741275355 +SHA256 (KDE/release-service/24.12.3/kongress-24.12.3.tar.xz) = a3e95f16c55756b64473529368563c4ac095eaa9e47f549e62df341cca5650f8 +SIZE (KDE/release-service/24.12.3/kongress-24.12.3.tar.xz) = 158340 diff --git a/deskutils/kontact/distinfo b/deskutils/kontact/distinfo index ba08c1275e11..640118d72fd6 100644 --- a/deskutils/kontact/distinfo +++ b/deskutils/kontact/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1738936983 -SHA256 (KDE/release-service/24.12.2/kontact-24.12.2.tar.xz) = 1d735adb8a26344e7fac60c6164a2b89b2f52018952a8b528ba50ab5a42fcf10 -SIZE (KDE/release-service/24.12.2/kontact-24.12.2.tar.xz) = 868840 +TIMESTAMP = 1741275359 +SHA256 (KDE/release-service/24.12.3/kontact-24.12.3.tar.xz) = 0dc73681f56c976fa8a084b6c18ea90020305f0058e21d67bf47cfa8ea2c8929 +SIZE (KDE/release-service/24.12.3/kontact-24.12.3.tar.xz) = 868804 diff --git a/deskutils/korganizer/distinfo b/deskutils/korganizer/distinfo index aff1245f32b3..c8ccaf0361b8 100644 --- a/deskutils/korganizer/distinfo +++ b/deskutils/korganizer/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1738936984 -SHA256 (KDE/release-service/24.12.2/korganizer-24.12.2.tar.xz) = 9058d430da6f383aeb315eb9b7bc8c1ee2f50b8581173a9358f90a7b9b0a63d7 -SIZE (KDE/release-service/24.12.2/korganizer-24.12.2.tar.xz) = 2945540 +TIMESTAMP = 1741275365 +SHA256 (KDE/release-service/24.12.3/korganizer-24.12.3.tar.xz) = 1971118128338627309fa86fde08d4a6d3c48c08be90c5b8dee06b319e62e514 +SIZE (KDE/release-service/24.12.3/korganizer-24.12.3.tar.xz) = 2946216 diff --git a/deskutils/kruler/distinfo b/deskutils/kruler/distinfo index e4e0d5d042b7..61ca4065a590 100644 --- a/deskutils/kruler/distinfo +++ b/deskutils/kruler/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1738936985 -SHA256 (KDE/release-service/24.12.2/kruler-24.12.2.tar.xz) = a91dac9f3411178590031491eee2a12f141f5fc45199450e7cbf16b84e8a7f5c -SIZE (KDE/release-service/24.12.2/kruler-24.12.2.tar.xz) = 286476 +TIMESTAMP = 1741275368 +SHA256 (KDE/release-service/24.12.3/kruler-24.12.3.tar.xz) = ab90ffbc2aecf84ff2d569d6d53e2beba9447558b2785d6193feb7f33d69ddc7 +SIZE (KDE/release-service/24.12.3/kruler-24.12.3.tar.xz) = 286448 diff --git a/deskutils/kweather/distinfo b/deskutils/kweather/distinfo index cf16bde15a3d..6d841fe2863f 100644 --- a/deskutils/kweather/distinfo +++ b/deskutils/kweather/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1739967559 -SHA256 (KDE/release-service/24.12.2/kweather-24.12.2.tar.xz) = 39537a3086b8513bf019c00b0e156438fa680d94ce35075022ce3bc6bc28d591 -SIZE (KDE/release-service/24.12.2/kweather-24.12.2.tar.xz) = 362064 +TIMESTAMP = 1741275371 +SHA256 (KDE/release-service/24.12.3/kweather-24.12.3.tar.xz) = f423f5b926e4e685d7acaef5c13a79279b51f2f158070635bc77ef1917f50ed6 +SIZE (KDE/release-service/24.12.3/kweather-24.12.3.tar.xz) = 361800 diff --git a/deskutils/kweathercore/distinfo b/deskutils/kweathercore/distinfo index ec896b366504..b2a395f71437 100644 --- a/deskutils/kweathercore/distinfo +++ b/deskutils/kweathercore/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1739962654 -SHA256 (KDE/release-service/24.12.2/kweathercore-24.12.2.tar.xz) = e61d9a3b426b150d71ece164eee824eb65833a292d31b7204bb6a5f357bd82de -SIZE (KDE/release-service/24.12.2/kweathercore-24.12.2.tar.xz) = 75832 +TIMESTAMP = 1741275374 +SHA256 (KDE/release-service/24.12.3/kweathercore-24.12.3.tar.xz) = 18c9562a01c2295cb55ae8be42c93b9ec0065a3fb4a4bb7b11933db97d0cc285 +SIZE (KDE/release-service/24.12.3/kweathercore-24.12.3.tar.xz) = 75800 diff --git a/deskutils/libkdepim/distinfo b/deskutils/libkdepim/distinfo index 9cc63648a8d7..121e6a201071 100644 --- a/deskutils/libkdepim/distinfo +++ b/deskutils/libkdepim/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1738936986 -SHA256 (KDE/release-service/24.12.2/libkdepim-24.12.2.tar.xz) = fe2986ab9a4ccf2af56d6b91a27e391202c4629877b94caa0c8d8efe0a16af74 -SIZE (KDE/release-service/24.12.2/libkdepim-24.12.2.tar.xz) = 282936 +TIMESTAMP = 1741275377 +SHA256 (KDE/release-service/24.12.3/libkdepim-24.12.3.tar.xz) = d83a70a2d259e579afdd82e1bbc082f35c92a1fc6cf28b32a61e2ac7b841040a +SIZE (KDE/release-service/24.12.3/libkdepim-24.12.3.tar.xz) = 282856 diff --git a/deskutils/mbox-importer/distinfo b/deskutils/mbox-importer/distinfo index 0501fd56e13d..a996ff96c902 100644 --- a/deskutils/mbox-importer/distinfo +++ b/deskutils/mbox-importer/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1738936987 -SHA256 (KDE/release-service/24.12.2/mbox-importer-24.12.2.tar.xz) = db752c8482bcff160583482fa2b7eff1163c312d294f81785110c6bd0826d226 -SIZE (KDE/release-service/24.12.2/mbox-importer-24.12.2.tar.xz) = 31964 +TIMESTAMP = 1741275379 +SHA256 (KDE/release-service/24.12.3/mbox-importer-24.12.3.tar.xz) = eb49bbb5004d1c439f3be01a23ac424fc0c2d5e37b974e61ce6431ef25048c77 +SIZE (KDE/release-service/24.12.3/mbox-importer-24.12.3.tar.xz) = 31928 diff --git a/deskutils/merkuro/distinfo b/deskutils/merkuro/distinfo index 859885d21834..a7617159f262 100644 --- a/deskutils/merkuro/distinfo +++ b/deskutils/merkuro/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1738936988 -SHA256 (KDE/release-service/24.12.2/merkuro-24.12.2.tar.xz) = 12567c0ba36fb3e3ec929f01bdf8dd1c1de56b4b6f821202aa8f50947d7a87da -SIZE (KDE/release-service/24.12.2/merkuro-24.12.2.tar.xz) = 793332 +TIMESTAMP = 1741275384 +SHA256 (KDE/release-service/24.12.3/merkuro-24.12.3.tar.xz) = 925e75b66d0b6166c34c808731e921f83132c5c45c8c3723ebb9fd424ef4f153 +SIZE (KDE/release-service/24.12.3/merkuro-24.12.3.tar.xz) = 793568 diff --git a/deskutils/merkuro/pkg-plist b/deskutils/merkuro/pkg-plist index d6d56fafdf98..0954f136fc27 100644 --- a/deskutils/merkuro/pkg-plist +++ b/deskutils/merkuro/pkg-plist @@ -1,218 +1,219 @@ 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_QMLDIR%%/org/kde/akonadi/AgentConfigurationForm.qml %%QT_QMLDIR%%/org/kde/akonadi/CollectionComboBox.qml %%QT_QMLDIR%%/org/kde/akonadi/MobileCollectionComboBox.qml %%QT_QMLDIR%%/org/kde/akonadi/ProgressStatusBar.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 %%QT_QMLDIR%%/org/kde/merkuro/calendar/BottomToolBar.qml %%QT_QMLDIR%%/org/kde/merkuro/calendar/DatePopupSingleton.qml %%QT_QMLDIR%%/org/kde/merkuro/calendar/MenuBar.qml %%QT_QMLDIR%%/org/kde/merkuro/calendar/PriorityComboBox.qml %%QT_QMLDIR%%/org/kde/merkuro/calendar/ReminderDelegate.qml %%QT_QMLDIR%%/org/kde/merkuro/calendar/kde-qmlmodule.version %%QT_QMLDIR%%/org/kde/merkuro/calendar/libmerkuro_calendar_plugin.so %%QT_QMLDIR%%/org/kde/merkuro/calendar/merkuro_calendar_plugin.qmltypes %%QT_QMLDIR%%/org/kde/merkuro/calendar/qmldir %%QT_QMLDIR%%/org/kde/merkuro/components/BaseApplication.qml %%QT_QMLDIR%%/org/kde/merkuro/components/ColoredCheckbox.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_contact_plugin.so %%QT_QMLDIR%%/org/kde/merkuro/contact/merkuro_contact_plugin.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/DeleteContactAction.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/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/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/plasma_applet_org.kde.merkuro.contact.mo share/locale/hi/LC_MESSAGES/merkuro.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/plasma_applet_org.kde.merkuro.contact.mo share/locale/lv/LC_MESSAGES/merkuro.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/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.appdata.xml +share/metainfo/org.kde.merkuro.contact.applet.appdata.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/contents/config/main.xml -share/plasma/plasmoids/org.kde.merkuro.contact/contents/resources/fallbackBackground.png -share/plasma/plasmoids/org.kde.merkuro.contact/contents/ui/CompactRepresentation.qml -share/plasma/plasmoids/org.kde.merkuro.contact/contents/ui/ContactPage.qml -share/plasma/plasmoids/org.kde.merkuro.contact/contents/ui/ContactsPage.qml -share/plasma/plasmoids/org.kde.merkuro.contact/contents/ui/Header.qml -share/plasma/plasmoids/org.kde.merkuro.contact/contents/ui/QrCodePage.qml -share/plasma/plasmoids/org.kde.merkuro.contact/contents/ui/main.qml -share/plasma/plasmoids/org.kde.merkuro.contact/metadata.json -share/plasma/plasmoids/org.kde.merkuro.contact/metadata.json.license +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/akonadi.quick.categories 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 0044b53d3fd0..2dda4a3779c8 100644 --- a/deskutils/pim-data-exporter/distinfo +++ b/deskutils/pim-data-exporter/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1738936989 -SHA256 (KDE/release-service/24.12.2/pim-data-exporter-24.12.2.tar.xz) = e23c6fccc8157575ca21716d41676cf0aac7d9a7388ebecb2ad6f3cc60b7690b -SIZE (KDE/release-service/24.12.2/pim-data-exporter-24.12.2.tar.xz) = 421828 +TIMESTAMP = 1741275387 +SHA256 (KDE/release-service/24.12.3/pim-data-exporter-24.12.3.tar.xz) = cd709e8b1c964f76adb7c816f77e2e7469f6efdabc01b2efac86a11e351fc92a +SIZE (KDE/release-service/24.12.3/pim-data-exporter-24.12.3.tar.xz) = 421816 diff --git a/deskutils/pim-sieve-editor/distinfo b/deskutils/pim-sieve-editor/distinfo index f98c852eda68..733dc807e349 100644 --- a/deskutils/pim-sieve-editor/distinfo +++ b/deskutils/pim-sieve-editor/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1738936990 -SHA256 (KDE/release-service/24.12.2/pim-sieve-editor-24.12.2.tar.xz) = 9fadb45cb238b766a82de1375129adb0ec7d9cf4e595f541008890193c32ef50 -SIZE (KDE/release-service/24.12.2/pim-sieve-editor-24.12.2.tar.xz) = 470568 +TIMESTAMP = 1741275391 +SHA256 (KDE/release-service/24.12.3/pim-sieve-editor-24.12.3.tar.xz) = dbf1d481fd0eaaba40b7abe404fd01afa8fb37229f4c083ac0b19c5316f25210 +SIZE (KDE/release-service/24.12.3/pim-sieve-editor-24.12.3.tar.xz) = 470528 diff --git a/deskutils/zanshin/distinfo b/deskutils/zanshin/distinfo index 11c84f6e6f3c..a7f63ab39b09 100644 --- a/deskutils/zanshin/distinfo +++ b/deskutils/zanshin/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1738936991 -SHA256 (KDE/release-service/24.12.2/zanshin-24.12.2.tar.xz) = 914feac353494d093218a41727a3ff2156b1ec3e29b447e55211cd953ddabc10 -SIZE (KDE/release-service/24.12.2/zanshin-24.12.2.tar.xz) = 380748 +TIMESTAMP = 1741275395 +SHA256 (KDE/release-service/24.12.3/zanshin-24.12.3.tar.xz) = d6278c2c916dba0efd1adc2488162a8649a74fe3cff886f743e7d326fb17c750 +SIZE (KDE/release-service/24.12.3/zanshin-24.12.3.tar.xz) = 380756 diff --git a/devel/cervisia/distinfo b/devel/cervisia/distinfo index 6d2281baef96..2599de6654fa 100644 --- a/devel/cervisia/distinfo +++ b/devel/cervisia/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1738936992 -SHA256 (KDE/release-service/24.12.2/cervisia-24.12.2.tar.xz) = a40490be34c7c99fb32f1130be4c4666cd4082545916335903b75349f2c2b195 -SIZE (KDE/release-service/24.12.2/cervisia-24.12.2.tar.xz) = 1809944 +TIMESTAMP = 1741275400 +SHA256 (KDE/release-service/24.12.3/cervisia-24.12.3.tar.xz) = 959584b4a3b83fabc012627289f5244cb70e74582f3133d95f7b7d72c689ae25 +SIZE (KDE/release-service/24.12.3/cervisia-24.12.3.tar.xz) = 1809892 diff --git a/devel/dolphin-plugins/distinfo b/devel/dolphin-plugins/distinfo index 2ec2d9551ca3..24a072b10ac7 100644 --- a/devel/dolphin-plugins/distinfo +++ b/devel/dolphin-plugins/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1738936992 -SHA256 (KDE/release-service/24.12.2/dolphin-plugins-24.12.2.tar.xz) = e15893fb9cf6686b680be3e16ad0db7bb6daa6505811068262c1232d9a4cebe4 -SIZE (KDE/release-service/24.12.2/dolphin-plugins-24.12.2.tar.xz) = 319000 +TIMESTAMP = 1741275403 +SHA256 (KDE/release-service/24.12.3/dolphin-plugins-24.12.3.tar.xz) = ea47d6e6ce5b69db03e5929298f5c11e4d630970d76a45550229d57eb04504f0 +SIZE (KDE/release-service/24.12.3/dolphin-plugins-24.12.3.tar.xz) = 319108 diff --git a/devel/kapptemplate/distinfo b/devel/kapptemplate/distinfo index 3f23ffbc98a4..34478c0de35f 100644 --- a/devel/kapptemplate/distinfo +++ b/devel/kapptemplate/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1738936993 -SHA256 (KDE/release-service/24.12.2/kapptemplate-24.12.2.tar.xz) = 1fa26802218e029c656ffac6983efde14f02b62431e3f2016a2663e7c58d9c0f -SIZE (KDE/release-service/24.12.2/kapptemplate-24.12.2.tar.xz) = 476492 +TIMESTAMP = 1741275407 +SHA256 (KDE/release-service/24.12.3/kapptemplate-24.12.3.tar.xz) = ff65e9192d450009a5b73c0e93247329c91d1c40b4ca7fad905193ff3802500d +SIZE (KDE/release-service/24.12.3/kapptemplate-24.12.3.tar.xz) = 476524 diff --git a/devel/kcachegrind/distinfo b/devel/kcachegrind/distinfo index c899ae4ff012..dc99bc189387 100644 --- a/devel/kcachegrind/distinfo +++ b/devel/kcachegrind/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1738936994 -SHA256 (KDE/release-service/24.12.2/kcachegrind-24.12.2.tar.xz) = 3dc95c6ddcb7c59bfa8963c0f839ea343bce74b9209cb379273eda85cdbd8548 -SIZE (KDE/release-service/24.12.2/kcachegrind-24.12.2.tar.xz) = 978004 +TIMESTAMP = 1741275411 +SHA256 (KDE/release-service/24.12.3/kcachegrind-24.12.3.tar.xz) = f5d86431daf379d681bbfe8f97f6743e13809db3753831c58311c809b3196ac9 +SIZE (KDE/release-service/24.12.3/kcachegrind-24.12.3.tar.xz) = 978072 diff --git a/devel/kde-dev-scripts/distinfo b/devel/kde-dev-scripts/distinfo index f214ae6b27e2..dad3d68525d1 100644 --- a/devel/kde-dev-scripts/distinfo +++ b/devel/kde-dev-scripts/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1738936995 -SHA256 (KDE/release-service/24.12.2/kde-dev-scripts-24.12.2.tar.xz) = b942e441f632ccb6c52e680f74d95bbc7b94221cb9d17e68bcc8ed49027469d4 -SIZE (KDE/release-service/24.12.2/kde-dev-scripts-24.12.2.tar.xz) = 376172 +TIMESTAMP = 1741275415 +SHA256 (KDE/release-service/24.12.3/kde-dev-scripts-24.12.3.tar.xz) = 9942fd8695da1332243118aa09b4c12513c521da494fe7d556a38af7a3ff8185 +SIZE (KDE/release-service/24.12.3/kde-dev-scripts-24.12.3.tar.xz) = 376188 diff --git a/devel/kde-dev-utils/distinfo b/devel/kde-dev-utils/distinfo index 06ae82f5f2d0..2ec9eef02143 100644 --- a/devel/kde-dev-utils/distinfo +++ b/devel/kde-dev-utils/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1738936999 -SHA256 (KDE/release-service/24.12.2/kde-dev-utils-24.12.2.tar.xz) = dc75570b94b52886672d1b9edac109d80cd76232e014cd5b6f76b7151e634908 -SIZE (KDE/release-service/24.12.2/kde-dev-utils-24.12.2.tar.xz) = 75616 +TIMESTAMP = 1741275417 +SHA256 (KDE/release-service/24.12.3/kde-dev-utils-24.12.3.tar.xz) = deb4a2da781ff9e48fce6b6f88f8822099368e8261c80ed645b411a451f2bfa6 +SIZE (KDE/release-service/24.12.3/kde-dev-utils-24.12.3.tar.xz) = 75712 diff --git a/devel/kdesdk-kio/distinfo b/devel/kdesdk-kio/distinfo index 0121ab14b8e4..c49c91bccebc 100644 --- a/devel/kdesdk-kio/distinfo +++ b/devel/kdesdk-kio/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1738937000 -SHA256 (KDE/release-service/24.12.2/kdesdk-kio-24.12.2.tar.xz) = 15f3205de0596b3521cbcf58d8122bd0908a7a034f9d1540a2883a0244bbb8fb -SIZE (KDE/release-service/24.12.2/kdesdk-kio-24.12.2.tar.xz) = 41768 +TIMESTAMP = 1741275420 +SHA256 (KDE/release-service/24.12.3/kdesdk-kio-24.12.3.tar.xz) = 2afea60c4a7a244056fae22698bc320820564df839db0275a081c0fae06ae6f4 +SIZE (KDE/release-service/24.12.3/kdesdk-kio-24.12.3.tar.xz) = 41764 diff --git a/devel/kdesdk-thumbnailers/distinfo b/devel/kdesdk-thumbnailers/distinfo index f8bb7a63276c..1eefc7ded678 100644 --- a/devel/kdesdk-thumbnailers/distinfo +++ b/devel/kdesdk-thumbnailers/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1738937005 -SHA256 (KDE/release-service/24.12.2/kdesdk-thumbnailers-24.12.2.tar.xz) = bdcb3b82bfc66c77e2b18640dab113aa7719920e5f0824367cea5592babe2f3a -SIZE (KDE/release-service/24.12.2/kdesdk-thumbnailers-24.12.2.tar.xz) = 27268 +TIMESTAMP = 1741275422 +SHA256 (KDE/release-service/24.12.3/kdesdk-thumbnailers-24.12.3.tar.xz) = 49b9209560f341e0ca5938d4033b68ff89b6e398d52533f03ea926423afa7775 +SIZE (KDE/release-service/24.12.3/kdesdk-thumbnailers-24.12.3.tar.xz) = 27252 diff --git a/devel/kdev-php/distinfo b/devel/kdev-php/distinfo index 3e5dbe1733ed..2abe66e5708c 100644 --- a/devel/kdev-php/distinfo +++ b/devel/kdev-php/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1738937006 -SHA256 (KDE/release-service/24.12.2/kdev-php-24.12.2.tar.xz) = 2dc355d887ff234ea6cd525c92f73152194176ed684eff2cd07ff82b48057dba -SIZE (KDE/release-service/24.12.2/kdev-php-24.12.2.tar.xz) = 1094476 +TIMESTAMP = 1741275424 +SHA256 (KDE/release-service/24.12.3/kdev-php-24.12.3.tar.xz) = 77974504732b1f47ce87edae9b170abd44dc95eabb3d3f7917a7e551961a6f88 +SIZE (KDE/release-service/24.12.3/kdev-php-24.12.3.tar.xz) = 1094472 diff --git a/devel/kdev-python/distinfo b/devel/kdev-python/distinfo index d1a5e0b33347..41483d3fcdca 100644 --- a/devel/kdev-python/distinfo +++ b/devel/kdev-python/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1738937010 -SHA256 (KDE/release-service/24.12.2/kdev-python-24.12.2.tar.xz) = 14a0a66dae8148e3d80b8f7cef94f3fed2871f8df47a403cba71c5d0828f13a8 -SIZE (KDE/release-service/24.12.2/kdev-python-24.12.2.tar.xz) = 1103168 +TIMESTAMP = 1741275428 +SHA256 (KDE/release-service/24.12.3/kdev-python-24.12.3.tar.xz) = 6dec9931dfdba5a650eb58cb5c6acdcdae787035e6f22ebec800b9e0cb9c46e7 +SIZE (KDE/release-service/24.12.3/kdev-python-24.12.3.tar.xz) = 1103312 diff --git a/devel/kdevelop/Makefile b/devel/kdevelop/Makefile index 9f38d9b6804f..5265fa8cd793 100644 --- a/devel/kdevelop/Makefile +++ b/devel/kdevelop/Makefile @@ -1,55 +1,54 @@ # When updating this port, also chase # devel/kdev-php # devel/kdev-python PORTNAME= kdevelop DISTVERSION= ${KDE_APPLICATIONS_VERSION} -PORTREVISION= 1 CATEGORIES= devel kde kde-applications MAINTAINER= kde@FreeBSD.org COMMENT= Plugin extensible IDE for C/C++ and other languages WWW= https://www.kdevelop.org/ LICENSE= GPLv2+ LGPL20+ LICENSE_COMB= multi BUILD_DEPENDS= kdev-pg-qt:devel/kdevelop-pg-qt LIB_DEPENDS= libKasten4Controllers.so:devel/okteta \ libapr-1.so:devel/apr1 \ libsvn_client-1.so:devel/subversion \ libboost_thread.so:devel/boost-libs \ libkomparediff2.so:textproc/libkomparediff2 RUN_DEPENDS= gmake:devel/gmake USES= cmake compiler:c++11-lib desktop-file-utils gettext kde:6 \ llvm:build,run,noexport pkgconfig qt:6 shared-mime-info \ shebangfix tar:xz xorg USE_KDE= archive attica auth bookmarks codecs completion config \ configwidgets coreaddons crash guiaddons i18n iconthemes \ itemmodels itemviews jobwidgets kcmutils kdeclarative kio \ libplasma newstuff notifications notifyconfig package parts \ purpose runner service solid sonnet syntaxhighlighting \ texteditor texttemplate textwidgets threadweaver \ widgetsaddons windowsystem xmlgui USE_QT= base webengine USE_XORG= x11 SHEBANG_FILES= kdevplatform/util/kdevplatform_shell_environment.sh \ kdevplatform/util/.zshrc # Most ports have ecm:build, testlib:build, but because this is an # IDE, which **probably** is used for Qt / KDE development (also # other things, but let's guess a target market), pull in some # additional development things that are otherwise build-dep-only. USE_KDE+= ecm CMAKE_ARGS= -DCMAKE_POLICY_DEFAULT_CMP0074=NEW \ -DClang_DIR=${LLVM_PREFIX}/lib/cmake/clang CMAKE_OFF= USE_QTWEBKIT # Versioning values, to reduce plist churn .include "${.CURDIR}/kdevelop.mk" SHEBANG_LANG= zsh zsh_OLD_CMD= /bin/zsh zsh_CMD= ${LOCALBASE}/bin/zsh .include diff --git a/devel/kdevelop/distinfo b/devel/kdevelop/distinfo index 51483cc8103b..e104a45b0e50 100644 --- a/devel/kdevelop/distinfo +++ b/devel/kdevelop/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1738937019 -SHA256 (KDE/release-service/24.12.2/kdevelop-24.12.2.tar.xz) = f79696b337a9e1cd00f750da07114eb6db928c1ab39d9104e0c9e80674f5dcec -SIZE (KDE/release-service/24.12.2/kdevelop-24.12.2.tar.xz) = 8833936 +TIMESTAMP = 1741275434 +SHA256 (KDE/release-service/24.12.3/kdevelop-24.12.3.tar.xz) = cd2b776b657ec7eca2f72b6704af64f8b43eb62fb392779238020c987116aab2 +SIZE (KDE/release-service/24.12.3/kdevelop-24.12.3.tar.xz) = 8835256 diff --git a/devel/kio-extras/Makefile b/devel/kio-extras/Makefile index 954b7a100eac..cb2c34200297 100644 --- a/devel/kio-extras/Makefile +++ b/devel/kio-extras/Makefile @@ -1,71 +1,70 @@ PORTNAME= kio-extras DISTVERSION= ${KDE_APPLICATIONS_VERSION} -PORTREVISION= 1 CATEGORIES= devel kde kde-applications MAINTAINER= kde@FreeBSD.org COMMENT= Plasma6 library to increase the functionality of KIO WWW= https://projects.kde.org/projects/kde/workspace/kio-extras LIB_DEPENDS= libtag.so:audio/taglib \ libImath.so:math/Imath \ libkdsoap-qt6.so:www/kdsoap \ libKDSoapWSDiscoveryClient.so:www/kdsoap-ws-discovery-client\ libQCoro6Core.so:devel/qcoro@qt6 USES= cmake compiler:c++11-lib gettext gperf kde:6 pkgconfig qt:6 \ shared-mime-info shebangfix tar:xz xorg USE_KDE= activities activities-stats archive auth bookmarks codecs \ completion config configwidgets coreaddons crash dbusaddons \ dnssd doctools guiaddons i18n iconthemes itemmodels itemviews \ jobwidgets kcmutils kio notifications parts phonon pty service \ solid sonnet syntaxhighlighting textwidgets unitconversion \ widgetsaddons windowsystem xmlgui \ ecm:build USE_QT= base declarative USE_XORG= x11 xcursor SHEBANG_FILES= info/kde-info2html # CVE-2018-19120 CMAKE_ON= CMAKE_DISABLE_FIND_PACKAGE_Qt6WebEngineWidget OPTIONS_DEFINE= SAMBA AFC MTP EXR EXIV SLP SSH TAGLIB DOCS OPTIONS_DEFAULT= SAMBA AFC MTP EXR EXIV SLP SSH TAGLIB OPTIONS_SUB= yes SAMBA_DESC= Needed to build the SMB kioslave SAMBA_CMAKE_BOOL_OFF= CMAKE_DISABLE_FIND_PACKAGE_Samba SAMBA_USES= samba:lib AFC_DESC= Needed to build AFC (Apple File Conduit) kioslave AFC_LIB_DEPENDS= libimobiledevice-1.0.so:comms/libimobiledevice \ libplist-2.0.so:devel/libplist AFC_CMAKE_BOOL_OFF= CMAKE_DISABLE_FIND_PACKAGE_IMobileDevice \ CMAKE_DISABLE_FIND_PACKAGE_PList MTP_DESC= Needed to build the MTP kioslave MTP_CMAKE_BOOL_OFF= CMAKE_DISABLE_FIND_PACKAGE_Mtp MTP_LIB_DEPENDS= libmtp.so:multimedia/libmtp EXR_DESC= Provides support for OpenEXR formatted images in the thumbnail kioslave EXR_CMAKE_BOOL_OFF= CMAKE_DISABLE_FIND_PACKAGE_OpenEXR EXR_LIB_DEPENDS= libOpenEXR.so:graphics/openexr EXIV_DESC= Provides support for automatic rotation of JPEGs in the thumbnail kioslave EXIV_CMAKE_BOOL_OFF= CMAKE_DISABLE_FIND_PACKAGE_KF6kExiv2 EXIV_USE= KDE=libkexiv2 SLP_DESC= Provides SLP support in the network:/ kioslave SLP_CMAKE_BOOL_OFF= CMAKE_DISABLE_FIND_PACKAGE_SLP SLP_LIB_DEPENDS= libslp.so:net/openslp SSH_DESC= Needed to build the SFTP kioslave SSH_CMAKE_BOOL_OFF= CMAKE_DISABLE_FIND_PACKAGE_LibSSH SSH_LIB_DEPENDS= libssh.so:security/libssh # Our taglib is too old TAGLIB_DESC= Needed to build the audio thumbnail kioslave TAGLIB_CMAKE_BOOL_OFF= CMAKE_DISABLE_FIND_PACKAGE_Taglib TAGLIB_LIB_DEPENDS= libtag.so:audio/taglib .include diff --git a/devel/kio-extras/distinfo b/devel/kio-extras/distinfo index dc96775b858e..e6e4f67bb83e 100644 --- a/devel/kio-extras/distinfo +++ b/devel/kio-extras/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1738937020 -SHA256 (KDE/release-service/24.12.2/kio-extras-24.12.2.tar.xz) = 72c307263422a59bb1a4976a07b78b7cfeeb7fff866ecb6d16e8e3d1d61c58f4 -SIZE (KDE/release-service/24.12.2/kio-extras-24.12.2.tar.xz) = 3514628 +TIMESTAMP = 1741275440 +SHA256 (KDE/release-service/24.12.3/kio-extras-24.12.3.tar.xz) = c4374fe36e87e7b0eb745a1bba8f4b066f58b84139f9cd7b42cab6711bfb6e2f +SIZE (KDE/release-service/24.12.3/kio-extras-24.12.3.tar.xz) = 3515324 diff --git a/devel/kio-extras/pkg-plist b/devel/kio-extras/pkg-plist index 83b4edd85f9c..f3dfa46a4110 100644 --- a/devel/kio-extras/pkg-plist +++ b/devel/kio-extras/pkg-plist @@ -1,1073 +1,1074 @@ 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 %%EXR%%%%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%%/kfileaudiopreview.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 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/kfileaudiopreview6.mo 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_sftp.mo share/locale/af/LC_MESSAGES/kio6_smb.mo share/locale/af/LC_MESSAGES/kio6_thumbnail.mo share/locale/ar/LC_MESSAGES/kfileaudiopreview6.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_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/kfileaudiopreview6.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_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/kfileaudiopreview6.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_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_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_smb.mo share/locale/be@latin/LC_MESSAGES/kio6_thumbnail.mo share/locale/bg/LC_MESSAGES/kfileaudiopreview6.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_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/kfileaudiopreview6.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_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_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/kfileaudiopreview6.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_sftp.mo share/locale/br/LC_MESSAGES/kio6_smb.mo share/locale/br/LC_MESSAGES/kio6_thumbnail.mo share/locale/bs/LC_MESSAGES/kfileaudiopreview6.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_sftp.mo share/locale/bs/LC_MESSAGES/kio6_smb.mo share/locale/bs/LC_MESSAGES/kio6_thumbnail.mo share/locale/ca/LC_MESSAGES/kfileaudiopreview6.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_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/kfileaudiopreview6.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_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/kfileaudiopreview6.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_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/kfileaudiopreview6.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_sftp.mo share/locale/csb/LC_MESSAGES/kio6_smb.mo share/locale/csb/LC_MESSAGES/kio6_thumbnail.mo share/locale/cy/LC_MESSAGES/kfileaudiopreview6.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_sftp.mo share/locale/cy/LC_MESSAGES/kio6_smb.mo share/locale/da/LC_MESSAGES/kfileaudiopreview6.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_sftp.mo share/locale/da/LC_MESSAGES/kio6_smb.mo share/locale/da/LC_MESSAGES/kio6_thumbnail.mo share/locale/de/LC_MESSAGES/kfileaudiopreview6.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_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/kfileaudiopreview6.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_sftp.mo share/locale/el/LC_MESSAGES/kio6_smb.mo share/locale/el/LC_MESSAGES/kio6_thumbnail.mo share/locale/en_GB/LC_MESSAGES/kfileaudiopreview6.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_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/kfileaudiopreview6.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_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/kfileaudiopreview6.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_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/kfileaudiopreview6.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_sftp.mo share/locale/et/LC_MESSAGES/kio6_smb.mo share/locale/et/LC_MESSAGES/kio6_thumbnail.mo share/locale/eu/LC_MESSAGES/kfileaudiopreview6.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_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/kfileaudiopreview6.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_sftp.mo share/locale/fa/LC_MESSAGES/kio6_smb.mo share/locale/fa/LC_MESSAGES/kio6_thumbnail.mo share/locale/fi/LC_MESSAGES/kfileaudiopreview6.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_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/kfileaudiopreview6.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_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/kfileaudiopreview6.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_sftp.mo share/locale/fy/LC_MESSAGES/kio6_smb.mo share/locale/fy/LC_MESSAGES/kio6_thumbnail.mo share/locale/ga/LC_MESSAGES/kfileaudiopreview6.mo share/locale/ga/LC_MESSAGES/kio-extras_kcms.mo share/locale/ga/LC_MESSAGES/kio6_activities.mo share/locale/ga/LC_MESSAGES/kio6_archive.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_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/kfileaudiopreview6.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_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/kfileaudiopreview6.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_sftp.mo share/locale/gu/LC_MESSAGES/kio6_smb.mo share/locale/gu/LC_MESSAGES/kio6_thumbnail.mo share/locale/he/LC_MESSAGES/kfileaudiopreview6.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_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/kfileaudiopreview6.mo share/locale/hi/LC_MESSAGES/kio-extras_kcms.mo share/locale/hi/LC_MESSAGES/kio6_activities.mo share/locale/hi/LC_MESSAGES/kio6_archive.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_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_sftp.mo share/locale/hne/LC_MESSAGES/kio6_smb.mo share/locale/hne/LC_MESSAGES/kio6_thumbnail.mo share/locale/hr/LC_MESSAGES/kfileaudiopreview6.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_sftp.mo share/locale/hr/LC_MESSAGES/kio6_smb.mo share/locale/hr/LC_MESSAGES/kio6_thumbnail.mo share/locale/hsb/LC_MESSAGES/kfileaudiopreview6.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_sftp.mo share/locale/hsb/LC_MESSAGES/kio6_smb.mo share/locale/hsb/LC_MESSAGES/kio6_thumbnail.mo share/locale/hu/LC_MESSAGES/kfileaudiopreview6.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_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/kfileaudiopreview6.mo share/locale/hy/LC_MESSAGES/kio6_fish.mo share/locale/ia/LC_MESSAGES/kfileaudiopreview6.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_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/kfileaudiopreview6.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_sftp.mo share/locale/id/LC_MESSAGES/kio6_smb.mo share/locale/id/LC_MESSAGES/kio6_thumbnail.mo share/locale/ie/LC_MESSAGES/kfileaudiopreview6.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/kfileaudiopreview6.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_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_sftp.mo share/locale/is/LC_MESSAGES/kio6_smb.mo share/locale/is/LC_MESSAGES/kio6_thumbnail.mo share/locale/it/LC_MESSAGES/kfileaudiopreview6.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_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/kfileaudiopreview6.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_sftp.mo share/locale/ja/LC_MESSAGES/kio6_smb.mo share/locale/ja/LC_MESSAGES/kio6_thumbnail.mo share/locale/ka/LC_MESSAGES/kfileaudiopreview6.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_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/kfileaudiopreview6.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_sftp.mo share/locale/kk/LC_MESSAGES/kio6_smb.mo share/locale/kk/LC_MESSAGES/kio6_thumbnail.mo share/locale/km/LC_MESSAGES/kfileaudiopreview6.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_sftp.mo share/locale/km/LC_MESSAGES/kio6_smb.mo share/locale/km/LC_MESSAGES/kio6_thumbnail.mo share/locale/kn/LC_MESSAGES/kfileaudiopreview6.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_sftp.mo share/locale/kn/LC_MESSAGES/kio6_smb.mo share/locale/kn/LC_MESSAGES/kio6_thumbnail.mo share/locale/ko/LC_MESSAGES/kfileaudiopreview6.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_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/kfileaudiopreview6.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_sftp.mo share/locale/ku/LC_MESSAGES/kio6_smb.mo share/locale/ku/LC_MESSAGES/kio6_thumbnail.mo share/locale/lb/LC_MESSAGES/kfileaudiopreview6.mo share/locale/lb/LC_MESSAGES/kio6_archive.mo share/locale/lt/LC_MESSAGES/kfileaudiopreview6.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_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_sftp.mo share/locale/lt/LC_MESSAGES/kio6_smb.mo share/locale/lt/LC_MESSAGES/kio6_thumbnail.mo share/locale/lv/LC_MESSAGES/kfileaudiopreview6.mo share/locale/lv/LC_MESSAGES/kio-extras_kcms.mo share/locale/lv/LC_MESSAGES/kio6_activities.mo share/locale/lv/LC_MESSAGES/kio6_archive.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_sftp.mo share/locale/lv/LC_MESSAGES/kio6_smb.mo share/locale/lv/LC_MESSAGES/kio6_thumbnail.mo share/locale/mai/LC_MESSAGES/kfileaudiopreview6.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_sftp.mo share/locale/mai/LC_MESSAGES/kio6_smb.mo share/locale/mai/LC_MESSAGES/kio6_thumbnail.mo share/locale/mk/LC_MESSAGES/kfileaudiopreview6.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_sftp.mo share/locale/mk/LC_MESSAGES/kio6_smb.mo share/locale/mk/LC_MESSAGES/kio6_thumbnail.mo share/locale/ml/LC_MESSAGES/kfileaudiopreview6.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_sftp.mo share/locale/ml/LC_MESSAGES/kio6_smb.mo share/locale/ml/LC_MESSAGES/kio6_thumbnail.mo share/locale/mr/LC_MESSAGES/kfileaudiopreview6.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_sftp.mo share/locale/mr/LC_MESSAGES/kio6_smb.mo share/locale/mr/LC_MESSAGES/kio6_thumbnail.mo share/locale/ms/LC_MESSAGES/kfileaudiopreview6.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_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/kfileaudiopreview6.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_sftp.mo share/locale/nb/LC_MESSAGES/kio6_smb.mo share/locale/nb/LC_MESSAGES/kio6_thumbnail.mo share/locale/nds/LC_MESSAGES/kfileaudiopreview6.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_sftp.mo share/locale/nds/LC_MESSAGES/kio6_smb.mo share/locale/nds/LC_MESSAGES/kio6_thumbnail.mo share/locale/ne/LC_MESSAGES/kfileaudiopreview6.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_sftp.mo share/locale/ne/LC_MESSAGES/kio6_smb.mo share/locale/ne/LC_MESSAGES/kio6_thumbnail.mo share/locale/nl/LC_MESSAGES/kfileaudiopreview6.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_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/kfileaudiopreview6.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_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_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_sftp.mo share/locale/or/LC_MESSAGES/kio6_smb.mo share/locale/or/LC_MESSAGES/kio6_thumbnail.mo share/locale/pa/LC_MESSAGES/kfileaudiopreview6.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_sftp.mo share/locale/pa/LC_MESSAGES/kio6_smb.mo share/locale/pa/LC_MESSAGES/kio6_thumbnail.mo share/locale/pl/LC_MESSAGES/kfileaudiopreview6.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_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/kfileaudiopreview6.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_sftp.mo share/locale/pt/LC_MESSAGES/kio6_smb.mo share/locale/pt/LC_MESSAGES/kio6_thumbnail.mo share/locale/pt_BR/LC_MESSAGES/kfileaudiopreview6.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_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/kfileaudiopreview6.mo share/locale/ro/LC_MESSAGES/kio-extras_kcms.mo share/locale/ro/LC_MESSAGES/kio6_activities.mo share/locale/ro/LC_MESSAGES/kio6_archive.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_sftp.mo share/locale/ro/LC_MESSAGES/kio6_smb.mo share/locale/ro/LC_MESSAGES/kio6_thumbnail.mo share/locale/ru/LC_MESSAGES/kfileaudiopreview6.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_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/se/LC_MESSAGES/kfileaudiopreview6.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_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_sftp.mo share/locale/si/LC_MESSAGES/kio6_smb.mo share/locale/si/LC_MESSAGES/kio6_thumbnail.mo share/locale/sk/LC_MESSAGES/kfileaudiopreview6.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_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/kfileaudiopreview6.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_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/kfileaudiopreview6.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_sftp.mo share/locale/sq/LC_MESSAGES/kio6_smb.mo share/locale/sq/LC_MESSAGES/kio6_thumbnail.mo share/locale/sr/LC_MESSAGES/kfileaudiopreview6.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_sftp.mo share/locale/sr/LC_MESSAGES/kio6_smb.mo share/locale/sr/LC_MESSAGES/kio6_thumbnail.mo share/locale/sr@ijekavian/LC_MESSAGES/kfileaudiopreview6.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_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/kfileaudiopreview6.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_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/kfileaudiopreview6.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_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/kfileaudiopreview6.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_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/kfileaudiopreview6.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_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_sftp.mo share/locale/ta/LC_MESSAGES/kio6_smb.mo share/locale/ta/LC_MESSAGES/kio6_thumbnail.mo share/locale/te/LC_MESSAGES/kfileaudiopreview6.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_sftp.mo share/locale/te/LC_MESSAGES/kio6_smb.mo share/locale/te/LC_MESSAGES/kio6_thumbnail.mo share/locale/tg/LC_MESSAGES/kfileaudiopreview6.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_sftp.mo share/locale/tg/LC_MESSAGES/kio6_smb.mo share/locale/tg/LC_MESSAGES/kio6_thumbnail.mo share/locale/th/LC_MESSAGES/kfileaudiopreview6.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_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/kfileaudiopreview6.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_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/kfileaudiopreview6.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_sftp.mo share/locale/ug/LC_MESSAGES/kio6_smb.mo share/locale/ug/LC_MESSAGES/kio6_thumbnail.mo share/locale/uk/LC_MESSAGES/kfileaudiopreview6.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_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/kfileaudiopreview6.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_sftp.mo share/locale/uz/LC_MESSAGES/kio6_smb.mo share/locale/uz/LC_MESSAGES/kio6_thumbnail.mo share/locale/uz@cyrillic/LC_MESSAGES/kfileaudiopreview6.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_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/kfileaudiopreview6.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_sftp.mo share/locale/vi/LC_MESSAGES/kio6_smb.mo share/locale/vi/LC_MESSAGES/kio6_thumbnail.mo share/locale/wa/LC_MESSAGES/kfileaudiopreview6.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_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_sftp.mo share/locale/xh/LC_MESSAGES/kio6_smb.mo share/locale/zh_CN/LC_MESSAGES/kfileaudiopreview6.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_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_HK/LC_MESSAGES/kfileaudiopreview6.mo share/locale/zh_TW/LC_MESSAGES/kfileaudiopreview6.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_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 ca247450c49a..e1ce86226ce3 100644 --- a/devel/kirigami-gallery/distinfo +++ b/devel/kirigami-gallery/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1738937021 -SHA256 (KDE/release-service/24.12.2/kirigami-gallery-24.12.2.tar.xz) = 0af8a3a00771db1c57c7c0f10d46dfd0085e3d2b4889e26983660559f644cb8c -SIZE (KDE/release-service/24.12.2/kirigami-gallery-24.12.2.tar.xz) = 370780 +TIMESTAMP = 1741275443 +SHA256 (KDE/release-service/24.12.3/kirigami-gallery-24.12.3.tar.xz) = 38d706a40ccd49fe7fe5695402ae55b0dca552915d54186750b017f63dc1dce4 +SIZE (KDE/release-service/24.12.3/kirigami-gallery-24.12.3.tar.xz) = 370976 diff --git a/devel/kopeninghours/distinfo b/devel/kopeninghours/distinfo index 743f6aca680b..a87a0b080f5d 100644 --- a/devel/kopeninghours/distinfo +++ b/devel/kopeninghours/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1738937023 -SHA256 (KDE/release-service/24.12.2/kopeninghours-24.12.2.tar.xz) = 6c80ff799ef3077ca329e0f57a6329731df2814540c1ea4004834d021d2022a9 -SIZE (KDE/release-service/24.12.2/kopeninghours-24.12.2.tar.xz) = 74836 +TIMESTAMP = 1741275446 +SHA256 (KDE/release-service/24.12.3/kopeninghours-24.12.3.tar.xz) = 1049cf08c9f70a99fbba954261ca5e6a54ae72b67b5ea2ba981a1b64a70e4232 +SIZE (KDE/release-service/24.12.3/kopeninghours-24.12.3.tar.xz) = 74844 diff --git a/devel/kpublictransport/distinfo b/devel/kpublictransport/distinfo index 2c3eeb122248..291b765b7766 100644 --- a/devel/kpublictransport/distinfo +++ b/devel/kpublictransport/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1738937024 -SHA256 (KDE/release-service/24.12.2/kpublictransport-24.12.2.tar.xz) = f2a2391ccfd6f52f421a7cd8f93ee9b243f357d27c223b29b6b3c389c6a6f926 -SIZE (KDE/release-service/24.12.2/kpublictransport-24.12.2.tar.xz) = 814536 +TIMESTAMP = 1741275450 +SHA256 (KDE/release-service/24.12.3/kpublictransport-24.12.3.tar.xz) = 751ff49cfd88450e957bd5f2920bf01b3a452011dfd341d18ad0d06bbaaaffe9 +SIZE (KDE/release-service/24.12.3/kpublictransport-24.12.3.tar.xz) = 814748 diff --git a/devel/kpublictransport/pkg-plist b/devel/kpublictransport/pkg-plist index e7e402094601..80037e993c1a 100644 --- a/devel/kpublictransport/pkg-plist +++ b/devel/kpublictransport/pkg-plist @@ -1,131 +1,132 @@ include/KPublicTransport/KPublicTransport/AbstractQueryModel include/KPublicTransport/KPublicTransport/Attribution include/KPublicTransport/KPublicTransport/Backend include/KPublicTransport/KPublicTransport/BackendModel include/KPublicTransport/KPublicTransport/CoverageArea include/KPublicTransport/KPublicTransport/Datatypes include/KPublicTransport/KPublicTransport/Disruption include/KPublicTransport/KPublicTransport/Equipment include/KPublicTransport/KPublicTransport/Feature include/KPublicTransport/KPublicTransport/IndividualTransport include/KPublicTransport/KPublicTransport/Journey include/KPublicTransport/KPublicTransport/JourneyQueryModel include/KPublicTransport/KPublicTransport/JourneyReply include/KPublicTransport/KPublicTransport/JourneyRequest include/KPublicTransport/KPublicTransport/Line include/KPublicTransport/KPublicTransport/Load include/KPublicTransport/KPublicTransport/Location include/KPublicTransport/KPublicTransport/LocationHistoryModel include/KPublicTransport/KPublicTransport/LocationQueryModel include/KPublicTransport/KPublicTransport/LocationReply include/KPublicTransport/KPublicTransport/LocationRequest include/KPublicTransport/KPublicTransport/Manager include/KPublicTransport/KPublicTransport/OnboardStatus include/KPublicTransport/KPublicTransport/Path include/KPublicTransport/KPublicTransport/PathModel include/KPublicTransport/KPublicTransport/Platform include/KPublicTransport/KPublicTransport/PlatformLayout include/KPublicTransport/KPublicTransport/RentalVehicle include/KPublicTransport/KPublicTransport/Reply include/KPublicTransport/KPublicTransport/Stopover include/KPublicTransport/KPublicTransport/StopoverQueryModel include/KPublicTransport/KPublicTransport/StopoverReply include/KPublicTransport/KPublicTransport/StopoverRequest include/KPublicTransport/KPublicTransport/Vehicle include/KPublicTransport/KPublicTransport/VehicleLayoutQueryModel include/KPublicTransport/KPublicTransport/VehicleLayoutReply include/KPublicTransport/KPublicTransport/VehicleLayoutRequest include/KPublicTransport/kpublictransport/abstractquerymodel.h include/KPublicTransport/kpublictransport/attribution.h include/KPublicTransport/kpublictransport/backend.h include/KPublicTransport/kpublictransport/backendmodel.h include/KPublicTransport/kpublictransport/coveragearea.h include/KPublicTransport/kpublictransport/datatypes.h include/KPublicTransport/kpublictransport/disruption.h include/KPublicTransport/kpublictransport/equipment.h include/KPublicTransport/kpublictransport/feature.h include/KPublicTransport/kpublictransport/individualtransport.h include/KPublicTransport/kpublictransport/journey.h include/KPublicTransport/kpublictransport/journeyquerymodel.h include/KPublicTransport/kpublictransport/journeyreply.h include/KPublicTransport/kpublictransport/journeyrequest.h include/KPublicTransport/kpublictransport/kpublictransport_export.h include/KPublicTransport/kpublictransport/kpublictransportonboard_export.h include/KPublicTransport/kpublictransport/line.h include/KPublicTransport/kpublictransport/load.h include/KPublicTransport/kpublictransport/location.h include/KPublicTransport/kpublictransport/locationhistorymodel.h include/KPublicTransport/kpublictransport/locationquerymodel.h include/KPublicTransport/kpublictransport/locationreply.h include/KPublicTransport/kpublictransport/locationrequest.h include/KPublicTransport/kpublictransport/manager.h include/KPublicTransport/kpublictransport/onboardstatus.h include/KPublicTransport/kpublictransport/path.h include/KPublicTransport/kpublictransport/pathmodel.h include/KPublicTransport/kpublictransport/platform.h include/KPublicTransport/kpublictransport/platformlayout.h include/KPublicTransport/kpublictransport/rentalvehicle.h include/KPublicTransport/kpublictransport/reply.h include/KPublicTransport/kpublictransport/stopover.h include/KPublicTransport/kpublictransport/stopoverquerymodel.h include/KPublicTransport/kpublictransport/stopoverreply.h include/KPublicTransport/kpublictransport/stopoverrequest.h include/KPublicTransport/kpublictransport/vehicle.h include/KPublicTransport/kpublictransport/vehiclelayoutquerymodel.h include/KPublicTransport/kpublictransport/vehiclelayoutreply.h include/KPublicTransport/kpublictransport/vehiclelayoutrequest.h include/KPublicTransport/kpublictransport_version.h lib/cmake/KPublicTransport/KPublicTransportConfig.cmake lib/cmake/KPublicTransport/KPublicTransportConfigVersion.cmake lib/cmake/KPublicTransport/KPublicTransportTargets-%%CMAKE_BUILD_TYPE%%.cmake lib/cmake/KPublicTransport/KPublicTransportTargets.cmake lib/libKPublicTransport.so lib/libKPublicTransport.so.1 lib/libKPublicTransport.so.%%KDE_APPLICATIONS_VERSION%% lib/libKPublicTransportOnboard.so lib/libKPublicTransportOnboard.so.1 lib/libKPublicTransportOnboard.so.%%KDE_APPLICATIONS_VERSION%% %%QT_QMLDIR%%/org/kde/kpublictransport/kde-qmlmodule.version %%QT_QMLDIR%%/org/kde/kpublictransport/kpublictransportqmlplugin.qmltypes %%QT_QMLDIR%%/org/kde/kpublictransport/libkpublictransportqmlplugin.so %%QT_QMLDIR%%/org/kde/kpublictransport/onboard/kde-qmlmodule.version %%QT_QMLDIR%%/org/kde/kpublictransport/onboard/kpublictransportonboardqmlplugin.qmltypes %%QT_QMLDIR%%/org/kde/kpublictransport/onboard/libkpublictransportonboardqmlplugin.so %%QT_QMLDIR%%/org/kde/kpublictransport/onboard/qmldir %%QT_QMLDIR%%/org/kde/kpublictransport/qmldir %%QT_QMLDIR%%/org/kde/kpublictransport/ui/FeatureIcon.qml %%QT_QMLDIR%%/org/kde/kpublictransport/ui/OccupancyIndicator.qml %%QT_QMLDIR%%/org/kde/kpublictransport/ui/VehicleSectionItem.qml %%QT_QMLDIR%%/org/kde/kpublictransport/ui/kde-qmlmodule.version %%QT_QMLDIR%%/org/kde/kpublictransport/ui/kpublictransportquickplugin.qmltypes %%QT_QMLDIR%%/org/kde/kpublictransport/ui/libkpublictransportquickplugin.so %%QT_QMLDIR%%/org/kde/kpublictransport/ui/qmldir share/locale/ca/LC_MESSAGES/kpublictransport.mo share/locale/ca@valencia/LC_MESSAGES/kpublictransport.mo share/locale/cs/LC_MESSAGES/kpublictransport.mo share/locale/de/LC_MESSAGES/kpublictransport.mo share/locale/en_GB/LC_MESSAGES/kpublictransport.mo share/locale/eo/LC_MESSAGES/kpublictransport.mo share/locale/es/LC_MESSAGES/kpublictransport.mo share/locale/eu/LC_MESSAGES/kpublictransport.mo share/locale/fi/LC_MESSAGES/kpublictransport.mo share/locale/fr/LC_MESSAGES/kpublictransport.mo share/locale/gl/LC_MESSAGES/kpublictransport.mo share/locale/he/LC_MESSAGES/kpublictransport.mo share/locale/hu/LC_MESSAGES/kpublictransport.mo share/locale/ia/LC_MESSAGES/kpublictransport.mo share/locale/it/LC_MESSAGES/kpublictransport.mo share/locale/ka/LC_MESSAGES/kpublictransport.mo share/locale/ko/LC_MESSAGES/kpublictransport.mo share/locale/lv/LC_MESSAGES/kpublictransport.mo share/locale/nl/LC_MESSAGES/kpublictransport.mo share/locale/pl/LC_MESSAGES/kpublictransport.mo share/locale/ru/LC_MESSAGES/kpublictransport.mo share/locale/sk/LC_MESSAGES/kpublictransport.mo share/locale/sl/LC_MESSAGES/kpublictransport.mo share/locale/sv/LC_MESSAGES/kpublictransport.mo share/locale/tr/LC_MESSAGES/kpublictransport.mo share/locale/uk/LC_MESSAGES/kpublictransport.mo share/locale/zh_CN/LC_MESSAGES/kpublictransport.mo +share/locale/zh_TW/LC_MESSAGES/kpublictransport.mo share/qlogging-categories6/org_kde_kpublictransport.categories share/qlogging-categories6/org_kde_kpublictransport_onboard.categories diff --git a/devel/lokalize/distinfo b/devel/lokalize/distinfo index 04209190df32..529b47fc266d 100644 --- a/devel/lokalize/distinfo +++ b/devel/lokalize/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1738937025 -SHA256 (KDE/release-service/24.12.2/lokalize-24.12.2.tar.xz) = 8305d098746526d1974e7419f3162f30fb1797e0109971cbc98003365692f336 -SIZE (KDE/release-service/24.12.2/lokalize-24.12.2.tar.xz) = 2059604 +TIMESTAMP = 1741275455 +SHA256 (KDE/release-service/24.12.3/lokalize-24.12.3.tar.xz) = f34348403ceaad79eceae088d1d0f2dd3c9ecd30319ce0b2847135aa0803f218 +SIZE (KDE/release-service/24.12.3/lokalize-24.12.3.tar.xz) = 2059676 diff --git a/devel/massif-visualizer/distinfo b/devel/massif-visualizer/distinfo index db081cf0cdc0..6b88041e214f 100644 --- a/devel/massif-visualizer/distinfo +++ b/devel/massif-visualizer/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1740254684 -SHA256 (KDE/release-service/24.12.2/massif-visualizer-24.12.2.tar.xz) = 7f9cc26f0f8f2ed15d5c323cac18861b4134bd5a71d9cc68ba02adfd6d9ac8fb -SIZE (KDE/release-service/24.12.2/massif-visualizer-24.12.2.tar.xz) = 279540 +TIMESTAMP = 1741275458 +SHA256 (KDE/release-service/24.12.3/massif-visualizer-24.12.3.tar.xz) = b56f4e63ba53f4eaa640b21461fb99d0c409d219a4f370925839089c293eaa25 +SIZE (KDE/release-service/24.12.3/massif-visualizer-24.12.3.tar.xz) = 279440 diff --git a/devel/poxml/distinfo b/devel/poxml/distinfo index b5372c461bfd..6268694d3aac 100644 --- a/devel/poxml/distinfo +++ b/devel/poxml/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1738937026 -SHA256 (KDE/release-service/24.12.2/poxml-24.12.2.tar.xz) = 2fd6d9d1e72d6a4f51312194d63cc56c2391114bc957850e7ac7e75d90d88399 -SIZE (KDE/release-service/24.12.2/poxml-24.12.2.tar.xz) = 45200 +TIMESTAMP = 1741275461 +SHA256 (KDE/release-service/24.12.3/poxml-24.12.3.tar.xz) = a1fb53ea520de888306fcd064c6ee17aa4bbef7bcedcab840c2d57f09ea5ac5a +SIZE (KDE/release-service/24.12.3/poxml-24.12.3.tar.xz) = 45200 diff --git a/devel/umbrello/Makefile b/devel/umbrello/Makefile index ef866eeeaf59..aa165f11b6b9 100644 --- a/devel/umbrello/Makefile +++ b/devel/umbrello/Makefile @@ -1,33 +1,32 @@ PORTNAME= umbrello DISTVERSION= ${KDE_APPLICATIONS_VERSION} -PORTREVISION= 1 CATEGORIES= devel kde kde-applications MAINTAINER= kde@FreeBSD.org COMMENT= UML modeller for KDE WWW= https://umbrello.kde.org/ LIB_DEPENDS= libboost_thread.so:devel/boost-libs USES= cmake compiler:c++11-lang desktop-file-utils gnome kde:5 qt:5 \ tar:xz xorg USE_GNOME= libxml2 libxslt USE_KDE= archive auth bookmarks codecs completion config configwidgets \ coreaddons crash guiaddons i18n iconthemes init itemviews \ jobwidgets kio notifications parts service solid sonnet \ syntaxhighlighting texteditor textwidgets unitconversion \ widgetsaddons windowsystem xmlgui \ ecm:build USE_QT= concurrent core dbus gui network printsupport svg widgets xml \ buildtools:build qmake:build testlib:build USE_XORG= x11 OPTIONS_DEFINE= DOCS post-patch: # The CMakeFile sets BUILD_UNITTESTS to 1, not respecting the # value passed via CMAKE_ARGS. ${REINPLACE_CMD} -e '/BUILD_UNITTESTS/s|1|0|' \ ${PATCH_WRKSRC}/CMakeLists.txt .include diff --git a/devel/umbrello/distinfo b/devel/umbrello/distinfo index a794850d71c0..02babdf915e9 100644 --- a/devel/umbrello/distinfo +++ b/devel/umbrello/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1738937027 -SHA256 (KDE/release-service/24.12.2/umbrello-24.12.2.tar.xz) = c95637960cc49f2ae128e76461a13314163b5467cacfe756f68de0e37878f5cb -SIZE (KDE/release-service/24.12.2/umbrello-24.12.2.tar.xz) = 5617728 +TIMESTAMP = 1741275467 +SHA256 (KDE/release-service/24.12.3/umbrello-24.12.3.tar.xz) = 861759606654658fff943af1a6e34d98f9a6da7bfa92cd4739b12c5c763f4580 +SIZE (KDE/release-service/24.12.3/umbrello-24.12.3.tar.xz) = 5617600 diff --git a/editors/calligra/Makefile b/editors/calligra/Makefile index 3238a34f28fc..80ebc7e01942 100644 --- a/editors/calligra/Makefile +++ b/editors/calligra/Makefile @@ -1,60 +1,59 @@ PORTNAME= calligra DISTVERSION= ${KDE_APPLICATIONS_VERSION} -PORTREVISION= 1 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" .include diff --git a/editors/calligra/distinfo b/editors/calligra/distinfo index b9871dc8ae91..9ce1b3881fd8 100644 --- a/editors/calligra/distinfo +++ b/editors/calligra/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1738937066 -SHA256 (KDE/release-service/24.12.2/calligra-24.12.2.tar.xz) = 5d18d6b79bf2ede170c95df1ac907f337ede24227c48220e9e51dd34fa129ac3 -SIZE (KDE/release-service/24.12.2/calligra-24.12.2.tar.xz) = 57908508 +TIMESTAMP = 1741275482 +SHA256 (KDE/release-service/24.12.3/calligra-24.12.3.tar.xz) = 17f401560fc48dfd685595fa4ce187361903ad1aad68de4b61ee06805a6daa72 +SIZE (KDE/release-service/24.12.3/calligra-24.12.3.tar.xz) = 57905564 diff --git a/editors/ghostwriter/distinfo b/editors/ghostwriter/distinfo index ebcf5cae8e8b..be72f8be79ff 100644 --- a/editors/ghostwriter/distinfo +++ b/editors/ghostwriter/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1739914564 -SHA256 (KDE/release-service/24.12.2/ghostwriter-24.12.2.tar.xz) = 322fd8f086df778b140cc9ad0e4c9a561dd105a89b4c7d14a02930d5805a95ca -SIZE (KDE/release-service/24.12.2/ghostwriter-24.12.2.tar.xz) = 2709628 +TIMESTAMP = 1741275488 +SHA256 (KDE/release-service/24.12.3/ghostwriter-24.12.3.tar.xz) = 2ec85782f0899d7dfbe9333e33470bbdfc4b1c550703301b8fa35e479c883da0 +SIZE (KDE/release-service/24.12.3/ghostwriter-24.12.3.tar.xz) = 2710828 diff --git a/editors/kate/distinfo b/editors/kate/distinfo index 5b43ce0766d8..8fc6e4ff9896 100644 --- a/editors/kate/distinfo +++ b/editors/kate/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1738937076 -SHA256 (KDE/release-service/24.12.2/kate-24.12.2.tar.xz) = 5d2608993594f7ba478e9a17072a9324134ecf86f594f39df482a3c11a97f88e -SIZE (KDE/release-service/24.12.2/kate-24.12.2.tar.xz) = 8306472 +TIMESTAMP = 1741275494 +SHA256 (KDE/release-service/24.12.3/kate-24.12.3.tar.xz) = c8952fe8730411b301344bcc69c4efcc11e1447c01b99a0916b63d59e5d6357f +SIZE (KDE/release-service/24.12.3/kate-24.12.3.tar.xz) = 8317708 diff --git a/editors/kate/pkg-plist b/editors/kate/pkg-plist index c3fc8a5f9d3e..a78c76bc665b 100644 --- a/editors/kate/pkg-plist +++ b/editors/kate/pkg-plist @@ -1,1700 +1,1710 @@ bin/kate bin/kwrite lib/libkateprivate.so.%%KDE_APPLICATIONS_VERSION%% %%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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/kate-ctags-plugin.mo share/locale/ga/LC_MESSAGES/kate.mo share/locale/ga/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/ga/LC_MESSAGES/katebuild-plugin.mo share/locale/ga/LC_MESSAGES/katefilebrowserplugin.mo share/locale/ga/LC_MESSAGES/kategdbplugin.mo share/locale/ga/LC_MESSAGES/katekonsoleplugin.mo share/locale/ga/LC_MESSAGES/kateproject.mo share/locale/ga/LC_MESSAGES/katesearch.mo share/locale/ga/LC_MESSAGES/katesnippetsplugin.mo share/locale/ga/LC_MESSAGES/katesql.mo share/locale/ga/LC_MESSAGES/katesymbolviewer.mo share/locale/ga/LC_MESSAGES/katetextfilter.mo share/locale/ga/LC_MESSAGES/katexmltools.mo share/locale/gl/LC_MESSAGES/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/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/kategitblameplugin.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/kate.mo share/locale/hi/LC_MESSAGES/katefilebrowserplugin.mo share/locale/hi/LC_MESSAGES/katekonsoleplugin.mo share/locale/hi/LC_MESSAGES/katesymbolviewer.mo share/locale/hi/LC_MESSAGES/katetextfilter.mo share/locale/hi/LC_MESSAGES/katexmltools.mo share/locale/hne/LC_MESSAGES/kate.mo share/locale/hne/LC_MESSAGES/katefilebrowserplugin.mo share/locale/hne/LC_MESSAGES/katekonsoleplugin.mo share/locale/hne/LC_MESSAGES/katesymbolviewer.mo share/locale/hne/LC_MESSAGES/katetextfilter.mo share/locale/hne/LC_MESSAGES/katexmltools.mo share/locale/hr/LC_MESSAGES/kate.mo share/locale/hr/LC_MESSAGES/katesymbolviewer.mo share/locale/hr/LC_MESSAGES/katetextfilter.mo share/locale/hr/LC_MESSAGES/katexmltools.mo share/locale/hsb/LC_MESSAGES/kate.mo share/locale/hu/LC_MESSAGES/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/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/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/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/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/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/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/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/katebuild-plugin.mo share/locale/lt/LC_MESSAGES/katecloseexceptplugin.mo share/locale/lt/LC_MESSAGES/katecolorpickerplugin.mo share/locale/lt/LC_MESSAGES/kateexternaltoolsplugin.mo share/locale/lt/LC_MESSAGES/katefilebrowserplugin.mo share/locale/lt/LC_MESSAGES/katefiletree.mo share/locale/lt/LC_MESSAGES/kategdbplugin.mo share/locale/lt/LC_MESSAGES/kategitblameplugin.mo share/locale/lt/LC_MESSAGES/katekeyboardmacros.mo share/locale/lt/LC_MESSAGES/katekonsoleplugin.mo share/locale/lt/LC_MESSAGES/kateproject.mo share/locale/lt/LC_MESSAGES/katesearch.mo share/locale/lt/LC_MESSAGES/katesnippetsplugin.mo share/locale/lt/LC_MESSAGES/katesql.mo share/locale/lt/LC_MESSAGES/katesymbolviewer.mo share/locale/lt/LC_MESSAGES/katetextfilter.mo share/locale/lt/LC_MESSAGES/katexmlcheck.mo share/locale/lt/LC_MESSAGES/katexmltools.mo share/locale/lt/LC_MESSAGES/ktexteditorpreviewplugin.mo share/locale/lt/LC_MESSAGES/lspclient.mo share/locale/lt/LC_MESSAGES/rainbowparens.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/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/kate-ctags-plugin.mo share/locale/nb/LC_MESSAGES/kate-replicode-plugin.mo share/locale/nb/LC_MESSAGES/kate.mo share/locale/nb/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/nb/LC_MESSAGES/katebuild-plugin.mo share/locale/nb/LC_MESSAGES/katecloseexceptplugin.mo share/locale/nb/LC_MESSAGES/katefilebrowserplugin.mo share/locale/nb/LC_MESSAGES/katefiletree.mo share/locale/nb/LC_MESSAGES/kategdbplugin.mo share/locale/nb/LC_MESSAGES/katekonsoleplugin.mo share/locale/nb/LC_MESSAGES/kateproject.mo share/locale/nb/LC_MESSAGES/katesearch.mo share/locale/nb/LC_MESSAGES/katesnippetsplugin.mo share/locale/nb/LC_MESSAGES/katesql.mo share/locale/nb/LC_MESSAGES/katesymbolviewer.mo share/locale/nb/LC_MESSAGES/katetextfilter.mo share/locale/nb/LC_MESSAGES/katexmltools.mo share/locale/nb/LC_MESSAGES/tabswitcherplugin.mo share/locale/nds/LC_MESSAGES/kate-ctags-plugin.mo share/locale/nds/LC_MESSAGES/kate.mo share/locale/nds/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/nds/LC_MESSAGES/katebuild-plugin.mo share/locale/nds/LC_MESSAGES/katecloseexceptplugin.mo share/locale/nds/LC_MESSAGES/katefilebrowserplugin.mo share/locale/nds/LC_MESSAGES/katefiletree.mo share/locale/nds/LC_MESSAGES/kategdbplugin.mo share/locale/nds/LC_MESSAGES/katekonsoleplugin.mo share/locale/nds/LC_MESSAGES/kateproject.mo share/locale/nds/LC_MESSAGES/katesearch.mo share/locale/nds/LC_MESSAGES/katesnippetsplugin.mo share/locale/nds/LC_MESSAGES/katesql.mo share/locale/nds/LC_MESSAGES/katesymbolviewer.mo share/locale/nds/LC_MESSAGES/katetextfilter.mo share/locale/nds/LC_MESSAGES/katexmltools.mo share/locale/nds/LC_MESSAGES/tabswitcherplugin.mo share/locale/ne/LC_MESSAGES/kate.mo share/locale/nl/LC_MESSAGES/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/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/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/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/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/kate-ctags-plugin.mo share/locale/pt_BR/LC_MESSAGES/kate-replicode-plugin.mo share/locale/pt_BR/LC_MESSAGES/kate.mo share/locale/pt_BR/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/pt_BR/LC_MESSAGES/katebuild-plugin.mo share/locale/pt_BR/LC_MESSAGES/katecloseexceptplugin.mo share/locale/pt_BR/LC_MESSAGES/katecolorpickerplugin.mo share/locale/pt_BR/LC_MESSAGES/kateexternaltoolsplugin.mo share/locale/pt_BR/LC_MESSAGES/katefilebrowserplugin.mo share/locale/pt_BR/LC_MESSAGES/katefiletree.mo share/locale/pt_BR/LC_MESSAGES/kategdbplugin.mo share/locale/pt_BR/LC_MESSAGES/kategitblameplugin.mo share/locale/pt_BR/LC_MESSAGES/katekeyboardmacros.mo share/locale/pt_BR/LC_MESSAGES/katekonsoleplugin.mo share/locale/pt_BR/LC_MESSAGES/kateproject.mo share/locale/pt_BR/LC_MESSAGES/katesearch.mo share/locale/pt_BR/LC_MESSAGES/katesnippetsplugin.mo share/locale/pt_BR/LC_MESSAGES/katesql.mo share/locale/pt_BR/LC_MESSAGES/katesymbolviewer.mo share/locale/pt_BR/LC_MESSAGES/katetextfilter.mo share/locale/pt_BR/LC_MESSAGES/katexmlcheck.mo share/locale/pt_BR/LC_MESSAGES/katexmltools.mo share/locale/pt_BR/LC_MESSAGES/ktexteditorpreviewplugin.mo share/locale/pt_BR/LC_MESSAGES/lspclient.mo +share/locale/pt_BR/LC_MESSAGES/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/katebuild-plugin.mo share/locale/ro/LC_MESSAGES/katecloseexceptplugin.mo share/locale/ro/LC_MESSAGES/kateexternaltoolsplugin.mo share/locale/ro/LC_MESSAGES/katefilebrowserplugin.mo share/locale/ro/LC_MESSAGES/katefiletree.mo share/locale/ro/LC_MESSAGES/kategdbplugin.mo share/locale/ro/LC_MESSAGES/katekonsoleplugin.mo share/locale/ro/LC_MESSAGES/kateproject.mo share/locale/ro/LC_MESSAGES/katesearch.mo share/locale/ro/LC_MESSAGES/katesnippetsplugin.mo share/locale/ro/LC_MESSAGES/katesql.mo share/locale/ro/LC_MESSAGES/katesymbolviewer.mo share/locale/ro/LC_MESSAGES/katetextfilter.mo share/locale/ro/LC_MESSAGES/katexmlcheck.mo share/locale/ro/LC_MESSAGES/katexmltools.mo share/locale/ro/LC_MESSAGES/ktexteditorpreviewplugin.mo share/locale/ro/LC_MESSAGES/lspclient.mo share/locale/ro/LC_MESSAGES/tabswitcherplugin.mo share/locale/ru/LC_MESSAGES/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/kate.mo share/locale/sa/LC_MESSAGES/kategdbplugin.mo share/locale/sa/LC_MESSAGES/kateproject.mo share/locale/sa/LC_MESSAGES/katesearch.mo share/locale/sa/LC_MESSAGES/lspclient.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/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/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/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/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/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/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/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/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/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/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/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 c04b12046459..6e015ad2dd53 100644 --- a/games/blinken/distinfo +++ b/games/blinken/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1738937077 -SHA256 (KDE/release-service/24.12.2/blinken-24.12.2.tar.xz) = d4e643b59d35f1dc7c8fd098e0ffe466a5669db129bc5f65fe1f660909797fa8 -SIZE (KDE/release-service/24.12.2/blinken-24.12.2.tar.xz) = 2676160 +TIMESTAMP = 1741275499 +SHA256 (KDE/release-service/24.12.3/blinken-24.12.3.tar.xz) = 7aa16691f9328a71fef43888ca88e5efdf42baf1ff69a9e977a9d0eed3ec473e +SIZE (KDE/release-service/24.12.3/blinken-24.12.3.tar.xz) = 2676080 diff --git a/games/bomber/distinfo b/games/bomber/distinfo index 4635ae48bf04..1793809f226f 100644 --- a/games/bomber/distinfo +++ b/games/bomber/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1738937079 -SHA256 (KDE/release-service/24.12.2/bomber-24.12.2.tar.xz) = 1a769872d27f54fba5edb901b9c2ce44194f6e35dd892142be607c434c961cb6 -SIZE (KDE/release-service/24.12.2/bomber-24.12.2.tar.xz) = 838980 +TIMESTAMP = 1741275503 +SHA256 (KDE/release-service/24.12.3/bomber-24.12.3.tar.xz) = d04a8131a257d96e3d9357579906eef973387c8719f82e6c5a0db2885ae5940e +SIZE (KDE/release-service/24.12.3/bomber-24.12.3.tar.xz) = 839324 diff --git a/games/bovo/distinfo b/games/bovo/distinfo index d1fa63905a90..ca325996ad11 100644 --- a/games/bovo/distinfo +++ b/games/bovo/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1738937080 -SHA256 (KDE/release-service/24.12.2/bovo-24.12.2.tar.xz) = 71c6f0b3aae753da7d254cfa5d011730d0e57ca191a1b1d6451be9286c1048d1 -SIZE (KDE/release-service/24.12.2/bovo-24.12.2.tar.xz) = 220392 +TIMESTAMP = 1741275506 +SHA256 (KDE/release-service/24.12.3/bovo-24.12.3.tar.xz) = 95b422c700db53d07985ce6044ad2d0aea388f95a6a2e8bdc679d2cfd595c4bb +SIZE (KDE/release-service/24.12.3/bovo-24.12.3.tar.xz) = 220360 diff --git a/games/granatier/distinfo b/games/granatier/distinfo index 3605fd605ca9..f90750fc729f 100644 --- a/games/granatier/distinfo +++ b/games/granatier/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1738937081 -SHA256 (KDE/release-service/24.12.2/granatier-24.12.2.tar.xz) = c0b6045b5ccda200ed11ae4c5abfa8d7e233f15e4dcfbd06600d5e1b22ffbd79 -SIZE (KDE/release-service/24.12.2/granatier-24.12.2.tar.xz) = 2014156 +TIMESTAMP = 1741275511 +SHA256 (KDE/release-service/24.12.3/granatier-24.12.3.tar.xz) = ccf307af184561967f60d899906d98c740fbfd301a34ff31dce4a1800d3fb0f6 +SIZE (KDE/release-service/24.12.3/granatier-24.12.3.tar.xz) = 2014180 diff --git a/games/kajongg/distinfo b/games/kajongg/distinfo index a59ce1aa66a8..42f64ac83dfd 100644 --- a/games/kajongg/distinfo +++ b/games/kajongg/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1740160323 -SHA256 (KDE/release-service/24.12.2/kajongg-24.12.2.tar.xz) = 680e549df2f2180f8a6b5e135b1bc0de43746e4d2a4d12b7857f6c8b6ecc3243 -SIZE (KDE/release-service/24.12.2/kajongg-24.12.2.tar.xz) = 4624552 +TIMESTAMP = 1741275517 +SHA256 (KDE/release-service/24.12.3/kajongg-24.12.3.tar.xz) = a458c01ae7b26e0a5e7b22f04ace163924ef122c6dcc9d3a0495943d69fd7553 +SIZE (KDE/release-service/24.12.3/kajongg-24.12.3.tar.xz) = 4624632 diff --git a/games/kanagram/distinfo b/games/kanagram/distinfo index ad33d40ebed0..28bcfd63b21b 100644 --- a/games/kanagram/distinfo +++ b/games/kanagram/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1738937082 -SHA256 (KDE/release-service/24.12.2/kanagram-24.12.2.tar.xz) = f0b17d5d8944959c43ae54cdb2b61a57409973caa5b1f0f52c146a92e491330d -SIZE (KDE/release-service/24.12.2/kanagram-24.12.2.tar.xz) = 7783524 +TIMESTAMP = 1741275523 +SHA256 (KDE/release-service/24.12.3/kanagram-24.12.3.tar.xz) = 9a31d49c684125d500ac9986ed45eaaef4f8543fdb28e4a91022a5007a078968 +SIZE (KDE/release-service/24.12.3/kanagram-24.12.3.tar.xz) = 7785240 diff --git a/games/kapman/distinfo b/games/kapman/distinfo index 622a14309cc1..042084ee2f23 100644 --- a/games/kapman/distinfo +++ b/games/kapman/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1738937084 -SHA256 (KDE/release-service/24.12.2/kapman-24.12.2.tar.xz) = 71e8ef222548ed528f0bcc557a47fed1dbabaf7cb2f9491977e79164ea1a2e43 -SIZE (KDE/release-service/24.12.2/kapman-24.12.2.tar.xz) = 2148292 +TIMESTAMP = 1741275528 +SHA256 (KDE/release-service/24.12.3/kapman-24.12.3.tar.xz) = 9bb246a2114be4f28e5bb7191b21f9ebbd2b040104b0ad4a163efadccb8bf211 +SIZE (KDE/release-service/24.12.3/kapman-24.12.3.tar.xz) = 2148476 diff --git a/games/katomic/distinfo b/games/katomic/distinfo index e9070bb28800..f4afdabb6905 100644 --- a/games/katomic/distinfo +++ b/games/katomic/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1738937085 -SHA256 (KDE/release-service/24.12.2/katomic-24.12.2.tar.xz) = b5beb827a02d0d5174857784460ecae0c5eb69f04051a6c6afd6e68beb5a808c -SIZE (KDE/release-service/24.12.2/katomic-24.12.2.tar.xz) = 1447024 +TIMESTAMP = 1741275533 +SHA256 (KDE/release-service/24.12.3/katomic-24.12.3.tar.xz) = 99a20cc9576a31325ddace24ce478b52b720429f2f082cf2f53c0c09ced4e496 +SIZE (KDE/release-service/24.12.3/katomic-24.12.3.tar.xz) = 1447012 diff --git a/games/kblackbox/distinfo b/games/kblackbox/distinfo index fb762b7760ec..e1eb5f1236ae 100644 --- a/games/kblackbox/distinfo +++ b/games/kblackbox/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1738937086 -SHA256 (KDE/release-service/24.12.2/kblackbox-24.12.2.tar.xz) = e4e75337188bc4d619f6182b1eecccdf18644776293b1c104890105558a8d8d1 -SIZE (KDE/release-service/24.12.2/kblackbox-24.12.2.tar.xz) = 551036 +TIMESTAMP = 1741275537 +SHA256 (KDE/release-service/24.12.3/kblackbox-24.12.3.tar.xz) = 5456242f4c63af8a2c673e32be15fefa54e3b691975a9af471b1439b9dd14fef +SIZE (KDE/release-service/24.12.3/kblackbox-24.12.3.tar.xz) = 551088 diff --git a/games/kblocks/distinfo b/games/kblocks/distinfo index 5e694af23671..665a0801f6be 100644 --- a/games/kblocks/distinfo +++ b/games/kblocks/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1738937087 -SHA256 (KDE/release-service/24.12.2/kblocks-24.12.2.tar.xz) = f3c185424294b4103e2f3db249cee1c22ff8429bc63fba3c065824a7ce6baf17 -SIZE (KDE/release-service/24.12.2/kblocks-24.12.2.tar.xz) = 2102696 +TIMESTAMP = 1741275542 +SHA256 (KDE/release-service/24.12.3/kblocks-24.12.3.tar.xz) = d8cb4635e812bf9a95e88af88a1c3cbc9647f08d66e4dc01c8e22f8439e95787 +SIZE (KDE/release-service/24.12.3/kblocks-24.12.3.tar.xz) = 2102884 diff --git a/games/kbounce/distinfo b/games/kbounce/distinfo index b23fef9692a8..4b53129fad90 100644 --- a/games/kbounce/distinfo +++ b/games/kbounce/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1738937088 -SHA256 (KDE/release-service/24.12.2/kbounce-24.12.2.tar.xz) = ef41af9251d2dcf3a8f35d485dec6c6c78369f595a379b6a523282a5e04c5c41 -SIZE (KDE/release-service/24.12.2/kbounce-24.12.2.tar.xz) = 3322768 +TIMESTAMP = 1741275547 +SHA256 (KDE/release-service/24.12.3/kbounce-24.12.3.tar.xz) = 7db2eec46de891771abc7bac2d0e2a4419ad871a7559177b75f199d897c5de52 +SIZE (KDE/release-service/24.12.3/kbounce-24.12.3.tar.xz) = 3322872 diff --git a/games/kbreakout/distinfo b/games/kbreakout/distinfo index fb3412f12525..96ccb2167726 100644 --- a/games/kbreakout/distinfo +++ b/games/kbreakout/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1738937118 -SHA256 (KDE/release-service/24.12.2/kbreakout-24.12.2.tar.xz) = 0714aac9b599320bbd87182f8c10c4bd2053036c75192e00ece9882283d89f5a -SIZE (KDE/release-service/24.12.2/kbreakout-24.12.2.tar.xz) = 2555884 +TIMESTAMP = 1741275552 +SHA256 (KDE/release-service/24.12.3/kbreakout-24.12.3.tar.xz) = 1e395812ff872f5797b318edf195e172b758ff2ad286c7cb9d07a37e17e0fe4b +SIZE (KDE/release-service/24.12.3/kbreakout-24.12.3.tar.xz) = 2556204 diff --git a/games/kdiamond/distinfo b/games/kdiamond/distinfo index 248e129bce44..044d92bea289 100644 --- a/games/kdiamond/distinfo +++ b/games/kdiamond/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1738937119 -SHA256 (KDE/release-service/24.12.2/kdiamond-24.12.2.tar.xz) = b8be0dcaa687c71492e6e71c0ad8809991d7fdeca2be2d35de2adae1fe913fe6 -SIZE (KDE/release-service/24.12.2/kdiamond-24.12.2.tar.xz) = 4672848 +TIMESTAMP = 1741275557 +SHA256 (KDE/release-service/24.12.3/kdiamond-24.12.3.tar.xz) = b10e8110a1d122c387ff678030fb1f5e527fed8b603170663f23bd90d5955ed2 +SIZE (KDE/release-service/24.12.3/kdiamond-24.12.3.tar.xz) = 4673280 diff --git a/games/kfourinline/distinfo b/games/kfourinline/distinfo index 6a5fd89e3c9b..0bcde79d5ea5 100644 --- a/games/kfourinline/distinfo +++ b/games/kfourinline/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1738937120 -SHA256 (KDE/release-service/24.12.2/kfourinline-24.12.2.tar.xz) = dc5f638aed444ce7bd31a1052409aeb88e682367b3ac81905e0fab712a713c82 -SIZE (KDE/release-service/24.12.2/kfourinline-24.12.2.tar.xz) = 746044 +TIMESTAMP = 1741275561 +SHA256 (KDE/release-service/24.12.3/kfourinline-24.12.3.tar.xz) = 53af55dff09824169cb5e794f22cdfddf0d217a2ef4684d0859f09768629b52f +SIZE (KDE/release-service/24.12.3/kfourinline-24.12.3.tar.xz) = 746328 diff --git a/games/kgoldrunner/distinfo b/games/kgoldrunner/distinfo index c7b541e81c01..bb125a7795b6 100644 --- a/games/kgoldrunner/distinfo +++ b/games/kgoldrunner/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1738937121 -SHA256 (KDE/release-service/24.12.2/kgoldrunner-24.12.2.tar.xz) = 1b19883ec586aa9126d8216c3b67c336cea2aebd653726e495b2150f94e5c1cc -SIZE (KDE/release-service/24.12.2/kgoldrunner-24.12.2.tar.xz) = 4346284 +TIMESTAMP = 1741275567 +SHA256 (KDE/release-service/24.12.3/kgoldrunner-24.12.3.tar.xz) = 4956cb028ef381fbbe57ee88b80ef4ad5a9f00037f6f0e920118f0aed240d972 +SIZE (KDE/release-service/24.12.3/kgoldrunner-24.12.3.tar.xz) = 4347308 diff --git a/games/khangman/Makefile b/games/khangman/Makefile index 3f46582e67fe..203fe4b82f6f 100644 --- a/games/khangman/Makefile +++ b/games/khangman/Makefile @@ -1,23 +1,22 @@ PORTNAME= khangman DISTVERSION= ${KDE_APPLICATIONS_VERSION} -PORTREVISION= 1 CATEGORIES= games kde kde-applications MAINTAINER= kde@FreeBSD.org COMMENT= Hangman game for KDE WWW= https://apps.kde.org/khangman/ RUN_DEPENDS= kdeedu-data>=${KDE_APPLICATIONS_VERSION}:misc/kdeedu-data USES= cmake compiler:c++17-lang gettext kde:6 qt:6 tar:xz USE_KDE= completion config coreaddons crash i18n kio \ libkeduvocdocument newstuff notifications \ ecm:build USE_QT= base declarative USE_LDCONFIG= yes PATCH_STRIP= -p1 OPTIONS_DEFINE= DOCS .include diff --git a/games/khangman/distinfo b/games/khangman/distinfo index e829f74300fd..879f037555b5 100644 --- a/games/khangman/distinfo +++ b/games/khangman/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1738937123 -SHA256 (KDE/release-service/24.12.2/khangman-24.12.2.tar.xz) = aabfe8a27d57940a89d73063e4b0c904fc9ad14943eaf67664be42f58aa1aab2 -SIZE (KDE/release-service/24.12.2/khangman-24.12.2.tar.xz) = 7021572 +TIMESTAMP = 1741275573 +SHA256 (KDE/release-service/24.12.3/khangman-24.12.3.tar.xz) = 80fbda0a9f11e725a00ed2e887450bd7b0604bcb8af38fce37c4472dcfba3857 +SIZE (KDE/release-service/24.12.3/khangman-24.12.3.tar.xz) = 7025216 diff --git a/games/kigo/distinfo b/games/kigo/distinfo index 715188d2f16f..ce0ca47b9abb 100644 --- a/games/kigo/distinfo +++ b/games/kigo/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1738937124 -SHA256 (KDE/release-service/24.12.2/kigo-24.12.2.tar.xz) = 408ed4733e03475d83e8e0dba26cef83f491af9006cb85310b8e9f0923f744c1 -SIZE (KDE/release-service/24.12.2/kigo-24.12.2.tar.xz) = 4834332 +TIMESTAMP = 1741275578 +SHA256 (KDE/release-service/24.12.3/kigo-24.12.3.tar.xz) = 11f5e9176baef6c84e4626622c8269b1dd3b80ab176a83e20c2c0ece37d5935b +SIZE (KDE/release-service/24.12.3/kigo-24.12.3.tar.xz) = 4834212 diff --git a/games/killbots/distinfo b/games/killbots/distinfo index dcb36748f01a..eff84cd55c94 100644 --- a/games/killbots/distinfo +++ b/games/killbots/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1738937126 -SHA256 (KDE/release-service/24.12.2/killbots-24.12.2.tar.xz) = adde146f4ddccceb0beae78076c083d30e867aedf63b4cc5c11dc725babf588c -SIZE (KDE/release-service/24.12.2/killbots-24.12.2.tar.xz) = 1173608 +TIMESTAMP = 1741275644 +SHA256 (KDE/release-service/24.12.3/killbots-24.12.3.tar.xz) = d4ad33b8e211a65386bbcab2ac78aa334df3788a391a3401117dd057288206b5 +SIZE (KDE/release-service/24.12.3/killbots-24.12.3.tar.xz) = 1173124 diff --git a/games/kiriki/distinfo b/games/kiriki/distinfo index df2c12f443eb..2a30147ee4b5 100644 --- a/games/kiriki/distinfo +++ b/games/kiriki/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1738937127 -SHA256 (KDE/release-service/24.12.2/kiriki-24.12.2.tar.xz) = 96f4cd358c1b144ebd101289fafd8c883d30ef58d13fd7658b14503485604655 -SIZE (KDE/release-service/24.12.2/kiriki-24.12.2.tar.xz) = 374488 +TIMESTAMP = 1741275648 +SHA256 (KDE/release-service/24.12.3/kiriki-24.12.3.tar.xz) = 04f9f9314bfba7e66869528ea878eeca718b747b0392ee2f732cc8834e507f64 +SIZE (KDE/release-service/24.12.3/kiriki-24.12.3.tar.xz) = 374492 diff --git a/games/kjumpingcube/distinfo b/games/kjumpingcube/distinfo index 445e33e698ab..2c727c2123f5 100644 --- a/games/kjumpingcube/distinfo +++ b/games/kjumpingcube/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1738937128 -SHA256 (KDE/release-service/24.12.2/kjumpingcube-24.12.2.tar.xz) = 9a31b4ed463974f6c409eb1f242691e436c8a04b9c0f12704808a83df914b412 -SIZE (KDE/release-service/24.12.2/kjumpingcube-24.12.2.tar.xz) = 347420 +TIMESTAMP = 1741275651 +SHA256 (KDE/release-service/24.12.3/kjumpingcube-24.12.3.tar.xz) = 42481586690eca18a7625f3c51f1a706d8587e75287263bc4b90bcabf2fa5f03 +SIZE (KDE/release-service/24.12.3/kjumpingcube-24.12.3.tar.xz) = 347488 diff --git a/games/klickety/distinfo b/games/klickety/distinfo index 73dd6d03ccfe..1d530c308d28 100644 --- a/games/klickety/distinfo +++ b/games/klickety/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1738937129 -SHA256 (KDE/release-service/24.12.2/klickety-24.12.2.tar.xz) = f60f1fb8ba96963961a4e8f71807239922c9d95221ef47e1ecbca19fe5ba64d2 -SIZE (KDE/release-service/24.12.2/klickety-24.12.2.tar.xz) = 1387368 +TIMESTAMP = 1741275656 +SHA256 (KDE/release-service/24.12.3/klickety-24.12.3.tar.xz) = eb02df2fc9030de99849d24cfa125d5b263e45bacbebc819b84d0c6e73f48426 +SIZE (KDE/release-service/24.12.3/klickety-24.12.3.tar.xz) = 1387316 diff --git a/games/klines/distinfo b/games/klines/distinfo index 8666080fdf20..96b1c702a61c 100644 --- a/games/klines/distinfo +++ b/games/klines/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1738937130 -SHA256 (KDE/release-service/24.12.2/klines-24.12.2.tar.xz) = 780c584e6b4ae51afe993d1d4af5402d90ea47f60dad06f26c732586e1bd1573 -SIZE (KDE/release-service/24.12.2/klines-24.12.2.tar.xz) = 1673976 +TIMESTAMP = 1741275661 +SHA256 (KDE/release-service/24.12.3/klines-24.12.3.tar.xz) = 3ed73595ffd87457bcff90863979063939307f3f12c84eb764383ebfd40e8be8 +SIZE (KDE/release-service/24.12.3/klines-24.12.3.tar.xz) = 1672948 diff --git a/games/kmahjongg/distinfo b/games/kmahjongg/distinfo index 261272519de0..69ad201fed91 100644 --- a/games/kmahjongg/distinfo +++ b/games/kmahjongg/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1738937135 -SHA256 (KDE/release-service/24.12.2/kmahjongg-24.12.2.tar.xz) = 8aa5b45416b983329f795992571148380ebe19a63a74c05d7c9ff1fa6ad58708 -SIZE (KDE/release-service/24.12.2/kmahjongg-24.12.2.tar.xz) = 3721772 +TIMESTAMP = 1741275666 +SHA256 (KDE/release-service/24.12.3/kmahjongg-24.12.3.tar.xz) = a2e6700dfbedd63869e9153d4bedce75991bc5e89a28751f6595a9755e21593b +SIZE (KDE/release-service/24.12.3/kmahjongg-24.12.3.tar.xz) = 3721860 diff --git a/games/kmines/distinfo b/games/kmines/distinfo index 4882da7abbd5..4ae32ad357e6 100644 --- a/games/kmines/distinfo +++ b/games/kmines/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1738937136 -SHA256 (KDE/release-service/24.12.2/kmines-24.12.2.tar.xz) = 81da7bbaf543e9ce0ea9a08e8b0ab856163e43f2e725946786eddf74cf9f5796 -SIZE (KDE/release-service/24.12.2/kmines-24.12.2.tar.xz) = 948904 +TIMESTAMP = 1741275670 +SHA256 (KDE/release-service/24.12.3/kmines-24.12.3.tar.xz) = 537913cc2cfea1694fdd1aaf0872bba7182aa8f9341245de20a4455e0acf419d +SIZE (KDE/release-service/24.12.3/kmines-24.12.3.tar.xz) = 948808 diff --git a/games/knavalbattle/distinfo b/games/knavalbattle/distinfo index 77698c756919..df03c356b29f 100644 --- a/games/knavalbattle/distinfo +++ b/games/knavalbattle/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1738937137 -SHA256 (KDE/release-service/24.12.2/knavalbattle-24.12.2.tar.xz) = ca4f0cc7a4177474dfbb051f4ff8b47811c90eeb6f9de7d73d9a37194128c1b5 -SIZE (KDE/release-service/24.12.2/knavalbattle-24.12.2.tar.xz) = 1048176 +TIMESTAMP = 1741275675 +SHA256 (KDE/release-service/24.12.3/knavalbattle-24.12.3.tar.xz) = 77bc931c1fab52de96088195a3e42c5ce83519a8ea328fab0f2a89dd8cf2bea8 +SIZE (KDE/release-service/24.12.3/knavalbattle-24.12.3.tar.xz) = 1048348 diff --git a/games/knetwalk/distinfo b/games/knetwalk/distinfo index 98fbad77e592..139ee13709d3 100644 --- a/games/knetwalk/distinfo +++ b/games/knetwalk/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1738937138 -SHA256 (KDE/release-service/24.12.2/knetwalk-24.12.2.tar.xz) = 41c36e89b075973f410a92bcfc3b150795ac06aaf6aaf41f3843137384964bd5 -SIZE (KDE/release-service/24.12.2/knetwalk-24.12.2.tar.xz) = 1011100 +TIMESTAMP = 1741275679 +SHA256 (KDE/release-service/24.12.3/knetwalk-24.12.3.tar.xz) = 8f6345ad9063d863dae5e52e207fb9aa7cf7d3133479c9f7ca1ffed1738fa3b6 +SIZE (KDE/release-service/24.12.3/knetwalk-24.12.3.tar.xz) = 1010464 diff --git a/games/knights/distinfo b/games/knights/distinfo index 500433ceeb77..b04e9982ec07 100644 --- a/games/knights/distinfo +++ b/games/knights/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1738937139 -SHA256 (KDE/release-service/24.12.2/knights-24.12.2.tar.xz) = 7367de9db968218e2ae0b3d0ff5c4b8b5dc6c46b7e32692f0ba28ea3e36d7a71 -SIZE (KDE/release-service/24.12.2/knights-24.12.2.tar.xz) = 2490408 +TIMESTAMP = 1741275684 +SHA256 (KDE/release-service/24.12.3/knights-24.12.3.tar.xz) = b9e7b2d92467dcb1ca68b3bf868ed5a4a5b57649d4ce3c856554b8b32b542979 +SIZE (KDE/release-service/24.12.3/knights-24.12.3.tar.xz) = 2490012 diff --git a/games/kolf/distinfo b/games/kolf/distinfo index f017179556ce..8d954761710a 100644 --- a/games/kolf/distinfo +++ b/games/kolf/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1738937140 -SHA256 (KDE/release-service/24.12.2/kolf-24.12.2.tar.xz) = ccab1270b4437390fc532c3a7c0364e71b8402e40d96de2acad90f4d8dea8712 -SIZE (KDE/release-service/24.12.2/kolf-24.12.2.tar.xz) = 1079368 +TIMESTAMP = 1741275689 +SHA256 (KDE/release-service/24.12.3/kolf-24.12.3.tar.xz) = e4bddaf198f700c73e2ebbe475c8acbfbd495fbb8cb2f2f765263e0e5a56256f +SIZE (KDE/release-service/24.12.3/kolf-24.12.3.tar.xz) = 1078612 diff --git a/games/kollision/distinfo b/games/kollision/distinfo index f62d7ec80e62..93b190df9abe 100644 --- a/games/kollision/distinfo +++ b/games/kollision/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1738937141 -SHA256 (KDE/release-service/24.12.2/kollision-24.12.2.tar.xz) = 8fc749feeee7fea147293ae32918b3f6f73fa558823a4cd2ef743b2971182eb5 -SIZE (KDE/release-service/24.12.2/kollision-24.12.2.tar.xz) = 312036 +TIMESTAMP = 1741275693 +SHA256 (KDE/release-service/24.12.3/kollision-24.12.3.tar.xz) = 0a79ea51029ea4c5678390bf975454512db34bbf8eb47d56c340a60d90c275c6 +SIZE (KDE/release-service/24.12.3/kollision-24.12.3.tar.xz) = 312080 diff --git a/games/konquest/distinfo b/games/konquest/distinfo index bf2e83ac8d99..074729f15690 100644 --- a/games/konquest/distinfo +++ b/games/konquest/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1738937142 -SHA256 (KDE/release-service/24.12.2/konquest-24.12.2.tar.xz) = ee8db311c3da07a53a1ab1fed91b0d7cd3965ac98aef4f3c25512fa04f77e7d4 -SIZE (KDE/release-service/24.12.2/konquest-24.12.2.tar.xz) = 861252 +TIMESTAMP = 1741275697 +SHA256 (KDE/release-service/24.12.3/konquest-24.12.3.tar.xz) = 03c4085daf6954ad1ef0b0e03dcccf09317421740fa81dbdbe22ab50903bbb34 +SIZE (KDE/release-service/24.12.3/konquest-24.12.3.tar.xz) = 861196 diff --git a/games/kpat/distinfo b/games/kpat/distinfo index 819c44c0ec69..b424bcdee343 100644 --- a/games/kpat/distinfo +++ b/games/kpat/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1738937143 -SHA256 (KDE/release-service/24.12.2/kpat-24.12.2.tar.xz) = 002be3b28379fd2c61d0858889ebded670f4ed18fa947756b6343eeea90b62bb -SIZE (KDE/release-service/24.12.2/kpat-24.12.2.tar.xz) = 3737000 +TIMESTAMP = 1741275702 +SHA256 (KDE/release-service/24.12.3/kpat-24.12.3.tar.xz) = 440cf85d977d8abb5f80928913d7ebdfbb2fc7602ab3d70d1cc5fe7954810d16 +SIZE (KDE/release-service/24.12.3/kpat-24.12.3.tar.xz) = 3736836 diff --git a/games/kreversi/distinfo b/games/kreversi/distinfo index 4c70d1de1d9d..553772b4869e 100644 --- a/games/kreversi/distinfo +++ b/games/kreversi/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1738937144 -SHA256 (KDE/release-service/24.12.2/kreversi-24.12.2.tar.xz) = a3e38f96b0d34959053be1c09048a4ec3dfc88e0e74648c8a0e5f50666f692b1 -SIZE (KDE/release-service/24.12.2/kreversi-24.12.2.tar.xz) = 1033692 +TIMESTAMP = 1741275707 +SHA256 (KDE/release-service/24.12.3/kreversi-24.12.3.tar.xz) = 0a4b084631ec60deebfe048be87e11935f8eb2bc31f919428696798811cc9597 +SIZE (KDE/release-service/24.12.3/kreversi-24.12.3.tar.xz) = 1033560 diff --git a/games/kshisen/distinfo b/games/kshisen/distinfo index df489f347b16..cc98621f4982 100644 --- a/games/kshisen/distinfo +++ b/games/kshisen/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1738937145 -SHA256 (KDE/release-service/24.12.2/kshisen-24.12.2.tar.xz) = 7d86347260540d2a88db5cfc1fb746b62f803b1ac23ce8b01b4e8607dec1a0cc -SIZE (KDE/release-service/24.12.2/kshisen-24.12.2.tar.xz) = 972564 +TIMESTAMP = 1741275711 +SHA256 (KDE/release-service/24.12.3/kshisen-24.12.3.tar.xz) = aab30c11fece1b376b1a24be9bce4db102cdd2134b46b3e40813ee15ba0d4a10 +SIZE (KDE/release-service/24.12.3/kshisen-24.12.3.tar.xz) = 972548 diff --git a/games/ksirk/distinfo b/games/ksirk/distinfo index c03e4314a2d7..ef4df107fcca 100644 --- a/games/ksirk/distinfo +++ b/games/ksirk/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1738937146 -SHA256 (KDE/release-service/24.12.2/ksirk-24.12.2.tar.xz) = 1e6b2dd07f6f9122a885b0fb597e9cd1c763efef72e46b4eb244adfddc7f1ebb -SIZE (KDE/release-service/24.12.2/ksirk-24.12.2.tar.xz) = 6705260 +TIMESTAMP = 1741275717 +SHA256 (KDE/release-service/24.12.3/ksirk-24.12.3.tar.xz) = 4d9a2e898c97b96425ad1e5d11269f4dad5dfd456de6ef76cb85ca8240dc59a0 +SIZE (KDE/release-service/24.12.3/ksirk-24.12.3.tar.xz) = 6704056 diff --git a/games/ksnakeduel/distinfo b/games/ksnakeduel/distinfo index f055fb76e506..2f68622e7ebe 100644 --- a/games/ksnakeduel/distinfo +++ b/games/ksnakeduel/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1738937147 -SHA256 (KDE/release-service/24.12.2/ksnakeduel-24.12.2.tar.xz) = 0dc16f5ae2586e3d0b27457a62c4e1f4019a48ab2cbb6e3dd152fdb2c5ad8522 -SIZE (KDE/release-service/24.12.2/ksnakeduel-24.12.2.tar.xz) = 578520 +TIMESTAMP = 1741275721 +SHA256 (KDE/release-service/24.12.3/ksnakeduel-24.12.3.tar.xz) = 1c999041a74dbf66ab0f5f99207fb2e9cdcaa0cbd61af45f7cefbf875b865138 +SIZE (KDE/release-service/24.12.3/ksnakeduel-24.12.3.tar.xz) = 578532 diff --git a/games/kspaceduel/distinfo b/games/kspaceduel/distinfo index 3848677c34ab..3993ae4cd314 100644 --- a/games/kspaceduel/distinfo +++ b/games/kspaceduel/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1738937148 -SHA256 (KDE/release-service/24.12.2/kspaceduel-24.12.2.tar.xz) = 261baf159ed86fe93924d302c4d1ccee6a7405d9f1657e317bc3a22a307ccfb5 -SIZE (KDE/release-service/24.12.2/kspaceduel-24.12.2.tar.xz) = 635444 +TIMESTAMP = 1741275725 +SHA256 (KDE/release-service/24.12.3/kspaceduel-24.12.3.tar.xz) = d8e4fe7350c9dd9a163ce74a88000ddb9d2a12e7fcdb9734d0ede3f384a65ece +SIZE (KDE/release-service/24.12.3/kspaceduel-24.12.3.tar.xz) = 635460 diff --git a/games/ksquares/distinfo b/games/ksquares/distinfo index 302498daa4d3..d2da55ed7b9b 100644 --- a/games/ksquares/distinfo +++ b/games/ksquares/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1738937149 -SHA256 (KDE/release-service/24.12.2/ksquares-24.12.2.tar.xz) = 666cb220c3b59d60f003d803cf917d8155265ad226767e955622d66cf0741755 -SIZE (KDE/release-service/24.12.2/ksquares-24.12.2.tar.xz) = 322324 +TIMESTAMP = 1741275728 +SHA256 (KDE/release-service/24.12.3/ksquares-24.12.3.tar.xz) = f40de0a2a30538d6ee9bf113fe3fe703d7598e3e22872cc2fa88249d964cedcb +SIZE (KDE/release-service/24.12.3/ksquares-24.12.3.tar.xz) = 322328 diff --git a/games/ksudoku/distinfo b/games/ksudoku/distinfo index 175c537d0487..79c344446b4d 100644 --- a/games/ksudoku/distinfo +++ b/games/ksudoku/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1738937150 -SHA256 (KDE/release-service/24.12.2/ksudoku-24.12.2.tar.xz) = deae867eac6a102cd9d1cd4cb493f39156884a7ef73b231314a5b1fcdf3a4bec -SIZE (KDE/release-service/24.12.2/ksudoku-24.12.2.tar.xz) = 1729044 +TIMESTAMP = 1741275733 +SHA256 (KDE/release-service/24.12.3/ksudoku-24.12.3.tar.xz) = 2af2e63fb1b4e6f6ec48c5d451a03a8c202219452399eda9a4a59d7457422534 +SIZE (KDE/release-service/24.12.3/ksudoku-24.12.3.tar.xz) = 1728900 diff --git a/games/ktuberling/distinfo b/games/ktuberling/distinfo index b33151a3d57a..1fdcf6400979 100644 --- a/games/ktuberling/distinfo +++ b/games/ktuberling/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1738937165 -SHA256 (KDE/release-service/24.12.2/ktuberling-24.12.2.tar.xz) = 7281094051d9b9fff59493e83eb9d962ae7c811210f053ba5429ce0c536ce7f3 -SIZE (KDE/release-service/24.12.2/ktuberling-24.12.2.tar.xz) = 71568444 +TIMESTAMP = 1741275751 +SHA256 (KDE/release-service/24.12.3/ktuberling-24.12.3.tar.xz) = 515e9e810040d72fcbf229ed382796154377ccb2d0982413a607b80cd293260f +SIZE (KDE/release-service/24.12.3/ktuberling-24.12.3.tar.xz) = 71574084 diff --git a/games/kubrick/distinfo b/games/kubrick/distinfo index 1b5c06ca3987..37f60c5b5e6a 100644 --- a/games/kubrick/distinfo +++ b/games/kubrick/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1738937167 -SHA256 (KDE/release-service/24.12.2/kubrick-24.12.2.tar.xz) = 0b200f7f9ba7d44504555733229aa48988a6be81d84f6f0f9c8d1606afc18265 -SIZE (KDE/release-service/24.12.2/kubrick-24.12.2.tar.xz) = 376240 +TIMESTAMP = 1741275754 +SHA256 (KDE/release-service/24.12.3/kubrick-24.12.3.tar.xz) = 8f42b139200836f359c984e6493a5c9efb2c339884a98821d0daee48986f8a62 +SIZE (KDE/release-service/24.12.3/kubrick-24.12.3.tar.xz) = 376236 diff --git a/games/libkdegames/distinfo b/games/libkdegames/distinfo index 1a0498b61bd5..6aa8ac197299 100644 --- a/games/libkdegames/distinfo +++ b/games/libkdegames/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1738937168 -SHA256 (KDE/release-service/24.12.2/libkdegames-24.12.2.tar.xz) = b3129c537c44d8bbd3ad87c272044efa5c164cae1f56e8fd54a50e7a6c7773da -SIZE (KDE/release-service/24.12.2/libkdegames-24.12.2.tar.xz) = 5973588 +TIMESTAMP = 1741275760 +SHA256 (KDE/release-service/24.12.3/libkdegames-24.12.3.tar.xz) = d640d5a590450e476e903a341e916004a46ad72d0db07f4201e75e4e5a7c02e5 +SIZE (KDE/release-service/24.12.3/libkdegames-24.12.3.tar.xz) = 5975604 diff --git a/games/libkmahjongg/distinfo b/games/libkmahjongg/distinfo index 4a9945076d9d..1873ccdf0b80 100644 --- a/games/libkmahjongg/distinfo +++ b/games/libkmahjongg/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1738937170 -SHA256 (KDE/release-service/24.12.2/libkmahjongg-24.12.2.tar.xz) = 50fac49fc61e876f2edb70da2410464734888198cb6f7a62b302a2e915912630 -SIZE (KDE/release-service/24.12.2/libkmahjongg-24.12.2.tar.xz) = 1692460 +TIMESTAMP = 1741275765 +SHA256 (KDE/release-service/24.12.3/libkmahjongg-24.12.3.tar.xz) = db2bdb5b8214f28ad68fdac424bec23fb1862121b729982c8af26b0b0e13f6c6 +SIZE (KDE/release-service/24.12.3/libkmahjongg-24.12.3.tar.xz) = 1693992 diff --git a/games/lskat/distinfo b/games/lskat/distinfo index 644cc5002531..98e9c6aa42d8 100644 --- a/games/lskat/distinfo +++ b/games/lskat/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1738937171 -SHA256 (KDE/release-service/24.12.2/lskat-24.12.2.tar.xz) = c35e0281a502129e93b4b3cc3ef3063d3f9e2a36f2453539089d59529be0ab4e -SIZE (KDE/release-service/24.12.2/lskat-24.12.2.tar.xz) = 1227336 +TIMESTAMP = 1741275769 +SHA256 (KDE/release-service/24.12.3/lskat-24.12.3.tar.xz) = f7986696630601c4a868688537fe05da545e01008ad3bf66e561dfdc19db5684 +SIZE (KDE/release-service/24.12.3/lskat-24.12.3.tar.xz) = 1227456 diff --git a/games/palapeli/distinfo b/games/palapeli/distinfo index e9bb40bdff99..485d2b85d392 100644 --- a/games/palapeli/distinfo +++ b/games/palapeli/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1738937172 -SHA256 (KDE/release-service/24.12.2/palapeli-24.12.2.tar.xz) = b9e81abbd8092ef676042e315d076ae441343ece5c197bc8a21a6611b515f929 -SIZE (KDE/release-service/24.12.2/palapeli-24.12.2.tar.xz) = 2122444 +TIMESTAMP = 1741275774 +SHA256 (KDE/release-service/24.12.3/palapeli-24.12.3.tar.xz) = 10913895c626a31db5b5ddfbec09bf05170f1699caa97ee6a98548ad7063e820 +SIZE (KDE/release-service/24.12.3/palapeli-24.12.3.tar.xz) = 2122480 diff --git a/games/picmi/distinfo b/games/picmi/distinfo index 6879b1ad6bac..0f077ef09304 100644 --- a/games/picmi/distinfo +++ b/games/picmi/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1738937173 -SHA256 (KDE/release-service/24.12.2/picmi-24.12.2.tar.xz) = 4b55ae8894d24c46d465281aab99adcd2673fc145cebb5bf48a2a3d47746fff8 -SIZE (KDE/release-service/24.12.2/picmi-24.12.2.tar.xz) = 1519104 +TIMESTAMP = 1741275779 +SHA256 (KDE/release-service/24.12.3/picmi-24.12.3.tar.xz) = 26ccd55a78ece19a1f865c42e2c1c6d8e66c615821c257c9e21bba9718287a6a +SIZE (KDE/release-service/24.12.3/picmi-24.12.3.tar.xz) = 1519100 diff --git a/games/skladnik/distinfo b/games/skladnik/distinfo index 547a87814508..1046ec8bec3b 100644 --- a/games/skladnik/distinfo +++ b/games/skladnik/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1740158375 -SHA256 (KDE/release-service/24.12.2/skladnik-24.12.2.tar.xz) = dbda6704215a7119799b0553ec9ea599bb733b4898aaa2e96b3fb8d76fa51f39 -SIZE (KDE/release-service/24.12.2/skladnik-24.12.2.tar.xz) = 413100 +TIMESTAMP = 1741275782 +SHA256 (KDE/release-service/24.12.3/skladnik-24.12.3.tar.xz) = 55726a35492b320cc37685c8b697f30df90d91bd433276c4d87514b738163469 +SIZE (KDE/release-service/24.12.3/skladnik-24.12.3.tar.xz) = 412976 diff --git a/graphics/gwenview/distinfo b/graphics/gwenview/distinfo index 669748be9c21..bc915f4b8e2c 100644 --- a/graphics/gwenview/distinfo +++ b/graphics/gwenview/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1738937174 -SHA256 (KDE/release-service/24.12.2/gwenview-24.12.2.tar.xz) = 4f4ee734b3c61a1a34e287d56b6c9021d9ab49d71e1357a7164369f509958463 -SIZE (KDE/release-service/24.12.2/gwenview-24.12.2.tar.xz) = 6525696 +TIMESTAMP = 1741275788 +SHA256 (KDE/release-service/24.12.3/gwenview-24.12.3.tar.xz) = cb4590b8110e886aa4abba55d1e9844023ae6cebf6427fa12aa342cc13110466 +SIZE (KDE/release-service/24.12.3/gwenview-24.12.3.tar.xz) = 6525684 diff --git a/graphics/kamera/distinfo b/graphics/kamera/distinfo index e07255061060..31db67b317da 100644 --- a/graphics/kamera/distinfo +++ b/graphics/kamera/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1738937175 -SHA256 (KDE/release-service/24.12.2/kamera-24.12.2.tar.xz) = 3dd9f87d3a465714464879aac945428e890b9d145ceb11eca095026b5d9bdfaa -SIZE (KDE/release-service/24.12.2/kamera-24.12.2.tar.xz) = 131716 +TIMESTAMP = 1741275791 +SHA256 (KDE/release-service/24.12.3/kamera-24.12.3.tar.xz) = a0c3a7dd1c25798026be205a39db87bd63ae0021c93c3c8afe89ba2b212d6dcb +SIZE (KDE/release-service/24.12.3/kamera-24.12.3.tar.xz) = 131732 diff --git a/graphics/kcolorchooser/distinfo b/graphics/kcolorchooser/distinfo index dfb6acec137d..8bd8cad8b4f7 100644 --- a/graphics/kcolorchooser/distinfo +++ b/graphics/kcolorchooser/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1738937176 -SHA256 (KDE/release-service/24.12.2/kcolorchooser-24.12.2.tar.xz) = d0bfec7f4f8a4172ae3348307bd720380e5bf7550497f50a6fa94539ca55d4e8 -SIZE (KDE/release-service/24.12.2/kcolorchooser-24.12.2.tar.xz) = 36236 +TIMESTAMP = 1741275794 +SHA256 (KDE/release-service/24.12.3/kcolorchooser-24.12.3.tar.xz) = 26a013c0015e264c0c2ad6c13a663cf98c689b6c0563d56bdb282790db04c229 +SIZE (KDE/release-service/24.12.3/kcolorchooser-24.12.3.tar.xz) = 36244 diff --git a/graphics/kdegraphics-mobipocket/distinfo b/graphics/kdegraphics-mobipocket/distinfo index 891477a7925f..244c6696ddbd 100644 --- a/graphics/kdegraphics-mobipocket/distinfo +++ b/graphics/kdegraphics-mobipocket/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1738937177 -SHA256 (KDE/release-service/24.12.2/kdegraphics-mobipocket-24.12.2.tar.xz) = ea9dfbc69baf5ebe8c482344bdccc980abccbcb397971db21d178922255abb46 -SIZE (KDE/release-service/24.12.2/kdegraphics-mobipocket-24.12.2.tar.xz) = 13056 +TIMESTAMP = 1741275796 +SHA256 (KDE/release-service/24.12.3/kdegraphics-mobipocket-24.12.3.tar.xz) = 388e47f86095729122886d2e03eb4a7f636d987adb8b2bf309ac2b7df033edad +SIZE (KDE/release-service/24.12.3/kdegraphics-mobipocket-24.12.3.tar.xz) = 13060 diff --git a/graphics/kdegraphics-svgpart/distinfo b/graphics/kdegraphics-svgpart/distinfo index 8709a6c4c1d6..d6e370b2dc6d 100644 --- a/graphics/kdegraphics-svgpart/distinfo +++ b/graphics/kdegraphics-svgpart/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1738937178 -SHA256 (KDE/release-service/24.12.2/svgpart-24.12.2.tar.xz) = 738e23fe94cc223b9a1767f416a1acb43b364fcd71fb420d2217853f0c665f9d -SIZE (KDE/release-service/24.12.2/svgpart-24.12.2.tar.xz) = 30208 +TIMESTAMP = 1741275798 +SHA256 (KDE/release-service/24.12.3/svgpart-24.12.3.tar.xz) = ee92b8809d65acf07ef7f7fc58779fb178e5f89e385c4d564ffb593dc9b3ca90 +SIZE (KDE/release-service/24.12.3/svgpart-24.12.3.tar.xz) = 30236 diff --git a/graphics/kdegraphics-thumbnailers/distinfo b/graphics/kdegraphics-thumbnailers/distinfo index 33f5733f4747..656604c2ab1f 100644 --- a/graphics/kdegraphics-thumbnailers/distinfo +++ b/graphics/kdegraphics-thumbnailers/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1738937178 -SHA256 (KDE/release-service/24.12.2/kdegraphics-thumbnailers-24.12.2.tar.xz) = 295b1c64ba993b5da48d0b18ce204d47f3b650a325d257efe4de8ec8bc855099 -SIZE (KDE/release-service/24.12.2/kdegraphics-thumbnailers-24.12.2.tar.xz) = 49160 +TIMESTAMP = 1741275801 +SHA256 (KDE/release-service/24.12.3/kdegraphics-thumbnailers-24.12.3.tar.xz) = f515f64a49f9cb8325cce9862fe404cede9f168130b3619f4d1ecb4be37322c7 +SIZE (KDE/release-service/24.12.3/kdegraphics-thumbnailers-24.12.3.tar.xz) = 49120 diff --git a/graphics/kgraphviewer/distinfo b/graphics/kgraphviewer/distinfo index f04ca6087284..746b9ac410c9 100644 --- a/graphics/kgraphviewer/distinfo +++ b/graphics/kgraphviewer/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1739301994 -SHA256 (KDE/release-service/24.12.2/kgraphviewer-24.12.2.tar.xz) = 64b2fb71fe13ef5adb9e055b854ac4b1699a3aef6726576dc69b73d9fee1ff0a -SIZE (KDE/release-service/24.12.2/kgraphviewer-24.12.2.tar.xz) = 1590408 +TIMESTAMP = 1741275805 +SHA256 (KDE/release-service/24.12.3/kgraphviewer-24.12.3.tar.xz) = 21f983301902817f5c9c7805aab37b36ce74a0e05e36b0356d0739300806a0f6 +SIZE (KDE/release-service/24.12.3/kgraphviewer-24.12.3.tar.xz) = 1590504 diff --git a/graphics/kimagemapeditor/distinfo b/graphics/kimagemapeditor/distinfo index f6f8e6fe32cf..a82d99c2ff6b 100644 --- a/graphics/kimagemapeditor/distinfo +++ b/graphics/kimagemapeditor/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1738937179 -SHA256 (KDE/release-service/24.12.2/kimagemapeditor-24.12.2.tar.xz) = 9b075584b1b29cd224f697e8644d0cd9f874edd364d8f2ec9470d5890461d06f -SIZE (KDE/release-service/24.12.2/kimagemapeditor-24.12.2.tar.xz) = 1074764 +TIMESTAMP = 1741275810 +SHA256 (KDE/release-service/24.12.3/kimagemapeditor-24.12.3.tar.xz) = 50a015555929abab56d17fcf70add5ecf45d06e4af86fec47e014ff8a620eeb6 +SIZE (KDE/release-service/24.12.3/kimagemapeditor-24.12.3.tar.xz) = 1074652 diff --git a/graphics/kolourpaint/distinfo b/graphics/kolourpaint/distinfo index 6a6dca70a1f1..26e2cc6cd283 100644 --- a/graphics/kolourpaint/distinfo +++ b/graphics/kolourpaint/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1738937180 -SHA256 (KDE/release-service/24.12.2/kolourpaint-24.12.2.tar.xz) = 32e5d4e260df37fa6d7fb296fb56f27820ffb61fabbc193e85b69662aee42bbb -SIZE (KDE/release-service/24.12.2/kolourpaint-24.12.2.tar.xz) = 5309892 +TIMESTAMP = 1741275816 +SHA256 (KDE/release-service/24.12.3/kolourpaint-24.12.3.tar.xz) = d1097d88df9f7c81325bcbcca6a2e740d3ec877bc9e107aafbeb6c69053f70c1 +SIZE (KDE/release-service/24.12.3/kolourpaint-24.12.3.tar.xz) = 5310040 diff --git a/graphics/kontrast/distinfo b/graphics/kontrast/distinfo index 338bd694c7b4..98693df0b219 100644 --- a/graphics/kontrast/distinfo +++ b/graphics/kontrast/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1738937181 -SHA256 (KDE/release-service/24.12.2/kontrast-24.12.2.tar.xz) = 34cbf152bad6ff5f7ea21aa184f379523305f02f67470d58a418ec64e17e71f6 -SIZE (KDE/release-service/24.12.2/kontrast-24.12.2.tar.xz) = 217324 +TIMESTAMP = 1741275819 +SHA256 (KDE/release-service/24.12.3/kontrast-24.12.3.tar.xz) = ce38679ebc210fa90b1c3f1bf134d2b29b5a4f4b318e42a8c5646f75e1f169c1 +SIZE (KDE/release-service/24.12.3/kontrast-24.12.3.tar.xz) = 217424 diff --git a/graphics/kqtquickcharts/distinfo b/graphics/kqtquickcharts/distinfo index 946904bab355..cc7293b0ad87 100644 --- a/graphics/kqtquickcharts/distinfo +++ b/graphics/kqtquickcharts/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1738937182 -SHA256 (KDE/release-service/24.12.2/kqtquickcharts-24.12.2.tar.xz) = 6cc7248c7b1294283fc6291b87544825c71ee5a34a691918d471e862c2bd3929 -SIZE (KDE/release-service/24.12.2/kqtquickcharts-24.12.2.tar.xz) = 30848 +TIMESTAMP = 1741275822 +SHA256 (KDE/release-service/24.12.3/kqtquickcharts-24.12.3.tar.xz) = 16372f4d1d07eab1a4f07146a9ddd0586c28bd8c2e7dce005e8aa4280ca0ecc1 +SIZE (KDE/release-service/24.12.3/kqtquickcharts-24.12.3.tar.xz) = 30876 diff --git a/graphics/ksanecore/distinfo b/graphics/ksanecore/distinfo index 90b55518639c..4cd19fbbdafa 100644 --- a/graphics/ksanecore/distinfo +++ b/graphics/ksanecore/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1738937183 -SHA256 (KDE/release-service/24.12.2/ksanecore-24.12.2.tar.xz) = 10832182393f7a63d4eb223f1fafdada1c830b4cc88230e94c60e9337fbf84c3 -SIZE (KDE/release-service/24.12.2/ksanecore-24.12.2.tar.xz) = 54708 +TIMESTAMP = 1741275824 +SHA256 (KDE/release-service/24.12.3/ksanecore-24.12.3.tar.xz) = 9357c5e3db759241b12ebdc4586cad4a132627d23a15cbe0844f8943c31ae419 +SIZE (KDE/release-service/24.12.3/ksanecore-24.12.3.tar.xz) = 54736 diff --git a/graphics/libkdcraw/distinfo b/graphics/libkdcraw/distinfo index 1fe5580f2283..f8bbb0a18d6c 100644 --- a/graphics/libkdcraw/distinfo +++ b/graphics/libkdcraw/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1738937184 -SHA256 (KDE/release-service/24.12.2/libkdcraw-24.12.2.tar.xz) = ef05c88669201701556eac097f51cf264a297d3b45db8c06465f2345ff5ceb96 -SIZE (KDE/release-service/24.12.2/libkdcraw-24.12.2.tar.xz) = 37320 +TIMESTAMP = 1741275827 +SHA256 (KDE/release-service/24.12.3/libkdcraw-24.12.3.tar.xz) = 982e09405cde76911f036806aa12fd6b70f8ee26b1b37c73fe5c40ddc2340d5a +SIZE (KDE/release-service/24.12.3/libkdcraw-24.12.3.tar.xz) = 37328 diff --git a/graphics/libkexiv2/distinfo b/graphics/libkexiv2/distinfo index 078c44fdeb3b..df95176dbee2 100644 --- a/graphics/libkexiv2/distinfo +++ b/graphics/libkexiv2/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1738937185 -SHA256 (KDE/release-service/24.12.2/libkexiv2-24.12.2.tar.xz) = f797fd8f442f578de464ba2b861b9d6b2d02e2351a3ffb6aa5e54ce2947c2c8f -SIZE (KDE/release-service/24.12.2/libkexiv2-24.12.2.tar.xz) = 60628 +TIMESTAMP = 1741275829 +SHA256 (KDE/release-service/24.12.3/libkexiv2-24.12.3.tar.xz) = 31b8aa103ea0d4d58fc5f1f9517229baf0ab6d02519105ad27205fc1cfc16411 +SIZE (KDE/release-service/24.12.3/libkexiv2-24.12.3.tar.xz) = 60632 diff --git a/graphics/libksane/distinfo b/graphics/libksane/distinfo index adba861b761c..4dd451ed6d82 100644 --- a/graphics/libksane/distinfo +++ b/graphics/libksane/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1738937186 -SHA256 (KDE/release-service/24.12.2/libksane-24.12.2.tar.xz) = cc38a3d399525f8a9f2b62271e460794a6376a858c2140bab73bb0405f85a062 -SIZE (KDE/release-service/24.12.2/libksane-24.12.2.tar.xz) = 155404 +TIMESTAMP = 1741275833 +SHA256 (KDE/release-service/24.12.3/libksane-24.12.3.tar.xz) = bcbc7ec1ccd96a8f24d77708f8a28859ff7089e4e5f84b7ba15201cc885b0cac +SIZE (KDE/release-service/24.12.3/libksane-24.12.3.tar.xz) = 155384 diff --git a/graphics/okular/distinfo b/graphics/okular/distinfo index babb117648d4..13aab5728bf0 100644 --- a/graphics/okular/distinfo +++ b/graphics/okular/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1738937187 -SHA256 (KDE/release-service/24.12.2/okular-24.12.2.tar.xz) = 036cc27dea900a3eae27de9e2fb540d9568a1995d843669baa2a36c2e41556de -SIZE (KDE/release-service/24.12.2/okular-24.12.2.tar.xz) = 8056788 +TIMESTAMP = 1741275839 +SHA256 (KDE/release-service/24.12.3/okular-24.12.3.tar.xz) = 8d0894dc006b715dec2d8d57c228b8a9d5d9488e3144dd1af93b3b8363e466a0 +SIZE (KDE/release-service/24.12.3/okular-24.12.3.tar.xz) = 8057564 diff --git a/graphics/skanlite/distinfo b/graphics/skanlite/distinfo index 4cc92e96ad0d..2ab897b94584 100644 --- a/graphics/skanlite/distinfo +++ b/graphics/skanlite/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1738937188 -SHA256 (KDE/release-service/24.12.2/skanlite-24.12.2.tar.xz) = d42c4431beb9166c7f097b741678be5f11cf16b009f32624f4d469a2377d7824 -SIZE (KDE/release-service/24.12.2/skanlite-24.12.2.tar.xz) = 2390896 +TIMESTAMP = 1741275840 +SHA256 (KDE/release-service/24.12.3/skanlite-24.12.3.tar.xz) = 45de753338ba358d3298af0b89e1c1f089c0096c3748f3fbe1050c43baf55834 +SIZE (KDE/release-service/24.12.3/skanlite-24.12.3.tar.xz) = 2390972 diff --git a/graphics/skanpage/Makefile b/graphics/skanpage/Makefile index 01a4363198e5..0b4f3aaba741 100644 --- a/graphics/skanpage/Makefile +++ b/graphics/skanpage/Makefile @@ -1,33 +1,32 @@ PORTNAME= skanpage DISTVERSION= ${KDE_APPLICATIONS_VERSION} -PORTREVISION= 1 CATEGORIES= graphics kde kde-applications MAINTAINER= kde@FreeBSD.org COMMENT= Multi-page image scanning application WWW= https://invent.kde.org/utilities/skanpage # We pick GPLv3 out of 2|3|KDEeV LICENSE= GPLv3 LICENSE_FILE= ${WRKSRC}/LICENSES/GPL-3.0-only.txt BUILD_DEPENDS= kquickimageeditor-qt6>=0:graphics/kquickimageeditor LIB_DEPENDS= libKSaneCore6.so:graphics/ksanecore \ libpng.so:graphics/png RUN_DEPENDS= kquickimageeditor-qt6>=0:graphics/kquickimageeditor USES= cmake compiler:c++11-lang gettext kde:6 qt:6 tar:xz USE_KDE= auth codecs completion config configwidgets coreaddons crash \ i18n jobwidgets kio kirigami2 purpose service widgetsaddons \ xmlgui \ doctools:build ecm:build USE_QT= base pdf OPTIONS_DEFINE= OCR OPTIONS_DEFAULT= OCR OCR_DESC= Text recognition via Tesseract OCR OCR_LIB_DEPENDS= libleptonica.so:graphics/leptonica \ libtesseract.so:graphics/tesseract .include diff --git a/graphics/skanpage/distinfo b/graphics/skanpage/distinfo index 3cf7a546e7f5..f956beb52689 100644 --- a/graphics/skanpage/distinfo +++ b/graphics/skanpage/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1738937189 -SHA256 (KDE/release-service/24.12.2/skanpage-24.12.2.tar.xz) = 4700e365da9c7716142936d0c1b42debfc81121a8f7dfce1423b919514a79d9e -SIZE (KDE/release-service/24.12.2/skanpage-24.12.2.tar.xz) = 1337844 +TIMESTAMP = 1741275841 +SHA256 (KDE/release-service/24.12.3/skanpage-24.12.3.tar.xz) = d7030a71fa1ef68f83081e759129e475bfb942fa801e919010f2b2934d8ce489 +SIZE (KDE/release-service/24.12.3/skanpage-24.12.3.tar.xz) = 1337996 diff --git a/irc/konversation/distinfo b/irc/konversation/distinfo index bc186e312ced..29db0d850bd2 100644 --- a/irc/konversation/distinfo +++ b/irc/konversation/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1738937191 -SHA256 (KDE/release-service/24.12.2/konversation-24.12.2.tar.xz) = b3a9396a42289ee7c69bd690c0a8961545eb1dc578a5d397b320be0725244a18 -SIZE (KDE/release-service/24.12.2/konversation-24.12.2.tar.xz) = 4415908 +TIMESTAMP = 1741275846 +SHA256 (KDE/release-service/24.12.3/konversation-24.12.3.tar.xz) = 3b6e0d6b0bbf055893780a18026eef682ccffe44df2580d923089a0acedc220c +SIZE (KDE/release-service/24.12.3/konversation-24.12.3.tar.xz) = 4415996 diff --git a/japanese/kiten/distinfo b/japanese/kiten/distinfo index c175689d222d..11eda9f13943 100644 --- a/japanese/kiten/distinfo +++ b/japanese/kiten/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1738937194 -SHA256 (KDE/release-service/24.12.2/kiten-24.12.2.tar.xz) = 826d32085503bb7f384ebd590ba4158acbc99a271befeae818e713dde1c13528 -SIZE (KDE/release-service/24.12.2/kiten-24.12.2.tar.xz) = 11314996 +TIMESTAMP = 1741275853 +SHA256 (KDE/release-service/24.12.3/kiten-24.12.3.tar.xz) = 214d24adfb12ef39b0e2cfa0afa5a12d3d74f8ec8ebec3e7fda6a1007c99d72a +SIZE (KDE/release-service/24.12.3/kiten-24.12.3.tar.xz) = 11313672 diff --git a/lang/kross-interpreters/distinfo b/lang/kross-interpreters/distinfo index 56da90e951a6..9fd601bd0a80 100644 --- a/lang/kross-interpreters/distinfo +++ b/lang/kross-interpreters/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1738937195 -SHA256 (KDE/release-service/24.12.2/kross-interpreters-24.12.2.tar.xz) = 25a32640e55396faae3010437e3d754459b00d2662a4c6ffac5fcd94a9bad02b -SIZE (KDE/release-service/24.12.2/kross-interpreters-24.12.2.tar.xz) = 151744 +TIMESTAMP = 1741275856 +SHA256 (KDE/release-service/24.12.3/kross-interpreters-24.12.3.tar.xz) = d1d8d2e39f56a4a8b76d1108a85cf905000f44b056a2af527ecb387ab5aca388 +SIZE (KDE/release-service/24.12.3/kross-interpreters-24.12.3.tar.xz) = 151768 diff --git a/lang/kturtle/distinfo b/lang/kturtle/distinfo index e049e1c13765..6f8c55b5a3d8 100644 --- a/lang/kturtle/distinfo +++ b/lang/kturtle/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1738937196 -SHA256 (KDE/release-service/24.12.2/kturtle-24.12.2.tar.xz) = 07874e02ca5aa5ab2bd7ebeeedbc877514029139ac4864b9901e4f6345eb2cfb -SIZE (KDE/release-service/24.12.2/kturtle-24.12.2.tar.xz) = 2097072 +TIMESTAMP = 1741275861 +SHA256 (KDE/release-service/24.12.3/kturtle-24.12.3.tar.xz) = dd610da8e717a3feae49400808732074a3d35b434b729c0ac94401fb77fc31e7 +SIZE (KDE/release-service/24.12.3/kturtle-24.12.3.tar.xz) = 2096888 diff --git a/math/analitza/distinfo b/math/analitza/distinfo index a23e94481c74..793cc86ebf11 100644 --- a/math/analitza/distinfo +++ b/math/analitza/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1738937197 -SHA256 (KDE/release-service/24.12.2/analitza-24.12.2.tar.xz) = 66045536eeaf24cad7119cb4bc5922ea081c9f36b63602adf8ca03a748f4c438 -SIZE (KDE/release-service/24.12.2/analitza-24.12.2.tar.xz) = 360032 +TIMESTAMP = 1741275862 +SHA256 (KDE/release-service/24.12.3/analitza-24.12.3.tar.xz) = 8c16a338eb1232256240778b867aa469ccc650112d9a68f35364c2679b93db24 +SIZE (KDE/release-service/24.12.3/analitza-24.12.3.tar.xz) = 360052 diff --git a/math/cantor/distinfo b/math/cantor/distinfo index d329d917d17d..97708f8ca562 100644 --- a/math/cantor/distinfo +++ b/math/cantor/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1738937198 -SHA256 (KDE/release-service/24.12.2/cantor-24.12.2.tar.xz) = 3ed32518fa56e4ee3712afe5baba433eb44cadb4aad21284537cb773d3238cd3 -SIZE (KDE/release-service/24.12.2/cantor-24.12.2.tar.xz) = 10875764 +TIMESTAMP = 1741275869 +SHA256 (KDE/release-service/24.12.3/cantor-24.12.3.tar.xz) = 28ae80a281bdb277f8a807feddadbecb8d3f797b6b5b804e1bf371f32a728245 +SIZE (KDE/release-service/24.12.3/cantor-24.12.3.tar.xz) = 10875632 diff --git a/math/kalgebra/distinfo b/math/kalgebra/distinfo index ad25c205b368..7fb11e6883a7 100644 --- a/math/kalgebra/distinfo +++ b/math/kalgebra/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1738937199 -SHA256 (KDE/release-service/24.12.2/kalgebra-24.12.2.tar.xz) = 151fb9b9ad33f7c874f54900c2f6db6c95168b8cb65a649531c8b20607b736bc -SIZE (KDE/release-service/24.12.2/kalgebra-24.12.2.tar.xz) = 948916 +TIMESTAMP = 1741275873 +SHA256 (KDE/release-service/24.12.3/kalgebra-24.12.3.tar.xz) = ffabb83624b1614cf1611d4ee1409d2bcb5eef0f0715f5cd6a33c21de65f012e +SIZE (KDE/release-service/24.12.3/kalgebra-24.12.3.tar.xz) = 949004 diff --git a/math/kalk/distinfo b/math/kalk/distinfo index 7de5aebe893b..c82bd3e8a8f8 100644 --- a/math/kalk/distinfo +++ b/math/kalk/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1738937200 -SHA256 (KDE/release-service/24.12.2/kalk-24.12.2.tar.xz) = 6c97aa9e80579953cd7f09e8305b5e1960152239b200a181af529e5ac4e1465e -SIZE (KDE/release-service/24.12.2/kalk-24.12.2.tar.xz) = 77804 +TIMESTAMP = 1741275875 +SHA256 (KDE/release-service/24.12.3/kalk-24.12.3.tar.xz) = 3027a1bd7677b571f87a400b144130a52a8fb1e6da443353e5149d5f935c9f77 +SIZE (KDE/release-service/24.12.3/kalk-24.12.3.tar.xz) = 77928 diff --git a/math/kbruch/distinfo b/math/kbruch/distinfo index 59b4a8f6d094..9d09054e51bc 100644 --- a/math/kbruch/distinfo +++ b/math/kbruch/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1738937201 -SHA256 (KDE/release-service/24.12.2/kbruch-24.12.2.tar.xz) = 8b2f4f7fa3a79cd55bd6975089d1796f891460557c104d2bf1dc1529c8409bbc -SIZE (KDE/release-service/24.12.2/kbruch-24.12.2.tar.xz) = 5159040 +TIMESTAMP = 1741275881 +SHA256 (KDE/release-service/24.12.3/kbruch-24.12.3.tar.xz) = 184c95c452c5e6146a54c8c91865560387222ac219b30dc0e103ddc70572953c +SIZE (KDE/release-service/24.12.3/kbruch-24.12.3.tar.xz) = 5159084 diff --git a/math/kcalc/distinfo b/math/kcalc/distinfo index 5bc09b76f27c..a223216002dc 100644 --- a/math/kcalc/distinfo +++ b/math/kcalc/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1738937201 -SHA256 (KDE/release-service/24.12.2/kcalc-24.12.2.tar.xz) = 0e7834c2726ed1fb09e1efbf5d17165204a66895897fb1207341075708b677fa -SIZE (KDE/release-service/24.12.2/kcalc-24.12.2.tar.xz) = 471296 +TIMESTAMP = 1741275885 +SHA256 (KDE/release-service/24.12.3/kcalc-24.12.3.tar.xz) = bba3ba665177ee9bab2a55fb32e04ae6041f5eaf305dd6901649b9b8ef359751 +SIZE (KDE/release-service/24.12.3/kcalc-24.12.3.tar.xz) = 471340 diff --git a/math/kig/distinfo b/math/kig/distinfo index d27e1b3705dd..1d563ea22d65 100644 --- a/math/kig/distinfo +++ b/math/kig/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1738937203 -SHA256 (KDE/release-service/24.12.2/kig-24.12.2.tar.xz) = d8083daf48adc4c816ad44cf34db51e08b41afe8dee5be0425f7e667b45aa596 -SIZE (KDE/release-service/24.12.2/kig-24.12.2.tar.xz) = 3253636 +TIMESTAMP = 1741275890 +SHA256 (KDE/release-service/24.12.3/kig-24.12.3.tar.xz) = f10d05bb1759224267e1bb9a96017bdba050155fe0901811cbcf2380ca9493bd +SIZE (KDE/release-service/24.12.3/kig-24.12.3.tar.xz) = 3253492 diff --git a/math/kmplot/distinfo b/math/kmplot/distinfo index 6146f0ff6e6e..1d012c83854c 100644 --- a/math/kmplot/distinfo +++ b/math/kmplot/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1738937204 -SHA256 (KDE/release-service/24.12.2/kmplot-24.12.2.tar.xz) = a479d7a2a973f37039ae3a60026a6cab83505a3f62f6fbab29f7b3ac8e6f824d -SIZE (KDE/release-service/24.12.2/kmplot-24.12.2.tar.xz) = 3022252 +TIMESTAMP = 1741275895 +SHA256 (KDE/release-service/24.12.3/kmplot-24.12.3.tar.xz) = eb8960140526897902b12efa8712f91f64f63d1f6e17d5ff2a671d9d725cd421 +SIZE (KDE/release-service/24.12.3/kmplot-24.12.3.tar.xz) = 3022396 diff --git a/math/rocs/Makefile b/math/rocs/Makefile index 0f9a12347a5b..dab1cb906d75 100644 --- a/math/rocs/Makefile +++ b/math/rocs/Makefile @@ -1,27 +1,26 @@ PORTNAME= rocs DISTVERSION= ${KDE_APPLICATIONS_VERSION} -PORTREVISION= 1 CATEGORIES= math education kde kde-applications MAINTAINER= kde@FreeBSD.org COMMENT= KDE Graph theory IDE WWW= https://www.kde.org/applications/education/rocs LIB_DEPENDS= libboost_thread.so:devel/boost-libs USES= cmake compiler:c++11-lang desktop-file-utils gettext \ grantlee:5 kde:5 qt:5 tar:xz xorg USE_KDE= archive auth codecs completion config configwidgets coreaddons \ crash i18n itemviews jobwidgets kdeclarative kio package parts \ service solid sonnet syntaxhighlighting texteditor textwidgets \ widgetsaddons windowsystem xmlgui \ doctools:build ecm:build USE_QT= concurrent core dbus declarative gui network script \ scripttools svg widgets xml xmlpatterns \ buildtools:build qmake:build testlib:build USE_XORG= x11 USE_LDCONFIG= yes OPTIONS_DEFINE= DOCS .include diff --git a/math/rocs/distinfo b/math/rocs/distinfo index 4daca78339bb..f72a23aea963 100644 --- a/math/rocs/distinfo +++ b/math/rocs/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1738937205 -SHA256 (KDE/release-service/24.12.2/rocs-24.12.2.tar.xz) = 5c6386486eaf18e7d8546215764727fa117fa36b134b97a78927adbde79abdac -SIZE (KDE/release-service/24.12.2/rocs-24.12.2.tar.xz) = 1565728 +TIMESTAMP = 1741275900 +SHA256 (KDE/release-service/24.12.3/rocs-24.12.3.tar.xz) = 9e22fb3fde9b789cfaca3db53267c6ff5d70fad57d2dab03d890e92fa3f3ff70 +SIZE (KDE/release-service/24.12.3/rocs-24.12.3.tar.xz) = 1565120 diff --git a/misc/artikulate/distinfo b/misc/artikulate/distinfo index 50194ecfd3eb..9c51723a6427 100644 --- a/misc/artikulate/distinfo +++ b/misc/artikulate/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1738937206 -SHA256 (KDE/release-service/24.12.2/artikulate-24.12.2.tar.xz) = 6cb91e6298842013788f12fc124b0d122208f06143236170cd2e786637d43bf4 -SIZE (KDE/release-service/24.12.2/artikulate-24.12.2.tar.xz) = 1054524 +TIMESTAMP = 1741275902 +SHA256 (KDE/release-service/24.12.3/artikulate-24.12.3.tar.xz) = aa6324a4e3a85eaca85e167ea213976fdd22e5871cf40482fd3fc2639a70c398 +SIZE (KDE/release-service/24.12.3/artikulate-24.12.3.tar.xz) = 1054360 diff --git a/misc/kdeedu-data/distinfo b/misc/kdeedu-data/distinfo index 20dd601e33d5..eff1b6da87c3 100644 --- a/misc/kdeedu-data/distinfo +++ b/misc/kdeedu-data/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1738937206 -SHA256 (KDE/release-service/24.12.2/kdeedu-data-24.12.2.tar.xz) = da93ca06118581137a42233a4df9606a15bf88ac1a8f8c761fb543cf588a2307 -SIZE (KDE/release-service/24.12.2/kdeedu-data-24.12.2.tar.xz) = 338820 +TIMESTAMP = 1741275905 +SHA256 (KDE/release-service/24.12.3/kdeedu-data-24.12.3.tar.xz) = 2961d58f7d80e38babe724bb7225369d1619c54d28b3bd05d8dcd333be9d666f +SIZE (KDE/release-service/24.12.3/kdeedu-data-24.12.3.tar.xz) = 338764 diff --git a/misc/kgeography/distinfo b/misc/kgeography/distinfo index f0f9a1b63713..7336c041ddb2 100644 --- a/misc/kgeography/distinfo +++ b/misc/kgeography/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1738937209 -SHA256 (KDE/release-service/24.12.2/kgeography-24.12.2.tar.xz) = f820c74abc32d57ceb0f4e301d66513116146958761cfa2ef47a1ff18048a3e2 -SIZE (KDE/release-service/24.12.2/kgeography-24.12.2.tar.xz) = 12426020 +TIMESTAMP = 1741275912 +SHA256 (KDE/release-service/24.12.3/kgeography-24.12.3.tar.xz) = da735ad23de880cc0ffae507957ae4ec3735f5e763ad2694f8b88cdb43ce873b +SIZE (KDE/release-service/24.12.3/kgeography-24.12.3.tar.xz) = 12425584 diff --git a/misc/klettres/distinfo b/misc/klettres/distinfo index f34efc6af611..005cfd50ff52 100644 --- a/misc/klettres/distinfo +++ b/misc/klettres/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1738937234 -SHA256 (KDE/release-service/24.12.2/klettres-24.12.2.tar.xz) = 7f32e4d2abff576a3de0a288bb1adf5b61232921b02b87e26d846286d4eaeb28 -SIZE (KDE/release-service/24.12.2/klettres-24.12.2.tar.xz) = 47187576 +TIMESTAMP = 1741275926 +SHA256 (KDE/release-service/24.12.3/klettres-24.12.3.tar.xz) = 9ae36ccad9fde66c7c61113d92eb8f546117e1b259ee18dfb93daeebdd26f6b4 +SIZE (KDE/release-service/24.12.3/klettres-24.12.3.tar.xz) = 47186628 diff --git a/misc/ktouch/distinfo b/misc/ktouch/distinfo index ba40f7008473..720c38bb098d 100644 --- a/misc/ktouch/distinfo +++ b/misc/ktouch/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1738937235 -SHA256 (KDE/release-service/24.12.2/ktouch-24.12.2.tar.xz) = 329c87b2d92b48cd25d75d5a89b74aabe19e13041a48d329339cbe80f8d6dfae -SIZE (KDE/release-service/24.12.2/ktouch-24.12.2.tar.xz) = 4788324 +TIMESTAMP = 1741275931 +SHA256 (KDE/release-service/24.12.3/ktouch-24.12.3.tar.xz) = c59edd722c425e0df86efccf0d79f7883d82c5baaf0673165051f5e13aaa1feb +SIZE (KDE/release-service/24.12.3/ktouch-24.12.3.tar.xz) = 4788720 diff --git a/misc/kwordquiz/distinfo b/misc/kwordquiz/distinfo index f56258f4efa7..f1cbe481a0a6 100644 --- a/misc/kwordquiz/distinfo +++ b/misc/kwordquiz/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1738937236 -SHA256 (KDE/release-service/24.12.2/kwordquiz-24.12.2.tar.xz) = 28426cef68912fb356d3c8e58c21686f6c56299ebabaacf6ffbe23de801cd6be -SIZE (KDE/release-service/24.12.2/kwordquiz-24.12.2.tar.xz) = 3620460 +TIMESTAMP = 1741275937 +SHA256 (KDE/release-service/24.12.3/kwordquiz-24.12.3.tar.xz) = 8e54f89e20971062e2cdb425d14f0ba53209c670d76442629a6e6085733df498 +SIZE (KDE/release-service/24.12.3/kwordquiz-24.12.3.tar.xz) = 3620352 diff --git a/misc/libkeduvocdocument/distinfo b/misc/libkeduvocdocument/distinfo index 1799aaf069d2..3a1bc5f4a097 100644 --- a/misc/libkeduvocdocument/distinfo +++ b/misc/libkeduvocdocument/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1738937238 -SHA256 (KDE/release-service/24.12.2/libkeduvocdocument-24.12.2.tar.xz) = 5fefb0dc52041cd937fe9257a26468b740d31714691cfd6108eb66de7adecea8 -SIZE (KDE/release-service/24.12.2/libkeduvocdocument-24.12.2.tar.xz) = 228544 +TIMESTAMP = 1741275940 +SHA256 (KDE/release-service/24.12.3/libkeduvocdocument-24.12.3.tar.xz) = 9baa63a7c69d98d86a581a2568a59f2484e9d79949415f862c8410f82d039909 +SIZE (KDE/release-service/24.12.3/libkeduvocdocument-24.12.3.tar.xz) = 228524 diff --git a/misc/minuet/distinfo b/misc/minuet/distinfo index d829792f95af..05b56873e1b0 100644 --- a/misc/minuet/distinfo +++ b/misc/minuet/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1740249613 -SHA256 (KDE/release-service/24.12.2/minuet-24.12.2.tar.xz) = 2416cdf325f7231458d12eceb15d6c8177bfed3bd567b68310602d4bc4a39c74 -SIZE (KDE/release-service/24.12.2/minuet-24.12.2.tar.xz) = 27694024 +TIMESTAMP = 1741275950 +SHA256 (KDE/release-service/24.12.3/minuet-24.12.3.tar.xz) = cdc73e908282e4d087cc9f6932c134835bbff784cd1bf6b56e3d3dc9749a2f77 +SIZE (KDE/release-service/24.12.3/minuet-24.12.3.tar.xz) = 27696452 diff --git a/misc/parley/distinfo b/misc/parley/distinfo index 1b50fc74fde3..95713c7128dd 100644 --- a/misc/parley/distinfo +++ b/misc/parley/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1738937239 -SHA256 (KDE/release-service/24.12.2/parley-24.12.2.tar.xz) = 7d82aefae605ee6f4e610d86e5a31c78188a4bfa140756113ea3ed7746bff65d -SIZE (KDE/release-service/24.12.2/parley-24.12.2.tar.xz) = 8434592 +TIMESTAMP = 1741275956 +SHA256 (KDE/release-service/24.12.3/parley-24.12.3.tar.xz) = 6dfed12792b2c3181149ee954297a0ffc9e4b0892b9ee77601cd8a4cc7f4117d +SIZE (KDE/release-service/24.12.3/parley-24.12.3.tar.xz) = 8434668 diff --git a/multimedia/dragon/distinfo b/multimedia/dragon/distinfo index f0c4526faf4d..40ba4b2c6676 100644 --- a/multimedia/dragon/distinfo +++ b/multimedia/dragon/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1738937240 -SHA256 (KDE/release-service/24.12.2/dragon-24.12.2.tar.xz) = 37d480899c5fa719dbc95f95d6c1a4c5750c52f63641829b3021f469d6f79733 -SIZE (KDE/release-service/24.12.2/dragon-24.12.2.tar.xz) = 1830476 +TIMESTAMP = 1741275960 +SHA256 (KDE/release-service/24.12.3/dragon-24.12.3.tar.xz) = f86568f82d9dc85da5900f48327260636ed73fa5ff80c890665d21a8c9c14b84 +SIZE (KDE/release-service/24.12.3/dragon-24.12.3.tar.xz) = 1830472 diff --git a/multimedia/kamoso/distinfo b/multimedia/kamoso/distinfo index be0e77aaf35b..487c302f7575 100644 --- a/multimedia/kamoso/distinfo +++ b/multimedia/kamoso/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1738937240 -SHA256 (KDE/release-service/24.12.2/kamoso-24.12.2.tar.xz) = 5da230439f99ac5bf9bca283f21a1807aefd567c409abb1c951243a801e1c57a -SIZE (KDE/release-service/24.12.2/kamoso-24.12.2.tar.xz) = 234548 +TIMESTAMP = 1741275964 +SHA256 (KDE/release-service/24.12.3/kamoso-24.12.3.tar.xz) = 0baad53cc4ebddf693d6ed73c93e0c7e53e57596c3e27ef30940dc172e8809af +SIZE (KDE/release-service/24.12.3/kamoso-24.12.3.tar.xz) = 234492 diff --git a/multimedia/kasts/distinfo b/multimedia/kasts/distinfo index 325dfb68e6b4..7e9cea2db294 100644 --- a/multimedia/kasts/distinfo +++ b/multimedia/kasts/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1738937241 -SHA256 (KDE/release-service/24.12.2/kasts-24.12.2.tar.xz) = afe8bbcf907caea592448a7c93bdc461d5fb28c3c247a552fbbbb69d7afa3ac9 -SIZE (KDE/release-service/24.12.2/kasts-24.12.2.tar.xz) = 626452 +TIMESTAMP = 1741275967 +SHA256 (KDE/release-service/24.12.3/kasts-24.12.3.tar.xz) = 45351ce35d2188e732544cc14b48d3589dfe5e5206884502e9695f5bdee37570 +SIZE (KDE/release-service/24.12.3/kasts-24.12.3.tar.xz) = 626512 diff --git a/multimedia/kdemultimedia-ffmpegthumbs/distinfo b/multimedia/kdemultimedia-ffmpegthumbs/distinfo index c4c708fb5128..65f5493a6169 100644 --- a/multimedia/kdemultimedia-ffmpegthumbs/distinfo +++ b/multimedia/kdemultimedia-ffmpegthumbs/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1738937242 -SHA256 (KDE/release-service/24.12.2/ffmpegthumbs-24.12.2.tar.xz) = ebf7bfc2edcc11a223fb5bc8af2c58b1667a02af018ef6f898d383e11cba940e -SIZE (KDE/release-service/24.12.2/ffmpegthumbs-24.12.2.tar.xz) = 33172 +TIMESTAMP = 1741275970 +SHA256 (KDE/release-service/24.12.3/ffmpegthumbs-24.12.3.tar.xz) = 2d22f2342f38cb4c09c17a691ffebcf9a09b2025a501f45e688b952319c10de9 +SIZE (KDE/release-service/24.12.3/ffmpegthumbs-24.12.3.tar.xz) = 33196 diff --git a/multimedia/kdenlive/distinfo b/multimedia/kdenlive/distinfo index 5d06f11f03b3..d1759995ff9f 100644 --- a/multimedia/kdenlive/distinfo +++ b/multimedia/kdenlive/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1738937245 -SHA256 (KDE/release-service/24.12.2/kdenlive-24.12.2.tar.xz) = 37be18de3583fda33fb246f312f5a4e25c1e64ae6d746668244252e2033ef489 -SIZE (KDE/release-service/24.12.2/kdenlive-24.12.2.tar.xz) = 13144676 +TIMESTAMP = 1741275977 +SHA256 (KDE/release-service/24.12.3/kdenlive-24.12.3.tar.xz) = 449c7e53d9501f434b955f228dcb29f3cb42642c41b053dd8e4cd30b8861843e +SIZE (KDE/release-service/24.12.3/kdenlive-24.12.3.tar.xz) = 13155344 diff --git a/multimedia/plasmatube/distinfo b/multimedia/plasmatube/distinfo index 85e1b7911403..3583e0db022a 100644 --- a/multimedia/plasmatube/distinfo +++ b/multimedia/plasmatube/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1738937245 -SHA256 (KDE/release-service/24.12.2/plasmatube-24.12.2.tar.xz) = 4d72dbe0255a274cf6809dd34e8c6c3e3e78d1f0fff0190483c97d0606675554 -SIZE (KDE/release-service/24.12.2/plasmatube-24.12.2.tar.xz) = 216740 +TIMESTAMP = 1741275979 +SHA256 (KDE/release-service/24.12.3/plasmatube-24.12.3.tar.xz) = 1655f1d6899258404127efeab03eb3f67bc688bf385d96d8429841f321d20514 +SIZE (KDE/release-service/24.12.3/plasmatube-24.12.3.tar.xz) = 218340 diff --git a/net-im/kaccounts-integration/distinfo b/net-im/kaccounts-integration/distinfo index 0773cdb536b4..45a54c954ac8 100644 --- a/net-im/kaccounts-integration/distinfo +++ b/net-im/kaccounts-integration/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1738937246 -SHA256 (KDE/release-service/24.12.2/kaccounts-integration-24.12.2.tar.xz) = d456f36884580e5447fed3f23f85e7d3fae0264cf85093e1eaa621eab65881d8 -SIZE (KDE/release-service/24.12.2/kaccounts-integration-24.12.2.tar.xz) = 93688 +TIMESTAMP = 1741275982 +SHA256 (KDE/release-service/24.12.3/kaccounts-integration-24.12.3.tar.xz) = d685b97b32b4926c81b2b035c4d21e4d474957f42c0beff673dba59ad4f3ea4f +SIZE (KDE/release-service/24.12.3/kaccounts-integration-24.12.3.tar.xz) = 93720 diff --git a/net-im/kaccounts-providers/distinfo b/net-im/kaccounts-providers/distinfo index 745102f5f4ea..52455aa711f7 100644 --- a/net-im/kaccounts-providers/distinfo +++ b/net-im/kaccounts-providers/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1738937247 -SHA256 (KDE/release-service/24.12.2/kaccounts-providers-24.12.2.tar.xz) = 94fe1dc859fbd75233db6248c166b6d5a40e054456ae4d865f97adb8b42b5504 -SIZE (KDE/release-service/24.12.2/kaccounts-providers-24.12.2.tar.xz) = 68836 +TIMESTAMP = 1741275985 +SHA256 (KDE/release-service/24.12.3/kaccounts-providers-24.12.3.tar.xz) = 24df74bee9f53e1983d8a5689d73822bf3603476ec6a942564b7886af78adcc9 +SIZE (KDE/release-service/24.12.3/kaccounts-providers-24.12.3.tar.xz) = 68856 diff --git a/net-im/neochat/Makefile b/net-im/neochat/Makefile index 9ffdd4bc0236..65bf2bc10a89 100644 --- a/net-im/neochat/Makefile +++ b/net-im/neochat/Makefile @@ -1,42 +1,41 @@ PORTNAME= neochat DISTVERSION= ${KDE_APPLICATIONS_VERSION} -PORTREVISION= 1 CATEGORIES= net-im deskutils kde kde-applications MAINTAINER= kde@FreeBSD.org COMMENT= Glossy Matrix IM client based on KDE technologies WWW= https://invent.kde.org/network/neochat LICENSE= GPLv3 LICENSE_FILE= ${WRKSRC}/LICENSES/GPL-3.0-only.txt # Quotient is a static lib, doesn't need to be in RUN_DEPENDS BUILD_DEPENDS= libquotient>=0.9.0:net-im/libquotient \ kquickimageeditor-qt6>=0.2.0:graphics/kquickimageeditor LIB_DEPENDS= libQCoro6Core.so:devel/qcoro@qt6 \ libcmark.so:textproc/cmark \ libqt6keychain.so:security/qtkeychain@qt6 \ libdbus-1.so:devel/dbus \ libolm.so:security/olm RUN_DEPENDS= kquickimageeditor-qt6>=0.2.0:graphics/kquickimageeditor USES= cmake compiler:c++20-lang desktop-file-utils gettext kde:6 \ pkgconfig qt:6 tar:xz xorg USE_QT= base multimedia webview \ location:run positioning:run USE_KDE= auth codecs completion config configwidgets coreaddons \ dbusaddons i18n itemmodels jobwidgets kio kirigami-addons \ kirigami2 kquickcharts notifications purpose qqc2-desktop-style \ service solid sonnet statusnotifieritem syntaxhighlighting \ widgetsaddons windowsystem \ prison:run \ ecm:build USE_XORG= x11 .include .if ${ARCH:Mpowerpc*} USES+= llvm:min=16 .endif .include diff --git a/net-im/neochat/distinfo b/net-im/neochat/distinfo index ba79b22da078..37be81e4854b 100644 --- a/net-im/neochat/distinfo +++ b/net-im/neochat/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1738937248 -SHA256 (KDE/release-service/24.12.2/neochat-24.12.2.tar.xz) = cb26faff6274b099287e49d0d44312dfc56e2e07d975a62e299749066dc23476 -SIZE (KDE/release-service/24.12.2/neochat-24.12.2.tar.xz) = 1063892 +TIMESTAMP = 1741275989 +SHA256 (KDE/release-service/24.12.3/neochat-24.12.3.tar.xz) = 0da4ef87620647efca0198d420e897b97c56bcfcbcfdaa5a78aa50fd488301e0 +SIZE (KDE/release-service/24.12.3/neochat-24.12.3.tar.xz) = 1064312 diff --git a/net-im/tokodon/distinfo b/net-im/tokodon/distinfo index aaebb0ec387d..8526db538250 100644 --- a/net-im/tokodon/distinfo +++ b/net-im/tokodon/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1738937249 -SHA256 (KDE/release-service/24.12.2/tokodon-24.12.2.tar.xz) = cbcd2a96689a3545613972dc8704398650cb83c2b0c290f61b7cad89c5be7763 -SIZE (KDE/release-service/24.12.2/tokodon-24.12.2.tar.xz) = 666568 +TIMESTAMP = 1741275993 +SHA256 (KDE/release-service/24.12.3/tokodon-24.12.3.tar.xz) = 62b2ddcc8caee8889d835a01d06340199040cea46bf858dbaea3b391bb36a6aa +SIZE (KDE/release-service/24.12.3/tokodon-24.12.3.tar.xz) = 683428 diff --git a/net-im/tokodon/pkg-plist b/net-im/tokodon/pkg-plist index 0be0c1b9e368..150a492209d6 100644 --- a/net-im/tokodon/pkg-plist +++ b/net-im/tokodon/pkg-plist @@ -1,53 +1,54 @@ bin/tokodon %%QT_PLUGINDIR%%/kf6/purpose/tokodonplugin.so share/applications/org.kde.tokodon.desktop share/icons/hicolor/scalable/actions/tokodon-chat-reply.svg share/icons/hicolor/scalable/actions/tokodon-post-bookmarked.svg share/icons/hicolor/scalable/actions/tokodon-post-boost.svg share/icons/hicolor/scalable/actions/tokodon-post-boosted.svg share/icons/hicolor/scalable/actions/tokodon-post-favorite.svg share/icons/hicolor/scalable/actions/tokodon-post-favorited.svg share/icons/hicolor/scalable/actions/tokodon-post-reply-filled.svg share/icons/hicolor/scalable/actions/tokodon-post-reply.svg share/icons/hicolor/scalable/apps/org.kde.tokodon.svg share/knotifications6/tokodon.notifyrc share/locale/ar/LC_MESSAGES/tokodon.mo share/locale/ast/LC_MESSAGES/tokodon.mo share/locale/ca/LC_MESSAGES/tokodon.mo share/locale/ca@valencia/LC_MESSAGES/tokodon.mo share/locale/cs/LC_MESSAGES/tokodon.mo share/locale/de/LC_MESSAGES/tokodon.mo share/locale/en_GB/LC_MESSAGES/tokodon.mo share/locale/eo/LC_MESSAGES/tokodon.mo share/locale/es/LC_MESSAGES/tokodon.mo share/locale/eu/LC_MESSAGES/tokodon.mo share/locale/fi/LC_MESSAGES/tokodon.mo share/locale/fr/LC_MESSAGES/tokodon.mo share/locale/gl/LC_MESSAGES/tokodon.mo share/locale/he/LC_MESSAGES/tokodon.mo share/locale/hu/LC_MESSAGES/tokodon.mo share/locale/ia/LC_MESSAGES/tokodon.mo share/locale/id/LC_MESSAGES/tokodon.mo share/locale/is/LC_MESSAGES/tokodon.mo share/locale/it/LC_MESSAGES/tokodon.mo share/locale/ja/LC_MESSAGES/tokodon.mo share/locale/ka/LC_MESSAGES/tokodon.mo share/locale/ko/LC_MESSAGES/tokodon.mo share/locale/lt/LC_MESSAGES/tokodon.mo share/locale/lv/LC_MESSAGES/tokodon.mo share/locale/nl/LC_MESSAGES/tokodon.mo share/locale/nn/LC_MESSAGES/tokodon.mo share/locale/pa/LC_MESSAGES/tokodon.mo share/locale/pl/LC_MESSAGES/tokodon.mo share/locale/pt/LC_MESSAGES/tokodon.mo share/locale/pt_BR/LC_MESSAGES/tokodon.mo share/locale/ru/LC_MESSAGES/tokodon.mo share/locale/sk/LC_MESSAGES/tokodon.mo share/locale/sl/LC_MESSAGES/tokodon.mo +share/locale/sq/LC_MESSAGES/tokodon.mo share/locale/sv/LC_MESSAGES/tokodon.mo share/locale/tr/LC_MESSAGES/tokodon.mo share/locale/uk/LC_MESSAGES/tokodon.mo share/locale/zh_CN/LC_MESSAGES/tokodon.mo share/locale/zh_TW/LC_MESSAGES/tokodon.mo share/metainfo/org.kde.tokodon.appdata.xml share/qlogging-categories6/tokodon.categories diff --git a/net-p2p/ktorrent/distinfo b/net-p2p/ktorrent/distinfo index ff77926e22fb..883bd39f6146 100644 --- a/net-p2p/ktorrent/distinfo +++ b/net-p2p/ktorrent/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1738937250 -SHA256 (KDE/release-service/24.12.2/ktorrent-24.12.2.tar.xz) = dad64b0de4552aa08f138c29f8f83596ca1ac2c768580f18b52581f849d25f09 -SIZE (KDE/release-service/24.12.2/ktorrent-24.12.2.tar.xz) = 2201664 +TIMESTAMP = 1741275998 +SHA256 (KDE/release-service/24.12.3/ktorrent-24.12.3.tar.xz) = a6eb8be915d48aed5dd745d3bec1a0f4462f078448a13242dc94d0cfb94f8f9c +SIZE (KDE/release-service/24.12.3/ktorrent-24.12.3.tar.xz) = 2202892 diff --git a/net-p2p/libktorrent/distinfo b/net-p2p/libktorrent/distinfo index 34f80146a032..409a9e38954f 100644 --- a/net-p2p/libktorrent/distinfo +++ b/net-p2p/libktorrent/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1738937251 -SHA256 (KDE/release-service/24.12.2/libktorrent-24.12.2.tar.xz) = cbf0a356b7a0effa70dfafb73a17b1c3f83297cc96d64ca026be481d6e2fef35 -SIZE (KDE/release-service/24.12.2/libktorrent-24.12.2.tar.xz) = 604516 +TIMESTAMP = 1741276002 +SHA256 (KDE/release-service/24.12.3/libktorrent-24.12.3.tar.xz) = 16cc6949d5b0b4b918f6f353de5c09dd0c4179f4c303fbb07e3f26bc5726ce40 +SIZE (KDE/release-service/24.12.3/libktorrent-24.12.3.tar.xz) = 604656 diff --git a/net/akonadi-calendar/distinfo b/net/akonadi-calendar/distinfo index 6f590ed591f0..92134a4ebd0c 100644 --- a/net/akonadi-calendar/distinfo +++ b/net/akonadi-calendar/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1738937252 -SHA256 (KDE/release-service/24.12.2/akonadi-calendar-24.12.2.tar.xz) = 58f99e27882ba6b05a712c3af9b80359af5232f74588c43a05e40d96dddf40dc -SIZE (KDE/release-service/24.12.2/akonadi-calendar-24.12.2.tar.xz) = 524820 +TIMESTAMP = 1741276003 +SHA256 (KDE/release-service/24.12.3/akonadi-calendar-24.12.3.tar.xz) = 28658f0bf85f96019107c0b4e5e72dff14aeb6b236c436249fabf18b94f49dfe +SIZE (KDE/release-service/24.12.3/akonadi-calendar-24.12.3.tar.xz) = 524664 diff --git a/net/akonadi-contacts/distinfo b/net/akonadi-contacts/distinfo index 1430fd09e253..c9914cd775e7 100644 --- a/net/akonadi-contacts/distinfo +++ b/net/akonadi-contacts/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1738937256 -SHA256 (KDE/release-service/24.12.2/akonadi-contacts-24.12.2.tar.xz) = 4a3d83a7c2fe61394540ebb6891bbf564931e34353c9da30cabd80286188a602 -SIZE (KDE/release-service/24.12.2/akonadi-contacts-24.12.2.tar.xz) = 436124 +TIMESTAMP = 1741276005 +SHA256 (KDE/release-service/24.12.3/akonadi-contacts-24.12.3.tar.xz) = 272eee4f80b18d7d36b1e5d74ad63c9cd3477b41a8abcb4daf312ae9c4f5bdfe +SIZE (KDE/release-service/24.12.3/akonadi-contacts-24.12.3.tar.xz) = 436184 diff --git a/net/akonadi-mime/distinfo b/net/akonadi-mime/distinfo index 4e7d48189f05..57880d6479d6 100644 --- a/net/akonadi-mime/distinfo +++ b/net/akonadi-mime/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1738937257 -SHA256 (KDE/release-service/24.12.2/akonadi-mime-24.12.2.tar.xz) = 3b5de0bd1baef1bec151d8440e0716b4e4017c40b7fcde91997f884d5635b73b -SIZE (KDE/release-service/24.12.2/akonadi-mime-24.12.2.tar.xz) = 175376 +TIMESTAMP = 1741276007 +SHA256 (KDE/release-service/24.12.3/akonadi-mime-24.12.3.tar.xz) = b8de8eaec031b2b9f19d15797f3b106106b16805287fa4ed60ae66d0ceff62a1 +SIZE (KDE/release-service/24.12.3/akonadi-mime-24.12.3.tar.xz) = 175348 diff --git a/net/akonadi-search/distinfo b/net/akonadi-search/distinfo index 51aee9a6fc58..ae2c262c05f8 100644 --- a/net/akonadi-search/distinfo +++ b/net/akonadi-search/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1738937258 -SHA256 (KDE/release-service/24.12.2/akonadi-search-24.12.2.tar.xz) = 4db76af8f3ea51c15c45044ca8a9f56cc35660cd32eb2fbdbed88f4b1c19c038 -SIZE (KDE/release-service/24.12.2/akonadi-search-24.12.2.tar.xz) = 113208 +TIMESTAMP = 1741276009 +SHA256 (KDE/release-service/24.12.3/akonadi-search-24.12.3.tar.xz) = 80ff230ef7dd37c54a0e956ded511b75674fc7ce51d0adf816cae6e3aa84d09a +SIZE (KDE/release-service/24.12.3/akonadi-search-24.12.3.tar.xz) = 113292 diff --git a/net/alligator/distinfo b/net/alligator/distinfo index 47332b0b0046..0d2800b307fa 100644 --- a/net/alligator/distinfo +++ b/net/alligator/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1738937258 -SHA256 (KDE/release-service/24.12.2/alligator-24.12.2.tar.xz) = 5793431dcb275539ae9f6b360afbec4d918e98651cad67c70f9b5c6044aaa8e1 -SIZE (KDE/release-service/24.12.2/alligator-24.12.2.tar.xz) = 196860 +TIMESTAMP = 1741276010 +SHA256 (KDE/release-service/24.12.3/alligator-24.12.3.tar.xz) = 6b368536165274f22dca8d07f298c28736bc46bcf7877ed015d01cfbf7e75585 +SIZE (KDE/release-service/24.12.3/alligator-24.12.3.tar.xz) = 196896 diff --git a/net/calendarsupport/distinfo b/net/calendarsupport/distinfo index 020827f90978..c6494f25af50 100644 --- a/net/calendarsupport/distinfo +++ b/net/calendarsupport/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1738937259 -SHA256 (KDE/release-service/24.12.2/calendarsupport-24.12.2.tar.xz) = 11b9df68749ad88fb2720265c4044c31a0ee224e8bea54ac32a2a9ac434ccb60 -SIZE (KDE/release-service/24.12.2/calendarsupport-24.12.2.tar.xz) = 997752 +TIMESTAMP = 1741276014 +SHA256 (KDE/release-service/24.12.3/calendarsupport-24.12.3.tar.xz) = d16123e94fced97454a94604498b5ede9a14f9214334d316a4ce799b7f66d0ab +SIZE (KDE/release-service/24.12.3/calendarsupport-24.12.3.tar.xz) = 997776 diff --git a/net/eventviews/distinfo b/net/eventviews/distinfo index 7e0d63c311a2..0723f42c422f 100644 --- a/net/eventviews/distinfo +++ b/net/eventviews/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1738937260 -SHA256 (KDE/release-service/24.12.2/eventviews-24.12.2.tar.xz) = 04c5aa625fb45f0115739512e9e95b676678ad8a9457041137ff45bdf74f1a42 -SIZE (KDE/release-service/24.12.2/eventviews-24.12.2.tar.xz) = 501124 +TIMESTAMP = 1741276018 +SHA256 (KDE/release-service/24.12.3/eventviews-24.12.3.tar.xz) = 0c670ea2a669041270c2091afdc2f46dcc99c882fba5a2f037bccda7f141c3e2 +SIZE (KDE/release-service/24.12.3/eventviews-24.12.3.tar.xz) = 501240 diff --git a/net/incidenceeditor/distinfo b/net/incidenceeditor/distinfo index 2899edd54bdc..f575843ef3b2 100644 --- a/net/incidenceeditor/distinfo +++ b/net/incidenceeditor/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1738937261 -SHA256 (KDE/release-service/24.12.2/incidenceeditor-24.12.2.tar.xz) = 81d6271e3d0bae353a8a88a064b4f84cf7a88c5956ecd8f6b1400e32fff6a681 -SIZE (KDE/release-service/24.12.2/incidenceeditor-24.12.2.tar.xz) = 587840 +TIMESTAMP = 1741276022 +SHA256 (KDE/release-service/24.12.3/incidenceeditor-24.12.3.tar.xz) = 90c8732d41bff27029fe6a586d310625db493eca495a973e16619d2a588f107f +SIZE (KDE/release-service/24.12.3/incidenceeditor-24.12.3.tar.xz) = 587848 diff --git a/net/kcalutils/distinfo b/net/kcalutils/distinfo index fbbd63c7a529..a6eb6d55913e 100644 --- a/net/kcalutils/distinfo +++ b/net/kcalutils/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1738937262 -SHA256 (KDE/release-service/24.12.2/kcalutils-24.12.2.tar.xz) = ce2a6856a23b6247304a95146efe2f00a0d04c98a0877e210a18256172388af6 -SIZE (KDE/release-service/24.12.2/kcalutils-24.12.2.tar.xz) = 355424 +TIMESTAMP = 1741276025 +SHA256 (KDE/release-service/24.12.3/kcalutils-24.12.3.tar.xz) = 3890566f3047fe3e411691ade967859578ce4568bfe8ffb1510f04edfc686e32 +SIZE (KDE/release-service/24.12.3/kcalutils-24.12.3.tar.xz) = 355384 diff --git a/net/kdenetwork-filesharing/distinfo b/net/kdenetwork-filesharing/distinfo index 01d9c3c92284..692eb9978012 100644 --- a/net/kdenetwork-filesharing/distinfo +++ b/net/kdenetwork-filesharing/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1738937263 -SHA256 (KDE/release-service/24.12.2/kdenetwork-filesharing-24.12.2.tar.xz) = c7a437597e7c5380fbd7e85c28b2d0be2f00700a606225e5af86229ac99fddc5 -SIZE (KDE/release-service/24.12.2/kdenetwork-filesharing-24.12.2.tar.xz) = 500828 +TIMESTAMP = 1741276029 +SHA256 (KDE/release-service/24.12.3/kdenetwork-filesharing-24.12.3.tar.xz) = 9bc7e5badb97533a8e4da76416318969cf7eda83c08803fe60cc4901fcb602ec +SIZE (KDE/release-service/24.12.3/kdenetwork-filesharing-24.12.3.tar.xz) = 500680 diff --git a/net/kget/distinfo b/net/kget/distinfo index ed0b03eec3d7..aec018404945 100644 --- a/net/kget/distinfo +++ b/net/kget/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1738937264 -SHA256 (KDE/release-service/24.12.2/kget-24.12.2.tar.xz) = ff760a379b65e9fdf8d43be0af5d3b621b0c0444ac80f0c88f575e0e73bd2d43 -SIZE (KDE/release-service/24.12.2/kget-24.12.2.tar.xz) = 4913680 +TIMESTAMP = 1741276035 +SHA256 (KDE/release-service/24.12.3/kget-24.12.3.tar.xz) = 00b74499649b996a683b1b3a434ce9f45704dad3470cf860032617f4a473f9f8 +SIZE (KDE/release-service/24.12.3/kget-24.12.3.tar.xz) = 4913524 diff --git a/net/kidentitymanagement/distinfo b/net/kidentitymanagement/distinfo index 0e0337b8390b..314f54efe435 100644 --- a/net/kidentitymanagement/distinfo +++ b/net/kidentitymanagement/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1738937265 -SHA256 (KDE/release-service/24.12.2/kidentitymanagement-24.12.2.tar.xz) = b6a10f2c650db4ba99c5a2a786fb4213701250126aa853dc909c81cf37c0f21e -SIZE (KDE/release-service/24.12.2/kidentitymanagement-24.12.2.tar.xz) = 196876 +TIMESTAMP = 1741276038 +SHA256 (KDE/release-service/24.12.3/kidentitymanagement-24.12.3.tar.xz) = 501bcb321b1f41bba14d14084c3a2708f4a84666ad62eab299d7730bd181407f +SIZE (KDE/release-service/24.12.3/kidentitymanagement-24.12.3.tar.xz) = 196856 diff --git a/net/kimap/distinfo b/net/kimap/distinfo index a2abe71e874f..dbbe3bcbf2cb 100644 --- a/net/kimap/distinfo +++ b/net/kimap/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1738937266 -SHA256 (KDE/release-service/24.12.2/kimap-24.12.2.tar.xz) = 94dd4072a01a6f804f37482bd1c1f78b2ba2059af9ec4f5b968ffba9f7e871b0 -SIZE (KDE/release-service/24.12.2/kimap-24.12.2.tar.xz) = 132408 +TIMESTAMP = 1741276041 +SHA256 (KDE/release-service/24.12.3/kimap-24.12.3.tar.xz) = 751a0eda85aa7e084d97e7f83eada02c90fcd4c23f3e99523b9fb1a4bade6f3f +SIZE (KDE/release-service/24.12.3/kimap-24.12.3.tar.xz) = 132408 diff --git a/net/kio-gdrive/distinfo b/net/kio-gdrive/distinfo index c7c0cd932b17..17906fe2f48e 100644 --- a/net/kio-gdrive/distinfo +++ b/net/kio-gdrive/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1738937266 -SHA256 (KDE/release-service/24.12.2/kio-gdrive-24.12.2.tar.xz) = 08382064580f3d7890d25f94d2f0171fd2afc5940914c2ab591a0de6d06f3b62 -SIZE (KDE/release-service/24.12.2/kio-gdrive-24.12.2.tar.xz) = 80404 +TIMESTAMP = 1741276043 +SHA256 (KDE/release-service/24.12.3/kio-gdrive-24.12.3.tar.xz) = 748116c746bf4eaa2114ac8fe1dc4c85b285ff0af8e2968206a4d97fbceb5126 +SIZE (KDE/release-service/24.12.3/kio-gdrive-24.12.3.tar.xz) = 80464 diff --git a/net/kio-zeroconf/distinfo b/net/kio-zeroconf/distinfo index 29f0f9580aef..becc06c69967 100644 --- a/net/kio-zeroconf/distinfo +++ b/net/kio-zeroconf/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1738937267 -SHA256 (KDE/release-service/24.12.2/kio-zeroconf-24.12.2.tar.xz) = d0ff7766c5bae08067c92bd3c853e8f37ab049d82d87af433d56efb90542bc0c -SIZE (KDE/release-service/24.12.2/kio-zeroconf-24.12.2.tar.xz) = 44892 +TIMESTAMP = 1741276046 +SHA256 (KDE/release-service/24.12.3/kio-zeroconf-24.12.3.tar.xz) = 8dc68eb349300fbcfb44462401315e7dde7fa098ef88ef1a4fc29d57ee937fe3 +SIZE (KDE/release-service/24.12.3/kio-zeroconf-24.12.3.tar.xz) = 44904 diff --git a/net/kitinerary/distinfo b/net/kitinerary/distinfo index b9a02c1fae56..8c0c71ff2a4a 100644 --- a/net/kitinerary/distinfo +++ b/net/kitinerary/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1738937268 -SHA256 (KDE/release-service/24.12.2/kitinerary-24.12.2.tar.xz) = 1bdc0b18677634ead42e2fb589cd83b3dba0522730d2668b07a3847906cc41bf -SIZE (KDE/release-service/24.12.2/kitinerary-24.12.2.tar.xz) = 2006164 +TIMESTAMP = 1741276051 +SHA256 (KDE/release-service/24.12.3/kitinerary-24.12.3.tar.xz) = da895934f27f99ba7b463a4df8f365fb4b12f15458c266e910c13ebb8ef00784 +SIZE (KDE/release-service/24.12.3/kitinerary-24.12.3.tar.xz) = 2007392 diff --git a/net/kldap/distinfo b/net/kldap/distinfo index 19443a04e9d4..129cbdd6e759 100644 --- a/net/kldap/distinfo +++ b/net/kldap/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1738937269 -SHA256 (KDE/release-service/24.12.2/kldap-24.12.2.tar.xz) = 6d5e43c3755034a8d2e82566078c3de5d04fd3d15bf396909c58fbe1d0bc05da -SIZE (KDE/release-service/24.12.2/kldap-24.12.2.tar.xz) = 190492 +TIMESTAMP = 1741276054 +SHA256 (KDE/release-service/24.12.3/kldap-24.12.3.tar.xz) = 764d4dbc4807dff69c65b11f379115f5c9d4c40cd9c64a0ae7f23ac5eda27828 +SIZE (KDE/release-service/24.12.3/kldap-24.12.3.tar.xz) = 190472 diff --git a/net/kmailtransport/distinfo b/net/kmailtransport/distinfo index 8699dd727d24..20f9448b1825 100644 --- a/net/kmailtransport/distinfo +++ b/net/kmailtransport/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1738937270 -SHA256 (KDE/release-service/24.12.2/kmailtransport-24.12.2.tar.xz) = eabb448f08efca3209c11dabb808fad493ef9283ed179212d0e06fc8b3c0eabc -SIZE (KDE/release-service/24.12.2/kmailtransport-24.12.2.tar.xz) = 189144 +TIMESTAMP = 1741276057 +SHA256 (KDE/release-service/24.12.3/kmailtransport-24.12.3.tar.xz) = d1cc4f83a42cae618c44d216dfd2cb92f8835befbc92b1b41c8a07f15517f04a +SIZE (KDE/release-service/24.12.3/kmailtransport-24.12.3.tar.xz) = 189116 diff --git a/net/kmbox/distinfo b/net/kmbox/distinfo index c502a51c57ee..aac53c215ce0 100644 --- a/net/kmbox/distinfo +++ b/net/kmbox/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1738937271 -SHA256 (KDE/release-service/24.12.2/kmbox-24.12.2.tar.xz) = da33971bf49ffcaecef8a2f57dd6c434301b2d31ed1b761ef5e21258a39214e5 -SIZE (KDE/release-service/24.12.2/kmbox-24.12.2.tar.xz) = 29252 +TIMESTAMP = 1741276059 +SHA256 (KDE/release-service/24.12.3/kmbox-24.12.3.tar.xz) = fe0ca441094a71d9169e4bf69362af1dee9dc2e67e08ada3251c6bd25dcb9720 +SIZE (KDE/release-service/24.12.3/kmbox-24.12.3.tar.xz) = 29248 diff --git a/net/kmime/distinfo b/net/kmime/distinfo index f9288c958ec4..e097fe432c1c 100644 --- a/net/kmime/distinfo +++ b/net/kmime/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1738937273 -SHA256 (KDE/release-service/24.12.2/kmime-24.12.2.tar.xz) = 1b584682bcee9fa4e2c6b404babd9ef3d9116467ed0cc005f15d9e965f303ee3 -SIZE (KDE/release-service/24.12.2/kmime-24.12.2.tar.xz) = 164928 +TIMESTAMP = 1741276062 +SHA256 (KDE/release-service/24.12.3/kmime-24.12.3.tar.xz) = f7cb36c40d94fd4a7f996223c323ef81c43ab9e5573d8b1af5acd0f997e121cc +SIZE (KDE/release-service/24.12.3/kmime-24.12.3.tar.xz) = 164992 diff --git a/net/kontactinterface/distinfo b/net/kontactinterface/distinfo index ae66e597a061..8c98439ef079 100644 --- a/net/kontactinterface/distinfo +++ b/net/kontactinterface/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1738937274 -SHA256 (KDE/release-service/24.12.2/kontactinterface-24.12.2.tar.xz) = 43e247341fdb2ee0b52a51edaafb5ad3147d523245a1a9d7b085da2830d63d4a -SIZE (KDE/release-service/24.12.2/kontactinterface-24.12.2.tar.xz) = 40732 +TIMESTAMP = 1741276065 +SHA256 (KDE/release-service/24.12.3/kontactinterface-24.12.3.tar.xz) = 2499fd0e2180779323bb0fa8a078eb4303a250daab67828b41c3761bdacb45b5 +SIZE (KDE/release-service/24.12.3/kontactinterface-24.12.3.tar.xz) = 40736 diff --git a/net/kpimtextedit/distinfo b/net/kpimtextedit/distinfo index e8b4f478fc30..f315dc34ffa8 100644 --- a/net/kpimtextedit/distinfo +++ b/net/kpimtextedit/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1738937275 -SHA256 (KDE/release-service/24.12.2/kpimtextedit-24.12.2.tar.xz) = 9d5c5c6e5405581f6bb0932566fedf3b999ed24aa4ce7046d5d74273bf34cef8 -SIZE (KDE/release-service/24.12.2/kpimtextedit-24.12.2.tar.xz) = 176660 +TIMESTAMP = 1741276068 +SHA256 (KDE/release-service/24.12.3/kpimtextedit-24.12.3.tar.xz) = 2f3239d612b7617815fa1748fadce28110814047db2bab7c6ec2b760b1eebc2e +SIZE (KDE/release-service/24.12.3/kpimtextedit-24.12.3.tar.xz) = 176708 diff --git a/net/krdc/distinfo b/net/krdc/distinfo index 3064f3fc3bcf..dd385df4ab44 100644 --- a/net/krdc/distinfo +++ b/net/krdc/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1738937276 -SHA256 (KDE/release-service/24.12.2/krdc-24.12.2.tar.xz) = ebb29028cd9450ab2e18246ea5b6f6c210c5db75095c4cc8d470c156cea401ee -SIZE (KDE/release-service/24.12.2/krdc-24.12.2.tar.xz) = 1558620 +TIMESTAMP = 1741276073 +SHA256 (KDE/release-service/24.12.3/krdc-24.12.3.tar.xz) = 4bfe9e01fb16d97851cbf22563d5fb109976e3c561e8b079c493201613953764 +SIZE (KDE/release-service/24.12.3/krdc-24.12.3.tar.xz) = 1558624 diff --git a/net/krfb/distinfo b/net/krfb/distinfo index 8c4b407b5b1b..a634dd109a7c 100644 --- a/net/krfb/distinfo +++ b/net/krfb/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1738937277 -SHA256 (KDE/release-service/24.12.2/krfb-24.12.2.tar.xz) = f729047b853c43f8d95790e672534cc6a7aa9fb624bd43cb123bfb4ea1ab51ba -SIZE (KDE/release-service/24.12.2/krfb-24.12.2.tar.xz) = 1218136 +TIMESTAMP = 1741276077 +SHA256 (KDE/release-service/24.12.3/krfb-24.12.3.tar.xz) = f16abf700350dbfbe251d32104a7ed73f8faa2a4399e9ea754317df0e197cfc1 +SIZE (KDE/release-service/24.12.3/krfb-24.12.3.tar.xz) = 1218064 diff --git a/net/ksmtp/distinfo b/net/ksmtp/distinfo index 90ed09f8d618..e699fe33e54a 100644 --- a/net/ksmtp/distinfo +++ b/net/ksmtp/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1738937277 -SHA256 (KDE/release-service/24.12.2/ksmtp-24.12.2.tar.xz) = f64c3b8fb72d416a0b23ec021c0489480381b55f74032fda314120b52c204cd3 -SIZE (KDE/release-service/24.12.2/ksmtp-24.12.2.tar.xz) = 53216 +TIMESTAMP = 1741276080 +SHA256 (KDE/release-service/24.12.3/ksmtp-24.12.3.tar.xz) = 600012d231a8bdc44aceb0fcee46eb49d281a5fa6775a6ed24d9ca85790fd93b +SIZE (KDE/release-service/24.12.3/ksmtp-24.12.3.tar.xz) = 53236 diff --git a/net/ktnef/distinfo b/net/ktnef/distinfo index 383ffbc12fb2..1aeafa29be81 100644 --- a/net/ktnef/distinfo +++ b/net/ktnef/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1738937278 -SHA256 (KDE/release-service/24.12.2/ktnef-24.12.2.tar.xz) = 8b8099039f0dc020651e0804ea486b11eef3c02f88496e097b649705cdc2e439 -SIZE (KDE/release-service/24.12.2/ktnef-24.12.2.tar.xz) = 313456 +TIMESTAMP = 1741276083 +SHA256 (KDE/release-service/24.12.3/ktnef-24.12.3.tar.xz) = c2d2f1b64e1667be32e7e5d051d98f4f41ef67c10777782bf9e4a41b5745702d +SIZE (KDE/release-service/24.12.3/ktnef-24.12.3.tar.xz) = 313420 diff --git a/net/libgravatar/distinfo b/net/libgravatar/distinfo index 8f09ab449b7f..2ff3c1da95fb 100644 --- a/net/libgravatar/distinfo +++ b/net/libgravatar/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1738937279 -SHA256 (KDE/release-service/24.12.2/libgravatar-24.12.2.tar.xz) = dc05e735ac3c341223eb20d5ca00d3056c9460ed63603cdaf0f003517e585831 -SIZE (KDE/release-service/24.12.2/libgravatar-24.12.2.tar.xz) = 38636 +TIMESTAMP = 1741276086 +SHA256 (KDE/release-service/24.12.3/libgravatar-24.12.3.tar.xz) = 44d9f1bd60ea4fc70956882d667c32b4df001b5cdee4a083e85eacf6a8467c0d +SIZE (KDE/release-service/24.12.3/libgravatar-24.12.3.tar.xz) = 38688 diff --git a/net/libkgapi/distinfo b/net/libkgapi/distinfo index fbfbb9a192f9..4d3c3a22c83d 100644 --- a/net/libkgapi/distinfo +++ b/net/libkgapi/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1738937280 -SHA256 (KDE/release-service/24.12.2/libkgapi-24.12.2.tar.xz) = 8244eb43498d06343ca00d0eace138fdd5c7cc67320ce705f7bbef125f1d188c -SIZE (KDE/release-service/24.12.2/libkgapi-24.12.2.tar.xz) = 339444 +TIMESTAMP = 1741276090 +SHA256 (KDE/release-service/24.12.3/libkgapi-24.12.3.tar.xz) = 71f2c0ed7131c4c74d988285b89591e138881448d3b867466680f4b4b742e177 +SIZE (KDE/release-service/24.12.3/libkgapi-24.12.3.tar.xz) = 339480 diff --git a/net/libksieve/distinfo b/net/libksieve/distinfo index 7c3f035fda7a..ec91821badc6 100644 --- a/net/libksieve/distinfo +++ b/net/libksieve/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1738937281 -SHA256 (KDE/release-service/24.12.2/libksieve-24.12.2.tar.xz) = f6238d4a2b0ae3bcb923fea4c502e5a6d7630658c5c5c8bcb0ad8244342da98b -SIZE (KDE/release-service/24.12.2/libksieve-24.12.2.tar.xz) = 604076 +TIMESTAMP = 1741276093 +SHA256 (KDE/release-service/24.12.3/libksieve-24.12.3.tar.xz) = 22273597d3a5879cf67f747c22c0d68da49b192039ca48203b3de8b170d1ce47 +SIZE (KDE/release-service/24.12.3/libksieve-24.12.3.tar.xz) = 603936 diff --git a/net/mailcommon/distinfo b/net/mailcommon/distinfo index 4c189d5cc2dd..9d14760ed16c 100644 --- a/net/mailcommon/distinfo +++ b/net/mailcommon/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1738937282 -SHA256 (KDE/release-service/24.12.2/mailcommon-24.12.2.tar.xz) = c58a84b24204f2f768fc72e3cac3159de6be25b346a62cb58db0c1a26d2b4fbd -SIZE (KDE/release-service/24.12.2/mailcommon-24.12.2.tar.xz) = 792796 +TIMESTAMP = 1741276098 +SHA256 (KDE/release-service/24.12.3/mailcommon-24.12.3.tar.xz) = e603486bd76db5486c8af98053d2792a1b47d09fbd02e2db807d3c04aad2a8ef +SIZE (KDE/release-service/24.12.3/mailcommon-24.12.3.tar.xz) = 792732 diff --git a/net/mailimporter/distinfo b/net/mailimporter/distinfo index 9cd8f724dd8f..d562a3077b81 100644 --- a/net/mailimporter/distinfo +++ b/net/mailimporter/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1738937283 -SHA256 (KDE/release-service/24.12.2/mailimporter-24.12.2.tar.xz) = f76c400faeb8983f5c252ba1a4e0feb104a0d871fbf8b6d75a2620a2dcf4d241 -SIZE (KDE/release-service/24.12.2/mailimporter-24.12.2.tar.xz) = 597516 +TIMESTAMP = 1741276102 +SHA256 (KDE/release-service/24.12.3/mailimporter-24.12.3.tar.xz) = 88dfe0f31790701d03ce5902abe93410413bd4477baf3da74967c5f0fa3d65ae +SIZE (KDE/release-service/24.12.3/mailimporter-24.12.3.tar.xz) = 597552 diff --git a/net/messagelib/distinfo b/net/messagelib/distinfo index fdeac2997291..28cb446c78c0 100644 --- a/net/messagelib/distinfo +++ b/net/messagelib/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1738937284 -SHA256 (KDE/release-service/24.12.2/messagelib-24.12.2.tar.xz) = f41112745fee178a476b6bfbf6e027db027f5701b474a7a6b8ea61d4983495f5 -SIZE (KDE/release-service/24.12.2/messagelib-24.12.2.tar.xz) = 7416388 +TIMESTAMP = 1741276108 +SHA256 (KDE/release-service/24.12.3/messagelib-24.12.3.tar.xz) = 1f8ef167de26fe1c31afdd48bf359fc511e5691ef8dbaded3390f5037755ef8c +SIZE (KDE/release-service/24.12.3/messagelib-24.12.3.tar.xz) = 7423644 diff --git a/net/mimetreeparser/distinfo b/net/mimetreeparser/distinfo index e0214080603b..33d96eea8098 100644 --- a/net/mimetreeparser/distinfo +++ b/net/mimetreeparser/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1738937285 -SHA256 (KDE/release-service/24.12.2/mimetreeparser-24.12.2.tar.xz) = edb23e2a4c39052a5ad40bb2e0759c45c41fe3644d8f3739dd06a42af20b0a4a -SIZE (KDE/release-service/24.12.2/mimetreeparser-24.12.2.tar.xz) = 646888 +TIMESTAMP = 1741276112 +SHA256 (KDE/release-service/24.12.3/mimetreeparser-24.12.3.tar.xz) = 116a70ed271be58628343f9cacab76bff56f3c0248cf236f9717c6e0640591f0 +SIZE (KDE/release-service/24.12.3/mimetreeparser-24.12.3.tar.xz) = 646768 diff --git a/net/pimcommon/distinfo b/net/pimcommon/distinfo index e0a900eb309c..7d030066b97a 100644 --- a/net/pimcommon/distinfo +++ b/net/pimcommon/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1738937286 -SHA256 (KDE/release-service/24.12.2/pimcommon-24.12.2.tar.xz) = 6948e9930b5706944347fdeec69cd2bfd53331312919782aec111fea57d9650c -SIZE (KDE/release-service/24.12.2/pimcommon-24.12.2.tar.xz) = 365652 +TIMESTAMP = 1741276115 +SHA256 (KDE/release-service/24.12.3/pimcommon-24.12.3.tar.xz) = b50eca817359359fcbe8c067813c764bc8e419b59d608ff69de10b4f7ff95b2f +SIZE (KDE/release-service/24.12.3/pimcommon-24.12.3.tar.xz) = 365688 diff --git a/science/kalzium/distinfo b/science/kalzium/distinfo index 5b43a74122bc..0f8447837790 100644 --- a/science/kalzium/distinfo +++ b/science/kalzium/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1738937313 -SHA256 (KDE/release-service/24.12.2/kalzium-24.12.2.tar.xz) = b1ea17c88fc7e3a4e3b03255b14e1f51c72f11d23950a6239a842805a7ead888 -SIZE (KDE/release-service/24.12.2/kalzium-24.12.2.tar.xz) = 22682444 +TIMESTAMP = 1741276125 +SHA256 (KDE/release-service/24.12.3/kalzium-24.12.3.tar.xz) = caba9b4db5a4bb7fbe0a9a9677d3fa5edf0feb150fffc7b5f08a6f8b81b0abbd +SIZE (KDE/release-service/24.12.3/kalzium-24.12.3.tar.xz) = 22679464 diff --git a/science/step/distinfo b/science/step/distinfo index e4a133e532fe..2a0918cfd958 100644 --- a/science/step/distinfo +++ b/science/step/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1738937314 -SHA256 (KDE/release-service/24.12.2/step-24.12.2.tar.xz) = 5ae297ca767379cc4d6ba61051189db4e3a7c0db8279f1180e728b668eaeea32 -SIZE (KDE/release-service/24.12.2/step-24.12.2.tar.xz) = 987440 +TIMESTAMP = 1741276130 +SHA256 (KDE/release-service/24.12.3/step-24.12.3.tar.xz) = a5a1d9ba40fef491e6ef9e639efa6acea1a2bf8ea4fee6a0235bcb1f45742a40 +SIZE (KDE/release-service/24.12.3/step-24.12.3.tar.xz) = 987744 diff --git a/security/keysmith/distinfo b/security/keysmith/distinfo index ed48b11056a8..f1a617813351 100644 --- a/security/keysmith/distinfo +++ b/security/keysmith/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1738937318 -SHA256 (KDE/release-service/24.12.2/keysmith-24.12.2.tar.xz) = 96f59a7e530fa23f204df3bfb716d18cef838efa14c9ed57e5a5ec6af77a0662 -SIZE (KDE/release-service/24.12.2/keysmith-24.12.2.tar.xz) = 174036 +TIMESTAMP = 1741276132 +SHA256 (KDE/release-service/24.12.3/keysmith-24.12.3.tar.xz) = 2516e59611e6f2209ff8cae34edacbeb9e1dccb16c3b5afea69c9264c09613c5 +SIZE (KDE/release-service/24.12.3/keysmith-24.12.3.tar.xz) = 174084 diff --git a/security/kgpg/distinfo b/security/kgpg/distinfo index a3330f84de61..3812c534b2cb 100644 --- a/security/kgpg/distinfo +++ b/security/kgpg/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1738937319 -SHA256 (KDE/release-service/24.12.2/kgpg-24.12.2.tar.xz) = 48d48f19c16c9587b9b90df2e801d07a5847b2b93c9e6395adece25acc2c61c1 -SIZE (KDE/release-service/24.12.2/kgpg-24.12.2.tar.xz) = 3031856 +TIMESTAMP = 1741276138 +SHA256 (KDE/release-service/24.12.3/kgpg-24.12.3.tar.xz) = 6bc02dfd2be442d49aff0f81703fc7add5122d05680a850b80e6317bbe404781 +SIZE (KDE/release-service/24.12.3/kgpg-24.12.3.tar.xz) = 3031792 diff --git a/security/kleopatra/Makefile b/security/kleopatra/Makefile index 3e993da5e73d..a5e8b5cdba50 100644 --- a/security/kleopatra/Makefile +++ b/security/kleopatra/Makefile @@ -1,37 +1,36 @@ PORTNAME= kleopatra DISTVERSION= ${KDE_APPLICATIONS_VERSION} -PORTREVISION= 1 CATEGORIES= security kde kde-applications MAINTAINER= kde@FreeBSD.org COMMENT= Certificate manager for KDE WWW= https://www.kde.org/applications/utilities/kleopatra/ LIB_DEPENDS= libassuan.so:security/libassuan \ libboost_thread.so:devel/boost-libs \ libgpgme.so:security/gpgme \ libgpg-error.so:security/libgpg-error \ libgpgmepp.so:security/gpgme-cpp \ libqgpgmeqt6.so:security/gpgme-qt@qt6 USES= cmake compiler:c++11-lang desktop-file-utils gettext kde:6 \ qt:6 shared-mime-info tar:xz xorg USE_KDE= auth codecs config configwidgets coreaddons crash dbusaddons \ doctools i18n iconthemes itemmodels kcmutils libkleo mime \ mimetreeparser notifications service sonnet statusnotifieritem \ textwidgets widgetsaddons windowsystem xmlgui \ ecm:build # KDE Pim USE_KDE+= akonadimime identitymanagement mailtransport USE_QT= base USE_XORG= x11 OPTIONS_DEFINE= DOCS .include .if ${COMPILER_TYPE} == clang CXXFLAGS+= -Wno-error=enum-constexpr-conversion .endif .include diff --git a/security/kleopatra/distinfo b/security/kleopatra/distinfo index 70be63983b15..528ae2f2eb8e 100644 --- a/security/kleopatra/distinfo +++ b/security/kleopatra/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1738937320 -SHA256 (KDE/release-service/24.12.2/kleopatra-24.12.2.tar.xz) = b349ac7de343767917e9cedcc2a6cc323b787154420d8ab7b95eee450b212251 -SIZE (KDE/release-service/24.12.2/kleopatra-24.12.2.tar.xz) = 2797576 +TIMESTAMP = 1741276143 +SHA256 (KDE/release-service/24.12.3/kleopatra-24.12.3.tar.xz) = 366fcc7ee45afa96ecab5647669db0a5008e609cf7c17f664146ad3aa847d845 +SIZE (KDE/release-service/24.12.3/kleopatra-24.12.3.tar.xz) = 2797796 diff --git a/security/kpkpass/distinfo b/security/kpkpass/distinfo index ccdaebea4ce8..98fe3ce12d2a 100644 --- a/security/kpkpass/distinfo +++ b/security/kpkpass/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1738937320 -SHA256 (KDE/release-service/24.12.2/kpkpass-24.12.2.tar.xz) = 56043984d03d14b7949afa4073cddd33c521136603a6a36a252c64ce87f4c7b4 -SIZE (KDE/release-service/24.12.2/kpkpass-24.12.2.tar.xz) = 29480 +TIMESTAMP = 1741276146 +SHA256 (KDE/release-service/24.12.3/kpkpass-24.12.3.tar.xz) = cf22c45a942f2723f309542bf0499896c27d381521caf0b2cc9465246a7d74a9 +SIZE (KDE/release-service/24.12.3/kpkpass-24.12.3.tar.xz) = 29492 diff --git a/security/kwalletmanager/distinfo b/security/kwalletmanager/distinfo index db4b112ccd2a..8aea3b343b68 100644 --- a/security/kwalletmanager/distinfo +++ b/security/kwalletmanager/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1738937321 -SHA256 (KDE/release-service/24.12.2/kwalletmanager-24.12.2.tar.xz) = 68fc74803068cfbb84ce98a5a25fe4989eef96b42418803ad2245bc51f060627 -SIZE (KDE/release-service/24.12.2/kwalletmanager-24.12.2.tar.xz) = 1049112 +TIMESTAMP = 1741276150 +SHA256 (KDE/release-service/24.12.3/kwalletmanager-24.12.3.tar.xz) = 9f9753b62f7886f9ad86a38e318f76d3b5677e929cf552512ebb3d95b6dd2a50 +SIZE (KDE/release-service/24.12.3/kwalletmanager-24.12.3.tar.xz) = 1049144 diff --git a/security/libkleo/distinfo b/security/libkleo/distinfo index 47e62e5bf2fd..a0f639c94d2d 100644 --- a/security/libkleo/distinfo +++ b/security/libkleo/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1738937322 -SHA256 (KDE/release-service/24.12.2/libkleo-24.12.2.tar.xz) = d5a465dfe74a41d06daf40cec492605a7bd59efb5aaf87235053332783195192 -SIZE (KDE/release-service/24.12.2/libkleo-24.12.2.tar.xz) = 643080 +TIMESTAMP = 1741276154 +SHA256 (KDE/release-service/24.12.3/libkleo-24.12.3.tar.xz) = f61b777c672e21aacade1e1256db7de58e3a2e2e4084c6ff7a7932dcc7316024 +SIZE (KDE/release-service/24.12.3/libkleo-24.12.3.tar.xz) = 643152 diff --git a/sysutils/baloo-widgets/distinfo b/sysutils/baloo-widgets/distinfo index 453f266af20a..46fec720dcc5 100644 --- a/sysutils/baloo-widgets/distinfo +++ b/sysutils/baloo-widgets/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1738937323 -SHA256 (KDE/release-service/24.12.2/baloo-widgets-24.12.2.tar.xz) = f688e4669ab30981236a2383db5787a9887f72c87536afb3105e37f588c6b5b1 -SIZE (KDE/release-service/24.12.2/baloo-widgets-24.12.2.tar.xz) = 278000 +TIMESTAMP = 1741276157 +SHA256 (KDE/release-service/24.12.3/baloo-widgets-24.12.3.tar.xz) = 9d63753490795c71512e2b6621b487b4726c1cfb3952eee9f73e75a930e4cf87 +SIZE (KDE/release-service/24.12.3/baloo-widgets-24.12.3.tar.xz) = 277980 diff --git a/sysutils/filelight/distinfo b/sysutils/filelight/distinfo index 816d9a7b8179..0b7cc69843c0 100644 --- a/sysutils/filelight/distinfo +++ b/sysutils/filelight/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1738937324 -SHA256 (KDE/release-service/24.12.2/filelight-24.12.2.tar.xz) = 8a20a83e4a61b71c4858547208d216872c71140d807028c5b0eebf23a4a12080 -SIZE (KDE/release-service/24.12.2/filelight-24.12.2.tar.xz) = 686648 +TIMESTAMP = 1741276161 +SHA256 (KDE/release-service/24.12.3/filelight-24.12.3.tar.xz) = ec3a4345bb98cfc0bbe5f1faf9c021f3552155ee33f2e82623ae623746b187e9 +SIZE (KDE/release-service/24.12.3/filelight-24.12.3.tar.xz) = 686712 diff --git a/sysutils/k3b/Makefile b/sysutils/k3b/Makefile index 04607f46aaf8..02dce5add218 100644 --- a/sysutils/k3b/Makefile +++ b/sysutils/k3b/Makefile @@ -1,56 +1,55 @@ PORTNAME= k3b DISTVERSION= ${KDE_APPLICATIONS_VERSION} -PORTREVISION= 1 CATEGORIES= sysutils multimedia kde-applications MAINTAINER= kde@FreeBSD.org COMMENT= KDE CD/DVD writing suite WWW= https://www.k3b.org/ LIB_DEPENDS= libFLAC.so:audio/flac \ libKCddb6.so:audio/libkcddb \ libcdda_paranoia.so:audio/cdparanoia \ libdvdread.so:multimedia/libdvdread \ libmad.so:audio/libmad \ libmp3lame.so:audio/lame \ libogg.so:audio/libogg \ libsamplerate.so:audio/libsamplerate \ libsndfile.so:audio/libsndfile \ libtag.so:audio/taglib \ libvorbis.so:audio/libvorbis RUN_DEPENDS= cdrecord:sysutils/cdrtools BUILD_DEPENDS= cdrecord:sysutils/cdrtools USES= cmake compiler:c++11-lang desktop-file-utils gettext iconv \ kde:6 pkgconfig qt:6 shared-mime-info tar:xz xorg USE_KDE= archive attica auth bookmarks codecs colorscheme completion config \ configwidgets coreaddons filemetadata i18n iconthemes \ itemviews jobwidgets kcmutils kio newstuff notifications \ notifyconfig service solid widgetsaddons windowsystem xmlgui \ ecm:build USE_QT= base webengine USE_XORG= x11 # The ffmpeg-plugin needs patching CMAKE_ARGS= -DK3B_BUILD_FFMPEG_DECODER_PLUGIN:BOOL=FALSE OPTIONS_DEFINE= CDRDAO CDRSKIN DVDPLUSRW EMOVIX VCDIMAGER DOCS OPTIONS_DEFAULT= ${OPTIONS_DEFINE} CDRDAO_DESC= Burning: cdrdao CDRDAO_RUN_DEPENDS= cdrdao:sysutils/cdrdao DVDPLUSRW_DESC= Burning: DVD+RW tools (DVD+/-R(W)) DVDPLUSRW_RUN_DEPENDS= dvd+rw-format:sysutils/dvd+rw-tools EMOVIX_DESC= Burning: eMovix (bootable video CDs) EMOVIX_RUN_DEPENDS= mkmovixiso:multimedia/emovix VCDIMAGER_DESC= Burning: VCDImager (video CDs) VCDIMAGER_RUN_DEPENDS= vcdxrip:multimedia/vcdimager CDRSKIN_DESC= Burning: cdrskin (improved performance) CDRSKIN_RUN_DEPENDS= cdrskin:devel/libburn .include diff --git a/sysutils/k3b/distinfo b/sysutils/k3b/distinfo index 398eea27f2e4..85f5f40892be 100644 --- a/sysutils/k3b/distinfo +++ b/sysutils/k3b/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1738937326 -SHA256 (KDE/release-service/24.12.2/k3b-24.12.2.tar.xz) = 2db44e1fba22697ba25b832c05745e649ff6f5711e3999efc75e42f06c62157f -SIZE (KDE/release-service/24.12.2/k3b-24.12.2.tar.xz) = 10696928 +TIMESTAMP = 1741276168 +SHA256 (KDE/release-service/24.12.3/k3b-24.12.3.tar.xz) = 3439ff546426a42fcb1900e48d0bde56e0b03d8539060d582bb72c035955a87e +SIZE (KDE/release-service/24.12.3/k3b-24.12.3.tar.xz) = 10697108 diff --git a/sysutils/kbackup/distinfo b/sysutils/kbackup/distinfo index c0b2a2641e14..bd2eef9acbf9 100644 --- a/sysutils/kbackup/distinfo +++ b/sysutils/kbackup/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1738937327 -SHA256 (KDE/release-service/24.12.2/kbackup-24.12.2.tar.xz) = c5fd669a61fd0627e0ca69a1163fd2229f1d174a6f89f39295389746e95d1ab0 -SIZE (KDE/release-service/24.12.2/kbackup-24.12.2.tar.xz) = 388544 +TIMESTAMP = 1741276171 +SHA256 (KDE/release-service/24.12.3/kbackup-24.12.3.tar.xz) = d0969aed6c805497df7072754779f8ed11da5d0f972fc0ac1d80ba187548836d +SIZE (KDE/release-service/24.12.3/kbackup-24.12.3.tar.xz) = 388596 diff --git a/sysutils/kcron/distinfo b/sysutils/kcron/distinfo index a202c7233d21..8f479518569b 100644 --- a/sysutils/kcron/distinfo +++ b/sysutils/kcron/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1738937328 -SHA256 (KDE/release-service/24.12.2/kcron-24.12.2.tar.xz) = 04c9491111695f081cc1524017d510a52f52280e1fed17127474fca74dcd4492 -SIZE (KDE/release-service/24.12.2/kcron-24.12.2.tar.xz) = 896708 +TIMESTAMP = 1741276176 +SHA256 (KDE/release-service/24.12.3/kcron-24.12.3.tar.xz) = 9aadd117cf66e6a90c41efcce12e8a93c5137d361c55159ef5999c88ffa7decc +SIZE (KDE/release-service/24.12.3/kcron-24.12.3.tar.xz) = 896748 diff --git a/sysutils/kdebugsettings/distinfo b/sysutils/kdebugsettings/distinfo index af140048a259..f277e29868f3 100644 --- a/sysutils/kdebugsettings/distinfo +++ b/sysutils/kdebugsettings/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1738937330 -SHA256 (KDE/release-service/24.12.2/kdebugsettings-24.12.2.tar.xz) = 1f7d13d761ccda8e60177eef3f8f14e2a1742e84c280b2a40db00f285a6c199a -SIZE (KDE/release-service/24.12.2/kdebugsettings-24.12.2.tar.xz) = 116748 +TIMESTAMP = 1741276178 +SHA256 (KDE/release-service/24.12.3/kdebugsettings-24.12.3.tar.xz) = 3c5642b2c9b6d95334ef4d462b4b821dd0dbd0f5b649bbd751bbc0e5ce1778d1 +SIZE (KDE/release-service/24.12.3/kdebugsettings-24.12.3.tar.xz) = 117588 diff --git a/sysutils/kdf/distinfo b/sysutils/kdf/distinfo index 119dcff7c7e7..f8caa4246323 100644 --- a/sysutils/kdf/distinfo +++ b/sysutils/kdf/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1738937332 -SHA256 (KDE/release-service/24.12.2/kdf-24.12.2.tar.xz) = 215c46dfa9425e4aaeff883d20c5d16e9dbae95a059fa7de7a032214b95a240d -SIZE (KDE/release-service/24.12.2/kdf-24.12.2.tar.xz) = 479568 +TIMESTAMP = 1741276182 +SHA256 (KDE/release-service/24.12.3/kdf-24.12.3.tar.xz) = db4f4d7e2a0765ba6fbdddc176ea801ebb1b9653f3129ecaa1223ef0ef12fba9 +SIZE (KDE/release-service/24.12.3/kdf-24.12.3.tar.xz) = 479720 diff --git a/sysutils/kdialog/distinfo b/sysutils/kdialog/distinfo index 225f17f705fb..26b0bed2883a 100644 --- a/sysutils/kdialog/distinfo +++ b/sysutils/kdialog/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1738937337 -SHA256 (KDE/release-service/24.12.2/kdialog-24.12.2.tar.xz) = 17c0f872e7160ba71281535276b0dd4e19880897be70f56a45cf377c3fa2997a -SIZE (KDE/release-service/24.12.2/kdialog-24.12.2.tar.xz) = 146936 +TIMESTAMP = 1741276185 +SHA256 (KDE/release-service/24.12.3/kdialog-24.12.3.tar.xz) = 40de491a683fbb596b8f2f8924dbcbeae9a7a132deaa9d0c30217fd142110445 +SIZE (KDE/release-service/24.12.3/kdialog-24.12.3.tar.xz) = 146992 diff --git a/sysutils/khelpcenter/distinfo b/sysutils/khelpcenter/distinfo index 6f15e47b9791..5a00390d539b 100644 --- a/sysutils/khelpcenter/distinfo +++ b/sysutils/khelpcenter/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1738937338 -SHA256 (KDE/release-service/24.12.2/khelpcenter-24.12.2.tar.xz) = f2ddd7c99e7e384f3f846277cc9f196a6882b87c0e3d0c080eed3262d4fc59e7 -SIZE (KDE/release-service/24.12.2/khelpcenter-24.12.2.tar.xz) = 4239224 +TIMESTAMP = 1741276191 +SHA256 (KDE/release-service/24.12.3/khelpcenter-24.12.3.tar.xz) = fdce1f54776421c9de4916d910d1bd7822fe9bef2727fdebab6ed0a57e1fb86d +SIZE (KDE/release-service/24.12.3/khelpcenter-24.12.3.tar.xz) = 4239288 diff --git a/sysutils/kpmcore/distinfo b/sysutils/kpmcore/distinfo index 53b4d1858973..9ca6f61b9776 100644 --- a/sysutils/kpmcore/distinfo +++ b/sysutils/kpmcore/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1738937339 -SHA256 (KDE/release-service/24.12.2/kpmcore-24.12.2.tar.xz) = c79ab0d8e4bdba6894fb349e190b72aff0bd1e965e78b815f7b2dbd332eabc5d -SIZE (KDE/release-service/24.12.2/kpmcore-24.12.2.tar.xz) = 649684 +TIMESTAMP = 1741276192 +SHA256 (KDE/release-service/24.12.3/kpmcore-24.12.3.tar.xz) = eac5710efb9536b9de9d5abc5f81b7ab843a6069c52238792cb1a2782456aea7 +SIZE (KDE/release-service/24.12.3/kpmcore-24.12.3.tar.xz) = 649640 diff --git a/sysutils/ksystemlog/distinfo b/sysutils/ksystemlog/distinfo index 5e98b882de6a..70693ff4271e 100644 --- a/sysutils/ksystemlog/distinfo +++ b/sysutils/ksystemlog/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1738937340 -SHA256 (KDE/release-service/24.12.2/ksystemlog-24.12.2.tar.xz) = 8a140c94545bda07eca9d83199b79958ba1c5dee240c1bd3902480c6bfd22d9b -SIZE (KDE/release-service/24.12.2/ksystemlog-24.12.2.tar.xz) = 1858436 +TIMESTAMP = 1741276197 +SHA256 (KDE/release-service/24.12.3/ksystemlog-24.12.3.tar.xz) = 95bb7a6f20b81039d2189f72e623c20ed6f3915b964130a4dbcc9c5ac32eaeff +SIZE (KDE/release-service/24.12.3/ksystemlog-24.12.3.tar.xz) = 1858552 diff --git a/sysutils/signon-kwallet-extension/distinfo b/sysutils/signon-kwallet-extension/distinfo index 5961c37e9623..1aebc862c900 100644 --- a/sysutils/signon-kwallet-extension/distinfo +++ b/sysutils/signon-kwallet-extension/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1738937341 -SHA256 (KDE/release-service/24.12.2/signon-kwallet-extension-24.12.2.tar.xz) = 6d5e02c43a19989bb13a9a45e0416a90d1fabdb457a03576ecf9192d25e0b1e0 -SIZE (KDE/release-service/24.12.2/signon-kwallet-extension-24.12.2.tar.xz) = 11292 +TIMESTAMP = 1741276199 +SHA256 (KDE/release-service/24.12.3/signon-kwallet-extension-24.12.3.tar.xz) = b7c721ef0ce7724acb67c330df7fa14b5066676e0f723b9d57163b7f31beaac9 +SIZE (KDE/release-service/24.12.3/signon-kwallet-extension-24.12.3.tar.xz) = 11292 diff --git a/sysutils/sweeper/distinfo b/sysutils/sweeper/distinfo index c7e6c5786ed7..951c5d264b86 100644 --- a/sysutils/sweeper/distinfo +++ b/sysutils/sweeper/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1738937342 -SHA256 (KDE/release-service/24.12.2/sweeper-24.12.2.tar.xz) = fbcbaaace8889857e9d76c01ad26dcbd649b6884ec26dbaedcd723775eff37e9 -SIZE (KDE/release-service/24.12.2/sweeper-24.12.2.tar.xz) = 384492 +TIMESTAMP = 1741276203 +SHA256 (KDE/release-service/24.12.3/sweeper-24.12.3.tar.xz) = 08df87d1d8246dc15686a9aa6754d80cddd70696842c3a342ac1bdaeb8c0bd6b +SIZE (KDE/release-service/24.12.3/sweeper-24.12.3.tar.xz) = 384500 diff --git a/textproc/arianna/distinfo b/textproc/arianna/distinfo index bbf6c7682f70..f2ea164069d9 100644 --- a/textproc/arianna/distinfo +++ b/textproc/arianna/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1738937343 -SHA256 (KDE/release-service/24.12.2/arianna-24.12.2.tar.xz) = b4ac51b7a30deb8f9a40b49c3d0b2902c0a01710bedb22518006c9c83b56eb01 -SIZE (KDE/release-service/24.12.2/arianna-24.12.2.tar.xz) = 820684 +TIMESTAMP = 1741276203 +SHA256 (KDE/release-service/24.12.3/arianna-24.12.3.tar.xz) = 494ff3d4bfb9c7b8ee76344b7423c4ccf7da3f9adbf8a899aed46e573a5ef826 +SIZE (KDE/release-service/24.12.3/arianna-24.12.3.tar.xz) = 820804 diff --git a/textproc/kompare/distinfo b/textproc/kompare/distinfo index a7ca96b0152f..b6e7d1ad1baa 100644 --- a/textproc/kompare/distinfo +++ b/textproc/kompare/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1738937345 -SHA256 (KDE/release-service/24.12.2/kompare-24.12.2.tar.xz) = f106b1ac6d2871c32977ace560d70ef99ee1ea802b047b0f630f00f577b20551 -SIZE (KDE/release-service/24.12.2/kompare-24.12.2.tar.xz) = 959604 +TIMESTAMP = 1741276208 +SHA256 (KDE/release-service/24.12.3/kompare-24.12.3.tar.xz) = 263358db90c6069b9422b565769b20da70bc79893df5ceea93f0b78a45dae02e +SIZE (KDE/release-service/24.12.3/kompare-24.12.3.tar.xz) = 959584 diff --git a/textproc/libkomparediff2/distinfo b/textproc/libkomparediff2/distinfo index 96efd8626413..91f72607fe8a 100644 --- a/textproc/libkomparediff2/distinfo +++ b/textproc/libkomparediff2/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1738937346 -SHA256 (KDE/release-service/24.12.2/libkomparediff2-24.12.2.tar.xz) = c64c0228255416cc6cb0617f7f306a1403f02e3dcc613f8c3ba9383ef95937b4 -SIZE (KDE/release-service/24.12.2/libkomparediff2-24.12.2.tar.xz) = 188484 +TIMESTAMP = 1741276211 +SHA256 (KDE/release-service/24.12.3/libkomparediff2-24.12.3.tar.xz) = 33c722e7c6935b9fe6ca7b626d10d0cd0e0878a0396b2ab659f4c4d6dd714912 +SIZE (KDE/release-service/24.12.3/libkomparediff2-24.12.3.tar.xz) = 188504 diff --git a/textproc/markdownpart/distinfo b/textproc/markdownpart/distinfo index 26c490e906dc..a11e55b10b2a 100644 --- a/textproc/markdownpart/distinfo +++ b/textproc/markdownpart/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1738937346 -SHA256 (KDE/release-service/24.12.2/markdownpart-24.12.2.tar.xz) = c109c11a682c92cae70332163c5d3bb8a6ac6163101926f4c31fc46fd76c71b3 -SIZE (KDE/release-service/24.12.2/markdownpart-24.12.2.tar.xz) = 34340 +TIMESTAMP = 1741276213 +SHA256 (KDE/release-service/24.12.3/markdownpart-24.12.3.tar.xz) = 8db6832fdc70fe44161a4fc7c336b25476d296be68bc95351cd07c2f478be814 +SIZE (KDE/release-service/24.12.3/markdownpart-24.12.3.tar.xz) = 34304 diff --git a/www/falkon/distinfo b/www/falkon/distinfo index 1ae86b7ceeec..f69a91282bcd 100644 --- a/www/falkon/distinfo +++ b/www/falkon/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1738937347 -SHA256 (KDE/release-service/24.12.2/falkon-24.12.2.tar.xz) = 0f98756da3b92b75daeb2133ee00c8e252f92f8b0112fbf072266eb691605be8 -SIZE (KDE/release-service/24.12.2/falkon-24.12.2.tar.xz) = 2654508 +TIMESTAMP = 1741276218 +SHA256 (KDE/release-service/24.12.3/falkon-24.12.3.tar.xz) = 8d9d967a0af71901188ab4fc501137a4eb7602ffe5222a3240a38ffa9243b951 +SIZE (KDE/release-service/24.12.3/falkon-24.12.3.tar.xz) = 2654604 diff --git a/x11-clocks/kteatime/distinfo b/x11-clocks/kteatime/distinfo index 9fe690b4224b..3fc43fb86da1 100644 --- a/x11-clocks/kteatime/distinfo +++ b/x11-clocks/kteatime/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1738937348 -SHA256 (KDE/release-service/24.12.2/kteatime-24.12.2.tar.xz) = f6ccd92f31945d07d87042ed0324502b90170bf5ffc2bbe5db6d4d09f9929b46 -SIZE (KDE/release-service/24.12.2/kteatime-24.12.2.tar.xz) = 310320 +TIMESTAMP = 1741276221 +SHA256 (KDE/release-service/24.12.3/kteatime-24.12.3.tar.xz) = 7801eb7bfba06ec49f557457a97a5390f597dc4328f914113dd2a32688a4fc54 +SIZE (KDE/release-service/24.12.3/kteatime-24.12.3.tar.xz) = 310340 diff --git a/x11-clocks/ktimer/distinfo b/x11-clocks/ktimer/distinfo index 67bc3004bd86..eb99a1cfb6cb 100644 --- a/x11-clocks/ktimer/distinfo +++ b/x11-clocks/ktimer/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1738937349 -SHA256 (KDE/release-service/24.12.2/ktimer-24.12.2.tar.xz) = 64daf88414e758c951261d6661d447355045d0997950112f9cfd074e93b0f83f -SIZE (KDE/release-service/24.12.2/ktimer-24.12.2.tar.xz) = 453224 +TIMESTAMP = 1741276225 +SHA256 (KDE/release-service/24.12.3/ktimer-24.12.3.tar.xz) = 35f90add48846949a767034c9dd8b3d1209eb84f3aef755960580c0d3e0cffce +SIZE (KDE/release-service/24.12.3/ktimer-24.12.3.tar.xz) = 453228 diff --git a/x11-fm/dolphin/distinfo b/x11-fm/dolphin/distinfo index 5fbdaa0a3429..d1b186a49bb6 100644 --- a/x11-fm/dolphin/distinfo +++ b/x11-fm/dolphin/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1738937350 -SHA256 (KDE/release-service/24.12.2/dolphin-24.12.2.tar.xz) = 31c5b0ee1eba9021ac3cdb0ac9f080a09e84b4c7007aa68b304e13f99487b377 -SIZE (KDE/release-service/24.12.2/dolphin-24.12.2.tar.xz) = 5694996 +TIMESTAMP = 1741276231 +SHA256 (KDE/release-service/24.12.3/dolphin-24.12.3.tar.xz) = 0bcefb5c6eadddb867924e9052d5431c5b7c98aa4022c3fa2ca16d5b6515b0f0 +SIZE (KDE/release-service/24.12.3/dolphin-24.12.3.tar.xz) = 5696652 diff --git a/x11-fm/konqueror/distinfo b/x11-fm/konqueror/distinfo index bbc3c51add76..583df1a3948e 100644 --- a/x11-fm/konqueror/distinfo +++ b/x11-fm/konqueror/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1738937352 -SHA256 (KDE/release-service/24.12.2/konqueror-24.12.2.tar.xz) = 4795067a926f99fe9e6afb480d10ffef85cfe79e20d4068983ca2099a9cbe4d5 -SIZE (KDE/release-service/24.12.2/konqueror-24.12.2.tar.xz) = 9756296 +TIMESTAMP = 1741276237 +SHA256 (KDE/release-service/24.12.3/konqueror-24.12.3.tar.xz) = 2ed2abaedcef8f98faf224c2875933f8c14d99d5a6ca633ddecfcc75567d6eb1 +SIZE (KDE/release-service/24.12.3/konqueror-24.12.3.tar.xz) = 9774416 diff --git a/x11-fm/konqueror/pkg-plist b/x11-fm/konqueror/pkg-plist index 54d80abd5cfa..3be9f1840b65 100644 --- a/x11-fm/konqueror/pkg-plist +++ b/x11-fm/konqueror/pkg-plist @@ -1,1990 +1,2006 @@ bin/fsview bin/kcreatewebarchive bin/kfmclient bin/konqueror etc/xdg/autostart/konqy_preload.desktop 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%%/khtml/kpartplugins/akregatorkonqfeediconkhtml_kpartplugins.so %%QT_PLUGINDIR%%/khtml/kpartplugins/autorefreshkhtml_kpartplugins.so %%QT_PLUGINDIR%%/khtml/kpartplugins/babelfishpluginkhtml_kpartplugins.so %%QT_PLUGINDIR%%/khtml/kpartplugins/khtmlsettingspluginkhtml_kpartplugins.so %%QT_PLUGINDIR%%/khtml/kpartplugins/konqueror_kget_browser_integrationkhtml_kpartplugins.so %%QT_PLUGINDIR%%/khtml/kpartplugins/uachangerpluginkhtml_kpartplugins.so %%QT_PLUGINDIR%%/khtml/kpartplugins/webarchiverpluginkhtml_kpartplugins.so %%QT_PLUGINDIR%%/khtmlsettingsplugin.so %%QT_PLUGINDIR%%/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_kcms/kcm_bookmarks.so %%QT_PLUGINDIR%%/konqueror_kcms/kcm_history.so %%QT_PLUGINDIR%%/konqueror_kcms/kcm_konq.so %%QT_PLUGINDIR%%/konqueror_kcms/kcm_performance.so %%QT_PLUGINDIR%%/konqueror_kcms/khtml_appearance.so %%QT_PLUGINDIR%%/konqueror_kcms/khtml_behavior.so %%QT_PLUGINDIR%%/konqueror_kcms/khtml_cache.so %%QT_PLUGINDIR%%/konqueror_kcms/khtml_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%%/kwebkitpart/kpartplugins/akregatorkonqfeediconkwebkitpart_kpartplugins.so %%QT_PLUGINDIR%%/kwebkitpart/kpartplugins/autorefreshkwebkitpart_kpartplugins.so %%QT_PLUGINDIR%%/kwebkitpart/kpartplugins/babelfishpluginkwebkitpart_kpartplugins.so %%QT_PLUGINDIR%%/kwebkitpart/kpartplugins/khtmlsettingspluginkwebkitpart_kpartplugins.so %%QT_PLUGINDIR%%/kwebkitpart/kpartplugins/konqueror_kget_browser_integrationkwebkitpart_kpartplugins.so %%QT_PLUGINDIR%%/kwebkitpart/kpartplugins/uachangerpluginkwebkitpart_kpartplugins.so %%QT_PLUGINDIR%%/kwebkitpart/kpartplugins/webarchiverpluginkwebkitpart_kpartplugins.so %%QT_PLUGINDIR%%/uachangerplugin.so %%QT_PLUGINDIR%%/webarchiverplugin.so %%QT_PLUGINDIR%%/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/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/kfmclient.desktop share/applications/kfmclient_dir.desktop share/applications/kfmclient_html.desktop share/applications/kfmclient_war.desktop share/applications/konqbrowser.desktop share/applications/org.kde.konqueror.desktop share/config.kcfg/kcreatewebarchive.kcfg share/config.kcfg/konqueror.kcfg share/dbus-1/interfaces/org.kde.Konqueror.Main.xml share/dbus-1/interfaces/org.kde.Konqueror.MainWindow.xml share/icons/hicolor/128x128/apps/konqueror.png share/icons/hicolor/128x128/apps/webengine.png share/icons/hicolor/16x16/actions/babelfish.png share/icons/hicolor/16x16/actions/imagegallery.png share/icons/hicolor/16x16/actions/webarchiver.png share/icons/hicolor/16x16/apps/konqueror.png share/icons/hicolor/16x16/apps/webengine.png share/icons/hicolor/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/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/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/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/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/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/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/konqueror.mo share/locale/cs/LC_MESSAGES/kshellcmdplugin.mo share/locale/cs/LC_MESSAGES/libkonq.mo share/locale/cs/LC_MESSAGES/searchbarplugin.mo share/locale/cs/LC_MESSAGES/uachangerplugin.mo share/locale/cs/LC_MESSAGES/webarchiver.mo share/locale/cs/LC_MESSAGES/webenginepart.mo share/locale/csb/LC_MESSAGES/kcmbookmarks.mo share/locale/csb/LC_MESSAGES/kcmkonqhtml.mo share/locale/csb/LC_MESSAGES/kcmperformance.mo share/locale/csb/LC_MESSAGES/kfmclient.mo share/locale/csb/LC_MESSAGES/khtmltts.mo share/locale/csb/LC_MESSAGES/konqueror.mo share/locale/csb/LC_MESSAGES/kshellcmdplugin.mo share/locale/csb/LC_MESSAGES/libkonq.mo share/locale/cy/LC_MESSAGES/autorefresh.mo share/locale/cy/LC_MESSAGES/babelfish.mo share/locale/cy/LC_MESSAGES/dirfilterplugin.mo share/locale/cy/LC_MESSAGES/fsview.mo share/locale/cy/LC_MESSAGES/imgalleryplugin.mo share/locale/cy/LC_MESSAGES/kcmbookmarks.mo share/locale/cy/LC_MESSAGES/kcmkonq.mo share/locale/cy/LC_MESSAGES/kcmkonqhtml.mo share/locale/cy/LC_MESSAGES/kcmperformance.mo share/locale/cy/LC_MESSAGES/kfmclient.mo share/locale/cy/LC_MESSAGES/kgetplugin.mo share/locale/cy/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/cy/LC_MESSAGES/khtmltts.mo share/locale/cy/LC_MESSAGES/konqueror.mo share/locale/cy/LC_MESSAGES/kshellcmdplugin.mo share/locale/cy/LC_MESSAGES/libkonq.mo share/locale/cy/LC_MESSAGES/searchbarplugin.mo share/locale/cy/LC_MESSAGES/uachangerplugin.mo share/locale/da/LC_MESSAGES/akregator_konqplugin.mo share/locale/da/LC_MESSAGES/autorefresh.mo share/locale/da/LC_MESSAGES/babelfish.mo share/locale/da/LC_MESSAGES/dirfilterplugin.mo share/locale/da/LC_MESSAGES/fsview.mo share/locale/da/LC_MESSAGES/imgalleryplugin.mo share/locale/da/LC_MESSAGES/kcmbookmarks.mo share/locale/da/LC_MESSAGES/kcmkonq.mo share/locale/da/LC_MESSAGES/kcmkonqhtml.mo share/locale/da/LC_MESSAGES/kcmperformance.mo share/locale/da/LC_MESSAGES/kfmclient.mo share/locale/da/LC_MESSAGES/kgetplugin.mo share/locale/da/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/da/LC_MESSAGES/khtmltts.mo share/locale/da/LC_MESSAGES/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/konqueror.mo share/locale/de/LC_MESSAGES/kshellcmdplugin.mo share/locale/de/LC_MESSAGES/libkonq.mo share/locale/de/LC_MESSAGES/searchbarplugin.mo share/locale/de/LC_MESSAGES/uachangerplugin.mo share/locale/de/LC_MESSAGES/webarchiver.mo share/locale/de/LC_MESSAGES/webenginepart.mo share/locale/el/LC_MESSAGES/akregator_konqplugin.mo share/locale/el/LC_MESSAGES/autorefresh.mo share/locale/el/LC_MESSAGES/babelfish.mo share/locale/el/LC_MESSAGES/dirfilterplugin.mo share/locale/el/LC_MESSAGES/fsview.mo share/locale/el/LC_MESSAGES/imgalleryplugin.mo share/locale/el/LC_MESSAGES/kcmbookmarks.mo share/locale/el/LC_MESSAGES/kcmkonq.mo share/locale/el/LC_MESSAGES/kcmkonqhtml.mo share/locale/el/LC_MESSAGES/kcmperformance.mo share/locale/el/LC_MESSAGES/kfmclient.mo share/locale/el/LC_MESSAGES/kgetplugin.mo share/locale/el/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/el/LC_MESSAGES/khtmltts.mo share/locale/el/LC_MESSAGES/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/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/konqueror.mo share/locale/eu/LC_MESSAGES/kshellcmdplugin.mo share/locale/eu/LC_MESSAGES/libkonq.mo share/locale/eu/LC_MESSAGES/searchbarplugin.mo share/locale/eu/LC_MESSAGES/uachangerplugin.mo share/locale/eu/LC_MESSAGES/webarchiver.mo share/locale/eu/LC_MESSAGES/webenginepart.mo share/locale/fa/LC_MESSAGES/akregator_konqplugin.mo share/locale/fa/LC_MESSAGES/autorefresh.mo share/locale/fa/LC_MESSAGES/babelfish.mo share/locale/fa/LC_MESSAGES/dirfilterplugin.mo share/locale/fa/LC_MESSAGES/fsview.mo share/locale/fa/LC_MESSAGES/imgalleryplugin.mo share/locale/fa/LC_MESSAGES/kcmbookmarks.mo share/locale/fa/LC_MESSAGES/kcmkonq.mo share/locale/fa/LC_MESSAGES/kcmkonqhtml.mo share/locale/fa/LC_MESSAGES/kcmperformance.mo share/locale/fa/LC_MESSAGES/kfmclient.mo share/locale/fa/LC_MESSAGES/kgetplugin.mo share/locale/fa/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/fa/LC_MESSAGES/khtmltts.mo share/locale/fa/LC_MESSAGES/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/konqueror.mo share/locale/fi/LC_MESSAGES/kshellcmdplugin.mo share/locale/fi/LC_MESSAGES/libkonq.mo share/locale/fi/LC_MESSAGES/searchbarplugin.mo share/locale/fi/LC_MESSAGES/uachangerplugin.mo share/locale/fi/LC_MESSAGES/webarchiver.mo share/locale/fi/LC_MESSAGES/webenginepart.mo share/locale/fr/LC_MESSAGES/akregator_konqplugin.mo share/locale/fr/LC_MESSAGES/autorefresh.mo share/locale/fr/LC_MESSAGES/babelfish.mo share/locale/fr/LC_MESSAGES/dirfilterplugin.mo share/locale/fr/LC_MESSAGES/fsview.mo share/locale/fr/LC_MESSAGES/imgalleryplugin.mo share/locale/fr/LC_MESSAGES/kcmbookmarks.mo share/locale/fr/LC_MESSAGES/kcmkonq.mo share/locale/fr/LC_MESSAGES/kcmkonqhtml.mo share/locale/fr/LC_MESSAGES/kcmperformance.mo share/locale/fr/LC_MESSAGES/kfmclient.mo share/locale/fr/LC_MESSAGES/kgetplugin.mo share/locale/fr/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/fr/LC_MESSAGES/khtmltts.mo share/locale/fr/LC_MESSAGES/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/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/konqueror.mo share/locale/ga/LC_MESSAGES/kshellcmdplugin.mo share/locale/ga/LC_MESSAGES/libkonq.mo share/locale/ga/LC_MESSAGES/searchbarplugin.mo share/locale/ga/LC_MESSAGES/uachangerplugin.mo share/locale/ga/LC_MESSAGES/webenginepart.mo share/locale/gl/LC_MESSAGES/akregator_konqplugin.mo share/locale/gl/LC_MESSAGES/autorefresh.mo share/locale/gl/LC_MESSAGES/babelfish.mo share/locale/gl/LC_MESSAGES/dirfilterplugin.mo share/locale/gl/LC_MESSAGES/fsview.mo share/locale/gl/LC_MESSAGES/imgalleryplugin.mo share/locale/gl/LC_MESSAGES/kcmbookmarks.mo share/locale/gl/LC_MESSAGES/kcmkonq.mo share/locale/gl/LC_MESSAGES/kcmkonqhtml.mo share/locale/gl/LC_MESSAGES/kcmperformance.mo share/locale/gl/LC_MESSAGES/kfmclient.mo share/locale/gl/LC_MESSAGES/kgetplugin.mo share/locale/gl/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/gl/LC_MESSAGES/khtmltts.mo share/locale/gl/LC_MESSAGES/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/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/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/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/konqueror.mo share/locale/ia/LC_MESSAGES/kshellcmdplugin.mo share/locale/ia/LC_MESSAGES/libkonq.mo share/locale/ia/LC_MESSAGES/searchbarplugin.mo share/locale/ia/LC_MESSAGES/uachangerplugin.mo share/locale/ia/LC_MESSAGES/webarchiver.mo share/locale/ia/LC_MESSAGES/webenginepart.mo share/locale/id/LC_MESSAGES/akregator_konqplugin.mo share/locale/id/LC_MESSAGES/autorefresh.mo share/locale/id/LC_MESSAGES/babelfish.mo share/locale/id/LC_MESSAGES/dirfilterplugin.mo share/locale/id/LC_MESSAGES/fsview.mo share/locale/id/LC_MESSAGES/imgalleryplugin.mo share/locale/id/LC_MESSAGES/kcmbookmarks.mo share/locale/id/LC_MESSAGES/kcmkonq.mo share/locale/id/LC_MESSAGES/kcmkonqhtml.mo share/locale/id/LC_MESSAGES/kcmperformance.mo share/locale/id/LC_MESSAGES/kfmclient.mo share/locale/id/LC_MESSAGES/kgetplugin.mo share/locale/id/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/id/LC_MESSAGES/khtmltts.mo share/locale/id/LC_MESSAGES/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/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/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/konqueror.mo share/locale/ko/LC_MESSAGES/kshellcmdplugin.mo share/locale/ko/LC_MESSAGES/libkonq.mo share/locale/ko/LC_MESSAGES/searchbarplugin.mo share/locale/ko/LC_MESSAGES/uachangerplugin.mo share/locale/ko/LC_MESSAGES/webarchiver.mo share/locale/ko/LC_MESSAGES/webenginepart.mo share/locale/ku/LC_MESSAGES/akregator_konqplugin.mo share/locale/ku/LC_MESSAGES/autorefresh.mo share/locale/ku/LC_MESSAGES/babelfish.mo share/locale/ku/LC_MESSAGES/dirfilterplugin.mo share/locale/ku/LC_MESSAGES/fsview.mo share/locale/ku/LC_MESSAGES/imgalleryplugin.mo share/locale/ku/LC_MESSAGES/kcmbookmarks.mo share/locale/ku/LC_MESSAGES/kcmkonq.mo share/locale/ku/LC_MESSAGES/kcmkonqhtml.mo share/locale/ku/LC_MESSAGES/kcmperformance.mo share/locale/ku/LC_MESSAGES/kfmclient.mo share/locale/ku/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/ku/LC_MESSAGES/khtmltts.mo share/locale/ku/LC_MESSAGES/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/konqueror.mo share/locale/lt/LC_MESSAGES/kshellcmdplugin.mo share/locale/lt/LC_MESSAGES/libkonq.mo share/locale/lt/LC_MESSAGES/searchbarplugin.mo share/locale/lt/LC_MESSAGES/uachangerplugin.mo share/locale/lt/LC_MESSAGES/webarchiver.mo share/locale/lt/LC_MESSAGES/webenginepart.mo share/locale/lv/LC_MESSAGES/akregator_konqplugin.mo share/locale/lv/LC_MESSAGES/autorefresh.mo share/locale/lv/LC_MESSAGES/babelfish.mo share/locale/lv/LC_MESSAGES/dirfilterplugin.mo share/locale/lv/LC_MESSAGES/fsview.mo share/locale/lv/LC_MESSAGES/imgalleryplugin.mo share/locale/lv/LC_MESSAGES/kcmbookmarks.mo share/locale/lv/LC_MESSAGES/kcmkonq.mo share/locale/lv/LC_MESSAGES/kcmkonqhtml.mo share/locale/lv/LC_MESSAGES/kcmperformance.mo share/locale/lv/LC_MESSAGES/kfmclient.mo share/locale/lv/LC_MESSAGES/kgetplugin.mo share/locale/lv/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/lv/LC_MESSAGES/khtmltts.mo share/locale/lv/LC_MESSAGES/kio6_bookmarks.mo share/locale/lv/LC_MESSAGES/konqueror.mo share/locale/lv/LC_MESSAGES/kshellcmdplugin.mo share/locale/lv/LC_MESSAGES/libkonq.mo share/locale/lv/LC_MESSAGES/searchbarplugin.mo share/locale/lv/LC_MESSAGES/uachangerplugin.mo share/locale/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/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/konqueror.mo share/locale/pl/LC_MESSAGES/kshellcmdplugin.mo share/locale/pl/LC_MESSAGES/libkonq.mo share/locale/pl/LC_MESSAGES/searchbarplugin.mo share/locale/pl/LC_MESSAGES/uachangerplugin.mo share/locale/pl/LC_MESSAGES/webarchiver.mo share/locale/pl/LC_MESSAGES/webenginepart.mo share/locale/pt/LC_MESSAGES/akregator_konqplugin.mo share/locale/pt/LC_MESSAGES/autorefresh.mo share/locale/pt/LC_MESSAGES/babelfish.mo share/locale/pt/LC_MESSAGES/dirfilterplugin.mo share/locale/pt/LC_MESSAGES/fsview.mo share/locale/pt/LC_MESSAGES/imgalleryplugin.mo share/locale/pt/LC_MESSAGES/kcmbookmarks.mo share/locale/pt/LC_MESSAGES/kcmkonq.mo share/locale/pt/LC_MESSAGES/kcmkonqhtml.mo share/locale/pt/LC_MESSAGES/kcmperformance.mo share/locale/pt/LC_MESSAGES/kfmclient.mo share/locale/pt/LC_MESSAGES/kgetplugin.mo share/locale/pt/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/pt/LC_MESSAGES/khtmltts.mo share/locale/pt/LC_MESSAGES/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/konqueror.mo share/locale/pt_BR/LC_MESSAGES/kshellcmdplugin.mo share/locale/pt_BR/LC_MESSAGES/libkonq.mo share/locale/pt_BR/LC_MESSAGES/searchbarplugin.mo share/locale/pt_BR/LC_MESSAGES/uachangerplugin.mo share/locale/pt_BR/LC_MESSAGES/webarchiver.mo share/locale/pt_BR/LC_MESSAGES/webenginepart.mo share/locale/ro/LC_MESSAGES/akregator_konqplugin.mo share/locale/ro/LC_MESSAGES/autorefresh.mo share/locale/ro/LC_MESSAGES/babelfish.mo share/locale/ro/LC_MESSAGES/dirfilterplugin.mo share/locale/ro/LC_MESSAGES/fsview.mo share/locale/ro/LC_MESSAGES/imgalleryplugin.mo share/locale/ro/LC_MESSAGES/kcmbookmarks.mo share/locale/ro/LC_MESSAGES/kcmkonq.mo share/locale/ro/LC_MESSAGES/kcmkonqhtml.mo share/locale/ro/LC_MESSAGES/kcmperformance.mo share/locale/ro/LC_MESSAGES/kfmclient.mo share/locale/ro/LC_MESSAGES/kgetplugin.mo share/locale/ro/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/ro/LC_MESSAGES/khtmltts.mo share/locale/ro/LC_MESSAGES/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/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/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/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/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/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/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/konqueror.mo share/locale/zh_TW/LC_MESSAGES/kshellcmdplugin.mo share/locale/zh_TW/LC_MESSAGES/libkonq.mo share/locale/zh_TW/LC_MESSAGES/searchbarplugin.mo share/locale/zh_TW/LC_MESSAGES/uachangerplugin.mo share/locale/zh_TW/LC_MESSAGES/webarchiver.mo share/locale/zh_TW/LC_MESSAGES/webenginepart.mo share/metainfo/org.kde.konqueror.appdata.xml share/qlogging-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 62a80e987482..618f3dad4859 100644 --- a/x11/konsole/distinfo +++ b/x11/konsole/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1738937353 -SHA256 (KDE/release-service/24.12.2/konsole-24.12.2.tar.xz) = 24586c3c83f9ca2b814c5319e4aeef885adccfccd94e9c45dba5c1574bb77262 -SIZE (KDE/release-service/24.12.2/konsole-24.12.2.tar.xz) = 1818968 +TIMESTAMP = 1741276239 +SHA256 (KDE/release-service/24.12.3/konsole-24.12.3.tar.xz) = fe7c25e0dbf93c2d2a36988f479cd3202d8c8c58656395ce13e248c591c10241 +SIZE (KDE/release-service/24.12.3/konsole-24.12.3.tar.xz) = 1819216 diff --git a/x11/yakuake/distinfo b/x11/yakuake/distinfo index 37c4e53c3928..bafbeba9b1ee 100644 --- a/x11/yakuake/distinfo +++ b/x11/yakuake/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1738937354 -SHA256 (KDE/release-service/24.12.2/yakuake-24.12.2.tar.xz) = 80fa5e845c361349aaa485c107c2f347a692d60b57e5c8956f98803131bc7647 -SIZE (KDE/release-service/24.12.2/yakuake-24.12.2.tar.xz) = 392468 +TIMESTAMP = 1741276243 +SHA256 (KDE/release-service/24.12.3/yakuake-24.12.3.tar.xz) = b5a00fb4bd518dbd5697c142a526f4121b923f9846545363160c759ca3b94506 +SIZE (KDE/release-service/24.12.3/yakuake-24.12.3.tar.xz) = 392496