diff --git a/Mk/Uses/kde.mk b/Mk/Uses/kde.mk index c6aa91ad880d..3303d27c784e 100644 --- a/Mk/Uses/kde.mk +++ b/Mk/Uses/kde.mk @@ -1,1025 +1,1025 @@ # Provides support for KDE and KF5-based ports. # # Feature: kde # Valid ARGS: 5 6 # # 5: Depend on KDE Frameworks 5 components and variables. # 6: Depend on KDE Frameworks 6 components and variables. # # Variables that can be set by a port: # # USE_KDE List of KF[56]/Plasma[56] components (other ports) that this # port depends on. # * foo:build Add a build-time dependency (BUILD_DEPENDS) # * foo:run Add a run-time dependency (RUN_DEPENDS) # * foo (default) Add both dependencies on component , or # a LIB_DEPENDS if applicable. # # To simplify the ports, also: # CATEGORIES If the port is part of one of the KDE Software distribution, # it can add, in addition to 'kde' one of the following: # kde-applications: part of applications release # kde-frameworks: part of frameworks release # kde-plasma: part of plasma release # this will then set default values for MASTER_SITES and DIST_SUBDIR # as well as CPE_VENDOR and LICENSE. # # option DOCS If the port is part of kde-applications (see CATEGORIES, # above) and has an option defined for DOCS then a dependency # for doctools:build is added. The option itself doesn't # have to do anything -- the dependency is always there. # # KDE_INVENT If the port does not have a regular release, and should # be fetched from KDE Invent (a GitLab instance) it can set # KDE_INVENT to 3 space-separated values: # * a full 40-character commit hash # * a category name inside KDE Invent # * a repository name inside KDE Invent # Default values for category and name are: # * the first item in CATEGORIES that is not "kde"; this # is useful when the FreeBSD ports category and the KDE # category are the same (which happens sometimes) # * PORTNAME, often the FreeBSD port name is the same # as the upstream name and it will not need to be specified. # Sometimes `KDE_INVENT=` will do and often # `KDE_INVENT= ` is enough. # # Setting KDE_INVENT is the equivalent of a handful of USE_GITLAB # and related settings. # # MAINTAINER: kde@FreeBSD.org .if !defined(_INCLUDE_USES_KDE_MK) _INCLUDE_USES_KDE_MK= yes _KDE_SUPPORTED= 5 6 . if empty(kde_ARGS) IGNORE= kde needs a version (${_KDE_SUPPORTED}) . endif . for ver in ${_KDE_SUPPORTED:O:u} . if ${kde_ARGS:M${ver}} . if !defined(_KDE_VERSION) _KDE_VERSION= ${ver} . else IGNORE?= cannot be installed: different KDE versions specified via kde:[${_KDE_SUPPORTED:S/ //g}] #' . endif . endif . endfor . if empty(_KDE_VERSION) IGNORE?= kde:[${_KDE_SUPPORTED:S/ //g}] needs an argument #' . else _KDE_RELNAME= KDE${_KDE_VERSION} # === VERSIONS OF THE DIFFERENT COMPONENTS ===================================== KDE_PLASMA_VERSION?= ${KDE_PLASMA${_KDE_VERSION}_VERSION} KDE_PLASMA_BRANCH?= ${KDE_PLASMA${_KDE_VERSION}_BRANCH} KDE_FRAMEWORKS_VERSION?= ${KDE_FRAMEWORKS${_KDE_VERSION}_VERSION} KDE_FRAMEWORKS_BRANCH?= ${KDE_FRAMEWORKS${_KDE_VERSION}_BRANCH} KDE_APPLICATIONS_BRANCH?= ${KDE_APPLICATIONS6_BRANCH} KDE_APPLICATIONS_VERSION?= ${KDE_APPLICATIONS6_VERSION} KDE_APPLICATIONS_SHLIB_VER?= ${KDE_APPLICATIONS6_SHLIB_VER} KDE_APPLICATIONS_SHLIB_G_VER?= ${KDE_APPLICATIONS6_SHLIB_G_VER} # Legacy KDE Plasma. KDE_PLASMA5_VERSION?= 5.27.12 KDE_PLASMA5_BRANCH?= stable # Current KDE Plasma desktop. KDE_PLASMA6_VERSION?= 6.2.5 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.10.0 KDE_FRAMEWORKS6_BRANCH?= stable # Current KDE applications. -KDE_APPLICATIONS6_VERSION?= 24.12.0 -KDE_APPLICATIONS6_SHLIB_VER?= 6.3.0 +KDE_APPLICATIONS6_VERSION?= 24.12.2 +KDE_APPLICATIONS6_SHLIB_VER?= 6.3.2 # 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}" 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 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_GEAR_ALL= baloo-widgets kate kosm kpublictransport \ libkcddb libkcompactdisc libkdcraw \ libkdegames libkeduvocdocument libkexiv2 \ libksane marble okular # 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-backend \ plasma-wayland-protocols _USE_KDE_EXTRA6_ALL= kirigami-addons phonon phonon-backend \ plasma-wayland-protocols ktextaddons _USE_KDE_EXTRA_ALL= ${_USE_KDE_EXTRA${_KDE_VERSION}_ALL} _USE_KDE5_ALL= ${_USE_FRAMEWORKS_ALL} \ ${_USE_PLASMA_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= libkdecorations2.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-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-backend_PORT= multimedia/phonon-vlc@${_QT_RELNAME} kde-phonon-backend_PATH= ${QT_PLUGINDIR}/phonon4${_QT_RELNAME}_backend/phonon_vlc_${_QT_RELNAME}.so # ====================== 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 54c60e20562a..10b4679c7bec 100644 --- a/accessibility/kmag/distinfo +++ b/accessibility/kmag/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1734460007 -SHA256 (KDE/release-service/24.12.0/kmag-24.12.0.tar.xz) = eed6d5bfd5fdabb07d89c7c2aacb50d36a49c45a4b3ba28143fffb49a13304ba -SIZE (KDE/release-service/24.12.0/kmag-24.12.0.tar.xz) = 677776 +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 diff --git a/accessibility/kmousetool/distinfo b/accessibility/kmousetool/distinfo index 79340668d8ae..16f85651b96c 100644 --- a/accessibility/kmousetool/distinfo +++ b/accessibility/kmousetool/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1734460008 -SHA256 (KDE/release-service/24.12.0/kmousetool-24.12.0.tar.xz) = 107847e56a2b9a817fac3d91497db7ddda860f82acd6df57b1cde883cf88b9d9 -SIZE (KDE/release-service/24.12.0/kmousetool-24.12.0.tar.xz) = 134508 +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 diff --git a/accessibility/kmouth/distinfo b/accessibility/kmouth/distinfo index e6280332e70d..686e367f8b89 100644 --- a/accessibility/kmouth/distinfo +++ b/accessibility/kmouth/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1734460010 -SHA256 (KDE/release-service/24.12.0/kmouth-24.12.0.tar.xz) = 851a4526d8862dee02c337a20897a4e0c89ba8deed20df8ecf2dc16aace814af -SIZE (KDE/release-service/24.12.0/kmouth-24.12.0.tar.xz) = 1940336 +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 diff --git a/archivers/ark/distinfo b/archivers/ark/distinfo index cc3da797be76..3511f84ac13e 100644 --- a/archivers/ark/distinfo +++ b/archivers/ark/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1734460012 -SHA256 (KDE/release-service/24.12.0/ark-24.12.0.tar.xz) = a9e8e50a5cc2e56987cbc17d715e9c2958157c89cca8c21fa3b0d2fa802d0712 -SIZE (KDE/release-service/24.12.0/ark-24.12.0.tar.xz) = 3010228 +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 diff --git a/astro/kosmindoormap/distinfo b/astro/kosmindoormap/distinfo index 41daa15de241..9eebf135eeae 100644 --- a/astro/kosmindoormap/distinfo +++ b/astro/kosmindoormap/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1734460014 -SHA256 (KDE/release-service/24.12.0/kosmindoormap-24.12.0.tar.xz) = f2a648d8dab8e568448fddcddd2bcc76387b6231cd6aca355030491aa6a336c1 -SIZE (KDE/release-service/24.12.0/kosmindoormap-24.12.0.tar.xz) = 693112 +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 diff --git a/astro/marble/distinfo b/astro/marble/distinfo index 324af4f2468f..8c75ad519b06 100644 --- a/astro/marble/distinfo +++ b/astro/marble/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1734460017 -SHA256 (KDE/release-service/24.12.0/marble-24.12.0.tar.xz) = a347f134d1428bd46b886bb41a292a2fec4aea4de274bff73cd8b8994f920576 -SIZE (KDE/release-service/24.12.0/marble-24.12.0.tar.xz) = 53635296 +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 diff --git a/astro/marble/pkg-plist b/astro/marble/pkg-plist index 1557207f4560..d7dc3babbafe 100644 --- a/astro/marble/pkg-plist +++ b/astro/marble/pkg-plist @@ -1,1887 +1,1890 @@ bin/marble bin/marble-behaim bin/marble-maps include/astro/astr2lib.h include/astro/astro_version.h include/astro/astrolib.h include/astro/astrolib_export.h include/astro/attlib.h include/astro/eclsolar.h include/astro/planetarySats.h include/astro/solarsystem.h include/marble/AbstractDataPlugin.h include/marble/AbstractDataPluginItem.h include/marble/AbstractDataPluginModel.h include/marble/AbstractFloatItem.h include/marble/AbstractMarbleGraphicsLayout.h include/marble/AbstractProjection.h include/marble/AbstractWorkerThread.h include/marble/AddLinkDialog.h include/marble/AlternativeRoutesModel.h include/marble/AutoNavigation.h include/marble/BillboardGraphicsItem.h include/marble/BookmarkManager.h include/marble/CelestialSortFilterProxyModel.h include/marble/ClipPainter.h include/marble/CurrentLocationWidget.h include/marble/DialogConfigurationInterface.h include/marble/DownloadRegion.h include/marble/DownloadRegionDialog.h include/marble/EditPlacemarkDialog.h include/marble/ElevationModel.h include/marble/FileManager.h include/marble/FileViewWidget.h include/marble/FlyToEditWidget.h include/marble/FormattedTextWidget.h include/marble/FrameGraphicsItem.h include/marble/GeoDataAbstractView.h include/marble/GeoDataAccuracy.h include/marble/GeoDataBalloonStyle.h include/marble/GeoDataColorStyle.h include/marble/GeoDataContainer.h include/marble/GeoDataCoordinates.h include/marble/GeoDataDocument.h include/marble/GeoDataFeature.h include/marble/GeoDataFolder.h include/marble/GeoDataGeometry.h include/marble/GeoDataGroundOverlay.h include/marble/GeoDataHotSpot.h include/marble/GeoDataIconStyle.h include/marble/GeoDataItemIcon.h include/marble/GeoDataLabelStyle.h include/marble/GeoDataLatLonAltBox.h include/marble/GeoDataLatLonBox.h include/marble/GeoDataLatLonQuad.h include/marble/GeoDataLineString.h include/marble/GeoDataLineStyle.h include/marble/GeoDataLinearRing.h include/marble/GeoDataListStyle.h include/marble/GeoDataLod.h include/marble/GeoDataLookAt.h include/marble/GeoDataMultiGeometry.h include/marble/GeoDataObject.h include/marble/GeoDataOverlay.h include/marble/GeoDataPlacemark.h include/marble/GeoDataPoint.h include/marble/GeoDataPolyStyle.h include/marble/GeoDataPolygon.h include/marble/GeoDataRegion.h include/marble/GeoDataRelation.h include/marble/GeoDataSnippet.h include/marble/GeoDataStyle.h include/marble/GeoDataStyleMap.h include/marble/GeoDataStyleSelector.h include/marble/GeoDataTimePrimitive.h include/marble/GeoDataTimeSpan.h include/marble/GeoDataTimeStamp.h include/marble/GeoDataTrack.h include/marble/GeoDataTreeModel.h include/marble/GeoDataTypes.h include/marble/GeoDocument.h include/marble/GeoGraphicsItem.h include/marble/GeoGraphicsScene.h include/marble/GeoPainter.h include/marble/GeoWriter.h include/marble/HttpDownloadManager.h include/marble/LabelGraphicsItem.h include/marble/LatLonBoxWidget.h include/marble/LatLonEdit.h include/marble/LayerInterface.h include/marble/LegendWidget.h include/marble/Maneuver.h include/marble/MapThemeDownloadDialog.h include/marble/MapThemeManager.h include/marble/MapViewItemDelegate.h include/marble/MapViewWidget.h include/marble/MapWizard.h include/marble/MarbleAboutDialog.h include/marble/MarbleColors.h include/marble/MarbleDebug.h include/marble/MarbleDirs.h include/marble/MarbleGlobal.h include/marble/MarbleGraphicsGridLayout.h include/marble/MarbleGraphicsItem.h include/marble/MarbleInputHandler.h include/marble/MarbleLocale.h include/marble/MarbleMap.h include/marble/MarbleMath.h include/marble/MarbleModel.h include/marble/MarbleNavigator.h %%WEBENGINE%%include/marble/MarbleWebView.h include/marble/MarbleWidget.h include/marble/MarbleWidgetInputHandler.h include/marble/MarbleWidgetPopupMenu.h %%NO_WEBENGINE%%include/marble/NullMarbleWebView.h %%NO_WEBENGINE%%include/marble/NullTinyWebBrowser.h include/marble/OsmcSymbol.h include/marble/ParseRunnerPlugin.h include/marble/ParsingRunner.h include/marble/ParsingRunnerManager.h include/marble/PlacemarkEditHeader.h include/marble/Planet.h include/marble/PlanetFactory.h include/marble/PluginAboutDialog.h include/marble/PluginInterface.h include/marble/PluginManager.h include/marble/PositionProviderPlugin.h include/marble/PositionProviderPluginInterface.h include/marble/PositionTracking.h include/marble/QtMarbleConfigDialog.h include/marble/Quaternion.h include/marble/RemoveItemEditWidget.h include/marble/RenderPlugin.h include/marble/RenderPluginInterface.h include/marble/RenderState.h include/marble/ReverseGeocodingRunner.h include/marble/ReverseGeocodingRunnerManager.h include/marble/ReverseGeocodingRunnerPlugin.h include/marble/Route.h include/marble/RouteRequest.h include/marble/RouteSegment.h include/marble/RoutingManager.h include/marble/RoutingModel.h include/marble/RoutingProfile.h include/marble/RoutingRunner.h include/marble/RoutingRunnerManager.h include/marble/RoutingRunnerPlugin.h include/marble/RoutingWidget.h include/marble/ScreenGraphicsItem.h include/marble/SearchRunner.h include/marble/SearchRunnerManager.h include/marble/SearchRunnerPlugin.h include/marble/Serializable.h include/marble/SoundCueEditWidget.h include/marble/SunLocator.h include/marble/TileCoordsPyramid.h include/marble/TileCreator.h include/marble/TileCreatorDialog.h include/marble/TileId.h include/marble/TileLevelRangeWidget.h %%WEBENGINE%%include/marble/TinyWebBrowser.h include/marble/TourControlEditWidget.h include/marble/TourItemDelegate.h include/marble/TourPlayback.h include/marble/TourWidget.h include/marble/ViewportParams.h include/marble/WaitEditWidget.h include/marble/WidgetGraphicsItem.h include/marble/geodata_export.h include/marble/marble_export.h include/marble/marble_version.h lib/cmake/Astro/AstroConfig.cmake lib/cmake/Astro/AstroConfigVersion.cmake lib/cmake/Astro/AstroTargets-%%CMAKE_BUILD_TYPE%%.cmake lib/cmake/Astro/AstroTargets.cmake lib/cmake/Marble/MarbleConfig.cmake lib/cmake/Marble/MarbleConfigVersion.cmake lib/cmake/Marble/MarbleTargets-%%CMAKE_BUILD_TYPE%%.cmake lib/cmake/Marble/MarbleTargets.cmake lib/libastro.so lib/libastro.so.1 lib/libastro.so.%%KDE_APPLICATIONS_VERSION%% lib/libmarblewidget-qt6.so lib/libmarblewidget-qt6.so.28 lib/libmarblewidget-qt6.so.%%KDE_APPLICATIONS_VERSION%% lib/marble/plugins/AnnotatePlugin.so lib/marble/plugins/AprsPlugin.so lib/marble/plugins/AtmospherePlugin.so lib/marble/plugins/CachePlugin.so lib/marble/plugins/CompassFloatItem.so lib/marble/plugins/CrosshairsPlugin.so lib/marble/plugins/CycleStreetsPlugin.so lib/marble/plugins/EarthquakePlugin.so lib/marble/plugins/EclipsesPlugin.so lib/marble/plugins/ElevationProfileFloatItem.so lib/marble/plugins/ElevationProfileMarker.so lib/marble/plugins/FlightGearPositionProviderPlugin.so lib/marble/plugins/FoursquarePlugin.so lib/marble/plugins/GeoUriPlugin.so lib/marble/plugins/GosmoreReverseGeocodingPlugin.so lib/marble/plugins/GosmoreRoutingPlugin.so lib/marble/plugins/GpsInfo.so lib/marble/plugins/GpsbabelPlugin.so %%GPS%%lib/marble/plugins/GpsdPositionProviderPlugin.so lib/marble/plugins/GpxPlugin.so lib/marble/plugins/GraticulePlugin.so lib/marble/plugins/HostipPlugin.so lib/marble/plugins/JsonPlugin.so lib/marble/plugins/KmlPlugin.so lib/marble/plugins/LatLonPlugin.so lib/marble/plugins/License.so lib/marble/plugins/LocalDatabasePlugin.so lib/marble/plugins/LocalOsmSearchPlugin.so lib/marble/plugins/LogPlugin.so lib/marble/plugins/MapQuestPlugin.so lib/marble/plugins/MapScaleFloatItem.so lib/marble/plugins/MeasureTool.so lib/marble/plugins/MonavPlugin.so lib/marble/plugins/NavigationFloatItem.so lib/marble/plugins/NominatimReverseGeocodingPlugin.so lib/marble/plugins/NominatimSearchPlugin.so lib/marble/plugins/NotesPlugin.so lib/marble/plugins/OSRMPlugin.so %%WEBENGINE%%lib/marble/plugins/OpenDesktopPlugin.so lib/marble/plugins/OpenLocationCodeSearchPlugin.so lib/marble/plugins/OpenRouteServicePlugin.so lib/marble/plugins/OsmPlugin.so lib/marble/plugins/OverviewMap.so %%WEBENGINE%%lib/marble/plugins/Photo.so lib/marble/plugins/Pn2Plugin.so lib/marble/plugins/PntPlugin.so lib/marble/plugins/PositionMarker.so lib/marble/plugins/PostalCode.so lib/marble/plugins/ProgressFloatItem.so lib/marble/plugins/QtPositioningPositionProviderPlugin.so lib/marble/plugins/RoutingPlugin.so lib/marble/plugins/RoutinoPlugin.so lib/marble/plugins/SatellitesPlugin.so lib/marble/plugins/Speedometer.so lib/marble/plugins/StarsPlugin.so lib/marble/plugins/SunPlugin.so %%WEBENGINE%%lib/marble/plugins/Weather.so %%WEBENGINE%%lib/marble/plugins/Wikipedia.so lib/marble/plugins/YoursPlugin.so lib/plugins/designer/LatLonEditPlugin.so lib/plugins/designer/MarbleNavigatorPlugin.so lib/plugins/designer/MarbleWidgetPlugin.so %%QT_MKSPECDIR%%/modules/qt_Marble.pri %%QT_PLUGINDIR%%/kf6/krunner/plasma_runner_marble.so %%QT_PLUGINDIR%%/libmarble_part.so %%QT_PLUGINDIR%%/marblethumbnail.so %%QT_QMLDIR%%/org/kde/marble/imageprovider/kde-qmlmodule.version %%QT_QMLDIR%%/org/kde/marble/imageprovider/libmarbleimageprovider.so %%QT_QMLDIR%%/org/kde/marble/imageprovider/marbleimageprovider.qmltypes %%QT_QMLDIR%%/org/kde/marble/imageprovider/qmldir %%QT_QMLDIR%%/org/kde/marble/kde-qmlmodule.version %%QT_QMLDIR%%/org/kde/marble/libmarbledeclarative.so %%QT_QMLDIR%%/org/kde/marble/marbledeclarative.qmltypes %%QT_QMLDIR%%/org/kde/marble/qmldir share/applications/marble_geo.desktop share/applications/marble_geojson.desktop share/applications/marble_gpx.desktop share/applications/marble_kml.desktop share/applications/marble_kmz.desktop share/applications/marble_thumbnail_kml.desktop share/applications/marble_thumbnail_kmz.desktop share/applications/marble_thumbnail_osm.desktop share/applications/marble_worldwind.desktop share/applications/org.kde.marble.behaim.desktop share/applications/org.kde.marble.desktop share/applications/org.kde.marble.maps.desktop share/config.kcfg/marble.kcfg share/icons/hicolor/128x128/apps/marble.png share/icons/hicolor/16x16/apps/marble.png share/icons/hicolor/22x22/apps/marble.png share/icons/hicolor/32x32/apps/marble.png share/icons/hicolor/48x48/apps/marble.png share/icons/hicolor/64x64/apps/marble.png share/icons/hicolor/scalable/apps/org.kde.marble.behaim.svg share/icons/hicolor/scalable/apps/org.kde.marble.maps.svg share/kxmlgui5/marble/marble_part.rc share/kxmlgui5/marble/marbleui.rc +share/locale/ar/LC_MESSAGES/marble-behaim.mo share/locale/ar/LC_MESSAGES/marble-maps.mo share/locale/ar/LC_MESSAGES/marble.mo share/locale/ar/LC_MESSAGES/marble_qt.qm share/locale/ar/LC_MESSAGES/plasma_applet_org.kde.plasma.worldclock.mo share/locale/ar/LC_MESSAGES/plasma_runner_marble.mo share/locale/ar/LC_MESSAGES/plasma_wallpaper_org.kde.plasma.worldmap.mo share/locale/be/LC_MESSAGES/marble-maps.mo share/locale/be/LC_MESSAGES/marble.mo share/locale/be/LC_MESSAGES/marble_qt.qm share/locale/bg/LC_MESSAGES/marble-behaim.mo share/locale/bg/LC_MESSAGES/marble-maps.mo share/locale/bg/LC_MESSAGES/marble.mo share/locale/bg/LC_MESSAGES/marble_qt.qm share/locale/bg/LC_MESSAGES/plasma_applet_org.kde.plasma.worldclock.mo share/locale/bg/LC_MESSAGES/plasma_runner_marble.mo share/locale/bg/LC_MESSAGES/plasma_wallpaper_org.kde.plasma.worldmap.mo share/locale/bs/LC_MESSAGES/marble-maps.mo share/locale/bs/LC_MESSAGES/marble.mo share/locale/bs/LC_MESSAGES/marble_qt.qm share/locale/bs/LC_MESSAGES/plasma_runner_marble.mo share/locale/ca/LC_MESSAGES/marble-behaim.mo share/locale/ca/LC_MESSAGES/marble-maps.mo share/locale/ca/LC_MESSAGES/marble.mo share/locale/ca/LC_MESSAGES/marble_qt.qm share/locale/ca/LC_MESSAGES/plasma_applet_org.kde.plasma.worldclock.mo share/locale/ca/LC_MESSAGES/plasma_runner_marble.mo share/locale/ca/LC_MESSAGES/plasma_wallpaper_org.kde.plasma.worldmap.mo share/locale/ca@valencia/LC_MESSAGES/marble-behaim.mo share/locale/ca@valencia/LC_MESSAGES/marble-maps.mo share/locale/ca@valencia/LC_MESSAGES/marble.mo share/locale/ca@valencia/LC_MESSAGES/marble_qt.qm share/locale/ca@valencia/LC_MESSAGES/plasma_applet_org.kde.plasma.worldclock.mo share/locale/ca@valencia/LC_MESSAGES/plasma_runner_marble.mo share/locale/ca@valencia/LC_MESSAGES/plasma_wallpaper_org.kde.plasma.worldmap.mo share/locale/cs/LC_MESSAGES/marble-behaim.mo share/locale/cs/LC_MESSAGES/marble-maps.mo share/locale/cs/LC_MESSAGES/marble.mo share/locale/cs/LC_MESSAGES/marble_qt.qm share/locale/cs/LC_MESSAGES/plasma_applet_org.kde.plasma.worldclock.mo share/locale/cs/LC_MESSAGES/plasma_runner_marble.mo share/locale/cs/LC_MESSAGES/plasma_wallpaper_org.kde.plasma.worldmap.mo share/locale/da/LC_MESSAGES/marble-maps.mo share/locale/da/LC_MESSAGES/marble.mo share/locale/da/LC_MESSAGES/marble_qt.qm share/locale/da/LC_MESSAGES/plasma_applet_org.kde.plasma.worldclock.mo share/locale/da/LC_MESSAGES/plasma_runner_marble.mo share/locale/da/LC_MESSAGES/plasma_wallpaper_org.kde.plasma.worldmap.mo share/locale/de/LC_MESSAGES/marble-behaim.mo share/locale/de/LC_MESSAGES/marble-maps.mo share/locale/de/LC_MESSAGES/marble.mo share/locale/de/LC_MESSAGES/marble_qt.qm share/locale/de/LC_MESSAGES/plasma_applet_org.kde.plasma.worldclock.mo share/locale/de/LC_MESSAGES/plasma_runner_marble.mo share/locale/de/LC_MESSAGES/plasma_wallpaper_org.kde.plasma.worldmap.mo share/locale/el/LC_MESSAGES/marble-maps.mo share/locale/el/LC_MESSAGES/marble.mo share/locale/el/LC_MESSAGES/marble_qt.qm share/locale/el/LC_MESSAGES/plasma_applet_org.kde.plasma.worldclock.mo share/locale/el/LC_MESSAGES/plasma_runner_marble.mo share/locale/el/LC_MESSAGES/plasma_wallpaper_org.kde.plasma.worldmap.mo share/locale/en/LC_MESSAGES/marble-maps.mo share/locale/en/LC_MESSAGES/marble_qt.qm share/locale/en_GB/LC_MESSAGES/marble-behaim.mo share/locale/en_GB/LC_MESSAGES/marble-maps.mo share/locale/en_GB/LC_MESSAGES/marble.mo share/locale/en_GB/LC_MESSAGES/marble_qt.qm share/locale/en_GB/LC_MESSAGES/plasma_applet_org.kde.plasma.worldclock.mo share/locale/en_GB/LC_MESSAGES/plasma_runner_marble.mo share/locale/en_GB/LC_MESSAGES/plasma_wallpaper_org.kde.plasma.worldmap.mo share/locale/eo/LC_MESSAGES/marble-maps.mo share/locale/eo/LC_MESSAGES/marble.mo share/locale/eo/LC_MESSAGES/marble_qt.qm share/locale/eo/LC_MESSAGES/plasma_applet_org.kde.plasma.worldclock.mo share/locale/eo/LC_MESSAGES/plasma_runner_marble.mo share/locale/eo/LC_MESSAGES/plasma_wallpaper_org.kde.plasma.worldmap.mo share/locale/es/LC_MESSAGES/marble-behaim.mo share/locale/es/LC_MESSAGES/marble-maps.mo share/locale/es/LC_MESSAGES/marble.mo share/locale/es/LC_MESSAGES/marble_qt.qm share/locale/es/LC_MESSAGES/plasma_applet_org.kde.plasma.worldclock.mo share/locale/es/LC_MESSAGES/plasma_runner_marble.mo share/locale/es/LC_MESSAGES/plasma_wallpaper_org.kde.plasma.worldmap.mo share/locale/et/LC_MESSAGES/marble-maps.mo share/locale/et/LC_MESSAGES/marble.mo share/locale/et/LC_MESSAGES/marble_qt.qm share/locale/et/LC_MESSAGES/plasma_applet_org.kde.plasma.worldclock.mo share/locale/et/LC_MESSAGES/plasma_runner_marble.mo share/locale/et/LC_MESSAGES/plasma_wallpaper_org.kde.plasma.worldmap.mo share/locale/eu/LC_MESSAGES/marble-behaim.mo share/locale/eu/LC_MESSAGES/marble-maps.mo share/locale/eu/LC_MESSAGES/marble.mo share/locale/eu/LC_MESSAGES/marble_qt.qm share/locale/eu/LC_MESSAGES/plasma_applet_org.kde.plasma.worldclock.mo share/locale/eu/LC_MESSAGES/plasma_runner_marble.mo share/locale/eu/LC_MESSAGES/plasma_wallpaper_org.kde.plasma.worldmap.mo share/locale/fi/LC_MESSAGES/marble-behaim.mo share/locale/fi/LC_MESSAGES/marble-maps.mo share/locale/fi/LC_MESSAGES/marble.mo share/locale/fi/LC_MESSAGES/marble_qt.qm share/locale/fi/LC_MESSAGES/plasma_applet_org.kde.plasma.worldclock.mo share/locale/fi/LC_MESSAGES/plasma_runner_marble.mo share/locale/fi/LC_MESSAGES/plasma_wallpaper_org.kde.plasma.worldmap.mo share/locale/fr/LC_MESSAGES/marble-behaim.mo share/locale/fr/LC_MESSAGES/marble-maps.mo share/locale/fr/LC_MESSAGES/marble.mo share/locale/fr/LC_MESSAGES/marble_qt.qm share/locale/fr/LC_MESSAGES/plasma_applet_org.kde.plasma.worldclock.mo share/locale/fr/LC_MESSAGES/plasma_runner_marble.mo share/locale/fr/LC_MESSAGES/plasma_wallpaper_org.kde.plasma.worldmap.mo share/locale/ga/LC_MESSAGES/marble-maps.mo share/locale/ga/LC_MESSAGES/marble.mo share/locale/ga/LC_MESSAGES/marble_qt.qm share/locale/ga/LC_MESSAGES/plasma_runner_marble.mo share/locale/gl/LC_MESSAGES/marble-behaim.mo share/locale/gl/LC_MESSAGES/marble-maps.mo share/locale/gl/LC_MESSAGES/marble.mo share/locale/gl/LC_MESSAGES/marble_qt.qm share/locale/gl/LC_MESSAGES/plasma_applet_org.kde.plasma.worldclock.mo share/locale/gl/LC_MESSAGES/plasma_runner_marble.mo share/locale/gl/LC_MESSAGES/plasma_wallpaper_org.kde.plasma.worldmap.mo share/locale/gu/LC_MESSAGES/marble-maps.mo share/locale/gu/LC_MESSAGES/marble.mo share/locale/gu/LC_MESSAGES/marble_qt.qm share/locale/he/LC_MESSAGES/marble-maps.mo share/locale/he/LC_MESSAGES/marble.mo share/locale/he/LC_MESSAGES/marble_qt.qm share/locale/he/LC_MESSAGES/plasma_runner_marble.mo share/locale/hi/LC_MESSAGES/marble-maps.mo share/locale/hi/LC_MESSAGES/marble.mo share/locale/hi/LC_MESSAGES/marble_qt.qm share/locale/hne/LC_MESSAGES/marble.mo share/locale/hr/LC_MESSAGES/marble-maps.mo share/locale/hr/LC_MESSAGES/marble.mo share/locale/hr/LC_MESSAGES/marble_qt.qm share/locale/hu/LC_MESSAGES/marble-maps.mo share/locale/hu/LC_MESSAGES/marble.mo share/locale/hu/LC_MESSAGES/marble_qt.qm +share/locale/hu/LC_MESSAGES/plasma_applet_org.kde.plasma.worldclock.mo share/locale/hu/LC_MESSAGES/plasma_runner_marble.mo +share/locale/hu/LC_MESSAGES/plasma_wallpaper_org.kde.plasma.worldmap.mo share/locale/id/LC_MESSAGES/marble-maps.mo share/locale/id/LC_MESSAGES/marble.mo share/locale/id/LC_MESSAGES/marble_qt.qm share/locale/id/LC_MESSAGES/plasma_applet_org.kde.plasma.worldclock.mo share/locale/id/LC_MESSAGES/plasma_runner_marble.mo share/locale/id/LC_MESSAGES/plasma_wallpaper_org.kde.plasma.worldmap.mo share/locale/is/LC_MESSAGES/marble-maps.mo share/locale/is/LC_MESSAGES/marble.mo share/locale/is/LC_MESSAGES/marble_qt.qm share/locale/is/LC_MESSAGES/plasma_applet_org.kde.plasma.worldclock.mo share/locale/is/LC_MESSAGES/plasma_runner_marble.mo share/locale/is/LC_MESSAGES/plasma_wallpaper_org.kde.plasma.worldmap.mo share/locale/it/LC_MESSAGES/marble-behaim.mo share/locale/it/LC_MESSAGES/marble-maps.mo share/locale/it/LC_MESSAGES/marble.mo share/locale/it/LC_MESSAGES/marble_qt.qm share/locale/it/LC_MESSAGES/plasma_applet_org.kde.plasma.worldclock.mo share/locale/it/LC_MESSAGES/plasma_runner_marble.mo share/locale/it/LC_MESSAGES/plasma_wallpaper_org.kde.plasma.worldmap.mo share/locale/ja/LC_MESSAGES/marble-maps.mo share/locale/ja/LC_MESSAGES/marble.mo share/locale/ja/LC_MESSAGES/marble_qt.qm share/locale/ja/LC_MESSAGES/plasma_applet_org.kde.plasma.worldclock.mo share/locale/ja/LC_MESSAGES/plasma_runner_marble.mo share/locale/ja/LC_MESSAGES/plasma_wallpaper_org.kde.plasma.worldmap.mo share/locale/ka/LC_MESSAGES/marble-behaim.mo share/locale/ka/LC_MESSAGES/marble-maps.mo share/locale/ka/LC_MESSAGES/marble.mo share/locale/ka/LC_MESSAGES/marble_qt.qm share/locale/ka/LC_MESSAGES/plasma_applet_org.kde.plasma.worldclock.mo share/locale/ka/LC_MESSAGES/plasma_runner_marble.mo share/locale/ka/LC_MESSAGES/plasma_wallpaper_org.kde.plasma.worldmap.mo share/locale/kk/LC_MESSAGES/marble-maps.mo share/locale/kk/LC_MESSAGES/marble.mo share/locale/kk/LC_MESSAGES/marble_qt.qm share/locale/kk/LC_MESSAGES/plasma_runner_marble.mo share/locale/km/LC_MESSAGES/marble-maps.mo share/locale/km/LC_MESSAGES/marble.mo share/locale/km/LC_MESSAGES/marble_qt.qm share/locale/ko/LC_MESSAGES/marble-maps.mo share/locale/ko/LC_MESSAGES/marble.mo share/locale/ko/LC_MESSAGES/marble_qt.qm share/locale/ko/LC_MESSAGES/plasma_applet_org.kde.plasma.worldclock.mo share/locale/ko/LC_MESSAGES/plasma_runner_marble.mo share/locale/ko/LC_MESSAGES/plasma_wallpaper_org.kde.plasma.worldmap.mo share/locale/lt/LC_MESSAGES/marble-maps.mo share/locale/lt/LC_MESSAGES/marble.mo share/locale/lt/LC_MESSAGES/marble_qt.qm share/locale/lt/LC_MESSAGES/plasma_applet_org.kde.plasma.worldclock.mo share/locale/lt/LC_MESSAGES/plasma_runner_marble.mo share/locale/lt/LC_MESSAGES/plasma_wallpaper_org.kde.plasma.worldmap.mo share/locale/lv/LC_MESSAGES/marble-behaim.mo share/locale/lv/LC_MESSAGES/marble-maps.mo share/locale/lv/LC_MESSAGES/marble.mo share/locale/lv/LC_MESSAGES/marble_qt.qm share/locale/lv/LC_MESSAGES/plasma_applet_org.kde.plasma.worldclock.mo share/locale/lv/LC_MESSAGES/plasma_runner_marble.mo share/locale/lv/LC_MESSAGES/plasma_wallpaper_org.kde.plasma.worldmap.mo share/locale/mai/LC_MESSAGES/marble.mo share/locale/ml/LC_MESSAGES/marble-maps.mo share/locale/ml/LC_MESSAGES/marble.mo share/locale/ml/LC_MESSAGES/marble_qt.qm share/locale/ml/LC_MESSAGES/plasma_applet_org.kde.plasma.worldclock.mo share/locale/ml/LC_MESSAGES/plasma_runner_marble.mo share/locale/ml/LC_MESSAGES/plasma_wallpaper_org.kde.plasma.worldmap.mo share/locale/mr/LC_MESSAGES/marble-maps.mo share/locale/mr/LC_MESSAGES/marble.mo share/locale/mr/LC_MESSAGES/marble_qt.qm share/locale/mr/LC_MESSAGES/plasma_runner_marble.mo share/locale/nb/LC_MESSAGES/marble-maps.mo share/locale/nb/LC_MESSAGES/marble.mo share/locale/nb/LC_MESSAGES/marble_qt.qm share/locale/nb/LC_MESSAGES/plasma_runner_marble.mo share/locale/nds/LC_MESSAGES/marble-maps.mo share/locale/nds/LC_MESSAGES/marble.mo share/locale/nds/LC_MESSAGES/marble_qt.qm share/locale/nds/LC_MESSAGES/plasma_runner_marble.mo share/locale/nl/LC_MESSAGES/marble-behaim.mo share/locale/nl/LC_MESSAGES/marble-maps.mo share/locale/nl/LC_MESSAGES/marble.mo share/locale/nl/LC_MESSAGES/marble_qt.qm share/locale/nl/LC_MESSAGES/plasma_applet_org.kde.plasma.worldclock.mo share/locale/nl/LC_MESSAGES/plasma_runner_marble.mo share/locale/nl/LC_MESSAGES/plasma_wallpaper_org.kde.plasma.worldmap.mo share/locale/nn/LC_MESSAGES/marble-maps.mo share/locale/nn/LC_MESSAGES/marble.mo share/locale/nn/LC_MESSAGES/marble_qt.qm share/locale/nn/LC_MESSAGES/plasma_applet_org.kde.plasma.worldclock.mo share/locale/nn/LC_MESSAGES/plasma_runner_marble.mo share/locale/nn/LC_MESSAGES/plasma_wallpaper_org.kde.plasma.worldmap.mo share/locale/oc/LC_MESSAGES/marble-maps.mo share/locale/oc/LC_MESSAGES/marble.mo share/locale/oc/LC_MESSAGES/marble_qt.qm share/locale/pa/LC_MESSAGES/marble-maps.mo share/locale/pa/LC_MESSAGES/marble.mo share/locale/pa/LC_MESSAGES/marble_qt.qm share/locale/pa/LC_MESSAGES/plasma_runner_marble.mo share/locale/pl/LC_MESSAGES/marble-behaim.mo share/locale/pl/LC_MESSAGES/marble-maps.mo share/locale/pl/LC_MESSAGES/marble.mo share/locale/pl/LC_MESSAGES/marble_qt.qm share/locale/pl/LC_MESSAGES/plasma_applet_org.kde.plasma.worldclock.mo share/locale/pl/LC_MESSAGES/plasma_runner_marble.mo share/locale/pl/LC_MESSAGES/plasma_wallpaper_org.kde.plasma.worldmap.mo share/locale/pt/LC_MESSAGES/marble-maps.mo share/locale/pt/LC_MESSAGES/marble.mo share/locale/pt/LC_MESSAGES/marble_qt.qm share/locale/pt/LC_MESSAGES/plasma_applet_org.kde.plasma.worldclock.mo share/locale/pt/LC_MESSAGES/plasma_runner_marble.mo share/locale/pt/LC_MESSAGES/plasma_wallpaper_org.kde.plasma.worldmap.mo share/locale/pt_BR/LC_MESSAGES/marble-maps.mo share/locale/pt_BR/LC_MESSAGES/marble.mo share/locale/pt_BR/LC_MESSAGES/marble_qt.qm share/locale/pt_BR/LC_MESSAGES/plasma_applet_org.kde.plasma.worldclock.mo share/locale/pt_BR/LC_MESSAGES/plasma_runner_marble.mo share/locale/pt_BR/LC_MESSAGES/plasma_wallpaper_org.kde.plasma.worldmap.mo share/locale/ro/LC_MESSAGES/marble-maps.mo share/locale/ro/LC_MESSAGES/marble.mo share/locale/ro/LC_MESSAGES/marble_qt.qm share/locale/ro/LC_MESSAGES/plasma_applet_org.kde.plasma.worldclock.mo share/locale/ru/LC_MESSAGES/marble-maps.mo share/locale/ru/LC_MESSAGES/marble.mo share/locale/ru/LC_MESSAGES/marble_qt.qm share/locale/ru/LC_MESSAGES/plasma_applet_org.kde.plasma.worldclock.mo share/locale/ru/LC_MESSAGES/plasma_runner_marble.mo share/locale/ru/LC_MESSAGES/plasma_wallpaper_org.kde.plasma.worldmap.mo share/locale/se/LC_MESSAGES/marble-maps.mo share/locale/se/LC_MESSAGES/marble.mo share/locale/se/LC_MESSAGES/marble_qt.qm share/locale/si/LC_MESSAGES/marble-maps.mo share/locale/si/LC_MESSAGES/marble.mo share/locale/si/LC_MESSAGES/marble_qt.qm share/locale/sk/LC_MESSAGES/marble-behaim.mo share/locale/sk/LC_MESSAGES/marble-maps.mo share/locale/sk/LC_MESSAGES/marble.mo share/locale/sk/LC_MESSAGES/marble_qt.qm share/locale/sk/LC_MESSAGES/plasma_applet_org.kde.plasma.worldclock.mo share/locale/sk/LC_MESSAGES/plasma_runner_marble.mo share/locale/sk/LC_MESSAGES/plasma_wallpaper_org.kde.plasma.worldmap.mo share/locale/sl/LC_MESSAGES/marble-behaim.mo share/locale/sl/LC_MESSAGES/marble-maps.mo share/locale/sl/LC_MESSAGES/marble.mo share/locale/sl/LC_MESSAGES/marble_qt.qm share/locale/sl/LC_MESSAGES/plasma_applet_org.kde.plasma.worldclock.mo share/locale/sl/LC_MESSAGES/plasma_runner_marble.mo share/locale/sl/LC_MESSAGES/plasma_wallpaper_org.kde.plasma.worldmap.mo share/locale/sv/LC_MESSAGES/marble-behaim.mo share/locale/sv/LC_MESSAGES/marble-maps.mo share/locale/sv/LC_MESSAGES/marble.mo share/locale/sv/LC_MESSAGES/marble_qt.qm share/locale/sv/LC_MESSAGES/plasma_applet_org.kde.plasma.worldclock.mo share/locale/sv/LC_MESSAGES/plasma_runner_marble.mo share/locale/sv/LC_MESSAGES/plasma_wallpaper_org.kde.plasma.worldmap.mo share/locale/th/LC_MESSAGES/marble.mo share/locale/tr/LC_MESSAGES/marble-behaim.mo share/locale/tr/LC_MESSAGES/marble-maps.mo share/locale/tr/LC_MESSAGES/marble.mo share/locale/tr/LC_MESSAGES/marble_qt.qm share/locale/tr/LC_MESSAGES/plasma_applet_org.kde.plasma.worldclock.mo share/locale/tr/LC_MESSAGES/plasma_runner_marble.mo share/locale/tr/LC_MESSAGES/plasma_wallpaper_org.kde.plasma.worldmap.mo share/locale/ug/LC_MESSAGES/marble-maps.mo share/locale/ug/LC_MESSAGES/marble.mo share/locale/ug/LC_MESSAGES/marble_qt.qm share/locale/ug/LC_MESSAGES/plasma_runner_marble.mo share/locale/uk/LC_MESSAGES/marble-behaim.mo share/locale/uk/LC_MESSAGES/marble-maps.mo share/locale/uk/LC_MESSAGES/marble.mo share/locale/uk/LC_MESSAGES/marble_qt.qm share/locale/uk/LC_MESSAGES/plasma_applet_org.kde.plasma.worldclock.mo share/locale/uk/LC_MESSAGES/plasma_runner_marble.mo share/locale/uk/LC_MESSAGES/plasma_wallpaper_org.kde.plasma.worldmap.mo share/locale/wa/LC_MESSAGES/marble-maps.mo share/locale/wa/LC_MESSAGES/marble.mo share/locale/wa/LC_MESSAGES/marble_qt.qm share/locale/zh_CN/LC_MESSAGES/marble-behaim.mo share/locale/zh_CN/LC_MESSAGES/marble-maps.mo share/locale/zh_CN/LC_MESSAGES/marble.mo share/locale/zh_CN/LC_MESSAGES/marble_qt.qm share/locale/zh_CN/LC_MESSAGES/plasma_applet_org.kde.plasma.worldclock.mo share/locale/zh_CN/LC_MESSAGES/plasma_runner_marble.mo share/locale/zh_CN/LC_MESSAGES/plasma_wallpaper_org.kde.plasma.worldmap.mo share/locale/zh_TW/LC_MESSAGES/marble-maps.mo share/locale/zh_TW/LC_MESSAGES/marble.mo share/locale/zh_TW/LC_MESSAGES/marble_qt.qm share/locale/zh_TW/LC_MESSAGES/plasma_applet_org.kde.plasma.worldclock.mo share/locale/zh_TW/LC_MESSAGES/plasma_runner_marble.mo share/locale/zh_TW/LC_MESSAGES/plasma_wallpaper_org.kde.plasma.worldmap.mo %%DATADIR%%/data/audio/KDE-Sys-App-Positive.ogg %%DATADIR%%/data/audio/KDE-Sys-List-End.ogg %%DATADIR%%/data/bitmaps/airport.png %%DATADIR%%/data/bitmaps/annotation.png %%DATADIR%%/data/bitmaps/antarctic_shelves.png %%DATADIR%%/data/bitmaps/audio-x-generic.png %%DATADIR%%/data/bitmaps/bookmark.png %%DATADIR%%/data/bitmaps/border_1.png %%DATADIR%%/data/bitmaps/border_2.png %%DATADIR%%/data/bitmaps/border_disputed.png %%DATADIR%%/data/bitmaps/border_maritime.png %%DATADIR%%/data/bitmaps/city_1_orange.png %%DATADIR%%/data/bitmaps/city_1_red.png %%DATADIR%%/data/bitmaps/city_1_white.png %%DATADIR%%/data/bitmaps/city_1_yellow.png %%DATADIR%%/data/bitmaps/city_2_orange.png %%DATADIR%%/data/bitmaps/city_2_red.png %%DATADIR%%/data/bitmaps/city_2_white.png %%DATADIR%%/data/bitmaps/city_2_yellow.png %%DATADIR%%/data/bitmaps/city_3_orange.png %%DATADIR%%/data/bitmaps/city_3_red.png %%DATADIR%%/data/bitmaps/city_3_white.png %%DATADIR%%/data/bitmaps/city_3_yellow.png %%DATADIR%%/data/bitmaps/city_4_orange.png %%DATADIR%%/data/bitmaps/city_4_red.png %%DATADIR%%/data/bitmaps/city_4_white.png %%DATADIR%%/data/bitmaps/city_4_yellow.png %%DATADIR%%/data/bitmaps/coordinate.png %%DATADIR%%/data/bitmaps/crater.png %%DATADIR%%/data/bitmaps/cursor_bc.png %%DATADIR%%/data/bitmaps/cursor_bl.png %%DATADIR%%/data/bitmaps/cursor_br.png %%DATADIR%%/data/bitmaps/cursor_cl.png %%DATADIR%%/data/bitmaps/cursor_cr.png %%DATADIR%%/data/bitmaps/cursor_tc.png %%DATADIR%%/data/bitmaps/cursor_tl.png %%DATADIR%%/data/bitmaps/cursor_tr.png %%DATADIR%%/data/bitmaps/default_location.png %%DATADIR%%/data/bitmaps/document-edit.png %%DATADIR%%/data/bitmaps/earth_apollo.jpg %%DATADIR%%/data/bitmaps/editarrows/arrow-diagonal-topleft-active.png %%DATADIR%%/data/bitmaps/editarrows/arrow-diagonal-topleft.png %%DATADIR%%/data/bitmaps/editarrows/arrow-diagonal-topright-active.png %%DATADIR%%/data/bitmaps/editarrows/arrow-diagonal-topright.png %%DATADIR%%/data/bitmaps/editarrows/arrow-horizontal-active.png %%DATADIR%%/data/bitmaps/editarrows/arrow-horizontal.png %%DATADIR%%/data/bitmaps/editarrows/arrow-rotation-bottomleft-active.png %%DATADIR%%/data/bitmaps/editarrows/arrow-rotation-bottomleft.png %%DATADIR%%/data/bitmaps/editarrows/arrow-rotation-bottomright-active.png %%DATADIR%%/data/bitmaps/editarrows/arrow-rotation-bottomright.png %%DATADIR%%/data/bitmaps/editarrows/arrow-rotation-topleft-active.png %%DATADIR%%/data/bitmaps/editarrows/arrow-rotation-topleft.png %%DATADIR%%/data/bitmaps/editarrows/arrow-rotation-topright-active.png %%DATADIR%%/data/bitmaps/editarrows/arrow-rotation-topright.png %%DATADIR%%/data/bitmaps/editarrows/arrow-vertical-active.png %%DATADIR%%/data/bitmaps/editarrows/arrow-vertical.png %%DATADIR%%/data/bitmaps/flag.png %%DATADIR%%/data/bitmaps/folder.png %%DATADIR%%/data/bitmaps/glacier.png %%DATADIR%%/data/bitmaps/highway_footway.png %%DATADIR%%/data/bitmaps/highway_motorway.png %%DATADIR%%/data/bitmaps/highway_path.png %%DATADIR%%/data/bitmaps/highway_primary.png %%DATADIR%%/data/bitmaps/highway_secondary.png %%DATADIR%%/data/bitmaps/highway_tertiary.png %%DATADIR%%/data/bitmaps/highway_track.png %%DATADIR%%/data/bitmaps/highway_trunk.png %%DATADIR%%/data/bitmaps/highway_unclassified.png %%DATADIR%%/data/bitmaps/lake.png %%DATADIR%%/data/bitmaps/lake_historic.png %%DATADIR%%/data/bitmaps/manned_landing.png %%DATADIR%%/data/bitmaps/media-playback-pause.png %%DATADIR%%/data/bitmaps/mountain_1.png %%DATADIR%%/data/bitmaps/nation.png %%DATADIR%%/data/bitmaps/notes_closed.png %%DATADIR%%/data/bitmaps/notes_open.png %%DATADIR%%/data/bitmaps/observatory.png %%DATADIR%%/data/bitmaps/ocean.png %%DATADIR%%/data/bitmaps/osm.png %%DATADIR%%/data/bitmaps/osmcarto/patterns/allotments.png %%DATADIR%%/data/bitmaps/osmcarto/patterns/beach.png %%DATADIR%%/data/bitmaps/osmcarto/patterns/cliff.png %%DATADIR%%/data/bitmaps/osmcarto/patterns/cliff2.png %%DATADIR%%/data/bitmaps/osmcarto/patterns/danger.png %%DATADIR%%/data/bitmaps/osmcarto/patterns/embankment.png %%DATADIR%%/data/bitmaps/osmcarto/patterns/forest.png %%DATADIR%%/data/bitmaps/osmcarto/patterns/glacier.png %%DATADIR%%/data/bitmaps/osmcarto/patterns/grave_yard_christian.png %%DATADIR%%/data/bitmaps/osmcarto/patterns/grave_yard_generic.png %%DATADIR%%/data/bitmaps/osmcarto/patterns/grave_yard_jewish.png %%DATADIR%%/data/bitmaps/osmcarto/patterns/grey_vertical_hatch.png %%DATADIR%%/data/bitmaps/osmcarto/patterns/ice.png %%DATADIR%%/data/bitmaps/osmcarto/patterns/military_red_hatch.png %%DATADIR%%/data/bitmaps/osmcarto/patterns/orchard.png %%DATADIR%%/data/bitmaps/osmcarto/patterns/quarry.png %%DATADIR%%/data/bitmaps/osmcarto/patterns/rock_overlay.png %%DATADIR%%/data/bitmaps/osmcarto/patterns/scree_overlay.png %%DATADIR%%/data/bitmaps/osmcarto/patterns/scrub.png %%DATADIR%%/data/bitmaps/osmcarto/patterns/vineyard.png %%DATADIR%%/data/bitmaps/osmcarto/patterns/wetland.png %%DATADIR%%/data/bitmaps/osmcarto/patterns/wetland_bog.png %%DATADIR%%/data/bitmaps/osmcarto/patterns/wetland_mangrove.png %%DATADIR%%/data/bitmaps/osmcarto/patterns/wetland_marsh.png %%DATADIR%%/data/bitmaps/osmcarto/patterns/wetland_reed.png %%DATADIR%%/data/bitmaps/osmcarto/patterns/wetland_swamp.png %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/motorway_10x1.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/motorway_10x2.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/motorway_10x3.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/motorway_10x4.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/motorway_11x1.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/motorway_11x2.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/motorway_11x3.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/motorway_11x4.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/motorway_1x1.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/motorway_1x2.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/motorway_1x3.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/motorway_1x4.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/motorway_2x1.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/motorway_2x2.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/motorway_2x3.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/motorway_2x4.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/motorway_3x1.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/motorway_3x2.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/motorway_3x3.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/motorway_3x4.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/motorway_4x1.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/motorway_4x2.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/motorway_4x3.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/motorway_4x4.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/motorway_5x1.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/motorway_5x2.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/motorway_5x3.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/motorway_5x4.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/motorway_6x1.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/motorway_6x2.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/motorway_6x3.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/motorway_6x4.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/motorway_7x1.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/motorway_7x2.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/motorway_7x3.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/motorway_7x4.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/motorway_8x1.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/motorway_8x2.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/motorway_8x3.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/motorway_8x4.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/motorway_9x1.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/motorway_9x2.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/motorway_9x3.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/motorway_9x4.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/primary_10x1.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/primary_10x2.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/primary_10x3.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/primary_10x4.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/primary_11x1.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/primary_11x2.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/primary_11x3.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/primary_11x4.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/primary_1x1.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/primary_1x2.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/primary_1x3.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/primary_1x4.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/primary_2x1.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/primary_2x2.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/primary_2x3.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/primary_2x4.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/primary_3x1.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/primary_3x2.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/primary_3x3.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/primary_3x4.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/primary_4x1.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/primary_4x2.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/primary_4x3.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/primary_4x4.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/primary_5x1.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/primary_5x2.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/primary_5x3.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/primary_5x4.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/primary_6x1.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/primary_6x2.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/primary_6x3.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/primary_6x4.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/primary_7x1.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/primary_7x2.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/primary_7x3.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/primary_7x4.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/primary_8x1.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/primary_8x2.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/primary_8x3.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/primary_8x4.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/primary_9x1.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/primary_9x2.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/primary_9x3.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/primary_9x4.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/secondary_10x1.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/secondary_10x2.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/secondary_10x3.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/secondary_10x4.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/secondary_11x1.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/secondary_11x2.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/secondary_11x3.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/secondary_11x4.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/secondary_1x1.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/secondary_1x2.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/secondary_1x3.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/secondary_1x4.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/secondary_2x1.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/secondary_2x2.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/secondary_2x3.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/secondary_2x4.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/secondary_3x1.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/secondary_3x2.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/secondary_3x3.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/secondary_3x4.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/secondary_4x1.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/secondary_4x2.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/secondary_4x3.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/secondary_4x4.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/secondary_5x1.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/secondary_5x2.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/secondary_5x3.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/secondary_5x4.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/secondary_6x1.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/secondary_6x2.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/secondary_6x3.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/secondary_6x4.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/secondary_7x1.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/secondary_7x2.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/secondary_7x3.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/secondary_7x4.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/secondary_8x1.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/secondary_8x2.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/secondary_8x3.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/secondary_8x4.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/secondary_9x1.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/secondary_9x2.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/secondary_9x3.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/secondary_9x4.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/tertiary_10x1.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/tertiary_10x2.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/tertiary_10x3.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/tertiary_10x4.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/tertiary_11x1.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/tertiary_11x2.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/tertiary_11x3.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/tertiary_11x4.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/tertiary_1x1.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/tertiary_1x2.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/tertiary_1x3.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/tertiary_1x4.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/tertiary_2x1.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/tertiary_2x2.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/tertiary_2x3.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/tertiary_2x4.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/tertiary_3x1.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/tertiary_3x2.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/tertiary_3x3.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/tertiary_3x4.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/tertiary_4x1.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/tertiary_4x2.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/tertiary_4x3.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/tertiary_4x4.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/tertiary_5x1.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/tertiary_5x2.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/tertiary_5x3.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/tertiary_5x4.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/tertiary_6x1.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/tertiary_6x2.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/tertiary_6x3.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/tertiary_6x4.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/tertiary_7x1.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/tertiary_7x2.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/tertiary_7x3.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/tertiary_7x4.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/tertiary_8x1.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/tertiary_8x2.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/tertiary_8x3.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/tertiary_8x4.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/tertiary_9x1.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/tertiary_9x2.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/tertiary_9x3.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/tertiary_9x4.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/trunk_10x1.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/trunk_10x2.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/trunk_10x3.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/trunk_10x4.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/trunk_11x1.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/trunk_11x2.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/trunk_11x3.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/trunk_11x4.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/trunk_1x1.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/trunk_1x2.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/trunk_1x3.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/trunk_1x4.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/trunk_2x1.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/trunk_2x2.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/trunk_2x3.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/trunk_2x4.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/trunk_3x1.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/trunk_3x2.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/trunk_3x3.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/trunk_3x4.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/trunk_4x1.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/trunk_4x2.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/trunk_4x3.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/trunk_4x4.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/trunk_5x1.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/trunk_5x2.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/trunk_5x3.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/trunk_5x4.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/trunk_6x1.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/trunk_6x2.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/trunk_6x3.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/trunk_6x4.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/trunk_7x1.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/trunk_7x2.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/trunk_7x3.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/trunk_7x4.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/trunk_8x1.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/trunk_8x2.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/trunk_8x3.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/trunk_8x4.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/trunk_9x1.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/trunk_9x2.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/trunk_9x3.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/trunk_9x4.svg %%DATADIR%%/data/bitmaps/other.png %%DATADIR%%/data/bitmaps/playa.png %%DATADIR%%/data/bitmaps/player-time.png %%DATADIR%%/data/bitmaps/pole_1.png %%DATADIR%%/data/bitmaps/pole_2.png %%DATADIR%%/data/bitmaps/redflag_22.png %%DATADIR%%/data/bitmaps/redflag_32.png %%DATADIR%%/data/bitmaps/river.png %%DATADIR%%/data/bitmaps/robotic_rover.png %%DATADIR%%/data/bitmaps/routing_pick.png %%DATADIR%%/data/bitmaps/routing_remove.png %%DATADIR%%/data/bitmaps/routing_step.png %%DATADIR%%/data/bitmaps/satellite.png %%DATADIR%%/data/bitmaps/shadowframe.png %%DATADIR%%/data/bitmaps/shipwreck.png %%DATADIR%%/data/bitmaps/stars/star_0_blue.png %%DATADIR%%/data/bitmaps/stars/star_0_bluewhite.png %%DATADIR%%/data/bitmaps/stars/star_0_garnetred.png %%DATADIR%%/data/bitmaps/stars/star_0_orange.png %%DATADIR%%/data/bitmaps/stars/star_0_red.png %%DATADIR%%/data/bitmaps/stars/star_0_white.png %%DATADIR%%/data/bitmaps/stars/star_0_yellow.png %%DATADIR%%/data/bitmaps/stars/star_3_blue.png %%DATADIR%%/data/bitmaps/stars/star_3_bluewhite.png %%DATADIR%%/data/bitmaps/stars/star_3_garnetred.png %%DATADIR%%/data/bitmaps/stars/star_3_orange.png %%DATADIR%%/data/bitmaps/stars/star_3_red.png %%DATADIR%%/data/bitmaps/stars/star_3_white.png %%DATADIR%%/data/bitmaps/stars/star_3_yellow.png %%DATADIR%%/data/bitmaps/turn-around.png %%DATADIR%%/data/bitmaps/turn-continue.png %%DATADIR%%/data/bitmaps/turn-end.png %%DATADIR%%/data/bitmaps/turn-exit-left.png %%DATADIR%%/data/bitmaps/turn-exit-right.png %%DATADIR%%/data/bitmaps/turn-ferry.png %%DATADIR%%/data/bitmaps/turn-left.png %%DATADIR%%/data/bitmaps/turn-merge.png %%DATADIR%%/data/bitmaps/turn-right.png %%DATADIR%%/data/bitmaps/turn-roundabout-ccw-far.png %%DATADIR%%/data/bitmaps/turn-roundabout-ccw-first.png %%DATADIR%%/data/bitmaps/turn-roundabout-ccw-second.png %%DATADIR%%/data/bitmaps/turn-roundabout-ccw-third.png %%DATADIR%%/data/bitmaps/turn-roundabout-cw-far.png %%DATADIR%%/data/bitmaps/turn-roundabout-cw-first.png %%DATADIR%%/data/bitmaps/turn-roundabout-cw-second.png %%DATADIR%%/data/bitmaps/turn-roundabout-cw-third.png %%DATADIR%%/data/bitmaps/turn-sharp-left.png %%DATADIR%%/data/bitmaps/turn-sharp-right.png %%DATADIR%%/data/bitmaps/turn-slight-left.png %%DATADIR%%/data/bitmaps/turn-slight-right.png %%DATADIR%%/data/bitmaps/unmanned_hard_landing.png %%DATADIR%%/data/bitmaps/unmanned_soft_landing.png %%DATADIR%%/data/bitmaps/urban_area.png %%DATADIR%%/data/bitmaps/valley.png %%DATADIR%%/data/bitmaps/volcano_1.png %%DATADIR%%/data/bitmaps/waypoint.png %%DATADIR%%/data/bitmaps/wikipedia.png %%DATADIR%%/data/credits_authors.html %%DATADIR%%/data/credits_data.html %%DATADIR%%/data/flags/flag_ad.svg %%DATADIR%%/data/flags/flag_ae.svg %%DATADIR%%/data/flags/flag_af.svg %%DATADIR%%/data/flags/flag_ag.svg %%DATADIR%%/data/flags/flag_ai.svg %%DATADIR%%/data/flags/flag_al.svg %%DATADIR%%/data/flags/flag_am.svg %%DATADIR%%/data/flags/flag_an.svg %%DATADIR%%/data/flags/flag_ao.svg %%DATADIR%%/data/flags/flag_aq.svg %%DATADIR%%/data/flags/flag_ar.svg %%DATADIR%%/data/flags/flag_as.svg %%DATADIR%%/data/flags/flag_at.svg %%DATADIR%%/data/flags/flag_au.svg %%DATADIR%%/data/flags/flag_aw.svg %%DATADIR%%/data/flags/flag_ax.svg %%DATADIR%%/data/flags/flag_az.svg %%DATADIR%%/data/flags/flag_ba.svg %%DATADIR%%/data/flags/flag_bb.svg %%DATADIR%%/data/flags/flag_bd.svg %%DATADIR%%/data/flags/flag_be.svg %%DATADIR%%/data/flags/flag_bf.svg %%DATADIR%%/data/flags/flag_bg.svg %%DATADIR%%/data/flags/flag_bh.svg %%DATADIR%%/data/flags/flag_bi.svg %%DATADIR%%/data/flags/flag_bj.svg %%DATADIR%%/data/flags/flag_bm.svg %%DATADIR%%/data/flags/flag_bn.svg %%DATADIR%%/data/flags/flag_bo.svg %%DATADIR%%/data/flags/flag_br.svg %%DATADIR%%/data/flags/flag_bs.svg %%DATADIR%%/data/flags/flag_bt.svg %%DATADIR%%/data/flags/flag_bv.svg %%DATADIR%%/data/flags/flag_bw.svg %%DATADIR%%/data/flags/flag_by.svg %%DATADIR%%/data/flags/flag_bz.svg %%DATADIR%%/data/flags/flag_ca.svg %%DATADIR%%/data/flags/flag_cc.svg %%DATADIR%%/data/flags/flag_cd.svg %%DATADIR%%/data/flags/flag_cf.svg %%DATADIR%%/data/flags/flag_cg.svg %%DATADIR%%/data/flags/flag_ch.svg %%DATADIR%%/data/flags/flag_ci.svg %%DATADIR%%/data/flags/flag_ck.svg %%DATADIR%%/data/flags/flag_cl.svg %%DATADIR%%/data/flags/flag_cm.svg %%DATADIR%%/data/flags/flag_cn.svg %%DATADIR%%/data/flags/flag_co.svg %%DATADIR%%/data/flags/flag_cr.svg %%DATADIR%%/data/flags/flag_cu.svg %%DATADIR%%/data/flags/flag_cv.svg %%DATADIR%%/data/flags/flag_cx.svg %%DATADIR%%/data/flags/flag_cy.svg %%DATADIR%%/data/flags/flag_cz.svg %%DATADIR%%/data/flags/flag_de.svg %%DATADIR%%/data/flags/flag_dj.svg %%DATADIR%%/data/flags/flag_dk.svg %%DATADIR%%/data/flags/flag_dm.svg %%DATADIR%%/data/flags/flag_do.svg %%DATADIR%%/data/flags/flag_dz.svg %%DATADIR%%/data/flags/flag_ec.svg %%DATADIR%%/data/flags/flag_ee.svg %%DATADIR%%/data/flags/flag_eg.svg %%DATADIR%%/data/flags/flag_eh.svg %%DATADIR%%/data/flags/flag_er.svg %%DATADIR%%/data/flags/flag_es.svg %%DATADIR%%/data/flags/flag_et.svg %%DATADIR%%/data/flags/flag_fi.svg %%DATADIR%%/data/flags/flag_fj.svg %%DATADIR%%/data/flags/flag_fk.svg %%DATADIR%%/data/flags/flag_fm.svg %%DATADIR%%/data/flags/flag_fo.svg %%DATADIR%%/data/flags/flag_fr.svg %%DATADIR%%/data/flags/flag_ga.svg %%DATADIR%%/data/flags/flag_gb.svg %%DATADIR%%/data/flags/flag_gd.svg %%DATADIR%%/data/flags/flag_ge.svg %%DATADIR%%/data/flags/flag_gf.svg %%DATADIR%%/data/flags/flag_gg.svg %%DATADIR%%/data/flags/flag_gh.svg %%DATADIR%%/data/flags/flag_gi.svg %%DATADIR%%/data/flags/flag_gl.svg %%DATADIR%%/data/flags/flag_gm.svg %%DATADIR%%/data/flags/flag_gn.svg %%DATADIR%%/data/flags/flag_gp.svg %%DATADIR%%/data/flags/flag_gq.svg %%DATADIR%%/data/flags/flag_gr.svg %%DATADIR%%/data/flags/flag_gs.svg %%DATADIR%%/data/flags/flag_gt.svg %%DATADIR%%/data/flags/flag_gu.svg %%DATADIR%%/data/flags/flag_gw.svg %%DATADIR%%/data/flags/flag_gy.svg %%DATADIR%%/data/flags/flag_hk.svg %%DATADIR%%/data/flags/flag_hm.svg %%DATADIR%%/data/flags/flag_hn.svg %%DATADIR%%/data/flags/flag_hr.svg %%DATADIR%%/data/flags/flag_ht.svg %%DATADIR%%/data/flags/flag_hu.svg %%DATADIR%%/data/flags/flag_id.svg %%DATADIR%%/data/flags/flag_ie.svg %%DATADIR%%/data/flags/flag_il.svg %%DATADIR%%/data/flags/flag_im.svg %%DATADIR%%/data/flags/flag_in.svg %%DATADIR%%/data/flags/flag_io.svg %%DATADIR%%/data/flags/flag_iq.svg %%DATADIR%%/data/flags/flag_ir.svg %%DATADIR%%/data/flags/flag_is.svg %%DATADIR%%/data/flags/flag_it.svg %%DATADIR%%/data/flags/flag_je.svg %%DATADIR%%/data/flags/flag_jm.svg %%DATADIR%%/data/flags/flag_jo.svg %%DATADIR%%/data/flags/flag_jp.svg %%DATADIR%%/data/flags/flag_ke.svg %%DATADIR%%/data/flags/flag_kg.svg %%DATADIR%%/data/flags/flag_kh.svg %%DATADIR%%/data/flags/flag_ki.svg %%DATADIR%%/data/flags/flag_km.svg %%DATADIR%%/data/flags/flag_kn.svg %%DATADIR%%/data/flags/flag_kp.svg %%DATADIR%%/data/flags/flag_kr.svg %%DATADIR%%/data/flags/flag_kw.svg %%DATADIR%%/data/flags/flag_ky.svg %%DATADIR%%/data/flags/flag_kz.svg %%DATADIR%%/data/flags/flag_la.svg %%DATADIR%%/data/flags/flag_lb.svg %%DATADIR%%/data/flags/flag_lc.svg %%DATADIR%%/data/flags/flag_li.svg %%DATADIR%%/data/flags/flag_lk.svg %%DATADIR%%/data/flags/flag_lr.svg %%DATADIR%%/data/flags/flag_ls.svg %%DATADIR%%/data/flags/flag_lt.svg %%DATADIR%%/data/flags/flag_lu.svg %%DATADIR%%/data/flags/flag_lv.svg %%DATADIR%%/data/flags/flag_ly.svg %%DATADIR%%/data/flags/flag_ma.svg %%DATADIR%%/data/flags/flag_mc.svg %%DATADIR%%/data/flags/flag_md.svg %%DATADIR%%/data/flags/flag_me.svg %%DATADIR%%/data/flags/flag_mg.svg %%DATADIR%%/data/flags/flag_mh.svg %%DATADIR%%/data/flags/flag_mk.svg %%DATADIR%%/data/flags/flag_ml.svg %%DATADIR%%/data/flags/flag_mm.svg %%DATADIR%%/data/flags/flag_mn.svg %%DATADIR%%/data/flags/flag_mo.svg %%DATADIR%%/data/flags/flag_mp.svg %%DATADIR%%/data/flags/flag_mq.svg %%DATADIR%%/data/flags/flag_mr.svg %%DATADIR%%/data/flags/flag_ms.svg %%DATADIR%%/data/flags/flag_mt.svg %%DATADIR%%/data/flags/flag_mu.svg %%DATADIR%%/data/flags/flag_mv.svg %%DATADIR%%/data/flags/flag_mw.svg %%DATADIR%%/data/flags/flag_mx.svg %%DATADIR%%/data/flags/flag_my.svg %%DATADIR%%/data/flags/flag_mz.svg %%DATADIR%%/data/flags/flag_na.svg %%DATADIR%%/data/flags/flag_nc.svg %%DATADIR%%/data/flags/flag_ne.svg %%DATADIR%%/data/flags/flag_nf.svg %%DATADIR%%/data/flags/flag_ng.svg %%DATADIR%%/data/flags/flag_ni.svg %%DATADIR%%/data/flags/flag_nl.svg %%DATADIR%%/data/flags/flag_no.svg %%DATADIR%%/data/flags/flag_np.svg %%DATADIR%%/data/flags/flag_nr.svg %%DATADIR%%/data/flags/flag_nu.svg %%DATADIR%%/data/flags/flag_nz.svg %%DATADIR%%/data/flags/flag_om.svg %%DATADIR%%/data/flags/flag_pa.svg %%DATADIR%%/data/flags/flag_pe.svg %%DATADIR%%/data/flags/flag_pf.svg %%DATADIR%%/data/flags/flag_pg.svg %%DATADIR%%/data/flags/flag_ph.svg %%DATADIR%%/data/flags/flag_pk.svg %%DATADIR%%/data/flags/flag_pl.svg %%DATADIR%%/data/flags/flag_pm.svg %%DATADIR%%/data/flags/flag_pn.svg %%DATADIR%%/data/flags/flag_pr.svg %%DATADIR%%/data/flags/flag_ps.svg %%DATADIR%%/data/flags/flag_pt.svg %%DATADIR%%/data/flags/flag_pw.svg %%DATADIR%%/data/flags/flag_py.svg %%DATADIR%%/data/flags/flag_qa.svg %%DATADIR%%/data/flags/flag_re.svg %%DATADIR%%/data/flags/flag_ro.svg %%DATADIR%%/data/flags/flag_rs.svg %%DATADIR%%/data/flags/flag_ru.svg %%DATADIR%%/data/flags/flag_rw.svg %%DATADIR%%/data/flags/flag_sa.svg %%DATADIR%%/data/flags/flag_sb.svg %%DATADIR%%/data/flags/flag_sc.svg %%DATADIR%%/data/flags/flag_sd.svg %%DATADIR%%/data/flags/flag_se.svg %%DATADIR%%/data/flags/flag_sg.svg %%DATADIR%%/data/flags/flag_sh.svg %%DATADIR%%/data/flags/flag_si.svg %%DATADIR%%/data/flags/flag_sj.svg %%DATADIR%%/data/flags/flag_sk.svg %%DATADIR%%/data/flags/flag_sl.svg %%DATADIR%%/data/flags/flag_sm.svg %%DATADIR%%/data/flags/flag_sn.svg %%DATADIR%%/data/flags/flag_so.svg %%DATADIR%%/data/flags/flag_sr.svg %%DATADIR%%/data/flags/flag_st.svg %%DATADIR%%/data/flags/flag_sv.svg %%DATADIR%%/data/flags/flag_sy.svg %%DATADIR%%/data/flags/flag_sz.svg %%DATADIR%%/data/flags/flag_tc.svg %%DATADIR%%/data/flags/flag_td.svg %%DATADIR%%/data/flags/flag_tf.svg %%DATADIR%%/data/flags/flag_tg.svg %%DATADIR%%/data/flags/flag_th.svg %%DATADIR%%/data/flags/flag_tj.svg %%DATADIR%%/data/flags/flag_tk.svg %%DATADIR%%/data/flags/flag_tl.svg %%DATADIR%%/data/flags/flag_tm.svg %%DATADIR%%/data/flags/flag_tn.svg %%DATADIR%%/data/flags/flag_to.svg %%DATADIR%%/data/flags/flag_tr.svg %%DATADIR%%/data/flags/flag_tt.svg %%DATADIR%%/data/flags/flag_tv.svg %%DATADIR%%/data/flags/flag_tw.svg %%DATADIR%%/data/flags/flag_tz.svg %%DATADIR%%/data/flags/flag_ua.svg %%DATADIR%%/data/flags/flag_ug.svg %%DATADIR%%/data/flags/flag_um.svg %%DATADIR%%/data/flags/flag_us.svg %%DATADIR%%/data/flags/flag_uy.svg %%DATADIR%%/data/flags/flag_uz.svg %%DATADIR%%/data/flags/flag_vc.svg %%DATADIR%%/data/flags/flag_ve.svg %%DATADIR%%/data/flags/flag_vg.svg %%DATADIR%%/data/flags/flag_vi.svg %%DATADIR%%/data/flags/flag_vn.svg %%DATADIR%%/data/flags/flag_vu.svg %%DATADIR%%/data/flags/flag_wf.svg %%DATADIR%%/data/flags/flag_ws.svg %%DATADIR%%/data/flags/flag_ye.svg %%DATADIR%%/data/flags/flag_yt.svg %%DATADIR%%/data/flags/flag_za.svg %%DATADIR%%/data/flags/flag_zm.svg %%DATADIR%%/data/flags/flag_zw.svg %%DATADIR%%/data/landcolors.leg %%DATADIR%%/data/legend.css %%DATADIR%%/data/legend.html %%DATADIR%%/data/licenses/lgpl2.txt %%DATADIR%%/data/maps/earth/behaim1492/0/000000/000000_000000.jpg %%DATADIR%%/data/maps/earth/behaim1492/0/000000/000000_000001.jpg %%DATADIR%%/data/maps/earth/behaim1492/1/000000/000000_000000.jpg %%DATADIR%%/data/maps/earth/behaim1492/1/000000/000000_000001.jpg %%DATADIR%%/data/maps/earth/behaim1492/1/000000/000000_000002.jpg %%DATADIR%%/data/maps/earth/behaim1492/1/000000/000000_000003.jpg %%DATADIR%%/data/maps/earth/behaim1492/1/000001/000001_000000.jpg %%DATADIR%%/data/maps/earth/behaim1492/1/000001/000001_000001.jpg %%DATADIR%%/data/maps/earth/behaim1492/1/000001/000001_000002.jpg %%DATADIR%%/data/maps/earth/behaim1492/1/000001/000001_000003.jpg %%DATADIR%%/data/maps/earth/behaim1492/behaim1492-preview.png %%DATADIR%%/data/maps/earth/behaim1492/behaim1492.dgml %%DATADIR%%/data/maps/earth/behaim1492/behaim1492.kml %%DATADIR%%/data/maps/earth/behaim1492/figuren.kml %%DATADIR%%/data/maps/earth/behaim1492/ghillany/0/000000/000000_000000.jpg %%DATADIR%%/data/maps/earth/behaim1492/ghillany/0/000000/000000_000001.jpg %%DATADIR%%/data/maps/earth/behaim1492/legend.html %%DATADIR%%/data/maps/earth/behaim1492/legend/Martin_Behaim.jpg %%DATADIR%%/data/maps/earth/behaim1492/legend/globus.jpg %%DATADIR%%/data/maps/earth/behaim1492/ravenstein/0/000000/000000_000000.jpg %%DATADIR%%/data/maps/earth/behaim1492/ravenstein/0/000000/000000_000001.jpg %%DATADIR%%/data/maps/earth/behaim1492/texte.kml %%DATADIR%%/data/maps/earth/bluemarble/bluemarble-preview.png %%DATADIR%%/data/maps/earth/bluemarble/bluemarble.dgml %%DATADIR%%/data/maps/earth/bluemarble/bluemarble.jpg %%DATADIR%%/data/maps/earth/bluemarble/legend/desert.png %%DATADIR%%/data/maps/earth/bluemarble/legend/ice.png %%DATADIR%%/data/maps/earth/bluemarble/legend/mountain.png %%DATADIR%%/data/maps/earth/bluemarble/legend/vegetation.png %%DATADIR%%/data/maps/earth/bluemarble/legend/water.png %%DATADIR%%/data/maps/earth/citylights/citylights-preview.png %%DATADIR%%/data/maps/earth/citylights/citylights.dgml %%DATADIR%%/data/maps/earth/citylights/citylights.jpg %%DATADIR%%/data/maps/earth/citylights/legend/city.png %%DATADIR%%/data/maps/earth/citylights/legend/darkterrain.png %%DATADIR%%/data/maps/earth/citylights/legend/lightterrain.png %%DATADIR%%/data/maps/earth/citylights/legend/water.png %%DATADIR%%/data/maps/earth/clouds/0/000000/000000_000000.jpg %%DATADIR%%/data/maps/earth/clouds/0/000000/000000_000001.jpg %%DATADIR%%/data/maps/earth/hillshading/0/0/0.png %%DATADIR%%/data/maps/earth/humanitarian/0/0/0.png %%DATADIR%%/data/maps/earth/openstreetmap/0/0/0.png %%DATADIR%%/data/maps/earth/openstreetmap/Alcatraz.jpg %%DATADIR%%/data/maps/earth/openstreetmap/Brasilia.jpg %%DATADIR%%/data/maps/earth/openstreetmap/Church of the Holy Sepulchre.jpg %%DATADIR%%/data/maps/earth/openstreetmap/Death Valley.jpg %%DATADIR%%/data/maps/earth/openstreetmap/Desert breath.jpg %%DATADIR%%/data/maps/earth/openstreetmap/Disneyland.jpg %%DATADIR%%/data/maps/earth/openstreetmap/Dunnottar Castle.jpg %%DATADIR%%/data/maps/earth/openstreetmap/Eiffel Tower.jpg %%DATADIR%%/data/maps/earth/openstreetmap/Kheops Pyramid.jpg %%DATADIR%%/data/maps/earth/openstreetmap/Klyuchevskaya Sopka.jpg %%DATADIR%%/data/maps/earth/openstreetmap/Maree Man.jpg %%DATADIR%%/data/maps/earth/openstreetmap/Moscow Kremlin.jpg %%DATADIR%%/data/maps/earth/openstreetmap/Nazca Lines.jpg %%DATADIR%%/data/maps/earth/openstreetmap/Palace Het Loo.jpg %%DATADIR%%/data/maps/earth/openstreetmap/Palm Jumeirah.jpg %%DATADIR%%/data/maps/earth/openstreetmap/Russell Square.jpg %%DATADIR%%/data/maps/earth/openstreetmap/Santorini.jpg %%DATADIR%%/data/maps/earth/openstreetmap/Shuttle Landing Facility.jpg %%DATADIR%%/data/maps/earth/openstreetmap/Sofievka.jpg %%DATADIR%%/data/maps/earth/openstreetmap/St Peter's Basilica.jpg %%DATADIR%%/data/maps/earth/openstreetmap/Stonehenge.jpg %%DATADIR%%/data/maps/earth/openstreetmap/Sydney Opera House.jpg %%DATADIR%%/data/maps/earth/openstreetmap/Taj Mahal.jpg %%DATADIR%%/data/maps/earth/openstreetmap/Taranaki.jpg %%DATADIR%%/data/maps/earth/openstreetmap/The Great Wall of China.jpg %%DATADIR%%/data/maps/earth/openstreetmap/The World.jpg %%DATADIR%%/data/maps/earth/openstreetmap/Vesuvius.jpg %%DATADIR%%/data/maps/earth/openstreetmap/legend.html %%DATADIR%%/data/maps/earth/openstreetmap/legend/airportapron.png %%DATADIR%%/data/maps/earth/openstreetmap/legend/airportrunway.png %%DATADIR%%/data/maps/earth/openstreetmap/legend/boundary.png %%DATADIR%%/data/maps/earth/openstreetmap/legend/bridge.png %%DATADIR%%/data/maps/earth/openstreetmap/legend/bridleway.png %%DATADIR%%/data/maps/earth/openstreetmap/legend/byway.png %%DATADIR%%/data/maps/earth/openstreetmap/legend/cycleway.png %%DATADIR%%/data/maps/earth/openstreetmap/legend/footway.png %%DATADIR%%/data/maps/earth/openstreetmap/legend/mapicons/accommodation_hotel2.p.12.png %%DATADIR%%/data/maps/earth/openstreetmap/legend/mapicons/accommodation_motel.p.12.png %%DATADIR%%/data/maps/earth/openstreetmap/legend/mapicons/amenity_court.p.12.png %%DATADIR%%/data/maps/earth/openstreetmap/legend/mapicons/amenity_firestation.p.12.png %%DATADIR%%/data/maps/earth/openstreetmap/legend/mapicons/amenity_library.p.12.png %%DATADIR%%/data/maps/earth/openstreetmap/legend/mapicons/amenity_playground.p.12.png %%DATADIR%%/data/maps/earth/openstreetmap/legend/mapicons/amenity_post_office.p.12.png %%DATADIR%%/data/maps/earth/openstreetmap/legend/mapicons/amenity_public_building.p.12.png %%DATADIR%%/data/maps/earth/openstreetmap/legend/mapicons/amenity_toilets.p.12.png %%DATADIR%%/data/maps/earth/openstreetmap/legend/mapicons/education_college.p.12.png %%DATADIR%%/data/maps/earth/openstreetmap/legend/mapicons/education_nursery.p.12.png %%DATADIR%%/data/maps/earth/openstreetmap/legend/mapicons/education_school.p.12.png %%DATADIR%%/data/maps/earth/openstreetmap/legend/mapicons/education_university.p.12.png %%DATADIR%%/data/maps/earth/openstreetmap/legend/mapicons/food_bar.p.12.png %%DATADIR%%/data/maps/earth/openstreetmap/legend/mapicons/food_biergarten.p.12.png %%DATADIR%%/data/maps/earth/openstreetmap/legend/mapicons/food_cafe.p.12.png %%DATADIR%%/data/maps/earth/openstreetmap/legend/mapicons/food_drinkingtap.p.12.png %%DATADIR%%/data/maps/earth/openstreetmap/legend/mapicons/food_fastfood.p.12.png %%DATADIR%%/data/maps/earth/openstreetmap/legend/mapicons/food_ice_cream.p.12.png %%DATADIR%%/data/maps/earth/openstreetmap/legend/mapicons/food_pub.p.12.png %%DATADIR%%/data/maps/earth/openstreetmap/legend/mapicons/food_restaurant.p.12.png %%DATADIR%%/data/maps/earth/openstreetmap/legend/mapicons/health_dentist.p.12.png %%DATADIR%%/data/maps/earth/openstreetmap/legend/mapicons/health_doctors.p.12.png %%DATADIR%%/data/maps/earth/openstreetmap/legend/mapicons/health_hospital.p.12.png %%DATADIR%%/data/maps/earth/openstreetmap/legend/mapicons/health_pharmacy.p.12.png %%DATADIR%%/data/maps/earth/openstreetmap/legend/mapicons/health_veterinary.p.12.png %%DATADIR%%/data/maps/earth/openstreetmap/legend/mapicons/money_atm.p.12.png %%DATADIR%%/data/maps/earth/openstreetmap/legend/mapicons/money_bank.p.12.png %%DATADIR%%/data/maps/earth/openstreetmap/legend/mapicons/money_currency_exchange.p.12.png %%DATADIR%%/data/maps/earth/openstreetmap/legend/mapicons/place_of_worship_christian.p.12.png %%DATADIR%%/data/maps/earth/openstreetmap/legend/mapicons/place_of_worship_unknown.p.12.png %%DATADIR%%/data/maps/earth/openstreetmap/legend/mapicons/poi_embassy.p.12.png %%DATADIR%%/data/maps/earth/openstreetmap/legend/mapicons/power_station_gas.p.12.png %%DATADIR%%/data/maps/earth/openstreetmap/legend/mapicons/shopping_alcohol.p.12.png %%DATADIR%%/data/maps/earth/openstreetmap/legend/mapicons/shopping_bakery.p.12.png %%DATADIR%%/data/maps/earth/openstreetmap/legend/mapicons/shopping_book.p.12.png %%DATADIR%%/data/maps/earth/openstreetmap/legend/mapicons/shopping_car.p.12.png %%DATADIR%%/data/maps/earth/openstreetmap/legend/mapicons/shopping_clothes.p.12.png %%DATADIR%%/data/maps/earth/openstreetmap/legend/mapicons/shopping_convenience.p.12.png %%DATADIR%%/data/maps/earth/openstreetmap/legend/mapicons/shopping_gift.p.12.png %%DATADIR%%/data/maps/earth/openstreetmap/legend/mapicons/tourist_cinema.p.12.png %%DATADIR%%/data/maps/earth/openstreetmap/legend/mapicons/tourist_monument.p.12.png %%DATADIR%%/data/maps/earth/openstreetmap/legend/mapicons/tourist_ruin.p.12.png %%DATADIR%%/data/maps/earth/openstreetmap/legend/mapicons/tourist_theatre.p.12.png %%DATADIR%%/data/maps/earth/openstreetmap/legend/motorway.png %%DATADIR%%/data/maps/earth/openstreetmap/legend/primaryroad.png %%DATADIR%%/data/maps/earth/openstreetmap/legend/railway.png %%DATADIR%%/data/maps/earth/openstreetmap/legend/railwaystation.png %%DATADIR%%/data/maps/earth/openstreetmap/legend/secondaryroad.png %%DATADIR%%/data/maps/earth/openstreetmap/legend/significantbuilding.png %%DATADIR%%/data/maps/earth/openstreetmap/legend/subway.png %%DATADIR%%/data/maps/earth/openstreetmap/legend/summitpeak.png %%DATADIR%%/data/maps/earth/openstreetmap/legend/track.png %%DATADIR%%/data/maps/earth/openstreetmap/legend/tram.png %%DATADIR%%/data/maps/earth/openstreetmap/legend/trunkroad.png %%DATADIR%%/data/maps/earth/openstreetmap/legend/tunnel.png %%DATADIR%%/data/maps/earth/openstreetmap/legend/unclassifiedroad.png %%DATADIR%%/data/maps/earth/openstreetmap/legend/unsurfacedroad.png %%DATADIR%%/data/maps/earth/openstreetmap/openstreetmap-preview.png %%DATADIR%%/data/maps/earth/openstreetmap/openstreetmap.dgml %%DATADIR%%/data/maps/earth/openstreetmap/tour.kml %%DATADIR%%/data/maps/earth/plain/plain-preview.png %%DATADIR%%/data/maps/earth/plain/plain.dgml %%DATADIR%%/data/maps/earth/political/political-preview.png %%DATADIR%%/data/maps/earth/political/political.dgml %%DATADIR%%/data/maps/earth/precip-dec/precip-dec-preview.png %%DATADIR%%/data/maps/earth/precip-dec/precip-dec.dgml %%DATADIR%%/data/maps/earth/precip-dec/precip-dec.jpg %%DATADIR%%/data/maps/earth/precip-july/precip-july-preview.png %%DATADIR%%/data/maps/earth/precip-july/precip-july.dgml %%DATADIR%%/data/maps/earth/precip-july/precip-july.jpg %%DATADIR%%/data/maps/earth/schagen1689/legend.html %%DATADIR%%/data/maps/earth/schagen1689/legend/lake.png %%DATADIR%%/data/maps/earth/schagen1689/legend/mountain.png %%DATADIR%%/data/maps/earth/schagen1689/legend/river.png %%DATADIR%%/data/maps/earth/schagen1689/legend/schagen_orig.png %%DATADIR%%/data/maps/earth/schagen1689/legend/schagen_title.png %%DATADIR%%/data/maps/earth/schagen1689/legend/town.png %%DATADIR%%/data/maps/earth/schagen1689/schagen1689-preview.png %%DATADIR%%/data/maps/earth/schagen1689/schagen1689.dgml %%DATADIR%%/data/maps/earth/schagen1689/schagen1689.jpg %%DATADIR%%/data/maps/earth/srtm/0/000000/000000_000000.jpg %%DATADIR%%/data/maps/earth/srtm/0/000000/000000_000001.jpg %%DATADIR%%/data/maps/earth/srtm/1/000000/000000_000000.jpg %%DATADIR%%/data/maps/earth/srtm/1/000000/000000_000001.jpg %%DATADIR%%/data/maps/earth/srtm/1/000000/000000_000002.jpg %%DATADIR%%/data/maps/earth/srtm/1/000000/000000_000003.jpg %%DATADIR%%/data/maps/earth/srtm/1/000001/000001_000000.jpg %%DATADIR%%/data/maps/earth/srtm/1/000001/000001_000001.jpg %%DATADIR%%/data/maps/earth/srtm/1/000001/000001_000002.jpg %%DATADIR%%/data/maps/earth/srtm/1/000001/000001_000003.jpg %%DATADIR%%/data/maps/earth/srtm/2/000000/000000_000000.jpg %%DATADIR%%/data/maps/earth/srtm/2/000000/000000_000001.jpg %%DATADIR%%/data/maps/earth/srtm/2/000000/000000_000002.jpg %%DATADIR%%/data/maps/earth/srtm/2/000000/000000_000003.jpg %%DATADIR%%/data/maps/earth/srtm/2/000000/000000_000004.jpg %%DATADIR%%/data/maps/earth/srtm/2/000000/000000_000005.jpg %%DATADIR%%/data/maps/earth/srtm/2/000000/000000_000006.jpg %%DATADIR%%/data/maps/earth/srtm/2/000000/000000_000007.jpg %%DATADIR%%/data/maps/earth/srtm/2/000001/000001_000000.jpg %%DATADIR%%/data/maps/earth/srtm/2/000001/000001_000001.jpg %%DATADIR%%/data/maps/earth/srtm/2/000001/000001_000002.jpg %%DATADIR%%/data/maps/earth/srtm/2/000001/000001_000003.jpg %%DATADIR%%/data/maps/earth/srtm/2/000001/000001_000004.jpg %%DATADIR%%/data/maps/earth/srtm/2/000001/000001_000005.jpg %%DATADIR%%/data/maps/earth/srtm/2/000001/000001_000006.jpg %%DATADIR%%/data/maps/earth/srtm/2/000001/000001_000007.jpg %%DATADIR%%/data/maps/earth/srtm/2/000002/000002_000000.jpg %%DATADIR%%/data/maps/earth/srtm/2/000002/000002_000001.jpg %%DATADIR%%/data/maps/earth/srtm/2/000002/000002_000002.jpg %%DATADIR%%/data/maps/earth/srtm/2/000002/000002_000003.jpg %%DATADIR%%/data/maps/earth/srtm/2/000002/000002_000004.jpg %%DATADIR%%/data/maps/earth/srtm/2/000002/000002_000005.jpg %%DATADIR%%/data/maps/earth/srtm/2/000002/000002_000006.jpg %%DATADIR%%/data/maps/earth/srtm/2/000002/000002_000007.jpg %%DATADIR%%/data/maps/earth/srtm/2/000003/000003_000000.jpg %%DATADIR%%/data/maps/earth/srtm/2/000003/000003_000001.jpg %%DATADIR%%/data/maps/earth/srtm/2/000003/000003_000002.jpg %%DATADIR%%/data/maps/earth/srtm/2/000003/000003_000003.jpg %%DATADIR%%/data/maps/earth/srtm/2/000003/000003_000004.jpg %%DATADIR%%/data/maps/earth/srtm/2/000003/000003_000005.jpg %%DATADIR%%/data/maps/earth/srtm/2/000003/000003_000006.jpg %%DATADIR%%/data/maps/earth/srtm/2/000003/000003_000007.jpg %%DATADIR%%/data/maps/earth/srtm/3/000000/000000_000000.jpg %%DATADIR%%/data/maps/earth/srtm/3/000000/000000_000001.jpg %%DATADIR%%/data/maps/earth/srtm/3/000000/000000_000002.jpg %%DATADIR%%/data/maps/earth/srtm/3/000000/000000_000003.jpg %%DATADIR%%/data/maps/earth/srtm/3/000000/000000_000004.jpg %%DATADIR%%/data/maps/earth/srtm/3/000000/000000_000005.jpg %%DATADIR%%/data/maps/earth/srtm/3/000000/000000_000006.jpg %%DATADIR%%/data/maps/earth/srtm/3/000000/000000_000007.jpg %%DATADIR%%/data/maps/earth/srtm/3/000000/000000_000008.jpg %%DATADIR%%/data/maps/earth/srtm/3/000000/000000_000009.jpg %%DATADIR%%/data/maps/earth/srtm/3/000000/000000_000010.jpg %%DATADIR%%/data/maps/earth/srtm/3/000000/000000_000011.jpg %%DATADIR%%/data/maps/earth/srtm/3/000000/000000_000012.jpg %%DATADIR%%/data/maps/earth/srtm/3/000000/000000_000013.jpg %%DATADIR%%/data/maps/earth/srtm/3/000000/000000_000014.jpg %%DATADIR%%/data/maps/earth/srtm/3/000000/000000_000015.jpg %%DATADIR%%/data/maps/earth/srtm/3/000001/000001_000000.jpg %%DATADIR%%/data/maps/earth/srtm/3/000001/000001_000001.jpg %%DATADIR%%/data/maps/earth/srtm/3/000001/000001_000002.jpg %%DATADIR%%/data/maps/earth/srtm/3/000001/000001_000003.jpg %%DATADIR%%/data/maps/earth/srtm/3/000001/000001_000004.jpg %%DATADIR%%/data/maps/earth/srtm/3/000001/000001_000005.jpg %%DATADIR%%/data/maps/earth/srtm/3/000001/000001_000006.jpg %%DATADIR%%/data/maps/earth/srtm/3/000001/000001_000007.jpg %%DATADIR%%/data/maps/earth/srtm/3/000001/000001_000008.jpg %%DATADIR%%/data/maps/earth/srtm/3/000001/000001_000009.jpg %%DATADIR%%/data/maps/earth/srtm/3/000001/000001_000010.jpg %%DATADIR%%/data/maps/earth/srtm/3/000001/000001_000011.jpg %%DATADIR%%/data/maps/earth/srtm/3/000001/000001_000012.jpg %%DATADIR%%/data/maps/earth/srtm/3/000001/000001_000013.jpg %%DATADIR%%/data/maps/earth/srtm/3/000001/000001_000014.jpg %%DATADIR%%/data/maps/earth/srtm/3/000001/000001_000015.jpg %%DATADIR%%/data/maps/earth/srtm/3/000002/000002_000000.jpg %%DATADIR%%/data/maps/earth/srtm/3/000002/000002_000001.jpg %%DATADIR%%/data/maps/earth/srtm/3/000002/000002_000002.jpg %%DATADIR%%/data/maps/earth/srtm/3/000002/000002_000003.jpg %%DATADIR%%/data/maps/earth/srtm/3/000002/000002_000004.jpg %%DATADIR%%/data/maps/earth/srtm/3/000002/000002_000005.jpg %%DATADIR%%/data/maps/earth/srtm/3/000002/000002_000006.jpg %%DATADIR%%/data/maps/earth/srtm/3/000002/000002_000007.jpg %%DATADIR%%/data/maps/earth/srtm/3/000002/000002_000008.jpg %%DATADIR%%/data/maps/earth/srtm/3/000002/000002_000009.jpg %%DATADIR%%/data/maps/earth/srtm/3/000002/000002_000010.jpg %%DATADIR%%/data/maps/earth/srtm/3/000002/000002_000011.jpg %%DATADIR%%/data/maps/earth/srtm/3/000002/000002_000012.jpg %%DATADIR%%/data/maps/earth/srtm/3/000002/000002_000013.jpg %%DATADIR%%/data/maps/earth/srtm/3/000002/000002_000014.jpg %%DATADIR%%/data/maps/earth/srtm/3/000002/000002_000015.jpg %%DATADIR%%/data/maps/earth/srtm/3/000003/000003_000000.jpg %%DATADIR%%/data/maps/earth/srtm/3/000003/000003_000001.jpg %%DATADIR%%/data/maps/earth/srtm/3/000003/000003_000002.jpg %%DATADIR%%/data/maps/earth/srtm/3/000003/000003_000003.jpg %%DATADIR%%/data/maps/earth/srtm/3/000003/000003_000004.jpg %%DATADIR%%/data/maps/earth/srtm/3/000003/000003_000005.jpg %%DATADIR%%/data/maps/earth/srtm/3/000003/000003_000006.jpg %%DATADIR%%/data/maps/earth/srtm/3/000003/000003_000007.jpg %%DATADIR%%/data/maps/earth/srtm/3/000003/000003_000008.jpg %%DATADIR%%/data/maps/earth/srtm/3/000003/000003_000009.jpg %%DATADIR%%/data/maps/earth/srtm/3/000003/000003_000010.jpg %%DATADIR%%/data/maps/earth/srtm/3/000003/000003_000011.jpg %%DATADIR%%/data/maps/earth/srtm/3/000003/000003_000012.jpg %%DATADIR%%/data/maps/earth/srtm/3/000003/000003_000013.jpg %%DATADIR%%/data/maps/earth/srtm/3/000003/000003_000014.jpg %%DATADIR%%/data/maps/earth/srtm/3/000003/000003_000015.jpg %%DATADIR%%/data/maps/earth/srtm/3/000004/000004_000000.jpg %%DATADIR%%/data/maps/earth/srtm/3/000004/000004_000001.jpg %%DATADIR%%/data/maps/earth/srtm/3/000004/000004_000002.jpg %%DATADIR%%/data/maps/earth/srtm/3/000004/000004_000003.jpg %%DATADIR%%/data/maps/earth/srtm/3/000004/000004_000004.jpg %%DATADIR%%/data/maps/earth/srtm/3/000004/000004_000005.jpg %%DATADIR%%/data/maps/earth/srtm/3/000004/000004_000006.jpg %%DATADIR%%/data/maps/earth/srtm/3/000004/000004_000007.jpg %%DATADIR%%/data/maps/earth/srtm/3/000004/000004_000008.jpg %%DATADIR%%/data/maps/earth/srtm/3/000004/000004_000009.jpg %%DATADIR%%/data/maps/earth/srtm/3/000004/000004_000010.jpg %%DATADIR%%/data/maps/earth/srtm/3/000004/000004_000011.jpg %%DATADIR%%/data/maps/earth/srtm/3/000004/000004_000012.jpg %%DATADIR%%/data/maps/earth/srtm/3/000004/000004_000013.jpg %%DATADIR%%/data/maps/earth/srtm/3/000004/000004_000014.jpg %%DATADIR%%/data/maps/earth/srtm/3/000004/000004_000015.jpg %%DATADIR%%/data/maps/earth/srtm/3/000005/000005_000000.jpg %%DATADIR%%/data/maps/earth/srtm/3/000005/000005_000001.jpg %%DATADIR%%/data/maps/earth/srtm/3/000005/000005_000002.jpg %%DATADIR%%/data/maps/earth/srtm/3/000005/000005_000003.jpg %%DATADIR%%/data/maps/earth/srtm/3/000005/000005_000004.jpg %%DATADIR%%/data/maps/earth/srtm/3/000005/000005_000005.jpg %%DATADIR%%/data/maps/earth/srtm/3/000005/000005_000006.jpg %%DATADIR%%/data/maps/earth/srtm/3/000005/000005_000007.jpg %%DATADIR%%/data/maps/earth/srtm/3/000005/000005_000008.jpg %%DATADIR%%/data/maps/earth/srtm/3/000005/000005_000009.jpg %%DATADIR%%/data/maps/earth/srtm/3/000005/000005_000010.jpg %%DATADIR%%/data/maps/earth/srtm/3/000005/000005_000011.jpg %%DATADIR%%/data/maps/earth/srtm/3/000005/000005_000012.jpg %%DATADIR%%/data/maps/earth/srtm/3/000005/000005_000013.jpg %%DATADIR%%/data/maps/earth/srtm/3/000005/000005_000014.jpg %%DATADIR%%/data/maps/earth/srtm/3/000005/000005_000015.jpg %%DATADIR%%/data/maps/earth/srtm/3/000006/000006_000000.jpg %%DATADIR%%/data/maps/earth/srtm/3/000006/000006_000001.jpg %%DATADIR%%/data/maps/earth/srtm/3/000006/000006_000002.jpg %%DATADIR%%/data/maps/earth/srtm/3/000006/000006_000003.jpg %%DATADIR%%/data/maps/earth/srtm/3/000006/000006_000004.jpg %%DATADIR%%/data/maps/earth/srtm/3/000006/000006_000005.jpg %%DATADIR%%/data/maps/earth/srtm/3/000006/000006_000006.jpg %%DATADIR%%/data/maps/earth/srtm/3/000006/000006_000007.jpg %%DATADIR%%/data/maps/earth/srtm/3/000006/000006_000008.jpg %%DATADIR%%/data/maps/earth/srtm/3/000006/000006_000009.jpg %%DATADIR%%/data/maps/earth/srtm/3/000006/000006_000010.jpg %%DATADIR%%/data/maps/earth/srtm/3/000006/000006_000011.jpg %%DATADIR%%/data/maps/earth/srtm/3/000006/000006_000012.jpg %%DATADIR%%/data/maps/earth/srtm/3/000006/000006_000013.jpg %%DATADIR%%/data/maps/earth/srtm/3/000006/000006_000014.jpg %%DATADIR%%/data/maps/earth/srtm/3/000006/000006_000015.jpg %%DATADIR%%/data/maps/earth/srtm/3/000007/000007_000000.jpg %%DATADIR%%/data/maps/earth/srtm/3/000007/000007_000001.jpg %%DATADIR%%/data/maps/earth/srtm/3/000007/000007_000002.jpg %%DATADIR%%/data/maps/earth/srtm/3/000007/000007_000003.jpg %%DATADIR%%/data/maps/earth/srtm/3/000007/000007_000004.jpg %%DATADIR%%/data/maps/earth/srtm/3/000007/000007_000005.jpg %%DATADIR%%/data/maps/earth/srtm/3/000007/000007_000006.jpg %%DATADIR%%/data/maps/earth/srtm/3/000007/000007_000007.jpg %%DATADIR%%/data/maps/earth/srtm/3/000007/000007_000008.jpg %%DATADIR%%/data/maps/earth/srtm/3/000007/000007_000009.jpg %%DATADIR%%/data/maps/earth/srtm/3/000007/000007_000010.jpg %%DATADIR%%/data/maps/earth/srtm/3/000007/000007_000011.jpg %%DATADIR%%/data/maps/earth/srtm/3/000007/000007_000012.jpg %%DATADIR%%/data/maps/earth/srtm/3/000007/000007_000013.jpg %%DATADIR%%/data/maps/earth/srtm/3/000007/000007_000014.jpg %%DATADIR%%/data/maps/earth/srtm/3/000007/000007_000015.jpg %%DATADIR%%/data/maps/earth/srtm/srtm-preview.png %%DATADIR%%/data/maps/earth/srtm/srtm.dgml %%DATADIR%%/data/maps/earth/srtm2/0/000000/000000_000000.png %%DATADIR%%/data/maps/earth/srtm2/0/000000/000000_000001.png %%DATADIR%%/data/maps/earth/srtm2/srtm2.dgml %%DATADIR%%/data/maps/earth/temp-dec/temp-dec-preview.png %%DATADIR%%/data/maps/earth/temp-dec/temp-dec.dgml %%DATADIR%%/data/maps/earth/temp-dec/temp-dec.jpg %%DATADIR%%/data/maps/earth/temp-july/temp-july-preview.png %%DATADIR%%/data/maps/earth/temp-july/temp-july.dgml %%DATADIR%%/data/maps/earth/temp-july/temp-july.jpg %%DATADIR%%/data/maps/earth/vectorosm/0/0/0.o5m %%DATADIR%%/data/maps/earth/vectorosm/legend.html %%DATADIR%%/data/maps/earth/vectorosm/vectorosm-preview.png %%DATADIR%%/data/maps/earth/vectorosm/vectorosm.dgml %%DATADIR%%/data/maps/moon/clementine/clementine-preview.png %%DATADIR%%/data/maps/moon/clementine/clementine.dgml %%DATADIR%%/data/maps/moon/clementine/clementine.jpg %%DATADIR%%/data/maps/moon/clementine/legend.html %%DATADIR%%/data/maps/moon/clementine/tour.kml %%DATADIR%%/data/mwdbii/DATELINE.PNT %%DATADIR%%/data/mwdbii/PCOAST.PNT %%DATADIR%%/data/mwdbii/PDIFFBORDER.PNT %%DATADIR%%/data/mwdbii/PGLACIER.PNT %%DATADIR%%/data/mwdbii/PISLAND.PNT %%DATADIR%%/data/mwdbii/PLAKE.PNT %%DATADIR%%/data/mwdbii/PLAKEISLAND.PNT %%DATADIR%%/data/mwdbii/PUSA48.DIFF.PNT %%DATADIR%%/data/mwdbii/RIVER.PNT %%DATADIR%%/data/naturalearth/ne_50m_admin_0_boundary_lines_land.pn2 %%DATADIR%%/data/naturalearth/ne_50m_admin_0_boundary_lines_maritime_indicator.pn2 %%DATADIR%%/data/naturalearth/ne_50m_admin_0_breakaway_disputed_areas.pn2 %%DATADIR%%/data/naturalearth/ne_50m_admin_0_countries.pn2 %%DATADIR%%/data/naturalearth/ne_50m_admin_0_pacific_groupings.pn2 %%DATADIR%%/data/naturalearth/ne_50m_admin_1_states_provinces_lines.pn2 %%DATADIR%%/data/naturalearth/ne_50m_antarctic_ice_shelves_lines.pn2 %%DATADIR%%/data/naturalearth/ne_50m_antarctic_ice_shelves_polys.pn2 %%DATADIR%%/data/naturalearth/ne_50m_coastline.pn2 %%DATADIR%%/data/naturalearth/ne_50m_glaciated_areas.pn2 %%DATADIR%%/data/naturalearth/ne_50m_lakes.pn2 %%DATADIR%%/data/naturalearth/ne_50m_lakes_historic.pn2 %%DATADIR%%/data/naturalearth/ne_50m_land.pn2 %%DATADIR%%/data/naturalearth/ne_50m_playas.pn2 %%DATADIR%%/data/naturalearth/ne_50m_rivers_lake_centerlines.pn2 %%DATADIR%%/data/naturalearth/ne_50m_urban_areas.pn2 %%DATADIR%%/data/placemarks/baseplacemarks.cache %%DATADIR%%/data/placemarks/boundaryplacemarks.cache %%DATADIR%%/data/placemarks/cityplacemarks.cache %%DATADIR%%/data/placemarks/elevplacemarks.cache %%DATADIR%%/data/placemarks/moonlandingsites.cache %%DATADIR%%/data/placemarks/moonterrain.cache %%DATADIR%%/data/placemarks/otherplacemarks.cache %%DATADIR%%/data/precipcolors.leg %%DATADIR%%/data/seacolors.leg %%DATADIR%%/data/stars/constellations.dat %%DATADIR%%/data/stars/deepsky.png %%DATADIR%%/data/stars/dso.dat %%DATADIR%%/data/stars/names.csv %%DATADIR%%/data/stars/stars.dat %%DATADIR%%/data/svg/application-x-marble-gray.png %%DATADIR%%/data/svg/application-x-marble.png %%DATADIR%%/data/svg/application-x-marble.svg %%DATADIR%%/data/svg/bookmark.svg %%DATADIR%%/data/svg/coordinate.svg %%DATADIR%%/data/svg/dot-circle-regular.svg %%DATADIR%%/data/svg/glow.png %%DATADIR%%/data/svg/lunarmap.svg %%DATADIR%%/data/svg/marble-logo-32dpi.png %%DATADIR%%/data/svg/marble-logo-72dpi.png %%DATADIR%%/data/svg/marble-logo-inverted-32dpi.png %%DATADIR%%/data/svg/marble-logo-inverted-72dpi.png %%DATADIR%%/data/svg/marble-logo.png %%DATADIR%%/data/svg/marble-logo.svg %%DATADIR%%/data/svg/marsmap.svg %%DATADIR%%/data/svg/material/maps/ic_directions_bike_48px.svg %%DATADIR%%/data/svg/material/maps/ic_directions_boat_48px.svg %%DATADIR%%/data/svg/material/maps/ic_directions_bus_48px.svg %%DATADIR%%/data/svg/material/maps/ic_directions_car_48px.svg %%DATADIR%%/data/svg/material/maps/ic_directions_railway_48px.svg %%DATADIR%%/data/svg/material/maps/ic_directions_run_48px.svg %%DATADIR%%/data/svg/material/maps/ic_directions_subway_48px.svg %%DATADIR%%/data/svg/material/maps/ic_directions_walk_48px.svg %%DATADIR%%/data/svg/material/maps/ic_tram_48px.svg %%DATADIR%%/data/svg/moon.png %%DATADIR%%/data/svg/osmcarto/svg/airtransport/aerodrome.svg %%DATADIR%%/data/svg/osmcarto/svg/airtransport/helipad.svg %%DATADIR%%/data/svg/osmcarto/svg/amenity/archaeological_site.16.svg %%DATADIR%%/data/svg/osmcarto/svg/amenity/artwork.svg %%DATADIR%%/data/svg/osmcarto/svg/amenity/atm.16.svg %%DATADIR%%/data/svg/osmcarto/svg/amenity/bank.16.svg %%DATADIR%%/data/svg/osmcarto/svg/amenity/bar.16.svg %%DATADIR%%/data/svg/osmcarto/svg/amenity/biergarten.16.svg %%DATADIR%%/data/svg/osmcarto/svg/amenity/cafe.16.svg %%DATADIR%%/data/svg/osmcarto/svg/amenity/car_wash.svg %%DATADIR%%/data/svg/osmcarto/svg/amenity/cave.svg %%DATADIR%%/data/svg/osmcarto/svg/amenity/cinema.16.svg %%DATADIR%%/data/svg/osmcarto/svg/amenity/community_centre-14.svg %%DATADIR%%/data/svg/osmcarto/svg/amenity/courthouse-16.svg %%DATADIR%%/data/svg/osmcarto/svg/amenity/drinking_water.16.svg %%DATADIR%%/data/svg/osmcarto/svg/amenity/emergency_phone.16.svg %%DATADIR%%/data/svg/osmcarto/svg/amenity/fast_food.16.svg %%DATADIR%%/data/svg/osmcarto/svg/amenity/firestation.16.svg %%DATADIR%%/data/svg/osmcarto/svg/amenity/fountain-14.svg %%DATADIR%%/data/svg/osmcarto/svg/amenity/information.16.svg %%DATADIR%%/data/svg/osmcarto/svg/amenity/library.20.svg %%DATADIR%%/data/svg/osmcarto/svg/amenity/monument.16.svg %%DATADIR%%/data/svg/osmcarto/svg/amenity/mountain_rescue.16.svg %%DATADIR%%/data/svg/osmcarto/svg/amenity/museum.16.svg %%DATADIR%%/data/svg/osmcarto/svg/amenity/nightclub.18.svg %%DATADIR%%/data/svg/osmcarto/svg/amenity/picnic.16.svg %%DATADIR%%/data/svg/osmcarto/svg/amenity/playground.16.svg %%DATADIR%%/data/svg/osmcarto/svg/amenity/police.16.svg %%DATADIR%%/data/svg/osmcarto/svg/amenity/post_box-12.svg %%DATADIR%%/data/svg/osmcarto/svg/amenity/post_office-14.svg %%DATADIR%%/data/svg/osmcarto/svg/amenity/prison.16.svg %%DATADIR%%/data/svg/osmcarto/svg/amenity/pub.16.svg %%DATADIR%%/data/svg/osmcarto/svg/amenity/recycling.16.svg %%DATADIR%%/data/svg/osmcarto/svg/amenity/restaurant.16.svg %%DATADIR%%/data/svg/osmcarto/svg/amenity/social_facility.svg %%DATADIR%%/data/svg/osmcarto/svg/amenity/telephone.16.svg %%DATADIR%%/data/svg/osmcarto/svg/amenity/theatre.16.svg %%DATADIR%%/data/svg/osmcarto/svg/amenity/toilets.16.svg %%DATADIR%%/data/svg/osmcarto/svg/amenity/tourist_memorial.16.svg %%DATADIR%%/data/svg/osmcarto/svg/amenity/town_hall.16.svg %%DATADIR%%/data/svg/osmcarto/svg/amenity/viewpoint.16.svg %%DATADIR%%/data/svg/osmcarto/svg/amenity/water_park.16.svg %%DATADIR%%/data/svg/osmcarto/svg/amenity/water_tower.16.svg %%DATADIR%%/data/svg/osmcarto/svg/amenity/windmill.16.svg %%DATADIR%%/data/svg/osmcarto/svg/black/buddhist.16.svg %%DATADIR%%/data/svg/osmcarto/svg/black/christian.16.svg %%DATADIR%%/data/svg/osmcarto/svg/black/hinduist.16.svg %%DATADIR%%/data/svg/osmcarto/svg/black/jewish.16.svg %%DATADIR%%/data/svg/osmcarto/svg/black/muslim.16.svg %%DATADIR%%/data/svg/osmcarto/svg/black/place_of_worship.16.svg %%DATADIR%%/data/svg/osmcarto/svg/black/power_wind-16.svg %%DATADIR%%/data/svg/osmcarto/svg/black/shintoist.16.svg %%DATADIR%%/data/svg/osmcarto/svg/black/sikhist.16.svg %%DATADIR%%/data/svg/osmcarto/svg/black/taoist.16.svg %%DATADIR%%/data/svg/osmcarto/svg/health/dentist.16.svg %%DATADIR%%/data/svg/osmcarto/svg/health/doctors.16.svg %%DATADIR%%/data/svg/osmcarto/svg/health/hospital.16.svg %%DATADIR%%/data/svg/osmcarto/svg/health/pharmacy.16.svg %%DATADIR%%/data/svg/osmcarto/svg/health/veterinary-14.svg %%DATADIR%%/data/svg/osmcarto/svg/individual/bench.16.svg %%DATADIR%%/data/svg/osmcarto/svg/individual/entrance.10.svg %%DATADIR%%/data/svg/osmcarto/svg/individual/gate.svg %%DATADIR%%/data/svg/osmcarto/svg/individual/level_crossing.svg %%DATADIR%%/data/svg/osmcarto/svg/individual/level_crossing2.svg %%DATADIR%%/data/svg/osmcarto/svg/individual/liftgate.svg %%DATADIR%%/data/svg/osmcarto/svg/individual/mini_roundabout.svg %%DATADIR%%/data/svg/osmcarto/svg/individual/peak.svg %%DATADIR%%/data/svg/osmcarto/svg/individual/power_tower.svg %%DATADIR%%/data/svg/osmcarto/svg/individual/power_tower_small.svg %%DATADIR%%/data/svg/osmcarto/svg/individual/pylon.svg %%DATADIR%%/data/svg/osmcarto/svg/individual/railway_station.svg %%DATADIR%%/data/svg/osmcarto/svg/individual/saddle.svg %%DATADIR%%/data/svg/osmcarto/svg/individual/speedcamera.svg %%DATADIR%%/data/svg/osmcarto/svg/individual/spring.svg %%DATADIR%%/data/svg/osmcarto/svg/individual/square.svg %%DATADIR%%/data/svg/osmcarto/svg/individual/traffic_light.svg %%DATADIR%%/data/svg/osmcarto/svg/individual/tree-16.svg %%DATADIR%%/data/svg/osmcarto/svg/individual/tree-29-autumn.svg %%DATADIR%%/data/svg/osmcarto/svg/individual/tree-29-winter.svg %%DATADIR%%/data/svg/osmcarto/svg/individual/tree-29.svg %%DATADIR%%/data/svg/osmcarto/svg/individual/volcano.svg %%DATADIR%%/data/svg/osmcarto/svg/individual/waste_basket.10.svg %%DATADIR%%/data/svg/osmcarto/svg/indoor/door.16.svg %%DATADIR%%/data/svg/osmcarto/svg/indoor/door_b.16.svg %%DATADIR%%/data/svg/osmcarto/svg/indoor/wall.16.svg %%DATADIR%%/data/svg/osmcarto/svg/indoor/wall_b.16.svg %%DATADIR%%/data/svg/osmcarto/svg/leisure/golf.svg %%DATADIR%%/data/svg/osmcarto/svg/leisure/miniature_golf.svg %%DATADIR%%/data/svg/osmcarto/svg/manmade/communications.16.svg %%DATADIR%%/data/svg/osmcarto/svg/manmade/hunting-stand.16.svg %%DATADIR%%/data/svg/osmcarto/svg/place/place-4-z7.svg %%DATADIR%%/data/svg/osmcarto/svg/place/place-4.svg %%DATADIR%%/data/svg/osmcarto/svg/place/place-6-z7.svg %%DATADIR%%/data/svg/osmcarto/svg/place/place-6.svg %%DATADIR%%/data/svg/osmcarto/svg/place/place-capital-6.svg %%DATADIR%%/data/svg/osmcarto/svg/place/place-capital-8.svg %%DATADIR%%/data/svg/osmcarto/svg/place/place-capital-adminlevel2.svg %%DATADIR%%/data/svg/osmcarto/svg/shop/art.svg %%DATADIR%%/data/svg/osmcarto/svg/shop/bag-14.svg %%DATADIR%%/data/svg/osmcarto/svg/shop/beauty-14.svg %%DATADIR%%/data/svg/osmcarto/svg/shop/beverages-14.svg %%DATADIR%%/data/svg/osmcarto/svg/shop/butcher-14.svg %%DATADIR%%/data/svg/osmcarto/svg/shop/car_parts-14.svg %%DATADIR%%/data/svg/osmcarto/svg/shop/chemist-14.svg %%DATADIR%%/data/svg/osmcarto/svg/shop/computer-14.svg %%DATADIR%%/data/svg/osmcarto/svg/shop/confectionery-14.svg %%DATADIR%%/data/svg/osmcarto/svg/shop/copyshop.svg %%DATADIR%%/data/svg/osmcarto/svg/shop/deli.svg %%DATADIR%%/data/svg/osmcarto/svg/shop/department_store-16.svg %%DATADIR%%/data/svg/osmcarto/svg/shop/florist.16.svg %%DATADIR%%/data/svg/osmcarto/svg/shop/garden_centre-14.svg %%DATADIR%%/data/svg/osmcarto/svg/shop/greengrocer-14.svg %%DATADIR%%/data/svg/osmcarto/svg/shop/hifi-14.svg %%DATADIR%%/data/svg/osmcarto/svg/shop/ice-cream-14.svg %%DATADIR%%/data/svg/osmcarto/svg/shop/kiosk-14.svg %%DATADIR%%/data/svg/osmcarto/svg/shop/laundry-14.svg %%DATADIR%%/data/svg/osmcarto/svg/shop/mobile_phone.svg %%DATADIR%%/data/svg/osmcarto/svg/shop/motorcycle-14.svg %%DATADIR%%/data/svg/osmcarto/svg/shop/musical_instrument-14.svg %%DATADIR%%/data/svg/osmcarto/svg/shop/newsagent-14.svg %%DATADIR%%/data/svg/osmcarto/svg/shop/outdoor-14.svg %%DATADIR%%/data/svg/osmcarto/svg/shop/perfumery-14.svg %%DATADIR%%/data/svg/osmcarto/svg/shop/photo-14.svg %%DATADIR%%/data/svg/osmcarto/svg/shop/seafood-14.svg %%DATADIR%%/data/svg/osmcarto/svg/shop/shop-14.svg %%DATADIR%%/data/svg/osmcarto/svg/shop/shop_alcohol.16.svg %%DATADIR%%/data/svg/osmcarto/svg/shop/shop_bakery.16.svg %%DATADIR%%/data/svg/osmcarto/svg/shop/shop_bicycle.16.svg %%DATADIR%%/data/svg/osmcarto/svg/shop/shop_books.16.svg %%DATADIR%%/data/svg/osmcarto/svg/shop/shop_car.svg %%DATADIR%%/data/svg/osmcarto/svg/shop/shop_clothes.16.svg %%DATADIR%%/data/svg/osmcarto/svg/shop/shop_convenience.svg %%DATADIR%%/data/svg/osmcarto/svg/shop/shop_diy.16.svg %%DATADIR%%/data/svg/osmcarto/svg/shop/shop_electronics.16.svg %%DATADIR%%/data/svg/osmcarto/svg/shop/shop_furniture.16.svg %%DATADIR%%/data/svg/osmcarto/svg/shop/shop_gift.16.svg %%DATADIR%%/data/svg/osmcarto/svg/shop/shop_hairdresser.16.svg %%DATADIR%%/data/svg/osmcarto/svg/shop/shop_jewelry.16.svg %%DATADIR%%/data/svg/osmcarto/svg/shop/shop_mobile_phone.16.svg %%DATADIR%%/data/svg/osmcarto/svg/shop/shop_optician.16.svg %%DATADIR%%/data/svg/osmcarto/svg/shop/shop_pet.16.svg %%DATADIR%%/data/svg/osmcarto/svg/shop/shop_shoes.16.svg %%DATADIR%%/data/svg/osmcarto/svg/shop/shop_supermarket.svg %%DATADIR%%/data/svg/osmcarto/svg/shop/shopping_car_repair.16.svg %%DATADIR%%/data/svg/osmcarto/svg/shop/sports.svg %%DATADIR%%/data/svg/osmcarto/svg/shop/stationery-14.svg %%DATADIR%%/data/svg/osmcarto/svg/shop/tea.svg %%DATADIR%%/data/svg/osmcarto/svg/shop/tobacco.svg %%DATADIR%%/data/svg/osmcarto/svg/shop/toys-14.svg %%DATADIR%%/data/svg/osmcarto/svg/shop/travel_agency-14.svg %%DATADIR%%/data/svg/osmcarto/svg/shop/variety_store-14.svg %%DATADIR%%/data/svg/osmcarto/svg/transportation/alpinehut.16.svg %%DATADIR%%/data/svg/osmcarto/svg/transportation/bicycle_parking.16.svg %%DATADIR%%/data/svg/osmcarto/svg/transportation/bus_station.16.svg %%DATADIR%%/data/svg/osmcarto/svg/transportation/bus_stop.12.svg %%DATADIR%%/data/svg/osmcarto/svg/transportation/camping.16.svg %%DATADIR%%/data/svg/osmcarto/svg/transportation/car_share.16.svg %%DATADIR%%/data/svg/osmcarto/svg/transportation/caravan_park.16.svg %%DATADIR%%/data/svg/osmcarto/svg/transportation/charging_station.svg %%DATADIR%%/data/svg/osmcarto/svg/transportation/elevator-12.svg %%DATADIR%%/data/svg/osmcarto/svg/transportation/embassy.16.svg %%DATADIR%%/data/svg/osmcarto/svg/transportation/ford.16.svg %%DATADIR%%/data/svg/osmcarto/svg/transportation/fuel.16.svg %%DATADIR%%/data/svg/osmcarto/svg/transportation/guest_house.16.svg %%DATADIR%%/data/svg/osmcarto/svg/transportation/hostel.16.svg %%DATADIR%%/data/svg/osmcarto/svg/transportation/hotel.16.svg %%DATADIR%%/data/svg/osmcarto/svg/transportation/lighthouse.16.svg %%DATADIR%%/data/svg/osmcarto/svg/transportation/motel.16.svg %%DATADIR%%/data/svg/osmcarto/svg/transportation/motorcycle_parking.16.svg %%DATADIR%%/data/svg/osmcarto/svg/transportation/parking.svg %%DATADIR%%/data/svg/osmcarto/svg/transportation/railway_crossing.svg %%DATADIR%%/data/svg/osmcarto/svg/transportation/rental_bicycle.16.svg %%DATADIR%%/data/svg/osmcarto/svg/transportation/rental_car.16.svg %%DATADIR%%/data/svg/osmcarto/svg/transportation/rental_ski.16.svg %%DATADIR%%/data/svg/osmcarto/svg/transportation/shelter.svg %%DATADIR%%/data/svg/osmcarto/svg/transportation/subway_entrance.svg %%DATADIR%%/data/svg/osmcarto/svg/transportation/taxi.16.svg %%DATADIR%%/data/svg/osmcarto/svg/transportation/traffic_light_crossing.svg %%DATADIR%%/data/svg/osmcarto/svg/transportation/wilderness_hut.svg %%DATADIR%%/data/svg/osmcarto/svg/transportation/zebra_crossing.svg %%DATADIR%%/data/svg/sun.png %%DATADIR%%/data/svg/sunshine.png %%DATADIR%%/data/svg/thenounproject/101965-inline-skater.svg %%DATADIR%%/data/svg/thenounproject/204712-hiker.svg %%DATADIR%%/data/svg/thenounproject/21636-gondola.svg %%DATADIR%%/data/svg/thenounproject/231-chair-lift.svg %%DATADIR%%/data/svg/thenounproject/2412-skiing-downhill.svg %%DATADIR%%/data/svg/thenounproject/245-ski-jump.svg %%DATADIR%%/data/svg/thenounproject/29366-skitour.svg %%DATADIR%%/data/svg/thenounproject/30231-skiing-cross-country.svg %%DATADIR%%/data/svg/thenounproject/365217-sled.svg %%DATADIR%%/data/svg/thenounproject/583813-cable-car.svg %%DATADIR%%/data/svg/thenounproject/61698-mountain-biking.svg %%DATADIR%%/data/svg/thenounproject/78374-horse-riding.svg %%DATADIR%%/data/svg/thenounproject/8803-platter-lift.svg %%DATADIR%%/data/svg/thenounproject/sports-245-ski-jump.svg %%DATADIR%%/data/svg/thenounproject/transportation-21636-gondola.svg %%DATADIR%%/data/svg/thenounproject/transportation-231-chair-lift.svg %%DATADIR%%/data/svg/thenounproject/transportation-583813-cable-car.svg %%DATADIR%%/data/svg/thenounproject/transportation-8803-platter-lift.svg %%DATADIR%%/data/svg/track_turtle.svg %%DATADIR%%/data/svg/wikipedia.svg %%DATADIR%%/data/svg/wikipedia_shadow.svg %%DATADIR%%/data/svg/worldmap.svg %%DATADIR%%/data/tempcolors.leg %%DATADIR%%/data/weather/bbc-stations.xml %%DATADIR%%/data/weather/weather-clear-night.png %%DATADIR%%/data/weather/weather-clear.png %%DATADIR%%/data/weather/weather-clouds-night.png %%DATADIR%%/data/weather/weather-clouds.png %%DATADIR%%/data/weather/weather-few-clouds-night.png %%DATADIR%%/data/weather/weather-few-clouds.png %%DATADIR%%/data/weather/weather-hail.png %%DATADIR%%/data/weather/weather-many-clouds.png %%DATADIR%%/data/weather/weather-mist.png %%DATADIR%%/data/weather/weather-none-available.png %%DATADIR%%/data/weather/weather-showers-day.png %%DATADIR%%/data/weather/weather-showers-night.png %%DATADIR%%/data/weather/weather-showers-scattered-day.png %%DATADIR%%/data/weather/weather-showers-scattered-night.png %%DATADIR%%/data/weather/weather-showers-scattered.png %%DATADIR%%/data/weather/weather-showers.png %%DATADIR%%/data/weather/weather-snow-rain.png %%DATADIR%%/data/weather/weather-snow-scattered-day.png %%DATADIR%%/data/weather/weather-snow-scattered-night.png %%DATADIR%%/data/weather/weather-snow-scattered.png %%DATADIR%%/data/weather/weather-snow.png %%DATADIR%%/data/weather/weather-storm-day.png %%DATADIR%%/data/weather/weather-storm-night.png %%DATADIR%%/data/weather/weather-storm.png %%DATADIR%%/data/weather/wind-arrows.svgz share/metainfo/org.kde.marble.appdata.xml share/metainfo/org.kde.marble.behaim.appdata.xml share/metainfo/org.kde.marble.maps.appdata.xml share/mime/packages/geo.xml share/qlogging-categories6/marble.categories diff --git a/audio/audiocd-kio/distinfo b/audio/audiocd-kio/distinfo index a0daad00b7b5..6298bade9362 100644 --- a/audio/audiocd-kio/distinfo +++ b/audio/audiocd-kio/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1734460018 -SHA256 (KDE/release-service/24.12.0/audiocd-kio-24.12.0.tar.xz) = 33f2b0c95081f3102f56ede6d0b06d0f405f80f73eceb0a915da23a2a04bc9d8 -SIZE (KDE/release-service/24.12.0/audiocd-kio-24.12.0.tar.xz) = 580120 +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 diff --git a/audio/elisa/distinfo b/audio/elisa/distinfo index 22a59445a689..de1115599b9a 100644 --- a/audio/elisa/distinfo +++ b/audio/elisa/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1734460021 -SHA256 (KDE/release-service/24.12.0/elisa-24.12.0.tar.xz) = 75202d8541aacea3babf84bd021a8aeffb3ee4268fc382b03a00d619de73ff8d -SIZE (KDE/release-service/24.12.0/elisa-24.12.0.tar.xz) = 1924748 +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 diff --git a/audio/juk/distinfo b/audio/juk/distinfo index 827b63ffc16e..01474075181e 100644 --- a/audio/juk/distinfo +++ b/audio/juk/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1734460023 -SHA256 (KDE/release-service/24.12.0/juk-24.12.0.tar.xz) = 12b5cb9a37572c4d64b2edac71ce5633a35d6bee8be3c4c1eb6d0fff1db5ceab -SIZE (KDE/release-service/24.12.0/juk-24.12.0.tar.xz) = 1910264 +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 diff --git a/audio/kmix/distinfo b/audio/kmix/distinfo index 8067a810c4a5..55734812cea6 100644 --- a/audio/kmix/distinfo +++ b/audio/kmix/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1734460025 -SHA256 (KDE/release-service/24.12.0/kmix-24.12.0.tar.xz) = 1057928512a7752c2bc32da83c8ecb6d7b8f2215aa71111be98704905ccf97b2 -SIZE (KDE/release-service/24.12.0/kmix-24.12.0.tar.xz) = 1166316 +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 diff --git a/audio/kwave/distinfo b/audio/kwave/distinfo index ab4b83dd8b62..71d268a90842 100644 --- a/audio/kwave/distinfo +++ b/audio/kwave/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1734460026 -SHA256 (KDE/release-service/24.12.0/kwave-24.12.0.tar.xz) = 711eac6beaf4efdfbb3dbbac5ff0838bcd655b738fce3b5b4a4f2bfab1f4c13e -SIZE (KDE/release-service/24.12.0/kwave-24.12.0.tar.xz) = 6468636 +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 diff --git a/audio/kwave/pkg-plist b/audio/kwave/pkg-plist index 7f21af7bad4b..1772cb21d106 100644 --- a/audio/kwave/pkg-plist +++ b/audio/kwave/pkg-plist @@ -1,86 +1,87 @@ bin/kwave lib/libkwave.so.%%KDE_APPLICATIONS_VERSION_SHORT%% lib/libkwave.so.%%KDE_APPLICATIONS_VERSION%% lib/libkwavegui.so.%%KDE_APPLICATIONS_VERSION_SHORT%% lib/libkwavegui.so.%%KDE_APPLICATIONS_VERSION%% %%QT_PLUGINDIR%%/kwave/about.so %%QT_PLUGINDIR%%/kwave/amplifyfree.so %%QT_PLUGINDIR%%/kwave/band_pass.so %%QT_PLUGINDIR%%/kwave/codec_ascii.so %%QT_PLUGINDIR%%/kwave/codec_audiofile.so %%QT_PLUGINDIR%%/kwave/codec_flac.so %%QT_PLUGINDIR%%/kwave/codec_mp3.so %%QT_PLUGINDIR%%/kwave/codec_ogg.so %%QT_PLUGINDIR%%/kwave/codec_wav.so %%QT_PLUGINDIR%%/kwave/debug.so %%QT_PLUGINDIR%%/kwave/export_k3b.so %%QT_PLUGINDIR%%/kwave/fileinfo.so %%QT_PLUGINDIR%%/kwave/goto.so %%QT_PLUGINDIR%%/kwave/insert_at.so %%QT_PLUGINDIR%%/kwave/lowpass.so %%QT_PLUGINDIR%%/kwave/newsignal.so %%QT_PLUGINDIR%%/kwave/noise.so %%QT_PLUGINDIR%%/kwave/normalize.so %%QT_PLUGINDIR%%/kwave/notch_filter.so %%QT_PLUGINDIR%%/kwave/pitch_shift.so %%QT_PLUGINDIR%%/kwave/playback.so %%QT_PLUGINDIR%%/kwave/record.so %%QT_PLUGINDIR%%/kwave/reverse.so %%QT_PLUGINDIR%%/kwave/samplerate.so %%QT_PLUGINDIR%%/kwave/saveblocks.so %%QT_PLUGINDIR%%/kwave/selectrange.so %%QT_PLUGINDIR%%/kwave/sonagram.so %%QT_PLUGINDIR%%/kwave/stringenter.so %%QT_PLUGINDIR%%/kwave/volume.so %%QT_PLUGINDIR%%/kwave/zero.so share/applications/org.kde.kwave.desktop share/icons/hicolor/scalable/apps/kwave.svgz %%DATADIR%%/menus.config %%DATADIR%%/pics/amplify_free.png %%DATADIR%%/pics/fade_in.png %%DATADIR%%/pics/fade_out.png %%DATADIR%%/pics/knob.xpm %%DATADIR%%/pics/kwave-splash.png %%DATADIR%%/pics/light_off.xpm %%DATADIR%%/pics/light_on.xpm %%DATADIR%%/pics/logo.xpm %%DATADIR%%/pics/noise.png %%DATADIR%%/pics/selectedknob.xpm %%DATADIR%%/pics/sound_card.png %%DATADIR%%/pics/sound_device.png %%DATADIR%%/pics/sound_note.png %%DATADIR%%/pics/sound_subdevice.png +share/locale/ar/LC_MESSAGES/kwave.mo share/locale/bs/LC_MESSAGES/kwave.mo share/locale/ca/LC_MESSAGES/kwave.mo share/locale/ca@valencia/LC_MESSAGES/kwave.mo share/locale/cs/LC_MESSAGES/kwave.mo share/locale/da/LC_MESSAGES/kwave.mo share/locale/de/LC_MESSAGES/kwave.mo share/locale/el/LC_MESSAGES/kwave.mo share/locale/en_GB/LC_MESSAGES/kwave.mo share/locale/eo/LC_MESSAGES/kwave.mo share/locale/es/LC_MESSAGES/kwave.mo share/locale/et/LC_MESSAGES/kwave.mo share/locale/eu/LC_MESSAGES/kwave.mo share/locale/fi/LC_MESSAGES/kwave.mo share/locale/fr/LC_MESSAGES/kwave.mo share/locale/gl/LC_MESSAGES/kwave.mo share/locale/ia/LC_MESSAGES/kwave.mo share/locale/it/LC_MESSAGES/kwave.mo share/locale/ja/LC_MESSAGES/kwave.mo share/locale/ka/LC_MESSAGES/kwave.mo share/locale/ko/LC_MESSAGES/kwave.mo share/locale/lt/LC_MESSAGES/kwave.mo share/locale/nl/LC_MESSAGES/kwave.mo share/locale/pl/LC_MESSAGES/kwave.mo share/locale/pt/LC_MESSAGES/kwave.mo share/locale/pt_BR/LC_MESSAGES/kwave.mo share/locale/ru/LC_MESSAGES/kwave.mo share/locale/sk/LC_MESSAGES/kwave.mo share/locale/sl/LC_MESSAGES/kwave.mo share/locale/sv/LC_MESSAGES/kwave.mo share/locale/tr/LC_MESSAGES/kwave.mo share/locale/uk/LC_MESSAGES/kwave.mo share/locale/zh_CN/LC_MESSAGES/kwave.mo share/locale/zh_TW/LC_MESSAGES/kwave.mo share/metainfo/org.kde.kwave.appdata.xml diff --git a/audio/libkcddb/distinfo b/audio/libkcddb/distinfo index ba30f65ee844..7c6739aff376 100644 --- a/audio/libkcddb/distinfo +++ b/audio/libkcddb/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1734460028 -SHA256 (KDE/release-service/24.12.0/libkcddb-24.12.0.tar.xz) = 6beef1b07dbe2970c1b5613f8e98fffa008b8e2c9d37a6011614434ceb771944 -SIZE (KDE/release-service/24.12.0/libkcddb-24.12.0.tar.xz) = 450032 +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 diff --git a/audio/libkcompactdisc/distinfo b/audio/libkcompactdisc/distinfo index e3bd315bfeb9..3dd0bd3299bc 100644 --- a/audio/libkcompactdisc/distinfo +++ b/audio/libkcompactdisc/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1734460030 -SHA256 (KDE/release-service/24.12.0/libkcompactdisc-24.12.0.tar.xz) = 9bea8582bcf63acfebc7b67018edc6849b32f306bc6a45edb90f33048d4fbc8e -SIZE (KDE/release-service/24.12.0/libkcompactdisc-24.12.0.tar.xz) = 100592 +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 diff --git a/databases/akonadi/distinfo b/databases/akonadi/distinfo index 157d0ec50e66..b7e81d02d527 100644 --- a/databases/akonadi/distinfo +++ b/databases/akonadi/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1734460031 -SHA256 (KDE/release-service/24.12.0/akonadi-24.12.0.tar.xz) = ca71758319f0529b4af0ef4bf16352b023c002b9fe578524c82f4dc7ff0e9ae2 -SIZE (KDE/release-service/24.12.0/akonadi-24.12.0.tar.xz) = 1710188 +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 diff --git a/databases/akonadi/pkg-plist b/databases/akonadi/pkg-plist index 4fc37cb7942a..4ca438073f26 100644 --- a/databases/akonadi/pkg-plist +++ b/databases/akonadi/pkg-plist @@ -1,534 +1,535 @@ bin/akonadi-db-migrator bin/akonadi2xml bin/akonadi_agent_launcher bin/akonadi_agent_server bin/akonadi_control bin/akonadi_knut_resource bin/akonadi_rds bin/akonadictl bin/akonadiselftest bin/akonadiserver bin/akonaditest bin/asapcat etc/apparmor.d/mariadbd_akonadi etc/apparmor.d/mysqld_akonadi etc/apparmor.d/postgresql_akonadi etc/apparmor.d/usr.bin.akonadiserver etc/xdg/akonadi/mysql-global-mobile.conf etc/xdg/akonadi/mysql-global.conf include/KPim6/Akonadi/akonadi/private/akonadiprivate_export.h include/KPim6/Akonadi/akonadi/private/capabilities_p.h include/KPim6/Akonadi/akonadi/private/compressionstream_p.h include/KPim6/Akonadi/akonadi/private/dbus_p.h include/KPim6/Akonadi/akonadi/private/externalpartstorage_p.h include/KPim6/Akonadi/akonadi/private/imapparser_p.h include/KPim6/Akonadi/akonadi/private/imapset_p.h include/KPim6/Akonadi/akonadi/private/instance_p.h include/KPim6/Akonadi/akonadi/private/protocol_exception_p.h include/KPim6/Akonadi/akonadi/private/protocol_gen.h include/KPim6/Akonadi/akonadi/private/protocol_p.h include/KPim6/Akonadi/akonadi/private/scope_p.h include/KPim6/Akonadi/akonadi/private/standarddirs_p.h include/KPim6/Akonadi/akonadi/private/tristate_p.h include/KPim6/AkonadiAgentBase/Akonadi/AccountsIntegration include/KPim6/AkonadiAgentBase/Akonadi/AgentBase include/KPim6/AkonadiAgentBase/Akonadi/AgentSearchInterface include/KPim6/AkonadiAgentBase/Akonadi/PreprocessorBase include/KPim6/AkonadiAgentBase/Akonadi/ResourceBase include/KPim6/AkonadiAgentBase/Akonadi/ResourceSettings include/KPim6/AkonadiAgentBase/Akonadi/TransportResourceBase include/KPim6/AkonadiAgentBase/akonadi/accountsintegration.h include/KPim6/AkonadiAgentBase/akonadi/agentbase.h include/KPim6/AkonadiAgentBase/akonadi/agentsearchinterface.h include/KPim6/AkonadiAgentBase/akonadi/akonadiagentbase_export.h include/KPim6/AkonadiAgentBase/akonadi/preprocessorbase.h include/KPim6/AkonadiAgentBase/akonadi/resourcebase.h include/KPim6/AkonadiAgentBase/akonadi/resourcebasesettings.h include/KPim6/AkonadiAgentBase/akonadi/resourcesettings.h include/KPim6/AkonadiAgentBase/akonadi/transportresourcebase.h include/KPim6/AkonadiCore/Akonadi/AbstractDifferencesReporter include/KPim6/AkonadiCore/Akonadi/AccountActivitiesAbstract include/KPim6/AkonadiCore/Akonadi/AgentConfigurationBase include/KPim6/AkonadiCore/Akonadi/AgentConfigurationFactoryBase include/KPim6/AkonadiCore/Akonadi/AgentFilterProxyModel include/KPim6/AkonadiCore/Akonadi/AgentInstance include/KPim6/AkonadiCore/Akonadi/AgentInstanceCreateJob include/KPim6/AkonadiCore/Akonadi/AgentInstanceFilterProxyModel include/KPim6/AkonadiCore/Akonadi/AgentInstanceModel include/KPim6/AkonadiCore/Akonadi/AgentManager include/KPim6/AkonadiCore/Akonadi/AgentType include/KPim6/AkonadiCore/Akonadi/AgentTypeModel include/KPim6/AkonadiCore/Akonadi/Attribute include/KPim6/AkonadiCore/Akonadi/AttributeFactory include/KPim6/AkonadiCore/Akonadi/CachePolicy include/KPim6/AkonadiCore/Akonadi/ChangeNotification include/KPim6/AkonadiCore/Akonadi/ChangeRecorder include/KPim6/AkonadiCore/Akonadi/Collection include/KPim6/AkonadiCore/Akonadi/CollectionAnnotationsAttribute include/KPim6/AkonadiCore/Akonadi/CollectionAttributesSynchronizationJob include/KPim6/AkonadiCore/Akonadi/CollectionColorAttribute include/KPim6/AkonadiCore/Akonadi/CollectionCopyJob include/KPim6/AkonadiCore/Akonadi/CollectionCreateJob include/KPim6/AkonadiCore/Akonadi/CollectionDeleteJob include/KPim6/AkonadiCore/Akonadi/CollectionFetchJob include/KPim6/AkonadiCore/Akonadi/CollectionFetchScope include/KPim6/AkonadiCore/Akonadi/CollectionFilterProxyModel include/KPim6/AkonadiCore/Akonadi/CollectionIdentificationAttribute include/KPim6/AkonadiCore/Akonadi/CollectionModifyJob include/KPim6/AkonadiCore/Akonadi/CollectionMoveJob include/KPim6/AkonadiCore/Akonadi/CollectionPathResolver include/KPim6/AkonadiCore/Akonadi/CollectionQuotaAttribute include/KPim6/AkonadiCore/Akonadi/CollectionStatistics include/KPim6/AkonadiCore/Akonadi/CollectionStatisticsJob include/KPim6/AkonadiCore/Akonadi/CollectionUtils include/KPim6/AkonadiCore/Akonadi/Control include/KPim6/AkonadiCore/Akonadi/DifferencesAlgorithmInterface include/KPim6/AkonadiCore/Akonadi/EntityAnnotationsAttribute include/KPim6/AkonadiCore/Akonadi/EntityDeletedAttribute include/KPim6/AkonadiCore/Akonadi/EntityDisplayAttribute include/KPim6/AkonadiCore/Akonadi/EntityHiddenAttribute include/KPim6/AkonadiCore/Akonadi/EntityMimeTypeFilterModel include/KPim6/AkonadiCore/Akonadi/EntityOrderProxyModel include/KPim6/AkonadiCore/Akonadi/EntityRightsFilterModel include/KPim6/AkonadiCore/Akonadi/EntityTreeModel include/KPim6/AkonadiCore/Akonadi/ExceptionBase include/KPim6/AkonadiCore/Akonadi/FavoriteCollectionAttribute include/KPim6/AkonadiCore/Akonadi/FavoriteCollectionsModel include/KPim6/AkonadiCore/Akonadi/GidExtractorInterface include/KPim6/AkonadiCore/Akonadi/IndexPolicyAttribute include/KPim6/AkonadiCore/Akonadi/Item include/KPim6/AkonadiCore/Akonadi/ItemCopyJob include/KPim6/AkonadiCore/Akonadi/ItemCreateJob include/KPim6/AkonadiCore/Akonadi/ItemDeleteJob include/KPim6/AkonadiCore/Akonadi/ItemFetchJob include/KPim6/AkonadiCore/Akonadi/ItemFetchScope include/KPim6/AkonadiCore/Akonadi/ItemModifyJob include/KPim6/AkonadiCore/Akonadi/ItemMonitor include/KPim6/AkonadiCore/Akonadi/ItemMoveJob include/KPim6/AkonadiCore/Akonadi/ItemSearchJob include/KPim6/AkonadiCore/Akonadi/ItemSerializerPlugin include/KPim6/AkonadiCore/Akonadi/ItemSync include/KPim6/AkonadiCore/Akonadi/Job include/KPim6/AkonadiCore/Akonadi/LinkJob include/KPim6/AkonadiCore/Akonadi/MimeTypeChecker include/KPim6/AkonadiCore/Akonadi/Monitor include/KPim6/AkonadiCore/Akonadi/NotificationSubscriber include/KPim6/AkonadiCore/Akonadi/PartFetcher include/KPim6/AkonadiCore/Akonadi/PersistentSearchAttribute include/KPim6/AkonadiCore/Akonadi/RecursiveCollectionFilterProxyModel include/KPim6/AkonadiCore/Akonadi/RecursiveItemFetchJob include/KPim6/AkonadiCore/Akonadi/ResourceSynchronizationJob include/KPim6/AkonadiCore/Akonadi/SearchCreateJob include/KPim6/AkonadiCore/Akonadi/SearchQuery include/KPim6/AkonadiCore/Akonadi/SelectionProxyModel include/KPim6/AkonadiCore/Akonadi/ServerManager include/KPim6/AkonadiCore/Akonadi/Session include/KPim6/AkonadiCore/Akonadi/SpecialCollectionAttribute include/KPim6/AkonadiCore/Akonadi/SpecialCollections include/KPim6/AkonadiCore/Akonadi/SpecialCollectionsDiscoveryJob include/KPim6/AkonadiCore/Akonadi/SpecialCollectionsRequestJob include/KPim6/AkonadiCore/Akonadi/StatisticsProxyModel include/KPim6/AkonadiCore/Akonadi/Supertrait include/KPim6/AkonadiCore/Akonadi/Tag include/KPim6/AkonadiCore/Akonadi/TagAttribute include/KPim6/AkonadiCore/Akonadi/TagCache include/KPim6/AkonadiCore/Akonadi/TagCreateJob include/KPim6/AkonadiCore/Akonadi/TagDeleteJob include/KPim6/AkonadiCore/Akonadi/TagFetchJob include/KPim6/AkonadiCore/Akonadi/TagFetchScope include/KPim6/AkonadiCore/Akonadi/TagModel include/KPim6/AkonadiCore/Akonadi/TagModifyJob include/KPim6/AkonadiCore/Akonadi/TransactionJobs include/KPim6/AkonadiCore/Akonadi/TransactionSequence include/KPim6/AkonadiCore/Akonadi/TrashFilterProxyModel include/KPim6/AkonadiCore/Akonadi/TrashJob include/KPim6/AkonadiCore/Akonadi/TrashRestoreJob include/KPim6/AkonadiCore/Akonadi/TrashSettings include/KPim6/AkonadiCore/Akonadi/UnlinkJob include/KPim6/AkonadiCore/Akonadi/VectorHelper include/KPim6/AkonadiCore/akonadi/abstractdifferencesreporter.h include/KPim6/AkonadiCore/akonadi/abstractsearchplugin.h include/KPim6/AkonadiCore/akonadi/accountactivitiesabstract.h include/KPim6/AkonadiCore/akonadi/agentconfigurationbase.h include/KPim6/AkonadiCore/akonadi/agentconfigurationfactorybase.h include/KPim6/AkonadiCore/akonadi/agentfilterproxymodel.h include/KPim6/AkonadiCore/akonadi/agentinstance.h include/KPim6/AkonadiCore/akonadi/agentinstancecreatejob.h include/KPim6/AkonadiCore/akonadi/agentinstancefilterproxymodel.h include/KPim6/AkonadiCore/akonadi/agentinstancemodel.h include/KPim6/AkonadiCore/akonadi/agentmanager.h include/KPim6/AkonadiCore/akonadi/agenttype.h include/KPim6/AkonadiCore/akonadi/agenttypemodel.h include/KPim6/AkonadiCore/akonadi/akonadicore_export.h include/KPim6/AkonadiCore/akonadi/attribute.h include/KPim6/AkonadiCore/akonadi/attributefactory.h include/KPim6/AkonadiCore/akonadi/cachepolicy.h include/KPim6/AkonadiCore/akonadi/changenotification.h include/KPim6/AkonadiCore/akonadi/changerecorder.h include/KPim6/AkonadiCore/akonadi/collection.h include/KPim6/AkonadiCore/akonadi/collectionannotationsattribute.h include/KPim6/AkonadiCore/akonadi/collectionattributessynchronizationjob.h include/KPim6/AkonadiCore/akonadi/collectioncolorattribute.h include/KPim6/AkonadiCore/akonadi/collectioncopyjob.h include/KPim6/AkonadiCore/akonadi/collectioncreatejob.h include/KPim6/AkonadiCore/akonadi/collectiondeletejob.h include/KPim6/AkonadiCore/akonadi/collectionfetchjob.h include/KPim6/AkonadiCore/akonadi/collectionfetchscope.h include/KPim6/AkonadiCore/akonadi/collectionfilterproxymodel.h include/KPim6/AkonadiCore/akonadi/collectionidentificationattribute.h include/KPim6/AkonadiCore/akonadi/collectionmodifyjob.h include/KPim6/AkonadiCore/akonadi/collectionmovejob.h include/KPim6/AkonadiCore/akonadi/collectionpathresolver.h include/KPim6/AkonadiCore/akonadi/collectionquotaattribute.h include/KPim6/AkonadiCore/akonadi/collectionstatistics.h include/KPim6/AkonadiCore/akonadi/collectionstatisticsjob.h include/KPim6/AkonadiCore/akonadi/collectionutils.h include/KPim6/AkonadiCore/akonadi/config-akonadi.h include/KPim6/AkonadiCore/akonadi/control.h include/KPim6/AkonadiCore/akonadi/differencesalgorithminterface.h include/KPim6/AkonadiCore/akonadi/entityannotationsattribute.h include/KPim6/AkonadiCore/akonadi/entitydeletedattribute.h include/KPim6/AkonadiCore/akonadi/entitydisplayattribute.h include/KPim6/AkonadiCore/akonadi/entityhiddenattribute.h include/KPim6/AkonadiCore/akonadi/entitymimetypefiltermodel.h include/KPim6/AkonadiCore/akonadi/entityorderproxymodel.h include/KPim6/AkonadiCore/akonadi/entityrightsfiltermodel.h include/KPim6/AkonadiCore/akonadi/entitytreemodel.h include/KPim6/AkonadiCore/akonadi/exceptionbase.h include/KPim6/AkonadiCore/akonadi/favoritecollectionattribute.h include/KPim6/AkonadiCore/akonadi/favoritecollectionsmodel.h include/KPim6/AkonadiCore/akonadi/gidextractorinterface.h include/KPim6/AkonadiCore/akonadi/indexpolicyattribute.h include/KPim6/AkonadiCore/akonadi/item.h include/KPim6/AkonadiCore/akonadi/itemcopyjob.h include/KPim6/AkonadiCore/akonadi/itemcreatejob.h include/KPim6/AkonadiCore/akonadi/itemdeletejob.h include/KPim6/AkonadiCore/akonadi/itemfetchjob.h include/KPim6/AkonadiCore/akonadi/itemfetchscope.h include/KPim6/AkonadiCore/akonadi/itemmodifyjob.h include/KPim6/AkonadiCore/akonadi/itemmonitor.h include/KPim6/AkonadiCore/akonadi/itemmovejob.h include/KPim6/AkonadiCore/akonadi/itempayloadinternals_p.h include/KPim6/AkonadiCore/akonadi/itemsearchjob.h include/KPim6/AkonadiCore/akonadi/itemserializerplugin.h include/KPim6/AkonadiCore/akonadi/itemsync.h include/KPim6/AkonadiCore/akonadi/job.h include/KPim6/AkonadiCore/akonadi/linkjob.h include/KPim6/AkonadiCore/akonadi/mimetypechecker.h include/KPim6/AkonadiCore/akonadi/monitor.h include/KPim6/AkonadiCore/akonadi/notificationsubscriber.h include/KPim6/AkonadiCore/akonadi/partfetcher.h include/KPim6/AkonadiCore/akonadi/persistentsearchattribute.h include/KPim6/AkonadiCore/akonadi/qtest_akonadi.h include/KPim6/AkonadiCore/akonadi/recursivecollectionfilterproxymodel.h include/KPim6/AkonadiCore/akonadi/recursiveitemfetchjob.h include/KPim6/AkonadiCore/akonadi/resourcesynchronizationjob.h include/KPim6/AkonadiCore/akonadi/searchcreatejob.h include/KPim6/AkonadiCore/akonadi/searchquery.h include/KPim6/AkonadiCore/akonadi/selectionproxymodel.h include/KPim6/AkonadiCore/akonadi/servermanager.h include/KPim6/AkonadiCore/akonadi/session.h include/KPim6/AkonadiCore/akonadi/specialcollectionattribute.h include/KPim6/AkonadiCore/akonadi/specialcollections.h include/KPim6/AkonadiCore/akonadi/specialcollectionsdiscoveryjob.h include/KPim6/AkonadiCore/akonadi/specialcollectionsrequestjob.h include/KPim6/AkonadiCore/akonadi/statisticsproxymodel.h include/KPim6/AkonadiCore/akonadi/supertrait.h include/KPim6/AkonadiCore/akonadi/tag.h include/KPim6/AkonadiCore/akonadi/tagattribute.h include/KPim6/AkonadiCore/akonadi/tagcache.h include/KPim6/AkonadiCore/akonadi/tagcreatejob.h include/KPim6/AkonadiCore/akonadi/tagdeletejob.h include/KPim6/AkonadiCore/akonadi/tagfetchjob.h include/KPim6/AkonadiCore/akonadi/tagfetchscope.h include/KPim6/AkonadiCore/akonadi/tagmodel.h include/KPim6/AkonadiCore/akonadi/tagmodifyjob.h include/KPim6/AkonadiCore/akonadi/transactionjobs.h include/KPim6/AkonadiCore/akonadi/transactionsequence.h include/KPim6/AkonadiCore/akonadi/trashfilterproxymodel.h include/KPim6/AkonadiCore/akonadi/trashjob.h include/KPim6/AkonadiCore/akonadi/trashrestorejob.h include/KPim6/AkonadiCore/akonadi/trashsettings.h include/KPim6/AkonadiCore/akonadi/unlinkjob.h include/KPim6/AkonadiCore/akonadi/vectorhelper.h include/KPim6/AkonadiCore/akonadi_version.h include/KPim6/AkonadiWidgets/Akonadi/AgentActionManager include/KPim6/AkonadiWidgets/Akonadi/AgentConfigurationDialog include/KPim6/AkonadiWidgets/Akonadi/AgentConfigurationWidget include/KPim6/AkonadiWidgets/Akonadi/AgentInstanceWidget include/KPim6/AkonadiWidgets/Akonadi/AgentTypeDialog include/KPim6/AkonadiWidgets/Akonadi/AgentTypeWidget include/KPim6/AkonadiWidgets/Akonadi/ClearCacheFoldersJob include/KPim6/AkonadiWidgets/Akonadi/CollectionComboBox include/KPim6/AkonadiWidgets/Akonadi/CollectionDialog include/KPim6/AkonadiWidgets/Akonadi/CollectionMaintenancePage include/KPim6/AkonadiWidgets/Akonadi/CollectionPropertiesDialog include/KPim6/AkonadiWidgets/Akonadi/CollectionPropertiesPage include/KPim6/AkonadiWidgets/Akonadi/CollectionRequester include/KPim6/AkonadiWidgets/Akonadi/CollectionStatisticsDelegate include/KPim6/AkonadiWidgets/Akonadi/ControlGui include/KPim6/AkonadiWidgets/Akonadi/DbAccess include/KPim6/AkonadiWidgets/Akonadi/ETMViewStateSaver include/KPim6/AkonadiWidgets/Akonadi/EntityListView include/KPim6/AkonadiWidgets/Akonadi/EntityTreeView include/KPim6/AkonadiWidgets/Akonadi/ManageAccountWidget include/KPim6/AkonadiWidgets/Akonadi/StandardActionManager include/KPim6/AkonadiWidgets/Akonadi/SubscriptionDialog include/KPim6/AkonadiWidgets/Akonadi/TagEditWidget include/KPim6/AkonadiWidgets/Akonadi/TagManagementDialog include/KPim6/AkonadiWidgets/Akonadi/TagSelectWidget include/KPim6/AkonadiWidgets/Akonadi/TagSelectionComboBox include/KPim6/AkonadiWidgets/Akonadi/TagSelectionDialog include/KPim6/AkonadiWidgets/Akonadi/TagWidget include/KPim6/AkonadiWidgets/akonadi/agentactionmanager.h include/KPim6/AkonadiWidgets/akonadi/agentconfigurationdialog.h include/KPim6/AkonadiWidgets/akonadi/agentconfigurationwidget.h include/KPim6/AkonadiWidgets/akonadi/agentinstancewidget.h include/KPim6/AkonadiWidgets/akonadi/agenttypedialog.h include/KPim6/AkonadiWidgets/akonadi/agenttypewidget.h include/KPim6/AkonadiWidgets/akonadi/akonadiwidgets_export.h include/KPim6/AkonadiWidgets/akonadi/clearcachefoldersjob.h include/KPim6/AkonadiWidgets/akonadi/collectioncombobox.h include/KPim6/AkonadiWidgets/akonadi/collectiondialog.h include/KPim6/AkonadiWidgets/akonadi/collectionmaintenancepage.h include/KPim6/AkonadiWidgets/akonadi/collectionpropertiesdialog.h include/KPim6/AkonadiWidgets/akonadi/collectionpropertiespage.h include/KPim6/AkonadiWidgets/akonadi/collectionrequester.h include/KPim6/AkonadiWidgets/akonadi/collectionstatisticsdelegate.h include/KPim6/AkonadiWidgets/akonadi/controlgui.h include/KPim6/AkonadiWidgets/akonadi/dbaccess.h include/KPim6/AkonadiWidgets/akonadi/entitylistview.h include/KPim6/AkonadiWidgets/akonadi/entitytreeview.h include/KPim6/AkonadiWidgets/akonadi/etmviewstatesaver.h include/KPim6/AkonadiWidgets/akonadi/manageaccountwidget.h include/KPim6/AkonadiWidgets/akonadi/standardactionmanager.h include/KPim6/AkonadiWidgets/akonadi/subscriptiondialog.h include/KPim6/AkonadiWidgets/akonadi/tageditwidget.h include/KPim6/AkonadiWidgets/akonadi/tagmanagementdialog.h include/KPim6/AkonadiWidgets/akonadi/tagselectioncombobox.h include/KPim6/AkonadiWidgets/akonadi/tagselectiondialog.h include/KPim6/AkonadiWidgets/akonadi/tagselectwidget.h include/KPim6/AkonadiWidgets/akonadi/tagwidget.h include/KPim6/AkonadiXml/Akonadi/XmlDocument include/KPim6/AkonadiXml/Akonadi/XmlReader include/KPim6/AkonadiXml/Akonadi/XmlWriteJob include/KPim6/AkonadiXml/Akonadi/XmlWriter include/KPim6/AkonadiXml/akonadi/akonadi-xml_export.h include/KPim6/AkonadiXml/akonadi/xmldocument.h include/KPim6/AkonadiXml/akonadi/xmlreader.h include/KPim6/AkonadiXml/akonadi/xmlwritejob.h include/KPim6/AkonadiXml/akonadi/xmlwriter.h lib/cmake/KPim6Akonadi/KPim6AkonadiConfig.cmake lib/cmake/KPim6Akonadi/KPim6AkonadiConfigVersion.cmake lib/cmake/KPim6Akonadi/KPim6AkonadiTargets-%%CMAKE_BUILD_TYPE%%.cmake lib/cmake/KPim6Akonadi/KPim6AkonadiTargets.cmake lib/cmake/KPim6Akonadi/KPimAkonadiMacros.cmake lib/libKPim6AkonadiAgentBase.so lib/libKPim6AkonadiAgentBase.so.6 lib/libKPim6AkonadiAgentBase.so.%%KDE_APPLICATIONS_SHLIB_VER%% lib/libKPim6AkonadiCore.so lib/libKPim6AkonadiCore.so.6 lib/libKPim6AkonadiCore.so.%%KDE_APPLICATIONS_SHLIB_VER%% lib/libKPim6AkonadiPrivate.so lib/libKPim6AkonadiPrivate.so.6 lib/libKPim6AkonadiPrivate.so.%%KDE_APPLICATIONS_SHLIB_VER%% lib/libKPim6AkonadiWidgets.so lib/libKPim6AkonadiWidgets.so.6 lib/libKPim6AkonadiWidgets.so.%%KDE_APPLICATIONS_SHLIB_VER%% lib/libKPim6AkonadiXml.so lib/libKPim6AkonadiXml.so.6 lib/libKPim6AkonadiXml.so.%%KDE_APPLICATIONS_SHLIB_VER%% %%QT_PLUGINDIR%%/designer/akonadi6widgets.so %%QT_PLUGINDIR%%/pim6/akonadi/akonadi_test_searchplugin.so %%DATADIR%%/agents/knutresource.desktop share/config.kcfg/resourcebase.kcfg share/dbus-1/interfaces/org.freedesktop.Akonadi.Agent.Control.xml share/dbus-1/interfaces/org.freedesktop.Akonadi.Agent.Search.xml share/dbus-1/interfaces/org.freedesktop.Akonadi.Agent.Status.xml share/dbus-1/interfaces/org.freedesktop.Akonadi.AgentManager.xml share/dbus-1/interfaces/org.freedesktop.Akonadi.ControlManager.xml share/dbus-1/interfaces/org.freedesktop.Akonadi.DebugInterface.xml share/dbus-1/interfaces/org.freedesktop.Akonadi.NotificationManager.xml share/dbus-1/interfaces/org.freedesktop.Akonadi.NotificationSource.xml share/dbus-1/interfaces/org.freedesktop.Akonadi.Preprocessor.xml share/dbus-1/interfaces/org.freedesktop.Akonadi.Resource.xml share/dbus-1/interfaces/org.freedesktop.Akonadi.Server.xml share/dbus-1/interfaces/org.freedesktop.Akonadi.StorageDebugger.xml share/dbus-1/interfaces/org.freedesktop.Akonadi.Tracer.xml share/dbus-1/interfaces/org.freedesktop.Akonadi.TracerNotification.xml share/dbus-1/services/org.freedesktop.Akonadi.Control.service share/icons/hicolor/128x128/apps/akonadi.png share/icons/hicolor/16x16/apps/akonadi.png share/icons/hicolor/22x22/apps/akonadi.png share/icons/hicolor/256x256/apps/akonadi.png share/icons/hicolor/32x32/apps/akonadi.png share/icons/hicolor/48x48/apps/akonadi.png share/icons/hicolor/64x64/apps/akonadi.png share/icons/hicolor/scalable/apps/akonadi.svgz share/kdevappwizard/templates/akonadiresource.tar.bz2 share/kdevappwizard/templates/akonadiserializer.tar.bz2 share/kf6/akonadi/akonadi-xml.xsd share/kf6/akonadi/kcfg2dbus.xsl share/kf6/akonadi_knut_resource/knut-template.xml +share/locale/ar/LC_MESSAGES/akonadi-db-migrator.mo share/locale/ar/LC_MESSAGES/akonadi_knut_resource.mo share/locale/ar/LC_MESSAGES/libakonadi6.mo share/locale/ast/LC_MESSAGES/akonadi-db-migrator.mo share/locale/ast/LC_MESSAGES/akonadi_knut_resource.mo share/locale/ast/LC_MESSAGES/libakonadi6.mo share/locale/az/LC_MESSAGES/akonadi_knut_resource.mo share/locale/az/LC_MESSAGES/libakonadi6.mo share/locale/be/LC_MESSAGES/libakonadi6.mo share/locale/bg/LC_MESSAGES/akonadi-db-migrator.mo share/locale/bg/LC_MESSAGES/akonadi_knut_resource.mo share/locale/bg/LC_MESSAGES/libakonadi6.mo share/locale/bs/LC_MESSAGES/akonadi_knut_resource.mo share/locale/bs/LC_MESSAGES/libakonadi6.mo share/locale/ca/LC_MESSAGES/akonadi-db-migrator.mo share/locale/ca/LC_MESSAGES/akonadi_knut_resource.mo share/locale/ca/LC_MESSAGES/libakonadi6.mo share/locale/ca@valencia/LC_MESSAGES/akonadi-db-migrator.mo share/locale/ca@valencia/LC_MESSAGES/akonadi_knut_resource.mo share/locale/ca@valencia/LC_MESSAGES/libakonadi6.mo share/locale/cs/LC_MESSAGES/akonadi-db-migrator.mo share/locale/cs/LC_MESSAGES/akonadi_knut_resource.mo share/locale/cs/LC_MESSAGES/libakonadi6.mo share/locale/da/LC_MESSAGES/akonadi_knut_resource.mo share/locale/da/LC_MESSAGES/libakonadi6.mo share/locale/de/LC_MESSAGES/akonadi-db-migrator.mo share/locale/de/LC_MESSAGES/akonadi_knut_resource.mo share/locale/de/LC_MESSAGES/libakonadi6.mo share/locale/el/LC_MESSAGES/akonadi-db-migrator.mo share/locale/el/LC_MESSAGES/akonadi_knut_resource.mo share/locale/el/LC_MESSAGES/libakonadi6.mo share/locale/en_GB/LC_MESSAGES/akonadi-db-migrator.mo share/locale/en_GB/LC_MESSAGES/akonadi_knut_resource.mo share/locale/en_GB/LC_MESSAGES/libakonadi6.mo share/locale/eo/LC_MESSAGES/akonadi-db-migrator.mo share/locale/eo/LC_MESSAGES/akonadi_knut_resource.mo share/locale/eo/LC_MESSAGES/libakonadi6.mo share/locale/es/LC_MESSAGES/akonadi-db-migrator.mo share/locale/es/LC_MESSAGES/akonadi_knut_resource.mo share/locale/es/LC_MESSAGES/libakonadi6.mo share/locale/et/LC_MESSAGES/akonadi_knut_resource.mo share/locale/et/LC_MESSAGES/libakonadi6.mo share/locale/eu/LC_MESSAGES/akonadi-db-migrator.mo share/locale/eu/LC_MESSAGES/akonadi_knut_resource.mo share/locale/eu/LC_MESSAGES/libakonadi6.mo share/locale/fi/LC_MESSAGES/akonadi-db-migrator.mo share/locale/fi/LC_MESSAGES/akonadi_knut_resource.mo share/locale/fi/LC_MESSAGES/libakonadi6.mo share/locale/fr/LC_MESSAGES/akonadi-db-migrator.mo share/locale/fr/LC_MESSAGES/akonadi_knut_resource.mo share/locale/fr/LC_MESSAGES/libakonadi6.mo share/locale/ga/LC_MESSAGES/akonadi_knut_resource.mo share/locale/ga/LC_MESSAGES/libakonadi6.mo share/locale/gl/LC_MESSAGES/akonadi-db-migrator.mo share/locale/gl/LC_MESSAGES/akonadi_knut_resource.mo share/locale/gl/LC_MESSAGES/libakonadi6.mo share/locale/he/LC_MESSAGES/akonadi-db-migrator.mo share/locale/he/LC_MESSAGES/akonadi_knut_resource.mo share/locale/hsb/LC_MESSAGES/libakonadi6.mo share/locale/hu/LC_MESSAGES/akonadi-db-migrator.mo share/locale/hu/LC_MESSAGES/akonadi_knut_resource.mo share/locale/hu/LC_MESSAGES/libakonadi6.mo share/locale/ia/LC_MESSAGES/akonadi-db-migrator.mo share/locale/ia/LC_MESSAGES/akonadi_knut_resource.mo share/locale/ia/LC_MESSAGES/libakonadi6.mo share/locale/id/LC_MESSAGES/akonadi-db-migrator.mo share/locale/id/LC_MESSAGES/akonadi_knut_resource.mo share/locale/id/LC_MESSAGES/libakonadi6.mo share/locale/is/LC_MESSAGES/akonadi_knut_resource.mo share/locale/it/LC_MESSAGES/akonadi-db-migrator.mo share/locale/it/LC_MESSAGES/akonadi_knut_resource.mo share/locale/it/LC_MESSAGES/libakonadi6.mo share/locale/ja/LC_MESSAGES/akonadi-db-migrator.mo share/locale/ja/LC_MESSAGES/akonadi_knut_resource.mo share/locale/ja/LC_MESSAGES/libakonadi6.mo share/locale/ka/LC_MESSAGES/akonadi-db-migrator.mo share/locale/ka/LC_MESSAGES/akonadi_knut_resource.mo share/locale/ka/LC_MESSAGES/libakonadi6.mo share/locale/kk/LC_MESSAGES/akonadi_knut_resource.mo share/locale/kk/LC_MESSAGES/libakonadi6.mo share/locale/km/LC_MESSAGES/akonadi_knut_resource.mo share/locale/km/LC_MESSAGES/libakonadi6.mo share/locale/ko/LC_MESSAGES/akonadi-db-migrator.mo share/locale/ko/LC_MESSAGES/akonadi_knut_resource.mo share/locale/ko/LC_MESSAGES/libakonadi6.mo share/locale/lt/LC_MESSAGES/akonadi-db-migrator.mo share/locale/lt/LC_MESSAGES/akonadi_knut_resource.mo share/locale/lt/LC_MESSAGES/libakonadi6.mo share/locale/lv/LC_MESSAGES/akonadi-db-migrator.mo share/locale/lv/LC_MESSAGES/akonadi_knut_resource.mo share/locale/lv/LC_MESSAGES/libakonadi6.mo share/locale/mai/LC_MESSAGES/libakonadi6.mo share/locale/mr/LC_MESSAGES/akonadi_knut_resource.mo share/locale/mr/LC_MESSAGES/libakonadi6.mo share/locale/my/LC_MESSAGES/akonadi_knut_resource.mo share/locale/my/LC_MESSAGES/libakonadi6.mo share/locale/nb/LC_MESSAGES/akonadi_knut_resource.mo share/locale/nb/LC_MESSAGES/libakonadi6.mo share/locale/nds/LC_MESSAGES/akonadi_knut_resource.mo share/locale/nds/LC_MESSAGES/libakonadi6.mo share/locale/nl/LC_MESSAGES/akonadi-db-migrator.mo share/locale/nl/LC_MESSAGES/akonadi_knut_resource.mo share/locale/nl/LC_MESSAGES/libakonadi6.mo share/locale/nn/LC_MESSAGES/akonadi_knut_resource.mo share/locale/nn/LC_MESSAGES/libakonadi6.mo share/locale/pa/LC_MESSAGES/akonadi-db-migrator.mo share/locale/pa/LC_MESSAGES/akonadi_knut_resource.mo share/locale/pa/LC_MESSAGES/libakonadi6.mo share/locale/pl/LC_MESSAGES/akonadi-db-migrator.mo share/locale/pl/LC_MESSAGES/akonadi_knut_resource.mo share/locale/pl/LC_MESSAGES/libakonadi6.mo share/locale/pt/LC_MESSAGES/akonadi_knut_resource.mo share/locale/pt/LC_MESSAGES/libakonadi6.mo share/locale/pt_BR/LC_MESSAGES/akonadi-db-migrator.mo share/locale/pt_BR/LC_MESSAGES/akonadi_knut_resource.mo share/locale/pt_BR/LC_MESSAGES/libakonadi6.mo share/locale/ro/LC_MESSAGES/akonadi_knut_resource.mo share/locale/ro/LC_MESSAGES/libakonadi6.mo share/locale/ru/LC_MESSAGES/akonadi-db-migrator.mo share/locale/ru/LC_MESSAGES/akonadi_knut_resource.mo share/locale/ru/LC_MESSAGES/libakonadi6.mo share/locale/se/LC_MESSAGES/libakonadi6.mo share/locale/sk/LC_MESSAGES/akonadi-db-migrator.mo share/locale/sk/LC_MESSAGES/akonadi_knut_resource.mo share/locale/sk/LC_MESSAGES/libakonadi6.mo share/locale/sl/LC_MESSAGES/akonadi-db-migrator.mo share/locale/sl/LC_MESSAGES/akonadi_knut_resource.mo share/locale/sl/LC_MESSAGES/libakonadi6.mo share/locale/sq/LC_MESSAGES/akonadi_knut_resource.mo share/locale/sr/LC_MESSAGES/akonadi_knut_resource.mo share/locale/sr/LC_MESSAGES/libakonadi6.mo share/locale/sr@ijekavian/LC_MESSAGES/akonadi_knut_resource.mo share/locale/sr@ijekavian/LC_MESSAGES/libakonadi6.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/akonadi_knut_resource.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/libakonadi6.mo share/locale/sr@latin/LC_MESSAGES/akonadi_knut_resource.mo share/locale/sr@latin/LC_MESSAGES/libakonadi6.mo share/locale/sv/LC_MESSAGES/akonadi-db-migrator.mo share/locale/sv/LC_MESSAGES/akonadi_knut_resource.mo share/locale/sv/LC_MESSAGES/libakonadi6.mo share/locale/ta/LC_MESSAGES/akonadi-db-migrator.mo share/locale/ta/LC_MESSAGES/akonadi_knut_resource.mo share/locale/ta/LC_MESSAGES/libakonadi6.mo share/locale/tg/LC_MESSAGES/akonadi_knut_resource.mo share/locale/tg/LC_MESSAGES/libakonadi6.mo share/locale/th/LC_MESSAGES/libakonadi6.mo share/locale/tr/LC_MESSAGES/akonadi-db-migrator.mo share/locale/tr/LC_MESSAGES/akonadi_knut_resource.mo share/locale/tr/LC_MESSAGES/libakonadi6.mo share/locale/ug/LC_MESSAGES/akonadi_knut_resource.mo share/locale/ug/LC_MESSAGES/libakonadi6.mo share/locale/uk/LC_MESSAGES/akonadi-db-migrator.mo share/locale/uk/LC_MESSAGES/akonadi_knut_resource.mo share/locale/uk/LC_MESSAGES/libakonadi6.mo share/locale/zh_CN/LC_MESSAGES/akonadi-db-migrator.mo share/locale/zh_CN/LC_MESSAGES/akonadi_knut_resource.mo share/locale/zh_CN/LC_MESSAGES/libakonadi6.mo share/locale/zh_TW/LC_MESSAGES/akonadi-db-migrator.mo share/locale/zh_TW/LC_MESSAGES/akonadi_knut_resource.mo share/locale/zh_TW/LC_MESSAGES/libakonadi6.mo share/mime/packages/akonadi-mime.xml share/qlogging-categories6/akonadi.categories share/qlogging-categories6/akonadi.renamecategories diff --git a/deskutils/akonadi-calendar-tools/distinfo b/deskutils/akonadi-calendar-tools/distinfo index c212fc77ec1f..8486c5adeebb 100644 --- a/deskutils/akonadi-calendar-tools/distinfo +++ b/deskutils/akonadi-calendar-tools/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1734460033 -SHA256 (KDE/release-service/24.12.0/akonadi-calendar-tools-24.12.0.tar.xz) = fb5531c8d7a4c415e063bc6ccf6211541c1fd8ae040f0fb47486168a771d1040 -SIZE (KDE/release-service/24.12.0/akonadi-calendar-tools-24.12.0.tar.xz) = 269360 +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 diff --git a/deskutils/akonadi-import-wizard/distinfo b/deskutils/akonadi-import-wizard/distinfo index 4de1e6a73afc..3c469a4ba19e 100644 --- a/deskutils/akonadi-import-wizard/distinfo +++ b/deskutils/akonadi-import-wizard/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1734460035 -SHA256 (KDE/release-service/24.12.0/akonadi-import-wizard-24.12.0.tar.xz) = e5abdaff722ab35d35afef63e12ccdc8ca37d464db3f73f383cf839557f641a8 -SIZE (KDE/release-service/24.12.0/akonadi-import-wizard-24.12.0.tar.xz) = 491896 +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 diff --git a/deskutils/akonadiconsole/distinfo b/deskutils/akonadiconsole/distinfo index 96d2c3804cbf..56cb52c8d3f6 100644 --- a/deskutils/akonadiconsole/distinfo +++ b/deskutils/akonadiconsole/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1734460036 -SHA256 (KDE/release-service/24.12.0/akonadiconsole-24.12.0.tar.xz) = bf0a7ca3571b36a52e493b8c3c87f3cd4f5245dd4df02cb9521d4c2148c1fb1e -SIZE (KDE/release-service/24.12.0/akonadiconsole-24.12.0.tar.xz) = 313788 +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 diff --git a/deskutils/akregator/distinfo b/deskutils/akregator/distinfo index e45a7eb2df7e..d4a2a2a228cd 100644 --- a/deskutils/akregator/distinfo +++ b/deskutils/akregator/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1734460038 -SHA256 (KDE/release-service/24.12.0/akregator-24.12.0.tar.xz) = 4828565f78a4c9439d41943e87ab3415468a60ec493883a3596b9bcd70230c1e -SIZE (KDE/release-service/24.12.0/akregator-24.12.0.tar.xz) = 2134208 +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 diff --git a/deskutils/grantlee-editor/distinfo b/deskutils/grantlee-editor/distinfo index 7528246ebee9..b8e172954ac0 100644 --- a/deskutils/grantlee-editor/distinfo +++ b/deskutils/grantlee-editor/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1734460040 -SHA256 (KDE/release-service/24.12.0/grantlee-editor-24.12.0.tar.xz) = 65357fefd24610395b7644c5359c75860739a83825bc47188b00f007929b0bc7 -SIZE (KDE/release-service/24.12.0/grantlee-editor-24.12.0.tar.xz) = 124352 +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 diff --git a/deskutils/grantleetheme/distinfo b/deskutils/grantleetheme/distinfo index cd57239b092d..32a139531048 100644 --- a/deskutils/grantleetheme/distinfo +++ b/deskutils/grantleetheme/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1734460041 -SHA256 (KDE/release-service/24.12.0/grantleetheme-24.12.0.tar.xz) = 21e566e19782f888d67026141991743cb144ded7d11b2f9c060e445a9fce07fb -SIZE (KDE/release-service/24.12.0/grantleetheme-24.12.0.tar.xz) = 63504 +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 diff --git a/deskutils/itinerary/distinfo b/deskutils/itinerary/distinfo index a813b46a193e..0eed2d5be4fa 100644 --- a/deskutils/itinerary/distinfo +++ b/deskutils/itinerary/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1734460043 -SHA256 (KDE/release-service/24.12.0/itinerary-24.12.0.tar.xz) = 76bb36a2358a0333d6c16a79789a47e45b5edc566078a9c8918b7f897e052e8c -SIZE (KDE/release-service/24.12.0/itinerary-24.12.0.tar.xz) = 767676 +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 diff --git a/deskutils/kaddressbook/distinfo b/deskutils/kaddressbook/distinfo index 1b4edcc06d7d..429ea6c74d7e 100644 --- a/deskutils/kaddressbook/distinfo +++ b/deskutils/kaddressbook/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1734460045 -SHA256 (KDE/release-service/24.12.0/kaddressbook-24.12.0.tar.xz) = 44de7575a593e47c37d236bb8bcee4806c859b2a53a34a44f354d620760f9a5c -SIZE (KDE/release-service/24.12.0/kaddressbook-24.12.0.tar.xz) = 3429604 +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 diff --git a/deskutils/kalarm/distinfo b/deskutils/kalarm/distinfo index 572b7c73d0a7..879026f6a295 100644 --- a/deskutils/kalarm/distinfo +++ b/deskutils/kalarm/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1734460047 -SHA256 (KDE/release-service/24.12.0/kalarm-24.12.0.tar.xz) = 699436c461b0b29aec3933b6c1b9e26345a53060f7558532da0689583735ef72 -SIZE (KDE/release-service/24.12.0/kalarm-24.12.0.tar.xz) = 2635624 +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 diff --git a/deskutils/kalarm/pkg-plist b/deskutils/kalarm/pkg-plist index 7c9b6d6950bd..286479ca7de1 100644 --- a/deskutils/kalarm/pkg-plist +++ b/deskutils/kalarm/pkg-plist @@ -1,106 +1,108 @@ bin/kalarm bin/kalarmautostart etc/xdg/autostart/kalarm.autostart.desktop lib/kconf_update_bin/kalarm-3.10.0-run_mode lib/libexec/kf6/kauth/kalarm_helper lib/libkalarmcalendar.so.6 lib/libkalarmcalendar.so.%%KDE_APPLICATIONS_SHLIB_VER%% lib/libkalarmplugin.so.6 lib/libkalarmplugin.so.%%KDE_APPLICATIONS_SHLIB_VER%% %%QT_PLUGINDIR%%/pim6/kalarm/akonadiplugin.so share/applications/org.kde.kalarm.desktop share/config.kcfg/kalarmconfig.kcfg share/dbus-1/interfaces/org.kde.kalarm.kalarm.xml share/dbus-1/system-services/org.kde.kalarm.rtcwake.service share/dbus-1/system.d/org.kde.kalarm.rtcwake.conf share/icons/hicolor/128x128/apps/kalarm.png share/icons/hicolor/16x16/apps/kalarm.png +share/icons/hicolor/22x22/actions/kalarm-disabled.png +share/icons/hicolor/22x22/actions/kalarm-partdisabled.png share/icons/hicolor/22x22/apps/kalarm.png share/icons/hicolor/32x32/apps/kalarm.png share/icons/hicolor/48x48/apps/kalarm.png share/icons/hicolor/64x64/apps/kalarm.png %%DATADIR%%/icons/oxygen/16x16/actions/document-new-from-template.png %%DATADIR%%/icons/oxygen/22x22/actions/document-new-from-template.png %%DATADIR%%/icons/oxygen/22x22/actions/kalarm.png share/kconf_update/kalarm.upd share/knotifications6/kalarm.notifyrc share/locale/af/LC_MESSAGES/kalarm.mo share/locale/ar/LC_MESSAGES/kalarm.mo share/locale/ast/LC_MESSAGES/kalarm.mo share/locale/be/LC_MESSAGES/kalarm.mo share/locale/bg/LC_MESSAGES/kalarm.mo share/locale/br/LC_MESSAGES/kalarm.mo share/locale/bs/LC_MESSAGES/kalarm.mo share/locale/ca/LC_MESSAGES/kalarm.mo share/locale/ca@valencia/LC_MESSAGES/kalarm.mo share/locale/cs/LC_MESSAGES/kalarm.mo share/locale/cy/LC_MESSAGES/kalarm.mo share/locale/da/LC_MESSAGES/kalarm.mo share/locale/de/LC_MESSAGES/kalarm.mo share/locale/el/LC_MESSAGES/kalarm.mo share/locale/en_GB/LC_MESSAGES/kalarm.mo share/locale/eo/LC_MESSAGES/kalarm.mo share/locale/es/LC_MESSAGES/kalarm.mo share/locale/et/LC_MESSAGES/kalarm.mo share/locale/eu/LC_MESSAGES/kalarm.mo share/locale/fa/LC_MESSAGES/kalarm.mo share/locale/fi/LC_MESSAGES/kalarm.mo share/locale/fr/LC_MESSAGES/kalarm.mo share/locale/fy/LC_MESSAGES/kalarm.mo share/locale/ga/LC_MESSAGES/kalarm.mo share/locale/gl/LC_MESSAGES/kalarm.mo share/locale/he/LC_MESSAGES/kalarm.mo share/locale/hi/LC_MESSAGES/kalarm.mo share/locale/hne/LC_MESSAGES/kalarm.mo share/locale/hr/LC_MESSAGES/kalarm.mo share/locale/hu/LC_MESSAGES/kalarm.mo share/locale/ia/LC_MESSAGES/kalarm.mo share/locale/is/LC_MESSAGES/kalarm.mo share/locale/it/LC_MESSAGES/kalarm.mo share/locale/ja/LC_MESSAGES/kalarm.mo share/locale/ka/LC_MESSAGES/kalarm.mo share/locale/kk/LC_MESSAGES/kalarm.mo share/locale/km/LC_MESSAGES/kalarm.mo share/locale/ko/LC_MESSAGES/kalarm.mo share/locale/lt/LC_MESSAGES/kalarm.mo share/locale/lv/LC_MESSAGES/kalarm.mo share/locale/mai/LC_MESSAGES/kalarm.mo share/locale/mk/LC_MESSAGES/kalarm.mo share/locale/mr/LC_MESSAGES/kalarm.mo share/locale/ms/LC_MESSAGES/kalarm.mo share/locale/nb/LC_MESSAGES/kalarm.mo share/locale/nds/LC_MESSAGES/kalarm.mo share/locale/ne/LC_MESSAGES/kalarm.mo share/locale/nl/LC_MESSAGES/kalarm.mo share/locale/nn/LC_MESSAGES/kalarm.mo share/locale/pa/LC_MESSAGES/kalarm.mo share/locale/pl/LC_MESSAGES/kalarm.mo share/locale/pt/LC_MESSAGES/kalarm.mo share/locale/pt_BR/LC_MESSAGES/kalarm.mo share/locale/ro/LC_MESSAGES/kalarm.mo share/locale/ru/LC_MESSAGES/kalarm.mo share/locale/se/LC_MESSAGES/kalarm.mo share/locale/si/LC_MESSAGES/kalarm.mo share/locale/sk/LC_MESSAGES/kalarm.mo share/locale/sl/LC_MESSAGES/kalarm.mo share/locale/sq/LC_MESSAGES/kalarm.mo share/locale/sr/LC_MESSAGES/kalarm.mo share/locale/sr@ijekavian/LC_MESSAGES/kalarm.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kalarm.mo share/locale/sr@latin/LC_MESSAGES/kalarm.mo share/locale/sv/LC_MESSAGES/kalarm.mo share/locale/ta/LC_MESSAGES/kalarm.mo share/locale/tg/LC_MESSAGES/kalarm.mo share/locale/tr/LC_MESSAGES/kalarm.mo share/locale/ug/LC_MESSAGES/kalarm.mo share/locale/uk/LC_MESSAGES/kalarm.mo share/locale/uz/LC_MESSAGES/kalarm.mo share/locale/uz@cyrillic/LC_MESSAGES/kalarm.mo share/locale/wa/LC_MESSAGES/kalarm.mo share/locale/xh/LC_MESSAGES/kalarm.mo share/locale/zh_CN/LC_MESSAGES/kalarm.mo share/locale/zh_TW/LC_MESSAGES/kalarm.mo share/metainfo/org.kde.kalarm.appdata.xml share/polkit-1/actions/org.kde.kalarm.rtcwake.policy share/qlogging-categories6/kalarm.categories share/qlogging-categories6/kalarm.renamecategories diff --git a/deskutils/kcharselect/distinfo b/deskutils/kcharselect/distinfo index 21b194101b9e..4c1fb68722fe 100644 --- a/deskutils/kcharselect/distinfo +++ b/deskutils/kcharselect/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1734460048 -SHA256 (KDE/release-service/24.12.0/kcharselect-24.12.0.tar.xz) = d0a746000f0ff810b89f6e9ba2b65cdce4f2cd92ccd3e108940f2a9af184de3f -SIZE (KDE/release-service/24.12.0/kcharselect-24.12.0.tar.xz) = 477080 +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 diff --git a/deskutils/kdeconnect-kde/distinfo b/deskutils/kdeconnect-kde/distinfo index 412f41780d06..c78538feabac 100644 --- a/deskutils/kdeconnect-kde/distinfo +++ b/deskutils/kdeconnect-kde/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1734460050 -SHA256 (KDE/release-service/24.12.0/kdeconnect-kde-24.12.0.tar.xz) = 33f40c531fa5d3f5398e9020fe8c1f8e49210127d2827ffbcdc3f942a10774d4 -SIZE (KDE/release-service/24.12.0/kdeconnect-kde-24.12.0.tar.xz) = 714468 +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 diff --git a/deskutils/kdepim-addons/distinfo b/deskutils/kdepim-addons/distinfo index fb47d9176efa..2da2345b5f99 100644 --- a/deskutils/kdepim-addons/distinfo +++ b/deskutils/kdepim-addons/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1734460052 -SHA256 (KDE/release-service/24.12.0/kdepim-addons-24.12.0.tar.xz) = 68f0c8f1188695f9eb0530951aa15e3740ab49e1af9c46537e8af11f055687e8 -SIZE (KDE/release-service/24.12.0/kdepim-addons-24.12.0.tar.xz) = 2617728 +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 diff --git a/deskutils/kdepim-runtime/distinfo b/deskutils/kdepim-runtime/distinfo index 979b59628ecb..c28429adf406 100644 --- a/deskutils/kdepim-runtime/distinfo +++ b/deskutils/kdepim-runtime/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1734460054 -SHA256 (KDE/release-service/24.12.0/kdepim-runtime-24.12.0.tar.xz) = 80f64309b75ab0be488eff3748143368ec661844f891ef28b3a916ac802a58a2 -SIZE (KDE/release-service/24.12.0/kdepim-runtime-24.12.0.tar.xz) = 1664668 +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 diff --git a/deskutils/keditbookmarks/distinfo b/deskutils/keditbookmarks/distinfo index 7af5200752b6..57cc00a12d1b 100644 --- a/deskutils/keditbookmarks/distinfo +++ b/deskutils/keditbookmarks/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1734460055 -SHA256 (KDE/release-service/24.12.0/keditbookmarks-24.12.0.tar.xz) = 2c583d76abe444fc388cb63ca9f72842cdfbd01a1173378e37f90308e95b25bd -SIZE (KDE/release-service/24.12.0/keditbookmarks-24.12.0.tar.xz) = 260580 +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 diff --git a/deskutils/kfind/distinfo b/deskutils/kfind/distinfo index 082a5bff1c40..dcf371607a91 100644 --- a/deskutils/kfind/distinfo +++ b/deskutils/kfind/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1734460057 -SHA256 (KDE/release-service/24.12.0/kfind-24.12.0.tar.xz) = c1a9d4da666dff8bfb89f3d22b9d7c203eacad5d53208b69f40032c82e421a39 -SIZE (KDE/release-service/24.12.0/kfind-24.12.0.tar.xz) = 330376 +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 diff --git a/deskutils/kmail-account-wizard/distinfo b/deskutils/kmail-account-wizard/distinfo index 60efd8e85e61..485eae9fc40d 100644 --- a/deskutils/kmail-account-wizard/distinfo +++ b/deskutils/kmail-account-wizard/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1734460061 -SHA256 (KDE/release-service/24.12.0/kmail-account-wizard-24.12.0.tar.xz) = 78f17730d10b424d039e60f13b8f56701bcc46d7930fd57c4582fd1afb69857b -SIZE (KDE/release-service/24.12.0/kmail-account-wizard-24.12.0.tar.xz) = 167652 +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 diff --git a/deskutils/kmail/distinfo b/deskutils/kmail/distinfo index 0226c321d2e5..7b04c42d9a20 100644 --- a/deskutils/kmail/distinfo +++ b/deskutils/kmail/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1734460059 -SHA256 (KDE/release-service/24.12.0/kmail-24.12.0.tar.xz) = 55ccb818d7f23b928bcfc0a9a236d04436546b3ab0b0e5a9ad7e6f75b48602fa -SIZE (KDE/release-service/24.12.0/kmail-24.12.0.tar.xz) = 7771708 +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 diff --git a/deskutils/kontact/distinfo b/deskutils/kontact/distinfo index 71602164d93a..ba08c1275e11 100644 --- a/deskutils/kontact/distinfo +++ b/deskutils/kontact/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1734460063 -SHA256 (KDE/release-service/24.12.0/kontact-24.12.0.tar.xz) = 3c14a9533fe7968c6481883eb6a81e4fe8ef70ff0c5288514513b175a0a41733 -SIZE (KDE/release-service/24.12.0/kontact-24.12.0.tar.xz) = 868648 +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 diff --git a/deskutils/korganizer/distinfo b/deskutils/korganizer/distinfo index 82a0cffff256..aff1245f32b3 100644 --- a/deskutils/korganizer/distinfo +++ b/deskutils/korganizer/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1734460064 -SHA256 (KDE/release-service/24.12.0/korganizer-24.12.0.tar.xz) = a340ca5b469ec0706947d3b23db87a490ae97a85524b907b0c5db0524d8f5746 -SIZE (KDE/release-service/24.12.0/korganizer-24.12.0.tar.xz) = 2940220 +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 diff --git a/deskutils/kruler/distinfo b/deskutils/kruler/distinfo index 22140585fcc2..e4e0d5d042b7 100644 --- a/deskutils/kruler/distinfo +++ b/deskutils/kruler/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1734460066 -SHA256 (KDE/release-service/24.12.0/kruler-24.12.0.tar.xz) = d522d5b7c9648ca84b8f179fe3eea8c9c786a9cc1641da5565b1140dca1c7c5c -SIZE (KDE/release-service/24.12.0/kruler-24.12.0.tar.xz) = 286464 +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 diff --git a/deskutils/libkdepim/distinfo b/deskutils/libkdepim/distinfo index 0f47d48a3cce..9cc63648a8d7 100644 --- a/deskutils/libkdepim/distinfo +++ b/deskutils/libkdepim/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1734460068 -SHA256 (KDE/release-service/24.12.0/libkdepim-24.12.0.tar.xz) = 7bbb03d777802399f50d51f4db06e498d3ef5e2c3cf87870224f6d5e7b82c4f7 -SIZE (KDE/release-service/24.12.0/libkdepim-24.12.0.tar.xz) = 282920 +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 diff --git a/deskutils/mbox-importer/distinfo b/deskutils/mbox-importer/distinfo index 588a48008184..0501fd56e13d 100644 --- a/deskutils/mbox-importer/distinfo +++ b/deskutils/mbox-importer/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1734460069 -SHA256 (KDE/release-service/24.12.0/mbox-importer-24.12.0.tar.xz) = eceea4ae75a94ac758486a7a39dfc09c4d63a3a8df8e0379fdc4f1b8fe8b2773 -SIZE (KDE/release-service/24.12.0/mbox-importer-24.12.0.tar.xz) = 31936 +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 diff --git a/deskutils/merkuro/distinfo b/deskutils/merkuro/distinfo index bb0e2e24dd9e..859885d21834 100644 --- a/deskutils/merkuro/distinfo +++ b/deskutils/merkuro/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1734460071 -SHA256 (KDE/release-service/24.12.0/merkuro-24.12.0.tar.xz) = 335540c4ec47441f7f09df224d3dd4aff5758c377e41c208fca31fdefcf20eab -SIZE (KDE/release-service/24.12.0/merkuro-24.12.0.tar.xz) = 792316 +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 diff --git a/deskutils/merkuro/pkg-plist b/deskutils/merkuro/pkg-plist index 174e2f9c73f4..d6d56fafdf98 100644 --- a/deskutils/merkuro/pkg-plist +++ b/deskutils/merkuro/pkg-plist @@ -1,216 +1,218 @@ 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/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.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/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 e80bacedb6ac..0044b53d3fd0 100644 --- a/deskutils/pim-data-exporter/distinfo +++ b/deskutils/pim-data-exporter/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1734460073 -SHA256 (KDE/release-service/24.12.0/pim-data-exporter-24.12.0.tar.xz) = d544034f3a5ea29b5bd45bd757d257162fb10d2affadff52a00bbf1ef1f8e06f -SIZE (KDE/release-service/24.12.0/pim-data-exporter-24.12.0.tar.xz) = 421368 +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 diff --git a/deskutils/pim-sieve-editor/distinfo b/deskutils/pim-sieve-editor/distinfo index 1baca7b87932..f98c852eda68 100644 --- a/deskutils/pim-sieve-editor/distinfo +++ b/deskutils/pim-sieve-editor/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1734460074 -SHA256 (KDE/release-service/24.12.0/pim-sieve-editor-24.12.0.tar.xz) = 1b37acf93cb07d066f7a7542e4104bef1b1706258478bec06b4dc24b03d8cdd8 -SIZE (KDE/release-service/24.12.0/pim-sieve-editor-24.12.0.tar.xz) = 470480 +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 diff --git a/deskutils/zanshin/distinfo b/deskutils/zanshin/distinfo index c44c0cfceda6..11c84f6e6f3c 100644 --- a/deskutils/zanshin/distinfo +++ b/deskutils/zanshin/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1734460076 -SHA256 (KDE/release-service/24.12.0/zanshin-24.12.0.tar.xz) = 6a84825fc75e5b0ce04aec8decd8062989f5463ab94f76f8d40a5f5ccbf6cf90 -SIZE (KDE/release-service/24.12.0/zanshin-24.12.0.tar.xz) = 377568 +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 diff --git a/devel/cervisia/distinfo b/devel/cervisia/distinfo index d9f4a0ba0d52..6d2281baef96 100644 --- a/devel/cervisia/distinfo +++ b/devel/cervisia/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1734460078 -SHA256 (KDE/release-service/24.12.0/cervisia-24.12.0.tar.xz) = a889c7d8c434ff0342fc522c699943f2d9301888aa40e8fe27aacc2fdd23820b -SIZE (KDE/release-service/24.12.0/cervisia-24.12.0.tar.xz) = 1809936 +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 diff --git a/devel/dolphin-plugins/distinfo b/devel/dolphin-plugins/distinfo index a3bbe7c9c4ca..2ec2d9551ca3 100644 --- a/devel/dolphin-plugins/distinfo +++ b/devel/dolphin-plugins/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1734460080 -SHA256 (KDE/release-service/24.12.0/dolphin-plugins-24.12.0.tar.xz) = edfd039209603ef0462fc53c8de067b3331afefbf10663bd444ae145a52c216d -SIZE (KDE/release-service/24.12.0/dolphin-plugins-24.12.0.tar.xz) = 319128 +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 diff --git a/devel/kapptemplate/distinfo b/devel/kapptemplate/distinfo index f0b6a7f6a88c..3f23ffbc98a4 100644 --- a/devel/kapptemplate/distinfo +++ b/devel/kapptemplate/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1734460081 -SHA256 (KDE/release-service/24.12.0/kapptemplate-24.12.0.tar.xz) = c99c3f211d8657218fb3d3afeaed14c67cbe6cb7ebc0f50ed8360b12191715cb -SIZE (KDE/release-service/24.12.0/kapptemplate-24.12.0.tar.xz) = 476172 +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 diff --git a/devel/kcachegrind/distinfo b/devel/kcachegrind/distinfo index d6b00919bedb..c899ae4ff012 100644 --- a/devel/kcachegrind/distinfo +++ b/devel/kcachegrind/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1734460084 -SHA256 (KDE/release-service/24.12.0/kcachegrind-24.12.0.tar.xz) = 163e23e2f18874e90cbad8b4cb8b3b25fbfd0513d5acf182f2c0d92e8a3c48ba -SIZE (KDE/release-service/24.12.0/kcachegrind-24.12.0.tar.xz) = 976688 +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 diff --git a/devel/kde-dev-scripts/distinfo b/devel/kde-dev-scripts/distinfo index 68f37209f8f3..f214ae6b27e2 100644 --- a/devel/kde-dev-scripts/distinfo +++ b/devel/kde-dev-scripts/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1734460085 -SHA256 (KDE/release-service/24.12.0/kde-dev-scripts-24.12.0.tar.xz) = 4d8abf915cdec7d973f40e2923ea275bfeaa77f84edd7c82fecee0e29189d66d -SIZE (KDE/release-service/24.12.0/kde-dev-scripts-24.12.0.tar.xz) = 376196 +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 diff --git a/devel/kde-dev-utils/distinfo b/devel/kde-dev-utils/distinfo index 81908ec5b3b0..06ae82f5f2d0 100644 --- a/devel/kde-dev-utils/distinfo +++ b/devel/kde-dev-utils/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1734460087 -SHA256 (KDE/release-service/24.12.0/kde-dev-utils-24.12.0.tar.xz) = 5fd608c52843b2f8c263cb9abb77feb02c065646654f130f5212336a7a640210 -SIZE (KDE/release-service/24.12.0/kde-dev-utils-24.12.0.tar.xz) = 75616 +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 diff --git a/devel/kdesdk-kio/distinfo b/devel/kdesdk-kio/distinfo index f0b21a6637c3..0121ab14b8e4 100644 --- a/devel/kdesdk-kio/distinfo +++ b/devel/kdesdk-kio/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1734460088 -SHA256 (KDE/release-service/24.12.0/kdesdk-kio-24.12.0.tar.xz) = 298dd4faaa1d91ca64355d8ebb81f2558ebd15a2093774e51a4cc63a4ecd59e8 -SIZE (KDE/release-service/24.12.0/kdesdk-kio-24.12.0.tar.xz) = 41768 +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 diff --git a/devel/kdesdk-thumbnailers/distinfo b/devel/kdesdk-thumbnailers/distinfo index a169a64be344..f8bb7a63276c 100644 --- a/devel/kdesdk-thumbnailers/distinfo +++ b/devel/kdesdk-thumbnailers/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1734460090 -SHA256 (KDE/release-service/24.12.0/kdesdk-thumbnailers-24.12.0.tar.xz) = a9816bc6178891fd0a160fb44f050b62c0daa03b19169355ea7974714f15d43c -SIZE (KDE/release-service/24.12.0/kdesdk-thumbnailers-24.12.0.tar.xz) = 27272 +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 diff --git a/devel/kdev-php/distinfo b/devel/kdev-php/distinfo index 03357f333845..3e5dbe1733ed 100644 --- a/devel/kdev-php/distinfo +++ b/devel/kdev-php/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1734460092 -SHA256 (KDE/release-service/24.12.0/kdev-php-24.12.0.tar.xz) = 4d81f13655b60df1df50493e0a28952f93eb3bf3b583336d89bda3c3c4d2fc64 -SIZE (KDE/release-service/24.12.0/kdev-php-24.12.0.tar.xz) = 1094416 +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 diff --git a/devel/kdev-python/distinfo b/devel/kdev-python/distinfo index 1eabdc72e953..d1a5e0b33347 100644 --- a/devel/kdev-python/distinfo +++ b/devel/kdev-python/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1734460094 -SHA256 (KDE/release-service/24.12.0/kdev-python-24.12.0.tar.xz) = 49eb40bdd574f62026a1d66ba2092f978c7cf6325fea23a916c40513409cbbe1 -SIZE (KDE/release-service/24.12.0/kdev-python-24.12.0.tar.xz) = 1102952 +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 diff --git a/devel/kdevelop/Makefile b/devel/kdevelop/Makefile index e9a0cbd9c3f3..f93720f392c6 100644 --- a/devel/kdevelop/Makefile +++ b/devel/kdevelop/Makefile @@ -1,56 +1,56 @@ # When updating this port, also chase # devel/kdev-php # devel/kdev-python PORTNAME= kdevelop DISTVERSION= ${KDE_APPLICATIONS_VERSION} CATEGORIES= devel kde kde-applications MAINTAINER= kde@FreeBSD.org COMMENT= Plugin extensible IDE for C/C++ and other languages WWW= https://www.kdevelop.org/ LICENSE= GPLv2+ LGPL20+ LICENSE_COMB= multi BUILD_DEPENDS= kdev-pg-qt:devel/kdevelop-pg-qt LIB_DEPENDS= libKasten4Controllers.so:devel/okteta \ libapr-1.so:devel/apr1 \ libsvn_client-1.so:devel/subversion \ libboost_thread.so:devel/boost-libs \ libkomparediff2.so:textproc/libkomparediff2 RUN_DEPENDS= gmake:devel/gmake USES= cmake compiler:c++11-lib desktop-file-utils gettext 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 SO_VER= 61 -SO_VER_LONG= 6.1.241200 +SO_VER_LONG= 6.1.241202 PLIST_SUB+= SO_VER=${SO_VER} SO_VER_LONG=${SO_VER_LONG} 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 3977196f3842..51483cc8103b 100644 --- a/devel/kdevelop/distinfo +++ b/devel/kdevelop/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1734460096 -SHA256 (KDE/release-service/24.12.0/kdevelop-24.12.0.tar.xz) = 72a7fd572360c995b54febf020c25755e42d8b84c065e453a436663298b82231 -SIZE (KDE/release-service/24.12.0/kdevelop-24.12.0.tar.xz) = 8833432 +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 diff --git a/devel/kio-extras/distinfo b/devel/kio-extras/distinfo index fc3093bbbcb3..dc96775b858e 100644 --- a/devel/kio-extras/distinfo +++ b/devel/kio-extras/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1734460097 -SHA256 (KDE/release-service/24.12.0/kio-extras-24.12.0.tar.xz) = 5131e77f3771320d65cde43cef6fd3eb9d59bf551cad6e90753b354ff15df2c4 -SIZE (KDE/release-service/24.12.0/kio-extras-24.12.0.tar.xz) = 3514376 +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 diff --git a/devel/kirigami-gallery/distinfo b/devel/kirigami-gallery/distinfo index d6495aed8266..ca247450c49a 100644 --- a/devel/kirigami-gallery/distinfo +++ b/devel/kirigami-gallery/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1734460099 -SHA256 (KDE/release-service/24.12.0/kirigami-gallery-24.12.0.tar.xz) = e2b66b3648f4b773e5c8435ed61ffbce1aed7a8078d2f2fc35ad2196cfcb47ce -SIZE (KDE/release-service/24.12.0/kirigami-gallery-24.12.0.tar.xz) = 370548 +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 diff --git a/devel/kopeninghours/distinfo b/devel/kopeninghours/distinfo index 64957ba18d86..743f6aca680b 100644 --- a/devel/kopeninghours/distinfo +++ b/devel/kopeninghours/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1734460101 -SHA256 (KDE/release-service/24.12.0/kopeninghours-24.12.0.tar.xz) = 16d29db8c240306794ef5938ce8ef8bea05974c81f4ebe3adf828a14eb6c0656 -SIZE (KDE/release-service/24.12.0/kopeninghours-24.12.0.tar.xz) = 74772 +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 diff --git a/devel/kpublictransport/distinfo b/devel/kpublictransport/distinfo index 9a5f9cda2bc3..2c3eeb122248 100644 --- a/devel/kpublictransport/distinfo +++ b/devel/kpublictransport/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1734460102 -SHA256 (KDE/release-service/24.12.0/kpublictransport-24.12.0.tar.xz) = b1e0f9498219e5733d47d2c8b60082201ea285215e392831a587267e2c683250 -SIZE (KDE/release-service/24.12.0/kpublictransport-24.12.0.tar.xz) = 757532 +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 diff --git a/devel/lokalize/distinfo b/devel/lokalize/distinfo index 8e41388f1fa8..04209190df32 100644 --- a/devel/lokalize/distinfo +++ b/devel/lokalize/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1734460104 -SHA256 (KDE/release-service/24.12.0/lokalize-24.12.0.tar.xz) = b53c6941a80e80d79cca34dff01abf232298c8474909cf4fd390289098d0c5ac -SIZE (KDE/release-service/24.12.0/lokalize-24.12.0.tar.xz) = 2059536 +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 diff --git a/devel/poxml/distinfo b/devel/poxml/distinfo index b05bafcde04f..b5372c461bfd 100644 --- a/devel/poxml/distinfo +++ b/devel/poxml/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1734460106 -SHA256 (KDE/release-service/24.12.0/poxml-24.12.0.tar.xz) = 3457d1eee055dd69adf6ca97f1e0db4d37c998f12346160ad6f69ef66400fea5 -SIZE (KDE/release-service/24.12.0/poxml-24.12.0.tar.xz) = 45188 +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 diff --git a/devel/umbrello/distinfo b/devel/umbrello/distinfo index fae04ad9dc21..a794850d71c0 100644 --- a/devel/umbrello/distinfo +++ b/devel/umbrello/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1734460108 -SHA256 (KDE/release-service/24.12.0/umbrello-24.12.0.tar.xz) = b972ad5f1a1887047a031839dc99fb27067ebabdb26c80ee5e07750f2b93f0e5 -SIZE (KDE/release-service/24.12.0/umbrello-24.12.0.tar.xz) = 5617524 +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 diff --git a/editors/calligra/distinfo b/editors/calligra/distinfo index 34bd8a4c324d..b9871dc8ae91 100644 --- a/editors/calligra/distinfo +++ b/editors/calligra/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1738761495 -SHA256 (KDE/release-service/24.12.0/calligra-24.12.0.tar.xz) = 71b89f1e8121b8f88ee43376acf7cb7a88cb6d9a078e8ba3f102389f9a1f6097 -SIZE (KDE/release-service/24.12.0/calligra-24.12.0.tar.xz) = 57903196 +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 diff --git a/editors/kate/distinfo b/editors/kate/distinfo index 8a5e079920da..5b43ce0766d8 100644 --- a/editors/kate/distinfo +++ b/editors/kate/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1734460110 -SHA256 (KDE/release-service/24.12.0/kate-24.12.0.tar.xz) = a5926a0d85c69ca2cc34d87e567501e795e95050e16f896e39cd8cac4ced2348 -SIZE (KDE/release-service/24.12.0/kate-24.12.0.tar.xz) = 8300640 +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 diff --git a/editors/kate/pkg-plist b/editors/kate/pkg-plist index f17ea13fcfdc..c3fc8a5f9d3e 100644 --- a/editors/kate/pkg-plist +++ b/editors/kate/pkg-plist @@ -1,1697 +1,1700 @@ 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/kate-ctags-plugin.mo share/locale/ar/LC_MESSAGES/kate-replicode-plugin.mo share/locale/ar/LC_MESSAGES/kate.mo share/locale/ar/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/ar/LC_MESSAGES/katebuild-plugin.mo share/locale/ar/LC_MESSAGES/katecloseexceptplugin.mo share/locale/ar/LC_MESSAGES/katecolorpickerplugin.mo share/locale/ar/LC_MESSAGES/katefilebrowserplugin.mo share/locale/ar/LC_MESSAGES/katefiletree.mo share/locale/ar/LC_MESSAGES/kategdbplugin.mo share/locale/ar/LC_MESSAGES/katekonsoleplugin.mo share/locale/ar/LC_MESSAGES/kateproject.mo share/locale/ar/LC_MESSAGES/katesearch.mo share/locale/ar/LC_MESSAGES/katesnippetsplugin.mo share/locale/ar/LC_MESSAGES/katesql.mo share/locale/ar/LC_MESSAGES/katesymbolviewer.mo share/locale/ar/LC_MESSAGES/katetextfilter.mo share/locale/ar/LC_MESSAGES/katexmlcheck.mo share/locale/ar/LC_MESSAGES/katexmltools.mo share/locale/ar/LC_MESSAGES/ktexteditorpreviewplugin.mo share/locale/ar/LC_MESSAGES/tabswitcherplugin.mo share/locale/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/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 2e2a3aa96891..c04b12046459 100644 --- a/games/blinken/distinfo +++ b/games/blinken/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1734460112 -SHA256 (KDE/release-service/24.12.0/blinken-24.12.0.tar.xz) = c2ee251c7b612b24ab488793a016f72a86ad3b4bfef6f837d0d182c53563daba -SIZE (KDE/release-service/24.12.0/blinken-24.12.0.tar.xz) = 2676028 +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 diff --git a/games/bomber/distinfo b/games/bomber/distinfo index 5aa20e1446dd..4635ae48bf04 100644 --- a/games/bomber/distinfo +++ b/games/bomber/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1734460115 -SHA256 (KDE/release-service/24.12.0/bomber-24.12.0.tar.xz) = d0b12cc21bce1a01c842b6638978a942888ce05694d3cdaa38f1a85d2ddac4fa -SIZE (KDE/release-service/24.12.0/bomber-24.12.0.tar.xz) = 838920 +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 diff --git a/games/bovo/distinfo b/games/bovo/distinfo index 3692d8b11eb8..d1fa63905a90 100644 --- a/games/bovo/distinfo +++ b/games/bovo/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1734460116 -SHA256 (KDE/release-service/24.12.0/bovo-24.12.0.tar.xz) = f94dd3b9d77497c3f0065588d5ef96affeb26de7cbb1f85e1021140fceaee94b -SIZE (KDE/release-service/24.12.0/bovo-24.12.0.tar.xz) = 220320 +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 diff --git a/games/granatier/distinfo b/games/granatier/distinfo index 89b2d236c36d..3605fd605ca9 100644 --- a/games/granatier/distinfo +++ b/games/granatier/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1734460118 -SHA256 (KDE/release-service/24.12.0/granatier-24.12.0.tar.xz) = 06a9630f12cff8184e2257d7d260a79ea92879aaee715ae5b7b648d124875af6 -SIZE (KDE/release-service/24.12.0/granatier-24.12.0.tar.xz) = 2014060 +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 diff --git a/games/kanagram/distinfo b/games/kanagram/distinfo index 3d6ad397fb51..ad33d40ebed0 100644 --- a/games/kanagram/distinfo +++ b/games/kanagram/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1734460120 -SHA256 (KDE/release-service/24.12.0/kanagram-24.12.0.tar.xz) = 3da43cb9a7facf58a0481fcca48a946915a8cb6c9f923fa16a746a63b5cee7ba -SIZE (KDE/release-service/24.12.0/kanagram-24.12.0.tar.xz) = 7783652 +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 diff --git a/games/kapman/distinfo b/games/kapman/distinfo index 01b8efff7a19..622a14309cc1 100644 --- a/games/kapman/distinfo +++ b/games/kapman/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1734460122 -SHA256 (KDE/release-service/24.12.0/kapman-24.12.0.tar.xz) = a8302a270f4dcb42731527a3b6acb797ac8ace6502129e978bf9b96a21c931c0 -SIZE (KDE/release-service/24.12.0/kapman-24.12.0.tar.xz) = 2148180 +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 diff --git a/games/katomic/distinfo b/games/katomic/distinfo index 9fb8772477af..e9070bb28800 100644 --- a/games/katomic/distinfo +++ b/games/katomic/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1734460123 -SHA256 (KDE/release-service/24.12.0/katomic-24.12.0.tar.xz) = 38f8158bd5c858caad42a4be5f6509f8b67a6006ab4a8fb45b271e646b4b7781 -SIZE (KDE/release-service/24.12.0/katomic-24.12.0.tar.xz) = 1448016 +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 diff --git a/games/kblackbox/distinfo b/games/kblackbox/distinfo index 0d723cbd7dc9..fb762b7760ec 100644 --- a/games/kblackbox/distinfo +++ b/games/kblackbox/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1734460125 -SHA256 (KDE/release-service/24.12.0/kblackbox-24.12.0.tar.xz) = c8ba44eae08ad150bad718adc7a17c4f918edf2ed8dc5c933ae6b7540261f8a0 -SIZE (KDE/release-service/24.12.0/kblackbox-24.12.0.tar.xz) = 550984 +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 diff --git a/games/kblocks/distinfo b/games/kblocks/distinfo index 46e771a27a5f..5e694af23671 100644 --- a/games/kblocks/distinfo +++ b/games/kblocks/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1734460127 -SHA256 (KDE/release-service/24.12.0/kblocks-24.12.0.tar.xz) = 266d1876499ce9523c17fada715b12b8204de5630921fff89246fc9d49d461a0 -SIZE (KDE/release-service/24.12.0/kblocks-24.12.0.tar.xz) = 2102608 +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 diff --git a/games/kbounce/distinfo b/games/kbounce/distinfo index 2f7dfb3d5f81..b23fef9692a8 100644 --- a/games/kbounce/distinfo +++ b/games/kbounce/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1734460129 -SHA256 (KDE/release-service/24.12.0/kbounce-24.12.0.tar.xz) = d24983bed5a9456c638ae51a07d452dcb6fa693f47a7101dc9597d1b42660853 -SIZE (KDE/release-service/24.12.0/kbounce-24.12.0.tar.xz) = 3322648 +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 diff --git a/games/kbreakout/distinfo b/games/kbreakout/distinfo index 0662f1177413..fb3412f12525 100644 --- a/games/kbreakout/distinfo +++ b/games/kbreakout/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1734460131 -SHA256 (KDE/release-service/24.12.0/kbreakout-24.12.0.tar.xz) = 09f476eaf57a194e668283de40fdab20251cc6e1898b257647d62b970c6b8d07 -SIZE (KDE/release-service/24.12.0/kbreakout-24.12.0.tar.xz) = 2555924 +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 diff --git a/games/kdiamond/distinfo b/games/kdiamond/distinfo index da474608ccaf..248e129bce44 100644 --- a/games/kdiamond/distinfo +++ b/games/kdiamond/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1734460133 -SHA256 (KDE/release-service/24.12.0/kdiamond-24.12.0.tar.xz) = 1dcc8ac08162c2994c2215eeb5e7bec28c1bf7da52f0e3b6e9c08ef35808960d -SIZE (KDE/release-service/24.12.0/kdiamond-24.12.0.tar.xz) = 4672644 +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 diff --git a/games/kfourinline/distinfo b/games/kfourinline/distinfo index 15bfbc10fc79..6a5fd89e3c9b 100644 --- a/games/kfourinline/distinfo +++ b/games/kfourinline/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1734460135 -SHA256 (KDE/release-service/24.12.0/kfourinline-24.12.0.tar.xz) = 1e2ed965e8f430abeee2362f5eab5d9d29b89dd3e0c2e2eaa72c63e6e549115e -SIZE (KDE/release-service/24.12.0/kfourinline-24.12.0.tar.xz) = 746016 +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 diff --git a/games/kgoldrunner/distinfo b/games/kgoldrunner/distinfo index dd442a28da39..c7b541e81c01 100644 --- a/games/kgoldrunner/distinfo +++ b/games/kgoldrunner/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1734460137 -SHA256 (KDE/release-service/24.12.0/kgoldrunner-24.12.0.tar.xz) = 0e6d3ee6402a130c4d58fa012cf9c8de0caf463e4b7deaf12e9a6462b48b050e -SIZE (KDE/release-service/24.12.0/kgoldrunner-24.12.0.tar.xz) = 4343972 +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 diff --git a/games/khangman/distinfo b/games/khangman/distinfo index b1c19c595293..e829f74300fd 100644 --- a/games/khangman/distinfo +++ b/games/khangman/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1734460139 -SHA256 (KDE/release-service/24.12.0/khangman-24.12.0.tar.xz) = 8008e9321fbd4ad861078c9f2b40a1cb9cca15c5e06c6870c5547ebb380d6073 -SIZE (KDE/release-service/24.12.0/khangman-24.12.0.tar.xz) = 7022316 +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 diff --git a/games/kigo/distinfo b/games/kigo/distinfo index 6d617913cbaf..715188d2f16f 100644 --- a/games/kigo/distinfo +++ b/games/kigo/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1734460141 -SHA256 (KDE/release-service/24.12.0/kigo-24.12.0.tar.xz) = c98ae93ff332186e1ad8637983e3216b00f8062d9a56ad40cc2497690b71ef6d -SIZE (KDE/release-service/24.12.0/kigo-24.12.0.tar.xz) = 4833052 +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 diff --git a/games/killbots/distinfo b/games/killbots/distinfo index 03782cf7b7b9..dcb36748f01a 100644 --- a/games/killbots/distinfo +++ b/games/killbots/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1734460142 -SHA256 (KDE/release-service/24.12.0/killbots-24.12.0.tar.xz) = 87ed1cc68613f067cef598456ffd7e0c1d650d194a7f1453de461fa38f57db7c -SIZE (KDE/release-service/24.12.0/killbots-24.12.0.tar.xz) = 1173108 +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 diff --git a/games/kiriki/distinfo b/games/kiriki/distinfo index 1e1c4858e770..df2c12f443eb 100644 --- a/games/kiriki/distinfo +++ b/games/kiriki/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1734460144 -SHA256 (KDE/release-service/24.12.0/kiriki-24.12.0.tar.xz) = e5435d46785d6dbfd48228d1c929007cdeb2d9a2bd630f823ae62948430cbdeb -SIZE (KDE/release-service/24.12.0/kiriki-24.12.0.tar.xz) = 374484 +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 diff --git a/games/kjumpingcube/distinfo b/games/kjumpingcube/distinfo index 2dd3a3531c9e..445e33e698ab 100644 --- a/games/kjumpingcube/distinfo +++ b/games/kjumpingcube/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1734460146 -SHA256 (KDE/release-service/24.12.0/kjumpingcube-24.12.0.tar.xz) = 4c371004c9ca671f34a568c688cac82f592ec1a10f138b9089a124149d2cc230 -SIZE (KDE/release-service/24.12.0/kjumpingcube-24.12.0.tar.xz) = 346572 +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 diff --git a/games/klickety/distinfo b/games/klickety/distinfo index fc9c723f6ac6..73dd6d03ccfe 100644 --- a/games/klickety/distinfo +++ b/games/klickety/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1734460147 -SHA256 (KDE/release-service/24.12.0/klickety-24.12.0.tar.xz) = 1efec4b079e54c807bbc632e8823b58d0a7731e4cc215fb259396dad622586c2 -SIZE (KDE/release-service/24.12.0/klickety-24.12.0.tar.xz) = 1387332 +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 diff --git a/games/klines/distinfo b/games/klines/distinfo index 1b9b616d632a..8666080fdf20 100644 --- a/games/klines/distinfo +++ b/games/klines/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1734460149 -SHA256 (KDE/release-service/24.12.0/klines-24.12.0.tar.xz) = 1bbce72cf5775c254c0dbbe07fa6f7ee889bc57f3c8b55c0304969d4e9b23994 -SIZE (KDE/release-service/24.12.0/klines-24.12.0.tar.xz) = 1673788 +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 diff --git a/games/kmahjongg/distinfo b/games/kmahjongg/distinfo index ff8dcc449e8d..261272519de0 100644 --- a/games/kmahjongg/distinfo +++ b/games/kmahjongg/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1734460151 -SHA256 (KDE/release-service/24.12.0/kmahjongg-24.12.0.tar.xz) = eb142a2d33f56cf9aada2181b3e876b31dbded90a7c4619a65a702e1438a5068 -SIZE (KDE/release-service/24.12.0/kmahjongg-24.12.0.tar.xz) = 3719808 +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 diff --git a/games/kmines/distinfo b/games/kmines/distinfo index 7750db866e28..4882da7abbd5 100644 --- a/games/kmines/distinfo +++ b/games/kmines/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1734460153 -SHA256 (KDE/release-service/24.12.0/kmines-24.12.0.tar.xz) = 6c80d9afaad3d5c8a0361a0f758d4abbd7f386aa728f146e22dc7674d0b5c75b -SIZE (KDE/release-service/24.12.0/kmines-24.12.0.tar.xz) = 948816 +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 diff --git a/games/knavalbattle/distinfo b/games/knavalbattle/distinfo index 5797c5b07d29..77698c756919 100644 --- a/games/knavalbattle/distinfo +++ b/games/knavalbattle/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1734460154 -SHA256 (KDE/release-service/24.12.0/knavalbattle-24.12.0.tar.xz) = 1e3b228532cf6e66ea30207ce4a17b7d2caa556c81032b98aaccd63f78b7a30b -SIZE (KDE/release-service/24.12.0/knavalbattle-24.12.0.tar.xz) = 1047940 +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 diff --git a/games/knetwalk/distinfo b/games/knetwalk/distinfo index db54ee224ba7..98fbad77e592 100644 --- a/games/knetwalk/distinfo +++ b/games/knetwalk/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1734460156 -SHA256 (KDE/release-service/24.12.0/knetwalk-24.12.0.tar.xz) = b933cf1f67b917a618e2aad6aaf26aae3d965f0879126b7991b64f124d536014 -SIZE (KDE/release-service/24.12.0/knetwalk-24.12.0.tar.xz) = 1010352 +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 diff --git a/games/knights/distinfo b/games/knights/distinfo index fd3bffeb67f6..500433ceeb77 100644 --- a/games/knights/distinfo +++ b/games/knights/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1734460158 -SHA256 (KDE/release-service/24.12.0/knights-24.12.0.tar.xz) = afd253ce77a8b71395dfaffacd4180bbab217871c3da6ccacce7197fad18139b -SIZE (KDE/release-service/24.12.0/knights-24.12.0.tar.xz) = 2490152 +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 diff --git a/games/kolf/distinfo b/games/kolf/distinfo index 9ac98760fdd6..f017179556ce 100644 --- a/games/kolf/distinfo +++ b/games/kolf/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1734460160 -SHA256 (KDE/release-service/24.12.0/kolf-24.12.0.tar.xz) = 76e7cac3e5a45a12774e976f576c65562204162718b59ff113f044df84c997af -SIZE (KDE/release-service/24.12.0/kolf-24.12.0.tar.xz) = 1080020 +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 diff --git a/games/kollision/distinfo b/games/kollision/distinfo index c378bd13d5c4..f62d7ec80e62 100644 --- a/games/kollision/distinfo +++ b/games/kollision/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1734460161 -SHA256 (KDE/release-service/24.12.0/kollision-24.12.0.tar.xz) = af5c190158df17b486b8a2bfa71ee3c435f017cd7a5c6332406994e2a53ee789 -SIZE (KDE/release-service/24.12.0/kollision-24.12.0.tar.xz) = 312000 +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 diff --git a/games/konquest/distinfo b/games/konquest/distinfo index fb23b5310a5d..bf2e83ac8d99 100644 --- a/games/konquest/distinfo +++ b/games/konquest/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1734460163 -SHA256 (KDE/release-service/24.12.0/konquest-24.12.0.tar.xz) = 52bfa3f000430852b116b717d2774661eb63ae2cd7e0dfd91018b5808b5f3fe9 -SIZE (KDE/release-service/24.12.0/konquest-24.12.0.tar.xz) = 861264 +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 diff --git a/games/kpat/distinfo b/games/kpat/distinfo index 0c748fbc7b08..819c44c0ec69 100644 --- a/games/kpat/distinfo +++ b/games/kpat/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1734460165 -SHA256 (KDE/release-service/24.12.0/kpat-24.12.0.tar.xz) = 4be3ebe62d2777b7f53d6065b540d2be52aeb41969427b3caa9d5cab15138b02 -SIZE (KDE/release-service/24.12.0/kpat-24.12.0.tar.xz) = 3736404 +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 diff --git a/games/kpat/pkg-plist b/games/kpat/pkg-plist index 06cb96570eeb..bc5fa356e04a 100644 --- a/games/kpat/pkg-plist +++ b/games/kpat/pkg-plist @@ -1,136 +1,137 @@ bin/kpat lib/libkcardgame.so share/applications/org.kde.kpat.desktop share/config.kcfg/kpat.kcfg share/icons/hicolor/128x128/apps/kpat.png share/icons/hicolor/16x16/apps/kpat.png share/icons/hicolor/22x22/apps/kpat.png share/icons/hicolor/24x24/apps/kpat.png share/icons/hicolor/256x256/apps/kpat.png share/icons/hicolor/32x32/apps/kpat.png share/icons/hicolor/48x48/apps/kpat.png share/icons/hicolor/64x64/apps/kpat.png share/knsrcfiles/kcardtheme.knsrc share/knsrcfiles/kpat.knsrc %%DATADIR%%/previews/1.png %%DATADIR%%/previews/10.png %%DATADIR%%/previews/11.png %%DATADIR%%/previews/12.png %%DATADIR%%/previews/17.png %%DATADIR%%/previews/18.png %%DATADIR%%/previews/19.png %%DATADIR%%/previews/2.png %%DATADIR%%/previews/3.png %%DATADIR%%/previews/4.png %%DATADIR%%/previews/5.png %%DATADIR%%/previews/7.png %%DATADIR%%/previews/8.png %%DATADIR%%/previews/9.png %%DATADIR%%/sounds/card-down.ogg %%DATADIR%%/sounds/card-pickup.ogg %%DATADIR%%/themes/ancientegypt.desktop %%DATADIR%%/themes/ancientegypt.png %%DATADIR%%/themes/ancientegypt.svgz %%DATADIR%%/themes/cleangreen.desktop %%DATADIR%%/themes/cleangreen.png %%DATADIR%%/themes/cleangreen.svgz %%DATADIR%%/themes/greenblaze.desktop %%DATADIR%%/themes/greenblaze.png %%DATADIR%%/themes/greenblaze.svgz %%DATADIR%%/themes/royalhearts.desktop %%DATADIR%%/themes/royalhearts.png %%DATADIR%%/themes/royalhearts.svgz share/locale/af/LC_MESSAGES/kpat.mo share/locale/ar/LC_MESSAGES/kpat.mo share/locale/ast/LC_MESSAGES/kpat.mo share/locale/be/LC_MESSAGES/kpat.mo share/locale/bg/LC_MESSAGES/kpat.mo share/locale/br/LC_MESSAGES/kpat.mo share/locale/bs/LC_MESSAGES/kpat.mo share/locale/ca/LC_MESSAGES/kpat.mo share/locale/ca@valencia/LC_MESSAGES/kpat.mo share/locale/cs/LC_MESSAGES/kpat.mo share/locale/csb/LC_MESSAGES/kpat.mo share/locale/cy/LC_MESSAGES/kpat.mo share/locale/da/LC_MESSAGES/kpat.mo share/locale/de/LC_MESSAGES/kpat.mo share/locale/el/LC_MESSAGES/kpat.mo share/locale/en_GB/LC_MESSAGES/kpat.mo share/locale/eo/LC_MESSAGES/kpat.mo share/locale/es/LC_MESSAGES/kpat.mo share/locale/et/LC_MESSAGES/kpat.mo share/locale/eu/LC_MESSAGES/kpat.mo share/locale/fa/LC_MESSAGES/kpat.mo share/locale/fi/LC_MESSAGES/kpat.mo share/locale/fr/LC_MESSAGES/kpat.mo share/locale/ga/LC_MESSAGES/kpat.mo share/locale/gl/LC_MESSAGES/kpat.mo share/locale/he/LC_MESSAGES/kpat.mo share/locale/hi/LC_MESSAGES/kpat.mo share/locale/hne/LC_MESSAGES/kpat.mo share/locale/hr/LC_MESSAGES/kpat.mo share/locale/hu/LC_MESSAGES/kpat.mo share/locale/ia/LC_MESSAGES/kpat.mo share/locale/id/LC_MESSAGES/kpat.mo share/locale/is/LC_MESSAGES/kpat.mo share/locale/it/LC_MESSAGES/kpat.mo share/locale/ja/LC_MESSAGES/kpat.mo share/locale/ka/LC_MESSAGES/kpat.mo share/locale/kk/LC_MESSAGES/kpat.mo share/locale/km/LC_MESSAGES/kpat.mo share/locale/ko/LC_MESSAGES/kpat.mo share/locale/lt/LC_MESSAGES/kpat.mo share/locale/lv/LC_MESSAGES/kpat.mo share/locale/mai/LC_MESSAGES/kpat.mo share/locale/mk/LC_MESSAGES/kpat.mo share/locale/ml/LC_MESSAGES/kpat.mo share/locale/mr/LC_MESSAGES/kpat.mo share/locale/ms/LC_MESSAGES/kpat.mo share/locale/nb/LC_MESSAGES/kpat.mo share/locale/nds/LC_MESSAGES/kpat.mo share/locale/ne/LC_MESSAGES/kpat.mo share/locale/nl/LC_MESSAGES/kpat.mo share/locale/nn/LC_MESSAGES/kpat.mo share/locale/oc/LC_MESSAGES/kpat.mo share/locale/pa/LC_MESSAGES/kpat.mo share/locale/pl/LC_MESSAGES/kpat.mo share/locale/pt/LC_MESSAGES/kpat.mo share/locale/pt_BR/LC_MESSAGES/kpat.mo share/locale/ro/LC_MESSAGES/kpat.mo share/locale/ru/LC_MESSAGES/kpat.mo share/locale/se/LC_MESSAGES/kpat.mo share/locale/sk/LC_MESSAGES/kpat.mo share/locale/sl/LC_MESSAGES/kpat.mo share/locale/sq/LC_MESSAGES/kpat.mo share/locale/sr/LC_MESSAGES/kpat.mo share/locale/sr@ijekavian/LC_MESSAGES/kpat.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kpat.mo share/locale/sr@latin/LC_MESSAGES/kpat.mo share/locale/sv/LC_MESSAGES/kpat.mo share/locale/ta/LC_MESSAGES/kpat.mo share/locale/tg/LC_MESSAGES/kpat.mo share/locale/th/LC_MESSAGES/kpat.mo share/locale/tr/LC_MESSAGES/kpat.mo share/locale/ug/LC_MESSAGES/kpat.mo share/locale/uk/LC_MESSAGES/kpat.mo share/locale/wa/LC_MESSAGES/kpat.mo share/locale/xh/LC_MESSAGES/kpat.mo share/locale/zh_CN/LC_MESSAGES/kpat.mo share/locale/zh_TW/LC_MESSAGES/kpat.mo share/man/ca/man6/kpat.6.gz share/man/de/man6/kpat.6.gz share/man/es/man6/kpat.6.gz share/man/et/man6/kpat.6.gz +share/man/fr/man6/kpat.6.gz share/man/it/man6/kpat.6.gz share/man/man6/kpat.6.gz share/man/nl/man6/kpat.6.gz share/man/pt/man6/kpat.6.gz share/man/pt_BR/man6/kpat.6.gz share/man/ru/man6/kpat.6.gz share/man/sl/man6/kpat.6.gz share/man/sv/man6/kpat.6.gz share/man/uk/man6/kpat.6.gz share/metainfo/org.kde.kpat.appdata.xml share/mime/packages/kpatience.xml share/qlogging-categories6/kpat.categories share/qlogging-categories6/kpat.renamecategories diff --git a/games/kreversi/distinfo b/games/kreversi/distinfo index e44b9b270c07..4c70d1de1d9d 100644 --- a/games/kreversi/distinfo +++ b/games/kreversi/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1734460166 -SHA256 (KDE/release-service/24.12.0/kreversi-24.12.0.tar.xz) = f0319f8b14ec338984dc238c366f7263049a2401fa587481a8f9776c46131d3e -SIZE (KDE/release-service/24.12.0/kreversi-24.12.0.tar.xz) = 1033560 +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 diff --git a/games/kshisen/distinfo b/games/kshisen/distinfo index e16cb824dfc3..df489f347b16 100644 --- a/games/kshisen/distinfo +++ b/games/kshisen/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1734460168 -SHA256 (KDE/release-service/24.12.0/kshisen-24.12.0.tar.xz) = c50e9914a0573c6dcab8ebea2d181522cf677059eaa341a1923d4529c37c267b -SIZE (KDE/release-service/24.12.0/kshisen-24.12.0.tar.xz) = 972480 +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 diff --git a/games/ksirk/distinfo b/games/ksirk/distinfo index 6b68a16300a2..c03e4314a2d7 100644 --- a/games/ksirk/distinfo +++ b/games/ksirk/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1734460170 -SHA256 (KDE/release-service/24.12.0/ksirk-24.12.0.tar.xz) = 0b0cf308a5ef3b091ccc9a88c75c1d148469d6d4fba2e47fbdc10d55bae2097c -SIZE (KDE/release-service/24.12.0/ksirk-24.12.0.tar.xz) = 6704232 +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 diff --git a/games/ksnakeduel/distinfo b/games/ksnakeduel/distinfo index c605eb9caaa2..f055fb76e506 100644 --- a/games/ksnakeduel/distinfo +++ b/games/ksnakeduel/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1734460172 -SHA256 (KDE/release-service/24.12.0/ksnakeduel-24.12.0.tar.xz) = a274f1bda9d9136a141d07a532a48b83da3c8a489ca74db797000fd0436b7188 -SIZE (KDE/release-service/24.12.0/ksnakeduel-24.12.0.tar.xz) = 578516 +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 diff --git a/games/kspaceduel/distinfo b/games/kspaceduel/distinfo index 7789fd186ca9..3848677c34ab 100644 --- a/games/kspaceduel/distinfo +++ b/games/kspaceduel/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1734460174 -SHA256 (KDE/release-service/24.12.0/kspaceduel-24.12.0.tar.xz) = 9d236e49f920f6a82a480d59c368d04221108a820ed2d64411def014ef16804b -SIZE (KDE/release-service/24.12.0/kspaceduel-24.12.0.tar.xz) = 635408 +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 diff --git a/games/ksquares/distinfo b/games/ksquares/distinfo index 65e55f40ac9b..302498daa4d3 100644 --- a/games/ksquares/distinfo +++ b/games/ksquares/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1734460176 -SHA256 (KDE/release-service/24.12.0/ksquares-24.12.0.tar.xz) = 351080a07a6f9f95e37b6b68c0341244c0aa5d60656f3db4f23c913e7b53c99c -SIZE (KDE/release-service/24.12.0/ksquares-24.12.0.tar.xz) = 322360 +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 diff --git a/games/ksudoku/distinfo b/games/ksudoku/distinfo index 7d2192fc1116..175c537d0487 100644 --- a/games/ksudoku/distinfo +++ b/games/ksudoku/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1734460177 -SHA256 (KDE/release-service/24.12.0/ksudoku-24.12.0.tar.xz) = 3cab748001b2ff3aed003beaf810a27f23cbf74162d30853176d8684f2ad1259 -SIZE (KDE/release-service/24.12.0/ksudoku-24.12.0.tar.xz) = 1729156 +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 diff --git a/games/ktuberling/distinfo b/games/ktuberling/distinfo index 318960e7f9ad..b33151a3d57a 100644 --- a/games/ktuberling/distinfo +++ b/games/ktuberling/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1734460181 -SHA256 (KDE/release-service/24.12.0/ktuberling-24.12.0.tar.xz) = 6f4febdcd65d8cb03a1532c6012dec7b4561ed48cf95a7eade92cd90e71ffab1 -SIZE (KDE/release-service/24.12.0/ktuberling-24.12.0.tar.xz) = 71565140 +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 diff --git a/games/kubrick/distinfo b/games/kubrick/distinfo index 6938a48cc92d..1b5c06ca3987 100644 --- a/games/kubrick/distinfo +++ b/games/kubrick/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1734460182 -SHA256 (KDE/release-service/24.12.0/kubrick-24.12.0.tar.xz) = b58faa25b3b28048beddfddecc19a55469e5d120e3a90ba290413d666daadd5f -SIZE (KDE/release-service/24.12.0/kubrick-24.12.0.tar.xz) = 375492 +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 diff --git a/games/kubrick/pkg-plist b/games/kubrick/pkg-plist index f9e7333b1d4a..d9a080ec82b1 100644 --- a/games/kubrick/pkg-plist +++ b/games/kubrick/pkg-plist @@ -1,91 +1,92 @@ bin/kubrick share/applications/org.kde.kubrick.desktop share/icons/hicolor/128x128/apps/kubrick.png share/icons/hicolor/16x16/apps/kubrick.png share/icons/hicolor/22x22/apps/kubrick.png share/icons/hicolor/32x32/apps/kubrick.png share/icons/hicolor/48x48/apps/kubrick.png share/icons/hicolor/64x64/apps/kubrick.png %%DATADIR%%/m333CTwirl2.kbk %%DATADIR%%/m333Complete.kbk %%DATADIR%%/m333E2prX.kbk %%DATADIR%%/m333EFlip2.kbk %%DATADIR%%/m333LLCornerPos.kbk %%DATADIR%%/m333LLCornerRot.kbk %%DATADIR%%/m333LLEdgeFlip.kbk %%DATADIR%%/m333LLEdgePos.kbk %%DATADIR%%/m333Layer1.kbk %%DATADIR%%/m333MEdge1.kbk %%DATADIR%%/m333MEdge2.kbk %%DATADIR%%/p333Bar4.kbk %%DATADIR%%/p333DoubleCube.kbk %%DATADIR%%/p333Plus4.kbk %%DATADIR%%/p333Snake.kbk %%DATADIR%%/p333Spot4.kbk %%DATADIR%%/p333Spot6.kbk %%DATADIR%%/p333Tricolor6.kbk %%DATADIR%%/p333U4.kbk %%DATADIR%%/p333U6.kbk %%DATADIR%%/p333Worm.kbk %%DATADIR%%/p333X2.kbk %%DATADIR%%/p333X6.kbk %%DATADIR%%/themes/default.svgz +share/locale/ar/LC_MESSAGES/kubrick.mo share/locale/ast/LC_MESSAGES/kubrick.mo share/locale/bg/LC_MESSAGES/kubrick.mo share/locale/bs/LC_MESSAGES/kubrick.mo share/locale/ca/LC_MESSAGES/kubrick.mo share/locale/ca@valencia/LC_MESSAGES/kubrick.mo share/locale/cs/LC_MESSAGES/kubrick.mo share/locale/da/LC_MESSAGES/kubrick.mo share/locale/de/LC_MESSAGES/kubrick.mo share/locale/el/LC_MESSAGES/kubrick.mo share/locale/en_GB/LC_MESSAGES/kubrick.mo share/locale/eo/LC_MESSAGES/kubrick.mo share/locale/es/LC_MESSAGES/kubrick.mo share/locale/et/LC_MESSAGES/kubrick.mo share/locale/eu/LC_MESSAGES/kubrick.mo share/locale/fi/LC_MESSAGES/kubrick.mo share/locale/fr/LC_MESSAGES/kubrick.mo share/locale/ga/LC_MESSAGES/kubrick.mo share/locale/gl/LC_MESSAGES/kubrick.mo share/locale/he/LC_MESSAGES/kubrick.mo share/locale/hr/LC_MESSAGES/kubrick.mo share/locale/hu/LC_MESSAGES/kubrick.mo share/locale/ia/LC_MESSAGES/kubrick.mo share/locale/id/LC_MESSAGES/kubrick.mo share/locale/is/LC_MESSAGES/kubrick.mo share/locale/it/LC_MESSAGES/kubrick.mo share/locale/ja/LC_MESSAGES/kubrick.mo share/locale/ka/LC_MESSAGES/kubrick.mo share/locale/kk/LC_MESSAGES/kubrick.mo share/locale/km/LC_MESSAGES/kubrick.mo share/locale/ko/LC_MESSAGES/kubrick.mo share/locale/lt/LC_MESSAGES/kubrick.mo share/locale/lv/LC_MESSAGES/kubrick.mo share/locale/mai/LC_MESSAGES/kubrick.mo share/locale/ml/LC_MESSAGES/kubrick.mo share/locale/mr/LC_MESSAGES/kubrick.mo share/locale/nb/LC_MESSAGES/kubrick.mo share/locale/nds/LC_MESSAGES/kubrick.mo share/locale/nl/LC_MESSAGES/kubrick.mo share/locale/nn/LC_MESSAGES/kubrick.mo share/locale/pl/LC_MESSAGES/kubrick.mo share/locale/pt/LC_MESSAGES/kubrick.mo share/locale/pt_BR/LC_MESSAGES/kubrick.mo share/locale/ro/LC_MESSAGES/kubrick.mo share/locale/ru/LC_MESSAGES/kubrick.mo share/locale/sk/LC_MESSAGES/kubrick.mo share/locale/sl/LC_MESSAGES/kubrick.mo share/locale/sr/LC_MESSAGES/kubrick.mo share/locale/sr@ijekavian/LC_MESSAGES/kubrick.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kubrick.mo share/locale/sr@latin/LC_MESSAGES/kubrick.mo share/locale/sv/LC_MESSAGES/kubrick.mo share/locale/tr/LC_MESSAGES/kubrick.mo share/locale/ug/LC_MESSAGES/kubrick.mo share/locale/uk/LC_MESSAGES/kubrick.mo share/locale/zh_CN/LC_MESSAGES/kubrick.mo share/locale/zh_TW/LC_MESSAGES/kubrick.mo share/metainfo/org.kde.kubrick.appdata.xml share/qlogging-categories6/kubrick.categories share/qlogging-categories6/kubrick.renamecategories diff --git a/games/libkdegames/Makefile b/games/libkdegames/Makefile index 73c57860a8ac..47782714f6bf 100644 --- a/games/libkdegames/Makefile +++ b/games/libkdegames/Makefile @@ -1,27 +1,27 @@ PORTNAME= libkdegames DISTVERSION= ${KDE_APPLICATIONS_VERSION} CATEGORIES= games kde kde-applications MAINTAINER= kde@FreeBSD.org COMMENT= Libraries used by KDE games WWW= https://www.kde.org/applications/games/ LIB_DEPENDS= libsndfile.so:audio/libsndfile USES= cmake compiler:c++11-lang gettext kde:6 openal qt:6 tar:xz USE_KDE= archive attica auth bookmarks codecs completion config \ configwidgets coreaddons crash dbusaddons dnssd globalaccel \ guiaddons i18n iconthemes itemmodels itemviews jobwidgets \ kdeclarative kio newstuff package service textwidgets \ widgetsaddons xmlgui \ ecm:build USE_QT= base declarative USE_LDCONFIG= yes -SHLIB_VER= 6.0.241200 +SHLIB_VER= 6.0.241202 PLIST_SUB+= SHLIB_VER="${SHLIB_VER}" \ SHLIB_SHVER="${SHLIB_VER:R:R}" OPTIONS_DEFINE= DOCS .include diff --git a/games/libkdegames/distinfo b/games/libkdegames/distinfo index 6c203be074f2..1a0498b61bd5 100644 --- a/games/libkdegames/distinfo +++ b/games/libkdegames/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1734460184 -SHA256 (KDE/release-service/24.12.0/libkdegames-24.12.0.tar.xz) = d919e8235b2507667d02e21b6871f556d87ab74eab6c0a5a65d313cccd688765 -SIZE (KDE/release-service/24.12.0/libkdegames-24.12.0.tar.xz) = 5973656 +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 diff --git a/games/libkmahjongg/Makefile b/games/libkmahjongg/Makefile index c417422fa010..9d167a2811e9 100644 --- a/games/libkmahjongg/Makefile +++ b/games/libkmahjongg/Makefile @@ -1,22 +1,22 @@ PORTNAME= libkmahjongg DISTVERSION= ${KDE_APPLICATIONS_VERSION} CATEGORIES= games kde kde-applications MAINTAINER= kde@FreeBSD.org COMMENT= Library for the Mahjongg Solitaire for KDE WWW= https://www.kde.org/applications/games/kmahjongg/ USES= cmake compiler:c++11-lang gettext kde:6 qt:6 tar:xz USE_KDE= auth codecs completion config configwidgets coreaddons i18n \ widgetsaddons \ ecm:build USE_QT= base svg USE_LDCONFIG= yes OPTIONS_DEFINE= DOCS -SHLIB_VER= 6.0.241200 +SHLIB_VER= 6.0.241202 PLIST_SUB+= SHLIB_VER="${SHLIB_VER}" \ SHLIB_SHVER="${SHLIB_VER:R:R}" .include diff --git a/games/libkmahjongg/distinfo b/games/libkmahjongg/distinfo index 50fc88c049fd..4a9945076d9d 100644 --- a/games/libkmahjongg/distinfo +++ b/games/libkmahjongg/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1734460186 -SHA256 (KDE/release-service/24.12.0/libkmahjongg-24.12.0.tar.xz) = e62028df0114b178ec8a2fc093f9e685063fa987c922a1ca0c64e9d905380cb0 -SIZE (KDE/release-service/24.12.0/libkmahjongg-24.12.0.tar.xz) = 1693744 +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 diff --git a/games/lskat/distinfo b/games/lskat/distinfo index 064f189e12e4..644cc5002531 100644 --- a/games/lskat/distinfo +++ b/games/lskat/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1734460188 -SHA256 (KDE/release-service/24.12.0/lskat-24.12.0.tar.xz) = 7af2da3f03bdfd1894899683e6e058b5824ebefb19c2f351471e685dd207facb -SIZE (KDE/release-service/24.12.0/lskat-24.12.0.tar.xz) = 1226912 +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 diff --git a/games/palapeli/distinfo b/games/palapeli/distinfo index 4b2687021d93..e9bb40bdff99 100644 --- a/games/palapeli/distinfo +++ b/games/palapeli/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1734460190 -SHA256 (KDE/release-service/24.12.0/palapeli-24.12.0.tar.xz) = 951c3999382b7546bc298132aaffe2ab4204dcc9cd38c31fb2d8adc609b5a755 -SIZE (KDE/release-service/24.12.0/palapeli-24.12.0.tar.xz) = 2122380 +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 diff --git a/games/picmi/distinfo b/games/picmi/distinfo index 9c0bc6c9019d..6879b1ad6bac 100644 --- a/games/picmi/distinfo +++ b/games/picmi/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1734460191 -SHA256 (KDE/release-service/24.12.0/picmi-24.12.0.tar.xz) = 5b84f0b0770616dc7efdde6f2c5aea7dd6f8fb76c36e1bcd84934cdfb99f1549 -SIZE (KDE/release-service/24.12.0/picmi-24.12.0.tar.xz) = 1519096 +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 diff --git a/graphics/gwenview/distinfo b/graphics/gwenview/distinfo index ce8d694736a9..669748be9c21 100644 --- a/graphics/gwenview/distinfo +++ b/graphics/gwenview/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1734460193 -SHA256 (KDE/release-service/24.12.0/gwenview-24.12.0.tar.xz) = 74971003952d966252e5b84d4f8e592fec4784e32fad2fb998aaa37338564adc -SIZE (KDE/release-service/24.12.0/gwenview-24.12.0.tar.xz) = 6525836 +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 diff --git a/graphics/kamera/distinfo b/graphics/kamera/distinfo index 6d3492bde050..e07255061060 100644 --- a/graphics/kamera/distinfo +++ b/graphics/kamera/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1734460195 -SHA256 (KDE/release-service/24.12.0/kamera-24.12.0.tar.xz) = 57783d2cddaaf027319d556d2208d7e6508cf4931813e87e13ee0c67d8f61d30 -SIZE (KDE/release-service/24.12.0/kamera-24.12.0.tar.xz) = 131624 +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 diff --git a/graphics/kcolorchooser/distinfo b/graphics/kcolorchooser/distinfo index e6281d7d1202..dfb6acec137d 100644 --- a/graphics/kcolorchooser/distinfo +++ b/graphics/kcolorchooser/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1734460196 -SHA256 (KDE/release-service/24.12.0/kcolorchooser-24.12.0.tar.xz) = afe552ddf0a4c76a4b81251649eeda1662b2a16dc8eba88c0be0ec4004b4674e -SIZE (KDE/release-service/24.12.0/kcolorchooser-24.12.0.tar.xz) = 36228 +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 diff --git a/graphics/kdegraphics-mobipocket/distinfo b/graphics/kdegraphics-mobipocket/distinfo index 1383763e0718..891477a7925f 100644 --- a/graphics/kdegraphics-mobipocket/distinfo +++ b/graphics/kdegraphics-mobipocket/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1734460198 -SHA256 (KDE/release-service/24.12.0/kdegraphics-mobipocket-24.12.0.tar.xz) = 777e577f7d603aef7f00d584b3a0a1e2659194134f37c0315a026173181289f3 -SIZE (KDE/release-service/24.12.0/kdegraphics-mobipocket-24.12.0.tar.xz) = 13056 +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 diff --git a/graphics/kdegraphics-svgpart/distinfo b/graphics/kdegraphics-svgpart/distinfo index 53443975e3c0..8709a6c4c1d6 100644 --- a/graphics/kdegraphics-svgpart/distinfo +++ b/graphics/kdegraphics-svgpart/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1734460200 -SHA256 (KDE/release-service/24.12.0/svgpart-24.12.0.tar.xz) = ac1d24564f582b36d26b2b4ab0664b394368ad1123509d9b075e8e6bde684c41 -SIZE (KDE/release-service/24.12.0/svgpart-24.12.0.tar.xz) = 30212 +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 diff --git a/graphics/kdegraphics-thumbnailers/distinfo b/graphics/kdegraphics-thumbnailers/distinfo index f4aebc9c35ca..33f5733f4747 100644 --- a/graphics/kdegraphics-thumbnailers/distinfo +++ b/graphics/kdegraphics-thumbnailers/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1734460201 -SHA256 (KDE/release-service/24.12.0/kdegraphics-thumbnailers-24.12.0.tar.xz) = d4dd2a4617db0874bc7de7b15e4fd50f7aadaa5249fb46f888ab151a8480b1cb -SIZE (KDE/release-service/24.12.0/kdegraphics-thumbnailers-24.12.0.tar.xz) = 49144 +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 diff --git a/graphics/kimagemapeditor/distinfo b/graphics/kimagemapeditor/distinfo index 05e35ecef800..f6f8e6fe32cf 100644 --- a/graphics/kimagemapeditor/distinfo +++ b/graphics/kimagemapeditor/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1734460203 -SHA256 (KDE/release-service/24.12.0/kimagemapeditor-24.12.0.tar.xz) = 671cbe27f141d238808e25ae722cfec6664685ff8e66f2e0115eb505fd74baca -SIZE (KDE/release-service/24.12.0/kimagemapeditor-24.12.0.tar.xz) = 1074232 +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 diff --git a/graphics/kolourpaint/distinfo b/graphics/kolourpaint/distinfo index 4d4102adcc1c..6a6dca70a1f1 100644 --- a/graphics/kolourpaint/distinfo +++ b/graphics/kolourpaint/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1734460207 -SHA256 (KDE/release-service/24.12.0/kolourpaint-24.12.0.tar.xz) = 7275709d94dc07558a23c5b3059af486fbd280591c6062d16ac9a0d2453c581c -SIZE (KDE/release-service/24.12.0/kolourpaint-24.12.0.tar.xz) = 5310004 +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 diff --git a/graphics/kontrast/distinfo b/graphics/kontrast/distinfo index cbcf4f2bd97b..338bd694c7b4 100644 --- a/graphics/kontrast/distinfo +++ b/graphics/kontrast/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1734460208 -SHA256 (KDE/release-service/24.12.0/kontrast-24.12.0.tar.xz) = 3528138ed55a0a3485edc7ce25f08e41c29dfe0014362d5ceb611c4e627ce304 -SIZE (KDE/release-service/24.12.0/kontrast-24.12.0.tar.xz) = 217092 +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 diff --git a/graphics/kqtquickcharts/distinfo b/graphics/kqtquickcharts/distinfo index 53253e61bf00..946904bab355 100644 --- a/graphics/kqtquickcharts/distinfo +++ b/graphics/kqtquickcharts/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1734460210 -SHA256 (KDE/release-service/24.12.0/kqtquickcharts-24.12.0.tar.xz) = 1e2fb9659b12585d3ed75d4c05ac7e0b00f68cbfe6bc52ae4e0df16fe85030e9 -SIZE (KDE/release-service/24.12.0/kqtquickcharts-24.12.0.tar.xz) = 30864 +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 diff --git a/graphics/ksanecore/distinfo b/graphics/ksanecore/distinfo index 5fbe5ae0154f..90b55518639c 100644 --- a/graphics/ksanecore/distinfo +++ b/graphics/ksanecore/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1734460211 -SHA256 (KDE/release-service/24.12.0/ksanecore-24.12.0.tar.xz) = 3d5275d182be9b869eb26688195abe37bdc7c55dac669377a9bce7d847440829 -SIZE (KDE/release-service/24.12.0/ksanecore-24.12.0.tar.xz) = 54372 +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 diff --git a/graphics/ksanecore/pkg-plist b/graphics/ksanecore/pkg-plist index ee08b9349fca..c98e8dc97c2a 100644 --- a/graphics/ksanecore/pkg-plist +++ b/graphics/ksanecore/pkg-plist @@ -1,51 +1,52 @@ include/KSaneCore6/KSaneCore/DeviceInformation include/KSaneCore6/KSaneCore/Interface include/KSaneCore6/KSaneCore/Option include/KSaneCore6/ksanecore/deviceinformation.h include/KSaneCore6/ksanecore/interface.h include/KSaneCore6/ksanecore/option.h include/KSaneCore6/ksanecore_export.h include/KSaneCore6/ksanecore_version.h lib/cmake/KSaneCore6/KSaneCore6Config.cmake lib/cmake/KSaneCore6/KSaneCore6ConfigVersion.cmake lib/cmake/KSaneCore6/KSaneCore6Targets-%%CMAKE_BUILD_TYPE%%.cmake lib/cmake/KSaneCore6/KSaneCore6Targets.cmake lib/libKSaneCore6.so lib/libKSaneCore6.so.1 lib/libKSaneCore6.so.%%KDE_APPLICATIONS_VERSION%% share/locale/ar/LC_MESSAGES/ksanecore.mo share/locale/bg/LC_MESSAGES/ksanecore.mo share/locale/ca/LC_MESSAGES/ksanecore.mo share/locale/ca@valencia/LC_MESSAGES/ksanecore.mo share/locale/cs/LC_MESSAGES/ksanecore.mo share/locale/de/LC_MESSAGES/ksanecore.mo share/locale/en_GB/LC_MESSAGES/ksanecore.mo share/locale/eo/LC_MESSAGES/ksanecore.mo share/locale/es/LC_MESSAGES/ksanecore.mo share/locale/eu/LC_MESSAGES/ksanecore.mo share/locale/fi/LC_MESSAGES/ksanecore.mo share/locale/fr/LC_MESSAGES/ksanecore.mo share/locale/gl/LC_MESSAGES/ksanecore.mo share/locale/he/LC_MESSAGES/ksanecore.mo share/locale/hi/LC_MESSAGES/ksanecore.mo +share/locale/hu/LC_MESSAGES/ksanecore.mo share/locale/ia/LC_MESSAGES/ksanecore.mo share/locale/it/LC_MESSAGES/ksanecore.mo share/locale/ja/LC_MESSAGES/ksanecore.mo share/locale/ka/LC_MESSAGES/ksanecore.mo share/locale/ko/LC_MESSAGES/ksanecore.mo share/locale/lt/LC_MESSAGES/ksanecore.mo share/locale/lv/LC_MESSAGES/ksanecore.mo share/locale/nl/LC_MESSAGES/ksanecore.mo share/locale/nn/LC_MESSAGES/ksanecore.mo share/locale/pl/LC_MESSAGES/ksanecore.mo share/locale/pt/LC_MESSAGES/ksanecore.mo share/locale/pt_BR/LC_MESSAGES/ksanecore.mo share/locale/ro/LC_MESSAGES/ksanecore.mo share/locale/ru/LC_MESSAGES/ksanecore.mo share/locale/sk/LC_MESSAGES/ksanecore.mo share/locale/sl/LC_MESSAGES/ksanecore.mo share/locale/sv/LC_MESSAGES/ksanecore.mo share/locale/tr/LC_MESSAGES/ksanecore.mo share/locale/uk/LC_MESSAGES/ksanecore.mo share/locale/zh_CN/LC_MESSAGES/ksanecore.mo share/locale/zh_TW/LC_MESSAGES/ksanecore.mo diff --git a/graphics/libkdcraw/distinfo b/graphics/libkdcraw/distinfo index 8839d70e5bff..1fe5580f2283 100644 --- a/graphics/libkdcraw/distinfo +++ b/graphics/libkdcraw/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1734460213 -SHA256 (KDE/release-service/24.12.0/libkdcraw-24.12.0.tar.xz) = 0b4b6067fd362d218f6ee088c661c42b2f55cd9e3a8bdfb82efed96bd682625c -SIZE (KDE/release-service/24.12.0/libkdcraw-24.12.0.tar.xz) = 37308 +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 diff --git a/graphics/libkexiv2/distinfo b/graphics/libkexiv2/distinfo index ac81e8c652c1..078c44fdeb3b 100644 --- a/graphics/libkexiv2/distinfo +++ b/graphics/libkexiv2/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1734460215 -SHA256 (KDE/release-service/24.12.0/libkexiv2-24.12.0.tar.xz) = 27c7919d13ab7d481c064f115831fd4e276354bf1b61adf48350e28fab6730f6 -SIZE (KDE/release-service/24.12.0/libkexiv2-24.12.0.tar.xz) = 60652 +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 diff --git a/graphics/libksane/distinfo b/graphics/libksane/distinfo index a9d6c65ba75f..adba861b761c 100644 --- a/graphics/libksane/distinfo +++ b/graphics/libksane/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1734460216 -SHA256 (KDE/release-service/24.12.0/libksane-24.12.0.tar.xz) = 35e079267a069906627a3ba53297f181be0d28ef483806d0fbe24920741e1c14 -SIZE (KDE/release-service/24.12.0/libksane-24.12.0.tar.xz) = 155428 +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 diff --git a/graphics/okular/distinfo b/graphics/okular/distinfo index f603f7f7f42e..babb117648d4 100644 --- a/graphics/okular/distinfo +++ b/graphics/okular/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1734460218 -SHA256 (KDE/release-service/24.12.0/okular-24.12.0.tar.xz) = 8258058c40254ae888a3f85b28563b29b116496af235b335449323a5f25e57d1 -SIZE (KDE/release-service/24.12.0/okular-24.12.0.tar.xz) = 8056456 +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 diff --git a/graphics/okular/pkg-plist b/graphics/okular/pkg-plist index 4d55b3e1710d..d0ca13ae1382 100644 --- a/graphics/okular/pkg-plist +++ b/graphics/okular/pkg-plist @@ -1,1211 +1,1197 @@ bin/okular include/okular/core/action.h include/okular/core/annotations.h include/okular/core/area.h include/okular/core/document.h include/okular/core/fileprinter.h include/okular/core/fontinfo.h include/okular/core/form.h include/okular/core/generator.h include/okular/core/global.h include/okular/core/observer.h include/okular/core/okularcore_export.h include/okular/core/page.h include/okular/core/pagesize.h include/okular/core/pagetransition.h include/okular/core/printoptionswidget.h include/okular/core/settings_core.h include/okular/core/signatureutils.h include/okular/core/sound.h include/okular/core/sourcereference.h include/okular/core/textdocumentgenerator.h include/okular/core/textdocumentsettings.h include/okular/core/textpage.h include/okular/core/tile.h include/okular/core/utils.h include/okular/core/version.h include/okular/interfaces/configinterface.h include/okular/interfaces/guiinterface.h include/okular/interfaces/printinterface.h include/okular/interfaces/saveinterface.h include/okular/interfaces/viewerinterface.h lib/cmake/Okular6/Okular6Config.cmake lib/cmake/Okular6/Okular6ConfigVersion.cmake lib/cmake/Okular6/Okular6Targets-%%CMAKE_BUILD_TYPE%%.cmake lib/cmake/Okular6/Okular6Targets.cmake lib/libOkular6Core.so lib/libOkular6Core.so.3 lib/libOkular6Core.so.3.0.0 %%QT_PLUGINDIR%%/kf6/parts/okularpart.so %%QT_PLUGINDIR%%/okular_generators/okularGenerator_comicbook.so %%QT_PLUGINDIR%%/okular_generators/okularGenerator_djvu.so %%QT_PLUGINDIR%%/okular_generators/okularGenerator_dvi.so %%QT_PLUGINDIR%%/okular_generators/okularGenerator_epub.so %%QT_PLUGINDIR%%/okular_generators/okularGenerator_fax.so %%QT_PLUGINDIR%%/okular_generators/okularGenerator_fb.so %%QT_PLUGINDIR%%/okular_generators/okularGenerator_ghostview.so %%QT_PLUGINDIR%%/okular_generators/okularGenerator_kimgio.so %%QT_PLUGINDIR%%/okular_generators/okularGenerator_md.so %%QT_PLUGINDIR%%/okular_generators/okularGenerator_mobi.so %%QT_PLUGINDIR%%/okular_generators/okularGenerator_poppler.so %%QT_PLUGINDIR%%/okular_generators/okularGenerator_tiff.so %%QT_PLUGINDIR%%/okular_generators/okularGenerator_txt.so %%QT_PLUGINDIR%%/okular_generators/okularGenerator_xps.so share/applications/okularApplication_comicbook.desktop share/applications/okularApplication_djvu.desktop share/applications/okularApplication_dvi.desktop share/applications/okularApplication_epub.desktop share/applications/okularApplication_fax.desktop share/applications/okularApplication_fb.desktop share/applications/okularApplication_ghostview.desktop share/applications/okularApplication_kimgio.desktop share/applications/okularApplication_md.desktop share/applications/okularApplication_mobi.desktop share/applications/okularApplication_pdf.desktop share/applications/okularApplication_tiff.desktop share/applications/okularApplication_txt.desktop share/applications/okularApplication_xps.desktop -share/applications/org.kde.mobile.okular_comicbook.desktop -share/applications/org.kde.mobile.okular_djvu.desktop -share/applications/org.kde.mobile.okular_dvi.desktop -share/applications/org.kde.mobile.okular_epub.desktop -share/applications/org.kde.mobile.okular_fax.desktop -share/applications/org.kde.mobile.okular_fb.desktop -share/applications/org.kde.mobile.okular_ghostview.desktop -share/applications/org.kde.mobile.okular_kimgio.desktop -share/applications/org.kde.mobile.okular_md.desktop -share/applications/org.kde.mobile.okular_mobi.desktop -share/applications/org.kde.mobile.okular_pdf.desktop -share/applications/org.kde.mobile.okular_tiff.desktop -share/applications/org.kde.mobile.okular_txt.desktop -share/applications/org.kde.mobile.okular_xps.desktop share/applications/org.kde.okular.desktop share/config.kcfg/gssettings.kcfg share/config.kcfg/okular.kcfg share/config.kcfg/okular_core.kcfg share/config.kcfg/pdfsettings.kcfg share/icons/hicolor/128x128/apps/okular.png share/icons/hicolor/16x16/apps/okular.png share/icons/hicolor/22x22/apps/okular.png share/icons/hicolor/32x32/apps/okular.png share/icons/hicolor/48x48/apps/okular.png share/icons/hicolor/64x64/apps/okular.png share/kconf_update/okular.upd share/locale/ar/LC_MESSAGES/okular.mo share/locale/ar/LC_MESSAGES/okular_comicbook.mo share/locale/ar/LC_MESSAGES/okular_djvu.mo share/locale/ar/LC_MESSAGES/okular_dvi.mo share/locale/ar/LC_MESSAGES/okular_epub.mo share/locale/ar/LC_MESSAGES/okular_fax.mo share/locale/ar/LC_MESSAGES/okular_fictionbook.mo share/locale/ar/LC_MESSAGES/okular_ghostview.mo share/locale/ar/LC_MESSAGES/okular_kimgio.mo share/locale/ar/LC_MESSAGES/okular_markdown.mo share/locale/ar/LC_MESSAGES/okular_mobi.mo share/locale/ar/LC_MESSAGES/okular_poppler.mo share/locale/ar/LC_MESSAGES/okular_tiff.mo share/locale/ar/LC_MESSAGES/okular_txt.mo share/locale/ar/LC_MESSAGES/okular_xps.mo share/locale/ar/LC_MESSAGES/org.kde.active.documentviewer.mo share/locale/ast/LC_MESSAGES/okular.mo share/locale/ast/LC_MESSAGES/okular_comicbook.mo share/locale/ast/LC_MESSAGES/okular_djvu.mo share/locale/ast/LC_MESSAGES/okular_dvi.mo share/locale/ast/LC_MESSAGES/okular_epub.mo share/locale/ast/LC_MESSAGES/okular_fax.mo share/locale/ast/LC_MESSAGES/okular_fictionbook.mo share/locale/ast/LC_MESSAGES/okular_ghostview.mo share/locale/ast/LC_MESSAGES/okular_kimgio.mo share/locale/ast/LC_MESSAGES/okular_markdown.mo share/locale/ast/LC_MESSAGES/okular_mobi.mo share/locale/ast/LC_MESSAGES/okular_poppler.mo share/locale/ast/LC_MESSAGES/okular_tiff.mo share/locale/ast/LC_MESSAGES/okular_txt.mo share/locale/ast/LC_MESSAGES/okular_xps.mo share/locale/ast/LC_MESSAGES/org.kde.active.documentviewer.mo share/locale/az/LC_MESSAGES/okular.mo share/locale/az/LC_MESSAGES/okular_comicbook.mo share/locale/az/LC_MESSAGES/okular_djvu.mo share/locale/az/LC_MESSAGES/okular_dvi.mo share/locale/az/LC_MESSAGES/okular_epub.mo share/locale/az/LC_MESSAGES/okular_fax.mo share/locale/az/LC_MESSAGES/okular_fictionbook.mo share/locale/az/LC_MESSAGES/okular_ghostview.mo share/locale/az/LC_MESSAGES/okular_kimgio.mo share/locale/az/LC_MESSAGES/okular_markdown.mo share/locale/az/LC_MESSAGES/okular_mobi.mo share/locale/az/LC_MESSAGES/okular_poppler.mo share/locale/az/LC_MESSAGES/okular_tiff.mo share/locale/az/LC_MESSAGES/okular_txt.mo share/locale/az/LC_MESSAGES/okular_xps.mo share/locale/az/LC_MESSAGES/org.kde.active.documentviewer.mo share/locale/be/LC_MESSAGES/okular.mo share/locale/be/LC_MESSAGES/okular_comicbook.mo share/locale/be/LC_MESSAGES/okular_djvu.mo share/locale/be/LC_MESSAGES/okular_dvi.mo share/locale/be/LC_MESSAGES/okular_epub.mo share/locale/be/LC_MESSAGES/okular_fax.mo share/locale/be/LC_MESSAGES/okular_fictionbook.mo share/locale/be/LC_MESSAGES/okular_ghostview.mo share/locale/be/LC_MESSAGES/okular_kimgio.mo share/locale/be/LC_MESSAGES/okular_markdown.mo share/locale/be/LC_MESSAGES/okular_mobi.mo share/locale/be/LC_MESSAGES/okular_poppler.mo share/locale/be/LC_MESSAGES/okular_tiff.mo share/locale/be/LC_MESSAGES/okular_txt.mo share/locale/be/LC_MESSAGES/okular_xps.mo share/locale/be/LC_MESSAGES/org.kde.active.documentviewer.mo share/locale/bg/LC_MESSAGES/okular.mo share/locale/bg/LC_MESSAGES/okular_comicbook.mo share/locale/bg/LC_MESSAGES/okular_djvu.mo share/locale/bg/LC_MESSAGES/okular_dvi.mo share/locale/bg/LC_MESSAGES/okular_epub.mo share/locale/bg/LC_MESSAGES/okular_fax.mo share/locale/bg/LC_MESSAGES/okular_fictionbook.mo share/locale/bg/LC_MESSAGES/okular_ghostview.mo share/locale/bg/LC_MESSAGES/okular_kimgio.mo share/locale/bg/LC_MESSAGES/okular_markdown.mo share/locale/bg/LC_MESSAGES/okular_mobi.mo share/locale/bg/LC_MESSAGES/okular_poppler.mo share/locale/bg/LC_MESSAGES/okular_tiff.mo share/locale/bg/LC_MESSAGES/okular_txt.mo share/locale/bg/LC_MESSAGES/okular_xps.mo share/locale/bg/LC_MESSAGES/org.kde.active.documentviewer.mo share/locale/br/LC_MESSAGES/okular.mo share/locale/bs/LC_MESSAGES/okular.mo share/locale/bs/LC_MESSAGES/okular_comicbook.mo share/locale/bs/LC_MESSAGES/okular_djvu.mo share/locale/bs/LC_MESSAGES/okular_dvi.mo share/locale/bs/LC_MESSAGES/okular_epub.mo share/locale/bs/LC_MESSAGES/okular_fax.mo share/locale/bs/LC_MESSAGES/okular_fictionbook.mo share/locale/bs/LC_MESSAGES/okular_ghostview.mo share/locale/bs/LC_MESSAGES/okular_kimgio.mo share/locale/bs/LC_MESSAGES/okular_mobi.mo share/locale/bs/LC_MESSAGES/okular_poppler.mo share/locale/bs/LC_MESSAGES/okular_txt.mo share/locale/bs/LC_MESSAGES/okular_xps.mo share/locale/bs/LC_MESSAGES/org.kde.active.documentviewer.mo share/locale/ca/LC_MESSAGES/okular.mo share/locale/ca/LC_MESSAGES/okular_comicbook.mo share/locale/ca/LC_MESSAGES/okular_djvu.mo share/locale/ca/LC_MESSAGES/okular_dvi.mo share/locale/ca/LC_MESSAGES/okular_epub.mo share/locale/ca/LC_MESSAGES/okular_fax.mo share/locale/ca/LC_MESSAGES/okular_fictionbook.mo share/locale/ca/LC_MESSAGES/okular_ghostview.mo share/locale/ca/LC_MESSAGES/okular_kimgio.mo share/locale/ca/LC_MESSAGES/okular_markdown.mo share/locale/ca/LC_MESSAGES/okular_mobi.mo share/locale/ca/LC_MESSAGES/okular_poppler.mo share/locale/ca/LC_MESSAGES/okular_tiff.mo share/locale/ca/LC_MESSAGES/okular_txt.mo share/locale/ca/LC_MESSAGES/okular_xps.mo share/locale/ca/LC_MESSAGES/org.kde.active.documentviewer.mo share/locale/ca@valencia/LC_MESSAGES/okular.mo share/locale/ca@valencia/LC_MESSAGES/okular_comicbook.mo share/locale/ca@valencia/LC_MESSAGES/okular_djvu.mo share/locale/ca@valencia/LC_MESSAGES/okular_dvi.mo share/locale/ca@valencia/LC_MESSAGES/okular_epub.mo share/locale/ca@valencia/LC_MESSAGES/okular_fax.mo share/locale/ca@valencia/LC_MESSAGES/okular_fictionbook.mo share/locale/ca@valencia/LC_MESSAGES/okular_ghostview.mo share/locale/ca@valencia/LC_MESSAGES/okular_kimgio.mo share/locale/ca@valencia/LC_MESSAGES/okular_markdown.mo share/locale/ca@valencia/LC_MESSAGES/okular_mobi.mo share/locale/ca@valencia/LC_MESSAGES/okular_poppler.mo share/locale/ca@valencia/LC_MESSAGES/okular_tiff.mo share/locale/ca@valencia/LC_MESSAGES/okular_txt.mo share/locale/ca@valencia/LC_MESSAGES/okular_xps.mo share/locale/ca@valencia/LC_MESSAGES/org.kde.active.documentviewer.mo share/locale/cs/LC_MESSAGES/okular.mo share/locale/cs/LC_MESSAGES/okular_comicbook.mo share/locale/cs/LC_MESSAGES/okular_djvu.mo share/locale/cs/LC_MESSAGES/okular_dvi.mo share/locale/cs/LC_MESSAGES/okular_epub.mo share/locale/cs/LC_MESSAGES/okular_fax.mo share/locale/cs/LC_MESSAGES/okular_fictionbook.mo share/locale/cs/LC_MESSAGES/okular_ghostview.mo share/locale/cs/LC_MESSAGES/okular_kimgio.mo share/locale/cs/LC_MESSAGES/okular_markdown.mo share/locale/cs/LC_MESSAGES/okular_mobi.mo share/locale/cs/LC_MESSAGES/okular_poppler.mo share/locale/cs/LC_MESSAGES/okular_tiff.mo share/locale/cs/LC_MESSAGES/okular_txt.mo share/locale/cs/LC_MESSAGES/okular_xps.mo share/locale/cs/LC_MESSAGES/org.kde.active.documentviewer.mo share/locale/cy/LC_MESSAGES/okular.mo share/locale/da/LC_MESSAGES/okular.mo share/locale/da/LC_MESSAGES/okular_comicbook.mo share/locale/da/LC_MESSAGES/okular_djvu.mo share/locale/da/LC_MESSAGES/okular_dvi.mo share/locale/da/LC_MESSAGES/okular_epub.mo share/locale/da/LC_MESSAGES/okular_fax.mo share/locale/da/LC_MESSAGES/okular_fictionbook.mo share/locale/da/LC_MESSAGES/okular_ghostview.mo share/locale/da/LC_MESSAGES/okular_kimgio.mo share/locale/da/LC_MESSAGES/okular_markdown.mo share/locale/da/LC_MESSAGES/okular_mobi.mo share/locale/da/LC_MESSAGES/okular_poppler.mo share/locale/da/LC_MESSAGES/okular_txt.mo share/locale/da/LC_MESSAGES/okular_xps.mo share/locale/da/LC_MESSAGES/org.kde.active.documentviewer.mo share/locale/de/LC_MESSAGES/okular.mo share/locale/de/LC_MESSAGES/okular_comicbook.mo share/locale/de/LC_MESSAGES/okular_djvu.mo share/locale/de/LC_MESSAGES/okular_dvi.mo share/locale/de/LC_MESSAGES/okular_epub.mo share/locale/de/LC_MESSAGES/okular_fax.mo share/locale/de/LC_MESSAGES/okular_fictionbook.mo share/locale/de/LC_MESSAGES/okular_ghostview.mo share/locale/de/LC_MESSAGES/okular_kimgio.mo share/locale/de/LC_MESSAGES/okular_markdown.mo share/locale/de/LC_MESSAGES/okular_mobi.mo share/locale/de/LC_MESSAGES/okular_poppler.mo share/locale/de/LC_MESSAGES/okular_tiff.mo share/locale/de/LC_MESSAGES/okular_txt.mo share/locale/de/LC_MESSAGES/okular_xps.mo share/locale/de/LC_MESSAGES/org.kde.active.documentviewer.mo share/locale/el/LC_MESSAGES/okular.mo share/locale/el/LC_MESSAGES/okular_comicbook.mo share/locale/el/LC_MESSAGES/okular_djvu.mo share/locale/el/LC_MESSAGES/okular_dvi.mo share/locale/el/LC_MESSAGES/okular_epub.mo share/locale/el/LC_MESSAGES/okular_fax.mo share/locale/el/LC_MESSAGES/okular_fictionbook.mo share/locale/el/LC_MESSAGES/okular_ghostview.mo share/locale/el/LC_MESSAGES/okular_kimgio.mo share/locale/el/LC_MESSAGES/okular_markdown.mo share/locale/el/LC_MESSAGES/okular_mobi.mo share/locale/el/LC_MESSAGES/okular_poppler.mo share/locale/el/LC_MESSAGES/okular_tiff.mo share/locale/el/LC_MESSAGES/okular_txt.mo share/locale/el/LC_MESSAGES/okular_xps.mo share/locale/el/LC_MESSAGES/org.kde.active.documentviewer.mo share/locale/en_GB/LC_MESSAGES/okular.mo share/locale/en_GB/LC_MESSAGES/okular_comicbook.mo share/locale/en_GB/LC_MESSAGES/okular_djvu.mo share/locale/en_GB/LC_MESSAGES/okular_dvi.mo share/locale/en_GB/LC_MESSAGES/okular_epub.mo share/locale/en_GB/LC_MESSAGES/okular_fax.mo share/locale/en_GB/LC_MESSAGES/okular_fictionbook.mo share/locale/en_GB/LC_MESSAGES/okular_ghostview.mo share/locale/en_GB/LC_MESSAGES/okular_kimgio.mo share/locale/en_GB/LC_MESSAGES/okular_markdown.mo share/locale/en_GB/LC_MESSAGES/okular_mobi.mo share/locale/en_GB/LC_MESSAGES/okular_poppler.mo share/locale/en_GB/LC_MESSAGES/okular_tiff.mo share/locale/en_GB/LC_MESSAGES/okular_txt.mo share/locale/en_GB/LC_MESSAGES/okular_xps.mo share/locale/en_GB/LC_MESSAGES/org.kde.active.documentviewer.mo share/locale/eo/LC_MESSAGES/okular.mo share/locale/eo/LC_MESSAGES/okular_comicbook.mo share/locale/eo/LC_MESSAGES/okular_djvu.mo share/locale/eo/LC_MESSAGES/okular_dvi.mo share/locale/eo/LC_MESSAGES/okular_epub.mo share/locale/eo/LC_MESSAGES/okular_fax.mo share/locale/eo/LC_MESSAGES/okular_fictionbook.mo share/locale/eo/LC_MESSAGES/okular_ghostview.mo share/locale/eo/LC_MESSAGES/okular_kimgio.mo share/locale/eo/LC_MESSAGES/okular_markdown.mo share/locale/eo/LC_MESSAGES/okular_mobi.mo share/locale/eo/LC_MESSAGES/okular_poppler.mo share/locale/eo/LC_MESSAGES/okular_tiff.mo share/locale/eo/LC_MESSAGES/okular_txt.mo share/locale/eo/LC_MESSAGES/okular_xps.mo share/locale/eo/LC_MESSAGES/org.kde.active.documentviewer.mo share/locale/es/LC_MESSAGES/okular.mo share/locale/es/LC_MESSAGES/okular_comicbook.mo share/locale/es/LC_MESSAGES/okular_djvu.mo share/locale/es/LC_MESSAGES/okular_dvi.mo share/locale/es/LC_MESSAGES/okular_epub.mo share/locale/es/LC_MESSAGES/okular_fax.mo share/locale/es/LC_MESSAGES/okular_fictionbook.mo share/locale/es/LC_MESSAGES/okular_ghostview.mo share/locale/es/LC_MESSAGES/okular_kimgio.mo share/locale/es/LC_MESSAGES/okular_markdown.mo share/locale/es/LC_MESSAGES/okular_mobi.mo share/locale/es/LC_MESSAGES/okular_poppler.mo share/locale/es/LC_MESSAGES/okular_tiff.mo share/locale/es/LC_MESSAGES/okular_txt.mo share/locale/es/LC_MESSAGES/okular_xps.mo share/locale/es/LC_MESSAGES/org.kde.active.documentviewer.mo share/locale/et/LC_MESSAGES/okular.mo share/locale/et/LC_MESSAGES/okular_comicbook.mo share/locale/et/LC_MESSAGES/okular_djvu.mo share/locale/et/LC_MESSAGES/okular_dvi.mo share/locale/et/LC_MESSAGES/okular_epub.mo share/locale/et/LC_MESSAGES/okular_fax.mo share/locale/et/LC_MESSAGES/okular_fictionbook.mo share/locale/et/LC_MESSAGES/okular_ghostview.mo share/locale/et/LC_MESSAGES/okular_kimgio.mo share/locale/et/LC_MESSAGES/okular_markdown.mo share/locale/et/LC_MESSAGES/okular_mobi.mo share/locale/et/LC_MESSAGES/okular_poppler.mo share/locale/et/LC_MESSAGES/okular_txt.mo share/locale/et/LC_MESSAGES/okular_xps.mo share/locale/et/LC_MESSAGES/org.kde.active.documentviewer.mo share/locale/eu/LC_MESSAGES/okular.mo share/locale/eu/LC_MESSAGES/okular_comicbook.mo share/locale/eu/LC_MESSAGES/okular_djvu.mo share/locale/eu/LC_MESSAGES/okular_dvi.mo share/locale/eu/LC_MESSAGES/okular_epub.mo share/locale/eu/LC_MESSAGES/okular_fax.mo share/locale/eu/LC_MESSAGES/okular_fictionbook.mo share/locale/eu/LC_MESSAGES/okular_ghostview.mo share/locale/eu/LC_MESSAGES/okular_kimgio.mo share/locale/eu/LC_MESSAGES/okular_markdown.mo share/locale/eu/LC_MESSAGES/okular_mobi.mo share/locale/eu/LC_MESSAGES/okular_poppler.mo share/locale/eu/LC_MESSAGES/okular_tiff.mo share/locale/eu/LC_MESSAGES/okular_txt.mo share/locale/eu/LC_MESSAGES/okular_xps.mo share/locale/eu/LC_MESSAGES/org.kde.active.documentviewer.mo share/locale/fa/LC_MESSAGES/okular.mo share/locale/fi/LC_MESSAGES/okular.mo share/locale/fi/LC_MESSAGES/okular_comicbook.mo share/locale/fi/LC_MESSAGES/okular_djvu.mo share/locale/fi/LC_MESSAGES/okular_dvi.mo share/locale/fi/LC_MESSAGES/okular_epub.mo share/locale/fi/LC_MESSAGES/okular_fax.mo share/locale/fi/LC_MESSAGES/okular_fictionbook.mo share/locale/fi/LC_MESSAGES/okular_ghostview.mo share/locale/fi/LC_MESSAGES/okular_kimgio.mo share/locale/fi/LC_MESSAGES/okular_markdown.mo share/locale/fi/LC_MESSAGES/okular_mobi.mo share/locale/fi/LC_MESSAGES/okular_poppler.mo share/locale/fi/LC_MESSAGES/okular_tiff.mo share/locale/fi/LC_MESSAGES/okular_txt.mo share/locale/fi/LC_MESSAGES/okular_xps.mo share/locale/fi/LC_MESSAGES/org.kde.active.documentviewer.mo share/locale/fr/LC_MESSAGES/okular.mo share/locale/fr/LC_MESSAGES/okular_comicbook.mo share/locale/fr/LC_MESSAGES/okular_djvu.mo share/locale/fr/LC_MESSAGES/okular_dvi.mo share/locale/fr/LC_MESSAGES/okular_epub.mo share/locale/fr/LC_MESSAGES/okular_fax.mo share/locale/fr/LC_MESSAGES/okular_fictionbook.mo share/locale/fr/LC_MESSAGES/okular_ghostview.mo share/locale/fr/LC_MESSAGES/okular_kimgio.mo share/locale/fr/LC_MESSAGES/okular_markdown.mo share/locale/fr/LC_MESSAGES/okular_mobi.mo share/locale/fr/LC_MESSAGES/okular_poppler.mo share/locale/fr/LC_MESSAGES/okular_tiff.mo share/locale/fr/LC_MESSAGES/okular_txt.mo share/locale/fr/LC_MESSAGES/okular_xps.mo share/locale/fr/LC_MESSAGES/org.kde.active.documentviewer.mo share/locale/fy/LC_MESSAGES/okular.mo share/locale/ga/LC_MESSAGES/okular.mo share/locale/ga/LC_MESSAGES/okular_comicbook.mo share/locale/ga/LC_MESSAGES/okular_djvu.mo share/locale/ga/LC_MESSAGES/okular_dvi.mo share/locale/ga/LC_MESSAGES/okular_epub.mo share/locale/ga/LC_MESSAGES/okular_fax.mo share/locale/ga/LC_MESSAGES/okular_fictionbook.mo share/locale/ga/LC_MESSAGES/okular_ghostview.mo share/locale/ga/LC_MESSAGES/okular_kimgio.mo share/locale/ga/LC_MESSAGES/okular_mobi.mo share/locale/ga/LC_MESSAGES/okular_poppler.mo share/locale/ga/LC_MESSAGES/okular_xps.mo share/locale/ga/LC_MESSAGES/org.kde.active.documentviewer.mo share/locale/gl/LC_MESSAGES/okular.mo share/locale/gl/LC_MESSAGES/okular_comicbook.mo share/locale/gl/LC_MESSAGES/okular_djvu.mo share/locale/gl/LC_MESSAGES/okular_dvi.mo share/locale/gl/LC_MESSAGES/okular_epub.mo share/locale/gl/LC_MESSAGES/okular_fax.mo share/locale/gl/LC_MESSAGES/okular_fictionbook.mo share/locale/gl/LC_MESSAGES/okular_ghostview.mo share/locale/gl/LC_MESSAGES/okular_kimgio.mo share/locale/gl/LC_MESSAGES/okular_markdown.mo share/locale/gl/LC_MESSAGES/okular_mobi.mo share/locale/gl/LC_MESSAGES/okular_poppler.mo share/locale/gl/LC_MESSAGES/okular_tiff.mo share/locale/gl/LC_MESSAGES/okular_txt.mo share/locale/gl/LC_MESSAGES/okular_xps.mo share/locale/gl/LC_MESSAGES/org.kde.active.documentviewer.mo share/locale/he/LC_MESSAGES/okular.mo share/locale/he/LC_MESSAGES/okular_comicbook.mo share/locale/he/LC_MESSAGES/okular_djvu.mo share/locale/he/LC_MESSAGES/okular_dvi.mo share/locale/he/LC_MESSAGES/okular_epub.mo share/locale/he/LC_MESSAGES/okular_fax.mo share/locale/he/LC_MESSAGES/okular_fictionbook.mo share/locale/he/LC_MESSAGES/okular_ghostview.mo share/locale/he/LC_MESSAGES/okular_kimgio.mo share/locale/he/LC_MESSAGES/okular_markdown.mo share/locale/he/LC_MESSAGES/okular_mobi.mo share/locale/he/LC_MESSAGES/okular_poppler.mo share/locale/he/LC_MESSAGES/okular_tiff.mo share/locale/he/LC_MESSAGES/okular_txt.mo share/locale/he/LC_MESSAGES/okular_xps.mo share/locale/he/LC_MESSAGES/org.kde.active.documentviewer.mo share/locale/hi/LC_MESSAGES/okular.mo share/locale/hi/LC_MESSAGES/okular_comicbook.mo share/locale/hi/LC_MESSAGES/okular_djvu.mo share/locale/hi/LC_MESSAGES/okular_dvi.mo share/locale/hi/LC_MESSAGES/okular_epub.mo share/locale/hi/LC_MESSAGES/okular_fax.mo share/locale/hi/LC_MESSAGES/okular_fictionbook.mo share/locale/hi/LC_MESSAGES/okular_ghostview.mo share/locale/hi/LC_MESSAGES/okular_kimgio.mo share/locale/hi/LC_MESSAGES/okular_markdown.mo share/locale/hi/LC_MESSAGES/okular_mobi.mo share/locale/hi/LC_MESSAGES/okular_poppler.mo share/locale/hi/LC_MESSAGES/okular_tiff.mo share/locale/hi/LC_MESSAGES/okular_txt.mo share/locale/hi/LC_MESSAGES/okular_xps.mo share/locale/hi/LC_MESSAGES/org.kde.active.documentviewer.mo share/locale/hne/LC_MESSAGES/okular.mo share/locale/hne/LC_MESSAGES/okular_djvu.mo share/locale/hne/LC_MESSAGES/okular_dvi.mo share/locale/hne/LC_MESSAGES/okular_fictionbook.mo share/locale/hne/LC_MESSAGES/okular_ghostview.mo share/locale/hne/LC_MESSAGES/okular_kimgio.mo share/locale/hne/LC_MESSAGES/okular_poppler.mo share/locale/hne/LC_MESSAGES/okular_xps.mo share/locale/hr/LC_MESSAGES/okular.mo share/locale/hr/LC_MESSAGES/okular_comicbook.mo share/locale/hr/LC_MESSAGES/okular_djvu.mo share/locale/hr/LC_MESSAGES/okular_dvi.mo share/locale/hr/LC_MESSAGES/okular_epub.mo share/locale/hr/LC_MESSAGES/okular_fax.mo share/locale/hr/LC_MESSAGES/okular_fictionbook.mo share/locale/hr/LC_MESSAGES/okular_ghostview.mo share/locale/hr/LC_MESSAGES/okular_kimgio.mo share/locale/hr/LC_MESSAGES/okular_mobi.mo share/locale/hr/LC_MESSAGES/okular_poppler.mo share/locale/hr/LC_MESSAGES/okular_xps.mo share/locale/hsb/LC_MESSAGES/okular.mo share/locale/hu/LC_MESSAGES/okular.mo share/locale/hu/LC_MESSAGES/okular_comicbook.mo share/locale/hu/LC_MESSAGES/okular_djvu.mo share/locale/hu/LC_MESSAGES/okular_dvi.mo share/locale/hu/LC_MESSAGES/okular_epub.mo share/locale/hu/LC_MESSAGES/okular_fax.mo share/locale/hu/LC_MESSAGES/okular_fictionbook.mo share/locale/hu/LC_MESSAGES/okular_ghostview.mo share/locale/hu/LC_MESSAGES/okular_kimgio.mo share/locale/hu/LC_MESSAGES/okular_markdown.mo share/locale/hu/LC_MESSAGES/okular_mobi.mo share/locale/hu/LC_MESSAGES/okular_poppler.mo share/locale/hu/LC_MESSAGES/okular_tiff.mo share/locale/hu/LC_MESSAGES/okular_txt.mo share/locale/hu/LC_MESSAGES/okular_xps.mo share/locale/hu/LC_MESSAGES/org.kde.active.documentviewer.mo share/locale/ia/LC_MESSAGES/okular.mo share/locale/ia/LC_MESSAGES/okular_comicbook.mo share/locale/ia/LC_MESSAGES/okular_djvu.mo share/locale/ia/LC_MESSAGES/okular_dvi.mo share/locale/ia/LC_MESSAGES/okular_epub.mo share/locale/ia/LC_MESSAGES/okular_fax.mo share/locale/ia/LC_MESSAGES/okular_fictionbook.mo share/locale/ia/LC_MESSAGES/okular_ghostview.mo share/locale/ia/LC_MESSAGES/okular_kimgio.mo share/locale/ia/LC_MESSAGES/okular_markdown.mo share/locale/ia/LC_MESSAGES/okular_mobi.mo share/locale/ia/LC_MESSAGES/okular_poppler.mo share/locale/ia/LC_MESSAGES/okular_tiff.mo share/locale/ia/LC_MESSAGES/okular_txt.mo share/locale/ia/LC_MESSAGES/okular_xps.mo share/locale/ia/LC_MESSAGES/org.kde.active.documentviewer.mo share/locale/id/LC_MESSAGES/okular.mo share/locale/ie/LC_MESSAGES/okular.mo share/locale/ie/LC_MESSAGES/okular_comicbook.mo share/locale/ie/LC_MESSAGES/okular_djvu.mo share/locale/ie/LC_MESSAGES/okular_epub.mo share/locale/ie/LC_MESSAGES/okular_fax.mo share/locale/ie/LC_MESSAGES/okular_fictionbook.mo share/locale/ie/LC_MESSAGES/okular_ghostview.mo share/locale/ie/LC_MESSAGES/okular_kimgio.mo share/locale/ie/LC_MESSAGES/okular_markdown.mo share/locale/ie/LC_MESSAGES/okular_mobi.mo share/locale/ie/LC_MESSAGES/okular_txt.mo share/locale/ie/LC_MESSAGES/okular_xps.mo share/locale/is/LC_MESSAGES/okular.mo share/locale/is/LC_MESSAGES/okular_comicbook.mo share/locale/is/LC_MESSAGES/okular_djvu.mo share/locale/is/LC_MESSAGES/okular_dvi.mo share/locale/is/LC_MESSAGES/okular_epub.mo share/locale/is/LC_MESSAGES/okular_fax.mo share/locale/is/LC_MESSAGES/okular_fictionbook.mo share/locale/is/LC_MESSAGES/okular_ghostview.mo share/locale/is/LC_MESSAGES/okular_kimgio.mo share/locale/is/LC_MESSAGES/okular_markdown.mo share/locale/is/LC_MESSAGES/okular_mobi.mo share/locale/is/LC_MESSAGES/okular_poppler.mo share/locale/is/LC_MESSAGES/okular_tiff.mo share/locale/is/LC_MESSAGES/okular_txt.mo share/locale/is/LC_MESSAGES/okular_xps.mo share/locale/is/LC_MESSAGES/org.kde.active.documentviewer.mo share/locale/it/LC_MESSAGES/okular.mo share/locale/it/LC_MESSAGES/okular_comicbook.mo share/locale/it/LC_MESSAGES/okular_djvu.mo share/locale/it/LC_MESSAGES/okular_dvi.mo share/locale/it/LC_MESSAGES/okular_epub.mo share/locale/it/LC_MESSAGES/okular_fax.mo share/locale/it/LC_MESSAGES/okular_fictionbook.mo share/locale/it/LC_MESSAGES/okular_ghostview.mo share/locale/it/LC_MESSAGES/okular_kimgio.mo share/locale/it/LC_MESSAGES/okular_markdown.mo share/locale/it/LC_MESSAGES/okular_mobi.mo share/locale/it/LC_MESSAGES/okular_poppler.mo share/locale/it/LC_MESSAGES/okular_tiff.mo share/locale/it/LC_MESSAGES/okular_txt.mo share/locale/it/LC_MESSAGES/okular_xps.mo share/locale/it/LC_MESSAGES/org.kde.active.documentviewer.mo share/locale/ja/LC_MESSAGES/okular.mo share/locale/ja/LC_MESSAGES/okular_comicbook.mo share/locale/ja/LC_MESSAGES/okular_djvu.mo share/locale/ja/LC_MESSAGES/okular_dvi.mo share/locale/ja/LC_MESSAGES/okular_epub.mo share/locale/ja/LC_MESSAGES/okular_fax.mo share/locale/ja/LC_MESSAGES/okular_fictionbook.mo share/locale/ja/LC_MESSAGES/okular_ghostview.mo share/locale/ja/LC_MESSAGES/okular_kimgio.mo share/locale/ja/LC_MESSAGES/okular_markdown.mo share/locale/ja/LC_MESSAGES/okular_mobi.mo share/locale/ja/LC_MESSAGES/okular_poppler.mo share/locale/ja/LC_MESSAGES/okular_tiff.mo share/locale/ja/LC_MESSAGES/okular_txt.mo share/locale/ja/LC_MESSAGES/okular_xps.mo share/locale/ja/LC_MESSAGES/org.kde.active.documentviewer.mo share/locale/ka/LC_MESSAGES/okular.mo share/locale/ka/LC_MESSAGES/okular_comicbook.mo share/locale/ka/LC_MESSAGES/okular_djvu.mo share/locale/ka/LC_MESSAGES/okular_dvi.mo share/locale/ka/LC_MESSAGES/okular_epub.mo share/locale/ka/LC_MESSAGES/okular_fax.mo share/locale/ka/LC_MESSAGES/okular_fictionbook.mo share/locale/ka/LC_MESSAGES/okular_ghostview.mo share/locale/ka/LC_MESSAGES/okular_kimgio.mo share/locale/ka/LC_MESSAGES/okular_markdown.mo share/locale/ka/LC_MESSAGES/okular_mobi.mo share/locale/ka/LC_MESSAGES/okular_poppler.mo share/locale/ka/LC_MESSAGES/okular_tiff.mo share/locale/ka/LC_MESSAGES/okular_txt.mo share/locale/ka/LC_MESSAGES/okular_xps.mo share/locale/ka/LC_MESSAGES/org.kde.active.documentviewer.mo share/locale/kk/LC_MESSAGES/okular.mo share/locale/kk/LC_MESSAGES/okular_comicbook.mo share/locale/kk/LC_MESSAGES/okular_djvu.mo share/locale/kk/LC_MESSAGES/okular_dvi.mo share/locale/kk/LC_MESSAGES/okular_epub.mo share/locale/kk/LC_MESSAGES/okular_fax.mo share/locale/kk/LC_MESSAGES/okular_fictionbook.mo share/locale/kk/LC_MESSAGES/okular_ghostview.mo share/locale/kk/LC_MESSAGES/okular_kimgio.mo share/locale/kk/LC_MESSAGES/okular_mobi.mo share/locale/kk/LC_MESSAGES/okular_poppler.mo share/locale/kk/LC_MESSAGES/okular_txt.mo share/locale/kk/LC_MESSAGES/okular_xps.mo share/locale/kk/LC_MESSAGES/org.kde.active.documentviewer.mo share/locale/km/LC_MESSAGES/okular.mo share/locale/km/LC_MESSAGES/okular_comicbook.mo share/locale/km/LC_MESSAGES/okular_djvu.mo share/locale/km/LC_MESSAGES/okular_dvi.mo share/locale/km/LC_MESSAGES/okular_epub.mo share/locale/km/LC_MESSAGES/okular_fax.mo share/locale/km/LC_MESSAGES/okular_fictionbook.mo share/locale/km/LC_MESSAGES/okular_ghostview.mo share/locale/km/LC_MESSAGES/okular_kimgio.mo share/locale/km/LC_MESSAGES/okular_mobi.mo share/locale/km/LC_MESSAGES/okular_poppler.mo share/locale/km/LC_MESSAGES/okular_xps.mo share/locale/ko/LC_MESSAGES/okular.mo share/locale/ko/LC_MESSAGES/okular_comicbook.mo share/locale/ko/LC_MESSAGES/okular_djvu.mo share/locale/ko/LC_MESSAGES/okular_dvi.mo share/locale/ko/LC_MESSAGES/okular_epub.mo share/locale/ko/LC_MESSAGES/okular_fax.mo share/locale/ko/LC_MESSAGES/okular_fictionbook.mo share/locale/ko/LC_MESSAGES/okular_ghostview.mo share/locale/ko/LC_MESSAGES/okular_kimgio.mo share/locale/ko/LC_MESSAGES/okular_markdown.mo share/locale/ko/LC_MESSAGES/okular_mobi.mo share/locale/ko/LC_MESSAGES/okular_poppler.mo share/locale/ko/LC_MESSAGES/okular_tiff.mo share/locale/ko/LC_MESSAGES/okular_txt.mo share/locale/ko/LC_MESSAGES/okular_xps.mo share/locale/ko/LC_MESSAGES/org.kde.active.documentviewer.mo share/locale/ku/LC_MESSAGES/okular.mo share/locale/ku/LC_MESSAGES/okular_comicbook.mo share/locale/ku/LC_MESSAGES/okular_djvu.mo share/locale/ku/LC_MESSAGES/okular_epub.mo share/locale/ku/LC_MESSAGES/okular_fax.mo share/locale/ku/LC_MESSAGES/okular_fictionbook.mo share/locale/ku/LC_MESSAGES/okular_ghostview.mo share/locale/ku/LC_MESSAGES/okular_kimgio.mo share/locale/ku/LC_MESSAGES/okular_xps.mo share/locale/lt/LC_MESSAGES/okular.mo share/locale/lt/LC_MESSAGES/okular_comicbook.mo share/locale/lt/LC_MESSAGES/okular_djvu.mo share/locale/lt/LC_MESSAGES/okular_dvi.mo share/locale/lt/LC_MESSAGES/okular_epub.mo share/locale/lt/LC_MESSAGES/okular_fax.mo share/locale/lt/LC_MESSAGES/okular_fictionbook.mo share/locale/lt/LC_MESSAGES/okular_ghostview.mo share/locale/lt/LC_MESSAGES/okular_kimgio.mo share/locale/lt/LC_MESSAGES/okular_markdown.mo share/locale/lt/LC_MESSAGES/okular_mobi.mo share/locale/lt/LC_MESSAGES/okular_poppler.mo share/locale/lt/LC_MESSAGES/okular_tiff.mo share/locale/lt/LC_MESSAGES/okular_txt.mo share/locale/lt/LC_MESSAGES/okular_xps.mo share/locale/lt/LC_MESSAGES/org.kde.active.documentviewer.mo share/locale/lv/LC_MESSAGES/okular.mo share/locale/lv/LC_MESSAGES/okular_comicbook.mo share/locale/lv/LC_MESSAGES/okular_djvu.mo share/locale/lv/LC_MESSAGES/okular_dvi.mo share/locale/lv/LC_MESSAGES/okular_epub.mo share/locale/lv/LC_MESSAGES/okular_fax.mo share/locale/lv/LC_MESSAGES/okular_fictionbook.mo share/locale/lv/LC_MESSAGES/okular_ghostview.mo share/locale/lv/LC_MESSAGES/okular_kimgio.mo share/locale/lv/LC_MESSAGES/okular_markdown.mo share/locale/lv/LC_MESSAGES/okular_mobi.mo share/locale/lv/LC_MESSAGES/okular_poppler.mo share/locale/lv/LC_MESSAGES/okular_tiff.mo share/locale/lv/LC_MESSAGES/okular_txt.mo share/locale/lv/LC_MESSAGES/okular_xps.mo share/locale/lv/LC_MESSAGES/org.kde.active.documentviewer.mo share/locale/mk/LC_MESSAGES/okular.mo share/locale/mk/LC_MESSAGES/okular_djvu.mo share/locale/mk/LC_MESSAGES/okular_fictionbook.mo share/locale/mk/LC_MESSAGES/okular_ghostview.mo share/locale/mk/LC_MESSAGES/okular_kimgio.mo share/locale/mk/LC_MESSAGES/okular_poppler.mo share/locale/mk/LC_MESSAGES/okular_xps.mo share/locale/ml/LC_MESSAGES/okular.mo share/locale/ml/LC_MESSAGES/okular_comicbook.mo share/locale/ml/LC_MESSAGES/okular_djvu.mo share/locale/ml/LC_MESSAGES/okular_dvi.mo share/locale/ml/LC_MESSAGES/okular_epub.mo share/locale/ml/LC_MESSAGES/okular_fax.mo share/locale/ml/LC_MESSAGES/okular_fictionbook.mo share/locale/ml/LC_MESSAGES/okular_ghostview.mo share/locale/ml/LC_MESSAGES/okular_kimgio.mo share/locale/ml/LC_MESSAGES/okular_markdown.mo share/locale/ml/LC_MESSAGES/okular_mobi.mo share/locale/ml/LC_MESSAGES/okular_poppler.mo share/locale/ml/LC_MESSAGES/okular_txt.mo share/locale/ml/LC_MESSAGES/okular_xps.mo share/locale/ml/LC_MESSAGES/org.kde.active.documentviewer.mo share/locale/mr/LC_MESSAGES/okular.mo share/locale/mr/LC_MESSAGES/okular_comicbook.mo share/locale/mr/LC_MESSAGES/okular_djvu.mo share/locale/mr/LC_MESSAGES/okular_dvi.mo share/locale/mr/LC_MESSAGES/okular_epub.mo share/locale/mr/LC_MESSAGES/okular_fax.mo share/locale/mr/LC_MESSAGES/okular_fictionbook.mo share/locale/mr/LC_MESSAGES/okular_ghostview.mo share/locale/mr/LC_MESSAGES/okular_kimgio.mo share/locale/mr/LC_MESSAGES/okular_mobi.mo share/locale/mr/LC_MESSAGES/okular_poppler.mo share/locale/mr/LC_MESSAGES/okular_xps.mo share/locale/mr/LC_MESSAGES/org.kde.active.documentviewer.mo share/locale/ms/LC_MESSAGES/okular.mo share/locale/nb/LC_MESSAGES/okular.mo share/locale/nb/LC_MESSAGES/okular_comicbook.mo share/locale/nb/LC_MESSAGES/okular_djvu.mo share/locale/nb/LC_MESSAGES/okular_dvi.mo share/locale/nb/LC_MESSAGES/okular_epub.mo share/locale/nb/LC_MESSAGES/okular_fax.mo share/locale/nb/LC_MESSAGES/okular_fictionbook.mo share/locale/nb/LC_MESSAGES/okular_ghostview.mo share/locale/nb/LC_MESSAGES/okular_kimgio.mo share/locale/nb/LC_MESSAGES/okular_mobi.mo share/locale/nb/LC_MESSAGES/okular_poppler.mo share/locale/nb/LC_MESSAGES/okular_txt.mo share/locale/nb/LC_MESSAGES/okular_xps.mo share/locale/nb/LC_MESSAGES/org.kde.active.documentviewer.mo share/locale/nds/LC_MESSAGES/okular.mo share/locale/nds/LC_MESSAGES/okular_comicbook.mo share/locale/nds/LC_MESSAGES/okular_djvu.mo share/locale/nds/LC_MESSAGES/okular_dvi.mo share/locale/nds/LC_MESSAGES/okular_epub.mo share/locale/nds/LC_MESSAGES/okular_fax.mo share/locale/nds/LC_MESSAGES/okular_fictionbook.mo share/locale/nds/LC_MESSAGES/okular_ghostview.mo share/locale/nds/LC_MESSAGES/okular_kimgio.mo share/locale/nds/LC_MESSAGES/okular_mobi.mo share/locale/nds/LC_MESSAGES/okular_poppler.mo share/locale/nds/LC_MESSAGES/okular_txt.mo share/locale/nds/LC_MESSAGES/okular_xps.mo share/locale/nds/LC_MESSAGES/org.kde.active.documentviewer.mo share/locale/ne/LC_MESSAGES/okular.mo share/locale/nl/LC_MESSAGES/okular.mo share/locale/nl/LC_MESSAGES/okular_comicbook.mo share/locale/nl/LC_MESSAGES/okular_djvu.mo share/locale/nl/LC_MESSAGES/okular_dvi.mo share/locale/nl/LC_MESSAGES/okular_epub.mo share/locale/nl/LC_MESSAGES/okular_fax.mo share/locale/nl/LC_MESSAGES/okular_fictionbook.mo share/locale/nl/LC_MESSAGES/okular_ghostview.mo share/locale/nl/LC_MESSAGES/okular_kimgio.mo share/locale/nl/LC_MESSAGES/okular_markdown.mo share/locale/nl/LC_MESSAGES/okular_mobi.mo share/locale/nl/LC_MESSAGES/okular_poppler.mo share/locale/nl/LC_MESSAGES/okular_tiff.mo share/locale/nl/LC_MESSAGES/okular_txt.mo share/locale/nl/LC_MESSAGES/okular_xps.mo share/locale/nl/LC_MESSAGES/org.kde.active.documentviewer.mo share/locale/nn/LC_MESSAGES/okular.mo share/locale/nn/LC_MESSAGES/okular_comicbook.mo share/locale/nn/LC_MESSAGES/okular_djvu.mo share/locale/nn/LC_MESSAGES/okular_dvi.mo share/locale/nn/LC_MESSAGES/okular_epub.mo share/locale/nn/LC_MESSAGES/okular_fax.mo share/locale/nn/LC_MESSAGES/okular_fictionbook.mo share/locale/nn/LC_MESSAGES/okular_ghostview.mo share/locale/nn/LC_MESSAGES/okular_kimgio.mo share/locale/nn/LC_MESSAGES/okular_markdown.mo share/locale/nn/LC_MESSAGES/okular_mobi.mo share/locale/nn/LC_MESSAGES/okular_poppler.mo share/locale/nn/LC_MESSAGES/okular_tiff.mo share/locale/nn/LC_MESSAGES/okular_txt.mo share/locale/nn/LC_MESSAGES/okular_xps.mo share/locale/nn/LC_MESSAGES/org.kde.active.documentviewer.mo share/locale/oc/LC_MESSAGES/okular.mo share/locale/oc/LC_MESSAGES/okular_djvu.mo share/locale/oc/LC_MESSAGES/okular_dvi.mo share/locale/oc/LC_MESSAGES/okular_fictionbook.mo share/locale/oc/LC_MESSAGES/okular_ghostview.mo share/locale/oc/LC_MESSAGES/okular_kimgio.mo share/locale/oc/LC_MESSAGES/okular_poppler.mo share/locale/oc/LC_MESSAGES/okular_xps.mo share/locale/pa/LC_MESSAGES/okular.mo share/locale/pa/LC_MESSAGES/okular_comicbook.mo share/locale/pa/LC_MESSAGES/okular_djvu.mo share/locale/pa/LC_MESSAGES/okular_dvi.mo share/locale/pa/LC_MESSAGES/okular_epub.mo share/locale/pa/LC_MESSAGES/okular_fax.mo share/locale/pa/LC_MESSAGES/okular_fictionbook.mo share/locale/pa/LC_MESSAGES/okular_ghostview.mo share/locale/pa/LC_MESSAGES/okular_kimgio.mo share/locale/pa/LC_MESSAGES/okular_mobi.mo share/locale/pa/LC_MESSAGES/okular_poppler.mo share/locale/pa/LC_MESSAGES/okular_txt.mo share/locale/pa/LC_MESSAGES/okular_xps.mo share/locale/pa/LC_MESSAGES/org.kde.active.documentviewer.mo share/locale/pl/LC_MESSAGES/okular.mo share/locale/pl/LC_MESSAGES/okular_comicbook.mo share/locale/pl/LC_MESSAGES/okular_djvu.mo share/locale/pl/LC_MESSAGES/okular_dvi.mo share/locale/pl/LC_MESSAGES/okular_epub.mo share/locale/pl/LC_MESSAGES/okular_fax.mo share/locale/pl/LC_MESSAGES/okular_fictionbook.mo share/locale/pl/LC_MESSAGES/okular_ghostview.mo share/locale/pl/LC_MESSAGES/okular_kimgio.mo share/locale/pl/LC_MESSAGES/okular_markdown.mo share/locale/pl/LC_MESSAGES/okular_mobi.mo share/locale/pl/LC_MESSAGES/okular_poppler.mo share/locale/pl/LC_MESSAGES/okular_tiff.mo share/locale/pl/LC_MESSAGES/okular_txt.mo share/locale/pl/LC_MESSAGES/okular_xps.mo share/locale/pl/LC_MESSAGES/org.kde.active.documentviewer.mo share/locale/pt/LC_MESSAGES/okular.mo share/locale/pt/LC_MESSAGES/okular_comicbook.mo share/locale/pt/LC_MESSAGES/okular_djvu.mo share/locale/pt/LC_MESSAGES/okular_dvi.mo share/locale/pt/LC_MESSAGES/okular_epub.mo share/locale/pt/LC_MESSAGES/okular_fax.mo share/locale/pt/LC_MESSAGES/okular_fictionbook.mo share/locale/pt/LC_MESSAGES/okular_ghostview.mo share/locale/pt/LC_MESSAGES/okular_kimgio.mo share/locale/pt/LC_MESSAGES/okular_markdown.mo share/locale/pt/LC_MESSAGES/okular_mobi.mo share/locale/pt/LC_MESSAGES/okular_poppler.mo share/locale/pt/LC_MESSAGES/okular_tiff.mo share/locale/pt/LC_MESSAGES/okular_txt.mo share/locale/pt/LC_MESSAGES/okular_xps.mo share/locale/pt/LC_MESSAGES/org.kde.active.documentviewer.mo share/locale/pt_BR/LC_MESSAGES/okular.mo share/locale/pt_BR/LC_MESSAGES/okular_comicbook.mo share/locale/pt_BR/LC_MESSAGES/okular_djvu.mo share/locale/pt_BR/LC_MESSAGES/okular_dvi.mo share/locale/pt_BR/LC_MESSAGES/okular_epub.mo share/locale/pt_BR/LC_MESSAGES/okular_fax.mo share/locale/pt_BR/LC_MESSAGES/okular_fictionbook.mo share/locale/pt_BR/LC_MESSAGES/okular_ghostview.mo share/locale/pt_BR/LC_MESSAGES/okular_kimgio.mo share/locale/pt_BR/LC_MESSAGES/okular_markdown.mo share/locale/pt_BR/LC_MESSAGES/okular_mobi.mo share/locale/pt_BR/LC_MESSAGES/okular_poppler.mo share/locale/pt_BR/LC_MESSAGES/okular_tiff.mo share/locale/pt_BR/LC_MESSAGES/okular_txt.mo share/locale/pt_BR/LC_MESSAGES/okular_xps.mo share/locale/pt_BR/LC_MESSAGES/org.kde.active.documentviewer.mo share/locale/ro/LC_MESSAGES/okular.mo share/locale/ro/LC_MESSAGES/okular_comicbook.mo share/locale/ro/LC_MESSAGES/okular_djvu.mo share/locale/ro/LC_MESSAGES/okular_dvi.mo share/locale/ro/LC_MESSAGES/okular_epub.mo share/locale/ro/LC_MESSAGES/okular_fax.mo share/locale/ro/LC_MESSAGES/okular_fictionbook.mo share/locale/ro/LC_MESSAGES/okular_ghostview.mo share/locale/ro/LC_MESSAGES/okular_kimgio.mo share/locale/ro/LC_MESSAGES/okular_markdown.mo share/locale/ro/LC_MESSAGES/okular_mobi.mo share/locale/ro/LC_MESSAGES/okular_poppler.mo share/locale/ro/LC_MESSAGES/okular_tiff.mo share/locale/ro/LC_MESSAGES/okular_txt.mo share/locale/ro/LC_MESSAGES/okular_xps.mo share/locale/ro/LC_MESSAGES/org.kde.active.documentviewer.mo share/locale/ru/LC_MESSAGES/okular.mo share/locale/ru/LC_MESSAGES/okular_comicbook.mo share/locale/ru/LC_MESSAGES/okular_djvu.mo share/locale/ru/LC_MESSAGES/okular_dvi.mo share/locale/ru/LC_MESSAGES/okular_epub.mo share/locale/ru/LC_MESSAGES/okular_fax.mo share/locale/ru/LC_MESSAGES/okular_fictionbook.mo share/locale/ru/LC_MESSAGES/okular_ghostview.mo share/locale/ru/LC_MESSAGES/okular_kimgio.mo share/locale/ru/LC_MESSAGES/okular_markdown.mo share/locale/ru/LC_MESSAGES/okular_mobi.mo share/locale/ru/LC_MESSAGES/okular_poppler.mo share/locale/ru/LC_MESSAGES/okular_tiff.mo share/locale/ru/LC_MESSAGES/okular_txt.mo share/locale/ru/LC_MESSAGES/okular_xps.mo share/locale/ru/LC_MESSAGES/org.kde.active.documentviewer.mo share/locale/se/LC_MESSAGES/okular.mo share/locale/se/LC_MESSAGES/okular_djvu.mo share/locale/se/LC_MESSAGES/okular_dvi.mo share/locale/se/LC_MESSAGES/okular_fictionbook.mo share/locale/se/LC_MESSAGES/okular_ghostview.mo share/locale/se/LC_MESSAGES/okular_kimgio.mo share/locale/se/LC_MESSAGES/okular_poppler.mo share/locale/se/LC_MESSAGES/okular_xps.mo share/locale/si/LC_MESSAGES/okular.mo share/locale/si/LC_MESSAGES/okular_comicbook.mo share/locale/si/LC_MESSAGES/okular_djvu.mo share/locale/si/LC_MESSAGES/okular_dvi.mo share/locale/si/LC_MESSAGES/okular_epub.mo share/locale/si/LC_MESSAGES/okular_fax.mo share/locale/si/LC_MESSAGES/okular_fictionbook.mo share/locale/si/LC_MESSAGES/okular_ghostview.mo share/locale/si/LC_MESSAGES/okular_kimgio.mo share/locale/si/LC_MESSAGES/okular_mobi.mo share/locale/si/LC_MESSAGES/okular_poppler.mo share/locale/si/LC_MESSAGES/okular_xps.mo share/locale/sk/LC_MESSAGES/okular.mo share/locale/sk/LC_MESSAGES/okular_comicbook.mo share/locale/sk/LC_MESSAGES/okular_djvu.mo share/locale/sk/LC_MESSAGES/okular_dvi.mo share/locale/sk/LC_MESSAGES/okular_epub.mo share/locale/sk/LC_MESSAGES/okular_fax.mo share/locale/sk/LC_MESSAGES/okular_fictionbook.mo share/locale/sk/LC_MESSAGES/okular_ghostview.mo share/locale/sk/LC_MESSAGES/okular_kimgio.mo share/locale/sk/LC_MESSAGES/okular_markdown.mo share/locale/sk/LC_MESSAGES/okular_mobi.mo share/locale/sk/LC_MESSAGES/okular_poppler.mo share/locale/sk/LC_MESSAGES/okular_tiff.mo share/locale/sk/LC_MESSAGES/okular_txt.mo share/locale/sk/LC_MESSAGES/okular_xps.mo share/locale/sk/LC_MESSAGES/org.kde.active.documentviewer.mo share/locale/sl/LC_MESSAGES/okular.mo share/locale/sl/LC_MESSAGES/okular_comicbook.mo share/locale/sl/LC_MESSAGES/okular_djvu.mo share/locale/sl/LC_MESSAGES/okular_dvi.mo share/locale/sl/LC_MESSAGES/okular_epub.mo share/locale/sl/LC_MESSAGES/okular_fax.mo share/locale/sl/LC_MESSAGES/okular_fictionbook.mo share/locale/sl/LC_MESSAGES/okular_ghostview.mo share/locale/sl/LC_MESSAGES/okular_kimgio.mo share/locale/sl/LC_MESSAGES/okular_markdown.mo share/locale/sl/LC_MESSAGES/okular_mobi.mo share/locale/sl/LC_MESSAGES/okular_poppler.mo share/locale/sl/LC_MESSAGES/okular_tiff.mo share/locale/sl/LC_MESSAGES/okular_txt.mo share/locale/sl/LC_MESSAGES/okular_xps.mo share/locale/sl/LC_MESSAGES/org.kde.active.documentviewer.mo share/locale/sq/LC_MESSAGES/okular_comicbook.mo share/locale/sq/LC_MESSAGES/okular_djvu.mo share/locale/sq/LC_MESSAGES/okular_dvi.mo share/locale/sq/LC_MESSAGES/okular_epub.mo share/locale/sq/LC_MESSAGES/okular_fax.mo share/locale/sq/LC_MESSAGES/okular_fictionbook.mo share/locale/sq/LC_MESSAGES/okular_ghostview.mo share/locale/sq/LC_MESSAGES/okular_kimgio.mo share/locale/sq/LC_MESSAGES/okular_mobi.mo share/locale/sq/LC_MESSAGES/okular_poppler.mo share/locale/sq/LC_MESSAGES/okular_xps.mo share/locale/sr/LC_MESSAGES/okular.mo share/locale/sr/LC_MESSAGES/okular_comicbook.mo share/locale/sr/LC_MESSAGES/okular_djvu.mo share/locale/sr/LC_MESSAGES/okular_dvi.mo share/locale/sr/LC_MESSAGES/okular_epub.mo share/locale/sr/LC_MESSAGES/okular_fax.mo share/locale/sr/LC_MESSAGES/okular_fictionbook.mo share/locale/sr/LC_MESSAGES/okular_ghostview.mo share/locale/sr/LC_MESSAGES/okular_kimgio.mo share/locale/sr/LC_MESSAGES/okular_markdown.mo share/locale/sr/LC_MESSAGES/okular_mobi.mo share/locale/sr/LC_MESSAGES/okular_poppler.mo share/locale/sr/LC_MESSAGES/okular_txt.mo share/locale/sr/LC_MESSAGES/okular_xps.mo share/locale/sr@ijekavian/LC_MESSAGES/okular.mo share/locale/sr@ijekavian/LC_MESSAGES/okular_comicbook.mo share/locale/sr@ijekavian/LC_MESSAGES/okular_djvu.mo share/locale/sr@ijekavian/LC_MESSAGES/okular_dvi.mo share/locale/sr@ijekavian/LC_MESSAGES/okular_epub.mo share/locale/sr@ijekavian/LC_MESSAGES/okular_fax.mo share/locale/sr@ijekavian/LC_MESSAGES/okular_fictionbook.mo share/locale/sr@ijekavian/LC_MESSAGES/okular_ghostview.mo share/locale/sr@ijekavian/LC_MESSAGES/okular_kimgio.mo share/locale/sr@ijekavian/LC_MESSAGES/okular_markdown.mo share/locale/sr@ijekavian/LC_MESSAGES/okular_mobi.mo share/locale/sr@ijekavian/LC_MESSAGES/okular_poppler.mo share/locale/sr@ijekavian/LC_MESSAGES/okular_txt.mo share/locale/sr@ijekavian/LC_MESSAGES/okular_xps.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/okular.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/okular_comicbook.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/okular_djvu.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/okular_dvi.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/okular_epub.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/okular_fax.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/okular_fictionbook.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/okular_ghostview.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/okular_kimgio.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/okular_markdown.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/okular_mobi.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/okular_poppler.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/okular_txt.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/okular_xps.mo share/locale/sr@latin/LC_MESSAGES/okular.mo share/locale/sr@latin/LC_MESSAGES/okular_comicbook.mo share/locale/sr@latin/LC_MESSAGES/okular_djvu.mo share/locale/sr@latin/LC_MESSAGES/okular_dvi.mo share/locale/sr@latin/LC_MESSAGES/okular_epub.mo share/locale/sr@latin/LC_MESSAGES/okular_fax.mo share/locale/sr@latin/LC_MESSAGES/okular_fictionbook.mo share/locale/sr@latin/LC_MESSAGES/okular_ghostview.mo share/locale/sr@latin/LC_MESSAGES/okular_kimgio.mo share/locale/sr@latin/LC_MESSAGES/okular_markdown.mo share/locale/sr@latin/LC_MESSAGES/okular_mobi.mo share/locale/sr@latin/LC_MESSAGES/okular_poppler.mo share/locale/sr@latin/LC_MESSAGES/okular_txt.mo share/locale/sr@latin/LC_MESSAGES/okular_xps.mo share/locale/sv/LC_MESSAGES/okular.mo share/locale/sv/LC_MESSAGES/okular_comicbook.mo share/locale/sv/LC_MESSAGES/okular_djvu.mo share/locale/sv/LC_MESSAGES/okular_dvi.mo share/locale/sv/LC_MESSAGES/okular_epub.mo share/locale/sv/LC_MESSAGES/okular_fax.mo share/locale/sv/LC_MESSAGES/okular_fictionbook.mo share/locale/sv/LC_MESSAGES/okular_ghostview.mo share/locale/sv/LC_MESSAGES/okular_kimgio.mo share/locale/sv/LC_MESSAGES/okular_markdown.mo share/locale/sv/LC_MESSAGES/okular_mobi.mo share/locale/sv/LC_MESSAGES/okular_poppler.mo share/locale/sv/LC_MESSAGES/okular_tiff.mo share/locale/sv/LC_MESSAGES/okular_txt.mo share/locale/sv/LC_MESSAGES/okular_xps.mo share/locale/sv/LC_MESSAGES/org.kde.active.documentviewer.mo share/locale/ta/LC_MESSAGES/okular.mo share/locale/ta/LC_MESSAGES/okular_djvu.mo share/locale/ta/LC_MESSAGES/okular_epub.mo share/locale/ta/LC_MESSAGES/okular_fax.mo share/locale/ta/LC_MESSAGES/okular_fictionbook.mo share/locale/ta/LC_MESSAGES/okular_ghostview.mo share/locale/ta/LC_MESSAGES/okular_kimgio.mo share/locale/ta/LC_MESSAGES/okular_markdown.mo share/locale/ta/LC_MESSAGES/okular_poppler.mo share/locale/ta/LC_MESSAGES/okular_tiff.mo share/locale/ta/LC_MESSAGES/okular_txt.mo share/locale/ta/LC_MESSAGES/okular_xps.mo share/locale/ta/LC_MESSAGES/org.kde.active.documentviewer.mo share/locale/tg/LC_MESSAGES/okular.mo share/locale/th/LC_MESSAGES/okular.mo share/locale/th/LC_MESSAGES/okular_comicbook.mo share/locale/th/LC_MESSAGES/okular_djvu.mo share/locale/th/LC_MESSAGES/okular_dvi.mo share/locale/th/LC_MESSAGES/okular_epub.mo share/locale/th/LC_MESSAGES/okular_fax.mo share/locale/th/LC_MESSAGES/okular_fictionbook.mo share/locale/th/LC_MESSAGES/okular_ghostview.mo share/locale/th/LC_MESSAGES/okular_kimgio.mo share/locale/th/LC_MESSAGES/okular_mobi.mo share/locale/th/LC_MESSAGES/okular_poppler.mo share/locale/th/LC_MESSAGES/okular_xps.mo share/locale/tr/LC_MESSAGES/okular.mo share/locale/tr/LC_MESSAGES/okular_comicbook.mo share/locale/tr/LC_MESSAGES/okular_djvu.mo share/locale/tr/LC_MESSAGES/okular_dvi.mo share/locale/tr/LC_MESSAGES/okular_epub.mo share/locale/tr/LC_MESSAGES/okular_fax.mo share/locale/tr/LC_MESSAGES/okular_fictionbook.mo share/locale/tr/LC_MESSAGES/okular_ghostview.mo share/locale/tr/LC_MESSAGES/okular_kimgio.mo share/locale/tr/LC_MESSAGES/okular_markdown.mo share/locale/tr/LC_MESSAGES/okular_mobi.mo share/locale/tr/LC_MESSAGES/okular_poppler.mo share/locale/tr/LC_MESSAGES/okular_tiff.mo share/locale/tr/LC_MESSAGES/okular_txt.mo share/locale/tr/LC_MESSAGES/okular_xps.mo share/locale/tr/LC_MESSAGES/org.kde.active.documentviewer.mo share/locale/ug/LC_MESSAGES/okular.mo share/locale/ug/LC_MESSAGES/okular_comicbook.mo share/locale/ug/LC_MESSAGES/okular_djvu.mo share/locale/ug/LC_MESSAGES/okular_dvi.mo share/locale/ug/LC_MESSAGES/okular_epub.mo share/locale/ug/LC_MESSAGES/okular_fax.mo share/locale/ug/LC_MESSAGES/okular_fictionbook.mo share/locale/ug/LC_MESSAGES/okular_ghostview.mo share/locale/ug/LC_MESSAGES/okular_kimgio.mo share/locale/ug/LC_MESSAGES/okular_mobi.mo share/locale/ug/LC_MESSAGES/okular_poppler.mo share/locale/ug/LC_MESSAGES/okular_txt.mo share/locale/ug/LC_MESSAGES/okular_xps.mo share/locale/ug/LC_MESSAGES/org.kde.active.documentviewer.mo share/locale/uk/LC_MESSAGES/okular.mo share/locale/uk/LC_MESSAGES/okular_comicbook.mo share/locale/uk/LC_MESSAGES/okular_djvu.mo share/locale/uk/LC_MESSAGES/okular_dvi.mo share/locale/uk/LC_MESSAGES/okular_epub.mo share/locale/uk/LC_MESSAGES/okular_fax.mo share/locale/uk/LC_MESSAGES/okular_fictionbook.mo share/locale/uk/LC_MESSAGES/okular_ghostview.mo share/locale/uk/LC_MESSAGES/okular_kimgio.mo share/locale/uk/LC_MESSAGES/okular_markdown.mo share/locale/uk/LC_MESSAGES/okular_mobi.mo share/locale/uk/LC_MESSAGES/okular_poppler.mo share/locale/uk/LC_MESSAGES/okular_tiff.mo share/locale/uk/LC_MESSAGES/okular_txt.mo share/locale/uk/LC_MESSAGES/okular_xps.mo share/locale/uk/LC_MESSAGES/org.kde.active.documentviewer.mo share/locale/vi/LC_MESSAGES/okular.mo share/locale/vi/LC_MESSAGES/okular_comicbook.mo share/locale/vi/LC_MESSAGES/okular_djvu.mo share/locale/vi/LC_MESSAGES/okular_dvi.mo share/locale/vi/LC_MESSAGES/okular_epub.mo share/locale/vi/LC_MESSAGES/okular_fax.mo share/locale/vi/LC_MESSAGES/okular_fictionbook.mo share/locale/vi/LC_MESSAGES/okular_ghostview.mo share/locale/vi/LC_MESSAGES/okular_kimgio.mo share/locale/vi/LC_MESSAGES/okular_markdown.mo share/locale/vi/LC_MESSAGES/okular_mobi.mo share/locale/vi/LC_MESSAGES/okular_poppler.mo share/locale/vi/LC_MESSAGES/okular_tiff.mo share/locale/vi/LC_MESSAGES/okular_txt.mo share/locale/vi/LC_MESSAGES/okular_xps.mo share/locale/vi/LC_MESSAGES/org.kde.active.documentviewer.mo share/locale/wa/LC_MESSAGES/okular.mo share/locale/wa/LC_MESSAGES/okular_comicbook.mo share/locale/wa/LC_MESSAGES/okular_djvu.mo share/locale/wa/LC_MESSAGES/okular_epub.mo share/locale/wa/LC_MESSAGES/okular_fax.mo share/locale/wa/LC_MESSAGES/okular_fictionbook.mo share/locale/wa/LC_MESSAGES/okular_ghostview.mo share/locale/wa/LC_MESSAGES/okular_kimgio.mo share/locale/wa/LC_MESSAGES/okular_mobi.mo share/locale/wa/LC_MESSAGES/okular_poppler.mo share/locale/wa/LC_MESSAGES/okular_xps.mo share/locale/xh/LC_MESSAGES/okular.mo share/locale/zh_CN/LC_MESSAGES/okular.mo share/locale/zh_CN/LC_MESSAGES/okular_comicbook.mo share/locale/zh_CN/LC_MESSAGES/okular_djvu.mo share/locale/zh_CN/LC_MESSAGES/okular_dvi.mo share/locale/zh_CN/LC_MESSAGES/okular_epub.mo share/locale/zh_CN/LC_MESSAGES/okular_fax.mo share/locale/zh_CN/LC_MESSAGES/okular_fictionbook.mo share/locale/zh_CN/LC_MESSAGES/okular_ghostview.mo share/locale/zh_CN/LC_MESSAGES/okular_kimgio.mo share/locale/zh_CN/LC_MESSAGES/okular_markdown.mo share/locale/zh_CN/LC_MESSAGES/okular_mobi.mo share/locale/zh_CN/LC_MESSAGES/okular_poppler.mo share/locale/zh_CN/LC_MESSAGES/okular_tiff.mo share/locale/zh_CN/LC_MESSAGES/okular_txt.mo share/locale/zh_CN/LC_MESSAGES/okular_xps.mo share/locale/zh_CN/LC_MESSAGES/org.kde.active.documentviewer.mo share/locale/zh_HK/LC_MESSAGES/okular.mo share/locale/zh_TW/LC_MESSAGES/okular.mo share/locale/zh_TW/LC_MESSAGES/okular_comicbook.mo share/locale/zh_TW/LC_MESSAGES/okular_djvu.mo share/locale/zh_TW/LC_MESSAGES/okular_dvi.mo share/locale/zh_TW/LC_MESSAGES/okular_epub.mo share/locale/zh_TW/LC_MESSAGES/okular_fax.mo share/locale/zh_TW/LC_MESSAGES/okular_fictionbook.mo share/locale/zh_TW/LC_MESSAGES/okular_ghostview.mo share/locale/zh_TW/LC_MESSAGES/okular_kimgio.mo share/locale/zh_TW/LC_MESSAGES/okular_markdown.mo share/locale/zh_TW/LC_MESSAGES/okular_mobi.mo share/locale/zh_TW/LC_MESSAGES/okular_poppler.mo share/locale/zh_TW/LC_MESSAGES/okular_tiff.mo share/locale/zh_TW/LC_MESSAGES/okular_txt.mo share/locale/zh_TW/LC_MESSAGES/okular_xps.mo share/locale/zh_TW/LC_MESSAGES/org.kde.active.documentviewer.mo share/man/ca/man1/okular.1.gz share/man/de/man1/okular.1.gz share/man/es/man1/okular.1.gz share/man/et/man1/okular.1.gz share/man/fr/man1/okular.1.gz share/man/it/man1/okular.1.gz share/man/man1/okular.1.gz share/man/nl/man1/okular.1.gz share/man/pt/man1/okular.1.gz share/man/pt_BR/man1/okular.1.gz share/man/ru/man1/okular.1.gz share/man/sl/man1/okular.1.gz share/man/sv/man1/okular.1.gz share/man/tr/man1/okular.1.gz share/man/uk/man1/okular.1.gz share/metainfo/org.kde.okular-comicbook.metainfo.xml share/metainfo/org.kde.okular-djvu.metainfo.xml share/metainfo/org.kde.okular-dvi.metainfo.xml share/metainfo/org.kde.okular-epub.metainfo.xml share/metainfo/org.kde.okular-fax.metainfo.xml share/metainfo/org.kde.okular-fb.metainfo.xml share/metainfo/org.kde.okular-kimgio.metainfo.xml share/metainfo/org.kde.okular-md.metainfo.xml share/metainfo/org.kde.okular-mobipocket.metainfo.xml share/metainfo/org.kde.okular-poppler.metainfo.xml share/metainfo/org.kde.okular-spectre.metainfo.xml share/metainfo/org.kde.okular-tiff.metainfo.xml share/metainfo/org.kde.okular-txt.metainfo.xml share/metainfo/org.kde.okular-xps.metainfo.xml share/metainfo/org.kde.okular.appdata.xml %%DATADIR%%/drawingtools.xml %%DATADIR%%/icons/hicolor/16x16/apps/okular-fb2.png %%DATADIR%%/icons/hicolor/16x16/apps/okular-gv.png %%DATADIR%%/icons/hicolor/32x32/apps/okular-fb2.png %%DATADIR%%/icons/hicolor/32x32/apps/okular-gv.png %%DATADIR%%/icons/hicolor/48x48/apps/okular-fb2.png %%DATADIR%%/pics/checkmark.png %%DATADIR%%/pics/circle.png %%DATADIR%%/pics/comment.png %%DATADIR%%/pics/cross.png %%DATADIR%%/pics/help.png %%DATADIR%%/pics/insert.png %%DATADIR%%/pics/key.png %%DATADIR%%/pics/newparagraph.png %%DATADIR%%/pics/note.png %%DATADIR%%/pics/okular-epub-movie.png %%DATADIR%%/pics/okular-epub-sound-icon.png %%DATADIR%%/pics/paperclip.png %%DATADIR%%/pics/paragraph.png %%DATADIR%%/pics/pushpin.png %%DATADIR%%/pics/rightarrow.png %%DATADIR%%/pics/rightpointer.png %%DATADIR%%/pics/stamps.svg %%DATADIR%%/pics/star.png %%DATADIR%%/pics/tool-base-okular.png %%DATADIR%%/pics/tool-base-okular@2x.png %%DATADIR%%/pics/tool-highlighter-okular-colorizable.png %%DATADIR%%/pics/tool-highlighter-okular-colorizable@2x.png %%DATADIR%%/pics/tool-ink-okular-colorizable.png %%DATADIR%%/pics/tool-ink-okular-colorizable@2x.png %%DATADIR%%/pics/tool-note-inline-okular-colorizable.png %%DATADIR%%/pics/tool-note-inline-okular-colorizable@2x.png %%DATADIR%%/pics/tool-note-inline.png %%DATADIR%%/pics/tool-note-okular-colorizable.png %%DATADIR%%/pics/tool-note-okular-colorizable@2x.png %%DATADIR%%/pics/tool-note.png %%DATADIR%%/pics/tool-typewriter-okular-colorizable.png %%DATADIR%%/pics/tool-typewriter-okular-colorizable@2x.png %%DATADIR%%/pics/uparrow.png %%DATADIR%%/pics/upleftarrow.png %%DATADIR%%/tools.xml %%DATADIR%%/toolsQuick.xml share/qlogging-categories6/okular.categories diff --git a/graphics/skanlite/distinfo b/graphics/skanlite/distinfo index 0e77f07a9947..4cc92e96ad0d 100644 --- a/graphics/skanlite/distinfo +++ b/graphics/skanlite/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1734460223 -SHA256 (KDE/release-service/24.12.0/skanlite-24.12.0.tar.xz) = e4f9850fc9b9cecd04d695abe87cbf91a32b0ee58bf56ccdf13470727ab322e6 -SIZE (KDE/release-service/24.12.0/skanlite-24.12.0.tar.xz) = 2390876 +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 diff --git a/graphics/skanpage/distinfo b/graphics/skanpage/distinfo index 181cb8ddf1a3..3cf7a546e7f5 100644 --- a/graphics/skanpage/distinfo +++ b/graphics/skanpage/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1734460225 -SHA256 (KDE/release-service/24.12.0/skanpage-24.12.0.tar.xz) = 9fa176b2adfd6a1031f985ce727b7d44341c56e7933d06b0439c0fc76e9e3174 -SIZE (KDE/release-service/24.12.0/skanpage-24.12.0.tar.xz) = 1337600 +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 diff --git a/graphics/spectacle/distinfo b/graphics/spectacle/distinfo index 911805418ed9..6e438a7adc6b 100644 --- a/graphics/spectacle/distinfo +++ b/graphics/spectacle/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1734460226 -SHA256 (KDE/release-service/24.12.0/spectacle-24.12.0.tar.xz) = 091210b6b61aa725f808a0c0b70de164b8ac7ede52ca3f56a012191a2fcdf0e2 -SIZE (KDE/release-service/24.12.0/spectacle-24.12.0.tar.xz) = 1561540 +TIMESTAMP = 1738937190 +SHA256 (KDE/release-service/24.12.2/spectacle-24.12.2.tar.xz) = 7c91a5914a37bfc6a4eb34d968a60c8b2f286ba2ef1e3dce217b1295df66cd3f +SIZE (KDE/release-service/24.12.2/spectacle-24.12.2.tar.xz) = 1562304 diff --git a/irc/konversation/distinfo b/irc/konversation/distinfo index b71f7f9068f4..bc186e312ced 100644 --- a/irc/konversation/distinfo +++ b/irc/konversation/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1734460228 -SHA256 (KDE/release-service/24.12.0/konversation-24.12.0.tar.xz) = 1e8080a78372bc09e812c9278550763b8328f7aa78fcb3c93f04e492a5a3cd88 -SIZE (KDE/release-service/24.12.0/konversation-24.12.0.tar.xz) = 4415648 +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 diff --git a/japanese/kiten/distinfo b/japanese/kiten/distinfo index 08b0fd9a2e12..c175689d222d 100644 --- a/japanese/kiten/distinfo +++ b/japanese/kiten/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1734460230 -SHA256 (KDE/release-service/24.12.0/kiten-24.12.0.tar.xz) = 80e473382b9a1b18e62deebf44cbbb511a77bdb8ee2fbb05029a83540437a8ee -SIZE (KDE/release-service/24.12.0/kiten-24.12.0.tar.xz) = 11316240 +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 diff --git a/lang/kross-interpreters/distinfo b/lang/kross-interpreters/distinfo index d1f00fd0eb73..56da90e951a6 100644 --- a/lang/kross-interpreters/distinfo +++ b/lang/kross-interpreters/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1734460232 -SHA256 (KDE/release-service/24.12.0/kross-interpreters-24.12.0.tar.xz) = 1a2515cc79bf036cdf44281c1ae2e208d82da1869cae378f77ca82d7e9dc3529 -SIZE (KDE/release-service/24.12.0/kross-interpreters-24.12.0.tar.xz) = 151732 +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 diff --git a/lang/kturtle/distinfo b/lang/kturtle/distinfo index c8b11cb811a8..e049e1c13765 100644 --- a/lang/kturtle/distinfo +++ b/lang/kturtle/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1734460234 -SHA256 (KDE/release-service/24.12.0/kturtle-24.12.0.tar.xz) = e0c2310fbcd76bae4dd33e35773f1d7d55b97117e6bbf7887b5208800aa9474c -SIZE (KDE/release-service/24.12.0/kturtle-24.12.0.tar.xz) = 2096032 +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 diff --git a/math/analitza/distinfo b/math/analitza/distinfo index 126ca2988d19..a23e94481c74 100644 --- a/math/analitza/distinfo +++ b/math/analitza/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1734460235 -SHA256 (KDE/release-service/24.12.0/analitza-24.12.0.tar.xz) = 82b8ae9147cea0fde1c47f75338b499284e273cd2ae2a5902ba0366a7097a575 -SIZE (KDE/release-service/24.12.0/analitza-24.12.0.tar.xz) = 359960 +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 diff --git a/math/cantor/distinfo b/math/cantor/distinfo index 0f3a06307071..d329d917d17d 100644 --- a/math/cantor/distinfo +++ b/math/cantor/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1734460237 -SHA256 (KDE/release-service/24.12.0/cantor-24.12.0.tar.xz) = 3c327a33377e0cd6895936b438fb33a1cea274ba394b997fb0002a80d273f337 -SIZE (KDE/release-service/24.12.0/cantor-24.12.0.tar.xz) = 10869424 +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 diff --git a/math/kalgebra/distinfo b/math/kalgebra/distinfo index bc83d9af5374..ad25c205b368 100644 --- a/math/kalgebra/distinfo +++ b/math/kalgebra/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1734460239 -SHA256 (KDE/release-service/24.12.0/kalgebra-24.12.0.tar.xz) = a67ced988de126ed57531dc474a118d6b52d9d53918c5ca12627c5f7b02dd64a -SIZE (KDE/release-service/24.12.0/kalgebra-24.12.0.tar.xz) = 948732 +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 diff --git a/math/kalk/distinfo b/math/kalk/distinfo index dd43bf1b754f..7de5aebe893b 100644 --- a/math/kalk/distinfo +++ b/math/kalk/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1734460240 -SHA256 (KDE/release-service/24.12.0/kalk-24.12.0.tar.xz) = 98cd7960e05f4e10f92d076f7933db4ae46900bd1bea5807b3db941798e5ea94 -SIZE (KDE/release-service/24.12.0/kalk-24.12.0.tar.xz) = 77216 +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 diff --git a/math/kbruch/distinfo b/math/kbruch/distinfo index 3ad0213f55c8..59b4a8f6d094 100644 --- a/math/kbruch/distinfo +++ b/math/kbruch/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1734460242 -SHA256 (KDE/release-service/24.12.0/kbruch-24.12.0.tar.xz) = e063a8c9b48454e930d2d6e300e836959eba63abb6dc58900eadf66a2e1c8cbe -SIZE (KDE/release-service/24.12.0/kbruch-24.12.0.tar.xz) = 5157772 +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 diff --git a/math/kcalc/distinfo b/math/kcalc/distinfo index bba4c9cf8a6c..5bc09b76f27c 100644 --- a/math/kcalc/distinfo +++ b/math/kcalc/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1734460244 -SHA256 (KDE/release-service/24.12.0/kcalc-24.12.0.tar.xz) = 467ada64363dbba0434358f68bd8852b8417e7bfafc279b3e378f8a729c83b30 -SIZE (KDE/release-service/24.12.0/kcalc-24.12.0.tar.xz) = 470944 +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 diff --git a/math/kig/distinfo b/math/kig/distinfo index 7278bfd49414..d27e1b3705dd 100644 --- a/math/kig/distinfo +++ b/math/kig/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1734460246 -SHA256 (KDE/release-service/24.12.0/kig-24.12.0.tar.xz) = 99ec248a49c0c2a0e94020db6fa06f1fc9d2811b3a46b5fc3ddcca197abeb397 -SIZE (KDE/release-service/24.12.0/kig-24.12.0.tar.xz) = 3246700 +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 diff --git a/math/kmplot/distinfo b/math/kmplot/distinfo index 454e02d3e7d7..6146f0ff6e6e 100644 --- a/math/kmplot/distinfo +++ b/math/kmplot/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1734460247 -SHA256 (KDE/release-service/24.12.0/kmplot-24.12.0.tar.xz) = add2d9e6f0f19c7ff195a4d591b00dc75aaea934961b064a48a6d41c08918185 -SIZE (KDE/release-service/24.12.0/kmplot-24.12.0.tar.xz) = 3022248 +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 diff --git a/math/rocs/distinfo b/math/rocs/distinfo index f9a6a3c08de6..4daca78339bb 100644 --- a/math/rocs/distinfo +++ b/math/rocs/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1734460249 -SHA256 (KDE/release-service/24.12.0/rocs-24.12.0.tar.xz) = dcbb3fac20057ea3fc65bee3a54c5a7d90414c6234354c0e91814e29de4ebd7a -SIZE (KDE/release-service/24.12.0/rocs-24.12.0.tar.xz) = 1567436 +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 diff --git a/misc/artikulate/distinfo b/misc/artikulate/distinfo index efaa17104f7b..50194ecfd3eb 100644 --- a/misc/artikulate/distinfo +++ b/misc/artikulate/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1734460251 -SHA256 (KDE/release-service/24.12.0/artikulate-24.12.0.tar.xz) = dc0ecc629ea6009272d6ecda12d3ba64a126f4cf305de69505f825eb64715b1b -SIZE (KDE/release-service/24.12.0/artikulate-24.12.0.tar.xz) = 1054704 +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 diff --git a/misc/kdeedu-data/distinfo b/misc/kdeedu-data/distinfo index e4792bd21726..20dd601e33d5 100644 --- a/misc/kdeedu-data/distinfo +++ b/misc/kdeedu-data/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1734460252 -SHA256 (KDE/release-service/24.12.0/kdeedu-data-24.12.0.tar.xz) = 42fd4dacaa5d0f44b4c4d1c57c3e313d7bf3d1e3da6e31adb3acace67d249831 -SIZE (KDE/release-service/24.12.0/kdeedu-data-24.12.0.tar.xz) = 338808 +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 diff --git a/misc/kgeography/distinfo b/misc/kgeography/distinfo index ad6aae5d933b..f0f9a1b63713 100644 --- a/misc/kgeography/distinfo +++ b/misc/kgeography/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1734460254 -SHA256 (KDE/release-service/24.12.0/kgeography-24.12.0.tar.xz) = 965b94c0d462c298dfcde943e82854c9f5f0a5a9e5cd9b0969a089bd6f13e075 -SIZE (KDE/release-service/24.12.0/kgeography-24.12.0.tar.xz) = 12424768 +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 diff --git a/misc/klettres/distinfo b/misc/klettres/distinfo index 27c7bdcd90b2..f34efc6af611 100644 --- a/misc/klettres/distinfo +++ b/misc/klettres/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1734460257 -SHA256 (KDE/release-service/24.12.0/klettres-24.12.0.tar.xz) = 38092900746f6b0b9bf58357ef8609251bf674da2b97b150befe970c9fe71abb -SIZE (KDE/release-service/24.12.0/klettres-24.12.0.tar.xz) = 47185064 +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 diff --git a/misc/ktouch/distinfo b/misc/ktouch/distinfo index ba62a9db75da..ba40f7008473 100644 --- a/misc/ktouch/distinfo +++ b/misc/ktouch/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1734460259 -SHA256 (KDE/release-service/24.12.0/ktouch-24.12.0.tar.xz) = d571efbf4c86719cf81cb9a57ee08337e252aa224e243febe7424d206e2ddb79 -SIZE (KDE/release-service/24.12.0/ktouch-24.12.0.tar.xz) = 4786684 +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 diff --git a/misc/kwordquiz/distinfo b/misc/kwordquiz/distinfo index 56963f07f0ea..f56258f4efa7 100644 --- a/misc/kwordquiz/distinfo +++ b/misc/kwordquiz/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1734460261 -SHA256 (KDE/release-service/24.12.0/kwordquiz-24.12.0.tar.xz) = a668876d68aeafe6fe90d8742d76131687a522169321fc046598a69e1a70f48a -SIZE (KDE/release-service/24.12.0/kwordquiz-24.12.0.tar.xz) = 3777076 +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 diff --git a/misc/libkeduvocdocument/distinfo b/misc/libkeduvocdocument/distinfo index 89dc1a7b9b35..1799aaf069d2 100644 --- a/misc/libkeduvocdocument/distinfo +++ b/misc/libkeduvocdocument/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1734460263 -SHA256 (KDE/release-service/24.12.0/libkeduvocdocument-24.12.0.tar.xz) = f855eac0ab1fa3caf1777484ef21ea0e66ff640e5a98f7ded29a82d02aa2e16c -SIZE (KDE/release-service/24.12.0/libkeduvocdocument-24.12.0.tar.xz) = 228488 +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 diff --git a/misc/parley/distinfo b/misc/parley/distinfo index d9a4ed6d33b3..1b50fc74fde3 100644 --- a/misc/parley/distinfo +++ b/misc/parley/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1734460264 -SHA256 (KDE/release-service/24.12.0/parley-24.12.0.tar.xz) = 9dda0372f868f70daf36343fbea458c98f37effbda9728a7a066f9d26139b67f -SIZE (KDE/release-service/24.12.0/parley-24.12.0.tar.xz) = 8434548 +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 diff --git a/multimedia/dragon/distinfo b/multimedia/dragon/distinfo index 2135fd75c63f..f0c4526faf4d 100644 --- a/multimedia/dragon/distinfo +++ b/multimedia/dragon/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1734460266 -SHA256 (KDE/release-service/24.12.0/dragon-24.12.0.tar.xz) = 1d87f71f6948ee83ef0ab711dee33397e38e6c42ce942d2404a7a13885a00309 -SIZE (KDE/release-service/24.12.0/dragon-24.12.0.tar.xz) = 1830472 +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 diff --git a/multimedia/kamoso/distinfo b/multimedia/kamoso/distinfo index 405244e5996f..be0e77aaf35b 100644 --- a/multimedia/kamoso/distinfo +++ b/multimedia/kamoso/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1734460268 -SHA256 (KDE/release-service/24.12.0/kamoso-24.12.0.tar.xz) = 190f6d697da713960a86d655bdd3ee78f28c658746855ce3f2c951b29b820a23 -SIZE (KDE/release-service/24.12.0/kamoso-24.12.0.tar.xz) = 234548 +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 diff --git a/multimedia/kasts/distinfo b/multimedia/kasts/distinfo index 01dd0f481a51..325dfb68e6b4 100644 --- a/multimedia/kasts/distinfo +++ b/multimedia/kasts/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1734460269 -SHA256 (KDE/release-service/24.12.0/kasts-24.12.0.tar.xz) = 48668ee817c68166795f89ec5d51132ee88aeb3d66da1abba1b56f86ed7511a6 -SIZE (KDE/release-service/24.12.0/kasts-24.12.0.tar.xz) = 625720 +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 diff --git a/multimedia/kdemultimedia-ffmpegthumbs/distinfo b/multimedia/kdemultimedia-ffmpegthumbs/distinfo index 5c386190221a..c4c708fb5128 100644 --- a/multimedia/kdemultimedia-ffmpegthumbs/distinfo +++ b/multimedia/kdemultimedia-ffmpegthumbs/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1734460271 -SHA256 (KDE/release-service/24.12.0/ffmpegthumbs-24.12.0.tar.xz) = 15c7befdf7343a0a0e0320913a7314a2a4c22be47488dd1e5a0948218089d4d0 -SIZE (KDE/release-service/24.12.0/ffmpegthumbs-24.12.0.tar.xz) = 33176 +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 diff --git a/multimedia/kdenlive/Makefile b/multimedia/kdenlive/Makefile index a85d10d50750..a79311345bdc 100644 --- a/multimedia/kdenlive/Makefile +++ b/multimedia/kdenlive/Makefile @@ -1,70 +1,69 @@ PORTNAME= kdenlive DISTVERSION= ${KDE_APPLICATIONS_VERSION} -PORTREVISION= 1 CATEGORIES= multimedia kde kde-applications MAINTAINER= kde@FreeBSD.org COMMENT= KDE professional quality non-linear video editing suite WWW= https://www.kdenlive.org LICENSE= GPLv2 LIB_DEPENDS= librttr_core.so:devel/rttr BUILD_DEPENDS= ${LOCALBASE}/include/linux/input.h:devel/evdev-proto \ ${LOCALBASE}/include/linux/videodev2.h:multimedia/v4l_compat \ ${LOCALBASE}/lib/mlt-7/libmltglaxnimate-qt6.so:multimedia/mlt7-glaxnimate@qt6 RUN_DEPENDS= ffmpeg${FFMPEG_SUFX}:multimedia/ffmpeg${FFMPEG_SUFX} \ ${LOCALBASE}/lib/mlt-7/libmltqt6.so:multimedia/mlt7-qt@qt6 \ ${LOCALBASE}/lib/mlt-7/libmltglaxnimate-qt6.so:multimedia/mlt7-glaxnimate@qt6 USES= cmake compiler:c++11-lang desktop-file-utils gettext-tools gl \ kde:6 mlt:7 pkgconfig qt:6 shared-mime-info tar:xz xorg USE_GL= gl glu USE_KDE= archive attica auth bookmarks codecs completion config \ configwidgets coreaddons crash dbusaddons filemetadata \ guiaddons i18n iconthemes itemviews jobwidgets kdeclarative \ kio newstuff notifications notifyconfig package service solid \ sonnet textwidgets widgetsaddons windowsystem xmlgui \ qqc2-desktop-style:run \ ecm:build USE_QT= base networkauth USE_XORG= x11 CFLAGS+= -isystem${LOCALBASE}/include # linux/input.h CMAKE_ARGS= -DFFMPEG_SUFFIX:STRING="${FFMPEG_SUFX}" # Keep in sync with multimedia/mlt, possibly. FFMPEG_SUFX= # Currently empty. OPTIONS_DEFINE= DVDWIZARD FILESHARE FREI0R LADSPA SCREENCAST V4L XINE DOCS OPTIONS_DEFAULT=DVDWIZARD FILESHARE FREI0R LADSPA SCREENCAST V4L OPTIONS_SUB= yes DVDWIZARD_DESC= DVD authoring via DVDAuthor and cdrtools FILESHARE_DESC= Common KF6 filesharing support SCREENCAST_DESC=Screen capture support via recordMyDesktop V4L_DESC= Webcam support via Video4Linux XINE_DESC= DVD preview support via xine DVDWIZARD_RUN_DEPENDS= dvdauthor:multimedia/dvdauthor \ cdrecord:sysutils/cdrtools FILESHARE_USE= KDE=purpose FILESHARE_CMAKE_BOOL_OFF= CMAKE_DISABLE_FIND_PACKAGE_KF6Purpose FREI0R_RUN_DEPENDS= frei0r-plugins>=0:graphics/frei0r-plugins LADSPA_RUN_DEPENDS= swhplugins>=0:audio/swhplugins SCREENCAST_RUN_DEPENDS= recordmydesktop:multimedia/recordmydesktop V4L_LIB_DEPENDS= libv4l2.so:multimedia/libv4l V4L_CMAKE_OFF= -DWITH_LibV4L2:BOOL=FALSE XINE_RUN_DEPENDS= xine:multimedia/xine post-patch: @${REINPLACE_CMD} -e '/^update_xdg_mimetypes/ d' \ -e '/SharedMimeInfo/ d' \ ${PATCH_WRKSRC}/data/CMakeLists.txt .include diff --git a/multimedia/kdenlive/distinfo b/multimedia/kdenlive/distinfo index fab2a8be79d5..5d06f11f03b3 100644 --- a/multimedia/kdenlive/distinfo +++ b/multimedia/kdenlive/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1734460274 -SHA256 (KDE/release-service/24.12.0/kdenlive-24.12.0.tar.xz) = c61d034dce9c25a9d2f9e7acff990b7ba46f664d1f972acfaba3a84de1c2288a -SIZE (KDE/release-service/24.12.0/kdenlive-24.12.0.tar.xz) = 13127724 +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 diff --git a/multimedia/plasmatube/distinfo b/multimedia/plasmatube/distinfo index 2f8572d3b05e..85e1b7911403 100644 --- a/multimedia/plasmatube/distinfo +++ b/multimedia/plasmatube/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1734460276 -SHA256 (KDE/release-service/24.12.0/plasmatube-24.12.0.tar.xz) = 36654d2b6ec1b8ce282253fa78569dacf7d918919f965bd959bf5924a08b748e -SIZE (KDE/release-service/24.12.0/plasmatube-24.12.0.tar.xz) = 216180 +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 diff --git a/net-im/kaccounts-integration/distinfo b/net-im/kaccounts-integration/distinfo index 11660c781a81..0773cdb536b4 100644 --- a/net-im/kaccounts-integration/distinfo +++ b/net-im/kaccounts-integration/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1734460277 -SHA256 (KDE/release-service/24.12.0/kaccounts-integration-24.12.0.tar.xz) = 04e8a00bdd4539027497edcabc4d7c21932ab00f43a51b1184365735f8d3b433 -SIZE (KDE/release-service/24.12.0/kaccounts-integration-24.12.0.tar.xz) = 93484 +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 diff --git a/net-im/kaccounts-providers/distinfo b/net-im/kaccounts-providers/distinfo index 632b07d1e03a..745102f5f4ea 100644 --- a/net-im/kaccounts-providers/distinfo +++ b/net-im/kaccounts-providers/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1734460279 -SHA256 (KDE/release-service/24.12.0/kaccounts-providers-24.12.0.tar.xz) = 1ea284d24c34c18af5aeb21fd849a9cd7a23ff945490e0724be17ec267be790a -SIZE (KDE/release-service/24.12.0/kaccounts-providers-24.12.0.tar.xz) = 68876 +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 diff --git a/net-im/neochat/Makefile b/net-im/neochat/Makefile index 840c8cdc645a..9136c42d663e 100644 --- a/net-im/neochat/Makefile +++ b/net-im/neochat/Makefile @@ -1,42 +1,41 @@ PORTNAME= neochat DISTVERSION= ${KDE_APPLICATIONS_VERSION} -PORTREVISION= 2 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@qt6 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@qt6 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 26241ed7b76e..ba79b22da078 100644 --- a/net-im/neochat/distinfo +++ b/net-im/neochat/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1734460281 -SHA256 (KDE/release-service/24.12.0/neochat-24.12.0.tar.xz) = c88f8292575b7298cad7f426dec26aef33cd3da6dd1be65484436507b461eeb6 -SIZE (KDE/release-service/24.12.0/neochat-24.12.0.tar.xz) = 1063468 +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 diff --git a/net-im/neochat/files/patch-src_chatbarcache.cpp b/net-im/neochat/files/patch-src_chatbarcache.cpp deleted file mode 100644 index e6ff72013abb..000000000000 --- a/net-im/neochat/files/patch-src_chatbarcache.cpp +++ /dev/null @@ -1,18 +0,0 @@ -From 9cd4a7416e0485917334c9448ce09c1800dca2ed Mon Sep 17 00:00:00 2001 -From: Tobias Fella -Date: Tue, 10 Dec 2024 21:05:01 +0100 -Subject: [PATCH] Fix crash when sending messages - -ECM recently started adding -fhardened, which makes us crash here since we're doing things that aren't valid, but happened to work out fine previously. ---- src/chatbarcache.cpp.orig 2024-12-04 20:04:56 UTC -+++ src/chatbarcache.cpp -@@ -319,7 +319,8 @@ void ChatBarCache::postMessage() - return; - } - -- room->postMessage(text(), sendText, *std::get>(result), replyId(), editId(), threadId()); -+ const auto type = std::get>(result); -+ room->postMessage(text(), sendText, type ? *type : Quotient::RoomMessageEvent::MsgType::Text, replyId(), editId(), threadId()); - clearCache(); - } - diff --git a/net-im/tokodon/distinfo b/net-im/tokodon/distinfo index 915133acf08b..aaebb0ec387d 100644 --- a/net-im/tokodon/distinfo +++ b/net-im/tokodon/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1734460282 -SHA256 (KDE/release-service/24.12.0/tokodon-24.12.0.tar.xz) = debc060f1c8573d5b937ada1ca043290bb37f58f420ef4a9c8327683e21fa537 -SIZE (KDE/release-service/24.12.0/tokodon-24.12.0.tar.xz) = 654968 +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 diff --git a/net-p2p/ktorrent/distinfo b/net-p2p/ktorrent/distinfo index eefe93f997a5..ff77926e22fb 100644 --- a/net-p2p/ktorrent/distinfo +++ b/net-p2p/ktorrent/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1734460284 -SHA256 (KDE/release-service/24.12.0/ktorrent-24.12.0.tar.xz) = 1f61a7ad19eacb0bc7ddf5d060c1dfde76db65e7bdbc24a7a41a78f901982993 -SIZE (KDE/release-service/24.12.0/ktorrent-24.12.0.tar.xz) = 2189328 +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 diff --git a/net-p2p/libktorrent/distinfo b/net-p2p/libktorrent/distinfo index 715dda125b72..34f80146a032 100644 --- a/net-p2p/libktorrent/distinfo +++ b/net-p2p/libktorrent/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1734460285 -SHA256 (KDE/release-service/24.12.0/libktorrent-24.12.0.tar.xz) = 8d45ebceb9004b2905d015383e5c0cda2a15d869527f3bb010f3a837d4f32f51 -SIZE (KDE/release-service/24.12.0/libktorrent-24.12.0.tar.xz) = 604588 +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 diff --git a/net/akonadi-calendar/distinfo b/net/akonadi-calendar/distinfo index 41d43b0372da..6f590ed591f0 100644 --- a/net/akonadi-calendar/distinfo +++ b/net/akonadi-calendar/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1734460287 -SHA256 (KDE/release-service/24.12.0/akonadi-calendar-24.12.0.tar.xz) = dfa4d60162bc3672ff3a76745f727e87b7a5e089be6b79f399b0df23970eba69 -SIZE (KDE/release-service/24.12.0/akonadi-calendar-24.12.0.tar.xz) = 524592 +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 diff --git a/net/akonadi-contacts/distinfo b/net/akonadi-contacts/distinfo index a55e59569f3a..1430fd09e253 100644 --- a/net/akonadi-contacts/distinfo +++ b/net/akonadi-contacts/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1734460289 -SHA256 (KDE/release-service/24.12.0/akonadi-contacts-24.12.0.tar.xz) = 00f2c765ebeb8c472f20937daff3654e1d755b015f0dbd1af9817920c47f81c9 -SIZE (KDE/release-service/24.12.0/akonadi-contacts-24.12.0.tar.xz) = 436684 +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 diff --git a/net/akonadi-mime/distinfo b/net/akonadi-mime/distinfo index b0e9caeab58c..4e7d48189f05 100644 --- a/net/akonadi-mime/distinfo +++ b/net/akonadi-mime/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1734460291 -SHA256 (KDE/release-service/24.12.0/akonadi-mime-24.12.0.tar.xz) = a4357769d6aeedb15b35665b3b581b60b9cdd5b298e142d3a0b9d318d6b4d0c9 -SIZE (KDE/release-service/24.12.0/akonadi-mime-24.12.0.tar.xz) = 175360 +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 diff --git a/net/akonadi-search/distinfo b/net/akonadi-search/distinfo index 25204292dc28..51aee9a6fc58 100644 --- a/net/akonadi-search/distinfo +++ b/net/akonadi-search/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1734460294 -SHA256 (KDE/release-service/24.12.0/akonadi-search-24.12.0.tar.xz) = 145eb9b1c7f323ceb62817b48a9a3a07fa26d27e3d93a421d6767717bc157fa4 -SIZE (KDE/release-service/24.12.0/akonadi-search-24.12.0.tar.xz) = 113184 +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 diff --git a/net/alligator/distinfo b/net/alligator/distinfo index 2bda89009890..47332b0b0046 100644 --- a/net/alligator/distinfo +++ b/net/alligator/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1734460295 -SHA256 (KDE/release-service/24.12.0/alligator-24.12.0.tar.xz) = b2a703220f0c41612e2b9a7bba1fa22157859b63c9ca55bc619965c341c75e24 -SIZE (KDE/release-service/24.12.0/alligator-24.12.0.tar.xz) = 196428 +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 diff --git a/net/calendarsupport/distinfo b/net/calendarsupport/distinfo index c4178334e141..020827f90978 100644 --- a/net/calendarsupport/distinfo +++ b/net/calendarsupport/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1734460297 -SHA256 (KDE/release-service/24.12.0/calendarsupport-24.12.0.tar.xz) = 2920105c0d48067ed8bd32bfd126e7868a9bdd31ab9c9e96ad002f0a366cf21e -SIZE (KDE/release-service/24.12.0/calendarsupport-24.12.0.tar.xz) = 997704 +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 diff --git a/net/eventviews/distinfo b/net/eventviews/distinfo index e56894f2e2de..7e0d63c311a2 100644 --- a/net/eventviews/distinfo +++ b/net/eventviews/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1734460299 -SHA256 (KDE/release-service/24.12.0/eventviews-24.12.0.tar.xz) = b8e9d473836cbb401fac0e1c41e01016b4853a6323530237113e3fece4403089 -SIZE (KDE/release-service/24.12.0/eventviews-24.12.0.tar.xz) = 497620 +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 diff --git a/net/incidenceeditor/Makefile b/net/incidenceeditor/Makefile index d970725b6116..f30c5fc015f4 100644 --- a/net/incidenceeditor/Makefile +++ b/net/incidenceeditor/Makefile @@ -1,31 +1,30 @@ PORTNAME= incidenceeditor DISTVERSION= ${KDE_APPLICATIONS_VERSION} -PORTREVISION= 1 CATEGORIES= net kde kde-applications MAINTAINER= kde@FreeBSD.org COMMENT= Incidence editor libraries for KDEPim WWW= https://github.com/KDE/mailcommon LICENSE= LGPL21 BUILD_DEPENDS= ${LOCALBASE}/include/boost/range/algorithm.hpp:devel/boost-libs LIB_DEPENDS= libKChart6.so:graphics/kdiagram-qt6 USES= cmake compiler:c++11-lib gettext kde:6 qt:6 tar:xz xorg USE_KDE= auth codecs completion config configwidgets coreaddons i18n \ iconthemes itemmodels jobwidgets kio service solid sonnet \ textwidgets wallet widgetsaddons windowsystem xmlgui \ ecm:build # pim components USE_KDE+= akonadi akonadicalendar akonadicontacts akonadimime \ calendarcore calendarsupport calendarutils contacts eventviews \ grantleetheme identitymanagement imap ldap libkdepim \ mailtransport mime pimcommon pimtextedit USE_QT= base USE_XORG= x11 USE_LDCONFIG= yes OPTIONS_DEFINE= DOCS .include diff --git a/net/incidenceeditor/distinfo b/net/incidenceeditor/distinfo index e0a575b8424c..2899edd54bdc 100644 --- a/net/incidenceeditor/distinfo +++ b/net/incidenceeditor/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1734460300 -SHA256 (KDE/release-service/24.12.0/incidenceeditor-24.12.0.tar.xz) = 38aa0bdef8407f23faec133e7e91e6044e4e61b5437450a0c4b5b6ebf90fef1d -SIZE (KDE/release-service/24.12.0/incidenceeditor-24.12.0.tar.xz) = 587748 +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 diff --git a/net/kcalutils/distinfo b/net/kcalutils/distinfo index 4b219557c423..fbbd63c7a529 100644 --- a/net/kcalutils/distinfo +++ b/net/kcalutils/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1734460302 -SHA256 (KDE/release-service/24.12.0/kcalutils-24.12.0.tar.xz) = 9cef8de0d5e936ee7242831a86fdb9a4a9aa4ba56011ff015047c8e0b4bb71d5 -SIZE (KDE/release-service/24.12.0/kcalutils-24.12.0.tar.xz) = 355396 +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 diff --git a/net/kdenetwork-filesharing/distinfo b/net/kdenetwork-filesharing/distinfo index 42a672c576bc..01d9c3c92284 100644 --- a/net/kdenetwork-filesharing/distinfo +++ b/net/kdenetwork-filesharing/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1734460304 -SHA256 (KDE/release-service/24.12.0/kdenetwork-filesharing-24.12.0.tar.xz) = 429e1fb15e988011bf8b91a59657585dfb1f95606e4f75f7300c3cbfa8372906 -SIZE (KDE/release-service/24.12.0/kdenetwork-filesharing-24.12.0.tar.xz) = 500780 +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 diff --git a/net/kget/distinfo b/net/kget/distinfo index 69661eb75e1f..ed0b03eec3d7 100644 --- a/net/kget/distinfo +++ b/net/kget/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1734460306 -SHA256 (KDE/release-service/24.12.0/kget-24.12.0.tar.xz) = 55bd0f3ec4f28e47ccc6ec35350bfff6776f284e66aac265ccf8853e9bae54f2 -SIZE (KDE/release-service/24.12.0/kget-24.12.0.tar.xz) = 4913388 +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 diff --git a/net/kidentitymanagement/distinfo b/net/kidentitymanagement/distinfo index 26d07dde9256..0e0337b8390b 100644 --- a/net/kidentitymanagement/distinfo +++ b/net/kidentitymanagement/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1734460307 -SHA256 (KDE/release-service/24.12.0/kidentitymanagement-24.12.0.tar.xz) = 7bd3add4cdf1b0c8a99af076e4c98a41fb937375b909518d930a451a192b9217 -SIZE (KDE/release-service/24.12.0/kidentitymanagement-24.12.0.tar.xz) = 196792 +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 diff --git a/net/kimap/distinfo b/net/kimap/distinfo index 035196929c1e..a2abe71e874f 100644 --- a/net/kimap/distinfo +++ b/net/kimap/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1734460309 -SHA256 (KDE/release-service/24.12.0/kimap-24.12.0.tar.xz) = e7c0f4eb3924ecf4c54ca58cfbb51a7dd4b0ea9870f9613075d07cbc05398a9d -SIZE (KDE/release-service/24.12.0/kimap-24.12.0.tar.xz) = 132396 +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 diff --git a/net/kio-gdrive/distinfo b/net/kio-gdrive/distinfo index 5da68a535673..c7c0cd932b17 100644 --- a/net/kio-gdrive/distinfo +++ b/net/kio-gdrive/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1734460310 -SHA256 (KDE/release-service/24.12.0/kio-gdrive-24.12.0.tar.xz) = e68855748ca1b3747d9b5848f899490d4bcd9564dd47d77a613f93e45458f475 -SIZE (KDE/release-service/24.12.0/kio-gdrive-24.12.0.tar.xz) = 80120 +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 diff --git a/net/kio-zeroconf/distinfo b/net/kio-zeroconf/distinfo index 0b9bd3521720..29f0f9580aef 100644 --- a/net/kio-zeroconf/distinfo +++ b/net/kio-zeroconf/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1734460312 -SHA256 (KDE/release-service/24.12.0/kio-zeroconf-24.12.0.tar.xz) = 20879ad3f7fb6f1cbee8274dea6860b474566f9ba629ae8499179e71b2f1a436 -SIZE (KDE/release-service/24.12.0/kio-zeroconf-24.12.0.tar.xz) = 44888 +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 diff --git a/net/kitinerary/distinfo b/net/kitinerary/distinfo index 11967dfd048a..b9a02c1fae56 100644 --- a/net/kitinerary/distinfo +++ b/net/kitinerary/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1734460314 -SHA256 (KDE/release-service/24.12.0/kitinerary-24.12.0.tar.xz) = 4c11339a5bce980bd061a4437a943200fae82e104bd8472f3b2f7dc36f82b5c7 -SIZE (KDE/release-service/24.12.0/kitinerary-24.12.0.tar.xz) = 2004820 +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 diff --git a/net/kldap/distinfo b/net/kldap/distinfo index 9c8492a3bf31..19443a04e9d4 100644 --- a/net/kldap/distinfo +++ b/net/kldap/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1734460316 -SHA256 (KDE/release-service/24.12.0/kldap-24.12.0.tar.xz) = 79c0119eac21c42d7f16eb021ca7a9706c29b2606eb613880965da9ab7f9ab91 -SIZE (KDE/release-service/24.12.0/kldap-24.12.0.tar.xz) = 190344 +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 diff --git a/net/kmailtransport/distinfo b/net/kmailtransport/distinfo index 462d42247dfc..8699dd727d24 100644 --- a/net/kmailtransport/distinfo +++ b/net/kmailtransport/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1734460318 -SHA256 (KDE/release-service/24.12.0/kmailtransport-24.12.0.tar.xz) = 7f542a37b45b852ccfefbdc9aa39006dfe00bcd66dac386b98da9482c9691846 -SIZE (KDE/release-service/24.12.0/kmailtransport-24.12.0.tar.xz) = 189076 +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 diff --git a/net/kmbox/distinfo b/net/kmbox/distinfo index 5dabf776ad0e..c502a51c57ee 100644 --- a/net/kmbox/distinfo +++ b/net/kmbox/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1734460319 -SHA256 (KDE/release-service/24.12.0/kmbox-24.12.0.tar.xz) = 246bf77b9c1f9de0de2572069e541157e65e11c39167fabd46c914eb31f9ce71 -SIZE (KDE/release-service/24.12.0/kmbox-24.12.0.tar.xz) = 29248 +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 diff --git a/net/kmime/distinfo b/net/kmime/distinfo index c238eaef9602..f9288c958ec4 100644 --- a/net/kmime/distinfo +++ b/net/kmime/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1734460322 -SHA256 (KDE/release-service/24.12.0/kmime-24.12.0.tar.xz) = 9f26b5f96e46e4f81792782b08d748e2ce681b299674242d49bd329ebb9704cf -SIZE (KDE/release-service/24.12.0/kmime-24.12.0.tar.xz) = 164956 +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 diff --git a/net/kontactinterface/distinfo b/net/kontactinterface/distinfo index 89b683daa2b7..ae66e597a061 100644 --- a/net/kontactinterface/distinfo +++ b/net/kontactinterface/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1734460323 -SHA256 (KDE/release-service/24.12.0/kontactinterface-24.12.0.tar.xz) = ba2402d6083c420fbc31fcc7a3a7f4c57ee21eb137fbffbca927d20bd83799b8 -SIZE (KDE/release-service/24.12.0/kontactinterface-24.12.0.tar.xz) = 40736 +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 diff --git a/net/kpimtextedit/distinfo b/net/kpimtextedit/distinfo index f461e9e9b705..e8b4f478fc30 100644 --- a/net/kpimtextedit/distinfo +++ b/net/kpimtextedit/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1734460325 -SHA256 (KDE/release-service/24.12.0/kpimtextedit-24.12.0.tar.xz) = 3ff865a6319af3017ef07bffed6bcd39be026c9552214aead9021ad972ef7f55 -SIZE (KDE/release-service/24.12.0/kpimtextedit-24.12.0.tar.xz) = 176660 +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 diff --git a/net/krdc/Makefile b/net/krdc/Makefile index b7b35e4cf36a..8fa34245189e 100644 --- a/net/krdc/Makefile +++ b/net/krdc/Makefile @@ -1,39 +1,38 @@ PORTNAME= krdc DISTVERSION= ${KDE_APPLICATIONS_VERSION} -PORTREVISION= 1 CATEGORIES= net kde kde-applications MAINTAINER= kde@FreeBSD.org COMMENT= RDP and VNC client for KDE WWW= https://kde.org/applications/internet/krdc/ LIB_DEPENDS= libvncclient.so:net/libvncserver \ libxkbcommon.so:x11/libxkbcommon \ libwayland-client.so:graphics/wayland \ libwayland-cursor.so:graphics/wayland \ libssh.so:security/libssh USES= cmake compiler:c++11-lang desktop-file-utils gettext gl kde:6 \ pkgconfig qt:6 shared-mime-info tar:xz xorg USE_GL= opengl USE_KDE= activities bookmarks colorscheme completion config \ configwidgets coreaddons crash dnssd doctools i18n iconthemes \ jobwidgets kcmutils kio notifications notifyconfig service \ solid statusnotifieritem wallet widgetsaddons windowsystem \ xmlgui ecm:build USE_QT= base declarative wayland USE_XORG= x11 USE_LDCONFIG= yes CMAKE_ON= WITH_VNC OPTIONS_DEFINE= FREERDP DOCS OPTIONS_DEFAULT= FREERDP OPTIONS_SUB= yes FREERDP_DESC= Remote Desktop support via FreeRDP FREERDP_LIB_DEPENDS= libfreerdp2.so:net/freerdp \ libfreerdp-client2.so:net/freerdp \ libwinpr2.so:net/freerdp FREERDP_CMAKE_BOOL= WITH_RDP .include diff --git a/net/krdc/distinfo b/net/krdc/distinfo index cbc4b5ee8961..3064f3fc3bcf 100644 --- a/net/krdc/distinfo +++ b/net/krdc/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1736948829 -SHA256 (KDE/release-service/24.12.0/krdc-24.12.0.tar.xz) = 7174604a50134bb23bda77e904986b170f9e35e41d83ce22ea2457608290c296 -SIZE (KDE/release-service/24.12.0/krdc-24.12.0.tar.xz) = 1558292 +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 diff --git a/net/krfb/distinfo b/net/krfb/distinfo index 4430f3270b16..8c4b407b5b1b 100644 --- a/net/krfb/distinfo +++ b/net/krfb/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1737042912 -SHA256 (KDE/release-service/24.12.0/krfb-24.12.0.tar.xz) = 55917eb513fdc4cd745c4fb0b6d8e7dcfcf388e54c6d5ea52aebc88dba6d49f4 -SIZE (KDE/release-service/24.12.0/krfb-24.12.0.tar.xz) = 1217900 +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 diff --git a/net/ksmtp/distinfo b/net/ksmtp/distinfo index 7a1904e23ceb..90ed09f8d618 100644 --- a/net/ksmtp/distinfo +++ b/net/ksmtp/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1734460327 -SHA256 (KDE/release-service/24.12.0/ksmtp-24.12.0.tar.xz) = 7fb9496edd57199b2aeba3efa8e7a584e8093a67a91c114313460efc788c4570 -SIZE (KDE/release-service/24.12.0/ksmtp-24.12.0.tar.xz) = 53216 +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 diff --git a/net/ktnef/distinfo b/net/ktnef/distinfo index 94fc653c6b94..383ffbc12fb2 100644 --- a/net/ktnef/distinfo +++ b/net/ktnef/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1734460328 -SHA256 (KDE/release-service/24.12.0/ktnef-24.12.0.tar.xz) = 0a7677d2acf7e25f5199e1acd9a3422370eff9a309ddd27740657768cbdd0660 -SIZE (KDE/release-service/24.12.0/ktnef-24.12.0.tar.xz) = 313476 +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 diff --git a/net/libgravatar/distinfo b/net/libgravatar/distinfo index aa3de9aa6982..8f09ab449b7f 100644 --- a/net/libgravatar/distinfo +++ b/net/libgravatar/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1734460330 -SHA256 (KDE/release-service/24.12.0/libgravatar-24.12.0.tar.xz) = ed50ed375e435b23f90e8a9d639d6ad55a74df6800559d538cae16ec385a3d6c -SIZE (KDE/release-service/24.12.0/libgravatar-24.12.0.tar.xz) = 38628 +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 diff --git a/net/libkgapi/distinfo b/net/libkgapi/distinfo index c77e93dacdf3..fbfbb9a192f9 100644 --- a/net/libkgapi/distinfo +++ b/net/libkgapi/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1734460332 -SHA256 (KDE/release-service/24.12.0/libkgapi-24.12.0.tar.xz) = 3ed3e2370cddbc6af483041ffc5402f1665fae0a42e718c38377924a43d42dd6 -SIZE (KDE/release-service/24.12.0/libkgapi-24.12.0.tar.xz) = 339456 +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 diff --git a/net/libksieve/distinfo b/net/libksieve/distinfo index 9aebb77eabf7..7c3f035fda7a 100644 --- a/net/libksieve/distinfo +++ b/net/libksieve/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1734460333 -SHA256 (KDE/release-service/24.12.0/libksieve-24.12.0.tar.xz) = c48699eaafe04d09a0acd134e8c3d10f3db8ef3a017923923499b25d12035272 -SIZE (KDE/release-service/24.12.0/libksieve-24.12.0.tar.xz) = 603588 +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 diff --git a/net/mailcommon/distinfo b/net/mailcommon/distinfo index 6908b57e432f..4c189d5cc2dd 100644 --- a/net/mailcommon/distinfo +++ b/net/mailcommon/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1734460335 -SHA256 (KDE/release-service/24.12.0/mailcommon-24.12.0.tar.xz) = 409e8fc2188392e9ae1452d443eed33ec3fbc017aba7e7e0ae02dd0758cf1e1d -SIZE (KDE/release-service/24.12.0/mailcommon-24.12.0.tar.xz) = 789620 +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 diff --git a/net/mailimporter/distinfo b/net/mailimporter/distinfo index d990199f1171..9cd8f724dd8f 100644 --- a/net/mailimporter/distinfo +++ b/net/mailimporter/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1734460337 -SHA256 (KDE/release-service/24.12.0/mailimporter-24.12.0.tar.xz) = 98ef8275a3ebbd2a23daeb8611de6eb771c8f650d230ca37176f18c30f001993 -SIZE (KDE/release-service/24.12.0/mailimporter-24.12.0.tar.xz) = 596632 +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 diff --git a/net/messagelib/distinfo b/net/messagelib/distinfo index e370153ec598..fdeac2997291 100644 --- a/net/messagelib/distinfo +++ b/net/messagelib/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1734460339 -SHA256 (KDE/release-service/24.12.0/messagelib-24.12.0.tar.xz) = 9eff795b5e12d30ba33171442de3a3bd66772039f19214e55384e9596fc82ff6 -SIZE (KDE/release-service/24.12.0/messagelib-24.12.0.tar.xz) = 7418952 +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 diff --git a/net/messagelib/pkg-plist b/net/messagelib/pkg-plist index 658c61dbeb1f..c6e45178657e 100644 --- a/net/messagelib/pkg-plist +++ b/net/messagelib/pkg-plist @@ -1,1054 +1,1056 @@ include/KPim6/MessageComposer/MessageComposer/AbstractEncryptJob include/KPim6/MessageComposer/MessageComposer/AkonadiSender include/KPim6/MessageComposer/MessageComposer/AliasesExpandJob include/KPim6/MessageComposer/MessageComposer/AttachmentClipBoardJob include/KPim6/MessageComposer/MessageComposer/AttachmentControllerBase include/KPim6/MessageComposer/MessageComposer/AttachmentFromPublicKeyJob include/KPim6/MessageComposer/MessageComposer/AttachmentJob include/KPim6/MessageComposer/MessageComposer/AttachmentModel include/KPim6/MessageComposer/MessageComposer/AttachmentVcardFromAddressBookJob include/KPim6/MessageComposer/MessageComposer/AutocryptHeadersJob include/KPim6/MessageComposer/MessageComposer/AutocryptKeyResolverCore include/KPim6/MessageComposer/MessageComposer/Composer include/KPim6/MessageComposer/MessageComposer/ComposerAttachmentInterface include/KPim6/MessageComposer/MessageComposer/ComposerLineEdit include/KPim6/MessageComposer/MessageComposer/ComposerViewBase include/KPim6/MessageComposer/MessageComposer/ComposerViewInterface include/KPim6/MessageComposer/MessageComposer/ContactPreference include/KPim6/MessageComposer/MessageComposer/ContentJobBase include/KPim6/MessageComposer/MessageComposer/ConvertSnippetVariableMenu include/KPim6/MessageComposer/MessageComposer/ConvertSnippetVariablesJob include/KPim6/MessageComposer/MessageComposer/ConvertSnippetVariablesUtil include/KPim6/MessageComposer/MessageComposer/DraftStatus include/KPim6/MessageComposer/MessageComposer/EditorWatcher include/KPim6/MessageComposer/MessageComposer/EncryptJob include/KPim6/MessageComposer/MessageComposer/FollowUpReminderSelectDateDialog include/KPim6/MessageComposer/MessageComposer/FollowupReminder include/KPim6/MessageComposer/MessageComposer/FollowupReminderCreateJob include/KPim6/MessageComposer/MessageComposer/GlobalPart include/KPim6/MessageComposer/MessageComposer/ImageScalingWidget include/KPim6/MessageComposer/MessageComposer/InfoPart include/KPim6/MessageComposer/MessageComposer/InsertTextFileJob include/KPim6/MessageComposer/MessageComposer/ItipJob include/KPim6/MessageComposer/MessageComposer/ItipPart include/KPim6/MessageComposer/MessageComposer/JobBase include/KPim6/MessageComposer/MessageComposer/KeyResolver include/KPim6/MessageComposer/MessageComposer/Kleo_Util include/KPim6/MessageComposer/MessageComposer/MDNAdviceDialog include/KPim6/MessageComposer/MessageComposer/MDNAdviceHelper include/KPim6/MessageComposer/MessageComposer/MDNWarningWidgetJob include/KPim6/MessageComposer/MessageComposer/MainTextJob include/KPim6/MessageComposer/MessageComposer/MessageComposerSettings include/KPim6/MessageComposer/MessageComposer/MessageFactoryNG include/KPim6/MessageComposer/MessageComposer/MessageHelper include/KPim6/MessageComposer/MessageComposer/MessagePart include/KPim6/MessageComposer/MessageComposer/MessageSender include/KPim6/MessageComposer/MessageComposer/MultipartJob include/KPim6/MessageComposer/MessageComposer/PluginActionType include/KPim6/MessageComposer/MessageComposer/PluginComposerInterface include/KPim6/MessageComposer/MessageComposer/PluginEditor include/KPim6/MessageComposer/MessageComposer/PluginEditorBase include/KPim6/MessageComposer/MessageComposer/PluginEditorCheckBeforeSend include/KPim6/MessageComposer/MessageComposer/PluginEditorCheckBeforeSendInterface include/KPim6/MessageComposer/MessageComposer/PluginEditorCheckBeforeSendManager include/KPim6/MessageComposer/MessageComposer/PluginEditorCheckBeforeSendParams include/KPim6/MessageComposer/MessageComposer/PluginEditorConfigureBaseWidget include/KPim6/MessageComposer/MessageComposer/PluginEditorConvertText include/KPim6/MessageComposer/MessageComposer/PluginEditorConvertTextInterface include/KPim6/MessageComposer/MessageComposer/PluginEditorConvertTextManager include/KPim6/MessageComposer/MessageComposer/PluginEditorConverterBeforeConvertingData include/KPim6/MessageComposer/MessageComposer/PluginEditorConverterInitialData include/KPim6/MessageComposer/MessageComposer/PluginEditorGrammarCustomToolsViewInterface include/KPim6/MessageComposer/MessageComposer/PluginEditorGrammarManager include/KPim6/MessageComposer/MessageComposer/PluginEditorInit include/KPim6/MessageComposer/MessageComposer/PluginEditorInitInterface include/KPim6/MessageComposer/MessageComposer/PluginEditorInitManager include/KPim6/MessageComposer/MessageComposer/PluginEditorInterface include/KPim6/MessageComposer/MessageComposer/PluginEditorManager include/KPim6/MessageComposer/MessageComposer/ProtectedHeadersJob include/KPim6/MessageComposer/MessageComposer/Recipient include/KPim6/MessageComposer/MessageComposer/RecipientLine include/KPim6/MessageComposer/MessageComposer/RecipientsEditor include/KPim6/MessageComposer/MessageComposer/RichTextComposerNg include/KPim6/MessageComposer/MessageComposer/RichTextComposerSignatures include/KPim6/MessageComposer/MessageComposer/SaveContactPreferenceJob include/KPim6/MessageComposer/MessageComposer/SendLaterCreateJob include/KPim6/MessageComposer/MessageComposer/SendLaterDialog include/KPim6/MessageComposer/MessageComposer/SendLaterInfo include/KPim6/MessageComposer/MessageComposer/SendLaterJob include/KPim6/MessageComposer/MessageComposer/SendLaterRemoveJob include/KPim6/MessageComposer/MessageComposer/SendLaterUtil include/KPim6/MessageComposer/MessageComposer/SignEncryptJob include/KPim6/MessageComposer/MessageComposer/SignJob include/KPim6/MessageComposer/MessageComposer/SignatureController include/KPim6/MessageComposer/MessageComposer/SinglepartJob include/KPim6/MessageComposer/MessageComposer/SkeletonMessageJob include/KPim6/MessageComposer/MessageComposer/StatusBarLabelToggledState include/KPim6/MessageComposer/MessageComposer/TextPart include/KPim6/MessageComposer/MessageComposer/TransparentJob include/KPim6/MessageComposer/MessageComposer/Util include/KPim6/MessageComposer/messagecomposer/abstractencryptjob.h include/KPim6/MessageComposer/messagecomposer/akonadisender.h include/KPim6/MessageComposer/messagecomposer/aliasesexpandjob.h include/KPim6/MessageComposer/messagecomposer/attachmentclipboardjob.h include/KPim6/MessageComposer/messagecomposer/attachmentcontrollerbase.h include/KPim6/MessageComposer/messagecomposer/attachmentfrompublickeyjob.h include/KPim6/MessageComposer/messagecomposer/attachmentjob.h include/KPim6/MessageComposer/messagecomposer/attachmentmodel.h include/KPim6/MessageComposer/messagecomposer/attachmentvcardfromaddressbookjob.h include/KPim6/MessageComposer/messagecomposer/autocryptheadersjob.h include/KPim6/MessageComposer/messagecomposer/autocryptkeyresolvercore.h include/KPim6/MessageComposer/messagecomposer/composer.h include/KPim6/MessageComposer/messagecomposer/composerattachmentinterface.h include/KPim6/MessageComposer/messagecomposer/composerlineedit.h include/KPim6/MessageComposer/messagecomposer/composerviewbase.h include/KPim6/MessageComposer/messagecomposer/composerviewinterface.h include/KPim6/MessageComposer/messagecomposer/contactpreference.h include/KPim6/MessageComposer/messagecomposer/contentjobbase.h include/KPim6/MessageComposer/messagecomposer/convertsnippetvariablemenu.h include/KPim6/MessageComposer/messagecomposer/convertsnippetvariablesjob.h include/KPim6/MessageComposer/messagecomposer/convertsnippetvariablesutil.h include/KPim6/MessageComposer/messagecomposer/draftstatus.h include/KPim6/MessageComposer/messagecomposer/editorwatcher.h include/KPim6/MessageComposer/messagecomposer/encryptjob.h include/KPim6/MessageComposer/messagecomposer/followupreminder.h include/KPim6/MessageComposer/messagecomposer/followupremindercreatejob.h include/KPim6/MessageComposer/messagecomposer/followupreminderselectdatedialog.h include/KPim6/MessageComposer/messagecomposer/globalpart.h include/KPim6/MessageComposer/messagecomposer/imagescalingwidget.h include/KPim6/MessageComposer/messagecomposer/infopart.h include/KPim6/MessageComposer/messagecomposer/inserttextfilejob.h include/KPim6/MessageComposer/messagecomposer/itipjob.h include/KPim6/MessageComposer/messagecomposer/itippart.h include/KPim6/MessageComposer/messagecomposer/jobbase.h include/KPim6/MessageComposer/messagecomposer/keyresolver.h include/KPim6/MessageComposer/messagecomposer/kleo_util.h include/KPim6/MessageComposer/messagecomposer/maintextjob.h include/KPim6/MessageComposer/messagecomposer/mdnadvicedialog.h include/KPim6/MessageComposer/messagecomposer/mdnadvicehelper.h include/KPim6/MessageComposer/messagecomposer/mdnwarningwidgetjob.h include/KPim6/MessageComposer/messagecomposer/messagecomposer_debug.h include/KPim6/MessageComposer/messagecomposer/messagecomposer_export.h include/KPim6/MessageComposer/messagecomposer/messagecomposersettings.h include/KPim6/MessageComposer/messagecomposer/messagecomposersettings_base.h include/KPim6/MessageComposer/messagecomposer/messagefactoryng.h include/KPim6/MessageComposer/messagecomposer/messagehelper.h include/KPim6/MessageComposer/messagecomposer/messagepart.h include/KPim6/MessageComposer/messagecomposer/messagesender.h include/KPim6/MessageComposer/messagecomposer/multipartjob.h include/KPim6/MessageComposer/messagecomposer/pluginactiontype.h include/KPim6/MessageComposer/messagecomposer/plugincomposerinterface.h include/KPim6/MessageComposer/messagecomposer/plugineditor.h include/KPim6/MessageComposer/messagecomposer/plugineditorbase.h include/KPim6/MessageComposer/messagecomposer/plugineditorcheckbeforesend.h include/KPim6/MessageComposer/messagecomposer/plugineditorcheckbeforesendinterface.h include/KPim6/MessageComposer/messagecomposer/plugineditorcheckbeforesendmanager.h include/KPim6/MessageComposer/messagecomposer/plugineditorcheckbeforesendparams.h include/KPim6/MessageComposer/messagecomposer/plugineditorconfigurebasewidget.h include/KPim6/MessageComposer/messagecomposer/plugineditorconverterbeforeconvertingdata.h include/KPim6/MessageComposer/messagecomposer/plugineditorconverterinitialdata.h include/KPim6/MessageComposer/messagecomposer/plugineditorconverttext.h include/KPim6/MessageComposer/messagecomposer/plugineditorconverttextinterface.h include/KPim6/MessageComposer/messagecomposer/plugineditorconverttextmanager.h include/KPim6/MessageComposer/messagecomposer/plugineditorgrammarcustomtoolsviewinterface.h include/KPim6/MessageComposer/messagecomposer/plugineditorgrammarmanager.h include/KPim6/MessageComposer/messagecomposer/plugineditorinit.h include/KPim6/MessageComposer/messagecomposer/plugineditorinitinterface.h include/KPim6/MessageComposer/messagecomposer/plugineditorinitmanager.h include/KPim6/MessageComposer/messagecomposer/plugineditorinterface.h include/KPim6/MessageComposer/messagecomposer/plugineditormanager.h include/KPim6/MessageComposer/messagecomposer/protectedheadersjob.h include/KPim6/MessageComposer/messagecomposer/recipient.h include/KPim6/MessageComposer/messagecomposer/recipientline.h include/KPim6/MessageComposer/messagecomposer/recipientseditor.h include/KPim6/MessageComposer/messagecomposer/richtextcomposerng.h include/KPim6/MessageComposer/messagecomposer/richtextcomposersignatures.h include/KPim6/MessageComposer/messagecomposer/savecontactpreferencejob.h include/KPim6/MessageComposer/messagecomposer/sendlatercreatejob.h include/KPim6/MessageComposer/messagecomposer/sendlaterdialog.h include/KPim6/MessageComposer/messagecomposer/sendlaterinfo.h include/KPim6/MessageComposer/messagecomposer/sendlaterjob.h include/KPim6/MessageComposer/messagecomposer/sendlaterremovejob.h include/KPim6/MessageComposer/messagecomposer/sendlaterutil.h include/KPim6/MessageComposer/messagecomposer/signaturecontroller.h include/KPim6/MessageComposer/messagecomposer/signencryptjob.h include/KPim6/MessageComposer/messagecomposer/signjob.h include/KPim6/MessageComposer/messagecomposer/singlepartjob.h include/KPim6/MessageComposer/messagecomposer/skeletonmessagejob.h include/KPim6/MessageComposer/messagecomposer/statusbarlabeltoggledstate.h include/KPim6/MessageComposer/messagecomposer/textpart.h include/KPim6/MessageComposer/messagecomposer/transparentjob.h include/KPim6/MessageComposer/messagecomposer/util.h include/KPim6/MessageComposer/messagecomposer_version.h include/KPim6/MessageCore/MessageCore/AttachmentCompressJob include/KPim6/MessageCore/MessageCore/AttachmentFromUrlBaseJob include/KPim6/MessageCore/MessageCore/AttachmentFromUrlUtils include/KPim6/MessageCore/MessageCore/AttachmentLoadJob include/KPim6/MessageCore/MessageCore/AttachmentPart include/KPim6/MessageCore/MessageCore/AttachmentPropertiesDialog include/KPim6/MessageCore/MessageCore/AttachmentUpdateJob include/KPim6/MessageCore/MessageCore/AutocryptRecipient include/KPim6/MessageCore/MessageCore/AutocryptStorage include/KPim6/MessageCore/MessageCore/AutocryptUtils include/KPim6/MessageCore/MessageCore/ColorUtil include/KPim6/MessageCore/MessageCore/DateFormatter include/KPim6/MessageCore/MessageCore/ImageCollector include/KPim6/MessageCore/MessageCore/MailingList include/KPim6/MessageCore/MessageCore/MessageCoreSettings include/KPim6/MessageCore/MessageCore/StringUtil include/KPim6/MessageCore/MessageCore/Util include/KPim6/MessageCore/messagecore/attachmentcompressjob.h include/KPim6/MessageCore/messagecore/attachmentfromurlbasejob.h include/KPim6/MessageCore/messagecore/attachmentfromurlutils.h include/KPim6/MessageCore/messagecore/attachmentloadjob.h include/KPim6/MessageCore/messagecore/attachmentpart.h include/KPim6/MessageCore/messagecore/attachmentpropertiesdialog.h include/KPim6/MessageCore/messagecore/attachmentupdatejob.h include/KPim6/MessageCore/messagecore/autocryptrecipient.h include/KPim6/MessageCore/messagecore/autocryptstorage.h include/KPim6/MessageCore/messagecore/autocryptutils.h include/KPim6/MessageCore/messagecore/colorutil.h include/KPim6/MessageCore/messagecore/dateformatter.h include/KPim6/MessageCore/messagecore/globalsettings_messagecore.h include/KPim6/MessageCore/messagecore/imagecollector.h include/KPim6/MessageCore/messagecore/mailinglist.h include/KPim6/MessageCore/messagecore/messagecore_export.h include/KPim6/MessageCore/messagecore/messagecoresettings.h include/KPim6/MessageCore/messagecore/stringutil.h include/KPim6/MessageCore/messagecore/util.h include/KPim6/MessageCore/messagecore_version.h include/KPim6/MessageList/MessageList/AggregationComboBox include/KPim6/MessageList/MessageList/AggregationConfigButton include/KPim6/MessageList/MessageList/Enums include/KPim6/MessageList/MessageList/MessageListUtil include/KPim6/MessageList/MessageList/Pane include/KPim6/MessageList/MessageList/QuickSearchLine +include/KPim6/MessageList/MessageList/SearchLineCommand include/KPim6/MessageList/MessageList/SearchMessageByButtons include/KPim6/MessageList/MessageList/StorageModel include/KPim6/MessageList/MessageList/StorageModelBase include/KPim6/MessageList/MessageList/ThemeComboBox include/KPim6/MessageList/MessageList/ThemeConfigButton include/KPim6/MessageList/MessageList/View include/KPim6/MessageList/MessageList/WidgetBase include/KPim6/MessageList/messagelist/aggregationcombobox.h include/KPim6/MessageList/messagelist/aggregationconfigbutton.h include/KPim6/MessageList/messagelist/config-messagelist.h include/KPim6/MessageList/messagelist/enums.h include/KPim6/MessageList/messagelist/messagelist_export.h include/KPim6/MessageList/messagelist/messagelistsettings.h include/KPim6/MessageList/messagelist/messagelistutil.h include/KPim6/MessageList/messagelist/pane.h include/KPim6/MessageList/messagelist/quicksearchline.h +include/KPim6/MessageList/messagelist/searchlinecommand.h include/KPim6/MessageList/messagelist/searchmessagebybuttons.h include/KPim6/MessageList/messagelist/storagemodel.h include/KPim6/MessageList/messagelist/storagemodelbase.h include/KPim6/MessageList/messagelist/themecombobox.h include/KPim6/MessageList/messagelist/themeconfigbutton.h include/KPim6/MessageList/messagelist/view.h include/KPim6/MessageList/messagelist/widgetbase.h include/KPim6/MessageList/messagelist_version.h include/KPim6/MessageViewer/MessageViewer/AttachmentStrategy include/KPim6/MessageViewer/MessageViewer/BodyPartURLHandler include/KPim6/MessageViewer/MessageViewer/BufferedHtmlWriter include/KPim6/MessageViewer/MessageViewer/CSSHelper include/KPim6/MessageViewer/MessageViewer/CSSHelperBase include/KPim6/MessageViewer/MessageViewer/ConfigureWidget include/KPim6/MessageViewer/MessageViewer/DKIMCheckPolicy include/KPim6/MessageViewer/MessageViewer/DKIMCheckSignatureJob include/KPim6/MessageViewer/MessageViewer/DKIMHeaderParser include/KPim6/MessageViewer/MessageViewer/DKIMInfo include/KPim6/MessageViewer/MessageViewer/DKIMKeyRecord include/KPim6/MessageViewer/MessageViewer/DKIMManageRulesDialog include/KPim6/MessageViewer/MessageViewer/DKIMManageRulesWidget include/KPim6/MessageViewer/MessageViewer/DKIMManager include/KPim6/MessageViewer/MessageViewer/DKIMManagerAuthenticationServer include/KPim6/MessageViewer/MessageViewer/DKIMManagerKey include/KPim6/MessageViewer/MessageViewer/DKIMManagerKeyDialog include/KPim6/MessageViewer/MessageViewer/DKIMManagerKeyWidget include/KPim6/MessageViewer/MessageViewer/DKIMManagerRules include/KPim6/MessageViewer/MessageViewer/DKIMRule include/KPim6/MessageViewer/MessageViewer/DKIMViewerMenu include/KPim6/MessageViewer/MessageViewer/DKIMWidgetInfo include/KPim6/MessageViewer/MessageViewer/FileHtmlWriter include/KPim6/MessageViewer/MessageViewer/GrantleeHeaderStyle include/KPim6/MessageViewer/MessageViewer/GrantleeHeaderTestStyle include/KPim6/MessageViewer/MessageViewer/HeaderStrategy include/KPim6/MessageViewer/MessageViewer/HeaderStyle include/KPim6/MessageViewer/MessageViewer/HeaderStyleInterface include/KPim6/MessageViewer/MessageViewer/HeaderStyleMenuManager include/KPim6/MessageViewer/MessageViewer/HeaderStylePlugin include/KPim6/MessageViewer/MessageViewer/HeaderStylePluginManager include/KPim6/MessageViewer/MessageViewer/HeaderStyle_Util include/KPim6/MessageViewer/MessageViewer/HtmlBlock include/KPim6/MessageViewer/MessageViewer/HtmlWriter include/KPim6/MessageViewer/MessageViewer/IconNameCache include/KPim6/MessageViewer/MessageViewer/InvitationSettings include/KPim6/MessageViewer/MessageViewer/KXFace include/KPim6/MessageViewer/MessageViewer/MDNWarningWidget include/KPim6/MessageViewer/MessageViewer/MailWebEnginePage include/KPim6/MessageViewer/MessageViewer/MailWebEngineView include/KPim6/MessageViewer/MessageViewer/MarkMessageReadHandler include/KPim6/MessageViewer/MessageViewer/MessagePartRenderPlugin include/KPim6/MessageViewer/MessageViewer/MessagePartRendererBase include/KPim6/MessageViewer/MessageViewer/MessagePartRendererManager include/KPim6/MessageViewer/MessageViewer/MessageViewerCheckBeforeDeletingInterface include/KPim6/MessageViewer/MessageViewer/MessageViewerCheckBeforeDeletingParameters include/KPim6/MessageViewer/MessageViewer/MessageViewerCheckBeforeDeletingPlugin include/KPim6/MessageViewer/MessageViewer/MessageViewerCheckBeforeDeletingPluginManager include/KPim6/MessageViewer/MessageViewer/MessageViewerCheckBeforeDeletingPluginWidget include/KPim6/MessageViewer/MessageViewer/MessageViewerConfigureSettingsPlugin include/KPim6/MessageViewer/MessageViewer/MessageViewerConfigureSettingsPluginManager include/KPim6/MessageViewer/MessageViewer/MessageViewerConfigureSettingsPluginWidget include/KPim6/MessageViewer/MessageViewer/MessageViewerSettings include/KPim6/MessageViewer/MessageViewer/MessageViewerUtil include/KPim6/MessageViewer/MessageViewer/MimeType include/KPim6/MessageViewer/MessageViewer/ObjectTreeEmptySource include/KPim6/MessageViewer/MessageViewer/OpenUrlWithManager include/KPim6/MessageViewer/MessageViewer/OpenWithUrlInfo include/KPim6/MessageViewer/MessageViewer/PlainHeaderStyle include/KPim6/MessageViewer/MessageViewer/PrintMessage include/KPim6/MessageViewer/MessageViewer/PrintingSettings include/KPim6/MessageViewer/MessageViewer/RemoteContentConfigureDialog include/KPim6/MessageViewer/MessageViewer/RemoteContentMenu include/KPim6/MessageViewer/MessageViewer/RichHeaderStrategy include/KPim6/MessageViewer/MessageViewer/ScamCheckShortUrl include/KPim6/MessageViewer/MessageViewer/ScamCheckShortUrlManager include/KPim6/MessageViewer/MessageViewer/ScamDetectionInfo include/KPim6/MessageViewer/MessageViewer/ScamDetectionWhiteListSettingsManager include/KPim6/MessageViewer/MessageViewer/ScamExpandUrlJob include/KPim6/MessageViewer/MessageViewer/SpamHeaderAnalyzer include/KPim6/MessageViewer/MessageViewer/Stl_Util include/KPim6/MessageViewer/MessageViewer/URLHandler include/KPim6/MessageViewer/MessageViewer/Viewer include/KPim6/MessageViewer/MessageViewer/ViewerPlugin include/KPim6/MessageViewer/MessageViewer/ViewerPluginInterface include/KPim6/MessageViewer/MessageViewer/ViewerPluginManager include/KPim6/MessageViewer/MessageViewer/ViewerPluginToolManager include/KPim6/MessageViewer/messageviewer/attachmentstrategy.h include/KPim6/MessageViewer/messageviewer/bodyparturlhandler.h include/KPim6/MessageViewer/messageviewer/bufferedhtmlwriter.h include/KPim6/MessageViewer/messageviewer/configurewidget.h include/KPim6/MessageViewer/messageviewer/csshelper.h include/KPim6/MessageViewer/messageviewer/csshelperbase.h include/KPim6/MessageViewer/messageviewer/dkimcheckpolicy.h include/KPim6/MessageViewer/messageviewer/dkimchecksignaturejob.h include/KPim6/MessageViewer/messageviewer/dkimheaderparser.h include/KPim6/MessageViewer/messageviewer/dkiminfo.h include/KPim6/MessageViewer/messageviewer/dkimkeyrecord.h include/KPim6/MessageViewer/messageviewer/dkimmanager.h include/KPim6/MessageViewer/messageviewer/dkimmanagerauthenticationserver.h include/KPim6/MessageViewer/messageviewer/dkimmanagerkey.h include/KPim6/MessageViewer/messageviewer/dkimmanagerkeydialog.h include/KPim6/MessageViewer/messageviewer/dkimmanagerkeywidget.h include/KPim6/MessageViewer/messageviewer/dkimmanagerrules.h include/KPim6/MessageViewer/messageviewer/dkimmanagerulesdialog.h include/KPim6/MessageViewer/messageviewer/dkimmanageruleswidget.h include/KPim6/MessageViewer/messageviewer/dkimrule.h include/KPim6/MessageViewer/messageviewer/dkimviewermenu.h include/KPim6/MessageViewer/messageviewer/dkimwidgetinfo.h include/KPim6/MessageViewer/messageviewer/filehtmlwriter.h include/KPim6/MessageViewer/messageviewer/globalsettings_messageviewer.h include/KPim6/MessageViewer/messageviewer/grantleeheaderstyle.h include/KPim6/MessageViewer/messageviewer/grantleeheaderteststyle.h include/KPim6/MessageViewer/messageviewer/headerstrategy.h include/KPim6/MessageViewer/messageviewer/headerstyle.h include/KPim6/MessageViewer/messageviewer/headerstyle_util.h include/KPim6/MessageViewer/messageviewer/headerstyleinterface.h include/KPim6/MessageViewer/messageviewer/headerstylemenumanager.h include/KPim6/MessageViewer/messageviewer/headerstyleplugin.h include/KPim6/MessageViewer/messageviewer/headerstylepluginmanager.h include/KPim6/MessageViewer/messageviewer/htmlblock.h include/KPim6/MessageViewer/messageviewer/htmlwriter.h include/KPim6/MessageViewer/messageviewer/iconnamecache.h include/KPim6/MessageViewer/messageviewer/invitationsettings.h include/KPim6/MessageViewer/messageviewer/kxface.h include/KPim6/MessageViewer/messageviewer/mailwebenginepage.h include/KPim6/MessageViewer/messageviewer/mailwebengineview.h include/KPim6/MessageViewer/messageviewer/markmessagereadhandler.h include/KPim6/MessageViewer/messageviewer/mdnwarningwidget.h include/KPim6/MessageViewer/messageviewer/messagepartrendererbase.h include/KPim6/MessageViewer/messageviewer/messagepartrenderermanager.h include/KPim6/MessageViewer/messageviewer/messagepartrenderplugin.h include/KPim6/MessageViewer/messageviewer/messageviewer_debug.h include/KPim6/MessageViewer/messageviewer/messageviewer_export.h include/KPim6/MessageViewer/messageviewer/messageviewercheckbeforedeletinginterface.h include/KPim6/MessageViewer/messageviewer/messageviewercheckbeforedeletingparameters.h include/KPim6/MessageViewer/messageviewer/messageviewercheckbeforedeletingplugin.h include/KPim6/MessageViewer/messageviewer/messageviewercheckbeforedeletingpluginmanager.h include/KPim6/MessageViewer/messageviewer/messageviewercheckbeforedeletingpluginwidget.h include/KPim6/MessageViewer/messageviewer/messageviewerconfiguresettingsplugin.h include/KPim6/MessageViewer/messageviewer/messageviewerconfiguresettingspluginmanager.h include/KPim6/MessageViewer/messageviewer/messageviewerconfiguresettingspluginwidget.h include/KPim6/MessageViewer/messageviewer/messageviewersettings.h include/KPim6/MessageViewer/messageviewer/messageviewerutil.h include/KPim6/MessageViewer/messageviewer/mimetype.h include/KPim6/MessageViewer/messageviewer/objecttreeemptysource.h include/KPim6/MessageViewer/messageviewer/openurlwithmanager.h include/KPim6/MessageViewer/messageviewer/openwithurlinfo.h include/KPim6/MessageViewer/messageviewer/plainheaderstyle.h include/KPim6/MessageViewer/messageviewer/printingsettings.h include/KPim6/MessageViewer/messageviewer/printmessage.h include/KPim6/MessageViewer/messageviewer/remotecontentconfiguredialog.h include/KPim6/MessageViewer/messageviewer/remotecontentmenu.h include/KPim6/MessageViewer/messageviewer/richheaderstrategy.h include/KPim6/MessageViewer/messageviewer/scamcheckshorturl.h include/KPim6/MessageViewer/messageviewer/scamcheckshorturlmanager.h include/KPim6/MessageViewer/messageviewer/scamdetectioninfo.h include/KPim6/MessageViewer/messageviewer/scamdetectionwhitelistsettingsmanager.h include/KPim6/MessageViewer/messageviewer/scamexpandurljob.h include/KPim6/MessageViewer/messageviewer/spamheaderanalyzer.h include/KPim6/MessageViewer/messageviewer/stl_util.h include/KPim6/MessageViewer/messageviewer/urlhandler.h include/KPim6/MessageViewer/messageviewer/viewer.h include/KPim6/MessageViewer/messageviewer/viewerplugin.h include/KPim6/MessageViewer/messageviewer/viewerplugininterface.h include/KPim6/MessageViewer/messageviewer/viewerpluginmanager.h include/KPim6/MessageViewer/messageviewer/viewerplugintoolmanager.h include/KPim6/MessageViewer/messageviewer_version.h include/KPim6/MimeTreeParser/MimeTreeParser/AttachmentTemporaryFilesDirs include/KPim6/MimeTreeParser/MimeTreeParser/BodyPart include/KPim6/MimeTreeParser/MimeTreeParser/BodyPartFormatter include/KPim6/MimeTreeParser/MimeTreeParser/BodyPartFormatterFactory include/KPim6/MimeTreeParser/MimeTreeParser/Enums include/KPim6/MimeTreeParser/MimeTreeParser/MessagePart include/KPim6/MimeTreeParser/MimeTreeParser/NodeHelper include/KPim6/MimeTreeParser/MimeTreeParser/ObjectTreeParser include/KPim6/MimeTreeParser/MimeTreeParser/ObjectTreeSource include/KPim6/MimeTreeParser/MimeTreeParser/PartMetaData include/KPim6/MimeTreeParser/MimeTreeParser/PartNodeBodyPart include/KPim6/MimeTreeParser/MimeTreeParser/SimpleObjectTreeSource include/KPim6/MimeTreeParser/MimeTreeParser/Util include/KPim6/MimeTreeParser/mimetreeparser/attachmenttemporaryfilesdirs.h include/KPim6/MimeTreeParser/mimetreeparser/bodypart.h include/KPim6/MimeTreeParser/mimetreeparser/bodypartformatter.h include/KPim6/MimeTreeParser/mimetreeparser/bodypartformatterfactory.h include/KPim6/MimeTreeParser/mimetreeparser/enums.h include/KPim6/MimeTreeParser/mimetreeparser/messagepart.h include/KPim6/MimeTreeParser/mimetreeparser/mimetreeparser_export.h include/KPim6/MimeTreeParser/mimetreeparser/nodehelper.h include/KPim6/MimeTreeParser/mimetreeparser/objecttreeparser.h include/KPim6/MimeTreeParser/mimetreeparser/objecttreesource.h include/KPim6/MimeTreeParser/mimetreeparser/partmetadata.h include/KPim6/MimeTreeParser/mimetreeparser/partnodebodypart.h include/KPim6/MimeTreeParser/mimetreeparser/simpleobjecttreesource.h include/KPim6/MimeTreeParser/mimetreeparser/util.h include/KPim6/MimeTreeParser/mimetreeparser_version.h include/KPim6/TemplateParser/TemplateParser/CustomTemplates include/KPim6/TemplateParser/TemplateParser/CustomTemplatesMenu include/KPim6/TemplateParser/TemplateParser/DefaultTemplates include/KPim6/TemplateParser/TemplateParser/TemplateConvertCommandJob include/KPim6/TemplateParser/TemplateParser/TemplateParserEmailAddressRequesterBase include/KPim6/TemplateParser/TemplateParser/TemplateParserExtractHtmlInfoResult include/KPim6/TemplateParser/TemplateParser/TemplateParserJob include/KPim6/TemplateParser/TemplateParser/TemplatesCommandMenu include/KPim6/TemplateParser/TemplateParser/TemplatesConfiguration include/KPim6/TemplateParser/TemplateParser/TemplatesInsertCommandAction include/KPim6/TemplateParser/TemplateParser/TemplatesInsertCommandPushButton include/KPim6/TemplateParser/TemplateParser/TemplatesTextEdit include/KPim6/TemplateParser/TemplateParser/TemplatesUtil include/KPim6/TemplateParser/templateparser/customtemplates.h include/KPim6/TemplateParser/templateparser/customtemplates_kfg.h include/KPim6/TemplateParser/templateparser/customtemplatesmenu.h include/KPim6/TemplateParser/templateparser/defaulttemplates.h include/KPim6/TemplateParser/templateparser/globalsettings_templateparser.h include/KPim6/TemplateParser/templateparser/templateconvertcommandjob.h include/KPim6/TemplateParser/templateparser/templateparser_export.h include/KPim6/TemplateParser/templateparser/templateparseremailaddressrequesterbase.h include/KPim6/TemplateParser/templateparser/templateparserextracthtmlinforesult.h include/KPim6/TemplateParser/templateparser/templateparserjob.h include/KPim6/TemplateParser/templateparser/templatescommandmenu.h include/KPim6/TemplateParser/templateparser/templatesconfiguration.h include/KPim6/TemplateParser/templateparser/templatesconfiguration_kfg.h include/KPim6/TemplateParser/templateparser/templatesinsertcommandaction.h include/KPim6/TemplateParser/templateparser/templatesinsertcommandpushbutton.h include/KPim6/TemplateParser/templateparser/templatestextedit.h include/KPim6/TemplateParser/templateparser/templatesutil.h include/KPim6/TemplateParser/templateparser/ui_templatesconfiguration_base.h include/KPim6/TemplateParser/templateparser_version.h include/KPim6/WebEngineViewer/WebEngineViewer/BlockExternalResourcesUrlInterceptor include/KPim6/WebEngineViewer/WebEngineViewer/BlockTrackingUrlInterceptor include/KPim6/WebEngineViewer/WebEngineViewer/CheckPhishingUrlCache include/KPim6/WebEngineViewer/WebEngineViewer/CheckPhishingUrlJob include/KPim6/WebEngineViewer/WebEngineViewer/CheckPhishingUrlUtil include/KPim6/WebEngineViewer/WebEngineViewer/CreatePhishingUrlDataBaseJob include/KPim6/WebEngineViewer/WebEngineViewer/DeveloperToolDialog include/KPim6/WebEngineViewer/WebEngineViewer/FindBarBase include/KPim6/WebEngineViewer/WebEngineViewer/FindBarWebEngineView include/KPim6/WebEngineViewer/WebEngineViewer/HashCacheManager include/KPim6/WebEngineViewer/WebEngineViewer/InterceptorManager include/KPim6/WebEngineViewer/WebEngineViewer/LoadExternalReferencesUrlInterceptor include/KPim6/WebEngineViewer/WebEngineViewer/LocalDataBaseManager include/KPim6/WebEngineViewer/WebEngineViewer/NetworkPluginUrlInterceptor include/KPim6/WebEngineViewer/WebEngineViewer/NetworkPluginUrlInterceptorConfigureWidget include/KPim6/WebEngineViewer/WebEngineViewer/NetworkPluginUrlInterceptorInterface include/KPim6/WebEngineViewer/WebEngineViewer/NetworkUrlInterceptor include/KPim6/WebEngineViewer/WebEngineViewer/NetworkUrlInterceptorPluginManager include/KPim6/WebEngineViewer/WebEngineViewer/SearchFullHashJob include/KPim6/WebEngineViewer/WebEngineViewer/SubmittedFormWarningWidget include/KPim6/WebEngineViewer/WebEngineViewer/TrackingWarningWidget include/KPim6/WebEngineViewer/WebEngineViewer/UpdateDataBaseInfo include/KPim6/WebEngineViewer/WebEngineViewer/WebEngineAccessKey include/KPim6/WebEngineViewer/WebEngineViewer/WebEngineExportPdfPageJob include/KPim6/WebEngineViewer/WebEngineViewer/WebEngineManageScript include/KPim6/WebEngineViewer/WebEngineViewer/WebEnginePage include/KPim6/WebEngineViewer/WebEngineViewer/WebEngineScript include/KPim6/WebEngineViewer/WebEngineViewer/WebEngineView include/KPim6/WebEngineViewer/WebEngineViewer/WebHitTest include/KPim6/WebEngineViewer/WebEngineViewer/WebHitTestResult include/KPim6/WebEngineViewer/WebEngineViewer/ZoomActionMenu include/KPim6/WebEngineViewer/webengineviewer/blockexternalresourcesurlinterceptor.h include/KPim6/WebEngineViewer/webengineviewer/blocktrackingurlinterceptor.h include/KPim6/WebEngineViewer/webengineviewer/checkphishingurlcache.h include/KPim6/WebEngineViewer/webengineviewer/checkphishingurljob.h include/KPim6/WebEngineViewer/webengineviewer/checkphishingurlutil.h include/KPim6/WebEngineViewer/webengineviewer/createphishingurldatabasejob.h include/KPim6/WebEngineViewer/webengineviewer/developertooldialog.h include/KPim6/WebEngineViewer/webengineviewer/findbarbase.h include/KPim6/WebEngineViewer/webengineviewer/findbarwebengineview.h include/KPim6/WebEngineViewer/webengineviewer/hashcachemanager.h include/KPim6/WebEngineViewer/webengineviewer/interceptormanager.h include/KPim6/WebEngineViewer/webengineviewer/loadexternalreferencesurlinterceptor.h include/KPim6/WebEngineViewer/webengineviewer/localdatabasemanager.h include/KPim6/WebEngineViewer/webengineviewer/networkpluginurlinterceptor.h include/KPim6/WebEngineViewer/webengineviewer/networkpluginurlinterceptorconfigurewidget.h include/KPim6/WebEngineViewer/webengineviewer/networkpluginurlinterceptorinterface.h include/KPim6/WebEngineViewer/webengineviewer/networkurlinterceptor.h include/KPim6/WebEngineViewer/webengineviewer/networkurlinterceptorpluginmanager.h include/KPim6/WebEngineViewer/webengineviewer/searchfullhashjob.h include/KPim6/WebEngineViewer/webengineviewer/submittedformwarningwidget.h include/KPim6/WebEngineViewer/webengineviewer/trackingwarningwidget.h include/KPim6/WebEngineViewer/webengineviewer/updatedatabaseinfo.h include/KPim6/WebEngineViewer/webengineviewer/webengineaccesskey.h include/KPim6/WebEngineViewer/webengineviewer/webengineexportpdfpagejob.h include/KPim6/WebEngineViewer/webengineviewer/webenginemanagescript.h include/KPim6/WebEngineViewer/webengineviewer/webenginepage.h include/KPim6/WebEngineViewer/webengineviewer/webenginescript.h include/KPim6/WebEngineViewer/webengineviewer/webengineview.h include/KPim6/WebEngineViewer/webengineviewer/webengineviewer_export.h include/KPim6/WebEngineViewer/webengineviewer/webhittest.h include/KPim6/WebEngineViewer/webengineviewer/webhittestresult.h include/KPim6/WebEngineViewer/webengineviewer/zoomactionmenu.h include/KPim6/WebEngineViewer/webengineviewer_version.h lib/cmake/KPim6MessageComposer/KPim6MessageComposerConfig.cmake lib/cmake/KPim6MessageComposer/KPim6MessageComposerConfigVersion.cmake lib/cmake/KPim6MessageComposer/KPim6MessageComposerTargets-%%CMAKE_BUILD_TYPE%%.cmake lib/cmake/KPim6MessageComposer/KPim6MessageComposerTargets.cmake lib/cmake/KPim6MessageCore/KPim6MessageCoreConfig.cmake lib/cmake/KPim6MessageCore/KPim6MessageCoreConfigVersion.cmake lib/cmake/KPim6MessageCore/KPim6MessageCoreTargets-%%CMAKE_BUILD_TYPE%%.cmake lib/cmake/KPim6MessageCore/KPim6MessageCoreTargets.cmake lib/cmake/KPim6MessageList/KPim6MessageListConfig.cmake lib/cmake/KPim6MessageList/KPim6MessageListConfigVersion.cmake lib/cmake/KPim6MessageList/KPim6MessageListTargets-%%CMAKE_BUILD_TYPE%%.cmake lib/cmake/KPim6MessageList/KPim6MessageListTargets.cmake lib/cmake/KPim6MessageViewer/KPim6MessageViewerConfig.cmake lib/cmake/KPim6MessageViewer/KPim6MessageViewerConfigVersion.cmake lib/cmake/KPim6MessageViewer/KPim6MessageViewerTargets-%%CMAKE_BUILD_TYPE%%.cmake lib/cmake/KPim6MessageViewer/KPim6MessageViewerTargets.cmake lib/cmake/KPim6MimeTreeParser/KPim6MimeTreeParserConfig.cmake lib/cmake/KPim6MimeTreeParser/KPim6MimeTreeParserConfigVersion.cmake lib/cmake/KPim6MimeTreeParser/KPim6MimeTreeParserTargets-%%CMAKE_BUILD_TYPE%%.cmake lib/cmake/KPim6MimeTreeParser/KPim6MimeTreeParserTargets.cmake lib/cmake/KPim6TemplateParser/KPim6TemplateParserConfig.cmake lib/cmake/KPim6TemplateParser/KPim6TemplateParserConfigVersion.cmake lib/cmake/KPim6TemplateParser/KPim6TemplateParserTargets-%%CMAKE_BUILD_TYPE%%.cmake lib/cmake/KPim6TemplateParser/KPim6TemplateParserTargets.cmake lib/cmake/KPim6WebEngineViewer/KPim6WebEngineViewerConfig.cmake lib/cmake/KPim6WebEngineViewer/KPim6WebEngineViewerConfigVersion.cmake lib/cmake/KPim6WebEngineViewer/KPim6WebEngineViewerTargets-%%CMAKE_BUILD_TYPE%%.cmake lib/cmake/KPim6WebEngineViewer/KPim6WebEngineViewerTargets.cmake lib/libKPim6MessageComposer.so lib/libKPim6MessageComposer.so.6 lib/libKPim6MessageComposer.so.%%KDE_APPLICATIONS_SHLIB_VER%% lib/libKPim6MessageCore.so lib/libKPim6MessageCore.so.6 lib/libKPim6MessageCore.so.%%KDE_APPLICATIONS_SHLIB_VER%% lib/libKPim6MessageList.so lib/libKPim6MessageList.so.6 lib/libKPim6MessageList.so.%%KDE_APPLICATIONS_SHLIB_VER%% lib/libKPim6MessageViewer.so lib/libKPim6MessageViewer.so.6 lib/libKPim6MessageViewer.so.%%KDE_APPLICATIONS_SHLIB_VER%% lib/libKPim6MimeTreeParser.so lib/libKPim6MimeTreeParser.so.6 lib/libKPim6MimeTreeParser.so.%%KDE_APPLICATIONS_SHLIB_VER%% lib/libKPim6TemplateParser.so lib/libKPim6TemplateParser.so.6 lib/libKPim6TemplateParser.so.%%KDE_APPLICATIONS_SHLIB_VER%% lib/libKPim6WebEngineViewer.so lib/libKPim6WebEngineViewer.so.6 lib/libKPim6WebEngineViewer.so.%%KDE_APPLICATIONS_SHLIB_VER%% %%QT_PLUGINDIR%%/pim6/messageviewer/headerstyle/messageviewer_defaultgrantleeheaderstyleplugin.so %%QT_PLUGINDIR%%/pim6/messageviewer/kf6/ktexttemplate/messageviewer_ktexttemplate_extension.so share/config.kcfg/customtemplates_kfg.kcfg share/config.kcfg/templatesconfiguration_kfg.kcfg share/knotifications6/messageviewer.notifyrc share/knsrcfiles/messageviewer_header_themes.knsrc share/libmessageviewer/pics/enterprise_bottom.png share/libmessageviewer/pics/enterprise_bottom_left.png share/libmessageviewer/pics/enterprise_bottom_right.png share/libmessageviewer/pics/enterprise_icon.png share/libmessageviewer/pics/enterprise_left.png share/libmessageviewer/pics/enterprise_right.png share/libmessageviewer/pics/enterprise_s_left.png share/libmessageviewer/pics/enterprise_s_right.png share/libmessageviewer/pics/enterprise_sbar.png share/libmessageviewer/pics/enterprise_sp_right.png share/libmessageviewer/pics/enterprise_sw.png share/libmessageviewer/pics/enterprise_top.png share/libmessageviewer/pics/enterprise_top_left.png share/libmessageviewer/pics/enterprise_top_right.png share/libmessageviewer/pics/enterprise_w.png share/libmessageviewer/pics/quicklistClosed.png share/libmessageviewer/pics/quicklistOpened.png share/libmessageviewer/pics/quotecollapse.png share/libmessageviewer/pics/quoteexpand.png share/locale/af/LC_MESSAGES/libmessagelist6.mo share/locale/af/LC_MESSAGES/libmessageviewer6.mo share/locale/af/LC_MESSAGES/libmimetreeparser6.mo share/locale/ar/LC_MESSAGES/libmessagecomposer6.mo share/locale/ar/LC_MESSAGES/libmessagecore6.mo share/locale/ar/LC_MESSAGES/libmessagelist6.mo share/locale/ar/LC_MESSAGES/libmessageviewer6.mo share/locale/ar/LC_MESSAGES/libmimetreeparser6.mo share/locale/ar/LC_MESSAGES/libtemplateparser6.mo share/locale/ar/LC_MESSAGES/libwebengineviewer6.mo share/locale/ast/LC_MESSAGES/libmessagecomposer6.mo share/locale/ast/LC_MESSAGES/libmessagecore6.mo share/locale/ast/LC_MESSAGES/libmessagelist6.mo share/locale/ast/LC_MESSAGES/libmessageviewer6.mo share/locale/ast/LC_MESSAGES/libmimetreeparser6.mo share/locale/ast/LC_MESSAGES/libtemplateparser6.mo share/locale/ast/LC_MESSAGES/libwebengineviewer6.mo share/locale/be/LC_MESSAGES/libmessagelist6.mo share/locale/be/LC_MESSAGES/libmessageviewer6.mo share/locale/be/LC_MESSAGES/libmimetreeparser6.mo share/locale/bg/LC_MESSAGES/libmessagecomposer6.mo share/locale/bg/LC_MESSAGES/libmessagecore6.mo share/locale/bg/LC_MESSAGES/libmessagelist6.mo share/locale/bg/LC_MESSAGES/libmessageviewer6.mo share/locale/bg/LC_MESSAGES/libmimetreeparser6.mo share/locale/bg/LC_MESSAGES/libtemplateparser6.mo share/locale/bg/LC_MESSAGES/libwebengineviewer6.mo share/locale/bn/LC_MESSAGES/libmessagelist6.mo share/locale/bn/LC_MESSAGES/libmessageviewer6.mo share/locale/bn/LC_MESSAGES/libmimetreeparser6.mo share/locale/br/LC_MESSAGES/libmessagelist6.mo share/locale/br/LC_MESSAGES/libmessageviewer6.mo share/locale/br/LC_MESSAGES/libmimetreeparser6.mo share/locale/bs/LC_MESSAGES/libmessagecomposer6.mo share/locale/bs/LC_MESSAGES/libmessagecore6.mo share/locale/bs/LC_MESSAGES/libmessagelist6.mo share/locale/bs/LC_MESSAGES/libmessageviewer6.mo share/locale/bs/LC_MESSAGES/libmimetreeparser6.mo share/locale/bs/LC_MESSAGES/libtemplateparser6.mo share/locale/ca/LC_MESSAGES/libmessagecomposer6.mo share/locale/ca/LC_MESSAGES/libmessagecore6.mo share/locale/ca/LC_MESSAGES/libmessagelist6.mo share/locale/ca/LC_MESSAGES/libmessageviewer6.mo share/locale/ca/LC_MESSAGES/libmimetreeparser6.mo share/locale/ca/LC_MESSAGES/libtemplateparser6.mo share/locale/ca/LC_MESSAGES/libwebengineviewer6.mo share/locale/ca@valencia/LC_MESSAGES/libmessagecomposer6.mo share/locale/ca@valencia/LC_MESSAGES/libmessagecore6.mo share/locale/ca@valencia/LC_MESSAGES/libmessagelist6.mo share/locale/ca@valencia/LC_MESSAGES/libmessageviewer6.mo share/locale/ca@valencia/LC_MESSAGES/libmimetreeparser6.mo share/locale/ca@valencia/LC_MESSAGES/libtemplateparser6.mo share/locale/ca@valencia/LC_MESSAGES/libwebengineviewer6.mo share/locale/cs/LC_MESSAGES/libmessagecomposer6.mo share/locale/cs/LC_MESSAGES/libmessagecore6.mo share/locale/cs/LC_MESSAGES/libmessagelist6.mo share/locale/cs/LC_MESSAGES/libmessageviewer6.mo share/locale/cs/LC_MESSAGES/libmimetreeparser6.mo share/locale/cs/LC_MESSAGES/libtemplateparser6.mo share/locale/cs/LC_MESSAGES/libwebengineviewer6.mo share/locale/cy/LC_MESSAGES/libmessagelist6.mo share/locale/cy/LC_MESSAGES/libmessageviewer6.mo share/locale/cy/LC_MESSAGES/libmimetreeparser6.mo share/locale/da/LC_MESSAGES/libmessagecomposer6.mo share/locale/da/LC_MESSAGES/libmessagecore6.mo share/locale/da/LC_MESSAGES/libmessagelist6.mo share/locale/da/LC_MESSAGES/libmessageviewer6.mo share/locale/da/LC_MESSAGES/libmimetreeparser6.mo share/locale/da/LC_MESSAGES/libtemplateparser6.mo share/locale/da/LC_MESSAGES/libwebengineviewer6.mo share/locale/de/LC_MESSAGES/libmessagecomposer6.mo share/locale/de/LC_MESSAGES/libmessagecore6.mo share/locale/de/LC_MESSAGES/libmessagelist6.mo share/locale/de/LC_MESSAGES/libmessageviewer6.mo share/locale/de/LC_MESSAGES/libmimetreeparser6.mo share/locale/de/LC_MESSAGES/libtemplateparser6.mo share/locale/de/LC_MESSAGES/libwebengineviewer6.mo share/locale/el/LC_MESSAGES/libmessagecomposer6.mo share/locale/el/LC_MESSAGES/libmessagecore6.mo share/locale/el/LC_MESSAGES/libmessagelist6.mo share/locale/el/LC_MESSAGES/libmessageviewer6.mo share/locale/el/LC_MESSAGES/libmimetreeparser6.mo share/locale/el/LC_MESSAGES/libtemplateparser6.mo share/locale/en_GB/LC_MESSAGES/libmessagecomposer6.mo share/locale/en_GB/LC_MESSAGES/libmessagecore6.mo share/locale/en_GB/LC_MESSAGES/libmessagelist6.mo share/locale/en_GB/LC_MESSAGES/libmessageviewer6.mo share/locale/en_GB/LC_MESSAGES/libmimetreeparser6.mo share/locale/en_GB/LC_MESSAGES/libtemplateparser6.mo share/locale/en_GB/LC_MESSAGES/libwebengineviewer6.mo share/locale/eo/LC_MESSAGES/libmessagecomposer6.mo share/locale/eo/LC_MESSAGES/libmessagecore6.mo share/locale/eo/LC_MESSAGES/libmessagelist6.mo share/locale/eo/LC_MESSAGES/libmessageviewer6.mo share/locale/eo/LC_MESSAGES/libmimetreeparser6.mo share/locale/eo/LC_MESSAGES/libtemplateparser6.mo share/locale/eo/LC_MESSAGES/libwebengineviewer6.mo share/locale/es/LC_MESSAGES/libmessagecomposer6.mo share/locale/es/LC_MESSAGES/libmessagecore6.mo share/locale/es/LC_MESSAGES/libmessagelist6.mo share/locale/es/LC_MESSAGES/libmessageviewer6.mo share/locale/es/LC_MESSAGES/libmimetreeparser6.mo share/locale/es/LC_MESSAGES/libtemplateparser6.mo share/locale/es/LC_MESSAGES/libwebengineviewer6.mo share/locale/et/LC_MESSAGES/libmessagecomposer6.mo share/locale/et/LC_MESSAGES/libmessagecore6.mo share/locale/et/LC_MESSAGES/libmessagelist6.mo share/locale/et/LC_MESSAGES/libmessageviewer6.mo share/locale/et/LC_MESSAGES/libmimetreeparser6.mo share/locale/et/LC_MESSAGES/libtemplateparser6.mo share/locale/et/LC_MESSAGES/libwebengineviewer6.mo share/locale/eu/LC_MESSAGES/libmessagecomposer6.mo share/locale/eu/LC_MESSAGES/libmessagecore6.mo share/locale/eu/LC_MESSAGES/libmessagelist6.mo share/locale/eu/LC_MESSAGES/libmessageviewer6.mo share/locale/eu/LC_MESSAGES/libmimetreeparser6.mo share/locale/eu/LC_MESSAGES/libtemplateparser6.mo share/locale/eu/LC_MESSAGES/libwebengineviewer6.mo share/locale/fa/LC_MESSAGES/libmessagelist6.mo share/locale/fa/LC_MESSAGES/libmessageviewer6.mo share/locale/fa/LC_MESSAGES/libmimetreeparser6.mo share/locale/fi/LC_MESSAGES/libmessagecomposer6.mo share/locale/fi/LC_MESSAGES/libmessagecore6.mo share/locale/fi/LC_MESSAGES/libmessagelist6.mo share/locale/fi/LC_MESSAGES/libmessageviewer6.mo share/locale/fi/LC_MESSAGES/libmimetreeparser6.mo share/locale/fi/LC_MESSAGES/libtemplateparser6.mo share/locale/fi/LC_MESSAGES/libwebengineviewer6.mo share/locale/fr/LC_MESSAGES/libmessagecomposer6.mo share/locale/fr/LC_MESSAGES/libmessagecore6.mo share/locale/fr/LC_MESSAGES/libmessagelist6.mo share/locale/fr/LC_MESSAGES/libmessageviewer6.mo share/locale/fr/LC_MESSAGES/libmimetreeparser6.mo share/locale/fr/LC_MESSAGES/libtemplateparser6.mo share/locale/fr/LC_MESSAGES/libwebengineviewer6.mo share/locale/fy/LC_MESSAGES/libmessagelist6.mo share/locale/fy/LC_MESSAGES/libmessageviewer6.mo share/locale/fy/LC_MESSAGES/libmimetreeparser6.mo share/locale/ga/LC_MESSAGES/libmessagecomposer6.mo share/locale/ga/LC_MESSAGES/libmessagecore6.mo share/locale/ga/LC_MESSAGES/libmessagelist6.mo share/locale/ga/LC_MESSAGES/libmessageviewer6.mo share/locale/ga/LC_MESSAGES/libmimetreeparser6.mo share/locale/ga/LC_MESSAGES/libtemplateparser6.mo share/locale/gl/LC_MESSAGES/libmessagecomposer6.mo share/locale/gl/LC_MESSAGES/libmessagecore6.mo share/locale/gl/LC_MESSAGES/libmessagelist6.mo share/locale/gl/LC_MESSAGES/libmessageviewer6.mo share/locale/gl/LC_MESSAGES/libmimetreeparser6.mo share/locale/gl/LC_MESSAGES/libtemplateparser6.mo share/locale/gl/LC_MESSAGES/libwebengineviewer6.mo share/locale/he/LC_MESSAGES/libmessagecomposer6.mo share/locale/he/LC_MESSAGES/libmessagecore6.mo share/locale/he/LC_MESSAGES/libmessagelist6.mo share/locale/he/LC_MESSAGES/libmessageviewer6.mo share/locale/he/LC_MESSAGES/libmimetreeparser6.mo share/locale/he/LC_MESSAGES/libtemplateparser6.mo share/locale/he/LC_MESSAGES/libwebengineviewer6.mo share/locale/hi/LC_MESSAGES/libmessagelist6.mo share/locale/hi/LC_MESSAGES/libmessageviewer6.mo share/locale/hi/LC_MESSAGES/libmimetreeparser6.mo share/locale/hr/LC_MESSAGES/libmessagelist6.mo share/locale/hr/LC_MESSAGES/libmessageviewer6.mo share/locale/hr/LC_MESSAGES/libmimetreeparser6.mo share/locale/hsb/LC_MESSAGES/libmessagecomposer6.mo share/locale/hsb/LC_MESSAGES/libmessagelist6.mo share/locale/hsb/LC_MESSAGES/libmessageviewer6.mo share/locale/hsb/LC_MESSAGES/libmimetreeparser6.mo share/locale/hu/LC_MESSAGES/libmessagecomposer6.mo share/locale/hu/LC_MESSAGES/libmessagecore6.mo share/locale/hu/LC_MESSAGES/libmessagelist6.mo share/locale/hu/LC_MESSAGES/libmessageviewer6.mo share/locale/hu/LC_MESSAGES/libmimetreeparser6.mo share/locale/hu/LC_MESSAGES/libtemplateparser6.mo share/locale/hu/LC_MESSAGES/libwebengineviewer6.mo share/locale/ia/LC_MESSAGES/libmessagecomposer6.mo share/locale/ia/LC_MESSAGES/libmessagecore6.mo share/locale/ia/LC_MESSAGES/libmessagelist6.mo share/locale/ia/LC_MESSAGES/libmessageviewer6.mo share/locale/ia/LC_MESSAGES/libmimetreeparser6.mo share/locale/ia/LC_MESSAGES/libtemplateparser6.mo share/locale/ia/LC_MESSAGES/libwebengineviewer6.mo share/locale/is/LC_MESSAGES/libmessagelist6.mo share/locale/is/LC_MESSAGES/libmessageviewer6.mo share/locale/is/LC_MESSAGES/libmimetreeparser6.mo share/locale/it/LC_MESSAGES/libmessagecomposer6.mo share/locale/it/LC_MESSAGES/libmessagecore6.mo share/locale/it/LC_MESSAGES/libmessagelist6.mo share/locale/it/LC_MESSAGES/libmessageviewer6.mo share/locale/it/LC_MESSAGES/libmimetreeparser6.mo share/locale/it/LC_MESSAGES/libtemplateparser6.mo share/locale/it/LC_MESSAGES/libwebengineviewer6.mo share/locale/ja/LC_MESSAGES/libmessagecomposer6.mo share/locale/ja/LC_MESSAGES/libmessagecore6.mo share/locale/ja/LC_MESSAGES/libmessagelist6.mo share/locale/ja/LC_MESSAGES/libmessageviewer6.mo share/locale/ja/LC_MESSAGES/libmimetreeparser6.mo share/locale/ja/LC_MESSAGES/libtemplateparser6.mo share/locale/ja/LC_MESSAGES/libwebengineviewer6.mo share/locale/ka/LC_MESSAGES/libmessagecomposer6.mo share/locale/ka/LC_MESSAGES/libmessagecore6.mo share/locale/ka/LC_MESSAGES/libmessagelist6.mo share/locale/ka/LC_MESSAGES/libmessageviewer6.mo share/locale/ka/LC_MESSAGES/libmimetreeparser6.mo share/locale/ka/LC_MESSAGES/libtemplateparser6.mo share/locale/ka/LC_MESSAGES/libwebengineviewer6.mo share/locale/kk/LC_MESSAGES/libmessagecomposer6.mo share/locale/kk/LC_MESSAGES/libmessagecore6.mo share/locale/kk/LC_MESSAGES/libmessagelist6.mo share/locale/kk/LC_MESSAGES/libmessageviewer6.mo share/locale/kk/LC_MESSAGES/libmimetreeparser6.mo share/locale/kk/LC_MESSAGES/libtemplateparser6.mo share/locale/km/LC_MESSAGES/libmessagecore6.mo share/locale/km/LC_MESSAGES/libmessagelist6.mo share/locale/km/LC_MESSAGES/libmessageviewer6.mo share/locale/km/LC_MESSAGES/libmimetreeparser6.mo share/locale/km/LC_MESSAGES/libtemplateparser6.mo share/locale/ko/LC_MESSAGES/libmessagecomposer6.mo share/locale/ko/LC_MESSAGES/libmessagecore6.mo share/locale/ko/LC_MESSAGES/libmessagelist6.mo share/locale/ko/LC_MESSAGES/libmessageviewer6.mo share/locale/ko/LC_MESSAGES/libmimetreeparser6.mo share/locale/ko/LC_MESSAGES/libtemplateparser6.mo share/locale/ko/LC_MESSAGES/libwebengineviewer6.mo share/locale/lt/LC_MESSAGES/libmessagecomposer6.mo share/locale/lt/LC_MESSAGES/libmessagecore6.mo share/locale/lt/LC_MESSAGES/libmessagelist6.mo share/locale/lt/LC_MESSAGES/libmessageviewer6.mo share/locale/lt/LC_MESSAGES/libmimetreeparser6.mo share/locale/lt/LC_MESSAGES/libtemplateparser6.mo share/locale/lt/LC_MESSAGES/libwebengineviewer6.mo share/locale/lv/LC_MESSAGES/libmessagecomposer6.mo share/locale/lv/LC_MESSAGES/libmessagecore6.mo share/locale/lv/LC_MESSAGES/libmessagelist6.mo share/locale/lv/LC_MESSAGES/libmessageviewer6.mo share/locale/lv/LC_MESSAGES/libmimetreeparser6.mo share/locale/lv/LC_MESSAGES/libtemplateparser6.mo share/locale/lv/LC_MESSAGES/libwebengineviewer6.mo share/locale/mai/LC_MESSAGES/libmessagelist6.mo share/locale/mai/LC_MESSAGES/libmessageviewer6.mo share/locale/mai/LC_MESSAGES/libmimetreeparser6.mo share/locale/mai/LC_MESSAGES/libtemplateparser6.mo share/locale/mk/LC_MESSAGES/libmessagelist6.mo share/locale/mk/LC_MESSAGES/libmessageviewer6.mo share/locale/mk/LC_MESSAGES/libmimetreeparser6.mo share/locale/mr/LC_MESSAGES/libmessagecomposer6.mo share/locale/mr/LC_MESSAGES/libmessagecore6.mo share/locale/mr/LC_MESSAGES/libmessagelist6.mo share/locale/mr/LC_MESSAGES/libmessageviewer6.mo share/locale/mr/LC_MESSAGES/libmimetreeparser6.mo share/locale/mr/LC_MESSAGES/libtemplateparser6.mo share/locale/ms/LC_MESSAGES/libmessagelist6.mo share/locale/ms/LC_MESSAGES/libmessageviewer6.mo share/locale/ms/LC_MESSAGES/libmimetreeparser6.mo share/locale/nb/LC_MESSAGES/libmessagecomposer6.mo share/locale/nb/LC_MESSAGES/libmessagecore6.mo share/locale/nb/LC_MESSAGES/libmessagelist6.mo share/locale/nb/LC_MESSAGES/libmessageviewer6.mo share/locale/nb/LC_MESSAGES/libmimetreeparser6.mo share/locale/nb/LC_MESSAGES/libtemplateparser6.mo share/locale/nds/LC_MESSAGES/libmessagecomposer6.mo share/locale/nds/LC_MESSAGES/libmessagecore6.mo share/locale/nds/LC_MESSAGES/libmessagelist6.mo share/locale/nds/LC_MESSAGES/libmessageviewer6.mo share/locale/nds/LC_MESSAGES/libmimetreeparser6.mo share/locale/nds/LC_MESSAGES/libtemplateparser6.mo share/locale/ne/LC_MESSAGES/libmessagelist6.mo share/locale/ne/LC_MESSAGES/libmessageviewer6.mo share/locale/ne/LC_MESSAGES/libmimetreeparser6.mo share/locale/nl/LC_MESSAGES/libmessagecomposer6.mo share/locale/nl/LC_MESSAGES/libmessagecore6.mo share/locale/nl/LC_MESSAGES/libmessagelist6.mo share/locale/nl/LC_MESSAGES/libmessageviewer6.mo share/locale/nl/LC_MESSAGES/libmimetreeparser6.mo share/locale/nl/LC_MESSAGES/libtemplateparser6.mo share/locale/nl/LC_MESSAGES/libwebengineviewer6.mo share/locale/nn/LC_MESSAGES/libmessagecomposer6.mo share/locale/nn/LC_MESSAGES/libmessagecore6.mo share/locale/nn/LC_MESSAGES/libmessagelist6.mo share/locale/nn/LC_MESSAGES/libmessageviewer6.mo share/locale/nn/LC_MESSAGES/libmimetreeparser6.mo share/locale/pa/LC_MESSAGES/libmessagecomposer6.mo share/locale/pa/LC_MESSAGES/libmessagecore6.mo share/locale/pa/LC_MESSAGES/libmessagelist6.mo share/locale/pa/LC_MESSAGES/libmessageviewer6.mo share/locale/pa/LC_MESSAGES/libmimetreeparser6.mo share/locale/pa/LC_MESSAGES/libtemplateparser6.mo share/locale/pl/LC_MESSAGES/libmessagecomposer6.mo share/locale/pl/LC_MESSAGES/libmessagecore6.mo share/locale/pl/LC_MESSAGES/libmessagelist6.mo share/locale/pl/LC_MESSAGES/libmessageviewer6.mo share/locale/pl/LC_MESSAGES/libmimetreeparser6.mo share/locale/pl/LC_MESSAGES/libtemplateparser6.mo share/locale/pl/LC_MESSAGES/libwebengineviewer6.mo share/locale/pt/LC_MESSAGES/libmessagecomposer6.mo share/locale/pt/LC_MESSAGES/libmessagecore6.mo share/locale/pt/LC_MESSAGES/libmessagelist6.mo share/locale/pt/LC_MESSAGES/libmessageviewer6.mo share/locale/pt/LC_MESSAGES/libmimetreeparser6.mo share/locale/pt/LC_MESSAGES/libtemplateparser6.mo share/locale/pt/LC_MESSAGES/libwebengineviewer6.mo share/locale/pt_BR/LC_MESSAGES/libmessagecomposer6.mo share/locale/pt_BR/LC_MESSAGES/libmessagecore6.mo share/locale/pt_BR/LC_MESSAGES/libmessagelist6.mo share/locale/pt_BR/LC_MESSAGES/libmessageviewer6.mo share/locale/pt_BR/LC_MESSAGES/libmimetreeparser6.mo share/locale/pt_BR/LC_MESSAGES/libtemplateparser6.mo share/locale/pt_BR/LC_MESSAGES/libwebengineviewer6.mo share/locale/ro/LC_MESSAGES/libmessagecomposer6.mo share/locale/ro/LC_MESSAGES/libmessagecore6.mo share/locale/ro/LC_MESSAGES/libmessagelist6.mo share/locale/ro/LC_MESSAGES/libmessageviewer6.mo share/locale/ro/LC_MESSAGES/libmimetreeparser6.mo share/locale/ro/LC_MESSAGES/libtemplateparser6.mo share/locale/ru/LC_MESSAGES/libmessagecomposer6.mo share/locale/ru/LC_MESSAGES/libmessagecore6.mo share/locale/ru/LC_MESSAGES/libmessagelist6.mo share/locale/ru/LC_MESSAGES/libmessageviewer6.mo share/locale/ru/LC_MESSAGES/libmimetreeparser6.mo share/locale/ru/LC_MESSAGES/libtemplateparser6.mo share/locale/ru/LC_MESSAGES/libwebengineviewer6.mo share/locale/se/LC_MESSAGES/libmessagelist6.mo share/locale/se/LC_MESSAGES/libmessageviewer6.mo share/locale/se/LC_MESSAGES/libmimetreeparser6.mo share/locale/sk/LC_MESSAGES/libmessagecomposer6.mo share/locale/sk/LC_MESSAGES/libmessagecore6.mo share/locale/sk/LC_MESSAGES/libmessagelist6.mo share/locale/sk/LC_MESSAGES/libmessageviewer6.mo share/locale/sk/LC_MESSAGES/libmimetreeparser6.mo share/locale/sk/LC_MESSAGES/libtemplateparser6.mo share/locale/sk/LC_MESSAGES/libwebengineviewer6.mo share/locale/sl/LC_MESSAGES/libmessagecomposer6.mo share/locale/sl/LC_MESSAGES/libmessagecore6.mo share/locale/sl/LC_MESSAGES/libmessagelist6.mo share/locale/sl/LC_MESSAGES/libmessageviewer6.mo share/locale/sl/LC_MESSAGES/libmimetreeparser6.mo share/locale/sl/LC_MESSAGES/libtemplateparser6.mo share/locale/sl/LC_MESSAGES/libwebengineviewer6.mo share/locale/sr/LC_MESSAGES/libmessagecomposer6.mo share/locale/sr/LC_MESSAGES/libmessagecore6.mo share/locale/sr/LC_MESSAGES/libmessagelist6.mo share/locale/sr/LC_MESSAGES/libmessageviewer6.mo share/locale/sr/LC_MESSAGES/libmimetreeparser6.mo share/locale/sr/LC_MESSAGES/libtemplateparser6.mo share/locale/sr/LC_MESSAGES/libwebengineviewer6.mo share/locale/sr@ijekavian/LC_MESSAGES/libmessagecomposer6.mo share/locale/sr@ijekavian/LC_MESSAGES/libmessagecore6.mo share/locale/sr@ijekavian/LC_MESSAGES/libmessagelist6.mo share/locale/sr@ijekavian/LC_MESSAGES/libmessageviewer6.mo share/locale/sr@ijekavian/LC_MESSAGES/libmimetreeparser6.mo share/locale/sr@ijekavian/LC_MESSAGES/libtemplateparser6.mo share/locale/sr@ijekavian/LC_MESSAGES/libwebengineviewer6.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/libmessagecomposer6.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/libmessagecore6.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/libmessagelist6.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/libmessageviewer6.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/libmimetreeparser6.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/libtemplateparser6.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/libwebengineviewer6.mo share/locale/sr@latin/LC_MESSAGES/libmessagecomposer6.mo share/locale/sr@latin/LC_MESSAGES/libmessagecore6.mo share/locale/sr@latin/LC_MESSAGES/libmessagelist6.mo share/locale/sr@latin/LC_MESSAGES/libmessageviewer6.mo share/locale/sr@latin/LC_MESSAGES/libmimetreeparser6.mo share/locale/sr@latin/LC_MESSAGES/libtemplateparser6.mo share/locale/sr@latin/LC_MESSAGES/libwebengineviewer6.mo share/locale/sv/LC_MESSAGES/libmessagecomposer6.mo share/locale/sv/LC_MESSAGES/libmessagecore6.mo share/locale/sv/LC_MESSAGES/libmessagelist6.mo share/locale/sv/LC_MESSAGES/libmessageviewer6.mo share/locale/sv/LC_MESSAGES/libmimetreeparser6.mo share/locale/sv/LC_MESSAGES/libtemplateparser6.mo share/locale/sv/LC_MESSAGES/libwebengineviewer6.mo share/locale/ta/LC_MESSAGES/libmessagecomposer6.mo share/locale/ta/LC_MESSAGES/libmessagecore6.mo share/locale/ta/LC_MESSAGES/libmessagelist6.mo share/locale/ta/LC_MESSAGES/libmessageviewer6.mo share/locale/ta/LC_MESSAGES/libmimetreeparser6.mo share/locale/ta/LC_MESSAGES/libtemplateparser6.mo share/locale/ta/LC_MESSAGES/libwebengineviewer6.mo share/locale/tg/LC_MESSAGES/libmessagelist6.mo share/locale/tg/LC_MESSAGES/libmessageviewer6.mo share/locale/tg/LC_MESSAGES/libmimetreeparser6.mo share/locale/th/LC_MESSAGES/libmessagecore6.mo share/locale/th/LC_MESSAGES/libmessagelist6.mo share/locale/th/LC_MESSAGES/libmessageviewer6.mo share/locale/th/LC_MESSAGES/libmimetreeparser6.mo share/locale/tr/LC_MESSAGES/libmessagecomposer6.mo share/locale/tr/LC_MESSAGES/libmessagecore6.mo share/locale/tr/LC_MESSAGES/libmessagelist6.mo share/locale/tr/LC_MESSAGES/libmessageviewer6.mo share/locale/tr/LC_MESSAGES/libmimetreeparser6.mo share/locale/tr/LC_MESSAGES/libtemplateparser6.mo share/locale/tr/LC_MESSAGES/libwebengineviewer6.mo share/locale/ug/LC_MESSAGES/libmessagecomposer6.mo share/locale/ug/LC_MESSAGES/libmessagecore6.mo share/locale/ug/LC_MESSAGES/libmessagelist6.mo share/locale/ug/LC_MESSAGES/libmessageviewer6.mo share/locale/ug/LC_MESSAGES/libmimetreeparser6.mo share/locale/ug/LC_MESSAGES/libtemplateparser6.mo share/locale/uk/LC_MESSAGES/libmessagecomposer6.mo share/locale/uk/LC_MESSAGES/libmessagecore6.mo share/locale/uk/LC_MESSAGES/libmessagelist6.mo share/locale/uk/LC_MESSAGES/libmessageviewer6.mo share/locale/uk/LC_MESSAGES/libmimetreeparser6.mo share/locale/uk/LC_MESSAGES/libtemplateparser6.mo share/locale/uk/LC_MESSAGES/libwebengineviewer6.mo share/locale/uz/LC_MESSAGES/libmessagelist6.mo share/locale/uz/LC_MESSAGES/libmessageviewer6.mo share/locale/uz/LC_MESSAGES/libmimetreeparser6.mo share/locale/uz@cyrillic/LC_MESSAGES/libmessagelist6.mo share/locale/uz@cyrillic/LC_MESSAGES/libmessageviewer6.mo share/locale/uz@cyrillic/LC_MESSAGES/libmimetreeparser6.mo share/locale/wa/LC_MESSAGES/libmessagelist6.mo share/locale/wa/LC_MESSAGES/libmessageviewer6.mo share/locale/wa/LC_MESSAGES/libmimetreeparser6.mo share/locale/wa/LC_MESSAGES/libtemplateparser6.mo share/locale/xh/LC_MESSAGES/libmessagelist6.mo share/locale/xh/LC_MESSAGES/libmessageviewer6.mo share/locale/xh/LC_MESSAGES/libmimetreeparser6.mo share/locale/zh_CN/LC_MESSAGES/libmessagecomposer6.mo share/locale/zh_CN/LC_MESSAGES/libmessagecore6.mo share/locale/zh_CN/LC_MESSAGES/libmessagelist6.mo share/locale/zh_CN/LC_MESSAGES/libmessageviewer6.mo share/locale/zh_CN/LC_MESSAGES/libmimetreeparser6.mo share/locale/zh_CN/LC_MESSAGES/libtemplateparser6.mo share/locale/zh_CN/LC_MESSAGES/libwebengineviewer6.mo share/locale/zh_TW/LC_MESSAGES/libmessagecomposer6.mo share/locale/zh_TW/LC_MESSAGES/libmessagecore6.mo share/locale/zh_TW/LC_MESSAGES/libmessagelist6.mo share/locale/zh_TW/LC_MESSAGES/libmessageviewer6.mo share/locale/zh_TW/LC_MESSAGES/libmimetreeparser6.mo share/locale/zh_TW/LC_MESSAGES/libtemplateparser6.mo share/locale/zh_TW/LC_MESSAGES/libwebengineviewer6.mo share/messagelist/pics/mail-horizontal-space.png share/messagelist/pics/mail-vertical-separator-line.png share/messageviewer/about/default/main.css share/messageviewer/about/default/main.html share/messageviewer/about/default/splash.theme share/messageviewer/about/default/status.html share/messageviewer/defaultthemes/5.2/header.html share/messageviewer/defaultthemes/5.2/kmail_default.desktop share/messageviewer/defaultthemes/5.2/photo.png share/messageviewer/defaultthemes/5.2/photo.svg share/messageviewer/defaultthemes/5.2/style.css share/messageviewer/longurlServices.json share/org.kde.syntax-highlighting/syntax/kmail-template.xml share/qlogging-categories6/messagelib.categories share/qlogging-categories6/messagelib.renamecategories diff --git a/net/mimetreeparser/distinfo b/net/mimetreeparser/distinfo index 2a6c39e8fa80..e0214080603b 100644 --- a/net/mimetreeparser/distinfo +++ b/net/mimetreeparser/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1734460341 -SHA256 (KDE/release-service/24.12.0/mimetreeparser-24.12.0.tar.xz) = 1994ceb0704bb12eff08a5850a7986acd99979e248889c9631aba8f82e42dab6 -SIZE (KDE/release-service/24.12.0/mimetreeparser-24.12.0.tar.xz) = 646928 +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 diff --git a/net/pimcommon/distinfo b/net/pimcommon/distinfo index 733e8a4a9067..e0a900eb309c 100644 --- a/net/pimcommon/distinfo +++ b/net/pimcommon/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1734460342 -SHA256 (KDE/release-service/24.12.0/pimcommon-24.12.0.tar.xz) = bcca986072612234a627c15777a530039904615288b9ce0d0d20f975c0adec24 -SIZE (KDE/release-service/24.12.0/pimcommon-24.12.0.tar.xz) = 365608 +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 diff --git a/science/kalzium/distinfo b/science/kalzium/distinfo index b5e951797679..5b43a74122bc 100644 --- a/science/kalzium/distinfo +++ b/science/kalzium/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1734460345 -SHA256 (KDE/release-service/24.12.0/kalzium-24.12.0.tar.xz) = 99dff6426c31e67c6c6e2774929f23a3980a755be06c6a79772a27079b1f9bc9 -SIZE (KDE/release-service/24.12.0/kalzium-24.12.0.tar.xz) = 22682696 +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 diff --git a/science/step/distinfo b/science/step/distinfo index 7c8f94746aa2..e4a133e532fe 100644 --- a/science/step/distinfo +++ b/science/step/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1734460346 -SHA256 (KDE/release-service/24.12.0/step-24.12.0.tar.xz) = 6594a0e02b5f9775c340638c132092e76c7d8f16fbd94d6ea6303fa70a95fe5a -SIZE (KDE/release-service/24.12.0/step-24.12.0.tar.xz) = 988548 +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 diff --git a/security/keysmith/distinfo b/security/keysmith/distinfo index 8c81327661c6..ed48b11056a8 100644 --- a/security/keysmith/distinfo +++ b/security/keysmith/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1734460348 -SHA256 (KDE/release-service/24.12.0/keysmith-24.12.0.tar.xz) = e57b8c0d41783c6dd9fef3f5edf9a78dcf63f19acb988b4ec7b5b0fd2548a325 -SIZE (KDE/release-service/24.12.0/keysmith-24.12.0.tar.xz) = 172432 +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 diff --git a/security/keysmith/pkg-plist b/security/keysmith/pkg-plist index 621e5a8122cb..72d68c9ed50f 100644 --- a/security/keysmith/pkg-plist +++ b/security/keysmith/pkg-plist @@ -1,40 +1,41 @@ bin/keysmith share/applications/org.kde.keysmith.desktop share/icons/hicolor/scalable/apps/keysmith.svg +share/locale/ar/LC_MESSAGES/keysmith.mo share/locale/ast/LC_MESSAGES/keysmith.mo share/locale/ca/LC_MESSAGES/keysmith.mo share/locale/ca@valencia/LC_MESSAGES/keysmith.mo share/locale/cs/LC_MESSAGES/keysmith.mo share/locale/de/LC_MESSAGES/keysmith.mo share/locale/en_GB/LC_MESSAGES/keysmith.mo share/locale/eo/LC_MESSAGES/keysmith.mo share/locale/es/LC_MESSAGES/keysmith.mo share/locale/et/LC_MESSAGES/keysmith.mo share/locale/eu/LC_MESSAGES/keysmith.mo share/locale/fi/LC_MESSAGES/keysmith.mo share/locale/fr/LC_MESSAGES/keysmith.mo share/locale/gl/LC_MESSAGES/keysmith.mo share/locale/he/LC_MESSAGES/keysmith.mo share/locale/hu/LC_MESSAGES/keysmith.mo share/locale/ia/LC_MESSAGES/keysmith.mo share/locale/it/LC_MESSAGES/keysmith.mo share/locale/ja/LC_MESSAGES/keysmith.mo share/locale/ka/LC_MESSAGES/keysmith.mo share/locale/ko/LC_MESSAGES/keysmith.mo share/locale/lt/LC_MESSAGES/keysmith.mo share/locale/nl/LC_MESSAGES/keysmith.mo share/locale/nn/LC_MESSAGES/keysmith.mo share/locale/pa/LC_MESSAGES/keysmith.mo share/locale/pl/LC_MESSAGES/keysmith.mo share/locale/pt/LC_MESSAGES/keysmith.mo share/locale/pt_BR/LC_MESSAGES/keysmith.mo share/locale/ro/LC_MESSAGES/keysmith.mo share/locale/ru/LC_MESSAGES/keysmith.mo share/locale/sk/LC_MESSAGES/keysmith.mo share/locale/sl/LC_MESSAGES/keysmith.mo share/locale/sv/LC_MESSAGES/keysmith.mo share/locale/tr/LC_MESSAGES/keysmith.mo share/locale/uk/LC_MESSAGES/keysmith.mo share/locale/zh_CN/LC_MESSAGES/keysmith.mo share/locale/zh_TW/LC_MESSAGES/keysmith.mo share/metainfo/org.kde.keysmith.appdata.xml diff --git a/security/kgpg/distinfo b/security/kgpg/distinfo index 3fe44978bd12..a3330f84de61 100644 --- a/security/kgpg/distinfo +++ b/security/kgpg/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1734460350 -SHA256 (KDE/release-service/24.12.0/kgpg-24.12.0.tar.xz) = a4005c4ab6505c80b7d29e1b507161e98b8c4134300badda00ef7c114af0ebc2 -SIZE (KDE/release-service/24.12.0/kgpg-24.12.0.tar.xz) = 3032072 +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 diff --git a/security/kleopatra/distinfo b/security/kleopatra/distinfo index 5a764fce087b..70be63983b15 100644 --- a/security/kleopatra/distinfo +++ b/security/kleopatra/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1734460352 -SHA256 (KDE/release-service/24.12.0/kleopatra-24.12.0.tar.xz) = 357c2ee2331812a9f0d004725526479327ba293dcc2eb4ce752f66e13a5e0045 -SIZE (KDE/release-service/24.12.0/kleopatra-24.12.0.tar.xz) = 2785572 +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 diff --git a/security/kpkpass/distinfo b/security/kpkpass/distinfo index b44d330cf93d..ccdaebea4ce8 100644 --- a/security/kpkpass/distinfo +++ b/security/kpkpass/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1734460353 -SHA256 (KDE/release-service/24.12.0/kpkpass-24.12.0.tar.xz) = 803f2a222e844f09b3ac68f0ee2c4032d2a3694c60b1188a9c5527e64e26c24b -SIZE (KDE/release-service/24.12.0/kpkpass-24.12.0.tar.xz) = 29480 +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 diff --git a/security/kwalletmanager/distinfo b/security/kwalletmanager/distinfo index 2e8801032ff1..db4b112ccd2a 100644 --- a/security/kwalletmanager/distinfo +++ b/security/kwalletmanager/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1734460355 -SHA256 (KDE/release-service/24.12.0/kwalletmanager-24.12.0.tar.xz) = 5c2beeaadb9efbcbb9ebff8945a57d5806cccad8e78a8514f578253871449596 -SIZE (KDE/release-service/24.12.0/kwalletmanager-24.12.0.tar.xz) = 1048876 +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 diff --git a/security/libkleo/distinfo b/security/libkleo/distinfo index d59e7d178ed1..47e62e5bf2fd 100644 --- a/security/libkleo/distinfo +++ b/security/libkleo/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1734460357 -SHA256 (KDE/release-service/24.12.0/libkleo-24.12.0.tar.xz) = f916785386e87bc9381cc9a4ff7502a74fc7e30eb1d6e82f9c44ed4bae9f1077 -SIZE (KDE/release-service/24.12.0/libkleo-24.12.0.tar.xz) = 638100 +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 diff --git a/sysutils/baloo-widgets/distinfo b/sysutils/baloo-widgets/distinfo index aac31af3909f..453f266af20a 100644 --- a/sysutils/baloo-widgets/distinfo +++ b/sysutils/baloo-widgets/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1734460359 -SHA256 (KDE/release-service/24.12.0/baloo-widgets-24.12.0.tar.xz) = 98893290528c2d82d851c5c743e64a4b7d44a3805cd38a33b0c5e462e3eeb616 -SIZE (KDE/release-service/24.12.0/baloo-widgets-24.12.0.tar.xz) = 277992 +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 diff --git a/sysutils/filelight/distinfo b/sysutils/filelight/distinfo index f0129788b5ea..816d9a7b8179 100644 --- a/sysutils/filelight/distinfo +++ b/sysutils/filelight/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1734460360 -SHA256 (KDE/release-service/24.12.0/filelight-24.12.0.tar.xz) = f8102f0d74f7dc3b6f17906993cbc63570f498c6f016a39a13503fdbe6d3b6b0 -SIZE (KDE/release-service/24.12.0/filelight-24.12.0.tar.xz) = 686512 +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 diff --git a/sysutils/k3b/distinfo b/sysutils/k3b/distinfo index ca9b9b7f0585..398eea27f2e4 100644 --- a/sysutils/k3b/distinfo +++ b/sysutils/k3b/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1734460362 -SHA256 (KDE/release-service/24.12.0/k3b-24.12.0.tar.xz) = 2f25aed2645a758da6a781dfda8a0e7fc29a007d47edf66cdb4ab648873b4a31 -SIZE (KDE/release-service/24.12.0/k3b-24.12.0.tar.xz) = 10696880 +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 diff --git a/sysutils/kbackup/distinfo b/sysutils/kbackup/distinfo index 0731dd54f13f..c0b2a2641e14 100644 --- a/sysutils/kbackup/distinfo +++ b/sysutils/kbackup/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1734460364 -SHA256 (KDE/release-service/24.12.0/kbackup-24.12.0.tar.xz) = 22d1c53e75f2c2164c9ab1b94d3b74156f34e03ebafdb4865218dd4dc7825b2a -SIZE (KDE/release-service/24.12.0/kbackup-24.12.0.tar.xz) = 388492 +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 diff --git a/sysutils/kcron/distinfo b/sysutils/kcron/distinfo index a9b9f3ab8f73..a202c7233d21 100644 --- a/sysutils/kcron/distinfo +++ b/sysutils/kcron/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1734460366 -SHA256 (KDE/release-service/24.12.0/kcron-24.12.0.tar.xz) = 169fdd6376aaca069f3f078671651e90d44675bb29e3b3704de067b3a04dc92f -SIZE (KDE/release-service/24.12.0/kcron-24.12.0.tar.xz) = 896404 +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 diff --git a/sysutils/kdebugsettings/distinfo b/sysutils/kdebugsettings/distinfo index 603a5183b8a4..af140048a259 100644 --- a/sysutils/kdebugsettings/distinfo +++ b/sysutils/kdebugsettings/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1734460367 -SHA256 (KDE/release-service/24.12.0/kdebugsettings-24.12.0.tar.xz) = 3aaef428148e92882eb184967ba73d92e053d35cb86a0157e91609089a97aaf9 -SIZE (KDE/release-service/24.12.0/kdebugsettings-24.12.0.tar.xz) = 116796 +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 diff --git a/sysutils/kdf/distinfo b/sysutils/kdf/distinfo index 8004b75f19a1..119dcff7c7e7 100644 --- a/sysutils/kdf/distinfo +++ b/sysutils/kdf/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1734460369 -SHA256 (KDE/release-service/24.12.0/kdf-24.12.0.tar.xz) = 2f1d21d78676a819a60ebb6825f0ede3af11d67015a07b46bfe6a92b7fa6cfba -SIZE (KDE/release-service/24.12.0/kdf-24.12.0.tar.xz) = 479492 +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 diff --git a/sysutils/kdialog/distinfo b/sysutils/kdialog/distinfo index 0445c7ca5ab0..225f17f705fb 100644 --- a/sysutils/kdialog/distinfo +++ b/sysutils/kdialog/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1734460371 -SHA256 (KDE/release-service/24.12.0/kdialog-24.12.0.tar.xz) = 6922aa49019b14acb3fb3f22151ff71021aa6b31e8a90590c3b87178984e569f -SIZE (KDE/release-service/24.12.0/kdialog-24.12.0.tar.xz) = 146932 +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 diff --git a/sysutils/khelpcenter/distinfo b/sysutils/khelpcenter/distinfo index 5303f4d70c52..6f15e47b9791 100644 --- a/sysutils/khelpcenter/distinfo +++ b/sysutils/khelpcenter/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1734460373 -SHA256 (KDE/release-service/24.12.0/khelpcenter-24.12.0.tar.xz) = 2f9853d63c77627772b1eff00f508cc53ba2f853ffabca71ec004c5c27e31b39 -SIZE (KDE/release-service/24.12.0/khelpcenter-24.12.0.tar.xz) = 4239432 +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 diff --git a/sysutils/kpmcore/distinfo b/sysutils/kpmcore/distinfo index 2880f6b85543..53b4d1858973 100644 --- a/sysutils/kpmcore/distinfo +++ b/sysutils/kpmcore/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1734460374 -SHA256 (KDE/release-service/24.12.0/kpmcore-24.12.0.tar.xz) = cfcc265902680f15031e966f86d5d2a4e7ca124abcbb4428199422ab205461eb -SIZE (KDE/release-service/24.12.0/kpmcore-24.12.0.tar.xz) = 646316 +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 diff --git a/sysutils/kpmcore/pkg-plist b/sysutils/kpmcore/pkg-plist index f9a52610176c..84abdb86f448 100644 --- a/sysutils/kpmcore/pkg-plist +++ b/sysutils/kpmcore/pkg-plist @@ -1,185 +1,186 @@ include/kpmcore/backend/corebackend.h include/kpmcore/backend/corebackendmanager.h include/kpmcore/core/device.h include/kpmcore/core/devicescanner.h include/kpmcore/core/diskdevice.h include/kpmcore/core/fstab.h include/kpmcore/core/lvmdevice.h include/kpmcore/core/operationrunner.h include/kpmcore/core/operationstack.h include/kpmcore/core/partition.h include/kpmcore/core/partitionalignment.h include/kpmcore/core/partitionnode.h include/kpmcore/core/partitionrole.h include/kpmcore/core/partitiontable.h include/kpmcore/core/smartattribute.h include/kpmcore/core/smartstatus.h include/kpmcore/core/softwareraid.h include/kpmcore/core/volumemanagerdevice.h include/kpmcore/fs/apfs.h include/kpmcore/fs/bitlocker.h include/kpmcore/fs/btrfs.h include/kpmcore/fs/exfat.h include/kpmcore/fs/ext2.h include/kpmcore/fs/ext3.h include/kpmcore/fs/ext4.h include/kpmcore/fs/extended.h include/kpmcore/fs/f2fs.h include/kpmcore/fs/fat12.h include/kpmcore/fs/fat16.h include/kpmcore/fs/fat32.h include/kpmcore/fs/filesystem.h include/kpmcore/fs/filesystemfactory.h include/kpmcore/fs/hfs.h include/kpmcore/fs/hfsplus.h include/kpmcore/fs/hpfs.h include/kpmcore/fs/iso9660.h include/kpmcore/fs/jfs.h include/kpmcore/fs/linuxraidmember.h include/kpmcore/fs/linuxswap.h include/kpmcore/fs/luks.h include/kpmcore/fs/luks2.h include/kpmcore/fs/lvm2_pv.h include/kpmcore/fs/minix.h include/kpmcore/fs/nilfs2.h include/kpmcore/fs/ntfs.h include/kpmcore/fs/ocfs2.h include/kpmcore/fs/reiser4.h include/kpmcore/fs/reiserfs.h include/kpmcore/fs/udf.h include/kpmcore/fs/ufs.h include/kpmcore/fs/unformatted.h include/kpmcore/fs/unknown.h include/kpmcore/fs/xfs.h include/kpmcore/fs/zfs.h include/kpmcore/gui/partresizerwidget.h include/kpmcore/gui/partwidget.h include/kpmcore/gui/partwidgetbase.h include/kpmcore/jobs/job.h include/kpmcore/ops/backupoperation.h include/kpmcore/ops/checkoperation.h include/kpmcore/ops/copyoperation.h include/kpmcore/ops/createfilesystemoperation.h include/kpmcore/ops/createpartitiontableoperation.h include/kpmcore/ops/createvolumegroupoperation.h include/kpmcore/ops/deactivatevolumegroupoperation.h include/kpmcore/ops/deleteoperation.h include/kpmcore/ops/newoperation.h include/kpmcore/ops/operation.h include/kpmcore/ops/removevolumegroupoperation.h include/kpmcore/ops/resizeoperation.h include/kpmcore/ops/resizevolumegroupoperation.h include/kpmcore/ops/restoreoperation.h include/kpmcore/ops/setfilesystemlabeloperation.h include/kpmcore/ops/setpartflagsoperation.h include/kpmcore/util/capacity.h include/kpmcore/util/externalcommand.h include/kpmcore/util/globallog.h include/kpmcore/util/helpers.h include/kpmcore/util/htmlreport.h include/kpmcore/util/libpartitionmanagerexport.h include/kpmcore/util/report.h lib/cmake/KPMcore/KPMcoreConfig.cmake lib/cmake/KPMcore/KPMcoreConfigVersion.cmake lib/cmake/KPMcore/KPMcoreTargets-%%CMAKE_BUILD_TYPE%%.cmake lib/cmake/KPMcore/KPMcoreTargets.cmake lib/libexec/kpmcore_externalcommand lib/libkpmcore.so lib/libkpmcore.so.12 lib/libkpmcore.so.%%KDE_APPLICATIONS_VERSION%% %%QT_PLUGINDIR%%/kpmcore/pmdummybackendplugin.so share/dbus-1/system-services/org.kde.kpmcore.helperinterface.service share/dbus-1/system.d/org.kde.kpmcore.helperinterface.conf +share/locale/ar/LC_MESSAGES/kpmcore._policy_.mo share/locale/ar/LC_MESSAGES/kpmcore.mo share/locale/ast/LC_MESSAGES/kpmcore._policy_.mo share/locale/ast/LC_MESSAGES/kpmcore.mo share/locale/bg/LC_MESSAGES/kpmcore._policy_.mo share/locale/bg/LC_MESSAGES/kpmcore.mo share/locale/bs/LC_MESSAGES/kpmcore.mo share/locale/ca/LC_MESSAGES/kpmcore._policy_.mo share/locale/ca/LC_MESSAGES/kpmcore.mo share/locale/ca@valencia/LC_MESSAGES/kpmcore._policy_.mo share/locale/ca@valencia/LC_MESSAGES/kpmcore.mo share/locale/cs/LC_MESSAGES/kpmcore._policy_.mo share/locale/cs/LC_MESSAGES/kpmcore.mo share/locale/da/LC_MESSAGES/kpmcore._policy_.mo share/locale/da/LC_MESSAGES/kpmcore.mo share/locale/de/LC_MESSAGES/kpmcore._policy_.mo share/locale/de/LC_MESSAGES/kpmcore.mo share/locale/el/LC_MESSAGES/kpmcore._policy_.mo share/locale/el/LC_MESSAGES/kpmcore.mo share/locale/en_GB/LC_MESSAGES/kpmcore._policy_.mo share/locale/en_GB/LC_MESSAGES/kpmcore.mo share/locale/eo/LC_MESSAGES/kpmcore._policy_.mo share/locale/eo/LC_MESSAGES/kpmcore.mo share/locale/es/LC_MESSAGES/kpmcore._policy_.mo share/locale/es/LC_MESSAGES/kpmcore.mo share/locale/et/LC_MESSAGES/kpmcore._policy_.mo share/locale/et/LC_MESSAGES/kpmcore.mo share/locale/eu/LC_MESSAGES/kpmcore._policy_.mo share/locale/eu/LC_MESSAGES/kpmcore.mo share/locale/fi/LC_MESSAGES/kpmcore._policy_.mo share/locale/fi/LC_MESSAGES/kpmcore.mo share/locale/fr/LC_MESSAGES/kpmcore._policy_.mo share/locale/fr/LC_MESSAGES/kpmcore.mo share/locale/ga/LC_MESSAGES/kpmcore.mo share/locale/gl/LC_MESSAGES/kpmcore._policy_.mo share/locale/gl/LC_MESSAGES/kpmcore.mo share/locale/he/LC_MESSAGES/kpmcore._policy_.mo share/locale/he/LC_MESSAGES/kpmcore.mo share/locale/hr/LC_MESSAGES/kpmcore.mo share/locale/hu/LC_MESSAGES/kpmcore._policy_.mo share/locale/hu/LC_MESSAGES/kpmcore.mo share/locale/ia/LC_MESSAGES/kpmcore._policy_.mo share/locale/ia/LC_MESSAGES/kpmcore.mo share/locale/id/LC_MESSAGES/kpmcore.mo share/locale/is/LC_MESSAGES/kpmcore.mo share/locale/it/LC_MESSAGES/kpmcore._policy_.mo share/locale/it/LC_MESSAGES/kpmcore.mo share/locale/ja/LC_MESSAGES/kpmcore._policy_.mo share/locale/ja/LC_MESSAGES/kpmcore.mo share/locale/ka/LC_MESSAGES/kpmcore._policy_.mo share/locale/ka/LC_MESSAGES/kpmcore.mo share/locale/ko/LC_MESSAGES/kpmcore._policy_.mo share/locale/ko/LC_MESSAGES/kpmcore.mo share/locale/lt/LC_MESSAGES/kpmcore._policy_.mo share/locale/lt/LC_MESSAGES/kpmcore.mo share/locale/lv/LC_MESSAGES/kpmcore.mo share/locale/mai/LC_MESSAGES/kpmcore.mo share/locale/mr/LC_MESSAGES/kpmcore.mo share/locale/nb/LC_MESSAGES/kpmcore.mo share/locale/nds/LC_MESSAGES/kpmcore.mo share/locale/nl/LC_MESSAGES/kpmcore._policy_.mo share/locale/nl/LC_MESSAGES/kpmcore.mo share/locale/nn/LC_MESSAGES/kpmcore.mo share/locale/pa/LC_MESSAGES/kpmcore.mo share/locale/pl/LC_MESSAGES/kpmcore._policy_.mo share/locale/pl/LC_MESSAGES/kpmcore.mo share/locale/pt/LC_MESSAGES/kpmcore._policy_.mo share/locale/pt/LC_MESSAGES/kpmcore.mo share/locale/pt_BR/LC_MESSAGES/kpmcore._policy_.mo share/locale/pt_BR/LC_MESSAGES/kpmcore.mo share/locale/ro/LC_MESSAGES/kpmcore.mo share/locale/ru/LC_MESSAGES/kpmcore._policy_.mo share/locale/ru/LC_MESSAGES/kpmcore.mo share/locale/sk/LC_MESSAGES/kpmcore._policy_.mo share/locale/sk/LC_MESSAGES/kpmcore.mo share/locale/sl/LC_MESSAGES/kpmcore._policy_.mo share/locale/sl/LC_MESSAGES/kpmcore.mo share/locale/sr/LC_MESSAGES/kpmcore.mo share/locale/sr@ijekavian/LC_MESSAGES/kpmcore.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kpmcore.mo share/locale/sr@latin/LC_MESSAGES/kpmcore.mo share/locale/sv/LC_MESSAGES/kpmcore._policy_.mo share/locale/sv/LC_MESSAGES/kpmcore.mo share/locale/th/LC_MESSAGES/kpmcore.mo share/locale/tr/LC_MESSAGES/kpmcore._policy_.mo share/locale/tr/LC_MESSAGES/kpmcore.mo share/locale/ug/LC_MESSAGES/kpmcore.mo share/locale/uk/LC_MESSAGES/kpmcore._policy_.mo share/locale/uk/LC_MESSAGES/kpmcore.mo share/locale/zh_CN/LC_MESSAGES/kpmcore._policy_.mo share/locale/zh_CN/LC_MESSAGES/kpmcore.mo share/locale/zh_TW/LC_MESSAGES/kpmcore._policy_.mo share/locale/zh_TW/LC_MESSAGES/kpmcore.mo share/polkit-1/actions/org.kde.kpmcore.externalcommand.policy diff --git a/sysutils/ksystemlog/distinfo b/sysutils/ksystemlog/distinfo index c46d0be3efdb..5e98b882de6a 100644 --- a/sysutils/ksystemlog/distinfo +++ b/sysutils/ksystemlog/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1734460376 -SHA256 (KDE/release-service/24.12.0/ksystemlog-24.12.0.tar.xz) = 1b31eefb4c76a892d9a6c0a52490b3e9d42cce00040d3ea533a890f2fbf3983a -SIZE (KDE/release-service/24.12.0/ksystemlog-24.12.0.tar.xz) = 1858392 +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 diff --git a/sysutils/signon-kwallet-extension/distinfo b/sysutils/signon-kwallet-extension/distinfo index 67e3efaba7cd..5961c37e9623 100644 --- a/sysutils/signon-kwallet-extension/distinfo +++ b/sysutils/signon-kwallet-extension/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1734460378 -SHA256 (KDE/release-service/24.12.0/signon-kwallet-extension-24.12.0.tar.xz) = aaf0ca9b42867c2a037fd983cb42720b3a87243226d5d6ed8cda7d0ce466e438 -SIZE (KDE/release-service/24.12.0/signon-kwallet-extension-24.12.0.tar.xz) = 11296 +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 diff --git a/sysutils/sweeper/distinfo b/sysutils/sweeper/distinfo index 336d109da509..c7e6c5786ed7 100644 --- a/sysutils/sweeper/distinfo +++ b/sysutils/sweeper/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1734460379 -SHA256 (KDE/release-service/24.12.0/sweeper-24.12.0.tar.xz) = 3254887c57342bdfcbb05d3160f5cae1ccbb91e4a4b56876726b16ce6e2091a2 -SIZE (KDE/release-service/24.12.0/sweeper-24.12.0.tar.xz) = 384460 +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 diff --git a/textproc/arianna/distinfo b/textproc/arianna/distinfo index 3766569180d5..bbf6c7682f70 100644 --- a/textproc/arianna/distinfo +++ b/textproc/arianna/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1734460381 -SHA256 (KDE/release-service/24.12.0/arianna-24.12.0.tar.xz) = 36c1845b89e7cd93b9541dc7cbe4c45cd3fa5b7632428ae45fba8e5186245d9a -SIZE (KDE/release-service/24.12.0/arianna-24.12.0.tar.xz) = 820664 +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 diff --git a/textproc/kompare/distinfo b/textproc/kompare/distinfo index 114e2fa91c2f..a7ca96b0152f 100644 --- a/textproc/kompare/distinfo +++ b/textproc/kompare/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1734460383 -SHA256 (KDE/release-service/24.12.0/kompare-24.12.0.tar.xz) = 232d358c1621f9638d08b37017298c3a0848a58e405056e2a034cf53f59e3976 -SIZE (KDE/release-service/24.12.0/kompare-24.12.0.tar.xz) = 959692 +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 diff --git a/textproc/libkomparediff2/distinfo b/textproc/libkomparediff2/distinfo index f0e5acc256c3..96efd8626413 100644 --- a/textproc/libkomparediff2/distinfo +++ b/textproc/libkomparediff2/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1734460385 -SHA256 (KDE/release-service/24.12.0/libkomparediff2-24.12.0.tar.xz) = fa729d5e8dcc3d45aa041292b21989314c2d3ec73f00ca436fe27f58000b6e79 -SIZE (KDE/release-service/24.12.0/libkomparediff2-24.12.0.tar.xz) = 188224 +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 diff --git a/textproc/markdownpart/distinfo b/textproc/markdownpart/distinfo index 3b924c47743c..26c490e906dc 100644 --- a/textproc/markdownpart/distinfo +++ b/textproc/markdownpart/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1734460386 -SHA256 (KDE/release-service/24.12.0/markdownpart-24.12.0.tar.xz) = 7a470205fa39b60d81472f1617eb1fe4c8699a061faad090e14a05d23b7bf8f0 -SIZE (KDE/release-service/24.12.0/markdownpart-24.12.0.tar.xz) = 34284 +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 diff --git a/www/falkon/distinfo b/www/falkon/distinfo index 44b2d0875047..1ae86b7ceeec 100644 --- a/www/falkon/distinfo +++ b/www/falkon/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1734460387 -SHA256 (KDE/release-service/24.12.0/falkon-24.12.0.tar.xz) = 2b286b381ffba6ff408dcc9ad104ee6ae3fa05b15ee2d73bef45cd315cead877 -SIZE (KDE/release-service/24.12.0/falkon-24.12.0.tar.xz) = 2652572 +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 diff --git a/x11-clocks/kteatime/distinfo b/x11-clocks/kteatime/distinfo index 23c27370d9df..9fe690b4224b 100644 --- a/x11-clocks/kteatime/distinfo +++ b/x11-clocks/kteatime/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1734460389 -SHA256 (KDE/release-service/24.12.0/kteatime-24.12.0.tar.xz) = eb77c1ab028cc728f185a802d71ccd6d0c4b7b50161f9a435fb7316f7977edc1 -SIZE (KDE/release-service/24.12.0/kteatime-24.12.0.tar.xz) = 310268 +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 diff --git a/x11-clocks/ktimer/distinfo b/x11-clocks/ktimer/distinfo index a0b9db329a6c..67bc3004bd86 100644 --- a/x11-clocks/ktimer/distinfo +++ b/x11-clocks/ktimer/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1734460391 -SHA256 (KDE/release-service/24.12.0/ktimer-24.12.0.tar.xz) = 2358d1de51add41f617078e59be67f49b714a0329d1bb13a32b066ace3914bff -SIZE (KDE/release-service/24.12.0/ktimer-24.12.0.tar.xz) = 453188 +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 diff --git a/x11-fm/dolphin/distinfo b/x11-fm/dolphin/distinfo index 79c8fd961b8c..5fbdaa0a3429 100644 --- a/x11-fm/dolphin/distinfo +++ b/x11-fm/dolphin/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1734460393 -SHA256 (KDE/release-service/24.12.0/dolphin-24.12.0.tar.xz) = 421f02f9699b609d7e66e0aae9fa1fd735ba0a92a56febe75880ecbeb8dfc513 -SIZE (KDE/release-service/24.12.0/dolphin-24.12.0.tar.xz) = 5692976 +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 diff --git a/x11-fm/konqueror/distinfo b/x11-fm/konqueror/distinfo index 44489a1feeff..bbc3c51add76 100644 --- a/x11-fm/konqueror/distinfo +++ b/x11-fm/konqueror/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1734460395 -SHA256 (KDE/release-service/24.12.0/konqueror-24.12.0.tar.xz) = b0c8d17b32a558403218819cf1d2feb3a09b06c6a91adc406f88a2c5d2c99e68 -SIZE (KDE/release-service/24.12.0/konqueror-24.12.0.tar.xz) = 9748480 +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 diff --git a/x11/konsole/distinfo b/x11/konsole/distinfo index c2be7505898e..62a80e987482 100644 --- a/x11/konsole/distinfo +++ b/x11/konsole/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1734460397 -SHA256 (KDE/release-service/24.12.0/konsole-24.12.0.tar.xz) = 255f344d6ffe338dfeafd610bf6d63ed1bf9adf306948d58351838c057b21a54 -SIZE (KDE/release-service/24.12.0/konsole-24.12.0.tar.xz) = 1818624 +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 diff --git a/x11/yakuake/distinfo b/x11/yakuake/distinfo index d79f59c034ad..37c4e53c3928 100644 --- a/x11/yakuake/distinfo +++ b/x11/yakuake/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1734460399 -SHA256 (KDE/release-service/24.12.0/yakuake-24.12.0.tar.xz) = c485c67645f312e53e3e232be9a9bb72be033e6bb5dafe01c19aa3eb7e028466 -SIZE (KDE/release-service/24.12.0/yakuake-24.12.0.tar.xz) = 390128 +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