diff --git a/Mk/Uses/kde.mk b/Mk/Uses/kde.mk index fcf98d9eb2e6..d4eb77929017 100644 --- a/Mk/Uses/kde.mk +++ b/Mk/Uses/kde.mk @@ -1,1060 +1,1060 @@ # 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.4.4 KDE_PLASMA6_BRANCH?= stable # Legacy KDE frameworks (Qt5 based). KDE_FRAMEWORKS5_VERSION?= 5.116.0 KDE_FRAMEWORKS5_BRANCH?= stable # Current KDE Frameworks (Qt6 based). KDE_FRAMEWORKS6_VERSION?= 6.17.0 KDE_FRAMEWORKS6_BRANCH?= stable # Current KDE applications. Update _${PORTNAME}_PROJECT_VERSION for the following ports: # devel/kdevelop, games/libkdegames, games/libkmahjongg, graphics/kgraphviewer -KDE_APPLICATIONS6_VERSION?= 25.04.3 -KDE_APPLICATIONS6_SHLIB_VER?= 6.4.3 +KDE_APPLICATIONS6_VERSION?= 25.08.0 +KDE_APPLICATIONS6_SHLIB_VER?= 6.5.0 # G as in KDE Gear, and as in "don't make the variable name longer than required". KDE_APPLICATIONS6_SHLIB_G_VER?= ${KDE_APPLICATIONS6_VERSION} KDE_APPLICATIONS6_BRANCH?= stable # Some projects despite being a part of Gear distribution continue to use # their own versioning with mangled KDE_APPLICATIONS_VERSION as a patchlevel. # Provide more variables to ease their maintenance. KDE_APPS_MAJOR= ${KDE_APPLICATIONS_VERSION:R:R} KDE_APPS_MINOR= ${KDE_APPLICATIONS_VERSION:R:E} . if ${KDE_APPLICATIONS_BRANCH:Mstable} KDE_APPS_MICRO= 0${KDE_APPLICATIONS_VERSION:E} . else KDE_APPS_MICRO= ${KDE_APPLICATIONS_VERSION:E} . endif KDE_APPS_BASED_PATCHLEVEL?= ${KDE_APPS_MAJOR}${KDE_APPS_MINOR}${KDE_APPS_MICRO} # ============================================================================== # === INSTALLATION PREFIXES AND HEADER LOCATION ================================ # Define unversioned prefix variable. KDE_PREFIX= ${LOCALBASE} # ============================================================================== # === CATEGORIES HANDLING -- SETTING DEFAULT VALUES ============================ # Doing MASTER_SITES magic based on the category of the port _KDE_CATEGORIES_SUPPORTED= kde-applications kde-frameworks kde-plasma kde-devel . for cat in ${_KDE_CATEGORIES_SUPPORTED:Nkde-devel} . if ${CATEGORIES:M${cat}} . if !defined(_KDE_CATEGORY) _KDE_CATEGORY= ${cat} . else IGNORE?= cannot be installed: multiple kde-<...> categories specified via CATEGORIES=${CATEGORIES} #' . endif . endif . endfor # Doing source-selection if the sources are on KDE invent . if defined(KDE_INVENT) _invent_hash= ${KDE_INVENT:[1]} _invent_category= ${KDE_INVENT:[2]} _invent_name= ${KDE_INVENT:[3]} # Fill in default values if bits are missing . if empty(_invent_category) _invent_category= ${CATEGORIES:Nkde:[1]} . endif . if empty(_invent_name) _invent_name= ${PORTNAME} . endif # If valid, use it for GitLab . if empty(_invent_hash) || empty(_invent_category) || empty(_invent_name) IGNORE?= invalid KDE_INVENT value '${KDE_INVENT}' . else USE_GITLAB= yes GL_SITE= https://invent.kde.org GL_ACCOUNT= ${_invent_category} GL_PROJECT= ${_invent_name} GL_TAGNAME= ${_invent_hash} . endif . endif . if defined(_KDE_CATEGORY) # KDE is normally licensed under the LGPL 2.0. LICENSE?= LGPL20 # Set CPE Vendor Information # As _KDE_CATEGORY is set we can assume it is port release by KDE and the # vendor is therefore kde. CPE_VENDOR?= kde . if ${_KDE_CATEGORY:Mkde-applications} PORTVERSION?= ${KDE_APPLICATIONS_VERSION} MASTER_SITES?= KDE/${KDE_APPLICATIONS_BRANCH}/release-service/${KDE_APPLICATIONS_VERSION}/src # Let bsd.port.mk create the plist-entries for the documentation. # KDE Applications ports install their documentation to # ${PREFIX}/share/doc. This is only done if the port # defines OPTION DOCS -- the _KDE_OPTIONS here is to # avoid make errors when there are no options defined at all. _KDE_OPTIONS= bogus ${OPTIONS_DEFINE} . if ${_KDE_OPTIONS:MDOCS} DOCSDIR= ${PREFIX}/share/doc PORTDOCS?= HTML/* USE_KDE+= doctools:build . endif # Further pass along a SHLIB_VER PLIST_SUB PLIST_SUB+= KDE_APPLICATIONS_SHLIB_VER=${KDE_APPLICATIONS_SHLIB_VER} \ KDE_APPLICATIONS_VERSION_SHORT="${KDE_APPLICATIONS_VERSION:R:R}" . if defined(_${PORTNAME}_PROJECT_VERSION) PLIST_SUB+= SHLIB_VER_LONG=${_${PORTNAME}_PROJECT_VERSION}.${KDE_APPS_BASED_PATCHLEVEL} . endif DIST_SUBDIR?= KDE/release-service/${KDE_APPLICATIONS_VERSION} . elif ${_KDE_CATEGORY:Mkde-plasma} PORTVERSION?= ${KDE_PLASMA_VERSION} PKGNAMEPREFIX?= plasma${_KDE_VERSION}- MASTER_SITES?= KDE/${KDE_PLASMA_BRANCH}/plasma/${KDE_PLASMA_VERSION} DIST_SUBDIR?= KDE/plasma/${KDE_PLASMA_VERSION} WWW?= https://kde.org/plasma-desktop/ . if ${_KDE_VERSION:M6} DESCR= ${.CURDIR:H:H}/x11/plasma6-plasma/pkg-descr . endif . elif ${_KDE_CATEGORY:Mkde-frameworks} PORTVERSION?= ${KDE_FRAMEWORKS_VERSION} PKGNAMEPREFIX?= kf${_KDE_VERSION}- WWW?= https://api.kde.org/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} DIST_SUBDIR= KDE/frameworks/${KDE_FRAMEWORKS_VERSION:R} 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 _USE_FRAMEWORKS5_ALL= activities activities-stats apidox archive attica \ auth baloo bookmarks breeze-icons calendarcore \ codecs completion config configwidgets contacts \ coreaddons crash dbusaddons designerplugin dnssd \ doctools ecm emoticons filemetadata frameworkintegration \ globalaccel guiaddons holidays i18n iconthemes \ idletime init itemmodels itemviews jobwidgets \ kcmutils kdav kdeclarative kded kdesu kimageformats \ kio kirigami2 kquickcharts newstuff notifications \ notifyconfig package parts people plasma-framework \ plotting prison pty purpose qqc2-desktop-style \ runner service solid sonnet syndication \ syntaxhighlighting texteditor textwidgets \ threadweaver unitconversion wallet wayland \ widgetsaddons windowsystem xmlgui xmlrpcclient \ ${_USE_PORTINGAIDS_ALL} _USE_FRAMEWORKS6_ALL= apidox archive attica auth baloo bookmarks \ breeze-icons calendarcore codecs colorscheme \ completion config configwidgets contacts coreaddons \ crash dbusaddons dnssd doctools ecm filemetadata \ frameworkintegration globalaccel guiaddons holidays \ i18n iconthemes idletime itemmodels itemviews \ jobwidgets kcmutils kdav kdeclarative kded kdesu \ kimageformats kio kirigami2 kquickcharts newstuff \ networkmanagerqt notifications notifyconfig package parts \ people 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 \ aurorae breeze breeze-gtk decoration discover \ globalacceld infocenter kde-cli-tools \ kde-gtk-config kdeplasma-addons kgamma kmenuedit \ kpipewire kscreen kscreenlocker ksshaskpass \ ksystemstats kwallet-pam kwin kwin-x11 kwrited \ layer-shell-qt libkscreen libksysguard libplasma \ milou ocean-sound-theme oxygen oxygen-sounds \ plasma-browser-integration plasma-desktop \ plasma-disks plasma-integration plasma-pa \ plasma-sdk plasma-workspace \ plasma-workspace-wallpapers plasma5support \ polkit-kde-agent-1 powerdevil print-manager \ qqc2-breeze-style sddm-kcm spectacle systemmonitor \ systemsettings wayland xdg-desktop-portal-kde _USE_PLASMA_ALL= ${_USE_PLASMA${_KDE_VERSION}_ALL} # List of frequently used components of the KDE Gears distribution. _USE_GEAR5_ALL= libkdcraw _USE_GEAR6_ALL= baloo-widgets kate kosm kpublictransport \ libkcddb libkcompactdisc libkdcraw \ libkdegames libkeduvocdocument libkexiv2 \ libksane marble okular _USE_GEAR_ALL= ${_USE_GEAR${_KDE_VERSION}_ALL} # List of components of the KDE PIM distribution (part of KDE Gears). _USE_KDEPIM_ALL= akonadi akonadicalendar akonadiconsole \ akonadicontacts akonadiimportwizard akonadimime \ akonadisearch akregator calendarsupport \ calendarutils eventviews gapi grantlee-editor \ grantleetheme gravatar identitymanagement imap \ incidenceeditor kaddressbook kalarm kdepim-addons \ kdepim-runtime kitinerary kmail kmail-account-wizard \ kontact kontactinterface korganizer kpkpass ksmtp \ ldap libkdepim libkleo libksieve mailcommon \ mailimporter mailtransport mbox mbox-importer \ messagelib mime mimetreeparser pim-data-exporter \ pimcommon pimtextedit tnef # List of frequently used KDE releated software for any KDE/Qt version. _USE_KDE_EXTRA5_ALL= kirigami-addons phonon phonon-vlc \ plasma-wayland-protocols _USE_KDE_EXTRA6_ALL= kirigami-addons phonon phonon-mpv phonon-vlc \ plasma-wayland-protocols ktextaddons _USE_KDE_EXTRA_ALL= ${_USE_KDE_EXTRA${_KDE_VERSION}_ALL} _USE_KDE5_ALL= ${_USE_FRAMEWORKS_ALL} \ ${_USE_PLASMA_ALL} \ ${_USE_GEAR_ALL} \ ${_USE_KDE_EXTRA_ALL} _USE_KDE6_ALL= ${_USE_FRAMEWORKS_ALL} \ ${_USE_PLASMA_ALL} \ ${_USE_KDEPIM_ALL} \ ${_USE_GEAR_ALL} \ ${_USE_KDE_EXTRA_ALL} # ====================== frameworks components ================================= kde-activities_PORT5= x11/kf${_KDE_VERSION}-kactivities kde-activities_PORT6= x11/plasma${_KDE_VERSION}-plasma-activities kde-activities_PORT= ${kde-activities_PORT${_KDE_VERSION}} kde-activities_LIB5= libKF${_KDE_VERSION}Activities.so kde-activities_LIB6= libPlasmaActivities.so kde-activities_LIB= ${kde-activities_LIB${_KDE_VERSION}} kde-activities-stats_PORT5= x11/kf${_KDE_VERSION}-kactivities-stats kde-activities-stats_PORT6= x11/plasma${_KDE_VERSION}-plasma-activities-stats kde-activities-stats_PORT= ${kde-activities-stats_PORT${_KDE_VERSION}} kde-activities-stats_LIB5= libKF${_KDE_VERSION}ActivitiesStats.so kde-activities-stats_LIB6= libPlasmaActivitiesStats.so kde-activities-stats_LIB= ${kde-activities-stats_LIB${_KDE_VERSION}} # Use KApiDox tools from KDE Frameworks 6 kde-apidox_PORT= devel/kf6-kapidox kde-apidox_PATH= ${KDE_PREFIX}/bin/kapidox-generate kde-apidox_TYPE= run kde-archive_PORT= archivers/kf${_KDE_VERSION}-karchive kde-archive_LIB= libKF${_KDE_VERSION}Archive.so kde-attica_PORT= x11-toolkits/kf${_KDE_VERSION}-attica kde-attica_LIB= libKF${_KDE_VERSION}Attica.so kde-auth_PORT= devel/kf${_KDE_VERSION}-kauth kde-auth_LIB= libKF${_KDE_VERSION}AuthCore.so kde-baloo_PORT= sysutils/kf${_KDE_VERSION}-baloo kde-baloo_LIB= libKF${_KDE_VERSION}Baloo.so kde-bookmarks_PORT= devel/kf${_KDE_VERSION}-kbookmarks kde-bookmarks_LIB= libKF${_KDE_VERSION}Bookmarks.so # Use the latest icons from KDE Frameworks 6 kde-breeze-icons_PORT= x11-themes/kf6-breeze-icons kde-breeze-icons_PATH= ${KDE_PREFIX}/share/icons/breeze/index.theme kde-codecs_PORT= textproc/kf${_KDE_VERSION}-kcodecs kde-codecs_LIB= libKF${_KDE_VERSION}Codecs.so kde-completion_PORT= x11-toolkits/kf${_KDE_VERSION}-kcompletion kde-completion_LIB= libKF${_KDE_VERSION}Completion.so kde-config_PORT= devel/kf${_KDE_VERSION}-kconfig kde-config_LIB= libKF${_KDE_VERSION}ConfigCore.so kde-configwidgets_PORT= x11-toolkits/kf${_KDE_VERSION}-kconfigwidgets kde-configwidgets_LIB= libKF${_KDE_VERSION}ConfigWidgets.so kde-coreaddons_PORT= devel/kf${_KDE_VERSION}-kcoreaddons kde-coreaddons_LIB= libKF${_KDE_VERSION}CoreAddons.so kde-crash_PORT= devel/kf${_KDE_VERSION}-kcrash kde-crash_LIB= libKF${_KDE_VERSION}Crash.so kde-dbusaddons_PORT= devel/kf${_KDE_VERSION}-kdbusaddons kde-dbusaddons_LIB= libKF${_KDE_VERSION}DBusAddons.so kde-designerplugin_PORT= x11-toolkits/kf${_KDE_VERSION}-kdesignerplugin kde-designerplugin_PATH= ${KDE_PREFIX}/bin/kgendesignerplugin kde-designerplugin_TYPE= run kde-dnssd_PORT= dns/kf${_KDE_VERSION}-kdnssd kde-dnssd_LIB= libKF${_KDE_VERSION}DNSSD.so kde-doctools_PORT= devel/kf${_KDE_VERSION}-kdoctools kde-doctools_PATH= ${KDE_PREFIX}/bin/meinproc${_KDE_VERSION} # Use ECM from KDE Frameworks 6 for everything kde-ecm_PORT= devel/kf6-extra-cmake-modules kde-ecm_PATH= ${LOCALBASE}/share/ECM/cmake/ECMConfig.cmake kde-emoticons_PORT= x11-themes/kf${_KDE_VERSION}-kemoticons kde-emoticons_LIB= libKF${_KDE_VERSION}Emoticons.so kde-filemetadata_PORT= devel/kf${_KDE_VERSION}-kfilemetadata kde-filemetadata_LIB= libKF${_KDE_VERSION}FileMetaData.so kde-frameworkintegration_PORT= x11/kf${_KDE_VERSION}-frameworkintegration kde-frameworkintegration_LIB= libKF${_KDE_VERSION}Style.so kde-globalaccel_PORT= x11/kf${_KDE_VERSION}-kglobalaccel kde-globalaccel_LIB= libKF${_KDE_VERSION}GlobalAccel.so kde-guiaddons_PORT= x11-toolkits/kf${_KDE_VERSION}-kguiaddons kde-guiaddons_LIB= libKF${_KDE_VERSION}GuiAddons.so kde-holidays_PORT= net/kf${_KDE_VERSION}-kholidays kde-holidays_LIB= libKF${_KDE_VERSION}Holidays.so kde-i18n_PORT= devel/kf${_KDE_VERSION}-ki18n kde-i18n_LIB= libKF${_KDE_VERSION}I18n.so kde-iconthemes_PORT= x11-themes/kf${_KDE_VERSION}-kiconthemes kde-iconthemes_LIB= libKF${_KDE_VERSION}IconThemes.so kde-idletime_PORT= devel/kf${_KDE_VERSION}-kidletime kde-idletime_LIB= libKF${_KDE_VERSION}IdleTime.so kde-init_PORT= x11/kf${_KDE_VERSION}-kinit kde-init_PATH= ${KDE_PREFIX}/bin/kdeinit5 kde-itemmodels_PORT= devel/kf${_KDE_VERSION}-kitemmodels kde-itemmodels_LIB= libKF${_KDE_VERSION}ItemModels.so kde-itemviews_PORT= x11-toolkits/kf${_KDE_VERSION}-kitemviews kde-itemviews_LIB= libKF${_KDE_VERSION}ItemViews.so kde-jobwidgets_PORT= x11-toolkits/kf${_KDE_VERSION}-kjobwidgets kde-jobwidgets_LIB= libKF${_KDE_VERSION}JobWidgets.so kde-js_PORT= www/kf${_KDE_VERSION}-kjs kde-js_LIB= libKF${_KDE_VERSION}JS.so kde-jsembed_PORT= www/kf${_KDE_VERSION}-kjsembed kde-jsembed_LIB= libKF${_KDE_VERSION}JsEmbed.so kde-kcmutils_PORT= devel/kf${_KDE_VERSION}-kcmutils kde-kcmutils_LIB= libKF${_KDE_VERSION}KCMUtils.so kde-kdeclarative_PORT= devel/kf${_KDE_VERSION}-kdeclarative kde-kdeclarative_LIB5= libKF${_KDE_VERSION}Declarative.so kde-kdeclarative_LIB6= libKF${_KDE_VERSION}CalendarEvents.so kde-kdeclarative_LIB= ${kde-kdeclarative_LIB${_KDE_VERSION}} kde-kded_PORT= x11/kf${_KDE_VERSION}-kded kde-kded_PATH= ${KDE_PREFIX}/bin/kded${_KDE_VERSION} kde-kdelibs4support_PORT= x11/kf${_KDE_VERSION}-kdelibs4support kde-kdelibs4support_LIB= libKF${_KDE_VERSION}KDELibs4Support.so kde-kdesu_PORT= security/kf${_KDE_VERSION}-kdesu kde-kdesu_LIB= libKF${_KDE_VERSION}Su.so kde-khtml_PORT= www/kf${_KDE_VERSION}-khtml kde-khtml_LIB= libKF${_KDE_VERSION}KHtml.so kde-kimageformats_PORT= graphics/kf${_KDE_VERSION}-kimageformats kde-kimageformats_PATH= ${QT_PLUGINDIR}/imageformats/kimg_xcf.so kde-kimageformats_TYPE= run kde-kio_PORT= devel/kf${_KDE_VERSION}-kio kde-kio_LIB= libKF${_KDE_VERSION}KIOCore.so kde-kirigami2_PORT5= x11-toolkits/kf${_KDE_VERSION}-kirigami2 kde-kirigami2_PORT6= x11-toolkits/kf${_KDE_VERSION}-kirigami kde-kirigami2_PATH5= ${QT_QMLDIR}/org/kde/kirigami.2/libKirigamiPlugin.so kde-kirigami2_PATH6= ${QT_QMLDIR}/org/kde/kirigami/libKirigamiplugin.so kde-kirigami2_PORT= ${kde-kirigami2_PORT${_KDE_VERSION}} kde-kirigami2_PATH= ${kde-kirigami2_PATH${_KDE_VERSION}} kde-kquickcharts_PORT= graphics/kf${_KDE_VERSION}-kquickcharts kde-kquickcharts_PATH5= ${QT_QMLDIR}/org/kde/quickcharts/libQuickCharts.so kde-kquickcharts_PATH6= ${QT_QMLDIR}/org/kde/quickcharts/libQuickChartsplugin.so kde-kquickcharts_PATH= ${kde-kquickcharts_PATH${_KDE_VERSION}} kde-kross_PORT= lang/kf${_KDE_VERSION}-kross kde-kross_LIB= libKF${_KDE_VERSION}KrossCore.so kde-layer-shell-qt_PORT= x11/plasma${_KDE_VERSION}-layer-shell-qt kde-layer-shell-qt_LIB= libLayerShellQtInterface.so kde-mediaplayer_PORT= multimedia/kf${_KDE_VERSION}-kmediaplayer kde-mediaplayer_LIB= libKF${_KDE_VERSION}MediaPlayer.so.5 kde-networkmanagerqt_PORT= net-mgmt/kf${_KDE_VERSION}-networkmanager-qt kde-networkmanagerqt_LIB= libKF${_KDE_VERSION}NetworkManagerQt.so kde-newstuff_PORT= devel/kf${_KDE_VERSION}-knewstuff kde-newstuff_LIB= libKF${_KDE_VERSION}NewStuffCore.so kde-notifications_PORT= devel/kf${_KDE_VERSION}-knotifications kde-notifications_LIB= libKF${_KDE_VERSION}Notifications.so kde-notifyconfig_PORT= devel/kf${_KDE_VERSION}-knotifyconfig kde-notifyconfig_LIB= libKF${_KDE_VERSION}NotifyConfig.so # Use the latest sounds from Plasma 6 kde-oxygen-sounds_PORT= audio/plasma6-oxygen-sounds kde-oxygen-sounds_PATH= ${KDE_PREFIX}/share/sounds/Oxygen-Sys-Log-In.ogg kde-oxygen-sounds_TYPE= run kde-package_PORT= devel/kf${_KDE_VERSION}-kpackage kde-package_LIB= libKF${_KDE_VERSION}Package.so kde-parts_PORT= devel/kf${_KDE_VERSION}-kparts kde-parts_LIB= libKF${_KDE_VERSION}Parts.so kde-people_PORT= devel/kf${_KDE_VERSION}-kpeople kde-people_LIB= libKF${_KDE_VERSION}People.so kde-plasma-framework_PORT= x11/kf${_KDE_VERSION}-plasma-framework kde-plasma-framework_LIB= libKF${_KDE_VERSION}Plasma.so kde-plasma-wayland-protocols_PORT= x11/plasma-wayland-protocols kde-plasma-wayland-protocols_PATH= ${KDE_PREFIX}/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-aurorae_PORT= x11-themes/plasma${_KDE_VERSION}-aurorae kde-aurorae_PATH= ${KDE_PREFIX}/lib/libexec/plasma-apply-aurorae kde-breeze_PORT= x11-themes/plasma${_KDE_VERSION}-breeze kde-breeze_PATH= ${KDE_PREFIX}/share/QtCurve/Breeze.qtcurve kde-breeze-gtk_PORT= x11-themes/plasma${_KDE_VERSION}-breeze-gtk kde-breeze-gtk_PATH= ${KDE_PREFIX}/share/themes/Breeze/gtk-2.0/gtkrc kde-decoration_PORT= x11-wm/plasma${_KDE_VERSION}-kdecoration kde-decoration_LIB= libkdecorations3.so kde-discover_PORT= sysutils/plasma${_KDE_VERSION}-discover kde-discover_PATH= ${KDE_PREFIX}/bin/plasma-discover kde-infocenter_PORT= sysutils/plasma${_KDE_VERSION}-kinfocenter kde-infocenter_PATH= ${KDE_PREFIX}/bin/kinfocenter kde-kde-cli-tools_PORT= sysutils/plasma${_KDE_VERSION}-kde-cli-tools kde-kde-cli-tools_PATH= ${KDE_PREFIX}/bin/kde-open kde-kde-gtk-config_PORT= x11-themes/plasma${_KDE_VERSION}-kde-gtk-config kde-kde-gtk-config_PATH= ${KDE_PREFIX}/lib/kconf_update_bin/gtk_theme kde-kdeplasma-addons_PORT= x11-toolkits/plasma${_KDE_VERSION}-kdeplasma-addons kde-kdeplasma-addons_LIB= libplasmapotdprovidercore.so kde-kgamma_PORT= x11/plasma${_KDE_VERSION}-kgamma kde-kgamma_PATH= ${QT_PLUGINDIR}/plasma/kcms/systemsettings_qwidgets/kcm_kgamma.so kde-kmenuedit_PORT= sysutils/plasma${_KDE_VERSION}-kmenuedit kde-kmenuedit_PATH= ${KDE_PREFIX}/bin/kmenuedit kde-kscreen_PORT= x11/plasma${_KDE_VERSION}-kscreen kde-kscreen_PATH= ${KDE_PREFIX}/bin/kscreen-console kde-kscreenlocker_PORT= security/plasma${_KDE_VERSION}-kscreenlocker kde-kscreenlocker_LIB= libKScreenLocker.so kde-ksshaskpass_PORT= security/plasma${_KDE_VERSION}-ksshaskpass kde-ksshaskpass_PATH= ${KDE_PREFIX}/bin/ksshaskpass kde-ksystemstats_PORT= sysutils/plasma${_KDE_VERSION}-ksystemstats kde-ksystemstats_PATH= ${KDE_PREFIX}/bin/ksystemstats kde-kwallet-pam_PORT= security/plasma${_KDE_VERSION}-kwallet-pam kde-kwallet-pam_PATH= ${KDE_PREFIX}/lib/pam_kwallet5.so kde-kwin_PORT= x11-wm/plasma${_KDE_VERSION}-kwin kde-kwin_PATH= ${KDE_PREFIX}/bin/kwin_wayland kde-kwin-x11_PORT= x11-wm/plasma${_KDE_VERSION}-kwin-x11 kde-kwin-x11_PATH= ${KDE_PREFIX}/bin/kwin_x11 kde-kwrited_PORT= devel/plasma${_KDE_VERSION}-kwrited kde-kwrited_PATH= ${QT_PLUGINDIR}/kf${_KDE_VERSION}/kded/kwrited.so kde-libkscreen_PORT= x11/plasma${_KDE_VERSION}-libkscreen kde-libkscreen_LIB= libKF${_KDE_VERSION}Screen.so kde-libksysguard_PORT= sysutils/plasma${_KDE_VERSION}-libksysguard kde-libksysguard_LIB5= libksgrd.so kde-libksysguard_LIB6= libKSysGuardSystemStats.so kde-libksysguard_LIB= ${kde-libksysguard_LIB${_KDE_VERSION}} kde-milou_PORT= deskutils/plasma${_KDE_VERSION}-milou kde-milou_PATH= ${QT_QMLDIR}/org/kde/milou/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-print-queue kde-print-manager_TYPE= run kde-spectacle_PORT= graphics/plasma${_KDE_VERSION}-spectacle kde-spectacle_PATH= ${KDE_PREFIX}/bin/spectacle kde-spectacle_TYPE= run kde-systemmonitor_PORT= sysutils/plasma${_KDE_VERSION}-plasma-systemmonitor kde-systemmonitor_PATH= ${KDE_PREFIX}/bin/plasma-systemmonitor kde-systemmonitor_TYPE= run kde-systemsettings_PORT= sysutils/plasma${_KDE_VERSION}-systemsettings kde-systemsettings_PATH= ${KDE_PREFIX}/bin/systemsettings kde-xdg-desktop-portal-kde_PORT= deskutils/plasma${_KDE_VERSION}-xdg-desktop-portal-kde kde-xdg-desktop-portal-kde_PATH= ${KDE_PREFIX}/lib/libexec/xdg-desktop-portal-kde kde-plasma5support_PORT= devel/plasma${_KDE_VERSION}-plasma5support kde-plasma5support_LIB= libPlasma5Support.so kde-qqc2-breeze-style_PORT= x11-themes/plasma${_KDE_VERSION}-qqc2-breeze-style kde-qqc2-breeze-style_PATH= ${QT_PLUGINDIR}/kf${_KDE_VERSION}/kirigami/platform/org.kde.breeze.so kde-sddm-kcm_PORT= deskutils/plasma${_KDE_VERSION}-sddm-kcm kde-sddm-kcm_PATH= ${QT_PLUGINDIR}/plasma/kcms/systemsettings/kcm_sddm.so kde-sddm-kcm_TYPE= run kde-kirigami-addons_PORT= x11-toolkits/kirigami-addons-qt${_KDE_VERSION} kde-kirigami-addons_PATH= ${QT_QMLDIR}/org/kde/kirigamiaddons/components/libcomponentsplugin.so kde-globalacceld_PORT= x11/plasma${_KDE_VERSION}-kglobalacceld kde-globalacceld_PATH= ${QT_PLUGINDIR}/org.kde.kglobalacceld.platforms/KGlobalAccelDXcb.so kde-libplasma_PORT= x11/plasma${_KDE_VERSION}-libplasma kde-libplasma_LIB= libPlasma.so # ====================== end of plasma components ============================== # ====================== pim5 components ======================================= kde-akonadicontacts_PORT= net/akonadi-contacts kde-akonadicontacts_LIB= libKPim${_KDE_VERSION}AkonadiContactCore.so kde-akonadiimportwizard_PORT= deskutils/akonadi-import-wizard kde-akonadiimportwizard_LIB= libKPim${_KDE_VERSION}ImportWizard.so kde-akonadimime_PORT= net/akonadi-mime kde-akonadimime_LIB= libKPim${_KDE_VERSION}AkonadiMime.so kde-akonadicalendar_PORT= net/akonadi-calendar kde-akonadicalendar_LIB= libKPim${_KDE_VERSION}AkonadiCalendar.so kde-akonadisearch_PORT= net/akonadi-search kde-akonadisearch_LIB= libKPim${_KDE_VERSION}AkonadiSearchCore.so kde-calendarsupport_PORT= net/calendarsupport kde-calendarsupport_LIB= libKPim${_KDE_VERSION}CalendarSupport.so kde-calendarutils_PORT= net/kcalutils kde-calendarutils_LIB= libKPim${_KDE_VERSION}CalendarUtils.so kde-eventviews_PORT= net/eventviews kde-eventviews_LIB= libKPim${_KDE_VERSION}EventViews.so kde-gapi_PORT= net/libkgapi kde-gapi_LIB= libKPim${_KDE_VERSION}GAPIBlogger.so kde-grantleetheme_PORT= deskutils/grantleetheme kde-grantleetheme_LIB= libKPim${_KDE_VERSION}GrantleeTheme.so kde-gravatar_PORT= net/libgravatar kde-gravatar_LIB= libKPim${_KDE_VERSION}Gravatar.so kde-identitymanagement_PORT= net/kidentitymanagement kde-identitymanagement_LIB= libKPim${_KDE_VERSION}IdentityManagementCore.so kde-imap_PORT= net/kimap kde-imap_LIB= libKPim${_KDE_VERSION}IMAP.so kde-incidenceeditor_PORT= net/incidenceeditor kde-incidenceeditor_LIB= libKPim${_KDE_VERSION}IncidenceEditor.so kde-kdepim-addons_PORT= deskutils/kdepim-addons kde-kdepim-addons_PATH= ${QT_PLUGINDIR}/pim${_KDE_VERSION}/contacteditor/editorpageplugins/cryptopageplugin.so kde-kdepim-runtime_PORT= deskutils/kdepim-runtime kde-kdepim-runtime_PATH= ${KDE_PREFIX}/bin/gidmigrator kde-kitinerary_PORT= net/kitinerary kde-kitinerary_LIB= libKPim${_KDE_VERSION}Itinerary.so kde-kontactinterface_PORT= net/kontactinterface kde-kontactinterface_LIB= libKPim${_KDE_VERSION}KontactInterface.so kde-kpkpass_PORT= security/kpkpass kde-kpkpass_LIB= libKPim${_KDE_VERSION}PkPass.so kde-ksmtp_PORT= net/ksmtp kde-ksmtp_LIB= libKPim${_KDE_VERSION}SMTP.so kde-ldap_PORT= net/kldap kde-ldap_LIB= libKPim${_KDE_VERSION}LdapCore.so kde-libkdepim_PORT= deskutils/libkdepim kde-libkdepim_LIB= libKPim${_KDE_VERSION}Libkdepim.so kde-libkleo_PORT= security/libkleo kde-libkleo_LIB= libKPim${_KDE_VERSION}Libkleo.so kde-libksieve_PORT= net/libksieve kde-libksieve_LIB= libKPim${_KDE_VERSION}KSieve.so kde-mailcommon_PORT= net/mailcommon kde-mailcommon_LIB= libKPim${_KDE_VERSION}MailCommon.so kde-mailimporter_PORT= net/mailimporter kde-mailimporter_LIB= libKPim${_KDE_VERSION}MailImporter.so kde-mailtransport_PORT= net/kmailtransport kde-mailtransport_LIB= libKPim${_KDE_VERSION}MailTransport.so kde-mbox_PORT= net/kmbox kde-mbox_LIB= libKPim${_KDE_VERSION}Mbox.so kde-messagelib_PORT= net/messagelib kde-messagelib_LIB= libKPim${_KDE_VERSION}MessageList.so kde-mime_PORT= net/kmime kde-mime_LIB= libKPim${_KDE_VERSION}Mime.so kde-pimcommon_PORT= net/pimcommon kde-pimcommon_LIB= libKPim${_KDE_VERSION}PimCommon.so kde-pimtextedit_PORT= net/kpimtextedit kde-pimtextedit_LIB= libKPim${_KDE_VERSION}TextEdit.so kde-tnef_PORT= net/ktnef kde-tnef_LIB= libKPim${_KDE_VERSION}Tnef.so kde-ktextaddons_PORT= devel/ktextaddons kde-ktextaddons_LIB= libKF${_KDE_VERSION}TextAutoCorrectionCore.so # PIM Applications kde-akonadiconsole_PORT= deskutils/akonadiconsole kde-akonadiconsole_PATH= ${KDE_PREFIX}/bin/akonadiconsole kde-akregator_PORT= deskutils/akregator kde-akregator_PATH= ${KDE_PREFIX}/bin/akregator kde-grantlee-editor_PORT= deskutils/grantlee-editor kde-grantlee-editor_PATH= ${KDE_PREFIX}/bin/contactthemeeditor kde-kaddressbook_PORT= deskutils/kaddressbook kde-kaddressbook_PATH= ${KDE_PREFIX}/bin/kaddressbook kde-kalarm_PORT= deskutils/kalarm kde-kalarm_PATH= ${KDE_PREFIX}/bin/kalarm kde-kmail_PORT= deskutils/kmail kde-kmail_PATH= ${KDE_PREFIX}/bin/kmail kde-kmail-account-wizard_PORT= deskutils/kmail-account-wizard kde-kmail-account-wizard_PATH= ${KDE_PREFIX}/bin/accountwizard kde-kontact_PORT= deskutils/kontact kde-kontact_PATH= ${KDE_PREFIX}/bin/kontact kde-korganizer_PORT= deskutils/korganizer kde-korganizer_PATH= ${KDE_PREFIX}/bin/korganizer kde-mbox-importer_PORT= deskutils/mbox-importer kde-mbox-importer_PATH= ${KDE_PREFIX}/bin/mboximporter kde-mimetreeparser_PORT= net/mimetreeparser kde-mimetreeparser_LIB= libKPim${_KDE_VERSION}MimeTreeParserCore.so kde-pim-data-exporter_PORT= deskutils/pim-data-exporter kde-pim-data-exporter_PATH= ${KDE_PREFIX}/bin/pimdataexporter # ====================== end of pim5 components ================================ # ====================== multiversion component ================================ kde-akonadi_PORT= databases/akonadi kde-akonadi_LIB= libKPim${_KDE_VERSION}AkonadiPrivate.so kde-baloo-widgets_PORT= sysutils/baloo-widgets kde-baloo-widgets_LIB= libKF${_KDE_VERSION}BalooWidgets.so kde-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 kde-libkexiv2_LIB= libKExiv2Qt6.so kde-libksane_PORT= graphics/libksane kde-libksane_LIB= libKSaneWidgets${_KDE_VERSION}.so kde-marble_PORT= astro/marble kde-marble_LIB= libmarblewidget-qt6.so kde-kpublictransport_PORT= devel/kpublictransport kde-kpublictransport_LIB= libKPublicTransport.so kde-kosm_PORT= astro/kosmindoormap kde-kosm_LIB= libKOSM.so kde-okular_PORT= graphics/okular kde-okular_LIB= libOkular${_KDE_VERSION}Core.so kde-phonon_PORT= multimedia/phonon@${_QT_RELNAME} kde-phonon_LIB= libphonon4${_QT_RELNAME}.so kde-phonon-mpv_PORT= multimedia/phonon-mpv kde-phonon-mpv_PATH= ${QT_PLUGINDIR}/phonon4${_QT_RELNAME}_backend/phonon_mpv_${_QT_RELNAME}.so kde-phonon-mpv_TYPE= run kde-phonon-vlc_PORT= multimedia/phonon-vlc@${_QT_RELNAME} kde-phonon-vlc_PATH= ${QT_PLUGINDIR}/phonon4${_QT_RELNAME}_backend/phonon_vlc_${_QT_RELNAME}.so kde-phonon-vlc_TYPE= run # ====================== end of multiversion components ======================== # end of component list ######################################################## _USE_KDE_ALL= ${_USE_${_KDE_RELNAME}_ALL} # Iterate through components deprived of suffix. . for component in ${USE_KDE:O:u:C/:.+//} # Check that the component is valid. . if ${_USE_KDE_ALL:M${component}} != "" # Skip meta-components (currently none). . if defined(kde-${component}_PORT) && (defined(kde-${component}_PATH) || defined(kde-${component}_LIB)) # Check if a dependency type is explicitly requested. . if ${USE_KDE:M${component}\:*} != "" && ${USE_KDE:M${component}} == "" kde-${component}_TYPE= # empty . if ${USE_KDE:M${component}\:build} != "" kde-${component}_TYPE+= build . endif . if ${USE_KDE:M${component}\:run} != "" kde-${component}_TYPE+= run . endif . endif # ${USE_KDE:M${component}_*} != "" && ${USE_KDE:M${component}} == "" # If no dependency type is set, default to full dependency. . if !defined(kde-${component}_TYPE) kde-${component}_TYPE= build run . endif # Set real dependencies. . if defined(kde-${component}_LIB) && ${kde-${component}_TYPE:Mbuild} && ${kde-${component}_TYPE:Mrun} LIB_DEPENDS+= ${kde-${component}_LIB}:${kde-${component}_PORT} . else kde-${component}_PATH?= ${KDE_PREFIX}/lib/${kde-${component}_LIB} kde-${component}_DEPENDS= ${kde-${component}_PATH}:${kde-${component}_PORT} . if ${kde-${component}_TYPE:Mbuild} != "" BUILD_DEPENDS+= ${kde-${component}_DEPENDS} . endif . if ${kde-${component}_TYPE:Mrun} != "" RUN_DEPENDS+= ${kde-${component}_DEPENDS} . endif . endif # ${kde-${component}_LIB} && ${kde-${component}_TYPE:Mbuild} && ${kde-${component}_TYPE:Mrun} . endif # defined(kde-${component}_PORT) && defined(kde-${component}_PATH) . else # ! ${_USE_KDE_ALL:M${component}} != "" IGNORE= cannot be installed: unknown USE_KDE component '${component}' . endif # ${_USE_KDE_ALL:M${component}} != "" . endfor . endif .endif diff --git a/accessibility/kmag/distinfo b/accessibility/kmag/distinfo index fe650a08519d..f440d0cda804 100644 --- a/accessibility/kmag/distinfo +++ b/accessibility/kmag/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1751381183 -SHA256 (KDE/release-service/25.04.3/kmag-25.04.3.tar.xz) = 08a59f3805749c9488c6da3cc8479849be589fa468438dc811fec0e6db9f06c3 -SIZE (KDE/release-service/25.04.3/kmag-25.04.3.tar.xz) = 680336 +TIMESTAMP = 1754646097 +SHA256 (KDE/release-service/25.08.0/kmag-25.08.0.tar.xz) = 096d529ab88ad6fb40e7477bfc32230ad64fc7178ce6f17bf24dda38df703a1e +SIZE (KDE/release-service/25.08.0/kmag-25.08.0.tar.xz) = 680336 diff --git a/accessibility/kmousetool/distinfo b/accessibility/kmousetool/distinfo index aea5bfe2904f..4f4381235278 100644 --- a/accessibility/kmousetool/distinfo +++ b/accessibility/kmousetool/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1751381185 -SHA256 (KDE/release-service/25.04.3/kmousetool-25.04.3.tar.xz) = ac1b64c8574820125f2c1a588933d644cda408a0877b8ac66d507d9204e7ea7c -SIZE (KDE/release-service/25.04.3/kmousetool-25.04.3.tar.xz) = 135516 +TIMESTAMP = 1754646099 +SHA256 (KDE/release-service/25.08.0/kmousetool-25.08.0.tar.xz) = 3f15995181477790fce80673ac4bb89b61822757231b2c08713358589f836daf +SIZE (KDE/release-service/25.08.0/kmousetool-25.08.0.tar.xz) = 135536 diff --git a/accessibility/kmouth/distinfo b/accessibility/kmouth/distinfo index dfa82d6199bd..14a2b6836e7b 100644 --- a/accessibility/kmouth/distinfo +++ b/accessibility/kmouth/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1751381187 -SHA256 (KDE/release-service/25.04.3/kmouth-25.04.3.tar.xz) = 2bdc0f49087176614cd98324122752b366287e402323ff1d75aeaca7f748d063 -SIZE (KDE/release-service/25.04.3/kmouth-25.04.3.tar.xz) = 1945180 +TIMESTAMP = 1754646102 +SHA256 (KDE/release-service/25.08.0/kmouth-25.08.0.tar.xz) = c0fecfffedee571fa7cb5af59d3ac13ee12bbcd47ba5001ed2d19f47299ea9b8 +SIZE (KDE/release-service/25.08.0/kmouth-25.08.0.tar.xz) = 1945344 diff --git a/archivers/ark/distinfo b/archivers/ark/distinfo index edbd3a13613e..fcf5399f07e0 100644 --- a/archivers/ark/distinfo +++ b/archivers/ark/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1751381190 -SHA256 (KDE/release-service/25.04.3/ark-25.04.3.tar.xz) = f93a428c88226d61e5a632e0660391189731f80adb574825108015a07bb1051c -SIZE (KDE/release-service/25.04.3/ark-25.04.3.tar.xz) = 3017176 +TIMESTAMP = 1754646104 +SHA256 (KDE/release-service/25.08.0/ark-25.08.0.tar.xz) = 391fae7a08757dd5cc2b0081251c513859345e49d30ce7f10c3da5f4ce4ba3a0 +SIZE (KDE/release-service/25.08.0/ark-25.08.0.tar.xz) = 3017172 diff --git a/archivers/ark/pkg-plist b/archivers/ark/pkg-plist index 75f5620f47ea..48b5cffda691 100644 --- a/archivers/ark/pkg-plist +++ b/archivers/ark/pkg-plist @@ -1,120 +1,118 @@ bin/ark etc/xdg/arkrc lib/libkerfuffle.so.%%KDE_APPLICATIONS_VERSION_SHORT%% lib/libkerfuffle.so.%%KDE_APPLICATIONS_SHLIB_VER%% %%QT_PLUGINDIR%%/kerfuffle/kerfuffle_cli7z.so %%QT_PLUGINDIR%%/kerfuffle/kerfuffle_cliarj.so %%QT_PLUGINDIR%%/kerfuffle/kerfuffle_clirar.so %%QT_PLUGINDIR%%/kerfuffle/kerfuffle_cliunarchiver.so %%QT_PLUGINDIR%%/kerfuffle/kerfuffle_clizip.so %%QT_PLUGINDIR%%/kerfuffle/kerfuffle_libarchive.so %%QT_PLUGINDIR%%/kerfuffle/kerfuffle_libarchive_readonly.so %%ZIP%%%%QT_PLUGINDIR%%/kerfuffle/kerfuffle_libzip.so %%QT_PLUGINDIR%%/kf6/kfileitemaction/compressfileitemaction.so %%QT_PLUGINDIR%%/kf6/kfileitemaction/extractfileitemaction.so %%QT_PLUGINDIR%%/kf6/kio_dnd/extracthere.so %%QT_PLUGINDIR%%/kf6/parts/arkpart.so share/applications/org.kde.ark.desktop share/config.kcfg/ark.kcfg share/icons/hicolor/128x128/apps/ark.png share/icons/hicolor/48x48/apps/ark.png share/icons/hicolor/64x64/apps/ark.png share/icons/hicolor/scalable/apps/ark.svgz -share/kconf_update/ark.upd -share/kconf_update/ark_add_hamburgermenu_to_toolbar.sh share/locale/af/LC_MESSAGES/ark.mo share/locale/ar/LC_MESSAGES/ark.mo share/locale/ast/LC_MESSAGES/ark.mo share/locale/az/LC_MESSAGES/ark.mo share/locale/be/LC_MESSAGES/ark.mo share/locale/bg/LC_MESSAGES/ark.mo share/locale/br/LC_MESSAGES/ark.mo share/locale/bs/LC_MESSAGES/ark.mo share/locale/ca/LC_MESSAGES/ark.mo share/locale/ca@valencia/LC_MESSAGES/ark.mo share/locale/cs/LC_MESSAGES/ark.mo share/locale/cy/LC_MESSAGES/ark.mo share/locale/da/LC_MESSAGES/ark.mo share/locale/de/LC_MESSAGES/ark.mo share/locale/el/LC_MESSAGES/ark.mo share/locale/en_GB/LC_MESSAGES/ark.mo share/locale/eo/LC_MESSAGES/ark.mo share/locale/es/LC_MESSAGES/ark.mo share/locale/et/LC_MESSAGES/ark.mo share/locale/eu/LC_MESSAGES/ark.mo share/locale/fa/LC_MESSAGES/ark.mo share/locale/fi/LC_MESSAGES/ark.mo share/locale/fr/LC_MESSAGES/ark.mo share/locale/ga/LC_MESSAGES/ark.mo share/locale/gl/LC_MESSAGES/ark.mo share/locale/he/LC_MESSAGES/ark.mo share/locale/hi/LC_MESSAGES/ark.mo share/locale/hne/LC_MESSAGES/ark.mo share/locale/hr/LC_MESSAGES/ark.mo share/locale/hu/LC_MESSAGES/ark.mo share/locale/ia/LC_MESSAGES/ark.mo share/locale/id/LC_MESSAGES/ark.mo share/locale/ie/LC_MESSAGES/ark.mo share/locale/is/LC_MESSAGES/ark.mo share/locale/it/LC_MESSAGES/ark.mo share/locale/ja/LC_MESSAGES/ark.mo share/locale/ka/LC_MESSAGES/ark.mo share/locale/kk/LC_MESSAGES/ark.mo share/locale/km/LC_MESSAGES/ark.mo share/locale/ko/LC_MESSAGES/ark.mo share/locale/ku/LC_MESSAGES/ark.mo share/locale/lt/LC_MESSAGES/ark.mo share/locale/lv/LC_MESSAGES/ark.mo share/locale/mk/LC_MESSAGES/ark.mo share/locale/mr/LC_MESSAGES/ark.mo share/locale/ms/LC_MESSAGES/ark.mo share/locale/nb/LC_MESSAGES/ark.mo share/locale/nds/LC_MESSAGES/ark.mo share/locale/ne/LC_MESSAGES/ark.mo share/locale/nl/LC_MESSAGES/ark.mo share/locale/nn/LC_MESSAGES/ark.mo share/locale/oc/LC_MESSAGES/ark.mo share/locale/pa/LC_MESSAGES/ark.mo share/locale/pl/LC_MESSAGES/ark.mo share/locale/pt/LC_MESSAGES/ark.mo share/locale/pt_BR/LC_MESSAGES/ark.mo share/locale/ro/LC_MESSAGES/ark.mo share/locale/ru/LC_MESSAGES/ark.mo share/locale/sa/LC_MESSAGES/ark.mo share/locale/se/LC_MESSAGES/ark.mo share/locale/sk/LC_MESSAGES/ark.mo share/locale/sl/LC_MESSAGES/ark.mo share/locale/sq/LC_MESSAGES/ark.mo share/locale/sr/LC_MESSAGES/ark.mo share/locale/sr@ijekavian/LC_MESSAGES/ark.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/ark.mo share/locale/sr@latin/LC_MESSAGES/ark.mo share/locale/sv/LC_MESSAGES/ark.mo share/locale/ta/LC_MESSAGES/ark.mo share/locale/tg/LC_MESSAGES/ark.mo share/locale/th/LC_MESSAGES/ark.mo share/locale/tr/LC_MESSAGES/ark.mo share/locale/ug/LC_MESSAGES/ark.mo share/locale/uk/LC_MESSAGES/ark.mo share/locale/uz/LC_MESSAGES/ark.mo share/locale/uz@cyrillic/LC_MESSAGES/ark.mo share/locale/xh/LC_MESSAGES/ark.mo share/locale/zh_CN/LC_MESSAGES/ark.mo share/locale/zh_HK/LC_MESSAGES/ark.mo share/locale/zh_TW/LC_MESSAGES/ark.mo share/man/ca/man1/ark.1.gz share/man/es/man1/ark.1.gz share/man/fr/man1/ark.1.gz share/man/gl/man1/ark.1.gz share/man/it/man1/ark.1.gz share/man/man1/ark.1.gz share/man/nl/man1/ark.1.gz share/man/pt_BR/man1/ark.1.gz share/man/sl/man1/ark.1.gz share/man/sr/man1/ark.1.gz share/man/sr@latin/man1/ark.1.gz share/man/sv/man1/ark.1.gz share/man/tr/man1/ark.1.gz share/man/uk/man1/ark.1.gz share/metainfo/org.kde.ark.appdata.xml share/qlogging-categories6/ark.categories diff --git a/astro/kosmindoormap/distinfo b/astro/kosmindoormap/distinfo index e3c4549095b5..41a6d9d59db4 100644 --- a/astro/kosmindoormap/distinfo +++ b/astro/kosmindoormap/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1751381192 -SHA256 (KDE/release-service/25.04.3/kosmindoormap-25.04.3.tar.xz) = 9ac040ce4339bc5e715de07137e79bcaea6ba459e3049a57ce27a750381422da -SIZE (KDE/release-service/25.04.3/kosmindoormap-25.04.3.tar.xz) = 736724 +TIMESTAMP = 1754646106 +SHA256 (KDE/release-service/25.08.0/kosmindoormap-25.08.0.tar.xz) = 46151160bfce5f855e4df6febbdf9e4887f4addd745749dd0888aa9a12d121cb +SIZE (KDE/release-service/25.08.0/kosmindoormap-25.08.0.tar.xz) = 776260 diff --git a/astro/kosmindoormap/pkg-plist b/astro/kosmindoormap/pkg-plist index af014b4eed7c..b519e10de88b 100644 --- a/astro/kosmindoormap/pkg-plist +++ b/astro/kosmindoormap/pkg-plist @@ -1,153 +1,155 @@ include/KOSM/AbstractReader include/KOSM/AbstractWriter include/KOSM/Datatypes include/KOSM/Element include/KOSM/IO include/KOSM/Languages include/KOSMIndoorMap/EquipmentModel include/KOSMIndoorMap/FloorLevelModel include/KOSMIndoorMap/GateModel include/KOSMIndoorMap/HitDetector include/KOSMIndoorMap/MapCSSElementState include/KOSMIndoorMap/MapCSSLoader include/KOSMIndoorMap/MapCSSParser include/KOSMIndoorMap/MapCSSProperty include/KOSMIndoorMap/MapCSSResult include/KOSMIndoorMap/MapCSSStyle include/KOSMIndoorMap/MapCSSTypes include/KOSMIndoorMap/MapData include/KOSMIndoorMap/MapLoader include/KOSMIndoorMap/NetworkAccessManagerFactory include/KOSMIndoorMap/OverlaySource include/KOSMIndoorMap/PainterRenderer include/KOSMIndoorMap/Platform include/KOSMIndoorMap/PlatformModel include/KOSMIndoorMap/SceneController include/KOSMIndoorMap/SceneGraph include/KOSMIndoorMap/SceneGraphItem include/KOSMIndoorMap/View include/KOSMIndoorRouting/NavMesh include/KOSMIndoorRouting/NavMeshBuilder include/KOSMIndoorRouting/NavMeshTransform include/KOSMIndoorRouting/Route include/KOSMIndoorRouting/RoutingArea include/KOSMIndoorRouting/RoutingJob include/KOSMIndoorRouting/RoutingProfile include/kosm/abstractreader.h include/kosm/abstractwriter.h include/kosm/datatypes.h include/kosm/element.h include/kosm/internal.h include/kosm/io.h include/kosm/kosm_export.h include/kosm/languages.h include/kosm/stringpool.h include/kosmindoormap/equipmentmodel.h include/kosmindoormap/floorlevelmodel.h include/kosmindoormap/gatemodel.h include/kosmindoormap/hitdetector.h include/kosmindoormap/kosmindoormap_export.h include/kosmindoormap/mapcsselementstate.h include/kosmindoormap/mapcssloader.h include/kosmindoormap/mapcssparser.h include/kosmindoormap/mapcssproperty.h include/kosmindoormap/mapcssresult.h include/kosmindoormap/mapcssstyle.h include/kosmindoormap/mapcsstypes.h include/kosmindoormap/mapdata.h include/kosmindoormap/maploader.h include/kosmindoormap/networkaccessmanagerfactory.h include/kosmindoormap/overlaysource.h include/kosmindoormap/painterrenderer.h include/kosmindoormap/platform.h include/kosmindoormap/platformmodel.h include/kosmindoormap/scenecontroller.h include/kosmindoormap/scenegraph.h include/kosmindoormap/scenegraphitem.h include/kosmindoormap/view.h include/kosmindoormap_version.h include/kosmindoorrouting/kosmindoorrouting_export.h include/kosmindoorrouting/navmesh.h include/kosmindoorrouting/navmeshbuilder.h include/kosmindoorrouting/navmeshtransform.h include/kosmindoorrouting/route.h include/kosmindoorrouting/routingarea.h include/kosmindoorrouting/routingjob.h include/kosmindoorrouting/routingprofile.h lib/cmake/KOSMIndoorMap/KOSMIndoorMapConfig.cmake lib/cmake/KOSMIndoorMap/KOSMIndoorMapConfigVersion.cmake lib/cmake/KOSMIndoorMap/KOSMIndoorMapTargets-%%CMAKE_BUILD_TYPE%%.cmake lib/cmake/KOSMIndoorMap/KOSMIndoorMapTargets.cmake lib/libKOSM.so lib/libKOSM.so.1 lib/libKOSM.so.%%KDE_APPLICATIONS_VERSION%% lib/libKOSMIndoorMap.so lib/libKOSMIndoorMap.so.1 lib/libKOSMIndoorMap.so.%%KDE_APPLICATIONS_VERSION%% lib/libKOSMIndoorRouting.so lib/libKOSMIndoorRouting.so.1 lib/libKOSMIndoorRouting.so.%%KDE_APPLICATIONS_VERSION%% %%QT_QMLDIR%%/org/kde/kosmindoormap/AmenityListDelegate.qml %%QT_QMLDIR%%/org/kde/kosmindoormap/AmenitySearchDialog.qml %%QT_QMLDIR%%/org/kde/kosmindoormap/FloorLevelSelector.qml %%QT_QMLDIR%%/org/kde/kosmindoormap/IndoorMap.qml %%QT_QMLDIR%%/org/kde/kosmindoormap/IndoorMapAttributionLabel.qml %%QT_QMLDIR%%/org/kde/kosmindoormap/IndoorMapScale.qml +%%QT_QMLDIR%%/org/kde/kosmindoormap/IndoorMapView.qml %%QT_QMLDIR%%/org/kde/kosmindoormap/OSMElementInformationDialog.qml %%QT_QMLDIR%%/org/kde/kosmindoormap/OSMElementInformationDialogAddressDelegate.qml %%QT_QMLDIR%%/org/kde/kosmindoormap/OSMElementInformationDialogImageDelegate.qml %%QT_QMLDIR%%/org/kde/kosmindoormap/OSMElementInformationDialogLinkDelegate.qml %%QT_QMLDIR%%/org/kde/kosmindoormap/OSMElementInformationDialogOpeningHoursDelegate.qml %%QT_QMLDIR%%/org/kde/kosmindoormap/OSMElementInformationDialogStringDelegate.qml %%QT_QMLDIR%%/org/kde/kosmindoormap/RoomSearchDialog.qml %%QT_QMLDIR%%/org/kde/kosmindoormap/kde-qmlmodule.version %%QT_QMLDIR%%/org/kde/kosmindoormap/kosmindoormapquickplugin.qmltypes +%%QT_QMLDIR%%/org/kde/kosmindoormap/kpublictransport/PlatformDialog.qml %%QT_QMLDIR%%/org/kde/kosmindoormap/kpublictransport/kde-qmlmodule.version %%QT_QMLDIR%%/org/kde/kosmindoormap/kpublictransport/kosmindoormap_kpublictransport_integration_plugin.qmltypes %%QT_QMLDIR%%/org/kde/kosmindoormap/kpublictransport/libkosmindoormap_kpublictransport_integration_plugin.so %%QT_QMLDIR%%/org/kde/kosmindoormap/kpublictransport/qmldir %%QT_QMLDIR%%/org/kde/kosmindoormap/libkosmindoormapquickplugin.so %%QT_QMLDIR%%/org/kde/kosmindoormap/qmldir %%QT_QMLDIR%%/org/kde/kosmindoorrouting/kde-qmlmodule.version %%QT_QMLDIR%%/org/kde/kosmindoorrouting/kosmindoorroutingquickplugin.qmltypes %%QT_QMLDIR%%/org/kde/kosmindoorrouting/libkosmindoorroutingquickplugin.so %%QT_QMLDIR%%/org/kde/kosmindoorrouting/qmldir %%QT_QMLDIR%%/org/kde/osm/editorcontroller/kde-qmlmodule.version %%QT_QMLDIR%%/org/kde/osm/editorcontroller/kosmeditorcontrollerplugin.qmltypes %%QT_QMLDIR%%/org/kde/osm/editorcontroller/libkosmeditorcontrollerplugin.so %%QT_QMLDIR%%/org/kde/osm/editorcontroller/qmldir share/locale/ar/LC_MESSAGES/kosmindoormap.mo share/locale/ast/LC_MESSAGES/kosmindoormap.mo share/locale/ca/LC_MESSAGES/kosmindoormap.mo share/locale/ca@valencia/LC_MESSAGES/kosmindoormap.mo share/locale/cs/LC_MESSAGES/kosmindoormap.mo share/locale/de/LC_MESSAGES/kosmindoormap.mo share/locale/en_GB/LC_MESSAGES/kosmindoormap.mo share/locale/eo/LC_MESSAGES/kosmindoormap.mo share/locale/es/LC_MESSAGES/kosmindoormap.mo share/locale/eu/LC_MESSAGES/kosmindoormap.mo share/locale/fi/LC_MESSAGES/kosmindoormap.mo share/locale/fr/LC_MESSAGES/kosmindoormap.mo share/locale/gl/LC_MESSAGES/kosmindoormap.mo share/locale/he/LC_MESSAGES/kosmindoormap.mo share/locale/hi/LC_MESSAGES/kosmindoormap.mo share/locale/ia/LC_MESSAGES/kosmindoormap.mo share/locale/it/LC_MESSAGES/kosmindoormap.mo share/locale/ja/LC_MESSAGES/kosmindoormap.mo share/locale/ka/LC_MESSAGES/kosmindoormap.mo share/locale/ko/LC_MESSAGES/kosmindoormap.mo share/locale/lt/LC_MESSAGES/kosmindoormap.mo share/locale/nl/LC_MESSAGES/kosmindoormap.mo share/locale/pl/LC_MESSAGES/kosmindoormap.mo share/locale/pt/LC_MESSAGES/kosmindoormap.mo share/locale/pt_BR/LC_MESSAGES/kosmindoormap.mo share/locale/ru/LC_MESSAGES/kosmindoormap.mo share/locale/sa/LC_MESSAGES/kosmindoormap.mo share/locale/sk/LC_MESSAGES/kosmindoormap.mo share/locale/sl/LC_MESSAGES/kosmindoormap.mo share/locale/sv/LC_MESSAGES/kosmindoormap.mo share/locale/tr/LC_MESSAGES/kosmindoormap.mo share/locale/uk/LC_MESSAGES/kosmindoormap.mo share/locale/zh_CN/LC_MESSAGES/kosmindoormap.mo share/locale/zh_TW/LC_MESSAGES/kosmindoormap.mo share/qlogging-categories6/org_kde_kosmindoormap.categories diff --git a/astro/marble/distinfo b/astro/marble/distinfo index 353952b2b3d5..ab24768ba22a 100644 --- a/astro/marble/distinfo +++ b/astro/marble/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1751381195 -SHA256 (KDE/release-service/25.04.3/marble-25.04.3.tar.xz) = 1c2fed2367dceb07b1898699f7bcecd5ad67e24d3a8ed56e17fba3792c52aa44 -SIZE (KDE/release-service/25.04.3/marble-25.04.3.tar.xz) = 53772960 +TIMESTAMP = 1754646109 +SHA256 (KDE/release-service/25.08.0/marble-25.08.0.tar.xz) = 6f5bf1cebc3311ce2439c4243f90ad249722edf12a96fb927ca60b83e98c7c9a +SIZE (KDE/release-service/25.08.0/marble-25.08.0.tar.xz) = 53786572 diff --git a/astro/marble/pkg-plist b/astro/marble/pkg-plist index bedb17264007..c5f2d864dbc8 100644 --- a/astro/marble/pkg-plist +++ b/astro/marble/pkg-plist @@ -1,1903 +1,1904 @@ 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/he/LC_MESSAGES/plasma_wallpaper_org.kde.plasma.worldmap.mo share/locale/hi/LC_MESSAGES/marble-behaim.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/hi/LC_MESSAGES/plasma_applet_org.kde.plasma.worldclock.mo share/locale/hi/LC_MESSAGES/plasma_runner_marble.mo share/locale/hi/LC_MESSAGES/plasma_wallpaper_org.kde.plasma.worldmap.mo 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-behaim.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-behaim.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/sa/LC_MESSAGES/marble-behaim.mo share/locale/sa/LC_MESSAGES/marble-maps.mo share/locale/sa/LC_MESSAGES/marble.mo share/locale/sa/LC_MESSAGES/marble_qt.qm share/locale/sa/LC_MESSAGES/plasma_applet_org.kde.plasma.worldclock.mo share/locale/sa/LC_MESSAGES/plasma_runner_marble.mo share/locale/sa/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 87088a845ad1..31ee930b671c 100644 --- a/audio/audiocd-kio/distinfo +++ b/audio/audiocd-kio/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1751381197 -SHA256 (KDE/release-service/25.04.3/audiocd-kio-25.04.3.tar.xz) = 446bf072506f847409fbe2712eed898f14d95be4caad4501cd04be83c4da7213 -SIZE (KDE/release-service/25.04.3/audiocd-kio-25.04.3.tar.xz) = 583988 +TIMESTAMP = 1754646111 +SHA256 (KDE/release-service/25.08.0/audiocd-kio-25.08.0.tar.xz) = 7da5ce5d4be9cb66e60e471d615a3d606776abc48712c5b622d11ddf169553fb +SIZE (KDE/release-service/25.08.0/audiocd-kio-25.08.0.tar.xz) = 584292 diff --git a/audio/elisa/Makefile b/audio/elisa/Makefile index 95e7d3d33a38..1a2f7a6c7199 100644 --- a/audio/elisa/Makefile +++ b/audio/elisa/Makefile @@ -1,39 +1,38 @@ PORTNAME= elisa DISTVERSION= ${KDE_APPLICATIONS_VERSION} -PORTREVISION= 2 CATEGORIES= audio kde kde-applications MAINTAINER= kde@FreeBSD.org COMMENT= Audio player with QML and KDE Plasma integration WWW= https://userbase.kde.org/Elisa LICENSE= LGPL3+ LICENSE_FILE= ${WRKSRC}/COPYING USES= cmake compiler:c++14-lang desktop-file-utils gettext kde:6 \ pkgconfig qt:6 tar:xz xorg USE_KDE= auth baloo bookmarks codecs completion config configwidgets \ coreaddons crash dbusaddons filemetadata i18n iconthemes \ itemviews jobwidgets kcmutils kdeclarative kio kirigami-addons \ kirigami2 package qqc2-desktop-style service solid \ widgetsaddons windowsystem xmlgui \ ecm:build USE_QT= base multimedia USE_XORG= x11 OPTIONS_DEFINE= DOCS OPTIONS_DEFAULT= DOCS GSTREAMER # VLC still uses Qt5 OPTIONS_MULTI= BACKEND BACKEND_DESC= Audio backend OPTIONS_MULTI_BACKEND= VLC GSTREAMER VLC_DESC= Play audio via VLC VLC_CMAKE_BOOL_OFF= CMAKE_DISABLE_FIND_PACKAGE_LIBVLC VLC_LIB_DEPENDS= libvlc.so:multimedia/vlc GSTREAMER_DESC= Play audio via QtMultimedia/GStreamer GSTREAMER_USES= gstreamer GSTREAMER_USE= GSTREAMER=hls,libav,soup .include diff --git a/audio/elisa/distinfo b/audio/elisa/distinfo index 3ac9dc561d71..7575480c4688 100644 --- a/audio/elisa/distinfo +++ b/audio/elisa/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1751381200 -SHA256 (KDE/release-service/25.04.3/elisa-25.04.3.tar.xz) = 16e4e38a9e7dcf9b42441c66707d5bbb52aef5c95422d8ee04a4a21e7f157392 -SIZE (KDE/release-service/25.04.3/elisa-25.04.3.tar.xz) = 1488508 +TIMESTAMP = 1754646114 +SHA256 (KDE/release-service/25.08.0/elisa-25.08.0.tar.xz) = 76029c54e927873039c3c282ada787a78f1d0d6dbc8fa9bd2e819aeec5df2d5c +SIZE (KDE/release-service/25.08.0/elisa-25.08.0.tar.xz) = 1498424 diff --git a/audio/juk/distinfo b/audio/juk/distinfo index 32c5b7bc164b..1409b9db65a8 100644 --- a/audio/juk/distinfo +++ b/audio/juk/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1751381202 -SHA256 (KDE/release-service/25.04.3/juk-25.04.3.tar.xz) = ec254988faedd3526db1e3476622083f02ac21000ff81e38672dd7b9979d1921 -SIZE (KDE/release-service/25.04.3/juk-25.04.3.tar.xz) = 1919264 +TIMESTAMP = 1754646116 +SHA256 (KDE/release-service/25.08.0/juk-25.08.0.tar.xz) = 1b3edb5e0e4a5f509b2460f2d37d553353993fef78e85ec09f87877215fa11f0 +SIZE (KDE/release-service/25.08.0/juk-25.08.0.tar.xz) = 1933436 diff --git a/audio/kmix/distinfo b/audio/kmix/distinfo index 6fc239b1668c..e40484455cc1 100644 --- a/audio/kmix/distinfo +++ b/audio/kmix/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1751381205 -SHA256 (KDE/release-service/25.04.3/kmix-25.04.3.tar.xz) = 3d8eb02bb4c180b005e95b2ca5cb6a2b6326e78f539d83fd385051fbe682ebd2 -SIZE (KDE/release-service/25.04.3/kmix-25.04.3.tar.xz) = 1177372 +TIMESTAMP = 1754646119 +SHA256 (KDE/release-service/25.08.0/kmix-25.08.0.tar.xz) = df911c7e393290ff087dd17baa223372626ea79861d3553e6f23058b180bfb81 +SIZE (KDE/release-service/25.08.0/kmix-25.08.0.tar.xz) = 1178668 diff --git a/audio/kwave/distinfo b/audio/kwave/distinfo index 18977bc7035c..10dbb1b849e5 100644 --- a/audio/kwave/distinfo +++ b/audio/kwave/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1751381207 -SHA256 (KDE/release-service/25.04.3/kwave-25.04.3.tar.xz) = 01e18cdfaa296003d6b3ae1853aebd4371e18166f6a99fa899237f7ccb756e46 -SIZE (KDE/release-service/25.04.3/kwave-25.04.3.tar.xz) = 6519092 +TIMESTAMP = 1754646121 +SHA256 (KDE/release-service/25.08.0/kwave-25.08.0.tar.xz) = 80c1f2eb0641148ac4256418bb581a85c16d5e1d31454a1ccd77c20295315fd7 +SIZE (KDE/release-service/25.08.0/kwave-25.08.0.tar.xz) = 6518688 diff --git a/audio/libkcddb/distinfo b/audio/libkcddb/distinfo index a1a045a6b678..fb73edff8438 100644 --- a/audio/libkcddb/distinfo +++ b/audio/libkcddb/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1751381210 -SHA256 (KDE/release-service/25.04.3/libkcddb-25.04.3.tar.xz) = 6dde624998ff702b85aa6ec58a160136469f625932e183ddb1845e5adb669acb -SIZE (KDE/release-service/25.04.3/libkcddb-25.04.3.tar.xz) = 450212 +TIMESTAMP = 1754646124 +SHA256 (KDE/release-service/25.08.0/libkcddb-25.08.0.tar.xz) = e6a8573f554cd920e6f828010cde8c4aaeac5b329029f76ca2fe4bd5495627ec +SIZE (KDE/release-service/25.08.0/libkcddb-25.08.0.tar.xz) = 448896 diff --git a/audio/libkcompactdisc/distinfo b/audio/libkcompactdisc/distinfo index 4120bfc954fc..d2b653a8d9ff 100644 --- a/audio/libkcompactdisc/distinfo +++ b/audio/libkcompactdisc/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1751381212 -SHA256 (KDE/release-service/25.04.3/libkcompactdisc-25.04.3.tar.xz) = ee0be866b6f941cdf6b3c87a45861bc7685a5ba9875caf8e5f46841d8322d37f -SIZE (KDE/release-service/25.04.3/libkcompactdisc-25.04.3.tar.xz) = 100696 +TIMESTAMP = 1754646126 +SHA256 (KDE/release-service/25.08.0/libkcompactdisc-25.08.0.tar.xz) = a56355f676edcd1c9c143f03b29cf9b97c49cc2ae952fa5c1004fab2be50472f +SIZE (KDE/release-service/25.08.0/libkcompactdisc-25.08.0.tar.xz) = 100664 diff --git a/databases/akonadi/Makefile b/databases/akonadi/Makefile index 60f5b9fb2739..291e91f70b92 100644 --- a/databases/akonadi/Makefile +++ b/databases/akonadi/Makefile @@ -1,61 +1,63 @@ PORTNAME= akonadi DISTVERSION= ${KDE_APPLICATIONS_VERSION} CATEGORIES= databases kde kde-applications +PATCH_SITES= https://invent.kde.org/pim/akonadi/-/commit/ +PATCHFILES= 6964e49050e9e6e094669c74ac8527faabaaffb6.patch:-p1 MAINTAINER= kde@FreeBSD.org COMMENT= Storage server for KDE-Pim WWW= https://community.kde.org/KDE_PIM/Akonadi LICENSE= LGPL21 LIB_DEPENDS= libboost_thread.so:devel/boost-libs \ libkaccounts6.so:net-im/kaccounts-integration \ libaccounts-qt6.so:net-im/libaccounts-qt@qt6 # Let process generate meaningful backtrace on core dump. BUILD_DEPENDS= xsltproc:textproc/libxslt USES= cmake compiler:c++11-lib gettext gnome kde:6 qt:6 \ shared-mime-info sqlite:3 tar:xz xorg USE_GNOME= libxml2 USE_KDE= auth codecs completion config configwidgets coreaddons crash \ dbusaddons guiaddons i18n iconthemes itemmodels itemviews kio \ service widgetsaddons windowsystem xmlgui \ ecm:build USE_QT= base \ sqldriver-sqlite:run USE_XORG= x11 CMAKE_ARGS+= -DCMAKE_REQUIRED_INCLUDES:STRING="${LOCALBASE}/include" \ -DMYSQLD_EXECUTABLE:FILEPATH="${LOCALBASE}/libexec/mysqld" \ -DMYSQLD_SCRIPTS_PATH:PATH="${LOCALBASE}/bin" \ -DPOSTGRES_PATH:FILEPATH="${LOCALBASE}/bin/pg_ctl" USE_LDCONFIG= yes OPTIONS_DEFINE= DOCS OPTIONS_GROUP= DB OPTIONS_GROUP_DB= MYSQL PGSQL OPTIONS_DEFAULT= MYSQL MYSQL_DESC= Install MySQL Qt plugin and server MYSQL_USES= mysql:server MYSQL_USE= QT=sqldriver-mysql:run PGSQL_DESC= Install PostgreSQL Qt plugin PGSQL_USE= QT=sqldriver-psql:run .include .if ${PORT_OPTIONS:MMYSQL} CMAKE_ARGS+= -DDATABASE_BACKEND:STRING="MYSQL" .elif ${PORT_OPTIONS:MPGSQL} CMAKE_ARGS+= -DDATABASE_BACKEND:STRING="POSTGRES" .endif post-patch: # To avoid overflow, MySQL settings need to be lower than # INT_MAX / kern.hz. This setting assumes kern.hz=2000, and # it's nothing but a temporary hack. ${REINPLACE_CMD} -e '/wait_timeout/ s|31536000|1073741|' \ ${PATCH_WRKSRC}/src/server/storage/*.conf .include diff --git a/databases/akonadi/distinfo b/databases/akonadi/distinfo index 9956fa9a1f92..58cbaab18132 100644 --- a/databases/akonadi/distinfo +++ b/databases/akonadi/distinfo @@ -1,3 +1,5 @@ -TIMESTAMP = 1751381215 -SHA256 (KDE/release-service/25.04.3/akonadi-25.04.3.tar.xz) = 042cd3319eadfb82547773e52ce7d41d361d58c4e92fe75a5179c1574ed4f5df -SIZE (KDE/release-service/25.04.3/akonadi-25.04.3.tar.xz) = 1742704 +TIMESTAMP = 1755258573 +SHA256 (KDE/release-service/25.08.0/akonadi-25.08.0.tar.xz) = d7b79d8ad021f3bbe1410bbd2c1755d3fa54a727c70eb9008dccf94e642a664e +SIZE (KDE/release-service/25.08.0/akonadi-25.08.0.tar.xz) = 1766664 +SHA256 (KDE/release-service/25.08.0/6964e49050e9e6e094669c74ac8527faabaaffb6.patch) = 30cfae6439e34986634f3a90892c2ff6b6972704f3f964c79f19ca9b118b8401 +SIZE (KDE/release-service/25.08.0/6964e49050e9e6e094669c74ac8527faabaaffb6.patch) = 960 diff --git a/databases/akonadi/pkg-plist b/databases/akonadi/pkg-plist index 8c01869be858..cd09935646b3 100644 --- a/databases/akonadi/pkg-plist +++ b/databases/akonadi/pkg-plist @@ -1,541 +1,562 @@ bin/akonadi-db-migrator bin/akonadi2xml bin/akonadi_agent_launcher bin/akonadi_agent_server bin/akonadi_control bin/akonadi_knut_resource bin/akonadi_rds +bin/akonadiagentconfigdialog bin/akonadictl bin/akonadiselftest bin/akonadiserver bin/akonaditest bin/asapcat etc/apparmor.d/mariadbd_akonadi etc/apparmor.d/mysqld_akonadi etc/apparmor.d/postgresql_akonadi etc/apparmor.d/usr.bin.akonadiserver etc/xdg/akonadi/mysql-global-mobile.conf etc/xdg/akonadi/mysql-global.conf include/KPim6/Akonadi/akonadi/private/akonadiprivate_export.h include/KPim6/Akonadi/akonadi/private/capabilities_p.h include/KPim6/Akonadi/akonadi/private/compressionstream_p.h include/KPim6/Akonadi/akonadi/private/dbus_p.h include/KPim6/Akonadi/akonadi/private/externalpartstorage_p.h include/KPim6/Akonadi/akonadi/private/imapparser_p.h include/KPim6/Akonadi/akonadi/private/imapset_p.h include/KPim6/Akonadi/akonadi/private/instance_p.h include/KPim6/Akonadi/akonadi/private/protocol_exception_p.h include/KPim6/Akonadi/akonadi/private/protocol_gen.h include/KPim6/Akonadi/akonadi/private/protocol_p.h include/KPim6/Akonadi/akonadi/private/scope_p.h include/KPim6/Akonadi/akonadi/private/standarddirs_p.h include/KPim6/Akonadi/akonadi/private/tristate_p.h include/KPim6/AkonadiAgentBase/Akonadi/AccountsIntegration include/KPim6/AkonadiAgentBase/Akonadi/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/AkonadiAgentWidgetBase/Akonadi/AgentWidgetBase +include/KPim6/AkonadiAgentWidgetBase/Akonadi/ResourceWidgetBase +include/KPim6/AkonadiAgentWidgetBase/akonadi/agentwidgetbase.h +include/KPim6/AkonadiAgentWidgetBase/akonadi/akonadiagentwidgetbase_export.h +include/KPim6/AkonadiAgentWidgetBase/akonadi/resourcewidgetbase.h include/KPim6/AkonadiCore/Akonadi/AbstractDifferencesReporter include/KPim6/AkonadiCore/Akonadi/AccountActivitiesAbstract include/KPim6/AkonadiCore/Akonadi/AgentConfigurationBase include/KPim6/AkonadiCore/Akonadi/AgentConfigurationFactoryBase include/KPim6/AkonadiCore/Akonadi/AgentFilterProxyModel include/KPim6/AkonadiCore/Akonadi/AgentInstance include/KPim6/AkonadiCore/Akonadi/AgentInstanceCreateJob include/KPim6/AkonadiCore/Akonadi/AgentInstanceFilterProxyModel include/KPim6/AkonadiCore/Akonadi/AgentInstanceModel include/KPim6/AkonadiCore/Akonadi/AgentManager include/KPim6/AkonadiCore/Akonadi/AgentType include/KPim6/AkonadiCore/Akonadi/AgentTypeModel include/KPim6/AkonadiCore/Akonadi/Attribute include/KPim6/AkonadiCore/Akonadi/AttributeFactory include/KPim6/AkonadiCore/Akonadi/CachePolicy include/KPim6/AkonadiCore/Akonadi/ChangeNotification include/KPim6/AkonadiCore/Akonadi/ChangeRecorder include/KPim6/AkonadiCore/Akonadi/Collection include/KPim6/AkonadiCore/Akonadi/CollectionAnnotationsAttribute include/KPim6/AkonadiCore/Akonadi/CollectionAttributesSynchronizationJob include/KPim6/AkonadiCore/Akonadi/CollectionColorAttribute include/KPim6/AkonadiCore/Akonadi/CollectionCopyJob include/KPim6/AkonadiCore/Akonadi/CollectionCreateJob include/KPim6/AkonadiCore/Akonadi/CollectionDeleteJob include/KPim6/AkonadiCore/Akonadi/CollectionFetchJob include/KPim6/AkonadiCore/Akonadi/CollectionFetchScope include/KPim6/AkonadiCore/Akonadi/CollectionFilterProxyModel include/KPim6/AkonadiCore/Akonadi/CollectionIdentificationAttribute include/KPim6/AkonadiCore/Akonadi/CollectionModifyJob include/KPim6/AkonadiCore/Akonadi/CollectionMoveJob include/KPim6/AkonadiCore/Akonadi/CollectionPathResolver include/KPim6/AkonadiCore/Akonadi/CollectionQuotaAttribute include/KPim6/AkonadiCore/Akonadi/CollectionStatistics include/KPim6/AkonadiCore/Akonadi/CollectionStatisticsJob include/KPim6/AkonadiCore/Akonadi/CollectionUtils include/KPim6/AkonadiCore/Akonadi/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/libKPim6AkonadiAgentWidgetBase.so +lib/libKPim6AkonadiAgentWidgetBase.so.6 +lib/libKPim6AkonadiAgentWidgetBase.so.%%KDE_APPLICATIONS_SHLIB_VER%% lib/libKPim6AkonadiCore.so lib/libKPim6AkonadiCore.so.6 lib/libKPim6AkonadiCore.so.%%KDE_APPLICATIONS_SHLIB_VER%% lib/libKPim6AkonadiPrivate.so lib/libKPim6AkonadiPrivate.so.6 lib/libKPim6AkonadiPrivate.so.%%KDE_APPLICATIONS_SHLIB_VER%% lib/libKPim6AkonadiWidgets.so lib/libKPim6AkonadiWidgets.so.6 lib/libKPim6AkonadiWidgets.so.%%KDE_APPLICATIONS_SHLIB_VER%% lib/libKPim6AkonadiXml.so lib/libKPim6AkonadiXml.so.6 lib/libKPim6AkonadiXml.so.%%KDE_APPLICATIONS_SHLIB_VER%% %%QT_PLUGINDIR%%/designer/akonadi6widgets.so %%QT_PLUGINDIR%%/pim6/akonadi/akonadi_test_searchplugin.so +%%QT_PLUGINDIR%%/pim6/akonadi/config/knutconfig.so +%%QT_QMLDIR%%/org/kde/akonadi/AgentConfigurationForm.qml +%%QT_QMLDIR%%/org/kde/akonadi/CollectionChooserPage.qml +%%QT_QMLDIR%%/org/kde/akonadi/CollectionComboBox.qml +%%QT_QMLDIR%%/org/kde/akonadi/FormCollectionComboBox.qml +%%QT_QMLDIR%%/org/kde/akonadi/TagManagerPage.qml +%%QT_QMLDIR%%/org/kde/akonadi/akonadi_quick_plugin.qmltypes +%%QT_QMLDIR%%/org/kde/akonadi/kde-qmlmodule.version +%%QT_QMLDIR%%/org/kde/akonadi/libakonadi_quick_plugin.so +%%QT_QMLDIR%%/org/kde/akonadi/qmldir %%DATADIR%%/agents/knutresource.desktop +share/applications/org.kde.akonadi.configdialog.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/he/LC_MESSAGES/libakonadi6.mo share/locale/hi/LC_MESSAGES/akonadi-db-migrator.mo share/locale/hi/LC_MESSAGES/akonadi_knut_resource.mo share/locale/hi/LC_MESSAGES/libakonadi6.mo share/locale/hsb/LC_MESSAGES/libakonadi6.mo share/locale/hu/LC_MESSAGES/akonadi-db-migrator.mo share/locale/hu/LC_MESSAGES/akonadi_knut_resource.mo share/locale/hu/LC_MESSAGES/libakonadi6.mo share/locale/ia/LC_MESSAGES/akonadi-db-migrator.mo share/locale/ia/LC_MESSAGES/akonadi_knut_resource.mo share/locale/ia/LC_MESSAGES/libakonadi6.mo share/locale/id/LC_MESSAGES/akonadi-db-migrator.mo share/locale/id/LC_MESSAGES/akonadi_knut_resource.mo share/locale/id/LC_MESSAGES/libakonadi6.mo share/locale/is/LC_MESSAGES/akonadi_knut_resource.mo share/locale/it/LC_MESSAGES/akonadi-db-migrator.mo share/locale/it/LC_MESSAGES/akonadi_knut_resource.mo share/locale/it/LC_MESSAGES/libakonadi6.mo share/locale/ja/LC_MESSAGES/akonadi-db-migrator.mo share/locale/ja/LC_MESSAGES/akonadi_knut_resource.mo share/locale/ja/LC_MESSAGES/libakonadi6.mo share/locale/ka/LC_MESSAGES/akonadi-db-migrator.mo share/locale/ka/LC_MESSAGES/akonadi_knut_resource.mo share/locale/ka/LC_MESSAGES/libakonadi6.mo share/locale/kk/LC_MESSAGES/akonadi_knut_resource.mo share/locale/kk/LC_MESSAGES/libakonadi6.mo share/locale/km/LC_MESSAGES/akonadi_knut_resource.mo share/locale/km/LC_MESSAGES/libakonadi6.mo share/locale/ko/LC_MESSAGES/akonadi-db-migrator.mo share/locale/ko/LC_MESSAGES/akonadi_knut_resource.mo share/locale/ko/LC_MESSAGES/libakonadi6.mo share/locale/lt/LC_MESSAGES/akonadi-db-migrator.mo share/locale/lt/LC_MESSAGES/akonadi_knut_resource.mo share/locale/lt/LC_MESSAGES/libakonadi6.mo share/locale/lv/LC_MESSAGES/akonadi-db-migrator.mo share/locale/lv/LC_MESSAGES/akonadi_knut_resource.mo share/locale/lv/LC_MESSAGES/libakonadi6.mo share/locale/mai/LC_MESSAGES/libakonadi6.mo share/locale/mr/LC_MESSAGES/akonadi_knut_resource.mo share/locale/mr/LC_MESSAGES/libakonadi6.mo share/locale/my/LC_MESSAGES/akonadi_knut_resource.mo share/locale/my/LC_MESSAGES/libakonadi6.mo share/locale/nb/LC_MESSAGES/akonadi_knut_resource.mo share/locale/nb/LC_MESSAGES/libakonadi6.mo share/locale/nds/LC_MESSAGES/akonadi_knut_resource.mo share/locale/nds/LC_MESSAGES/libakonadi6.mo share/locale/nl/LC_MESSAGES/akonadi-db-migrator.mo share/locale/nl/LC_MESSAGES/akonadi_knut_resource.mo share/locale/nl/LC_MESSAGES/libakonadi6.mo share/locale/nn/LC_MESSAGES/akonadi_knut_resource.mo share/locale/nn/LC_MESSAGES/libakonadi6.mo share/locale/pa/LC_MESSAGES/akonadi-db-migrator.mo share/locale/pa/LC_MESSAGES/akonadi_knut_resource.mo share/locale/pa/LC_MESSAGES/libakonadi6.mo share/locale/pl/LC_MESSAGES/akonadi-db-migrator.mo share/locale/pl/LC_MESSAGES/akonadi_knut_resource.mo share/locale/pl/LC_MESSAGES/libakonadi6.mo share/locale/pt/LC_MESSAGES/akonadi_knut_resource.mo share/locale/pt/LC_MESSAGES/libakonadi6.mo +share/locale/pt_BR/LC_MESSAGES/akonadi-db-migrator.mo share/locale/pt_BR/LC_MESSAGES/akonadi_knut_resource.mo share/locale/pt_BR/LC_MESSAGES/libakonadi6.mo share/locale/ro/LC_MESSAGES/akonadi_knut_resource.mo share/locale/ro/LC_MESSAGES/libakonadi6.mo share/locale/ru/LC_MESSAGES/akonadi-db-migrator.mo share/locale/ru/LC_MESSAGES/akonadi_knut_resource.mo share/locale/ru/LC_MESSAGES/libakonadi6.mo share/locale/sa/LC_MESSAGES/akonadi-db-migrator.mo share/locale/sa/LC_MESSAGES/akonadi_knut_resource.mo share/locale/sa/LC_MESSAGES/libakonadi6.mo share/locale/se/LC_MESSAGES/libakonadi6.mo share/locale/sk/LC_MESSAGES/akonadi-db-migrator.mo share/locale/sk/LC_MESSAGES/akonadi_knut_resource.mo share/locale/sk/LC_MESSAGES/libakonadi6.mo share/locale/sl/LC_MESSAGES/akonadi-db-migrator.mo share/locale/sl/LC_MESSAGES/akonadi_knut_resource.mo share/locale/sl/LC_MESSAGES/libakonadi6.mo share/locale/sq/LC_MESSAGES/akonadi_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 8685573f419f..8a01b40f8870 100644 --- a/deskutils/akonadi-calendar-tools/distinfo +++ b/deskutils/akonadi-calendar-tools/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1751381217 -SHA256 (KDE/release-service/25.04.3/akonadi-calendar-tools-25.04.3.tar.xz) = 05281dde40e63f09afd80bd09b6cb5c076d76c976972228e278597f3b9ec525f -SIZE (KDE/release-service/25.04.3/akonadi-calendar-tools-25.04.3.tar.xz) = 273268 +TIMESTAMP = 1754646131 +SHA256 (KDE/release-service/25.08.0/akonadi-calendar-tools-25.08.0.tar.xz) = 27e6d5aca728bbdc156382f2e783b5ed2f8c443dc5e3bfc3bd2d89391c166de8 +SIZE (KDE/release-service/25.08.0/akonadi-calendar-tools-25.08.0.tar.xz) = 274380 diff --git a/deskutils/akonadi-calendar-tools/pkg-plist b/deskutils/akonadi-calendar-tools/pkg-plist index b4b92db2d6de..89c09ab5ec4c 100644 --- a/deskutils/akonadi-calendar-tools/pkg-plist +++ b/deskutils/akonadi-calendar-tools/pkg-plist @@ -1,128 +1,129 @@ bin/calendarjanitor bin/konsolekalendar share/applications/konsolekalendar.desktop share/icons/hicolor/128x128/apps/konsolekalendar.png share/icons/hicolor/16x16/apps/konsolekalendar.png share/icons/hicolor/22x22/apps/konsolekalendar.png share/icons/hicolor/32x32/apps/konsolekalendar.png share/icons/hicolor/48x48/apps/konsolekalendar.png share/locale/ar/LC_MESSAGES/calendarjanitor.mo share/locale/ar/LC_MESSAGES/konsolekalendar.mo share/locale/ast/LC_MESSAGES/calendarjanitor.mo share/locale/ast/LC_MESSAGES/konsolekalendar.mo share/locale/az/LC_MESSAGES/calendarjanitor.mo share/locale/az/LC_MESSAGES/konsolekalendar.mo share/locale/be/LC_MESSAGES/konsolekalendar.mo share/locale/bg/LC_MESSAGES/calendarjanitor.mo share/locale/bg/LC_MESSAGES/konsolekalendar.mo share/locale/br/LC_MESSAGES/konsolekalendar.mo share/locale/bs/LC_MESSAGES/calendarjanitor.mo share/locale/bs/LC_MESSAGES/konsolekalendar.mo share/locale/ca/LC_MESSAGES/calendarjanitor.mo share/locale/ca/LC_MESSAGES/konsolekalendar.mo share/locale/ca@valencia/LC_MESSAGES/calendarjanitor.mo share/locale/ca@valencia/LC_MESSAGES/konsolekalendar.mo share/locale/cs/LC_MESSAGES/calendarjanitor.mo share/locale/cs/LC_MESSAGES/konsolekalendar.mo share/locale/cy/LC_MESSAGES/konsolekalendar.mo share/locale/da/LC_MESSAGES/calendarjanitor.mo share/locale/da/LC_MESSAGES/konsolekalendar.mo share/locale/de/LC_MESSAGES/calendarjanitor.mo share/locale/de/LC_MESSAGES/konsolekalendar.mo share/locale/el/LC_MESSAGES/calendarjanitor.mo share/locale/el/LC_MESSAGES/konsolekalendar.mo share/locale/en_GB/LC_MESSAGES/calendarjanitor.mo share/locale/en_GB/LC_MESSAGES/konsolekalendar.mo share/locale/eo/LC_MESSAGES/calendarjanitor.mo share/locale/eo/LC_MESSAGES/konsolekalendar.mo share/locale/es/LC_MESSAGES/calendarjanitor.mo share/locale/es/LC_MESSAGES/konsolekalendar.mo share/locale/et/LC_MESSAGES/calendarjanitor.mo share/locale/et/LC_MESSAGES/konsolekalendar.mo share/locale/eu/LC_MESSAGES/calendarjanitor.mo share/locale/eu/LC_MESSAGES/konsolekalendar.mo share/locale/fa/LC_MESSAGES/konsolekalendar.mo share/locale/fi/LC_MESSAGES/calendarjanitor.mo share/locale/fi/LC_MESSAGES/konsolekalendar.mo share/locale/fr/LC_MESSAGES/calendarjanitor.mo share/locale/fr/LC_MESSAGES/konsolekalendar.mo share/locale/fy/LC_MESSAGES/konsolekalendar.mo share/locale/ga/LC_MESSAGES/konsolekalendar.mo share/locale/gl/LC_MESSAGES/calendarjanitor.mo share/locale/gl/LC_MESSAGES/konsolekalendar.mo share/locale/he/LC_MESSAGES/calendarjanitor.mo share/locale/he/LC_MESSAGES/konsolekalendar.mo share/locale/hi/LC_MESSAGES/calendarjanitor.mo share/locale/hi/LC_MESSAGES/konsolekalendar.mo share/locale/hne/LC_MESSAGES/konsolekalendar.mo share/locale/hr/LC_MESSAGES/konsolekalendar.mo share/locale/hu/LC_MESSAGES/calendarjanitor.mo share/locale/hu/LC_MESSAGES/konsolekalendar.mo share/locale/ia/LC_MESSAGES/calendarjanitor.mo share/locale/ia/LC_MESSAGES/konsolekalendar.mo share/locale/id/LC_MESSAGES/calendarjanitor.mo share/locale/id/LC_MESSAGES/konsolekalendar.mo +share/locale/is/LC_MESSAGES/calendarjanitor.mo share/locale/is/LC_MESSAGES/konsolekalendar.mo share/locale/it/LC_MESSAGES/calendarjanitor.mo share/locale/it/LC_MESSAGES/konsolekalendar.mo share/locale/ja/LC_MESSAGES/calendarjanitor.mo share/locale/ja/LC_MESSAGES/konsolekalendar.mo share/locale/ka/LC_MESSAGES/calendarjanitor.mo share/locale/ka/LC_MESSAGES/konsolekalendar.mo share/locale/kk/LC_MESSAGES/calendarjanitor.mo share/locale/kk/LC_MESSAGES/konsolekalendar.mo share/locale/km/LC_MESSAGES/konsolekalendar.mo share/locale/ko/LC_MESSAGES/calendarjanitor.mo share/locale/ko/LC_MESSAGES/konsolekalendar.mo share/locale/lt/LC_MESSAGES/calendarjanitor.mo share/locale/lt/LC_MESSAGES/konsolekalendar.mo share/locale/lv/LC_MESSAGES/calendarjanitor.mo share/locale/lv/LC_MESSAGES/konsolekalendar.mo share/locale/mk/LC_MESSAGES/konsolekalendar.mo share/locale/mr/LC_MESSAGES/konsolekalendar.mo share/locale/ms/LC_MESSAGES/konsolekalendar.mo share/locale/nb/LC_MESSAGES/calendarjanitor.mo share/locale/nb/LC_MESSAGES/konsolekalendar.mo share/locale/nds/LC_MESSAGES/calendarjanitor.mo share/locale/nds/LC_MESSAGES/konsolekalendar.mo share/locale/ne/LC_MESSAGES/konsolekalendar.mo share/locale/nl/LC_MESSAGES/calendarjanitor.mo share/locale/nl/LC_MESSAGES/konsolekalendar.mo share/locale/nn/LC_MESSAGES/konsolekalendar.mo share/locale/pa/LC_MESSAGES/konsolekalendar.mo share/locale/pl/LC_MESSAGES/calendarjanitor.mo share/locale/pl/LC_MESSAGES/konsolekalendar.mo share/locale/pt/LC_MESSAGES/calendarjanitor.mo share/locale/pt/LC_MESSAGES/konsolekalendar.mo share/locale/pt_BR/LC_MESSAGES/calendarjanitor.mo share/locale/pt_BR/LC_MESSAGES/konsolekalendar.mo share/locale/ro/LC_MESSAGES/konsolekalendar.mo share/locale/ru/LC_MESSAGES/calendarjanitor.mo share/locale/ru/LC_MESSAGES/konsolekalendar.mo share/locale/sa/LC_MESSAGES/calendarjanitor.mo share/locale/sa/LC_MESSAGES/konsolekalendar.mo share/locale/se/LC_MESSAGES/konsolekalendar.mo share/locale/sk/LC_MESSAGES/calendarjanitor.mo share/locale/sk/LC_MESSAGES/konsolekalendar.mo share/locale/sl/LC_MESSAGES/calendarjanitor.mo share/locale/sl/LC_MESSAGES/konsolekalendar.mo share/locale/sq/LC_MESSAGES/konsolekalendar.mo share/locale/sv/LC_MESSAGES/calendarjanitor.mo share/locale/sv/LC_MESSAGES/konsolekalendar.mo share/locale/ta/LC_MESSAGES/calendarjanitor.mo share/locale/ta/LC_MESSAGES/konsolekalendar.mo share/locale/tg/LC_MESSAGES/konsolekalendar.mo share/locale/tr/LC_MESSAGES/calendarjanitor.mo share/locale/tr/LC_MESSAGES/konsolekalendar.mo share/locale/ug/LC_MESSAGES/konsolekalendar.mo share/locale/uk/LC_MESSAGES/calendarjanitor.mo share/locale/uk/LC_MESSAGES/konsolekalendar.mo share/locale/uz/LC_MESSAGES/konsolekalendar.mo share/locale/uz@cyrillic/LC_MESSAGES/konsolekalendar.mo share/locale/xh/LC_MESSAGES/konsolekalendar.mo share/locale/zh_CN/LC_MESSAGES/calendarjanitor.mo share/locale/zh_CN/LC_MESSAGES/konsolekalendar.mo share/locale/zh_TW/LC_MESSAGES/calendarjanitor.mo share/locale/zh_TW/LC_MESSAGES/konsolekalendar.mo share/qlogging-categories6/console.categories share/qlogging-categories6/console.renamecategories diff --git a/deskutils/akonadi-import-wizard/distinfo b/deskutils/akonadi-import-wizard/distinfo index fb0c8ba79908..8e4ce5ab83f2 100644 --- a/deskutils/akonadi-import-wizard/distinfo +++ b/deskutils/akonadi-import-wizard/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1751381220 -SHA256 (KDE/release-service/25.04.3/akonadi-import-wizard-25.04.3.tar.xz) = a397fdb3739ad4cb93c0d97f796689aa78f48fb2965f0fad5d804162a8a44c1c -SIZE (KDE/release-service/25.04.3/akonadi-import-wizard-25.04.3.tar.xz) = 495672 +TIMESTAMP = 1754646133 +SHA256 (KDE/release-service/25.08.0/akonadi-import-wizard-25.08.0.tar.xz) = 5735c6b19819d5738d70a0d51feee35da1fec85f83b9c9cff547912863655baf +SIZE (KDE/release-service/25.08.0/akonadi-import-wizard-25.08.0.tar.xz) = 497908 diff --git a/deskutils/akonadiconsole/distinfo b/deskutils/akonadiconsole/distinfo index 0e7fcc8b5387..eb41a5100e71 100644 --- a/deskutils/akonadiconsole/distinfo +++ b/deskutils/akonadiconsole/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1751381222 -SHA256 (KDE/release-service/25.04.3/akonadiconsole-25.04.3.tar.xz) = b2f535c93d8a560d8f6ab9ac9fb8111eea216c8c1f07095a52619ace7b5b14b5 -SIZE (KDE/release-service/25.04.3/akonadiconsole-25.04.3.tar.xz) = 318864 +TIMESTAMP = 1754646136 +SHA256 (KDE/release-service/25.08.0/akonadiconsole-25.08.0.tar.xz) = fd9203e29a438eb686d33b0ef89b566bd0a3b2e0367057c936aaf20237ae7d10 +SIZE (KDE/release-service/25.08.0/akonadiconsole-25.08.0.tar.xz) = 324140 diff --git a/deskutils/akonadiconsole/pkg-plist b/deskutils/akonadiconsole/pkg-plist index 628307aca150..8d581dd2fa39 100644 --- a/deskutils/akonadiconsole/pkg-plist +++ b/deskutils/akonadiconsole/pkg-plist @@ -1,49 +1,50 @@ bin/akonadiconsole lib/libakonadiconsole.so.6 lib/libakonadiconsole.so.%%KDE_APPLICATIONS_SHLIB_VER%% share/applications/org.kde.akonadiconsole.desktop share/icons/hicolor/128x128/apps/akonadiconsole.png share/icons/hicolor/16x16/apps/akonadiconsole.png share/icons/hicolor/22x22/apps/akonadiconsole.png share/icons/hicolor/256x256/apps/akonadiconsole.png share/icons/hicolor/32x32/apps/akonadiconsole.png share/icons/hicolor/48x48/apps/akonadiconsole.png share/icons/hicolor/64x64/apps/akonadiconsole.png share/locale/ast/LC_MESSAGES/akonadiconsole.mo share/locale/ca/LC_MESSAGES/akonadiconsole.mo share/locale/ca@valencia/LC_MESSAGES/akonadiconsole.mo share/locale/cs/LC_MESSAGES/akonadiconsole.mo share/locale/de/LC_MESSAGES/akonadiconsole.mo share/locale/el/LC_MESSAGES/akonadiconsole.mo share/locale/en_GB/LC_MESSAGES/akonadiconsole.mo share/locale/eo/LC_MESSAGES/akonadiconsole.mo share/locale/es/LC_MESSAGES/akonadiconsole.mo share/locale/eu/LC_MESSAGES/akonadiconsole.mo share/locale/fi/LC_MESSAGES/akonadiconsole.mo share/locale/fr/LC_MESSAGES/akonadiconsole.mo share/locale/gl/LC_MESSAGES/akonadiconsole.mo share/locale/he/LC_MESSAGES/akonadiconsole.mo share/locale/hi/LC_MESSAGES/akonadiconsole.mo share/locale/hu/LC_MESSAGES/akonadiconsole.mo share/locale/ia/LC_MESSAGES/akonadiconsole.mo share/locale/it/LC_MESSAGES/akonadiconsole.mo share/locale/ja/LC_MESSAGES/akonadiconsole.mo share/locale/ka/LC_MESSAGES/akonadiconsole.mo share/locale/ko/LC_MESSAGES/akonadiconsole.mo share/locale/lt/LC_MESSAGES/akonadiconsole.mo share/locale/lv/LC_MESSAGES/akonadiconsole.mo share/locale/nl/LC_MESSAGES/akonadiconsole.mo share/locale/pl/LC_MESSAGES/akonadiconsole.mo share/locale/pt/LC_MESSAGES/akonadiconsole.mo +share/locale/pt_BR/LC_MESSAGES/akonadiconsole.mo share/locale/ro/LC_MESSAGES/akonadiconsole.mo share/locale/ru/LC_MESSAGES/akonadiconsole.mo share/locale/sa/LC_MESSAGES/akonadiconsole.mo share/locale/sk/LC_MESSAGES/akonadiconsole.mo share/locale/sl/LC_MESSAGES/akonadiconsole.mo share/locale/sv/LC_MESSAGES/akonadiconsole.mo share/locale/tr/LC_MESSAGES/akonadiconsole.mo share/locale/uk/LC_MESSAGES/akonadiconsole.mo share/locale/zh_CN/LC_MESSAGES/akonadiconsole.mo share/locale/zh_TW/LC_MESSAGES/akonadiconsole.mo share/qlogging-categories6/akonadiconsole.categories share/qlogging-categories6/akonadiconsole.renamecategories diff --git a/deskutils/akregator/distinfo b/deskutils/akregator/distinfo index 53763edbbd0b..de6ec4bfd72b 100644 --- a/deskutils/akregator/distinfo +++ b/deskutils/akregator/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1751381225 -SHA256 (KDE/release-service/25.04.3/akregator-25.04.3.tar.xz) = fd176db6d1aa74de31cb10c4c568b36827d728beb74dc8017a9bb4768b4e4fb7 -SIZE (KDE/release-service/25.04.3/akregator-25.04.3.tar.xz) = 2143076 +TIMESTAMP = 1754646138 +SHA256 (KDE/release-service/25.08.0/akregator-25.08.0.tar.xz) = cca96a99971dec086e2a610fe561715510389b3316ae624b3c4aa31261fa78de +SIZE (KDE/release-service/25.08.0/akregator-25.08.0.tar.xz) = 2145088 diff --git a/deskutils/grantlee-editor/distinfo b/deskutils/grantlee-editor/distinfo index 141260e0ca89..70590eb5d815 100644 --- a/deskutils/grantlee-editor/distinfo +++ b/deskutils/grantlee-editor/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1751381227 -SHA256 (KDE/release-service/25.04.3/grantlee-editor-25.04.3.tar.xz) = b37a34e419d901b11ded495bfde240dbb0b7d47a978d4e76289ba3d9bbe33214 -SIZE (KDE/release-service/25.04.3/grantlee-editor-25.04.3.tar.xz) = 128456 +TIMESTAMP = 1754646140 +SHA256 (KDE/release-service/25.08.0/grantlee-editor-25.08.0.tar.xz) = b1951c2b786a2de909027f37c644474cbd8b4c0c93518aa25799c02d8f15bb07 +SIZE (KDE/release-service/25.08.0/grantlee-editor-25.08.0.tar.xz) = 130748 diff --git a/deskutils/grantleetheme/distinfo b/deskutils/grantleetheme/distinfo index 64d26c1f4675..f496e2db39c8 100644 --- a/deskutils/grantleetheme/distinfo +++ b/deskutils/grantleetheme/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1751381229 -SHA256 (KDE/release-service/25.04.3/grantleetheme-25.04.3.tar.xz) = e25e79c71383f538814b827d7bfaf6ab3fb45c4f78c69aa4101dff6025f4a073 -SIZE (KDE/release-service/25.04.3/grantleetheme-25.04.3.tar.xz) = 63680 +TIMESTAMP = 1754646143 +SHA256 (KDE/release-service/25.08.0/grantleetheme-25.08.0.tar.xz) = e2b457a7d408be3dc56a7db0dc970937d4509acc3234928dc355142a6bab4fd9 +SIZE (KDE/release-service/25.08.0/grantleetheme-25.08.0.tar.xz) = 65996 diff --git a/deskutils/itinerary/distinfo b/deskutils/itinerary/distinfo index 0a11d1b6af08..ab0f8c4b6735 100644 --- a/deskutils/itinerary/distinfo +++ b/deskutils/itinerary/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1751381232 -SHA256 (KDE/release-service/25.04.3/itinerary-25.04.3.tar.xz) = 92dc4484d959b7203390ca3d6ba4686deb2ca5818d7c5341e8209808627b82f2 -SIZE (KDE/release-service/25.04.3/itinerary-25.04.3.tar.xz) = 818380 +TIMESTAMP = 1754646145 +SHA256 (KDE/release-service/25.08.0/itinerary-25.08.0.tar.xz) = 1f2c10c1f47a5919f447accdf60997038a528a66b8ee172fcc184dd2bd2f2716 +SIZE (KDE/release-service/25.08.0/itinerary-25.08.0.tar.xz) = 846800 diff --git a/deskutils/kaddressbook/distinfo b/deskutils/kaddressbook/distinfo index eafa0f2a14f9..5deac15c89bf 100644 --- a/deskutils/kaddressbook/distinfo +++ b/deskutils/kaddressbook/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1751381234 -SHA256 (KDE/release-service/25.04.3/kaddressbook-25.04.3.tar.xz) = a1c2781db83d7e33780e1705ca9565de5dd791bd54831299f90e933376a47820 -SIZE (KDE/release-service/25.04.3/kaddressbook-25.04.3.tar.xz) = 3440964 +TIMESTAMP = 1754646148 +SHA256 (KDE/release-service/25.08.0/kaddressbook-25.08.0.tar.xz) = bd05ffbec679b701b2bdc5da2b97c83bd81437a3398771fc4b03efbb7ac1a647 +SIZE (KDE/release-service/25.08.0/kaddressbook-25.08.0.tar.xz) = 3443072 diff --git a/deskutils/kalarm/distinfo b/deskutils/kalarm/distinfo index 2aa2847c3ba5..d7c6042174c9 100644 --- a/deskutils/kalarm/distinfo +++ b/deskutils/kalarm/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1751381237 -SHA256 (KDE/release-service/25.04.3/kalarm-25.04.3.tar.xz) = dc6f90be8648c38cf57e1e32ca3cb62d09371f8f06aadd918862ac6bb5650ac7 -SIZE (KDE/release-service/25.04.3/kalarm-25.04.3.tar.xz) = 2687380 +TIMESTAMP = 1754646150 +SHA256 (KDE/release-service/25.08.0/kalarm-25.08.0.tar.xz) = 665504ae5e6b8ce70a0ddc0fa1c972827edd6b5e868066d4990a1466daa8fe0d +SIZE (KDE/release-service/25.08.0/kalarm-25.08.0.tar.xz) = 2688432 diff --git a/deskutils/kcharselect/distinfo b/deskutils/kcharselect/distinfo index 3038f3eaa0e9..15bfb05af026 100644 --- a/deskutils/kcharselect/distinfo +++ b/deskutils/kcharselect/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1751381239 -SHA256 (KDE/release-service/25.04.3/kcharselect-25.04.3.tar.xz) = a2c4dac5c6f1a6e4be9149d2ab5afdd181e395cde0baa5ff51e25853ab878e07 -SIZE (KDE/release-service/25.04.3/kcharselect-25.04.3.tar.xz) = 478224 +TIMESTAMP = 1754646153 +SHA256 (KDE/release-service/25.08.0/kcharselect-25.08.0.tar.xz) = ec9f2be0e119b1c7bff3363d4d405a3fa58c9cddeab68e3cdfe1d0a7908d3ee5 +SIZE (KDE/release-service/25.08.0/kcharselect-25.08.0.tar.xz) = 478040 diff --git a/deskutils/kdeconnect-kde/distinfo b/deskutils/kdeconnect-kde/distinfo index 49012d1b6e3a..ef6877e9e2f5 100644 --- a/deskutils/kdeconnect-kde/distinfo +++ b/deskutils/kdeconnect-kde/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1751381242 -SHA256 (KDE/release-service/25.04.3/kdeconnect-kde-25.04.3.tar.xz) = c44994e896e17be19fb93173143a8c1196e6d064d3b0d897d4172b9b48bde342 -SIZE (KDE/release-service/25.04.3/kdeconnect-kde-25.04.3.tar.xz) = 746684 +TIMESTAMP = 1754646155 +SHA256 (KDE/release-service/25.08.0/kdeconnect-kde-25.08.0.tar.xz) = edc6d8d5bb3aab53208a229528ef36a5bc959bfaec17512b5621502d1d37d260 +SIZE (KDE/release-service/25.08.0/kdeconnect-kde-25.08.0.tar.xz) = 629364 diff --git a/deskutils/kdeconnect-kde/pkg-plist b/deskutils/kdeconnect-kde/pkg-plist index 905d627b21bd..e105a12271e2 100644 --- a/deskutils/kdeconnect-kde/pkg-plist +++ b/deskutils/kdeconnect-kde/pkg-plist @@ -1,917 +1,810 @@ bin/kdeconnect-app bin/kdeconnect-cli bin/kdeconnect-handler bin/kdeconnect-indicator -bin/kdeconnect-settings bin/kdeconnect-sms bin/kdeconnectd etc/xdg/autostart/org.kde.kdeconnect.daemon.desktop lib/libkdeconnectcore.so.%%KDE_APPLICATIONS_VERSION_SHORT%% lib/libkdeconnectcore.so.%%KDE_APPLICATIONS_SHLIB_VER%% lib/libkdeconnectinterfaces.a -lib/libkdeconnectpluginkcm.so.%%KDE_APPLICATIONS_VERSION_SHORT%% -lib/libkdeconnectpluginkcm.so.%%KDE_APPLICATIONS_SHLIB_VER%% -%%QT_PLUGINDIR%%/kdeconnect/kcms/kdeconnect_clipboard_config.so -%%QT_PLUGINDIR%%/kdeconnect/kcms/kdeconnect_findthisdevice_config.so -%%QT_PLUGINDIR%%/kdeconnect/kcms/kdeconnect_pausemusic_config.so -%%QT_PLUGINDIR%%/kdeconnect/kcms/kdeconnect_runcommand_config.so -%%QT_PLUGINDIR%%/kdeconnect/kcms/kdeconnect_sendnotifications_config.so -%%QT_PLUGINDIR%%/kdeconnect/kcms/kdeconnect_share_config.so %%QT_PLUGINDIR%%/kdeconnect/kdeconnect_battery.so %%QT_PLUGINDIR%%/kdeconnect/kdeconnect_bigscreen.so %%QT_PLUGINDIR%%/kdeconnect/kdeconnect_clipboard.so %%QT_PLUGINDIR%%/kdeconnect/kdeconnect_connectivity_report.so %%QT_PLUGINDIR%%/kdeconnect/kdeconnect_contacts.so %%QT_PLUGINDIR%%/kdeconnect/kdeconnect_findmyphone.so %%QT_PLUGINDIR%%/kdeconnect/kdeconnect_findthisdevice.so %%QT_PLUGINDIR%%/kdeconnect/kdeconnect_lockdevice.so %%QT_PLUGINDIR%%/kdeconnect/kdeconnect_mousepad.so %%QT_PLUGINDIR%%/kdeconnect/kdeconnect_mpriscontrol.so %%QT_PLUGINDIR%%/kdeconnect/kdeconnect_mprisremote.so %%QT_PLUGINDIR%%/kdeconnect/kdeconnect_notifications.so %%QT_PLUGINDIR%%/kdeconnect/kdeconnect_pausemusic.so %%QT_PLUGINDIR%%/kdeconnect/kdeconnect_ping.so %%QT_PLUGINDIR%%/kdeconnect/kdeconnect_presenter.so %%QT_PLUGINDIR%%/kdeconnect/kdeconnect_remotecommands.so %%QT_PLUGINDIR%%/kdeconnect/kdeconnect_remotecontrol.so %%QT_PLUGINDIR%%/kdeconnect/kdeconnect_remotekeyboard.so %%QT_PLUGINDIR%%/kdeconnect/kdeconnect_remotesystemvolume.so %%QT_PLUGINDIR%%/kdeconnect/kdeconnect_runcommand.so %%QT_PLUGINDIR%%/kdeconnect/kdeconnect_screensaver_inhibit.so %%QT_PLUGINDIR%%/kdeconnect/kdeconnect_sendnotifications.so %%QT_PLUGINDIR%%/kdeconnect/kdeconnect_sftp.so %%QT_PLUGINDIR%%/kdeconnect/kdeconnect_share.so %%QT_PLUGINDIR%%/kdeconnect/kdeconnect_sms.so %%QT_PLUGINDIR%%/kdeconnect/kdeconnect_systemvolume.so %%QT_PLUGINDIR%%/kdeconnect/kdeconnect_telephony.so %%QT_PLUGINDIR%%/kdeconnect/kdeconnect_virtualmonitor.so %%QT_PLUGINDIR%%/kf6/kfileitemaction/kdeconnectfileitemaction.so %%QT_PLUGINDIR%%/kf6/kio/kdeconnect.so -%%QT_PLUGINDIR%%/plasma/kcms/systemsettings_qwidgets/kcm_kdeconnect.so %%QT_QMLDIR%%/org/kde/kdeconnect/DBusProperty.qml %%QT_QMLDIR%%/org/kde/kdeconnect/PluginChecker.qml %%QT_QMLDIR%%/org/kde/kdeconnect/RemoteKeyboard.qml %%QT_QMLDIR%%/org/kde/kdeconnect/kde-qmlmodule.version %%QT_QMLDIR%%/org/kde/kdeconnect/kdeconnectdeclarativeplugin.qmltypes %%QT_QMLDIR%%/org/kde/kdeconnect/libkdeconnectdeclarativeplugin.so %%QT_QMLDIR%%/org/kde/kdeconnect/private/findthisdevice/kde-qmlmodule.version %%QT_QMLDIR%%/org/kde/kdeconnect/private/findthisdevice/kdeconnect_findthisdevice_qmlhelper.qmltypes %%QT_QMLDIR%%/org/kde/kdeconnect/private/findthisdevice/libkdeconnect_findthisdevice_qmlhelper.so %%QT_QMLDIR%%/org/kde/kdeconnect/private/findthisdevice/qmldir %%QT_QMLDIR%%/org/kde/kdeconnect/qmldir share/Thunar/sendto/kdeconnect-thunar.desktop -share/applications/kcm_kdeconnect.desktop -share/applications/org.kde.kdeconnect-settings.desktop share/applications/org.kde.kdeconnect.app.desktop share/applications/org.kde.kdeconnect.daemon.desktop share/applications/org.kde.kdeconnect.handler.desktop share/applications/org.kde.kdeconnect.nonplasma.desktop share/applications/org.kde.kdeconnect.sms.desktop share/contractor/kdeconnect.contract share/dbus-1/services/org.kde.kdeconnect.service share/deepin/dde-file-manager/oem-menuextensions/kdeconnect-dde.desktop share/icons/hicolor/16x16/status/laptopconnected.svg share/icons/hicolor/16x16/status/laptopdisconnected.svg share/icons/hicolor/16x16/status/laptoptrusted.svg share/icons/hicolor/16x16/status/smartphoneconnected.svg share/icons/hicolor/16x16/status/smartphonedisconnected.svg share/icons/hicolor/16x16/status/smartphonetrusted.svg share/icons/hicolor/16x16/status/tabletconnected.svg share/icons/hicolor/16x16/status/tabletdisconnected.svg share/icons/hicolor/16x16/status/tablettrusted.svg share/icons/hicolor/16x16/status/tvconnected.svg share/icons/hicolor/16x16/status/tvdisconnected.svg share/icons/hicolor/16x16/status/tvtrusted.svg share/icons/hicolor/22x22/status/laptopconnected.svg share/icons/hicolor/22x22/status/laptopdisconnected.svg share/icons/hicolor/22x22/status/laptoptrusted.svg share/icons/hicolor/22x22/status/smartphoneconnected.svg share/icons/hicolor/22x22/status/smartphonedisconnected.svg share/icons/hicolor/22x22/status/smartphonetrusted.svg share/icons/hicolor/22x22/status/tabletconnected.svg share/icons/hicolor/22x22/status/tabletdisconnected.svg share/icons/hicolor/22x22/status/tablettrusted.svg share/icons/hicolor/22x22/status/tvconnected.svg share/icons/hicolor/22x22/status/tvdisconnected.svg share/icons/hicolor/22x22/status/tvtrusted.svg share/icons/hicolor/32x32/status/laptopconnected.svg share/icons/hicolor/32x32/status/laptopdisconnected.svg share/icons/hicolor/32x32/status/laptoptrusted.svg share/icons/hicolor/32x32/status/smartphoneconnected.svg share/icons/hicolor/32x32/status/smartphonedisconnected.svg share/icons/hicolor/32x32/status/smartphonetrusted.svg share/icons/hicolor/32x32/status/tabletconnected.svg share/icons/hicolor/32x32/status/tabletdisconnected.svg share/icons/hicolor/32x32/status/tablettrusted.svg share/icons/hicolor/32x32/status/tvconnected.svg share/icons/hicolor/32x32/status/tvdisconnected.svg share/icons/hicolor/32x32/status/tvtrusted.svg share/icons/hicolor/scalable/apps/kdeconnect.svg share/icons/hicolor/scalable/apps/kdeconnectindicator.svg share/icons/hicolor/scalable/apps/kdeconnectindicatordark.svg share/kdeconnect/kdeconnect_clipboard_config.qml -share/kdeconnect/kdeconnect_findthisdevice_config.qml share/kdeconnect/kdeconnect_pausemusic_config.qml share/kdeconnect/kdeconnect_runcommand_config.qml share/kdeconnect/kdeconnect_sendnotifications_config.qml share/kdeconnect/kdeconnect_share_config.qml share/knotifications6/kdeconnect.notifyrc share/locale/ar/LC_MESSAGES/kdeconnect-app.mo share/locale/ar/LC_MESSAGES/kdeconnect-cli.mo share/locale/ar/LC_MESSAGES/kdeconnect-core.mo share/locale/ar/LC_MESSAGES/kdeconnect-fileitemaction.mo share/locale/ar/LC_MESSAGES/kdeconnect-indicator.mo share/locale/ar/LC_MESSAGES/kdeconnect-interfaces.mo -share/locale/ar/LC_MESSAGES/kdeconnect-kcm.mo share/locale/ar/LC_MESSAGES/kdeconnect-kded.mo share/locale/ar/LC_MESSAGES/kdeconnect-kio.mo share/locale/ar/LC_MESSAGES/kdeconnect-nautilus-extension.mo share/locale/ar/LC_MESSAGES/kdeconnect-plugins.mo -share/locale/ar/LC_MESSAGES/kdeconnect-settings.mo share/locale/ar/LC_MESSAGES/kdeconnect-sms.mo share/locale/ar/LC_MESSAGES/kdeconnect-urlhandler.mo share/locale/ar/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo share/locale/ast/LC_MESSAGES/kdeconnect-app.mo share/locale/ast/LC_MESSAGES/kdeconnect-cli.mo share/locale/ast/LC_MESSAGES/kdeconnect-core.mo share/locale/ast/LC_MESSAGES/kdeconnect-fileitemaction.mo share/locale/ast/LC_MESSAGES/kdeconnect-indicator.mo share/locale/ast/LC_MESSAGES/kdeconnect-interfaces.mo -share/locale/ast/LC_MESSAGES/kdeconnect-kcm.mo share/locale/ast/LC_MESSAGES/kdeconnect-kded.mo share/locale/ast/LC_MESSAGES/kdeconnect-kio.mo share/locale/ast/LC_MESSAGES/kdeconnect-nautilus-extension.mo share/locale/ast/LC_MESSAGES/kdeconnect-plugins.mo -share/locale/ast/LC_MESSAGES/kdeconnect-settings.mo share/locale/ast/LC_MESSAGES/kdeconnect-sms.mo share/locale/ast/LC_MESSAGES/kdeconnect-urlhandler.mo share/locale/ast/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo share/locale/az/LC_MESSAGES/kdeconnect-app.mo share/locale/az/LC_MESSAGES/kdeconnect-cli.mo share/locale/az/LC_MESSAGES/kdeconnect-core.mo share/locale/az/LC_MESSAGES/kdeconnect-fileitemaction.mo share/locale/az/LC_MESSAGES/kdeconnect-indicator.mo share/locale/az/LC_MESSAGES/kdeconnect-interfaces.mo -share/locale/az/LC_MESSAGES/kdeconnect-kcm.mo share/locale/az/LC_MESSAGES/kdeconnect-kded.mo share/locale/az/LC_MESSAGES/kdeconnect-kio.mo share/locale/az/LC_MESSAGES/kdeconnect-nautilus-extension.mo share/locale/az/LC_MESSAGES/kdeconnect-plugins.mo -share/locale/az/LC_MESSAGES/kdeconnect-settings.mo share/locale/az/LC_MESSAGES/kdeconnect-sms.mo share/locale/az/LC_MESSAGES/kdeconnect-urlhandler.mo share/locale/az/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo share/locale/bg/LC_MESSAGES/kdeconnect-app.mo share/locale/bg/LC_MESSAGES/kdeconnect-cli.mo share/locale/bg/LC_MESSAGES/kdeconnect-core.mo share/locale/bg/LC_MESSAGES/kdeconnect-fileitemaction.mo share/locale/bg/LC_MESSAGES/kdeconnect-indicator.mo share/locale/bg/LC_MESSAGES/kdeconnect-interfaces.mo -share/locale/bg/LC_MESSAGES/kdeconnect-kcm.mo share/locale/bg/LC_MESSAGES/kdeconnect-kded.mo share/locale/bg/LC_MESSAGES/kdeconnect-kio.mo share/locale/bg/LC_MESSAGES/kdeconnect-nautilus-extension.mo share/locale/bg/LC_MESSAGES/kdeconnect-plugins.mo -share/locale/bg/LC_MESSAGES/kdeconnect-settings.mo share/locale/bg/LC_MESSAGES/kdeconnect-sms.mo share/locale/bg/LC_MESSAGES/kdeconnect-urlhandler.mo share/locale/bg/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo share/locale/bs/LC_MESSAGES/kdeconnect-cli.mo share/locale/bs/LC_MESSAGES/kdeconnect-core.mo -share/locale/bs/LC_MESSAGES/kdeconnect-kcm.mo share/locale/bs/LC_MESSAGES/kdeconnect-kded.mo share/locale/bs/LC_MESSAGES/kdeconnect-kio.mo share/locale/bs/LC_MESSAGES/kdeconnect-plugins.mo share/locale/bs/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo share/locale/ca/LC_MESSAGES/kdeconnect-app.mo share/locale/ca/LC_MESSAGES/kdeconnect-cli.mo share/locale/ca/LC_MESSAGES/kdeconnect-core.mo share/locale/ca/LC_MESSAGES/kdeconnect-fileitemaction.mo share/locale/ca/LC_MESSAGES/kdeconnect-indicator.mo share/locale/ca/LC_MESSAGES/kdeconnect-interfaces.mo -share/locale/ca/LC_MESSAGES/kdeconnect-kcm.mo share/locale/ca/LC_MESSAGES/kdeconnect-kded.mo share/locale/ca/LC_MESSAGES/kdeconnect-kio.mo share/locale/ca/LC_MESSAGES/kdeconnect-nautilus-extension.mo share/locale/ca/LC_MESSAGES/kdeconnect-plugins.mo -share/locale/ca/LC_MESSAGES/kdeconnect-settings.mo share/locale/ca/LC_MESSAGES/kdeconnect-sms.mo share/locale/ca/LC_MESSAGES/kdeconnect-urlhandler.mo share/locale/ca/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo share/locale/ca@valencia/LC_MESSAGES/kdeconnect-app.mo share/locale/ca@valencia/LC_MESSAGES/kdeconnect-cli.mo share/locale/ca@valencia/LC_MESSAGES/kdeconnect-core.mo share/locale/ca@valencia/LC_MESSAGES/kdeconnect-fileitemaction.mo share/locale/ca@valencia/LC_MESSAGES/kdeconnect-indicator.mo share/locale/ca@valencia/LC_MESSAGES/kdeconnect-interfaces.mo -share/locale/ca@valencia/LC_MESSAGES/kdeconnect-kcm.mo share/locale/ca@valencia/LC_MESSAGES/kdeconnect-kded.mo share/locale/ca@valencia/LC_MESSAGES/kdeconnect-kio.mo share/locale/ca@valencia/LC_MESSAGES/kdeconnect-nautilus-extension.mo share/locale/ca@valencia/LC_MESSAGES/kdeconnect-plugins.mo -share/locale/ca@valencia/LC_MESSAGES/kdeconnect-settings.mo share/locale/ca@valencia/LC_MESSAGES/kdeconnect-sms.mo share/locale/ca@valencia/LC_MESSAGES/kdeconnect-urlhandler.mo share/locale/ca@valencia/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo share/locale/cs/LC_MESSAGES/kdeconnect-app.mo share/locale/cs/LC_MESSAGES/kdeconnect-cli.mo share/locale/cs/LC_MESSAGES/kdeconnect-core.mo share/locale/cs/LC_MESSAGES/kdeconnect-fileitemaction.mo share/locale/cs/LC_MESSAGES/kdeconnect-indicator.mo share/locale/cs/LC_MESSAGES/kdeconnect-interfaces.mo -share/locale/cs/LC_MESSAGES/kdeconnect-kcm.mo share/locale/cs/LC_MESSAGES/kdeconnect-kded.mo share/locale/cs/LC_MESSAGES/kdeconnect-kio.mo share/locale/cs/LC_MESSAGES/kdeconnect-nautilus-extension.mo share/locale/cs/LC_MESSAGES/kdeconnect-plugins.mo -share/locale/cs/LC_MESSAGES/kdeconnect-settings.mo share/locale/cs/LC_MESSAGES/kdeconnect-sms.mo share/locale/cs/LC_MESSAGES/kdeconnect-urlhandler.mo share/locale/cs/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo share/locale/da/LC_MESSAGES/kdeconnect-app.mo share/locale/da/LC_MESSAGES/kdeconnect-cli.mo share/locale/da/LC_MESSAGES/kdeconnect-core.mo share/locale/da/LC_MESSAGES/kdeconnect-fileitemaction.mo share/locale/da/LC_MESSAGES/kdeconnect-indicator.mo share/locale/da/LC_MESSAGES/kdeconnect-interfaces.mo -share/locale/da/LC_MESSAGES/kdeconnect-kcm.mo share/locale/da/LC_MESSAGES/kdeconnect-kded.mo share/locale/da/LC_MESSAGES/kdeconnect-kio.mo share/locale/da/LC_MESSAGES/kdeconnect-nautilus-extension.mo share/locale/da/LC_MESSAGES/kdeconnect-plugins.mo -share/locale/da/LC_MESSAGES/kdeconnect-settings.mo share/locale/da/LC_MESSAGES/kdeconnect-sms.mo share/locale/da/LC_MESSAGES/kdeconnect-urlhandler.mo share/locale/da/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo share/locale/de/LC_MESSAGES/kdeconnect-app.mo share/locale/de/LC_MESSAGES/kdeconnect-cli.mo share/locale/de/LC_MESSAGES/kdeconnect-core.mo share/locale/de/LC_MESSAGES/kdeconnect-fileitemaction.mo share/locale/de/LC_MESSAGES/kdeconnect-indicator.mo share/locale/de/LC_MESSAGES/kdeconnect-interfaces.mo -share/locale/de/LC_MESSAGES/kdeconnect-kcm.mo share/locale/de/LC_MESSAGES/kdeconnect-kded.mo share/locale/de/LC_MESSAGES/kdeconnect-kio.mo share/locale/de/LC_MESSAGES/kdeconnect-nautilus-extension.mo share/locale/de/LC_MESSAGES/kdeconnect-plugins.mo -share/locale/de/LC_MESSAGES/kdeconnect-settings.mo share/locale/de/LC_MESSAGES/kdeconnect-sms.mo share/locale/de/LC_MESSAGES/kdeconnect-urlhandler.mo share/locale/de/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo share/locale/el/LC_MESSAGES/kdeconnect-app.mo share/locale/el/LC_MESSAGES/kdeconnect-cli.mo share/locale/el/LC_MESSAGES/kdeconnect-core.mo share/locale/el/LC_MESSAGES/kdeconnect-fileitemaction.mo share/locale/el/LC_MESSAGES/kdeconnect-indicator.mo share/locale/el/LC_MESSAGES/kdeconnect-interfaces.mo -share/locale/el/LC_MESSAGES/kdeconnect-kcm.mo share/locale/el/LC_MESSAGES/kdeconnect-kded.mo share/locale/el/LC_MESSAGES/kdeconnect-kio.mo share/locale/el/LC_MESSAGES/kdeconnect-nautilus-extension.mo share/locale/el/LC_MESSAGES/kdeconnect-plugins.mo -share/locale/el/LC_MESSAGES/kdeconnect-settings.mo share/locale/el/LC_MESSAGES/kdeconnect-sms.mo share/locale/el/LC_MESSAGES/kdeconnect-urlhandler.mo share/locale/el/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo share/locale/en_GB/LC_MESSAGES/kdeconnect-app.mo share/locale/en_GB/LC_MESSAGES/kdeconnect-cli.mo share/locale/en_GB/LC_MESSAGES/kdeconnect-core.mo share/locale/en_GB/LC_MESSAGES/kdeconnect-fileitemaction.mo share/locale/en_GB/LC_MESSAGES/kdeconnect-indicator.mo share/locale/en_GB/LC_MESSAGES/kdeconnect-interfaces.mo -share/locale/en_GB/LC_MESSAGES/kdeconnect-kcm.mo share/locale/en_GB/LC_MESSAGES/kdeconnect-kded.mo share/locale/en_GB/LC_MESSAGES/kdeconnect-kio.mo share/locale/en_GB/LC_MESSAGES/kdeconnect-nautilus-extension.mo share/locale/en_GB/LC_MESSAGES/kdeconnect-plugins.mo -share/locale/en_GB/LC_MESSAGES/kdeconnect-settings.mo share/locale/en_GB/LC_MESSAGES/kdeconnect-sms.mo share/locale/en_GB/LC_MESSAGES/kdeconnect-urlhandler.mo share/locale/en_GB/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo share/locale/eo/LC_MESSAGES/kdeconnect-app.mo share/locale/eo/LC_MESSAGES/kdeconnect-cli.mo share/locale/eo/LC_MESSAGES/kdeconnect-core.mo share/locale/eo/LC_MESSAGES/kdeconnect-fileitemaction.mo share/locale/eo/LC_MESSAGES/kdeconnect-indicator.mo share/locale/eo/LC_MESSAGES/kdeconnect-interfaces.mo -share/locale/eo/LC_MESSAGES/kdeconnect-kcm.mo share/locale/eo/LC_MESSAGES/kdeconnect-kded.mo share/locale/eo/LC_MESSAGES/kdeconnect-kio.mo share/locale/eo/LC_MESSAGES/kdeconnect-nautilus-extension.mo share/locale/eo/LC_MESSAGES/kdeconnect-plugins.mo -share/locale/eo/LC_MESSAGES/kdeconnect-settings.mo share/locale/eo/LC_MESSAGES/kdeconnect-sms.mo share/locale/eo/LC_MESSAGES/kdeconnect-urlhandler.mo share/locale/eo/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo share/locale/es/LC_MESSAGES/kdeconnect-app.mo share/locale/es/LC_MESSAGES/kdeconnect-cli.mo share/locale/es/LC_MESSAGES/kdeconnect-core.mo share/locale/es/LC_MESSAGES/kdeconnect-fileitemaction.mo share/locale/es/LC_MESSAGES/kdeconnect-indicator.mo share/locale/es/LC_MESSAGES/kdeconnect-interfaces.mo -share/locale/es/LC_MESSAGES/kdeconnect-kcm.mo share/locale/es/LC_MESSAGES/kdeconnect-kded.mo share/locale/es/LC_MESSAGES/kdeconnect-kio.mo share/locale/es/LC_MESSAGES/kdeconnect-nautilus-extension.mo share/locale/es/LC_MESSAGES/kdeconnect-plugins.mo -share/locale/es/LC_MESSAGES/kdeconnect-settings.mo share/locale/es/LC_MESSAGES/kdeconnect-sms.mo share/locale/es/LC_MESSAGES/kdeconnect-urlhandler.mo share/locale/es/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo share/locale/et/LC_MESSAGES/kdeconnect-app.mo share/locale/et/LC_MESSAGES/kdeconnect-cli.mo share/locale/et/LC_MESSAGES/kdeconnect-core.mo share/locale/et/LC_MESSAGES/kdeconnect-fileitemaction.mo share/locale/et/LC_MESSAGES/kdeconnect-indicator.mo share/locale/et/LC_MESSAGES/kdeconnect-interfaces.mo -share/locale/et/LC_MESSAGES/kdeconnect-kcm.mo share/locale/et/LC_MESSAGES/kdeconnect-kded.mo share/locale/et/LC_MESSAGES/kdeconnect-kio.mo share/locale/et/LC_MESSAGES/kdeconnect-nautilus-extension.mo share/locale/et/LC_MESSAGES/kdeconnect-plugins.mo -share/locale/et/LC_MESSAGES/kdeconnect-settings.mo share/locale/et/LC_MESSAGES/kdeconnect-sms.mo share/locale/et/LC_MESSAGES/kdeconnect-urlhandler.mo share/locale/et/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo share/locale/eu/LC_MESSAGES/kdeconnect-app.mo share/locale/eu/LC_MESSAGES/kdeconnect-cli.mo share/locale/eu/LC_MESSAGES/kdeconnect-core.mo share/locale/eu/LC_MESSAGES/kdeconnect-fileitemaction.mo share/locale/eu/LC_MESSAGES/kdeconnect-indicator.mo share/locale/eu/LC_MESSAGES/kdeconnect-interfaces.mo -share/locale/eu/LC_MESSAGES/kdeconnect-kcm.mo share/locale/eu/LC_MESSAGES/kdeconnect-kded.mo share/locale/eu/LC_MESSAGES/kdeconnect-kio.mo share/locale/eu/LC_MESSAGES/kdeconnect-nautilus-extension.mo share/locale/eu/LC_MESSAGES/kdeconnect-plugins.mo -share/locale/eu/LC_MESSAGES/kdeconnect-settings.mo share/locale/eu/LC_MESSAGES/kdeconnect-sms.mo share/locale/eu/LC_MESSAGES/kdeconnect-urlhandler.mo share/locale/eu/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo share/locale/fa/LC_MESSAGES/kdeconnect-app.mo share/locale/fa/LC_MESSAGES/kdeconnect-cli.mo share/locale/fa/LC_MESSAGES/kdeconnect-core.mo +share/locale/fa/LC_MESSAGES/kdeconnect-fileitemaction.mo +share/locale/fa/LC_MESSAGES/kdeconnect-indicator.mo +share/locale/fa/LC_MESSAGES/kdeconnect-interfaces.mo +share/locale/fa/LC_MESSAGES/kdeconnect-kded.mo +share/locale/fa/LC_MESSAGES/kdeconnect-kio.mo +share/locale/fa/LC_MESSAGES/kdeconnect-nautilus-extension.mo +share/locale/fa/LC_MESSAGES/kdeconnect-plugins.mo +share/locale/fa/LC_MESSAGES/kdeconnect-sms.mo +share/locale/fa/LC_MESSAGES/kdeconnect-urlhandler.mo +share/locale/fa/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo share/locale/fi/LC_MESSAGES/kdeconnect-app.mo share/locale/fi/LC_MESSAGES/kdeconnect-cli.mo share/locale/fi/LC_MESSAGES/kdeconnect-core.mo share/locale/fi/LC_MESSAGES/kdeconnect-fileitemaction.mo share/locale/fi/LC_MESSAGES/kdeconnect-indicator.mo share/locale/fi/LC_MESSAGES/kdeconnect-interfaces.mo -share/locale/fi/LC_MESSAGES/kdeconnect-kcm.mo share/locale/fi/LC_MESSAGES/kdeconnect-kded.mo share/locale/fi/LC_MESSAGES/kdeconnect-kio.mo share/locale/fi/LC_MESSAGES/kdeconnect-nautilus-extension.mo share/locale/fi/LC_MESSAGES/kdeconnect-plugins.mo -share/locale/fi/LC_MESSAGES/kdeconnect-settings.mo share/locale/fi/LC_MESSAGES/kdeconnect-sms.mo share/locale/fi/LC_MESSAGES/kdeconnect-urlhandler.mo share/locale/fi/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo share/locale/fr/LC_MESSAGES/kdeconnect-app.mo share/locale/fr/LC_MESSAGES/kdeconnect-cli.mo share/locale/fr/LC_MESSAGES/kdeconnect-core.mo share/locale/fr/LC_MESSAGES/kdeconnect-fileitemaction.mo share/locale/fr/LC_MESSAGES/kdeconnect-indicator.mo share/locale/fr/LC_MESSAGES/kdeconnect-interfaces.mo -share/locale/fr/LC_MESSAGES/kdeconnect-kcm.mo share/locale/fr/LC_MESSAGES/kdeconnect-kded.mo share/locale/fr/LC_MESSAGES/kdeconnect-kio.mo share/locale/fr/LC_MESSAGES/kdeconnect-nautilus-extension.mo share/locale/fr/LC_MESSAGES/kdeconnect-plugins.mo -share/locale/fr/LC_MESSAGES/kdeconnect-settings.mo share/locale/fr/LC_MESSAGES/kdeconnect-sms.mo share/locale/fr/LC_MESSAGES/kdeconnect-urlhandler.mo share/locale/fr/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo share/locale/gl/LC_MESSAGES/kdeconnect-app.mo share/locale/gl/LC_MESSAGES/kdeconnect-cli.mo share/locale/gl/LC_MESSAGES/kdeconnect-core.mo share/locale/gl/LC_MESSAGES/kdeconnect-fileitemaction.mo share/locale/gl/LC_MESSAGES/kdeconnect-indicator.mo share/locale/gl/LC_MESSAGES/kdeconnect-interfaces.mo -share/locale/gl/LC_MESSAGES/kdeconnect-kcm.mo share/locale/gl/LC_MESSAGES/kdeconnect-kded.mo share/locale/gl/LC_MESSAGES/kdeconnect-kio.mo share/locale/gl/LC_MESSAGES/kdeconnect-nautilus-extension.mo share/locale/gl/LC_MESSAGES/kdeconnect-plugins.mo -share/locale/gl/LC_MESSAGES/kdeconnect-settings.mo share/locale/gl/LC_MESSAGES/kdeconnect-sms.mo share/locale/gl/LC_MESSAGES/kdeconnect-urlhandler.mo share/locale/gl/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo share/locale/he/LC_MESSAGES/kdeconnect-app.mo share/locale/he/LC_MESSAGES/kdeconnect-cli.mo share/locale/he/LC_MESSAGES/kdeconnect-core.mo share/locale/he/LC_MESSAGES/kdeconnect-fileitemaction.mo share/locale/he/LC_MESSAGES/kdeconnect-indicator.mo share/locale/he/LC_MESSAGES/kdeconnect-interfaces.mo -share/locale/he/LC_MESSAGES/kdeconnect-kcm.mo share/locale/he/LC_MESSAGES/kdeconnect-kded.mo share/locale/he/LC_MESSAGES/kdeconnect-kio.mo share/locale/he/LC_MESSAGES/kdeconnect-nautilus-extension.mo share/locale/he/LC_MESSAGES/kdeconnect-plugins.mo -share/locale/he/LC_MESSAGES/kdeconnect-settings.mo share/locale/he/LC_MESSAGES/kdeconnect-sms.mo share/locale/he/LC_MESSAGES/kdeconnect-urlhandler.mo share/locale/he/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo share/locale/hi/LC_MESSAGES/kdeconnect-app.mo share/locale/hi/LC_MESSAGES/kdeconnect-cli.mo share/locale/hi/LC_MESSAGES/kdeconnect-core.mo share/locale/hi/LC_MESSAGES/kdeconnect-fileitemaction.mo share/locale/hi/LC_MESSAGES/kdeconnect-indicator.mo share/locale/hi/LC_MESSAGES/kdeconnect-interfaces.mo -share/locale/hi/LC_MESSAGES/kdeconnect-kcm.mo share/locale/hi/LC_MESSAGES/kdeconnect-kded.mo share/locale/hi/LC_MESSAGES/kdeconnect-kio.mo share/locale/hi/LC_MESSAGES/kdeconnect-nautilus-extension.mo share/locale/hi/LC_MESSAGES/kdeconnect-plugins.mo -share/locale/hi/LC_MESSAGES/kdeconnect-settings.mo share/locale/hi/LC_MESSAGES/kdeconnect-sms.mo share/locale/hi/LC_MESSAGES/kdeconnect-urlhandler.mo share/locale/hi/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo share/locale/hu/LC_MESSAGES/kdeconnect-app.mo share/locale/hu/LC_MESSAGES/kdeconnect-cli.mo share/locale/hu/LC_MESSAGES/kdeconnect-core.mo share/locale/hu/LC_MESSAGES/kdeconnect-fileitemaction.mo share/locale/hu/LC_MESSAGES/kdeconnect-indicator.mo share/locale/hu/LC_MESSAGES/kdeconnect-interfaces.mo -share/locale/hu/LC_MESSAGES/kdeconnect-kcm.mo share/locale/hu/LC_MESSAGES/kdeconnect-kded.mo share/locale/hu/LC_MESSAGES/kdeconnect-kio.mo share/locale/hu/LC_MESSAGES/kdeconnect-nautilus-extension.mo share/locale/hu/LC_MESSAGES/kdeconnect-plugins.mo -share/locale/hu/LC_MESSAGES/kdeconnect-settings.mo share/locale/hu/LC_MESSAGES/kdeconnect-sms.mo share/locale/hu/LC_MESSAGES/kdeconnect-urlhandler.mo share/locale/hu/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo share/locale/ia/LC_MESSAGES/kdeconnect-app.mo share/locale/ia/LC_MESSAGES/kdeconnect-cli.mo share/locale/ia/LC_MESSAGES/kdeconnect-core.mo share/locale/ia/LC_MESSAGES/kdeconnect-fileitemaction.mo share/locale/ia/LC_MESSAGES/kdeconnect-indicator.mo share/locale/ia/LC_MESSAGES/kdeconnect-interfaces.mo -share/locale/ia/LC_MESSAGES/kdeconnect-kcm.mo share/locale/ia/LC_MESSAGES/kdeconnect-kded.mo share/locale/ia/LC_MESSAGES/kdeconnect-kio.mo share/locale/ia/LC_MESSAGES/kdeconnect-nautilus-extension.mo share/locale/ia/LC_MESSAGES/kdeconnect-plugins.mo -share/locale/ia/LC_MESSAGES/kdeconnect-settings.mo share/locale/ia/LC_MESSAGES/kdeconnect-sms.mo share/locale/ia/LC_MESSAGES/kdeconnect-urlhandler.mo share/locale/ia/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo share/locale/id/LC_MESSAGES/kdeconnect-app.mo share/locale/id/LC_MESSAGES/kdeconnect-cli.mo share/locale/id/LC_MESSAGES/kdeconnect-core.mo share/locale/id/LC_MESSAGES/kdeconnect-fileitemaction.mo share/locale/id/LC_MESSAGES/kdeconnect-indicator.mo share/locale/id/LC_MESSAGES/kdeconnect-interfaces.mo -share/locale/id/LC_MESSAGES/kdeconnect-kcm.mo share/locale/id/LC_MESSAGES/kdeconnect-kded.mo share/locale/id/LC_MESSAGES/kdeconnect-kio.mo share/locale/id/LC_MESSAGES/kdeconnect-nautilus-extension.mo share/locale/id/LC_MESSAGES/kdeconnect-plugins.mo -share/locale/id/LC_MESSAGES/kdeconnect-settings.mo share/locale/id/LC_MESSAGES/kdeconnect-sms.mo share/locale/id/LC_MESSAGES/kdeconnect-urlhandler.mo share/locale/id/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo share/locale/ie/LC_MESSAGES/kdeconnect-app.mo share/locale/ie/LC_MESSAGES/kdeconnect-core.mo share/locale/ie/LC_MESSAGES/kdeconnect-fileitemaction.mo share/locale/ie/LC_MESSAGES/kdeconnect-indicator.mo share/locale/ie/LC_MESSAGES/kdeconnect-interfaces.mo -share/locale/ie/LC_MESSAGES/kdeconnect-kcm.mo share/locale/ie/LC_MESSAGES/kdeconnect-kio.mo share/locale/ie/LC_MESSAGES/kdeconnect-nautilus-extension.mo -share/locale/ie/LC_MESSAGES/kdeconnect-settings.mo share/locale/ie/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo share/locale/is/LC_MESSAGES/kdeconnect-app.mo share/locale/is/LC_MESSAGES/kdeconnect-cli.mo share/locale/is/LC_MESSAGES/kdeconnect-core.mo share/locale/is/LC_MESSAGES/kdeconnect-fileitemaction.mo share/locale/is/LC_MESSAGES/kdeconnect-indicator.mo share/locale/is/LC_MESSAGES/kdeconnect-interfaces.mo -share/locale/is/LC_MESSAGES/kdeconnect-kcm.mo share/locale/is/LC_MESSAGES/kdeconnect-kded.mo share/locale/is/LC_MESSAGES/kdeconnect-kio.mo share/locale/is/LC_MESSAGES/kdeconnect-nautilus-extension.mo share/locale/is/LC_MESSAGES/kdeconnect-plugins.mo -share/locale/is/LC_MESSAGES/kdeconnect-settings.mo share/locale/is/LC_MESSAGES/kdeconnect-sms.mo share/locale/is/LC_MESSAGES/kdeconnect-urlhandler.mo share/locale/is/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo share/locale/it/LC_MESSAGES/kdeconnect-app.mo share/locale/it/LC_MESSAGES/kdeconnect-cli.mo share/locale/it/LC_MESSAGES/kdeconnect-core.mo share/locale/it/LC_MESSAGES/kdeconnect-fileitemaction.mo share/locale/it/LC_MESSAGES/kdeconnect-indicator.mo share/locale/it/LC_MESSAGES/kdeconnect-interfaces.mo -share/locale/it/LC_MESSAGES/kdeconnect-kcm.mo share/locale/it/LC_MESSAGES/kdeconnect-kded.mo share/locale/it/LC_MESSAGES/kdeconnect-kio.mo share/locale/it/LC_MESSAGES/kdeconnect-nautilus-extension.mo share/locale/it/LC_MESSAGES/kdeconnect-plugins.mo -share/locale/it/LC_MESSAGES/kdeconnect-settings.mo share/locale/it/LC_MESSAGES/kdeconnect-sms.mo share/locale/it/LC_MESSAGES/kdeconnect-urlhandler.mo share/locale/it/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo share/locale/ja/LC_MESSAGES/kdeconnect-app.mo share/locale/ja/LC_MESSAGES/kdeconnect-cli.mo share/locale/ja/LC_MESSAGES/kdeconnect-core.mo share/locale/ja/LC_MESSAGES/kdeconnect-fileitemaction.mo share/locale/ja/LC_MESSAGES/kdeconnect-indicator.mo share/locale/ja/LC_MESSAGES/kdeconnect-interfaces.mo -share/locale/ja/LC_MESSAGES/kdeconnect-kcm.mo share/locale/ja/LC_MESSAGES/kdeconnect-kded.mo share/locale/ja/LC_MESSAGES/kdeconnect-kio.mo share/locale/ja/LC_MESSAGES/kdeconnect-nautilus-extension.mo share/locale/ja/LC_MESSAGES/kdeconnect-plugins.mo -share/locale/ja/LC_MESSAGES/kdeconnect-settings.mo share/locale/ja/LC_MESSAGES/kdeconnect-sms.mo share/locale/ja/LC_MESSAGES/kdeconnect-urlhandler.mo share/locale/ja/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo share/locale/ka/LC_MESSAGES/kdeconnect-app.mo share/locale/ka/LC_MESSAGES/kdeconnect-cli.mo share/locale/ka/LC_MESSAGES/kdeconnect-core.mo share/locale/ka/LC_MESSAGES/kdeconnect-fileitemaction.mo share/locale/ka/LC_MESSAGES/kdeconnect-indicator.mo share/locale/ka/LC_MESSAGES/kdeconnect-interfaces.mo -share/locale/ka/LC_MESSAGES/kdeconnect-kcm.mo share/locale/ka/LC_MESSAGES/kdeconnect-kded.mo share/locale/ka/LC_MESSAGES/kdeconnect-kio.mo share/locale/ka/LC_MESSAGES/kdeconnect-nautilus-extension.mo share/locale/ka/LC_MESSAGES/kdeconnect-plugins.mo -share/locale/ka/LC_MESSAGES/kdeconnect-settings.mo share/locale/ka/LC_MESSAGES/kdeconnect-sms.mo share/locale/ka/LC_MESSAGES/kdeconnect-urlhandler.mo share/locale/ka/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo share/locale/ko/LC_MESSAGES/kdeconnect-app.mo share/locale/ko/LC_MESSAGES/kdeconnect-cli.mo share/locale/ko/LC_MESSAGES/kdeconnect-core.mo share/locale/ko/LC_MESSAGES/kdeconnect-fileitemaction.mo share/locale/ko/LC_MESSAGES/kdeconnect-indicator.mo share/locale/ko/LC_MESSAGES/kdeconnect-interfaces.mo -share/locale/ko/LC_MESSAGES/kdeconnect-kcm.mo share/locale/ko/LC_MESSAGES/kdeconnect-kded.mo share/locale/ko/LC_MESSAGES/kdeconnect-kio.mo share/locale/ko/LC_MESSAGES/kdeconnect-nautilus-extension.mo share/locale/ko/LC_MESSAGES/kdeconnect-plugins.mo -share/locale/ko/LC_MESSAGES/kdeconnect-settings.mo share/locale/ko/LC_MESSAGES/kdeconnect-sms.mo share/locale/ko/LC_MESSAGES/kdeconnect-urlhandler.mo share/locale/ko/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo share/locale/lt/LC_MESSAGES/kdeconnect-app.mo share/locale/lt/LC_MESSAGES/kdeconnect-cli.mo share/locale/lt/LC_MESSAGES/kdeconnect-core.mo share/locale/lt/LC_MESSAGES/kdeconnect-fileitemaction.mo share/locale/lt/LC_MESSAGES/kdeconnect-indicator.mo share/locale/lt/LC_MESSAGES/kdeconnect-interfaces.mo -share/locale/lt/LC_MESSAGES/kdeconnect-kcm.mo share/locale/lt/LC_MESSAGES/kdeconnect-kded.mo share/locale/lt/LC_MESSAGES/kdeconnect-kio.mo share/locale/lt/LC_MESSAGES/kdeconnect-nautilus-extension.mo share/locale/lt/LC_MESSAGES/kdeconnect-plugins.mo -share/locale/lt/LC_MESSAGES/kdeconnect-settings.mo share/locale/lt/LC_MESSAGES/kdeconnect-sms.mo share/locale/lt/LC_MESSAGES/kdeconnect-urlhandler.mo share/locale/lt/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo share/locale/lv/LC_MESSAGES/kdeconnect-app.mo share/locale/lv/LC_MESSAGES/kdeconnect-cli.mo share/locale/lv/LC_MESSAGES/kdeconnect-core.mo share/locale/lv/LC_MESSAGES/kdeconnect-fileitemaction.mo share/locale/lv/LC_MESSAGES/kdeconnect-indicator.mo share/locale/lv/LC_MESSAGES/kdeconnect-interfaces.mo -share/locale/lv/LC_MESSAGES/kdeconnect-kcm.mo share/locale/lv/LC_MESSAGES/kdeconnect-kded.mo share/locale/lv/LC_MESSAGES/kdeconnect-kio.mo share/locale/lv/LC_MESSAGES/kdeconnect-nautilus-extension.mo share/locale/lv/LC_MESSAGES/kdeconnect-plugins.mo -share/locale/lv/LC_MESSAGES/kdeconnect-settings.mo share/locale/lv/LC_MESSAGES/kdeconnect-sms.mo share/locale/lv/LC_MESSAGES/kdeconnect-urlhandler.mo share/locale/lv/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo share/locale/ml/LC_MESSAGES/kdeconnect-app.mo share/locale/ml/LC_MESSAGES/kdeconnect-cli.mo share/locale/ml/LC_MESSAGES/kdeconnect-core.mo share/locale/ml/LC_MESSAGES/kdeconnect-fileitemaction.mo share/locale/ml/LC_MESSAGES/kdeconnect-indicator.mo share/locale/ml/LC_MESSAGES/kdeconnect-interfaces.mo -share/locale/ml/LC_MESSAGES/kdeconnect-kcm.mo share/locale/ml/LC_MESSAGES/kdeconnect-kded.mo share/locale/ml/LC_MESSAGES/kdeconnect-kio.mo share/locale/ml/LC_MESSAGES/kdeconnect-nautilus-extension.mo share/locale/ml/LC_MESSAGES/kdeconnect-plugins.mo -share/locale/ml/LC_MESSAGES/kdeconnect-settings.mo share/locale/ml/LC_MESSAGES/kdeconnect-sms.mo share/locale/ml/LC_MESSAGES/kdeconnect-urlhandler.mo share/locale/ml/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo share/locale/nl/LC_MESSAGES/kdeconnect-app.mo share/locale/nl/LC_MESSAGES/kdeconnect-cli.mo share/locale/nl/LC_MESSAGES/kdeconnect-core.mo share/locale/nl/LC_MESSAGES/kdeconnect-fileitemaction.mo share/locale/nl/LC_MESSAGES/kdeconnect-indicator.mo share/locale/nl/LC_MESSAGES/kdeconnect-interfaces.mo -share/locale/nl/LC_MESSAGES/kdeconnect-kcm.mo share/locale/nl/LC_MESSAGES/kdeconnect-kded.mo share/locale/nl/LC_MESSAGES/kdeconnect-kio.mo share/locale/nl/LC_MESSAGES/kdeconnect-nautilus-extension.mo share/locale/nl/LC_MESSAGES/kdeconnect-plugins.mo -share/locale/nl/LC_MESSAGES/kdeconnect-settings.mo share/locale/nl/LC_MESSAGES/kdeconnect-sms.mo share/locale/nl/LC_MESSAGES/kdeconnect-urlhandler.mo share/locale/nl/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo share/locale/nn/LC_MESSAGES/kdeconnect-app.mo share/locale/nn/LC_MESSAGES/kdeconnect-cli.mo share/locale/nn/LC_MESSAGES/kdeconnect-core.mo share/locale/nn/LC_MESSAGES/kdeconnect-fileitemaction.mo share/locale/nn/LC_MESSAGES/kdeconnect-indicator.mo share/locale/nn/LC_MESSAGES/kdeconnect-interfaces.mo -share/locale/nn/LC_MESSAGES/kdeconnect-kcm.mo share/locale/nn/LC_MESSAGES/kdeconnect-kded.mo share/locale/nn/LC_MESSAGES/kdeconnect-kio.mo share/locale/nn/LC_MESSAGES/kdeconnect-nautilus-extension.mo share/locale/nn/LC_MESSAGES/kdeconnect-plugins.mo -share/locale/nn/LC_MESSAGES/kdeconnect-settings.mo share/locale/nn/LC_MESSAGES/kdeconnect-sms.mo share/locale/nn/LC_MESSAGES/kdeconnect-urlhandler.mo share/locale/nn/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo share/locale/pa/LC_MESSAGES/kdeconnect-app.mo share/locale/pa/LC_MESSAGES/kdeconnect-cli.mo share/locale/pa/LC_MESSAGES/kdeconnect-core.mo share/locale/pa/LC_MESSAGES/kdeconnect-fileitemaction.mo share/locale/pa/LC_MESSAGES/kdeconnect-indicator.mo share/locale/pa/LC_MESSAGES/kdeconnect-interfaces.mo -share/locale/pa/LC_MESSAGES/kdeconnect-kcm.mo share/locale/pa/LC_MESSAGES/kdeconnect-kded.mo share/locale/pa/LC_MESSAGES/kdeconnect-kio.mo share/locale/pa/LC_MESSAGES/kdeconnect-nautilus-extension.mo share/locale/pa/LC_MESSAGES/kdeconnect-plugins.mo -share/locale/pa/LC_MESSAGES/kdeconnect-settings.mo share/locale/pa/LC_MESSAGES/kdeconnect-sms.mo share/locale/pa/LC_MESSAGES/kdeconnect-urlhandler.mo share/locale/pa/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo share/locale/pl/LC_MESSAGES/kdeconnect-app.mo share/locale/pl/LC_MESSAGES/kdeconnect-cli.mo share/locale/pl/LC_MESSAGES/kdeconnect-core.mo share/locale/pl/LC_MESSAGES/kdeconnect-fileitemaction.mo share/locale/pl/LC_MESSAGES/kdeconnect-indicator.mo share/locale/pl/LC_MESSAGES/kdeconnect-interfaces.mo -share/locale/pl/LC_MESSAGES/kdeconnect-kcm.mo share/locale/pl/LC_MESSAGES/kdeconnect-kded.mo share/locale/pl/LC_MESSAGES/kdeconnect-kio.mo share/locale/pl/LC_MESSAGES/kdeconnect-nautilus-extension.mo share/locale/pl/LC_MESSAGES/kdeconnect-plugins.mo -share/locale/pl/LC_MESSAGES/kdeconnect-settings.mo share/locale/pl/LC_MESSAGES/kdeconnect-sms.mo share/locale/pl/LC_MESSAGES/kdeconnect-urlhandler.mo share/locale/pl/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo share/locale/pt/LC_MESSAGES/kdeconnect-app.mo share/locale/pt/LC_MESSAGES/kdeconnect-cli.mo share/locale/pt/LC_MESSAGES/kdeconnect-core.mo share/locale/pt/LC_MESSAGES/kdeconnect-fileitemaction.mo share/locale/pt/LC_MESSAGES/kdeconnect-indicator.mo share/locale/pt/LC_MESSAGES/kdeconnect-interfaces.mo -share/locale/pt/LC_MESSAGES/kdeconnect-kcm.mo share/locale/pt/LC_MESSAGES/kdeconnect-kded.mo share/locale/pt/LC_MESSAGES/kdeconnect-kio.mo share/locale/pt/LC_MESSAGES/kdeconnect-nautilus-extension.mo share/locale/pt/LC_MESSAGES/kdeconnect-plugins.mo -share/locale/pt/LC_MESSAGES/kdeconnect-settings.mo share/locale/pt/LC_MESSAGES/kdeconnect-sms.mo share/locale/pt/LC_MESSAGES/kdeconnect-urlhandler.mo share/locale/pt/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo share/locale/pt_BR/LC_MESSAGES/kdeconnect-app.mo share/locale/pt_BR/LC_MESSAGES/kdeconnect-cli.mo share/locale/pt_BR/LC_MESSAGES/kdeconnect-core.mo share/locale/pt_BR/LC_MESSAGES/kdeconnect-fileitemaction.mo share/locale/pt_BR/LC_MESSAGES/kdeconnect-indicator.mo share/locale/pt_BR/LC_MESSAGES/kdeconnect-interfaces.mo -share/locale/pt_BR/LC_MESSAGES/kdeconnect-kcm.mo share/locale/pt_BR/LC_MESSAGES/kdeconnect-kded.mo share/locale/pt_BR/LC_MESSAGES/kdeconnect-kio.mo share/locale/pt_BR/LC_MESSAGES/kdeconnect-nautilus-extension.mo share/locale/pt_BR/LC_MESSAGES/kdeconnect-plugins.mo -share/locale/pt_BR/LC_MESSAGES/kdeconnect-settings.mo share/locale/pt_BR/LC_MESSAGES/kdeconnect-sms.mo share/locale/pt_BR/LC_MESSAGES/kdeconnect-urlhandler.mo share/locale/pt_BR/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo share/locale/ro/LC_MESSAGES/kdeconnect-app.mo share/locale/ro/LC_MESSAGES/kdeconnect-cli.mo share/locale/ro/LC_MESSAGES/kdeconnect-core.mo share/locale/ro/LC_MESSAGES/kdeconnect-fileitemaction.mo share/locale/ro/LC_MESSAGES/kdeconnect-indicator.mo share/locale/ro/LC_MESSAGES/kdeconnect-interfaces.mo -share/locale/ro/LC_MESSAGES/kdeconnect-kcm.mo share/locale/ro/LC_MESSAGES/kdeconnect-kded.mo share/locale/ro/LC_MESSAGES/kdeconnect-kio.mo share/locale/ro/LC_MESSAGES/kdeconnect-nautilus-extension.mo share/locale/ro/LC_MESSAGES/kdeconnect-plugins.mo -share/locale/ro/LC_MESSAGES/kdeconnect-settings.mo share/locale/ro/LC_MESSAGES/kdeconnect-sms.mo share/locale/ro/LC_MESSAGES/kdeconnect-urlhandler.mo share/locale/ro/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo share/locale/ru/LC_MESSAGES/kdeconnect-app.mo share/locale/ru/LC_MESSAGES/kdeconnect-cli.mo share/locale/ru/LC_MESSAGES/kdeconnect-core.mo share/locale/ru/LC_MESSAGES/kdeconnect-fileitemaction.mo share/locale/ru/LC_MESSAGES/kdeconnect-indicator.mo share/locale/ru/LC_MESSAGES/kdeconnect-interfaces.mo -share/locale/ru/LC_MESSAGES/kdeconnect-kcm.mo share/locale/ru/LC_MESSAGES/kdeconnect-kded.mo share/locale/ru/LC_MESSAGES/kdeconnect-kio.mo share/locale/ru/LC_MESSAGES/kdeconnect-nautilus-extension.mo share/locale/ru/LC_MESSAGES/kdeconnect-plugins.mo -share/locale/ru/LC_MESSAGES/kdeconnect-settings.mo share/locale/ru/LC_MESSAGES/kdeconnect-sms.mo share/locale/ru/LC_MESSAGES/kdeconnect-urlhandler.mo share/locale/ru/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo share/locale/sa/LC_MESSAGES/kdeconnect-app.mo share/locale/sa/LC_MESSAGES/kdeconnect-cli.mo share/locale/sa/LC_MESSAGES/kdeconnect-core.mo share/locale/sa/LC_MESSAGES/kdeconnect-fileitemaction.mo share/locale/sa/LC_MESSAGES/kdeconnect-indicator.mo share/locale/sa/LC_MESSAGES/kdeconnect-interfaces.mo -share/locale/sa/LC_MESSAGES/kdeconnect-kcm.mo share/locale/sa/LC_MESSAGES/kdeconnect-kded.mo share/locale/sa/LC_MESSAGES/kdeconnect-kio.mo share/locale/sa/LC_MESSAGES/kdeconnect-nautilus-extension.mo share/locale/sa/LC_MESSAGES/kdeconnect-plugins.mo -share/locale/sa/LC_MESSAGES/kdeconnect-settings.mo share/locale/sa/LC_MESSAGES/kdeconnect-sms.mo share/locale/sa/LC_MESSAGES/kdeconnect-urlhandler.mo share/locale/sa/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo share/locale/sk/LC_MESSAGES/kdeconnect-app.mo share/locale/sk/LC_MESSAGES/kdeconnect-cli.mo share/locale/sk/LC_MESSAGES/kdeconnect-core.mo share/locale/sk/LC_MESSAGES/kdeconnect-fileitemaction.mo share/locale/sk/LC_MESSAGES/kdeconnect-indicator.mo share/locale/sk/LC_MESSAGES/kdeconnect-interfaces.mo -share/locale/sk/LC_MESSAGES/kdeconnect-kcm.mo share/locale/sk/LC_MESSAGES/kdeconnect-kded.mo share/locale/sk/LC_MESSAGES/kdeconnect-kio.mo share/locale/sk/LC_MESSAGES/kdeconnect-nautilus-extension.mo share/locale/sk/LC_MESSAGES/kdeconnect-plugins.mo -share/locale/sk/LC_MESSAGES/kdeconnect-settings.mo share/locale/sk/LC_MESSAGES/kdeconnect-sms.mo share/locale/sk/LC_MESSAGES/kdeconnect-urlhandler.mo share/locale/sk/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo share/locale/sl/LC_MESSAGES/kdeconnect-app.mo share/locale/sl/LC_MESSAGES/kdeconnect-cli.mo share/locale/sl/LC_MESSAGES/kdeconnect-core.mo share/locale/sl/LC_MESSAGES/kdeconnect-fileitemaction.mo share/locale/sl/LC_MESSAGES/kdeconnect-indicator.mo share/locale/sl/LC_MESSAGES/kdeconnect-interfaces.mo -share/locale/sl/LC_MESSAGES/kdeconnect-kcm.mo share/locale/sl/LC_MESSAGES/kdeconnect-kded.mo share/locale/sl/LC_MESSAGES/kdeconnect-kio.mo share/locale/sl/LC_MESSAGES/kdeconnect-nautilus-extension.mo share/locale/sl/LC_MESSAGES/kdeconnect-plugins.mo -share/locale/sl/LC_MESSAGES/kdeconnect-settings.mo share/locale/sl/LC_MESSAGES/kdeconnect-sms.mo share/locale/sl/LC_MESSAGES/kdeconnect-urlhandler.mo share/locale/sl/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo share/locale/sr/LC_MESSAGES/kdeconnect-cli.mo share/locale/sr/LC_MESSAGES/kdeconnect-core.mo -share/locale/sr/LC_MESSAGES/kdeconnect-kcm.mo share/locale/sr/LC_MESSAGES/kdeconnect-kded.mo share/locale/sr/LC_MESSAGES/kdeconnect-kio.mo share/locale/sr/LC_MESSAGES/kdeconnect-plugins.mo share/locale/sr/LC_MESSAGES/kdeconnect-urlhandler.mo share/locale/sr/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo share/locale/sr@ijekavian/LC_MESSAGES/kdeconnect-cli.mo share/locale/sr@ijekavian/LC_MESSAGES/kdeconnect-core.mo -share/locale/sr@ijekavian/LC_MESSAGES/kdeconnect-kcm.mo share/locale/sr@ijekavian/LC_MESSAGES/kdeconnect-kded.mo share/locale/sr@ijekavian/LC_MESSAGES/kdeconnect-kio.mo share/locale/sr@ijekavian/LC_MESSAGES/kdeconnect-plugins.mo share/locale/sr@ijekavian/LC_MESSAGES/kdeconnect-urlhandler.mo share/locale/sr@ijekavian/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kdeconnect-cli.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kdeconnect-core.mo -share/locale/sr@ijekavianlatin/LC_MESSAGES/kdeconnect-kcm.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kdeconnect-kded.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kdeconnect-kio.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kdeconnect-plugins.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kdeconnect-urlhandler.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo share/locale/sr@latin/LC_MESSAGES/kdeconnect-cli.mo share/locale/sr@latin/LC_MESSAGES/kdeconnect-core.mo -share/locale/sr@latin/LC_MESSAGES/kdeconnect-kcm.mo share/locale/sr@latin/LC_MESSAGES/kdeconnect-kded.mo share/locale/sr@latin/LC_MESSAGES/kdeconnect-kio.mo share/locale/sr@latin/LC_MESSAGES/kdeconnect-plugins.mo share/locale/sr@latin/LC_MESSAGES/kdeconnect-urlhandler.mo share/locale/sr@latin/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo share/locale/sv/LC_MESSAGES/kdeconnect-app.mo share/locale/sv/LC_MESSAGES/kdeconnect-cli.mo share/locale/sv/LC_MESSAGES/kdeconnect-core.mo share/locale/sv/LC_MESSAGES/kdeconnect-fileitemaction.mo share/locale/sv/LC_MESSAGES/kdeconnect-indicator.mo share/locale/sv/LC_MESSAGES/kdeconnect-interfaces.mo -share/locale/sv/LC_MESSAGES/kdeconnect-kcm.mo share/locale/sv/LC_MESSAGES/kdeconnect-kded.mo share/locale/sv/LC_MESSAGES/kdeconnect-kio.mo share/locale/sv/LC_MESSAGES/kdeconnect-nautilus-extension.mo share/locale/sv/LC_MESSAGES/kdeconnect-plugins.mo -share/locale/sv/LC_MESSAGES/kdeconnect-settings.mo share/locale/sv/LC_MESSAGES/kdeconnect-sms.mo share/locale/sv/LC_MESSAGES/kdeconnect-urlhandler.mo share/locale/sv/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo share/locale/ta/LC_MESSAGES/kdeconnect-app.mo share/locale/ta/LC_MESSAGES/kdeconnect-cli.mo share/locale/ta/LC_MESSAGES/kdeconnect-core.mo share/locale/ta/LC_MESSAGES/kdeconnect-fileitemaction.mo share/locale/ta/LC_MESSAGES/kdeconnect-indicator.mo share/locale/ta/LC_MESSAGES/kdeconnect-interfaces.mo -share/locale/ta/LC_MESSAGES/kdeconnect-kcm.mo share/locale/ta/LC_MESSAGES/kdeconnect-kded.mo share/locale/ta/LC_MESSAGES/kdeconnect-kio.mo share/locale/ta/LC_MESSAGES/kdeconnect-nautilus-extension.mo share/locale/ta/LC_MESSAGES/kdeconnect-plugins.mo -share/locale/ta/LC_MESSAGES/kdeconnect-settings.mo share/locale/ta/LC_MESSAGES/kdeconnect-sms.mo share/locale/ta/LC_MESSAGES/kdeconnect-urlhandler.mo share/locale/ta/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo share/locale/tg/LC_MESSAGES/kdeconnect-fileitemaction.mo -share/locale/tg/LC_MESSAGES/kdeconnect-kcm.mo share/locale/tg/LC_MESSAGES/kdeconnect-kded.mo share/locale/tg/LC_MESSAGES/kdeconnect-kio.mo share/locale/tg/LC_MESSAGES/kdeconnect-nautilus-extension.mo share/locale/tg/LC_MESSAGES/kdeconnect-plugins.mo share/locale/tg/LC_MESSAGES/kdeconnect-urlhandler.mo share/locale/tg/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo share/locale/tr/LC_MESSAGES/kdeconnect-app.mo share/locale/tr/LC_MESSAGES/kdeconnect-cli.mo share/locale/tr/LC_MESSAGES/kdeconnect-core.mo share/locale/tr/LC_MESSAGES/kdeconnect-fileitemaction.mo share/locale/tr/LC_MESSAGES/kdeconnect-indicator.mo share/locale/tr/LC_MESSAGES/kdeconnect-interfaces.mo -share/locale/tr/LC_MESSAGES/kdeconnect-kcm.mo share/locale/tr/LC_MESSAGES/kdeconnect-kded.mo share/locale/tr/LC_MESSAGES/kdeconnect-kio.mo share/locale/tr/LC_MESSAGES/kdeconnect-nautilus-extension.mo share/locale/tr/LC_MESSAGES/kdeconnect-plugins.mo -share/locale/tr/LC_MESSAGES/kdeconnect-settings.mo share/locale/tr/LC_MESSAGES/kdeconnect-sms.mo share/locale/tr/LC_MESSAGES/kdeconnect-urlhandler.mo share/locale/tr/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo share/locale/uk/LC_MESSAGES/kdeconnect-app.mo share/locale/uk/LC_MESSAGES/kdeconnect-cli.mo share/locale/uk/LC_MESSAGES/kdeconnect-core.mo share/locale/uk/LC_MESSAGES/kdeconnect-fileitemaction.mo share/locale/uk/LC_MESSAGES/kdeconnect-indicator.mo share/locale/uk/LC_MESSAGES/kdeconnect-interfaces.mo -share/locale/uk/LC_MESSAGES/kdeconnect-kcm.mo share/locale/uk/LC_MESSAGES/kdeconnect-kded.mo share/locale/uk/LC_MESSAGES/kdeconnect-kio.mo share/locale/uk/LC_MESSAGES/kdeconnect-nautilus-extension.mo share/locale/uk/LC_MESSAGES/kdeconnect-plugins.mo -share/locale/uk/LC_MESSAGES/kdeconnect-settings.mo share/locale/uk/LC_MESSAGES/kdeconnect-sms.mo share/locale/uk/LC_MESSAGES/kdeconnect-urlhandler.mo share/locale/uk/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo share/locale/zh_CN/LC_MESSAGES/kdeconnect-app.mo share/locale/zh_CN/LC_MESSAGES/kdeconnect-cli.mo share/locale/zh_CN/LC_MESSAGES/kdeconnect-core.mo share/locale/zh_CN/LC_MESSAGES/kdeconnect-fileitemaction.mo share/locale/zh_CN/LC_MESSAGES/kdeconnect-indicator.mo share/locale/zh_CN/LC_MESSAGES/kdeconnect-interfaces.mo -share/locale/zh_CN/LC_MESSAGES/kdeconnect-kcm.mo share/locale/zh_CN/LC_MESSAGES/kdeconnect-kded.mo share/locale/zh_CN/LC_MESSAGES/kdeconnect-kio.mo share/locale/zh_CN/LC_MESSAGES/kdeconnect-nautilus-extension.mo share/locale/zh_CN/LC_MESSAGES/kdeconnect-plugins.mo -share/locale/zh_CN/LC_MESSAGES/kdeconnect-settings.mo share/locale/zh_CN/LC_MESSAGES/kdeconnect-sms.mo share/locale/zh_CN/LC_MESSAGES/kdeconnect-urlhandler.mo share/locale/zh_CN/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo share/locale/zh_TW/LC_MESSAGES/kdeconnect-app.mo share/locale/zh_TW/LC_MESSAGES/kdeconnect-cli.mo share/locale/zh_TW/LC_MESSAGES/kdeconnect-core.mo share/locale/zh_TW/LC_MESSAGES/kdeconnect-fileitemaction.mo share/locale/zh_TW/LC_MESSAGES/kdeconnect-indicator.mo share/locale/zh_TW/LC_MESSAGES/kdeconnect-interfaces.mo -share/locale/zh_TW/LC_MESSAGES/kdeconnect-kcm.mo share/locale/zh_TW/LC_MESSAGES/kdeconnect-kded.mo share/locale/zh_TW/LC_MESSAGES/kdeconnect-kio.mo share/locale/zh_TW/LC_MESSAGES/kdeconnect-nautilus-extension.mo share/locale/zh_TW/LC_MESSAGES/kdeconnect-plugins.mo -share/locale/zh_TW/LC_MESSAGES/kdeconnect-settings.mo share/locale/zh_TW/LC_MESSAGES/kdeconnect-sms.mo share/locale/zh_TW/LC_MESSAGES/kdeconnect-urlhandler.mo share/locale/zh_TW/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo share/metainfo/org.kde.kdeconnect.appdata.xml share/metainfo/org.kde.kdeconnect.metainfo.xml share/nautilus-python/extensions/kdeconnect-share.py share/plasma/plasmoids/org.kde.kdeconnect/contents/ui/Battery.qml share/plasma/plasmoids/org.kde.kdeconnect/contents/ui/Clipboard.qml share/plasma/plasmoids/org.kde.kdeconnect/contents/ui/CompactRepresentation.qml share/plasma/plasmoids/org.kde.kdeconnect/contents/ui/Connectivity.qml share/plasma/plasmoids/org.kde.kdeconnect/contents/ui/DeviceDelegate.qml share/plasma/plasmoids/org.kde.kdeconnect/contents/ui/FindMyPhone.qml share/plasma/plasmoids/org.kde.kdeconnect/contents/ui/FullRepresentation.qml share/plasma/plasmoids/org.kde.kdeconnect/contents/ui/RemoteCommands.qml share/plasma/plasmoids/org.kde.kdeconnect/contents/ui/SMS.qml share/plasma/plasmoids/org.kde.kdeconnect/contents/ui/Sftp.qml share/plasma/plasmoids/org.kde.kdeconnect/contents/ui/Share.qml share/plasma/plasmoids/org.kde.kdeconnect/contents/ui/VirtualMonitor.qml share/plasma/plasmoids/org.kde.kdeconnect/contents/ui/main.qml share/plasma/plasmoids/org.kde.kdeconnect/metadata.json share/qlogging-categories6/kdeconnect-kde.categories share/zsh/site-functions/_kdeconnect diff --git a/deskutils/kdepim-addons/distinfo b/deskutils/kdepim-addons/distinfo index 7b9df4c7c609..91c1d2bba308 100644 --- a/deskutils/kdepim-addons/distinfo +++ b/deskutils/kdepim-addons/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1751381244 -SHA256 (KDE/release-service/25.04.3/kdepim-addons-25.04.3.tar.xz) = 345065f08e5f3d89a0bb2162335eb37d63433eb2dd98a2f4119971aec3c02257 -SIZE (KDE/release-service/25.04.3/kdepim-addons-25.04.3.tar.xz) = 2642460 +TIMESTAMP = 1754646157 +SHA256 (KDE/release-service/25.08.0/kdepim-addons-25.08.0.tar.xz) = c6a2fc95e1a43eb5dcba60531f13caf774cfe29c46dc3313745b988e4ce7543a +SIZE (KDE/release-service/25.08.0/kdepim-addons-25.08.0.tar.xz) = 2661872 diff --git a/deskutils/kdepim-addons/pkg-plist b/deskutils/kdepim-addons/pkg-plist index 032f399eb461..ed82d5fc97d0 100644 --- a/deskutils/kdepim-addons/pkg-plist +++ b/deskutils/kdepim-addons/pkg-plist @@ -1,1317 +1,1347 @@ bin/kmail_antivir.sh bin/kmail_clamav.sh bin/kmail_fprot.sh bin/kmail_sav.sh etc/xdg/kmail.antispamrc etc/xdg/kmail.antivirusrc +lib/libKPim6AutoGenerateText.so.6 +lib/libKPim6AutoGenerateText.so.%%KDE_APPLICATIONS_SHLIB_VER%% lib/libakonadidatasetools.so.6 lib/libakonadidatasetools.so.%%KDE_APPLICATIONS_SHLIB_VER%% lib/libdkimverifyconfigure.so.6 lib/libdkimverifyconfigure.so.%%KDE_APPLICATIONS_SHLIB_VER%% lib/libexpireaccounttrashfolderconfig.so.6 lib/libexpireaccounttrashfolderconfig.so.%%KDE_APPLICATIONS_SHLIB_VER%% lib/libfolderconfiguresettings.so.6 lib/libfolderconfiguresettings.so.%%KDE_APPLICATIONS_SHLIB_VER%% lib/libkaddressbookmergelibprivate.so.6 lib/libkaddressbookmergelibprivate.so.%%KDE_APPLICATIONS_SHLIB_VER%% lib/libkmailconfirmbeforedeleting.so.6 lib/libkmailconfirmbeforedeleting.so.%%KDE_APPLICATIONS_SHLIB_VER%% lib/libkmailmarkdown.so.6 lib/libkmailmarkdown.so.%%KDE_APPLICATIONS_SHLIB_VER%% lib/libkmailquicktextpluginprivate.so.6 lib/libkmailquicktextpluginprivate.so.%%KDE_APPLICATIONS_SHLIB_VER%% lib/libopenurlwithconfigure.so.6 lib/libopenurlwithconfigure.so.%%KDE_APPLICATIONS_SHLIB_VER%% lib/libshorturlpluginprivate.so.6 lib/libshorturlpluginprivate.so.%%KDE_APPLICATIONS_SHLIB_VER%% %%QT_PLUGINDIR%%/pim6/akonadi/emailaddressselectionldapdialogplugin.so %%QT_PLUGINDIR%%/pim6/contacteditor/editorpageplugins/cryptopageplugin.so %%QT_PLUGINDIR%%/pim6/importwizard/evolutionv1importerplugin.so %%QT_PLUGINDIR%%/pim6/importwizard/evolutionv2importerplugin.so %%QT_PLUGINDIR%%/pim6/importwizard/gearyimporterplugin.so %%QT_PLUGINDIR%%/pim6/importwizard/operaimporterplugin.so %%QT_PLUGINDIR%%/pim6/kaddressbook/importexportplugin/kaddressbook_importexportgmxplugin.so %%QT_PLUGINDIR%%/pim6/kaddressbook/importexportplugin/kaddressbook_importexportldapplugin.so %%QT_PLUGINDIR%%/pim6/kaddressbook/importexportplugin/kaddressbook_importexportldifplugin.so %%QT_PLUGINDIR%%/pim6/kaddressbook/importexportplugin/kaddressbook_importexportvcardplugin.so %%QT_PLUGINDIR%%/pim6/kaddressbook/importexportplugin/kaddressbook_importexportwindowscontactplugin.so %%QT_PLUGINDIR%%/pim6/kaddressbook/mainview/kaddressbook_checkgravatarplugin.so %%QT_PLUGINDIR%%/pim6/kaddressbook/mainview/kaddressbook_mergecontactsplugin.so %%QT_PLUGINDIR%%/pim6/kaddressbook/mainview/kaddressbook_searchduplicatesplugin.so %%QT_PLUGINDIR%%/pim6/kaddressbook/mainview/kaddressbook_sendmailplugin.so %%QT_PLUGINDIR%%/pim6/kaddressbook/mainview/kaddressbook_sendvcardsplugin.so %%QT_PLUGINDIR%%/pim6/kcms/kleopatra/kcm_kmail_gnupgsystem.so %%QT_PLUGINDIR%%/pim6/kmail/mainview/kmail_akonadidatabasetoolplugin.so %%QT_PLUGINDIR%%/pim6/kmail/mainview/kmail_antispamplugin.so %%QT_PLUGINDIR%%/pim6/kmail/mainview/kmail_antivirusplugin.so +%%QT_PLUGINDIR%%/pim6/kmail/mainview/kmail_checkfoldersizeaccount.so %%QT_PLUGINDIR%%/pim6/kmail/mainview/kmail_expertplugin.so %%QT_PLUGINDIR%%/pim6/kmail/plugincheckbeforesend/kmail_automaticaddcontactseditorplugin.so %%QT_PLUGINDIR%%/pim6/kmail/plugincheckbeforesend/kmail_checkbeforesendeditorplugin.so %%QT_PLUGINDIR%%/pim6/kmail/plugincheckbeforesend/kmail_confirmaddresseditorplugin.so +%%QT_PLUGINDIR%%/pim6/kmail/plugineditor/kmail_aitooleditorplugin.so +%%QT_PLUGINDIR%%/pim6/kmail/plugineditor/kmail_askautogeneratetexteditorplugin.so %%QT_PLUGINDIR%%/pim6/kmail/plugineditor/kmail_autocorrectioneditorplugin.so +%%QT_PLUGINDIR%%/pim6/kmail/plugineditor/kmail_autogenerateanswerseditorplugin.so %%QT_PLUGINDIR%%/pim6/kmail/plugineditor/kmail_changecaseeditorplugin.so %%QT_PLUGINDIR%%/pim6/kmail/plugineditor/kmail_insertemaileditorplugin.so %%QT_PLUGINDIR%%/pim6/kmail/plugineditor/kmail_insertshorturleditorplugin.so %%QT_PLUGINDIR%%/pim6/kmail/plugineditor/kmail_insertspecialcharactereditorplugin.so %%QT_PLUGINDIR%%/pim6/kmail/plugineditor/kmail_nonbreakingspaceeditorplugin.so %%QT_PLUGINDIR%%/pim6/kmail/plugineditor/kmail_quicktextplugin.so %%QT_PLUGINDIR%%/pim6/kmail/plugineditor/kmail_sharetexteditorplugin.so %%QT_PLUGINDIR%%/pim6/kmail/plugineditor/kmail_zoomtexteditorplugin.so %%QT_PLUGINDIR%%/pim6/kmail/plugineditorconverttext/kmail_markdownplugin.so %%QT_PLUGINDIR%%/pim6/kmail/plugineditorgrammar/kmail_grammalecteplugin.so %%QT_PLUGINDIR%%/pim6/kmail/plugineditorgrammar/kmail_languagetoolplugin.so %%QT_PLUGINDIR%%/pim6/kmail/plugineditorinit/kmail_externalcomposereditorplugin.so %%QT_PLUGINDIR%%/pim6/ldapactivities/kldapactivitiesplugin.so %%QT_PLUGINDIR%%/pim6/libksieve/emaillineeditplugin.so %%QT_PLUGINDIR%%/pim6/libksieve/imapfoldercompletionplugin.so %%QT_PLUGINDIR%%/pim6/mailtransport/mailtransport_sendplugin.so %%QT_PLUGINDIR%%/pim6/mailtransportactivities/kmailtransportactivitiesplugin.so %%QT_PLUGINDIR%%/pim6/messageviewer/bodypartformatter/messageviewer_bodypartformatter_application_gnupgwks.so %%QT_PLUGINDIR%%/pim6/messageviewer/bodypartformatter/messageviewer_bodypartformatter_application_mstnef.so %%QT_PLUGINDIR%%/pim6/messageviewer/bodypartformatter/messageviewer_bodypartformatter_pkpass.so %%QT_PLUGINDIR%%/pim6/messageviewer/bodypartformatter/messageviewer_bodypartformatter_semantic.so %%QT_PLUGINDIR%%/pim6/messageviewer/bodypartformatter/messageviewer_bodypartformatter_text_calendar.so %%QT_PLUGINDIR%%/pim6/messageviewer/bodypartformatter/messageviewer_bodypartformatter_text_highlighter.so %%QT_PLUGINDIR%%/pim6/messageviewer/bodypartformatter/messageviewer_bodypartformatter_text_markdown.so %%QT_PLUGINDIR%%/pim6/messageviewer/bodypartformatter/messageviewer_bodypartformatter_text_vcard.so %%QT_PLUGINDIR%%/pim6/messageviewer/checkbeforedeleting/kmail_confirmbeforedeletingplugin.so %%QT_PLUGINDIR%%/pim6/messageviewer/configuresettings/messageviewer_dkimconfigplugin.so %%QT_PLUGINDIR%%/pim6/messageviewer/configuresettings/messageviewer_expireaccounttrashfolderconfigplugin.so %%QT_PLUGINDIR%%/pim6/messageviewer/configuresettings/messageviewer_folderconfiguresettingsplugin.so %%QT_PLUGINDIR%%/pim6/messageviewer/configuresettings/messageviewer_gravatarconfigplugin.so %%QT_PLUGINDIR%%/pim6/messageviewer/configuresettings/messageviewer_openurlwithconfigplugin.so %%QT_PLUGINDIR%%/pim6/messageviewer/headerstyle/messageviewer_briefheaderstyleplugin.so %%QT_PLUGINDIR%%/pim6/messageviewer/headerstyle/messageviewer_fancyheaderstyleplugin.so %%QT_PLUGINDIR%%/pim6/messageviewer/headerstyle/messageviewer_grantleeheaderstyleplugin.so %%QT_PLUGINDIR%%/pim6/messageviewer/headerstyle/messageviewer_longheaderstyleplugin.so %%QT_PLUGINDIR%%/pim6/messageviewer/headerstyle/messageviewer_standardsheaderstyleplugin.so %%QT_PLUGINDIR%%/pim6/messageviewer/kf6/ktexttemplate/kitinerary_ktexttemplate_extension.so %%QT_PLUGINDIR%%/pim6/messageviewer/viewercommonplugin/messageviewer_expandurlplugin.so %%QT_PLUGINDIR%%/pim6/messageviewer/viewercommonplugin/messageviewer_translatorplugin.so %%QT_PLUGINDIR%%/pim6/messageviewer/viewerplugin/messageviewer_createeventplugin.so %%QT_PLUGINDIR%%/pim6/messageviewer/viewerplugin/messageviewer_createtodoplugin.so %%QT_PLUGINDIR%%/pim6/messageviewer/viewerplugin/messageviewer_externalscriptplugin.so %%QT_PLUGINDIR%%/pim6/pimcommon/customtools/pimcommon_translatorplugin.so %%QT_PLUGINDIR%%/pim6/pimcommon/shorturlengine/pimcommon_isgdshorturlengineplugin.so %%QT_PLUGINDIR%%/pim6/pimcommon/shorturlengine/pimcommon_tinyurlengineplugin.so %%QT_PLUGINDIR%%/pim6/pimcommon/shorturlengine/pimcommon_triopabshorturlengineplugin.so %%QT_PLUGINDIR%%/pim6/templateparser/templateparseraddressrequesterplugin.so %%QT_PLUGINDIR%%/pim6/webengineviewer/urlinterceptor/webengineviewer_donottrackplugin.so %%QT_PLUGINDIR%%/plasmacalendarplugins/pimevents.so %%QT_PLUGINDIR%%/plasmacalendarplugins/pimevents/PimEventsConfig.qml %%QT_QMLDIR%%/org/kde/plasma/PimCalendars/libpimcalendarsplugin.so %%QT_QMLDIR%%/org/kde/plasma/PimCalendars/qmldir share/locale/af/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/af/LC_MESSAGES/korganizer_plugins.mo share/locale/ar/LC_MESSAGES/cryptopageplugin.mo share/locale/ar/LC_MESSAGES/customtoolsplugin.mo share/locale/ar/LC_MESSAGES/importwizard_plugins.mo share/locale/ar/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/ar/LC_MESSAGES/kaddressbook_plugins.mo share/locale/ar/LC_MESSAGES/kmail_checkbeforedeleting_plugins.mo share/locale/ar/LC_MESSAGES/kmail_editor_plugins.mo share/locale/ar/LC_MESSAGES/kmail_editorconvertertext_plugins.mo share/locale/ar/LC_MESSAGES/kmail_editorgrammar_plugins.mo share/locale/ar/LC_MESSAGES/kmail_editorinit_plugins.mo share/locale/ar/LC_MESSAGES/kmail_editorsendcheck_plugins.mo share/locale/ar/LC_MESSAGES/kmail_plugins.mo share/locale/ar/LC_MESSAGES/kmailtransport_plugins.mo share/locale/ar/LC_MESSAGES/korganizer_plugins.mo +share/locale/ar/LC_MESSAGES/libpimautogeneratetext.mo share/locale/ar/LC_MESSAGES/messageviewer_application_gnupgwks_plugin.mo share/locale/ar/LC_MESSAGES/messageviewer_application_mstnef_plugin.mo share/locale/ar/LC_MESSAGES/messageviewer_bodypartformatter_pkpass.mo share/locale/ar/LC_MESSAGES/messageviewer_semantic_plugin.mo share/locale/ar/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/ar/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/ar/LC_MESSAGES/messageviewerconfiguresettingsplugins.mo share/locale/ar/LC_MESSAGES/messageviewerheaderplugins.mo share/locale/ar/LC_MESSAGES/messageviewerplugins.mo share/locale/ar/LC_MESSAGES/sieveeditor_plugins.mo share/locale/ar/LC_MESSAGES/webengineurlinterceptor.mo share/locale/ast/LC_MESSAGES/cryptopageplugin.mo share/locale/ast/LC_MESSAGES/customtoolsplugin.mo share/locale/ast/LC_MESSAGES/importwizard_plugins.mo share/locale/ast/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/ast/LC_MESSAGES/kaddressbook_plugins.mo share/locale/ast/LC_MESSAGES/kmail_checkbeforedeleting_plugins.mo share/locale/ast/LC_MESSAGES/kmail_editor_plugins.mo share/locale/ast/LC_MESSAGES/kmail_editorconvertertext_plugins.mo share/locale/ast/LC_MESSAGES/kmail_editorgrammar_plugins.mo share/locale/ast/LC_MESSAGES/kmail_editorinit_plugins.mo share/locale/ast/LC_MESSAGES/kmail_editorsendcheck_plugins.mo share/locale/ast/LC_MESSAGES/kmail_plugins.mo share/locale/ast/LC_MESSAGES/kmailtransport_plugins.mo share/locale/ast/LC_MESSAGES/korganizer_plugins.mo share/locale/ast/LC_MESSAGES/messageviewer_application_gnupgwks_plugin.mo share/locale/ast/LC_MESSAGES/messageviewer_application_mstnef_plugin.mo share/locale/ast/LC_MESSAGES/messageviewer_bodypartformatter_pkpass.mo share/locale/ast/LC_MESSAGES/messageviewer_semantic_plugin.mo share/locale/ast/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/ast/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/ast/LC_MESSAGES/messageviewerconfiguresettingsplugins.mo share/locale/ast/LC_MESSAGES/messageviewerheaderplugins.mo share/locale/ast/LC_MESSAGES/messageviewerplugins.mo share/locale/ast/LC_MESSAGES/sieveeditor_plugins.mo share/locale/ast/LC_MESSAGES/webengineurlinterceptor.mo share/locale/az/LC_MESSAGES/cryptopageplugin.mo share/locale/az/LC_MESSAGES/customtoolsplugin.mo share/locale/az/LC_MESSAGES/importwizard_plugins.mo share/locale/az/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/az/LC_MESSAGES/kaddressbook_plugins.mo share/locale/az/LC_MESSAGES/kmail_checkbeforedeleting_plugins.mo share/locale/az/LC_MESSAGES/kmail_editor_plugins.mo share/locale/az/LC_MESSAGES/kmail_editorconvertertext_plugins.mo share/locale/az/LC_MESSAGES/kmail_editorgrammar_plugins.mo share/locale/az/LC_MESSAGES/kmail_editorinit_plugins.mo share/locale/az/LC_MESSAGES/kmail_editorsendcheck_plugins.mo share/locale/az/LC_MESSAGES/kmail_plugins.mo share/locale/az/LC_MESSAGES/kmailtransport_plugins.mo share/locale/az/LC_MESSAGES/korganizer_plugins.mo share/locale/az/LC_MESSAGES/messageviewer_application_gnupgwks_plugin.mo share/locale/az/LC_MESSAGES/messageviewer_application_mstnef_plugin.mo share/locale/az/LC_MESSAGES/messageviewer_bodypartformatter_pkpass.mo share/locale/az/LC_MESSAGES/messageviewer_semantic_plugin.mo share/locale/az/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/az/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/az/LC_MESSAGES/messageviewerconfiguresettingsplugins.mo share/locale/az/LC_MESSAGES/messageviewerheaderplugins.mo share/locale/az/LC_MESSAGES/messageviewerplugins.mo share/locale/az/LC_MESSAGES/sieveeditor_plugins.mo share/locale/az/LC_MESSAGES/webengineurlinterceptor.mo share/locale/be/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/be/LC_MESSAGES/korganizer_plugins.mo share/locale/be/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/be/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/bg/LC_MESSAGES/cryptopageplugin.mo share/locale/bg/LC_MESSAGES/customtoolsplugin.mo share/locale/bg/LC_MESSAGES/importwizard_plugins.mo share/locale/bg/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/bg/LC_MESSAGES/kaddressbook_plugins.mo share/locale/bg/LC_MESSAGES/kmail_checkbeforedeleting_plugins.mo share/locale/bg/LC_MESSAGES/kmail_editor_plugins.mo share/locale/bg/LC_MESSAGES/kmail_editorconvertertext_plugins.mo share/locale/bg/LC_MESSAGES/kmail_editorgrammar_plugins.mo share/locale/bg/LC_MESSAGES/kmail_editorinit_plugins.mo share/locale/bg/LC_MESSAGES/kmail_editorsendcheck_plugins.mo share/locale/bg/LC_MESSAGES/kmail_plugins.mo share/locale/bg/LC_MESSAGES/kmailtransport_plugins.mo share/locale/bg/LC_MESSAGES/korganizer_plugins.mo +share/locale/bg/LC_MESSAGES/libpimautogeneratetext.mo share/locale/bg/LC_MESSAGES/messageviewer_application_gnupgwks_plugin.mo share/locale/bg/LC_MESSAGES/messageviewer_application_mstnef_plugin.mo share/locale/bg/LC_MESSAGES/messageviewer_bodypartformatter_pkpass.mo share/locale/bg/LC_MESSAGES/messageviewer_semantic_plugin.mo share/locale/bg/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/bg/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/bg/LC_MESSAGES/messageviewerconfiguresettingsplugins.mo share/locale/bg/LC_MESSAGES/messageviewerheaderplugins.mo share/locale/bg/LC_MESSAGES/messageviewerplugins.mo share/locale/bg/LC_MESSAGES/sieveeditor_plugins.mo share/locale/bg/LC_MESSAGES/webengineurlinterceptor.mo share/locale/bn/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/br/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/br/LC_MESSAGES/korganizer_plugins.mo share/locale/br/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/br/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/bs/LC_MESSAGES/cryptopageplugin.mo share/locale/bs/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/bs/LC_MESSAGES/korganizer_plugins.mo share/locale/bs/LC_MESSAGES/messageviewer_application_mstnef_plugin.mo share/locale/bs/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/bs/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/ca/LC_MESSAGES/cryptopageplugin.mo share/locale/ca/LC_MESSAGES/customtoolsplugin.mo share/locale/ca/LC_MESSAGES/importwizard_plugins.mo share/locale/ca/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/ca/LC_MESSAGES/kaddressbook_plugins.mo share/locale/ca/LC_MESSAGES/kmail_checkbeforedeleting_plugins.mo share/locale/ca/LC_MESSAGES/kmail_editor_plugins.mo share/locale/ca/LC_MESSAGES/kmail_editorconvertertext_plugins.mo share/locale/ca/LC_MESSAGES/kmail_editorgrammar_plugins.mo share/locale/ca/LC_MESSAGES/kmail_editorinit_plugins.mo share/locale/ca/LC_MESSAGES/kmail_editorsendcheck_plugins.mo share/locale/ca/LC_MESSAGES/kmail_plugins.mo share/locale/ca/LC_MESSAGES/kmailtransport_plugins.mo share/locale/ca/LC_MESSAGES/korganizer_plugins.mo +share/locale/ca/LC_MESSAGES/libpimautogeneratetext.mo share/locale/ca/LC_MESSAGES/messageviewer_application_gnupgwks_plugin.mo share/locale/ca/LC_MESSAGES/messageviewer_application_mstnef_plugin.mo share/locale/ca/LC_MESSAGES/messageviewer_bodypartformatter_pkpass.mo share/locale/ca/LC_MESSAGES/messageviewer_semantic_plugin.mo share/locale/ca/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/ca/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/ca/LC_MESSAGES/messageviewerconfiguresettingsplugins.mo share/locale/ca/LC_MESSAGES/messageviewerheaderplugins.mo share/locale/ca/LC_MESSAGES/messageviewerplugins.mo share/locale/ca/LC_MESSAGES/sieveeditor_plugins.mo share/locale/ca/LC_MESSAGES/webengineurlinterceptor.mo share/locale/ca@valencia/LC_MESSAGES/cryptopageplugin.mo share/locale/ca@valencia/LC_MESSAGES/customtoolsplugin.mo share/locale/ca@valencia/LC_MESSAGES/importwizard_plugins.mo share/locale/ca@valencia/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/ca@valencia/LC_MESSAGES/kaddressbook_plugins.mo share/locale/ca@valencia/LC_MESSAGES/kmail_checkbeforedeleting_plugins.mo share/locale/ca@valencia/LC_MESSAGES/kmail_editor_plugins.mo share/locale/ca@valencia/LC_MESSAGES/kmail_editorconvertertext_plugins.mo share/locale/ca@valencia/LC_MESSAGES/kmail_editorgrammar_plugins.mo share/locale/ca@valencia/LC_MESSAGES/kmail_editorinit_plugins.mo share/locale/ca@valencia/LC_MESSAGES/kmail_editorsendcheck_plugins.mo share/locale/ca@valencia/LC_MESSAGES/kmail_plugins.mo share/locale/ca@valencia/LC_MESSAGES/kmailtransport_plugins.mo share/locale/ca@valencia/LC_MESSAGES/korganizer_plugins.mo +share/locale/ca@valencia/LC_MESSAGES/libpimautogeneratetext.mo share/locale/ca@valencia/LC_MESSAGES/messageviewer_application_gnupgwks_plugin.mo share/locale/ca@valencia/LC_MESSAGES/messageviewer_application_mstnef_plugin.mo share/locale/ca@valencia/LC_MESSAGES/messageviewer_bodypartformatter_pkpass.mo share/locale/ca@valencia/LC_MESSAGES/messageviewer_semantic_plugin.mo share/locale/ca@valencia/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/ca@valencia/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/ca@valencia/LC_MESSAGES/messageviewerconfiguresettingsplugins.mo share/locale/ca@valencia/LC_MESSAGES/messageviewerheaderplugins.mo share/locale/ca@valencia/LC_MESSAGES/messageviewerplugins.mo share/locale/ca@valencia/LC_MESSAGES/sieveeditor_plugins.mo share/locale/ca@valencia/LC_MESSAGES/webengineurlinterceptor.mo share/locale/cs/LC_MESSAGES/cryptopageplugin.mo share/locale/cs/LC_MESSAGES/customtoolsplugin.mo share/locale/cs/LC_MESSAGES/importwizard_plugins.mo share/locale/cs/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/cs/LC_MESSAGES/kaddressbook_plugins.mo share/locale/cs/LC_MESSAGES/kmail_checkbeforedeleting_plugins.mo share/locale/cs/LC_MESSAGES/kmail_editor_plugins.mo share/locale/cs/LC_MESSAGES/kmail_editorconvertertext_plugins.mo share/locale/cs/LC_MESSAGES/kmail_editorgrammar_plugins.mo share/locale/cs/LC_MESSAGES/kmail_editorinit_plugins.mo share/locale/cs/LC_MESSAGES/kmail_editorsendcheck_plugins.mo share/locale/cs/LC_MESSAGES/kmail_plugins.mo share/locale/cs/LC_MESSAGES/kmailtransport_plugins.mo share/locale/cs/LC_MESSAGES/korganizer_plugins.mo share/locale/cs/LC_MESSAGES/messageviewer_application_gnupgwks_plugin.mo share/locale/cs/LC_MESSAGES/messageviewer_application_mstnef_plugin.mo share/locale/cs/LC_MESSAGES/messageviewer_bodypartformatter_pkpass.mo share/locale/cs/LC_MESSAGES/messageviewer_semantic_plugin.mo share/locale/cs/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/cs/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/cs/LC_MESSAGES/messageviewerconfiguresettingsplugins.mo share/locale/cs/LC_MESSAGES/messageviewerheaderplugins.mo share/locale/cs/LC_MESSAGES/messageviewerplugins.mo share/locale/cs/LC_MESSAGES/sieveeditor_plugins.mo share/locale/cs/LC_MESSAGES/webengineurlinterceptor.mo share/locale/cy/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/cy/LC_MESSAGES/korganizer_plugins.mo share/locale/cy/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/da/LC_MESSAGES/cryptopageplugin.mo share/locale/da/LC_MESSAGES/customtoolsplugin.mo share/locale/da/LC_MESSAGES/importwizard_plugins.mo share/locale/da/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/da/LC_MESSAGES/kaddressbook_plugins.mo share/locale/da/LC_MESSAGES/kmail_editor_plugins.mo share/locale/da/LC_MESSAGES/kmail_editorconvertertext_plugins.mo share/locale/da/LC_MESSAGES/kmail_editorgrammar_plugins.mo share/locale/da/LC_MESSAGES/kmail_editorinit_plugins.mo share/locale/da/LC_MESSAGES/kmail_editorsendcheck_plugins.mo share/locale/da/LC_MESSAGES/kmail_plugins.mo share/locale/da/LC_MESSAGES/kmailtransport_plugins.mo share/locale/da/LC_MESSAGES/korganizer_plugins.mo share/locale/da/LC_MESSAGES/messageviewer_application_gnupgwks_plugin.mo share/locale/da/LC_MESSAGES/messageviewer_application_mstnef_plugin.mo share/locale/da/LC_MESSAGES/messageviewer_bodypartformatter_pkpass.mo share/locale/da/LC_MESSAGES/messageviewer_semantic_plugin.mo share/locale/da/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/da/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/da/LC_MESSAGES/messageviewerconfiguresettingsplugins.mo share/locale/da/LC_MESSAGES/messageviewerheaderplugins.mo share/locale/da/LC_MESSAGES/messageviewerplugins.mo share/locale/da/LC_MESSAGES/sieveeditor_plugins.mo share/locale/da/LC_MESSAGES/webengineurlinterceptor.mo share/locale/de/LC_MESSAGES/cryptopageplugin.mo share/locale/de/LC_MESSAGES/customtoolsplugin.mo share/locale/de/LC_MESSAGES/importwizard_plugins.mo share/locale/de/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/de/LC_MESSAGES/kaddressbook_plugins.mo share/locale/de/LC_MESSAGES/kmail_checkbeforedeleting_plugins.mo share/locale/de/LC_MESSAGES/kmail_editor_plugins.mo share/locale/de/LC_MESSAGES/kmail_editorconvertertext_plugins.mo share/locale/de/LC_MESSAGES/kmail_editorgrammar_plugins.mo share/locale/de/LC_MESSAGES/kmail_editorinit_plugins.mo share/locale/de/LC_MESSAGES/kmail_editorsendcheck_plugins.mo share/locale/de/LC_MESSAGES/kmail_plugins.mo share/locale/de/LC_MESSAGES/kmailtransport_plugins.mo share/locale/de/LC_MESSAGES/korganizer_plugins.mo +share/locale/de/LC_MESSAGES/libpimautogeneratetext.mo share/locale/de/LC_MESSAGES/messageviewer_application_gnupgwks_plugin.mo share/locale/de/LC_MESSAGES/messageviewer_application_mstnef_plugin.mo share/locale/de/LC_MESSAGES/messageviewer_bodypartformatter_pkpass.mo share/locale/de/LC_MESSAGES/messageviewer_semantic_plugin.mo share/locale/de/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/de/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/de/LC_MESSAGES/messageviewerconfiguresettingsplugins.mo share/locale/de/LC_MESSAGES/messageviewerheaderplugins.mo share/locale/de/LC_MESSAGES/messageviewerplugins.mo share/locale/de/LC_MESSAGES/sieveeditor_plugins.mo share/locale/de/LC_MESSAGES/webengineurlinterceptor.mo share/locale/el/LC_MESSAGES/cryptopageplugin.mo share/locale/el/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/el/LC_MESSAGES/korganizer_plugins.mo share/locale/el/LC_MESSAGES/messageviewer_application_mstnef_plugin.mo share/locale/el/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/el/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/en_GB/LC_MESSAGES/cryptopageplugin.mo share/locale/en_GB/LC_MESSAGES/customtoolsplugin.mo share/locale/en_GB/LC_MESSAGES/importwizard_plugins.mo share/locale/en_GB/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/en_GB/LC_MESSAGES/kaddressbook_plugins.mo share/locale/en_GB/LC_MESSAGES/kmail_checkbeforedeleting_plugins.mo share/locale/en_GB/LC_MESSAGES/kmail_editor_plugins.mo share/locale/en_GB/LC_MESSAGES/kmail_editorconvertertext_plugins.mo share/locale/en_GB/LC_MESSAGES/kmail_editorgrammar_plugins.mo share/locale/en_GB/LC_MESSAGES/kmail_editorinit_plugins.mo share/locale/en_GB/LC_MESSAGES/kmail_editorsendcheck_plugins.mo share/locale/en_GB/LC_MESSAGES/kmail_plugins.mo share/locale/en_GB/LC_MESSAGES/kmailtransport_plugins.mo share/locale/en_GB/LC_MESSAGES/korganizer_plugins.mo share/locale/en_GB/LC_MESSAGES/messageviewer_application_gnupgwks_plugin.mo share/locale/en_GB/LC_MESSAGES/messageviewer_application_mstnef_plugin.mo share/locale/en_GB/LC_MESSAGES/messageviewer_bodypartformatter_pkpass.mo share/locale/en_GB/LC_MESSAGES/messageviewer_semantic_plugin.mo share/locale/en_GB/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/en_GB/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/en_GB/LC_MESSAGES/messageviewerconfiguresettingsplugins.mo share/locale/en_GB/LC_MESSAGES/messageviewerheaderplugins.mo share/locale/en_GB/LC_MESSAGES/messageviewerplugins.mo share/locale/en_GB/LC_MESSAGES/sieveeditor_plugins.mo share/locale/en_GB/LC_MESSAGES/webengineurlinterceptor.mo share/locale/eo/LC_MESSAGES/cryptopageplugin.mo share/locale/eo/LC_MESSAGES/customtoolsplugin.mo share/locale/eo/LC_MESSAGES/importwizard_plugins.mo share/locale/eo/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/eo/LC_MESSAGES/kaddressbook_plugins.mo share/locale/eo/LC_MESSAGES/kmail_checkbeforedeleting_plugins.mo share/locale/eo/LC_MESSAGES/kmail_editor_plugins.mo share/locale/eo/LC_MESSAGES/kmail_editorconvertertext_plugins.mo share/locale/eo/LC_MESSAGES/kmail_editorgrammar_plugins.mo share/locale/eo/LC_MESSAGES/kmail_editorinit_plugins.mo share/locale/eo/LC_MESSAGES/kmail_editorsendcheck_plugins.mo share/locale/eo/LC_MESSAGES/kmail_plugins.mo share/locale/eo/LC_MESSAGES/kmailtransport_plugins.mo share/locale/eo/LC_MESSAGES/korganizer_plugins.mo share/locale/eo/LC_MESSAGES/messageviewer_application_gnupgwks_plugin.mo share/locale/eo/LC_MESSAGES/messageviewer_application_mstnef_plugin.mo share/locale/eo/LC_MESSAGES/messageviewer_bodypartformatter_pkpass.mo share/locale/eo/LC_MESSAGES/messageviewer_semantic_plugin.mo share/locale/eo/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/eo/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/eo/LC_MESSAGES/messageviewerconfiguresettingsplugins.mo share/locale/eo/LC_MESSAGES/messageviewerheaderplugins.mo share/locale/eo/LC_MESSAGES/messageviewerplugins.mo share/locale/eo/LC_MESSAGES/sieveeditor_plugins.mo share/locale/eo/LC_MESSAGES/webengineurlinterceptor.mo share/locale/es/LC_MESSAGES/cryptopageplugin.mo share/locale/es/LC_MESSAGES/customtoolsplugin.mo share/locale/es/LC_MESSAGES/importwizard_plugins.mo share/locale/es/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/es/LC_MESSAGES/kaddressbook_plugins.mo share/locale/es/LC_MESSAGES/kmail_checkbeforedeleting_plugins.mo share/locale/es/LC_MESSAGES/kmail_editor_plugins.mo share/locale/es/LC_MESSAGES/kmail_editorconvertertext_plugins.mo share/locale/es/LC_MESSAGES/kmail_editorgrammar_plugins.mo share/locale/es/LC_MESSAGES/kmail_editorinit_plugins.mo share/locale/es/LC_MESSAGES/kmail_editorsendcheck_plugins.mo share/locale/es/LC_MESSAGES/kmail_plugins.mo share/locale/es/LC_MESSAGES/kmailtransport_plugins.mo share/locale/es/LC_MESSAGES/korganizer_plugins.mo +share/locale/es/LC_MESSAGES/libpimautogeneratetext.mo share/locale/es/LC_MESSAGES/messageviewer_application_gnupgwks_plugin.mo share/locale/es/LC_MESSAGES/messageviewer_application_mstnef_plugin.mo share/locale/es/LC_MESSAGES/messageviewer_bodypartformatter_pkpass.mo share/locale/es/LC_MESSAGES/messageviewer_semantic_plugin.mo share/locale/es/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/es/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/es/LC_MESSAGES/messageviewerconfiguresettingsplugins.mo share/locale/es/LC_MESSAGES/messageviewerheaderplugins.mo share/locale/es/LC_MESSAGES/messageviewerplugins.mo share/locale/es/LC_MESSAGES/sieveeditor_plugins.mo share/locale/es/LC_MESSAGES/webengineurlinterceptor.mo share/locale/et/LC_MESSAGES/cryptopageplugin.mo share/locale/et/LC_MESSAGES/customtoolsplugin.mo share/locale/et/LC_MESSAGES/importwizard_plugins.mo share/locale/et/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/et/LC_MESSAGES/kaddressbook_plugins.mo share/locale/et/LC_MESSAGES/kmail_editor_plugins.mo share/locale/et/LC_MESSAGES/kmail_editorconvertertext_plugins.mo share/locale/et/LC_MESSAGES/kmail_editorgrammar_plugins.mo share/locale/et/LC_MESSAGES/kmail_editorinit_plugins.mo share/locale/et/LC_MESSAGES/kmail_editorsendcheck_plugins.mo share/locale/et/LC_MESSAGES/kmail_plugins.mo share/locale/et/LC_MESSAGES/kmailtransport_plugins.mo share/locale/et/LC_MESSAGES/korganizer_plugins.mo share/locale/et/LC_MESSAGES/messageviewer_application_gnupgwks_plugin.mo share/locale/et/LC_MESSAGES/messageviewer_application_mstnef_plugin.mo share/locale/et/LC_MESSAGES/messageviewer_bodypartformatter_pkpass.mo share/locale/et/LC_MESSAGES/messageviewer_semantic_plugin.mo share/locale/et/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/et/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/et/LC_MESSAGES/messageviewerconfiguresettingsplugins.mo share/locale/et/LC_MESSAGES/messageviewerheaderplugins.mo share/locale/et/LC_MESSAGES/messageviewerplugins.mo share/locale/et/LC_MESSAGES/sieveeditor_plugins.mo share/locale/et/LC_MESSAGES/webengineurlinterceptor.mo share/locale/eu/LC_MESSAGES/cryptopageplugin.mo share/locale/eu/LC_MESSAGES/customtoolsplugin.mo share/locale/eu/LC_MESSAGES/importwizard_plugins.mo share/locale/eu/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/eu/LC_MESSAGES/kaddressbook_plugins.mo share/locale/eu/LC_MESSAGES/kmail_checkbeforedeleting_plugins.mo share/locale/eu/LC_MESSAGES/kmail_editor_plugins.mo share/locale/eu/LC_MESSAGES/kmail_editorconvertertext_plugins.mo share/locale/eu/LC_MESSAGES/kmail_editorgrammar_plugins.mo share/locale/eu/LC_MESSAGES/kmail_editorinit_plugins.mo share/locale/eu/LC_MESSAGES/kmail_editorsendcheck_plugins.mo share/locale/eu/LC_MESSAGES/kmail_plugins.mo share/locale/eu/LC_MESSAGES/kmailtransport_plugins.mo share/locale/eu/LC_MESSAGES/korganizer_plugins.mo +share/locale/eu/LC_MESSAGES/libpimautogeneratetext.mo share/locale/eu/LC_MESSAGES/messageviewer_application_gnupgwks_plugin.mo share/locale/eu/LC_MESSAGES/messageviewer_application_mstnef_plugin.mo share/locale/eu/LC_MESSAGES/messageviewer_bodypartformatter_pkpass.mo share/locale/eu/LC_MESSAGES/messageviewer_semantic_plugin.mo share/locale/eu/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/eu/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/eu/LC_MESSAGES/messageviewerconfiguresettingsplugins.mo share/locale/eu/LC_MESSAGES/messageviewerheaderplugins.mo share/locale/eu/LC_MESSAGES/messageviewerplugins.mo share/locale/eu/LC_MESSAGES/sieveeditor_plugins.mo share/locale/eu/LC_MESSAGES/webengineurlinterceptor.mo share/locale/fa/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/fa/LC_MESSAGES/korganizer_plugins.mo share/locale/fa/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/fa/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/fi/LC_MESSAGES/cryptopageplugin.mo share/locale/fi/LC_MESSAGES/customtoolsplugin.mo share/locale/fi/LC_MESSAGES/importwizard_plugins.mo share/locale/fi/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/fi/LC_MESSAGES/kaddressbook_plugins.mo share/locale/fi/LC_MESSAGES/kmail_checkbeforedeleting_plugins.mo share/locale/fi/LC_MESSAGES/kmail_editor_plugins.mo share/locale/fi/LC_MESSAGES/kmail_editorconvertertext_plugins.mo share/locale/fi/LC_MESSAGES/kmail_editorgrammar_plugins.mo share/locale/fi/LC_MESSAGES/kmail_editorinit_plugins.mo share/locale/fi/LC_MESSAGES/kmail_editorsendcheck_plugins.mo share/locale/fi/LC_MESSAGES/kmail_plugins.mo share/locale/fi/LC_MESSAGES/kmailtransport_plugins.mo share/locale/fi/LC_MESSAGES/korganizer_plugins.mo +share/locale/fi/LC_MESSAGES/libpimautogeneratetext.mo share/locale/fi/LC_MESSAGES/messageviewer_application_gnupgwks_plugin.mo share/locale/fi/LC_MESSAGES/messageviewer_application_mstnef_plugin.mo share/locale/fi/LC_MESSAGES/messageviewer_bodypartformatter_pkpass.mo share/locale/fi/LC_MESSAGES/messageviewer_semantic_plugin.mo share/locale/fi/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/fi/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/fi/LC_MESSAGES/messageviewerconfiguresettingsplugins.mo share/locale/fi/LC_MESSAGES/messageviewerheaderplugins.mo share/locale/fi/LC_MESSAGES/messageviewerplugins.mo share/locale/fi/LC_MESSAGES/sieveeditor_plugins.mo share/locale/fi/LC_MESSAGES/webengineurlinterceptor.mo share/locale/fr/LC_MESSAGES/cryptopageplugin.mo share/locale/fr/LC_MESSAGES/customtoolsplugin.mo share/locale/fr/LC_MESSAGES/importwizard_plugins.mo share/locale/fr/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/fr/LC_MESSAGES/kaddressbook_plugins.mo share/locale/fr/LC_MESSAGES/kmail_checkbeforedeleting_plugins.mo share/locale/fr/LC_MESSAGES/kmail_editor_plugins.mo share/locale/fr/LC_MESSAGES/kmail_editorconvertertext_plugins.mo share/locale/fr/LC_MESSAGES/kmail_editorgrammar_plugins.mo share/locale/fr/LC_MESSAGES/kmail_editorinit_plugins.mo share/locale/fr/LC_MESSAGES/kmail_editorsendcheck_plugins.mo share/locale/fr/LC_MESSAGES/kmail_plugins.mo share/locale/fr/LC_MESSAGES/kmailtransport_plugins.mo share/locale/fr/LC_MESSAGES/korganizer_plugins.mo +share/locale/fr/LC_MESSAGES/libpimautogeneratetext.mo share/locale/fr/LC_MESSAGES/messageviewer_application_gnupgwks_plugin.mo share/locale/fr/LC_MESSAGES/messageviewer_application_mstnef_plugin.mo share/locale/fr/LC_MESSAGES/messageviewer_bodypartformatter_pkpass.mo share/locale/fr/LC_MESSAGES/messageviewer_semantic_plugin.mo share/locale/fr/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/fr/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/fr/LC_MESSAGES/messageviewerconfiguresettingsplugins.mo share/locale/fr/LC_MESSAGES/messageviewerheaderplugins.mo share/locale/fr/LC_MESSAGES/messageviewerplugins.mo share/locale/fr/LC_MESSAGES/sieveeditor_plugins.mo share/locale/fr/LC_MESSAGES/webengineurlinterceptor.mo share/locale/fy/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/fy/LC_MESSAGES/korganizer_plugins.mo share/locale/fy/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/fy/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/ga/LC_MESSAGES/cryptopageplugin.mo share/locale/ga/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/ga/LC_MESSAGES/korganizer_plugins.mo share/locale/ga/LC_MESSAGES/messageviewer_application_mstnef_plugin.mo share/locale/ga/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/ga/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/gl/LC_MESSAGES/cryptopageplugin.mo share/locale/gl/LC_MESSAGES/customtoolsplugin.mo share/locale/gl/LC_MESSAGES/importwizard_plugins.mo share/locale/gl/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/gl/LC_MESSAGES/kaddressbook_plugins.mo share/locale/gl/LC_MESSAGES/kmail_checkbeforedeleting_plugins.mo share/locale/gl/LC_MESSAGES/kmail_editor_plugins.mo share/locale/gl/LC_MESSAGES/kmail_editorconvertertext_plugins.mo share/locale/gl/LC_MESSAGES/kmail_editorgrammar_plugins.mo share/locale/gl/LC_MESSAGES/kmail_editorinit_plugins.mo share/locale/gl/LC_MESSAGES/kmail_editorsendcheck_plugins.mo share/locale/gl/LC_MESSAGES/kmail_plugins.mo share/locale/gl/LC_MESSAGES/kmailtransport_plugins.mo share/locale/gl/LC_MESSAGES/korganizer_plugins.mo +share/locale/gl/LC_MESSAGES/libpimautogeneratetext.mo share/locale/gl/LC_MESSAGES/messageviewer_application_gnupgwks_plugin.mo share/locale/gl/LC_MESSAGES/messageviewer_application_mstnef_plugin.mo share/locale/gl/LC_MESSAGES/messageviewer_bodypartformatter_pkpass.mo share/locale/gl/LC_MESSAGES/messageviewer_semantic_plugin.mo share/locale/gl/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/gl/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/gl/LC_MESSAGES/messageviewerconfiguresettingsplugins.mo share/locale/gl/LC_MESSAGES/messageviewerheaderplugins.mo share/locale/gl/LC_MESSAGES/messageviewerplugins.mo share/locale/gl/LC_MESSAGES/sieveeditor_plugins.mo share/locale/gl/LC_MESSAGES/webengineurlinterceptor.mo share/locale/he/LC_MESSAGES/cryptopageplugin.mo share/locale/he/LC_MESSAGES/customtoolsplugin.mo share/locale/he/LC_MESSAGES/importwizard_plugins.mo share/locale/he/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/he/LC_MESSAGES/kaddressbook_plugins.mo share/locale/he/LC_MESSAGES/kmail_checkbeforedeleting_plugins.mo share/locale/he/LC_MESSAGES/kmail_editor_plugins.mo share/locale/he/LC_MESSAGES/kmail_editorconvertertext_plugins.mo share/locale/he/LC_MESSAGES/kmail_editorgrammar_plugins.mo share/locale/he/LC_MESSAGES/kmail_editorinit_plugins.mo share/locale/he/LC_MESSAGES/kmail_editorsendcheck_plugins.mo share/locale/he/LC_MESSAGES/kmail_plugins.mo share/locale/he/LC_MESSAGES/kmailtransport_plugins.mo share/locale/he/LC_MESSAGES/korganizer_plugins.mo +share/locale/he/LC_MESSAGES/libpimautogeneratetext.mo share/locale/he/LC_MESSAGES/messageviewer_application_gnupgwks_plugin.mo share/locale/he/LC_MESSAGES/messageviewer_application_mstnef_plugin.mo share/locale/he/LC_MESSAGES/messageviewer_bodypartformatter_pkpass.mo share/locale/he/LC_MESSAGES/messageviewer_semantic_plugin.mo share/locale/he/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/he/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/he/LC_MESSAGES/messageviewerconfiguresettingsplugins.mo share/locale/he/LC_MESSAGES/messageviewerheaderplugins.mo share/locale/he/LC_MESSAGES/messageviewerplugins.mo share/locale/he/LC_MESSAGES/sieveeditor_plugins.mo share/locale/he/LC_MESSAGES/webengineurlinterceptor.mo share/locale/hi/LC_MESSAGES/cryptopageplugin.mo share/locale/hi/LC_MESSAGES/customtoolsplugin.mo share/locale/hi/LC_MESSAGES/importwizard_plugins.mo share/locale/hi/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/hi/LC_MESSAGES/kaddressbook_plugins.mo share/locale/hi/LC_MESSAGES/kmail_checkbeforedeleting_plugins.mo share/locale/hi/LC_MESSAGES/kmail_editor_plugins.mo share/locale/hi/LC_MESSAGES/kmail_editorconvertertext_plugins.mo share/locale/hi/LC_MESSAGES/kmail_editorgrammar_plugins.mo share/locale/hi/LC_MESSAGES/kmail_editorinit_plugins.mo share/locale/hi/LC_MESSAGES/kmail_editorsendcheck_plugins.mo share/locale/hi/LC_MESSAGES/kmail_plugins.mo share/locale/hi/LC_MESSAGES/kmailtransport_plugins.mo share/locale/hi/LC_MESSAGES/korganizer_plugins.mo share/locale/hi/LC_MESSAGES/messageviewer_application_gnupgwks_plugin.mo share/locale/hi/LC_MESSAGES/messageviewer_application_mstnef_plugin.mo share/locale/hi/LC_MESSAGES/messageviewer_bodypartformatter_pkpass.mo share/locale/hi/LC_MESSAGES/messageviewer_semantic_plugin.mo share/locale/hi/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/hi/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/hi/LC_MESSAGES/messageviewerconfiguresettingsplugins.mo share/locale/hi/LC_MESSAGES/messageviewerheaderplugins.mo share/locale/hi/LC_MESSAGES/messageviewerplugins.mo share/locale/hi/LC_MESSAGES/sieveeditor_plugins.mo share/locale/hi/LC_MESSAGES/webengineurlinterceptor.mo share/locale/hne/LC_MESSAGES/korganizer_plugins.mo share/locale/hne/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/hne/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/hr/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/hr/LC_MESSAGES/korganizer_plugins.mo share/locale/hsb/LC_MESSAGES/korganizer_plugins.mo share/locale/hu/LC_MESSAGES/cryptopageplugin.mo share/locale/hu/LC_MESSAGES/customtoolsplugin.mo share/locale/hu/LC_MESSAGES/importwizard_plugins.mo share/locale/hu/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/hu/LC_MESSAGES/korganizer_plugins.mo share/locale/hu/LC_MESSAGES/messageviewer_application_mstnef_plugin.mo share/locale/hu/LC_MESSAGES/messageviewer_bodypartformatter_pkpass.mo share/locale/hu/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/hu/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/hu/LC_MESSAGES/webengineurlinterceptor.mo share/locale/ia/LC_MESSAGES/cryptopageplugin.mo share/locale/ia/LC_MESSAGES/customtoolsplugin.mo share/locale/ia/LC_MESSAGES/importwizard_plugins.mo share/locale/ia/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/ia/LC_MESSAGES/kaddressbook_plugins.mo share/locale/ia/LC_MESSAGES/kmail_checkbeforedeleting_plugins.mo share/locale/ia/LC_MESSAGES/kmail_editor_plugins.mo share/locale/ia/LC_MESSAGES/kmail_editorconvertertext_plugins.mo share/locale/ia/LC_MESSAGES/kmail_editorgrammar_plugins.mo share/locale/ia/LC_MESSAGES/kmail_editorinit_plugins.mo share/locale/ia/LC_MESSAGES/kmail_editorsendcheck_plugins.mo share/locale/ia/LC_MESSAGES/kmail_plugins.mo share/locale/ia/LC_MESSAGES/kmailtransport_plugins.mo share/locale/ia/LC_MESSAGES/korganizer_plugins.mo +share/locale/ia/LC_MESSAGES/libpimautogeneratetext.mo share/locale/ia/LC_MESSAGES/messageviewer_application_gnupgwks_plugin.mo share/locale/ia/LC_MESSAGES/messageviewer_application_mstnef_plugin.mo share/locale/ia/LC_MESSAGES/messageviewer_bodypartformatter_pkpass.mo share/locale/ia/LC_MESSAGES/messageviewer_semantic_plugin.mo share/locale/ia/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/ia/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/ia/LC_MESSAGES/messageviewerconfiguresettingsplugins.mo share/locale/ia/LC_MESSAGES/messageviewerheaderplugins.mo share/locale/ia/LC_MESSAGES/messageviewerplugins.mo share/locale/ia/LC_MESSAGES/sieveeditor_plugins.mo share/locale/ia/LC_MESSAGES/webengineurlinterceptor.mo share/locale/is/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/is/LC_MESSAGES/korganizer_plugins.mo share/locale/is/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/is/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/it/LC_MESSAGES/cryptopageplugin.mo share/locale/it/LC_MESSAGES/customtoolsplugin.mo share/locale/it/LC_MESSAGES/importwizard_plugins.mo share/locale/it/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/it/LC_MESSAGES/kaddressbook_plugins.mo share/locale/it/LC_MESSAGES/kmail_checkbeforedeleting_plugins.mo share/locale/it/LC_MESSAGES/kmail_editor_plugins.mo share/locale/it/LC_MESSAGES/kmail_editorconvertertext_plugins.mo share/locale/it/LC_MESSAGES/kmail_editorgrammar_plugins.mo share/locale/it/LC_MESSAGES/kmail_editorinit_plugins.mo share/locale/it/LC_MESSAGES/kmail_editorsendcheck_plugins.mo share/locale/it/LC_MESSAGES/kmail_plugins.mo share/locale/it/LC_MESSAGES/kmailtransport_plugins.mo share/locale/it/LC_MESSAGES/korganizer_plugins.mo +share/locale/it/LC_MESSAGES/libpimautogeneratetext.mo share/locale/it/LC_MESSAGES/messageviewer_application_gnupgwks_plugin.mo share/locale/it/LC_MESSAGES/messageviewer_application_mstnef_plugin.mo share/locale/it/LC_MESSAGES/messageviewer_bodypartformatter_pkpass.mo share/locale/it/LC_MESSAGES/messageviewer_semantic_plugin.mo share/locale/it/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/it/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/it/LC_MESSAGES/messageviewerconfiguresettingsplugins.mo share/locale/it/LC_MESSAGES/messageviewerheaderplugins.mo share/locale/it/LC_MESSAGES/messageviewerplugins.mo share/locale/it/LC_MESSAGES/sieveeditor_plugins.mo share/locale/it/LC_MESSAGES/webengineurlinterceptor.mo share/locale/ja/LC_MESSAGES/cryptopageplugin.mo share/locale/ja/LC_MESSAGES/customtoolsplugin.mo share/locale/ja/LC_MESSAGES/importwizard_plugins.mo share/locale/ja/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/ja/LC_MESSAGES/kaddressbook_plugins.mo share/locale/ja/LC_MESSAGES/kmail_checkbeforedeleting_plugins.mo share/locale/ja/LC_MESSAGES/kmail_editor_plugins.mo share/locale/ja/LC_MESSAGES/kmail_editorconvertertext_plugins.mo share/locale/ja/LC_MESSAGES/kmail_editorgrammar_plugins.mo share/locale/ja/LC_MESSAGES/kmail_editorinit_plugins.mo share/locale/ja/LC_MESSAGES/kmail_editorsendcheck_plugins.mo share/locale/ja/LC_MESSAGES/kmail_plugins.mo share/locale/ja/LC_MESSAGES/kmailtransport_plugins.mo share/locale/ja/LC_MESSAGES/korganizer_plugins.mo share/locale/ja/LC_MESSAGES/messageviewer_application_gnupgwks_plugin.mo share/locale/ja/LC_MESSAGES/messageviewer_application_mstnef_plugin.mo share/locale/ja/LC_MESSAGES/messageviewer_bodypartformatter_pkpass.mo share/locale/ja/LC_MESSAGES/messageviewer_semantic_plugin.mo share/locale/ja/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/ja/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/ja/LC_MESSAGES/messageviewerconfiguresettingsplugins.mo share/locale/ja/LC_MESSAGES/messageviewerheaderplugins.mo share/locale/ja/LC_MESSAGES/messageviewerplugins.mo share/locale/ja/LC_MESSAGES/sieveeditor_plugins.mo share/locale/ja/LC_MESSAGES/webengineurlinterceptor.mo share/locale/ka/LC_MESSAGES/cryptopageplugin.mo share/locale/ka/LC_MESSAGES/customtoolsplugin.mo share/locale/ka/LC_MESSAGES/importwizard_plugins.mo share/locale/ka/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/ka/LC_MESSAGES/kaddressbook_plugins.mo share/locale/ka/LC_MESSAGES/kmail_checkbeforedeleting_plugins.mo share/locale/ka/LC_MESSAGES/kmail_editor_plugins.mo share/locale/ka/LC_MESSAGES/kmail_editorconvertertext_plugins.mo share/locale/ka/LC_MESSAGES/kmail_editorgrammar_plugins.mo share/locale/ka/LC_MESSAGES/kmail_editorinit_plugins.mo share/locale/ka/LC_MESSAGES/kmail_editorsendcheck_plugins.mo share/locale/ka/LC_MESSAGES/kmail_plugins.mo share/locale/ka/LC_MESSAGES/kmailtransport_plugins.mo share/locale/ka/LC_MESSAGES/korganizer_plugins.mo +share/locale/ka/LC_MESSAGES/libpimautogeneratetext.mo share/locale/ka/LC_MESSAGES/messageviewer_application_gnupgwks_plugin.mo share/locale/ka/LC_MESSAGES/messageviewer_application_mstnef_plugin.mo share/locale/ka/LC_MESSAGES/messageviewer_bodypartformatter_pkpass.mo share/locale/ka/LC_MESSAGES/messageviewer_semantic_plugin.mo share/locale/ka/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/ka/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/ka/LC_MESSAGES/messageviewerconfiguresettingsplugins.mo share/locale/ka/LC_MESSAGES/messageviewerheaderplugins.mo share/locale/ka/LC_MESSAGES/messageviewerplugins.mo share/locale/ka/LC_MESSAGES/sieveeditor_plugins.mo share/locale/ka/LC_MESSAGES/webengineurlinterceptor.mo share/locale/kk/LC_MESSAGES/cryptopageplugin.mo share/locale/kk/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/kk/LC_MESSAGES/korganizer_plugins.mo share/locale/kk/LC_MESSAGES/messageviewer_application_mstnef_plugin.mo share/locale/kk/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/kk/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/km/LC_MESSAGES/cryptopageplugin.mo share/locale/km/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/km/LC_MESSAGES/korganizer_plugins.mo share/locale/km/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/km/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/ko/LC_MESSAGES/cryptopageplugin.mo share/locale/ko/LC_MESSAGES/customtoolsplugin.mo share/locale/ko/LC_MESSAGES/importwizard_plugins.mo share/locale/ko/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/ko/LC_MESSAGES/kaddressbook_plugins.mo share/locale/ko/LC_MESSAGES/kmail_checkbeforedeleting_plugins.mo share/locale/ko/LC_MESSAGES/kmail_editor_plugins.mo share/locale/ko/LC_MESSAGES/kmail_editorconvertertext_plugins.mo share/locale/ko/LC_MESSAGES/kmail_editorgrammar_plugins.mo share/locale/ko/LC_MESSAGES/kmail_editorinit_plugins.mo share/locale/ko/LC_MESSAGES/kmail_editorsendcheck_plugins.mo share/locale/ko/LC_MESSAGES/kmail_plugins.mo share/locale/ko/LC_MESSAGES/kmailtransport_plugins.mo share/locale/ko/LC_MESSAGES/korganizer_plugins.mo +share/locale/ko/LC_MESSAGES/libpimautogeneratetext.mo share/locale/ko/LC_MESSAGES/messageviewer_application_gnupgwks_plugin.mo share/locale/ko/LC_MESSAGES/messageviewer_application_mstnef_plugin.mo share/locale/ko/LC_MESSAGES/messageviewer_bodypartformatter_pkpass.mo share/locale/ko/LC_MESSAGES/messageviewer_semantic_plugin.mo share/locale/ko/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/ko/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/ko/LC_MESSAGES/messageviewerconfiguresettingsplugins.mo share/locale/ko/LC_MESSAGES/messageviewerheaderplugins.mo share/locale/ko/LC_MESSAGES/messageviewerplugins.mo share/locale/ko/LC_MESSAGES/sieveeditor_plugins.mo share/locale/ko/LC_MESSAGES/webengineurlinterceptor.mo share/locale/lt/LC_MESSAGES/cryptopageplugin.mo share/locale/lt/LC_MESSAGES/customtoolsplugin.mo share/locale/lt/LC_MESSAGES/importwizard_plugins.mo share/locale/lt/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/lt/LC_MESSAGES/kaddressbook_plugins.mo share/locale/lt/LC_MESSAGES/kmail_checkbeforedeleting_plugins.mo share/locale/lt/LC_MESSAGES/kmail_editor_plugins.mo share/locale/lt/LC_MESSAGES/kmail_editorconvertertext_plugins.mo share/locale/lt/LC_MESSAGES/kmail_editorgrammar_plugins.mo share/locale/lt/LC_MESSAGES/kmail_editorinit_plugins.mo share/locale/lt/LC_MESSAGES/kmail_editorsendcheck_plugins.mo share/locale/lt/LC_MESSAGES/kmail_plugins.mo share/locale/lt/LC_MESSAGES/kmailtransport_plugins.mo share/locale/lt/LC_MESSAGES/korganizer_plugins.mo share/locale/lt/LC_MESSAGES/messageviewer_application_gnupgwks_plugin.mo share/locale/lt/LC_MESSAGES/messageviewer_application_mstnef_plugin.mo share/locale/lt/LC_MESSAGES/messageviewer_bodypartformatter_pkpass.mo share/locale/lt/LC_MESSAGES/messageviewer_semantic_plugin.mo share/locale/lt/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/lt/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/lt/LC_MESSAGES/messageviewerconfiguresettingsplugins.mo share/locale/lt/LC_MESSAGES/messageviewerheaderplugins.mo share/locale/lt/LC_MESSAGES/messageviewerplugins.mo share/locale/lt/LC_MESSAGES/sieveeditor_plugins.mo share/locale/lt/LC_MESSAGES/webengineurlinterceptor.mo share/locale/lv/LC_MESSAGES/cryptopageplugin.mo share/locale/lv/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/lv/LC_MESSAGES/korganizer_plugins.mo share/locale/lv/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/lv/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/mai/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/mai/LC_MESSAGES/korganizer_plugins.mo share/locale/mk/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/mk/LC_MESSAGES/korganizer_plugins.mo share/locale/mk/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/mk/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/mr/LC_MESSAGES/cryptopageplugin.mo share/locale/mr/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/mr/LC_MESSAGES/korganizer_plugins.mo share/locale/mr/LC_MESSAGES/messageviewer_application_mstnef_plugin.mo share/locale/mr/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/mr/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/ms/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/ms/LC_MESSAGES/korganizer_plugins.mo share/locale/ms/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/ms/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/nb/LC_MESSAGES/cryptopageplugin.mo share/locale/nb/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/nb/LC_MESSAGES/korganizer_plugins.mo share/locale/nb/LC_MESSAGES/messageviewer_application_mstnef_plugin.mo share/locale/nb/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/nb/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/nds/LC_MESSAGES/cryptopageplugin.mo share/locale/nds/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/nds/LC_MESSAGES/korganizer_plugins.mo share/locale/nds/LC_MESSAGES/messageviewer_application_mstnef_plugin.mo share/locale/nds/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/nds/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/ne/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/ne/LC_MESSAGES/korganizer_plugins.mo share/locale/ne/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/ne/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/nl/LC_MESSAGES/cryptopageplugin.mo share/locale/nl/LC_MESSAGES/customtoolsplugin.mo share/locale/nl/LC_MESSAGES/importwizard_plugins.mo share/locale/nl/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/nl/LC_MESSAGES/kaddressbook_plugins.mo share/locale/nl/LC_MESSAGES/kmail_checkbeforedeleting_plugins.mo share/locale/nl/LC_MESSAGES/kmail_editor_plugins.mo share/locale/nl/LC_MESSAGES/kmail_editorconvertertext_plugins.mo share/locale/nl/LC_MESSAGES/kmail_editorgrammar_plugins.mo share/locale/nl/LC_MESSAGES/kmail_editorinit_plugins.mo share/locale/nl/LC_MESSAGES/kmail_editorsendcheck_plugins.mo share/locale/nl/LC_MESSAGES/kmail_plugins.mo share/locale/nl/LC_MESSAGES/kmailtransport_plugins.mo share/locale/nl/LC_MESSAGES/korganizer_plugins.mo +share/locale/nl/LC_MESSAGES/libpimautogeneratetext.mo share/locale/nl/LC_MESSAGES/messageviewer_application_gnupgwks_plugin.mo share/locale/nl/LC_MESSAGES/messageviewer_application_mstnef_plugin.mo share/locale/nl/LC_MESSAGES/messageviewer_bodypartformatter_pkpass.mo share/locale/nl/LC_MESSAGES/messageviewer_semantic_plugin.mo share/locale/nl/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/nl/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/nl/LC_MESSAGES/messageviewerconfiguresettingsplugins.mo share/locale/nl/LC_MESSAGES/messageviewerheaderplugins.mo share/locale/nl/LC_MESSAGES/messageviewerplugins.mo share/locale/nl/LC_MESSAGES/sieveeditor_plugins.mo share/locale/nl/LC_MESSAGES/webengineurlinterceptor.mo share/locale/nn/LC_MESSAGES/cryptopageplugin.mo share/locale/nn/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/nn/LC_MESSAGES/korganizer_plugins.mo share/locale/nn/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/nn/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/pa/LC_MESSAGES/cryptopageplugin.mo share/locale/pa/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/pa/LC_MESSAGES/korganizer_plugins.mo share/locale/pa/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/pa/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/pl/LC_MESSAGES/cryptopageplugin.mo share/locale/pl/LC_MESSAGES/customtoolsplugin.mo share/locale/pl/LC_MESSAGES/importwizard_plugins.mo share/locale/pl/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/pl/LC_MESSAGES/kaddressbook_plugins.mo share/locale/pl/LC_MESSAGES/kmail_checkbeforedeleting_plugins.mo share/locale/pl/LC_MESSAGES/kmail_editor_plugins.mo share/locale/pl/LC_MESSAGES/kmail_editorconvertertext_plugins.mo share/locale/pl/LC_MESSAGES/kmail_editorgrammar_plugins.mo share/locale/pl/LC_MESSAGES/kmail_editorinit_plugins.mo share/locale/pl/LC_MESSAGES/kmail_editorsendcheck_plugins.mo share/locale/pl/LC_MESSAGES/kmail_plugins.mo share/locale/pl/LC_MESSAGES/kmailtransport_plugins.mo share/locale/pl/LC_MESSAGES/korganizer_plugins.mo +share/locale/pl/LC_MESSAGES/libpimautogeneratetext.mo share/locale/pl/LC_MESSAGES/messageviewer_application_gnupgwks_plugin.mo share/locale/pl/LC_MESSAGES/messageviewer_application_mstnef_plugin.mo share/locale/pl/LC_MESSAGES/messageviewer_bodypartformatter_pkpass.mo share/locale/pl/LC_MESSAGES/messageviewer_semantic_plugin.mo share/locale/pl/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/pl/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/pl/LC_MESSAGES/messageviewerconfiguresettingsplugins.mo share/locale/pl/LC_MESSAGES/messageviewerheaderplugins.mo share/locale/pl/LC_MESSAGES/messageviewerplugins.mo share/locale/pl/LC_MESSAGES/sieveeditor_plugins.mo share/locale/pl/LC_MESSAGES/webengineurlinterceptor.mo share/locale/pt/LC_MESSAGES/cryptopageplugin.mo share/locale/pt/LC_MESSAGES/customtoolsplugin.mo share/locale/pt/LC_MESSAGES/importwizard_plugins.mo share/locale/pt/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/pt/LC_MESSAGES/kaddressbook_plugins.mo share/locale/pt/LC_MESSAGES/kmail_checkbeforedeleting_plugins.mo share/locale/pt/LC_MESSAGES/kmail_editor_plugins.mo share/locale/pt/LC_MESSAGES/kmail_editorconvertertext_plugins.mo share/locale/pt/LC_MESSAGES/kmail_editorgrammar_plugins.mo share/locale/pt/LC_MESSAGES/kmail_editorinit_plugins.mo share/locale/pt/LC_MESSAGES/kmail_editorsendcheck_plugins.mo share/locale/pt/LC_MESSAGES/kmail_plugins.mo share/locale/pt/LC_MESSAGES/kmailtransport_plugins.mo share/locale/pt/LC_MESSAGES/korganizer_plugins.mo share/locale/pt/LC_MESSAGES/messageviewer_application_gnupgwks_plugin.mo share/locale/pt/LC_MESSAGES/messageviewer_application_mstnef_plugin.mo share/locale/pt/LC_MESSAGES/messageviewer_bodypartformatter_pkpass.mo share/locale/pt/LC_MESSAGES/messageviewer_semantic_plugin.mo share/locale/pt/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/pt/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/pt/LC_MESSAGES/messageviewerconfiguresettingsplugins.mo share/locale/pt/LC_MESSAGES/messageviewerheaderplugins.mo share/locale/pt/LC_MESSAGES/messageviewerplugins.mo share/locale/pt/LC_MESSAGES/sieveeditor_plugins.mo share/locale/pt/LC_MESSAGES/webengineurlinterceptor.mo share/locale/pt_BR/LC_MESSAGES/cryptopageplugin.mo share/locale/pt_BR/LC_MESSAGES/customtoolsplugin.mo share/locale/pt_BR/LC_MESSAGES/importwizard_plugins.mo share/locale/pt_BR/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/pt_BR/LC_MESSAGES/kaddressbook_plugins.mo share/locale/pt_BR/LC_MESSAGES/kmail_checkbeforedeleting_plugins.mo share/locale/pt_BR/LC_MESSAGES/kmail_editor_plugins.mo share/locale/pt_BR/LC_MESSAGES/kmail_editorconvertertext_plugins.mo share/locale/pt_BR/LC_MESSAGES/kmail_editorgrammar_plugins.mo share/locale/pt_BR/LC_MESSAGES/kmail_editorinit_plugins.mo share/locale/pt_BR/LC_MESSAGES/kmail_editorsendcheck_plugins.mo share/locale/pt_BR/LC_MESSAGES/kmail_plugins.mo share/locale/pt_BR/LC_MESSAGES/kmailtransport_plugins.mo share/locale/pt_BR/LC_MESSAGES/korganizer_plugins.mo +share/locale/pt_BR/LC_MESSAGES/libpimautogeneratetext.mo share/locale/pt_BR/LC_MESSAGES/messageviewer_application_gnupgwks_plugin.mo share/locale/pt_BR/LC_MESSAGES/messageviewer_application_mstnef_plugin.mo share/locale/pt_BR/LC_MESSAGES/messageviewer_bodypartformatter_pkpass.mo share/locale/pt_BR/LC_MESSAGES/messageviewer_semantic_plugin.mo share/locale/pt_BR/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/pt_BR/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/pt_BR/LC_MESSAGES/messageviewerconfiguresettingsplugins.mo share/locale/pt_BR/LC_MESSAGES/messageviewerheaderplugins.mo share/locale/pt_BR/LC_MESSAGES/messageviewerplugins.mo share/locale/pt_BR/LC_MESSAGES/sieveeditor_plugins.mo share/locale/pt_BR/LC_MESSAGES/webengineurlinterceptor.mo share/locale/ro/LC_MESSAGES/cryptopageplugin.mo share/locale/ro/LC_MESSAGES/customtoolsplugin.mo share/locale/ro/LC_MESSAGES/importwizard_plugins.mo share/locale/ro/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/ro/LC_MESSAGES/korganizer_plugins.mo share/locale/ro/LC_MESSAGES/messageviewer_application_mstnef_plugin.mo share/locale/ro/LC_MESSAGES/messageviewer_bodypartformatter_pkpass.mo share/locale/ro/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/ro/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/ru/LC_MESSAGES/cryptopageplugin.mo share/locale/ru/LC_MESSAGES/customtoolsplugin.mo share/locale/ru/LC_MESSAGES/importwizard_plugins.mo share/locale/ru/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/ru/LC_MESSAGES/kaddressbook_plugins.mo share/locale/ru/LC_MESSAGES/kmail_checkbeforedeleting_plugins.mo share/locale/ru/LC_MESSAGES/kmail_editor_plugins.mo share/locale/ru/LC_MESSAGES/kmail_editorconvertertext_plugins.mo share/locale/ru/LC_MESSAGES/kmail_editorgrammar_plugins.mo share/locale/ru/LC_MESSAGES/kmail_editorinit_plugins.mo share/locale/ru/LC_MESSAGES/kmail_editorsendcheck_plugins.mo share/locale/ru/LC_MESSAGES/kmail_plugins.mo share/locale/ru/LC_MESSAGES/kmailtransport_plugins.mo share/locale/ru/LC_MESSAGES/korganizer_plugins.mo share/locale/ru/LC_MESSAGES/messageviewer_application_gnupgwks_plugin.mo share/locale/ru/LC_MESSAGES/messageviewer_application_mstnef_plugin.mo share/locale/ru/LC_MESSAGES/messageviewer_bodypartformatter_pkpass.mo share/locale/ru/LC_MESSAGES/messageviewer_semantic_plugin.mo share/locale/ru/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/ru/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/ru/LC_MESSAGES/messageviewerconfiguresettingsplugins.mo share/locale/ru/LC_MESSAGES/messageviewerheaderplugins.mo share/locale/ru/LC_MESSAGES/messageviewerplugins.mo share/locale/ru/LC_MESSAGES/sieveeditor_plugins.mo share/locale/ru/LC_MESSAGES/webengineurlinterceptor.mo share/locale/sa/LC_MESSAGES/cryptopageplugin.mo share/locale/sa/LC_MESSAGES/customtoolsplugin.mo share/locale/sa/LC_MESSAGES/importwizard_plugins.mo share/locale/sa/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/sa/LC_MESSAGES/kaddressbook_plugins.mo share/locale/sa/LC_MESSAGES/kmail_checkbeforedeleting_plugins.mo share/locale/sa/LC_MESSAGES/kmail_editor_plugins.mo share/locale/sa/LC_MESSAGES/kmail_editorconvertertext_plugins.mo share/locale/sa/LC_MESSAGES/kmail_editorgrammar_plugins.mo share/locale/sa/LC_MESSAGES/kmail_editorinit_plugins.mo share/locale/sa/LC_MESSAGES/kmail_editorsendcheck_plugins.mo share/locale/sa/LC_MESSAGES/kmail_plugins.mo share/locale/sa/LC_MESSAGES/kmailtransport_plugins.mo share/locale/sa/LC_MESSAGES/korganizer_plugins.mo share/locale/sa/LC_MESSAGES/messageviewer_application_gnupgwks_plugin.mo share/locale/sa/LC_MESSAGES/messageviewer_application_mstnef_plugin.mo share/locale/sa/LC_MESSAGES/messageviewer_bodypartformatter_pkpass.mo share/locale/sa/LC_MESSAGES/messageviewer_semantic_plugin.mo share/locale/sa/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/sa/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/sa/LC_MESSAGES/messageviewerconfiguresettingsplugins.mo share/locale/sa/LC_MESSAGES/messageviewerheaderplugins.mo share/locale/sa/LC_MESSAGES/messageviewerplugins.mo share/locale/sa/LC_MESSAGES/sieveeditor_plugins.mo share/locale/sa/LC_MESSAGES/webengineurlinterceptor.mo share/locale/se/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/se/LC_MESSAGES/korganizer_plugins.mo share/locale/se/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/se/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/sk/LC_MESSAGES/cryptopageplugin.mo share/locale/sk/LC_MESSAGES/customtoolsplugin.mo share/locale/sk/LC_MESSAGES/importwizard_plugins.mo share/locale/sk/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/sk/LC_MESSAGES/kaddressbook_plugins.mo share/locale/sk/LC_MESSAGES/kmail_checkbeforedeleting_plugins.mo share/locale/sk/LC_MESSAGES/kmail_editor_plugins.mo share/locale/sk/LC_MESSAGES/kmail_editorconvertertext_plugins.mo share/locale/sk/LC_MESSAGES/kmail_editorgrammar_plugins.mo share/locale/sk/LC_MESSAGES/kmail_editorinit_plugins.mo share/locale/sk/LC_MESSAGES/kmail_editorsendcheck_plugins.mo share/locale/sk/LC_MESSAGES/kmail_plugins.mo share/locale/sk/LC_MESSAGES/kmailtransport_plugins.mo share/locale/sk/LC_MESSAGES/korganizer_plugins.mo share/locale/sk/LC_MESSAGES/messageviewer_application_gnupgwks_plugin.mo share/locale/sk/LC_MESSAGES/messageviewer_application_mstnef_plugin.mo share/locale/sk/LC_MESSAGES/messageviewer_bodypartformatter_pkpass.mo share/locale/sk/LC_MESSAGES/messageviewer_semantic_plugin.mo share/locale/sk/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/sk/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/sk/LC_MESSAGES/messageviewerconfiguresettingsplugins.mo share/locale/sk/LC_MESSAGES/messageviewerheaderplugins.mo share/locale/sk/LC_MESSAGES/messageviewerplugins.mo share/locale/sk/LC_MESSAGES/sieveeditor_plugins.mo share/locale/sk/LC_MESSAGES/webengineurlinterceptor.mo share/locale/sl/LC_MESSAGES/cryptopageplugin.mo share/locale/sl/LC_MESSAGES/customtoolsplugin.mo share/locale/sl/LC_MESSAGES/importwizard_plugins.mo share/locale/sl/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/sl/LC_MESSAGES/kaddressbook_plugins.mo share/locale/sl/LC_MESSAGES/kmail_checkbeforedeleting_plugins.mo share/locale/sl/LC_MESSAGES/kmail_editor_plugins.mo share/locale/sl/LC_MESSAGES/kmail_editorconvertertext_plugins.mo share/locale/sl/LC_MESSAGES/kmail_editorgrammar_plugins.mo share/locale/sl/LC_MESSAGES/kmail_editorinit_plugins.mo share/locale/sl/LC_MESSAGES/kmail_editorsendcheck_plugins.mo share/locale/sl/LC_MESSAGES/kmail_plugins.mo share/locale/sl/LC_MESSAGES/kmailtransport_plugins.mo share/locale/sl/LC_MESSAGES/korganizer_plugins.mo +share/locale/sl/LC_MESSAGES/libpimautogeneratetext.mo share/locale/sl/LC_MESSAGES/messageviewer_application_gnupgwks_plugin.mo share/locale/sl/LC_MESSAGES/messageviewer_application_mstnef_plugin.mo share/locale/sl/LC_MESSAGES/messageviewer_bodypartformatter_pkpass.mo share/locale/sl/LC_MESSAGES/messageviewer_semantic_plugin.mo share/locale/sl/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/sl/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/sl/LC_MESSAGES/messageviewerconfiguresettingsplugins.mo share/locale/sl/LC_MESSAGES/messageviewerheaderplugins.mo share/locale/sl/LC_MESSAGES/messageviewerplugins.mo share/locale/sl/LC_MESSAGES/sieveeditor_plugins.mo share/locale/sl/LC_MESSAGES/webengineurlinterceptor.mo share/locale/sq/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/sq/LC_MESSAGES/korganizer_plugins.mo share/locale/sr/LC_MESSAGES/cryptopageplugin.mo share/locale/sr/LC_MESSAGES/customtoolsplugin.mo share/locale/sr/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/sr/LC_MESSAGES/kaddressbook_plugins.mo share/locale/sr/LC_MESSAGES/kmail_editor_plugins.mo share/locale/sr/LC_MESSAGES/kmail_editorinit_plugins.mo share/locale/sr/LC_MESSAGES/kmail_editorsendcheck_plugins.mo share/locale/sr/LC_MESSAGES/kmail_plugins.mo share/locale/sr/LC_MESSAGES/kmailtransport_plugins.mo share/locale/sr/LC_MESSAGES/korganizer_plugins.mo share/locale/sr/LC_MESSAGES/messageviewer_application_gnupgwks_plugin.mo share/locale/sr/LC_MESSAGES/messageviewer_application_mstnef_plugin.mo share/locale/sr/LC_MESSAGES/messageviewer_bodypartformatter_pkpass.mo share/locale/sr/LC_MESSAGES/messageviewer_semantic_plugin.mo share/locale/sr/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/sr/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/sr/LC_MESSAGES/messageviewerheaderplugins.mo share/locale/sr/LC_MESSAGES/messageviewerplugins.mo share/locale/sr/LC_MESSAGES/sieveeditor_plugins.mo share/locale/sr/LC_MESSAGES/webengineurlinterceptor.mo share/locale/sr@ijekavian/LC_MESSAGES/cryptopageplugin.mo share/locale/sr@ijekavian/LC_MESSAGES/customtoolsplugin.mo share/locale/sr@ijekavian/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/sr@ijekavian/LC_MESSAGES/kaddressbook_plugins.mo share/locale/sr@ijekavian/LC_MESSAGES/kmail_editor_plugins.mo share/locale/sr@ijekavian/LC_MESSAGES/kmail_editorinit_plugins.mo share/locale/sr@ijekavian/LC_MESSAGES/kmail_editorsendcheck_plugins.mo share/locale/sr@ijekavian/LC_MESSAGES/kmail_plugins.mo share/locale/sr@ijekavian/LC_MESSAGES/kmailtransport_plugins.mo share/locale/sr@ijekavian/LC_MESSAGES/korganizer_plugins.mo share/locale/sr@ijekavian/LC_MESSAGES/messageviewer_application_gnupgwks_plugin.mo share/locale/sr@ijekavian/LC_MESSAGES/messageviewer_application_mstnef_plugin.mo share/locale/sr@ijekavian/LC_MESSAGES/messageviewer_bodypartformatter_pkpass.mo share/locale/sr@ijekavian/LC_MESSAGES/messageviewer_semantic_plugin.mo share/locale/sr@ijekavian/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/sr@ijekavian/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/sr@ijekavian/LC_MESSAGES/messageviewerheaderplugins.mo share/locale/sr@ijekavian/LC_MESSAGES/messageviewerplugins.mo share/locale/sr@ijekavian/LC_MESSAGES/sieveeditor_plugins.mo share/locale/sr@ijekavian/LC_MESSAGES/webengineurlinterceptor.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/cryptopageplugin.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/customtoolsplugin.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kaddressbook_plugins.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kmail_editor_plugins.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kmail_editorinit_plugins.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kmail_editorsendcheck_plugins.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kmail_plugins.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kmailtransport_plugins.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/korganizer_plugins.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/messageviewer_application_gnupgwks_plugin.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/messageviewer_application_mstnef_plugin.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/messageviewer_bodypartformatter_pkpass.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/messageviewer_semantic_plugin.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/messageviewerheaderplugins.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/messageviewerplugins.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/sieveeditor_plugins.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/webengineurlinterceptor.mo share/locale/sr@latin/LC_MESSAGES/cryptopageplugin.mo share/locale/sr@latin/LC_MESSAGES/customtoolsplugin.mo share/locale/sr@latin/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/sr@latin/LC_MESSAGES/kaddressbook_plugins.mo share/locale/sr@latin/LC_MESSAGES/kmail_editor_plugins.mo share/locale/sr@latin/LC_MESSAGES/kmail_editorinit_plugins.mo share/locale/sr@latin/LC_MESSAGES/kmail_editorsendcheck_plugins.mo share/locale/sr@latin/LC_MESSAGES/kmail_plugins.mo share/locale/sr@latin/LC_MESSAGES/kmailtransport_plugins.mo share/locale/sr@latin/LC_MESSAGES/korganizer_plugins.mo share/locale/sr@latin/LC_MESSAGES/messageviewer_application_gnupgwks_plugin.mo share/locale/sr@latin/LC_MESSAGES/messageviewer_application_mstnef_plugin.mo share/locale/sr@latin/LC_MESSAGES/messageviewer_bodypartformatter_pkpass.mo share/locale/sr@latin/LC_MESSAGES/messageviewer_semantic_plugin.mo share/locale/sr@latin/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/sr@latin/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/sr@latin/LC_MESSAGES/messageviewerheaderplugins.mo share/locale/sr@latin/LC_MESSAGES/messageviewerplugins.mo share/locale/sr@latin/LC_MESSAGES/sieveeditor_plugins.mo share/locale/sr@latin/LC_MESSAGES/webengineurlinterceptor.mo share/locale/sv/LC_MESSAGES/cryptopageplugin.mo share/locale/sv/LC_MESSAGES/customtoolsplugin.mo share/locale/sv/LC_MESSAGES/importwizard_plugins.mo share/locale/sv/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/sv/LC_MESSAGES/kaddressbook_plugins.mo share/locale/sv/LC_MESSAGES/kmail_checkbeforedeleting_plugins.mo share/locale/sv/LC_MESSAGES/kmail_editor_plugins.mo share/locale/sv/LC_MESSAGES/kmail_editorconvertertext_plugins.mo share/locale/sv/LC_MESSAGES/kmail_editorgrammar_plugins.mo share/locale/sv/LC_MESSAGES/kmail_editorinit_plugins.mo share/locale/sv/LC_MESSAGES/kmail_editorsendcheck_plugins.mo share/locale/sv/LC_MESSAGES/kmail_plugins.mo share/locale/sv/LC_MESSAGES/kmailtransport_plugins.mo share/locale/sv/LC_MESSAGES/korganizer_plugins.mo +share/locale/sv/LC_MESSAGES/libpimautogeneratetext.mo share/locale/sv/LC_MESSAGES/messageviewer_application_gnupgwks_plugin.mo share/locale/sv/LC_MESSAGES/messageviewer_application_mstnef_plugin.mo share/locale/sv/LC_MESSAGES/messageviewer_bodypartformatter_pkpass.mo share/locale/sv/LC_MESSAGES/messageviewer_semantic_plugin.mo share/locale/sv/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/sv/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/sv/LC_MESSAGES/messageviewerconfiguresettingsplugins.mo share/locale/sv/LC_MESSAGES/messageviewerheaderplugins.mo share/locale/sv/LC_MESSAGES/messageviewerplugins.mo share/locale/sv/LC_MESSAGES/sieveeditor_plugins.mo share/locale/sv/LC_MESSAGES/webengineurlinterceptor.mo share/locale/ta/LC_MESSAGES/cryptopageplugin.mo share/locale/ta/LC_MESSAGES/customtoolsplugin.mo share/locale/ta/LC_MESSAGES/importwizard_plugins.mo share/locale/ta/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/ta/LC_MESSAGES/kaddressbook_plugins.mo share/locale/ta/LC_MESSAGES/kmail_checkbeforedeleting_plugins.mo share/locale/ta/LC_MESSAGES/kmail_editor_plugins.mo share/locale/ta/LC_MESSAGES/kmail_editorconvertertext_plugins.mo share/locale/ta/LC_MESSAGES/kmail_editorgrammar_plugins.mo share/locale/ta/LC_MESSAGES/kmail_editorinit_plugins.mo share/locale/ta/LC_MESSAGES/kmail_editorsendcheck_plugins.mo share/locale/ta/LC_MESSAGES/kmail_plugins.mo share/locale/ta/LC_MESSAGES/kmailtransport_plugins.mo share/locale/ta/LC_MESSAGES/korganizer_plugins.mo share/locale/ta/LC_MESSAGES/messageviewer_application_gnupgwks_plugin.mo share/locale/ta/LC_MESSAGES/messageviewer_application_mstnef_plugin.mo share/locale/ta/LC_MESSAGES/messageviewer_bodypartformatter_pkpass.mo share/locale/ta/LC_MESSAGES/messageviewer_semantic_plugin.mo share/locale/ta/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/ta/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/ta/LC_MESSAGES/messageviewerconfiguresettingsplugins.mo share/locale/ta/LC_MESSAGES/messageviewerheaderplugins.mo share/locale/ta/LC_MESSAGES/messageviewerplugins.mo share/locale/ta/LC_MESSAGES/sieveeditor_plugins.mo share/locale/ta/LC_MESSAGES/webengineurlinterceptor.mo share/locale/tg/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/tg/LC_MESSAGES/korganizer_plugins.mo share/locale/tg/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/tg/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/th/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/th/LC_MESSAGES/korganizer_plugins.mo share/locale/th/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/th/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/tr/LC_MESSAGES/cryptopageplugin.mo share/locale/tr/LC_MESSAGES/customtoolsplugin.mo share/locale/tr/LC_MESSAGES/importwizard_plugins.mo share/locale/tr/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/tr/LC_MESSAGES/kaddressbook_plugins.mo share/locale/tr/LC_MESSAGES/kmail_checkbeforedeleting_plugins.mo share/locale/tr/LC_MESSAGES/kmail_editor_plugins.mo share/locale/tr/LC_MESSAGES/kmail_editorconvertertext_plugins.mo share/locale/tr/LC_MESSAGES/kmail_editorgrammar_plugins.mo share/locale/tr/LC_MESSAGES/kmail_editorinit_plugins.mo share/locale/tr/LC_MESSAGES/kmail_editorsendcheck_plugins.mo share/locale/tr/LC_MESSAGES/kmail_plugins.mo share/locale/tr/LC_MESSAGES/kmailtransport_plugins.mo share/locale/tr/LC_MESSAGES/korganizer_plugins.mo +share/locale/tr/LC_MESSAGES/libpimautogeneratetext.mo share/locale/tr/LC_MESSAGES/messageviewer_application_gnupgwks_plugin.mo share/locale/tr/LC_MESSAGES/messageviewer_application_mstnef_plugin.mo share/locale/tr/LC_MESSAGES/messageviewer_bodypartformatter_pkpass.mo share/locale/tr/LC_MESSAGES/messageviewer_semantic_plugin.mo share/locale/tr/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/tr/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/tr/LC_MESSAGES/messageviewerconfiguresettingsplugins.mo share/locale/tr/LC_MESSAGES/messageviewerheaderplugins.mo share/locale/tr/LC_MESSAGES/messageviewerplugins.mo share/locale/tr/LC_MESSAGES/sieveeditor_plugins.mo share/locale/tr/LC_MESSAGES/webengineurlinterceptor.mo share/locale/ug/LC_MESSAGES/cryptopageplugin.mo share/locale/ug/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/ug/LC_MESSAGES/korganizer_plugins.mo share/locale/ug/LC_MESSAGES/messageviewer_application_mstnef_plugin.mo share/locale/ug/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/ug/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/uk/LC_MESSAGES/cryptopageplugin.mo share/locale/uk/LC_MESSAGES/customtoolsplugin.mo share/locale/uk/LC_MESSAGES/importwizard_plugins.mo share/locale/uk/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/uk/LC_MESSAGES/kaddressbook_plugins.mo share/locale/uk/LC_MESSAGES/kmail_checkbeforedeleting_plugins.mo share/locale/uk/LC_MESSAGES/kmail_editor_plugins.mo share/locale/uk/LC_MESSAGES/kmail_editorconvertertext_plugins.mo share/locale/uk/LC_MESSAGES/kmail_editorgrammar_plugins.mo share/locale/uk/LC_MESSAGES/kmail_editorinit_plugins.mo share/locale/uk/LC_MESSAGES/kmail_editorsendcheck_plugins.mo share/locale/uk/LC_MESSAGES/kmail_plugins.mo share/locale/uk/LC_MESSAGES/kmailtransport_plugins.mo share/locale/uk/LC_MESSAGES/korganizer_plugins.mo +share/locale/uk/LC_MESSAGES/libpimautogeneratetext.mo share/locale/uk/LC_MESSAGES/messageviewer_application_gnupgwks_plugin.mo share/locale/uk/LC_MESSAGES/messageviewer_application_mstnef_plugin.mo share/locale/uk/LC_MESSAGES/messageviewer_bodypartformatter_pkpass.mo share/locale/uk/LC_MESSAGES/messageviewer_semantic_plugin.mo share/locale/uk/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/uk/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/uk/LC_MESSAGES/messageviewerconfiguresettingsplugins.mo share/locale/uk/LC_MESSAGES/messageviewerheaderplugins.mo share/locale/uk/LC_MESSAGES/messageviewerplugins.mo share/locale/uk/LC_MESSAGES/sieveeditor_plugins.mo share/locale/uk/LC_MESSAGES/webengineurlinterceptor.mo share/locale/uz/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/uz/LC_MESSAGES/korganizer_plugins.mo share/locale/uz/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/uz/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/uz@cyrillic/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/uz@cyrillic/LC_MESSAGES/korganizer_plugins.mo share/locale/uz@cyrillic/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/uz@cyrillic/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/vi/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/wa/LC_MESSAGES/korganizer_plugins.mo share/locale/xh/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/xh/LC_MESSAGES/korganizer_plugins.mo share/locale/zh_CN/LC_MESSAGES/cryptopageplugin.mo share/locale/zh_CN/LC_MESSAGES/customtoolsplugin.mo share/locale/zh_CN/LC_MESSAGES/importwizard_plugins.mo share/locale/zh_CN/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/zh_CN/LC_MESSAGES/kaddressbook_plugins.mo share/locale/zh_CN/LC_MESSAGES/kmail_checkbeforedeleting_plugins.mo share/locale/zh_CN/LC_MESSAGES/kmail_editor_plugins.mo share/locale/zh_CN/LC_MESSAGES/kmail_editorconvertertext_plugins.mo share/locale/zh_CN/LC_MESSAGES/kmail_editorgrammar_plugins.mo share/locale/zh_CN/LC_MESSAGES/kmail_editorinit_plugins.mo share/locale/zh_CN/LC_MESSAGES/kmail_editorsendcheck_plugins.mo share/locale/zh_CN/LC_MESSAGES/kmail_plugins.mo share/locale/zh_CN/LC_MESSAGES/kmailtransport_plugins.mo share/locale/zh_CN/LC_MESSAGES/korganizer_plugins.mo +share/locale/zh_CN/LC_MESSAGES/libpimautogeneratetext.mo share/locale/zh_CN/LC_MESSAGES/messageviewer_application_gnupgwks_plugin.mo share/locale/zh_CN/LC_MESSAGES/messageviewer_application_mstnef_plugin.mo share/locale/zh_CN/LC_MESSAGES/messageviewer_bodypartformatter_pkpass.mo share/locale/zh_CN/LC_MESSAGES/messageviewer_semantic_plugin.mo share/locale/zh_CN/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/zh_CN/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/zh_CN/LC_MESSAGES/messageviewerconfiguresettingsplugins.mo share/locale/zh_CN/LC_MESSAGES/messageviewerheaderplugins.mo share/locale/zh_CN/LC_MESSAGES/messageviewerplugins.mo share/locale/zh_CN/LC_MESSAGES/sieveeditor_plugins.mo share/locale/zh_CN/LC_MESSAGES/webengineurlinterceptor.mo share/locale/zh_TW/LC_MESSAGES/cryptopageplugin.mo share/locale/zh_TW/LC_MESSAGES/customtoolsplugin.mo share/locale/zh_TW/LC_MESSAGES/importwizard_plugins.mo share/locale/zh_TW/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/zh_TW/LC_MESSAGES/kaddressbook_plugins.mo share/locale/zh_TW/LC_MESSAGES/kmail_checkbeforedeleting_plugins.mo share/locale/zh_TW/LC_MESSAGES/kmail_editor_plugins.mo share/locale/zh_TW/LC_MESSAGES/kmail_editorconvertertext_plugins.mo share/locale/zh_TW/LC_MESSAGES/kmail_editorgrammar_plugins.mo share/locale/zh_TW/LC_MESSAGES/kmail_editorinit_plugins.mo share/locale/zh_TW/LC_MESSAGES/kmail_editorsendcheck_plugins.mo share/locale/zh_TW/LC_MESSAGES/kmail_plugins.mo share/locale/zh_TW/LC_MESSAGES/kmailtransport_plugins.mo share/locale/zh_TW/LC_MESSAGES/korganizer_plugins.mo +share/locale/zh_TW/LC_MESSAGES/libpimautogeneratetext.mo share/locale/zh_TW/LC_MESSAGES/messageviewer_application_gnupgwks_plugin.mo share/locale/zh_TW/LC_MESSAGES/messageviewer_application_mstnef_plugin.mo share/locale/zh_TW/LC_MESSAGES/messageviewer_bodypartformatter_pkpass.mo share/locale/zh_TW/LC_MESSAGES/messageviewer_semantic_plugin.mo share/locale/zh_TW/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/zh_TW/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/zh_TW/LC_MESSAGES/messageviewerconfiguresettingsplugins.mo share/locale/zh_TW/LC_MESSAGES/messageviewerheaderplugins.mo share/locale/zh_TW/LC_MESSAGES/messageviewerplugins.mo share/locale/zh_TW/LC_MESSAGES/sieveeditor_plugins.mo share/locale/zh_TW/LC_MESSAGES/webengineurlinterceptor.mo share/qlogging-categories6/kdepim-addons.categories share/qlogging-categories6/kdepim-addons.renamecategories diff --git a/deskutils/kdepim-runtime/distinfo b/deskutils/kdepim-runtime/distinfo index ff01a100d16f..92a7c922237a 100644 --- a/deskutils/kdepim-runtime/distinfo +++ b/deskutils/kdepim-runtime/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1751381247 -SHA256 (KDE/release-service/25.04.3/kdepim-runtime-25.04.3.tar.xz) = 133dcf8c314c36ecc8b4775d9eb6d929bbbbd5355dddf29441abaf00fe9a1a89 -SIZE (KDE/release-service/25.04.3/kdepim-runtime-25.04.3.tar.xz) = 1704356 +TIMESTAMP = 1754646160 +SHA256 (KDE/release-service/25.08.0/kdepim-runtime-25.08.0.tar.xz) = 42ba99c3ec9f4be19abe66b2c1933cda4afba7e2643248b2f741565df7bf5706 +SIZE (KDE/release-service/25.08.0/kdepim-runtime-25.08.0.tar.xz) = 2452824 diff --git a/deskutils/kdepim-runtime/pkg-plist b/deskutils/kdepim-runtime/pkg-plist index 1825faa6a2f7..4ede350c4481 100644 --- a/deskutils/kdepim-runtime/pkg-plist +++ b/deskutils/kdepim-runtime/pkg-plist @@ -1,1396 +1,1464 @@ bin/akonadi_birthdays_resource bin/akonadi_contacts_resource bin/akonadi_davgroupware_resource bin/akonadi_ews_resource bin/akonadi_ewsmta_resource bin/akonadi_google_resource bin/akonadi_ical_resource bin/akonadi_icaldir_resource bin/akonadi_imap_resource bin/akonadi_kolab_resource bin/akonadi_maildir_resource bin/akonadi_maildispatcher_agent bin/akonadi_mbox_resource bin/akonadi_migration_agent bin/akonadi_mixedmaildir_resource bin/akonadi_newmailnotifier_agent bin/akonadi_openxchange_resource bin/akonadi_pop3_resource bin/akonadi_vcard_resource bin/akonadi_vcarddir_resource bin/gidmigrator lib/libakonadi-filestore.so.6 lib/libakonadi-filestore.so.%%KDE_APPLICATIONS_SHLIB_VER%% +lib/libakonadi-singlefileresource-widget.so.6 +lib/libakonadi-singlefileresource-widget.so.%%KDE_APPLICATIONS_SHLIB_VER%% lib/libakonadi-singlefileresource.so.6 lib/libakonadi-singlefileresource.so.%%KDE_APPLICATIONS_SHLIB_VER%% lib/libfolderarchivesettings.so.6 lib/libfolderarchivesettings.so.%%KDE_APPLICATIONS_SHLIB_VER%% lib/libkmindexreader.so.6 lib/libkmindexreader.so.%%KDE_APPLICATIONS_SHLIB_VER%% lib/libmaildir.so.6 lib/libmaildir.so.%%KDE_APPLICATIONS_SHLIB_VER%% lib/libnewmailnotifier.so.6 lib/libnewmailnotifier.so.%%KDE_APPLICATIONS_SHLIB_VER%% %%QT_PLUGINDIR%%/kf6/kio/akonadi.so %%QT_PLUGINDIR%%/pim6/akonadi/config/birthdaysconfig.so %%QT_PLUGINDIR%%/pim6/akonadi/config/contactsconfig.so +%%QT_PLUGINDIR%%/pim6/akonadi/config/davgroupwareconfig.so %%QT_PLUGINDIR%%/pim6/akonadi/config/googleconfig.so %%QT_PLUGINDIR%%/pim6/akonadi/config/icalconfig.so %%QT_PLUGINDIR%%/pim6/akonadi/config/icaldirconfig.so +%%QT_PLUGINDIR%%/pim6/akonadi/config/imapconfig.so +%%QT_PLUGINDIR%%/pim6/akonadi/config/kolabconfig.so %%QT_PLUGINDIR%%/pim6/akonadi/config/maildirconfig.so %%QT_PLUGINDIR%%/pim6/akonadi/config/maildispatcherconfig.so %%QT_PLUGINDIR%%/pim6/akonadi/config/mboxconfig.so %%QT_PLUGINDIR%%/pim6/akonadi/config/mixedmaildirconfig.so %%QT_PLUGINDIR%%/pim6/akonadi/config/newmailnotifierconfig.so %%QT_PLUGINDIR%%/pim6/akonadi/config/openxchangeconfig.so %%QT_PLUGINDIR%%/pim6/akonadi/config/pop3config.so %%QT_PLUGINDIR%%/pim6/akonadi/config/vcardconfig.so %%QT_PLUGINDIR%%/pim6/akonadi/config/vcarddirconfig.so %%QT_PLUGINDIR%%/pim6/kcms/common/kcm_ldap.so %%QT_PLUGINDIR%%/pim6/mailtransport/mailtransport_akonadiplugin.so share/akonadi/agents/birthdaysresource.desktop share/akonadi/agents/contactsresource.desktop share/akonadi/agents/davgroupwareresource.desktop share/akonadi/agents/ewsmtaresource.desktop share/akonadi/agents/ewsresource.desktop share/akonadi/agents/googleresource.desktop share/akonadi/agents/icaldirresource.desktop share/akonadi/agents/icalresource.desktop share/akonadi/agents/imapresource.desktop share/akonadi/agents/kolabresource.desktop share/akonadi/agents/maildirresource.desktop share/akonadi/agents/maildispatcheragent.desktop share/akonadi/agents/mboxresource.desktop share/akonadi/agents/migrationagent.desktop share/akonadi/agents/mixedmaildirresource.desktop share/akonadi/agents/newmailnotifieragent.desktop share/akonadi/agents/openxchangeresource.desktop share/akonadi/agents/pop3resource.desktop share/akonadi/agents/vcarddirresource.desktop share/akonadi/agents/vcardresource.desktop share/akonadi/davgroupware-providers/citadel.desktop share/akonadi/davgroupware-providers/davical.desktop share/akonadi/davgroupware-providers/egroupware.desktop share/akonadi/davgroupware-providers/fastmail.desktop +share/akonadi/davgroupware-providers/kopano.desktop share/akonadi/davgroupware-providers/mailbox-org.desktop share/akonadi/davgroupware-providers/nextcloud.desktop -share/akonadi/davgroupware-providers/opengroupware.desktop share/akonadi/davgroupware-providers/owncloud-pre9.desktop share/akonadi/davgroupware-providers/owncloud.desktop -share/akonadi/davgroupware-providers/scalix.desktop share/akonadi/davgroupware-providers/sogo.desktop share/akonadi/davgroupware-providers/yahoo.desktop -share/akonadi/davgroupware-providers/zarafa.desktop share/akonadi/davgroupware-providers/zimbra.desktop share/akonadi/davgroupware-providers/zoho.desktop share/akonadi/firstrun/birthdaycalendar share/akonadi/firstrun/defaultaddressbook share/akonadi/firstrun/defaultcalendar share/applications/org.kde.akonadi_contacts_resource.desktop share/applications/org.kde.akonadi_davgroupware_resource.desktop share/applications/org.kde.akonadi_ews_resource.desktop share/applications/org.kde.akonadi_google_resource.desktop share/applications/org.kde.akonadi_imap_resource.desktop share/applications/org.kde.akonadi_kolab_resource.desktop share/applications/org.kde.akonadi_openxchange_resource.desktop share/applications/org.kde.akonadi_vcard_resource.desktop share/applications/org.kde.akonadi_vcarddir_resource.desktop share/dbus-1/interfaces/org.kde.Akonadi.Maildir.Settings.xml share/dbus-1/interfaces/org.kde.Akonadi.MixedMaildir.Settings.xml +share/icons/hicolor/128x128/apps/account-apple.png +share/icons/hicolor/128x128/apps/account-citadel.png +share/icons/hicolor/128x128/apps/account-davical.png +share/icons/hicolor/128x128/apps/account-egroupware.png +share/icons/hicolor/128x128/apps/account-fastmail.png +share/icons/hicolor/128x128/apps/account-kopano.png +share/icons/hicolor/128x128/apps/account-mailboxorg.png +share/icons/hicolor/128x128/apps/account-nextcloud.png +share/icons/hicolor/128x128/apps/account-owncloud.png +share/icons/hicolor/128x128/apps/account-sogo.png +share/icons/hicolor/128x128/apps/account-yahoo.png +share/icons/hicolor/128x128/apps/account-zimbra.png +share/icons/hicolor/128x128/apps/account-zoho.png share/icons/hicolor/128x128/apps/akonadi-ews.png share/icons/hicolor/128x128/apps/ox.png +share/icons/hicolor/16x16/apps/account-apple.png +share/icons/hicolor/16x16/apps/account-citadel.png +share/icons/hicolor/16x16/apps/account-davical.png +share/icons/hicolor/16x16/apps/account-egroupware.png +share/icons/hicolor/16x16/apps/account-fastmail.png +share/icons/hicolor/16x16/apps/account-kopano.png +share/icons/hicolor/16x16/apps/account-mailboxorg.png +share/icons/hicolor/16x16/apps/account-nextcloud.png +share/icons/hicolor/16x16/apps/account-owncloud.png +share/icons/hicolor/16x16/apps/account-sogo.png +share/icons/hicolor/16x16/apps/account-yahoo.png +share/icons/hicolor/16x16/apps/account-zimbra.png +share/icons/hicolor/16x16/apps/account-zoho.png share/icons/hicolor/16x16/apps/akonadi-ews.png share/icons/hicolor/16x16/apps/ox.png share/icons/hicolor/22x22/apps/akonadi-ews.png share/icons/hicolor/24x24/apps/akonadi-ews.png +share/icons/hicolor/32x32/apps/account-apple.png +share/icons/hicolor/32x32/apps/account-citadel.png +share/icons/hicolor/32x32/apps/account-davical.png +share/icons/hicolor/32x32/apps/account-egroupware.png +share/icons/hicolor/32x32/apps/account-fastmail.png +share/icons/hicolor/32x32/apps/account-kopano.png +share/icons/hicolor/32x32/apps/account-mailboxorg.png +share/icons/hicolor/32x32/apps/account-nextcloud.png +share/icons/hicolor/32x32/apps/account-owncloud.png +share/icons/hicolor/32x32/apps/account-sogo.png +share/icons/hicolor/32x32/apps/account-yahoo.png +share/icons/hicolor/32x32/apps/account-zimbra.png +share/icons/hicolor/32x32/apps/account-zoho.png share/icons/hicolor/32x32/apps/akonadi-ews.png share/icons/hicolor/32x32/apps/ox.png +share/icons/hicolor/48x48/apps/account-apple.png +share/icons/hicolor/48x48/apps/account-citadel.png +share/icons/hicolor/48x48/apps/account-davical.png +share/icons/hicolor/48x48/apps/account-egroupware.png +share/icons/hicolor/48x48/apps/account-fastmail.png +share/icons/hicolor/48x48/apps/account-kopano.png +share/icons/hicolor/48x48/apps/account-mailboxorg.png +share/icons/hicolor/48x48/apps/account-nextcloud.png +share/icons/hicolor/48x48/apps/account-owncloud.png +share/icons/hicolor/48x48/apps/account-sogo.png +share/icons/hicolor/48x48/apps/account-yahoo.png +share/icons/hicolor/48x48/apps/account-zimbra.png +share/icons/hicolor/48x48/apps/account-zoho.png share/icons/hicolor/48x48/apps/akonadi-ews.png share/icons/hicolor/48x48/apps/ox.png +share/icons/hicolor/64x64/apps/account-apple.png +share/icons/hicolor/64x64/apps/account-citadel.png +share/icons/hicolor/64x64/apps/account-davical.png +share/icons/hicolor/64x64/apps/account-egroupware.png +share/icons/hicolor/64x64/apps/account-fastmail.png +share/icons/hicolor/64x64/apps/account-kopano.png +share/icons/hicolor/64x64/apps/account-mailboxorg.png +share/icons/hicolor/64x64/apps/account-nextcloud.png +share/icons/hicolor/64x64/apps/account-owncloud.png +share/icons/hicolor/64x64/apps/account-sogo.png +share/icons/hicolor/64x64/apps/account-yahoo.png +share/icons/hicolor/64x64/apps/account-zimbra.png +share/icons/hicolor/64x64/apps/account-zoho.png share/icons/hicolor/64x64/apps/akonadi-ews.png share/icons/hicolor/64x64/apps/ox.png share/icons/hicolor/72x72/apps/akonadi-ews.png share/icons/hicolor/96x96/apps/akonadi-ews.png share/knotifications6/akonadi_ews_resource.notifyrc share/knotifications6/akonadi_google_resource.notifyrc share/knotifications6/akonadi_imap_resource.notifyrc share/knotifications6/akonadi_maildispatcher_agent.notifyrc share/knotifications6/akonadi_newmailnotifier_agent.notifyrc share/knotifications6/akonadi_pop3_resource.notifyrc share/locale/ar/LC_MESSAGES/akonadi-filestore.mo share/locale/ar/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/ar/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/ar/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/ar/LC_MESSAGES/akonadi_etesync_resource.mo share/locale/ar/LC_MESSAGES/akonadi_ews_resource.mo share/locale/ar/LC_MESSAGES/akonadi_google_resource.mo share/locale/ar/LC_MESSAGES/akonadi_ical_resource.mo share/locale/ar/LC_MESSAGES/akonadi_icaldir_resource.mo share/locale/ar/LC_MESSAGES/akonadi_imap_resource.mo share/locale/ar/LC_MESSAGES/akonadi_maildir_resource.mo share/locale/ar/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/ar/LC_MESSAGES/akonadi_mbox_resource.mo share/locale/ar/LC_MESSAGES/akonadi_migration_agent.mo share/locale/ar/LC_MESSAGES/akonadi_mixedmaildir_resource.mo share/locale/ar/LC_MESSAGES/akonadi_newmailnotifier_agent.mo share/locale/ar/LC_MESSAGES/akonadi_openxchange_resource.mo share/locale/ar/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/ar/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/ar/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/ar/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/ar/LC_MESSAGES/gid-migrator.mo share/locale/ar/LC_MESSAGES/kio_akonadi.mo share/locale/ar/LC_MESSAGES/libfolderarchivesettings.mo share/locale/ast/LC_MESSAGES/akonadi-filestore.mo share/locale/ast/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/ast/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/ast/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/ast/LC_MESSAGES/akonadi_etesync_resource.mo share/locale/ast/LC_MESSAGES/akonadi_ews_resource.mo share/locale/ast/LC_MESSAGES/akonadi_google_resource.mo share/locale/ast/LC_MESSAGES/akonadi_ical_resource.mo share/locale/ast/LC_MESSAGES/akonadi_icaldir_resource.mo share/locale/ast/LC_MESSAGES/akonadi_imap_resource.mo share/locale/ast/LC_MESSAGES/akonadi_maildir_resource.mo share/locale/ast/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/ast/LC_MESSAGES/akonadi_mbox_resource.mo share/locale/ast/LC_MESSAGES/akonadi_migration_agent.mo share/locale/ast/LC_MESSAGES/akonadi_mixedmaildir_resource.mo share/locale/ast/LC_MESSAGES/akonadi_newmailnotifier_agent.mo share/locale/ast/LC_MESSAGES/akonadi_openxchange_resource.mo share/locale/ast/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/ast/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/ast/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/ast/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/ast/LC_MESSAGES/gid-migrator.mo share/locale/ast/LC_MESSAGES/kio_akonadi.mo share/locale/ast/LC_MESSAGES/libfolderarchivesettings.mo share/locale/bg/LC_MESSAGES/akonadi-filestore.mo share/locale/bg/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/bg/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/bg/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/bg/LC_MESSAGES/akonadi_etesync_resource.mo share/locale/bg/LC_MESSAGES/akonadi_ews_resource.mo share/locale/bg/LC_MESSAGES/akonadi_google_resource.mo share/locale/bg/LC_MESSAGES/akonadi_ical_resource.mo share/locale/bg/LC_MESSAGES/akonadi_icaldir_resource.mo share/locale/bg/LC_MESSAGES/akonadi_imap_resource.mo share/locale/bg/LC_MESSAGES/akonadi_maildir_resource.mo share/locale/bg/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/bg/LC_MESSAGES/akonadi_mbox_resource.mo share/locale/bg/LC_MESSAGES/akonadi_migration_agent.mo share/locale/bg/LC_MESSAGES/akonadi_mixedmaildir_resource.mo share/locale/bg/LC_MESSAGES/akonadi_newmailnotifier_agent.mo share/locale/bg/LC_MESSAGES/akonadi_openxchange_resource.mo share/locale/bg/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/bg/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/bg/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/bg/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/bg/LC_MESSAGES/gid-migrator.mo share/locale/bg/LC_MESSAGES/kio_akonadi.mo share/locale/bg/LC_MESSAGES/libfolderarchivesettings.mo share/locale/bs/LC_MESSAGES/akonadi-filestore.mo share/locale/bs/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/bs/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/bs/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/bs/LC_MESSAGES/akonadi_google_resource.mo share/locale/bs/LC_MESSAGES/akonadi_ical_resource.mo share/locale/bs/LC_MESSAGES/akonadi_icaldir_resource.mo share/locale/bs/LC_MESSAGES/akonadi_imap_resource.mo share/locale/bs/LC_MESSAGES/akonadi_maildir_resource.mo share/locale/bs/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/bs/LC_MESSAGES/akonadi_mbox_resource.mo share/locale/bs/LC_MESSAGES/akonadi_migration_agent.mo share/locale/bs/LC_MESSAGES/akonadi_mixedmaildir_resource.mo share/locale/bs/LC_MESSAGES/akonadi_newmailnotifier_agent.mo share/locale/bs/LC_MESSAGES/akonadi_openxchange_resource.mo share/locale/bs/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/bs/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/bs/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/bs/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/bs/LC_MESSAGES/gid-migrator.mo share/locale/bs/LC_MESSAGES/kio_akonadi.mo share/locale/bs/LC_MESSAGES/libfolderarchivesettings.mo share/locale/ca/LC_MESSAGES/akonadi-filestore.mo share/locale/ca/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/ca/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/ca/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/ca/LC_MESSAGES/akonadi_etesync_resource.mo share/locale/ca/LC_MESSAGES/akonadi_ews_resource.mo share/locale/ca/LC_MESSAGES/akonadi_google_resource.mo share/locale/ca/LC_MESSAGES/akonadi_ical_resource.mo share/locale/ca/LC_MESSAGES/akonadi_icaldir_resource.mo share/locale/ca/LC_MESSAGES/akonadi_imap_resource.mo share/locale/ca/LC_MESSAGES/akonadi_maildir_resource.mo share/locale/ca/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/ca/LC_MESSAGES/akonadi_mbox_resource.mo share/locale/ca/LC_MESSAGES/akonadi_migration_agent.mo share/locale/ca/LC_MESSAGES/akonadi_mixedmaildir_resource.mo share/locale/ca/LC_MESSAGES/akonadi_newmailnotifier_agent.mo share/locale/ca/LC_MESSAGES/akonadi_openxchange_resource.mo share/locale/ca/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/ca/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/ca/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/ca/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/ca/LC_MESSAGES/gid-migrator.mo share/locale/ca/LC_MESSAGES/kio_akonadi.mo share/locale/ca/LC_MESSAGES/libfolderarchivesettings.mo share/locale/ca@valencia/LC_MESSAGES/akonadi-filestore.mo share/locale/ca@valencia/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/ca@valencia/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/ca@valencia/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/ca@valencia/LC_MESSAGES/akonadi_etesync_resource.mo share/locale/ca@valencia/LC_MESSAGES/akonadi_ews_resource.mo share/locale/ca@valencia/LC_MESSAGES/akonadi_google_resource.mo share/locale/ca@valencia/LC_MESSAGES/akonadi_ical_resource.mo share/locale/ca@valencia/LC_MESSAGES/akonadi_icaldir_resource.mo share/locale/ca@valencia/LC_MESSAGES/akonadi_imap_resource.mo share/locale/ca@valencia/LC_MESSAGES/akonadi_maildir_resource.mo share/locale/ca@valencia/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/ca@valencia/LC_MESSAGES/akonadi_mbox_resource.mo share/locale/ca@valencia/LC_MESSAGES/akonadi_migration_agent.mo share/locale/ca@valencia/LC_MESSAGES/akonadi_mixedmaildir_resource.mo share/locale/ca@valencia/LC_MESSAGES/akonadi_newmailnotifier_agent.mo share/locale/ca@valencia/LC_MESSAGES/akonadi_openxchange_resource.mo share/locale/ca@valencia/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/ca@valencia/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/ca@valencia/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/ca@valencia/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/ca@valencia/LC_MESSAGES/gid-migrator.mo share/locale/ca@valencia/LC_MESSAGES/kio_akonadi.mo share/locale/ca@valencia/LC_MESSAGES/libfolderarchivesettings.mo share/locale/cs/LC_MESSAGES/akonadi-filestore.mo share/locale/cs/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/cs/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/cs/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/cs/LC_MESSAGES/akonadi_etesync_resource.mo share/locale/cs/LC_MESSAGES/akonadi_ews_resource.mo share/locale/cs/LC_MESSAGES/akonadi_google_resource.mo share/locale/cs/LC_MESSAGES/akonadi_ical_resource.mo share/locale/cs/LC_MESSAGES/akonadi_icaldir_resource.mo share/locale/cs/LC_MESSAGES/akonadi_imap_resource.mo share/locale/cs/LC_MESSAGES/akonadi_maildir_resource.mo share/locale/cs/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/cs/LC_MESSAGES/akonadi_mbox_resource.mo share/locale/cs/LC_MESSAGES/akonadi_migration_agent.mo share/locale/cs/LC_MESSAGES/akonadi_mixedmaildir_resource.mo share/locale/cs/LC_MESSAGES/akonadi_newmailnotifier_agent.mo share/locale/cs/LC_MESSAGES/akonadi_openxchange_resource.mo share/locale/cs/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/cs/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/cs/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/cs/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/cs/LC_MESSAGES/gid-migrator.mo share/locale/cs/LC_MESSAGES/kio_akonadi.mo share/locale/cs/LC_MESSAGES/libfolderarchivesettings.mo share/locale/da/LC_MESSAGES/akonadi-filestore.mo share/locale/da/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/da/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/da/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/da/LC_MESSAGES/akonadi_ews_resource.mo share/locale/da/LC_MESSAGES/akonadi_google_resource.mo share/locale/da/LC_MESSAGES/akonadi_ical_resource.mo share/locale/da/LC_MESSAGES/akonadi_icaldir_resource.mo share/locale/da/LC_MESSAGES/akonadi_imap_resource.mo share/locale/da/LC_MESSAGES/akonadi_maildir_resource.mo share/locale/da/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/da/LC_MESSAGES/akonadi_mbox_resource.mo share/locale/da/LC_MESSAGES/akonadi_migration_agent.mo share/locale/da/LC_MESSAGES/akonadi_mixedmaildir_resource.mo share/locale/da/LC_MESSAGES/akonadi_newmailnotifier_agent.mo share/locale/da/LC_MESSAGES/akonadi_openxchange_resource.mo share/locale/da/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/da/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/da/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/da/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/da/LC_MESSAGES/gid-migrator.mo share/locale/da/LC_MESSAGES/kio_akonadi.mo share/locale/da/LC_MESSAGES/libfolderarchivesettings.mo share/locale/de/LC_MESSAGES/akonadi-filestore.mo share/locale/de/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/de/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/de/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/de/LC_MESSAGES/akonadi_etesync_resource.mo share/locale/de/LC_MESSAGES/akonadi_ews_resource.mo share/locale/de/LC_MESSAGES/akonadi_google_resource.mo share/locale/de/LC_MESSAGES/akonadi_ical_resource.mo share/locale/de/LC_MESSAGES/akonadi_icaldir_resource.mo share/locale/de/LC_MESSAGES/akonadi_imap_resource.mo share/locale/de/LC_MESSAGES/akonadi_maildir_resource.mo share/locale/de/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/de/LC_MESSAGES/akonadi_mbox_resource.mo share/locale/de/LC_MESSAGES/akonadi_migration_agent.mo share/locale/de/LC_MESSAGES/akonadi_mixedmaildir_resource.mo share/locale/de/LC_MESSAGES/akonadi_newmailnotifier_agent.mo share/locale/de/LC_MESSAGES/akonadi_openxchange_resource.mo share/locale/de/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/de/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/de/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/de/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/de/LC_MESSAGES/gid-migrator.mo share/locale/de/LC_MESSAGES/kio_akonadi.mo share/locale/de/LC_MESSAGES/libfolderarchivesettings.mo share/locale/el/LC_MESSAGES/akonadi-filestore.mo share/locale/el/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/el/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/el/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/el/LC_MESSAGES/akonadi_google_resource.mo share/locale/el/LC_MESSAGES/akonadi_ical_resource.mo share/locale/el/LC_MESSAGES/akonadi_icaldir_resource.mo share/locale/el/LC_MESSAGES/akonadi_imap_resource.mo share/locale/el/LC_MESSAGES/akonadi_maildir_resource.mo share/locale/el/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/el/LC_MESSAGES/akonadi_mbox_resource.mo share/locale/el/LC_MESSAGES/akonadi_migration_agent.mo share/locale/el/LC_MESSAGES/akonadi_mixedmaildir_resource.mo share/locale/el/LC_MESSAGES/akonadi_newmailnotifier_agent.mo share/locale/el/LC_MESSAGES/akonadi_openxchange_resource.mo share/locale/el/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/el/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/el/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/el/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/el/LC_MESSAGES/gid-migrator.mo share/locale/el/LC_MESSAGES/kio_akonadi.mo share/locale/el/LC_MESSAGES/libfolderarchivesettings.mo share/locale/en_GB/LC_MESSAGES/akonadi-filestore.mo share/locale/en_GB/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/en_GB/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/en_GB/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/en_GB/LC_MESSAGES/akonadi_etesync_resource.mo share/locale/en_GB/LC_MESSAGES/akonadi_ews_resource.mo share/locale/en_GB/LC_MESSAGES/akonadi_google_resource.mo share/locale/en_GB/LC_MESSAGES/akonadi_ical_resource.mo share/locale/en_GB/LC_MESSAGES/akonadi_icaldir_resource.mo share/locale/en_GB/LC_MESSAGES/akonadi_imap_resource.mo share/locale/en_GB/LC_MESSAGES/akonadi_maildir_resource.mo share/locale/en_GB/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/en_GB/LC_MESSAGES/akonadi_mbox_resource.mo share/locale/en_GB/LC_MESSAGES/akonadi_migration_agent.mo share/locale/en_GB/LC_MESSAGES/akonadi_mixedmaildir_resource.mo share/locale/en_GB/LC_MESSAGES/akonadi_newmailnotifier_agent.mo share/locale/en_GB/LC_MESSAGES/akonadi_openxchange_resource.mo share/locale/en_GB/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/en_GB/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/en_GB/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/en_GB/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/en_GB/LC_MESSAGES/gid-migrator.mo share/locale/en_GB/LC_MESSAGES/kio_akonadi.mo share/locale/en_GB/LC_MESSAGES/libfolderarchivesettings.mo share/locale/eo/LC_MESSAGES/akonadi-filestore.mo share/locale/eo/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/eo/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/eo/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/eo/LC_MESSAGES/akonadi_etesync_resource.mo share/locale/eo/LC_MESSAGES/akonadi_ews_resource.mo share/locale/eo/LC_MESSAGES/akonadi_google_resource.mo share/locale/eo/LC_MESSAGES/akonadi_ical_resource.mo share/locale/eo/LC_MESSAGES/akonadi_icaldir_resource.mo share/locale/eo/LC_MESSAGES/akonadi_imap_resource.mo share/locale/eo/LC_MESSAGES/akonadi_maildir_resource.mo share/locale/eo/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/eo/LC_MESSAGES/akonadi_mbox_resource.mo share/locale/eo/LC_MESSAGES/akonadi_migration_agent.mo share/locale/eo/LC_MESSAGES/akonadi_mixedmaildir_resource.mo share/locale/eo/LC_MESSAGES/akonadi_newmailnotifier_agent.mo share/locale/eo/LC_MESSAGES/akonadi_openxchange_resource.mo share/locale/eo/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/eo/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/eo/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/eo/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/eo/LC_MESSAGES/gid-migrator.mo share/locale/eo/LC_MESSAGES/kio_akonadi.mo share/locale/eo/LC_MESSAGES/libfolderarchivesettings.mo share/locale/es/LC_MESSAGES/akonadi-filestore.mo share/locale/es/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/es/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/es/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/es/LC_MESSAGES/akonadi_etesync_resource.mo share/locale/es/LC_MESSAGES/akonadi_ews_resource.mo share/locale/es/LC_MESSAGES/akonadi_google_resource.mo share/locale/es/LC_MESSAGES/akonadi_ical_resource.mo share/locale/es/LC_MESSAGES/akonadi_icaldir_resource.mo share/locale/es/LC_MESSAGES/akonadi_imap_resource.mo share/locale/es/LC_MESSAGES/akonadi_maildir_resource.mo share/locale/es/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/es/LC_MESSAGES/akonadi_mbox_resource.mo share/locale/es/LC_MESSAGES/akonadi_migration_agent.mo share/locale/es/LC_MESSAGES/akonadi_mixedmaildir_resource.mo share/locale/es/LC_MESSAGES/akonadi_newmailnotifier_agent.mo share/locale/es/LC_MESSAGES/akonadi_openxchange_resource.mo share/locale/es/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/es/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/es/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/es/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/es/LC_MESSAGES/gid-migrator.mo share/locale/es/LC_MESSAGES/kio_akonadi.mo share/locale/es/LC_MESSAGES/libfolderarchivesettings.mo share/locale/et/LC_MESSAGES/akonadi-filestore.mo share/locale/et/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/et/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/et/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/et/LC_MESSAGES/akonadi_ews_resource.mo share/locale/et/LC_MESSAGES/akonadi_google_resource.mo share/locale/et/LC_MESSAGES/akonadi_ical_resource.mo share/locale/et/LC_MESSAGES/akonadi_icaldir_resource.mo share/locale/et/LC_MESSAGES/akonadi_imap_resource.mo share/locale/et/LC_MESSAGES/akonadi_maildir_resource.mo share/locale/et/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/et/LC_MESSAGES/akonadi_mbox_resource.mo share/locale/et/LC_MESSAGES/akonadi_migration_agent.mo share/locale/et/LC_MESSAGES/akonadi_mixedmaildir_resource.mo share/locale/et/LC_MESSAGES/akonadi_newmailnotifier_agent.mo share/locale/et/LC_MESSAGES/akonadi_openxchange_resource.mo share/locale/et/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/et/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/et/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/et/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/et/LC_MESSAGES/gid-migrator.mo share/locale/et/LC_MESSAGES/kio_akonadi.mo share/locale/et/LC_MESSAGES/libfolderarchivesettings.mo share/locale/eu/LC_MESSAGES/akonadi-filestore.mo share/locale/eu/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/eu/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/eu/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/eu/LC_MESSAGES/akonadi_etesync_resource.mo share/locale/eu/LC_MESSAGES/akonadi_ews_resource.mo share/locale/eu/LC_MESSAGES/akonadi_google_resource.mo share/locale/eu/LC_MESSAGES/akonadi_ical_resource.mo share/locale/eu/LC_MESSAGES/akonadi_icaldir_resource.mo share/locale/eu/LC_MESSAGES/akonadi_imap_resource.mo share/locale/eu/LC_MESSAGES/akonadi_maildir_resource.mo share/locale/eu/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/eu/LC_MESSAGES/akonadi_mbox_resource.mo share/locale/eu/LC_MESSAGES/akonadi_migration_agent.mo share/locale/eu/LC_MESSAGES/akonadi_mixedmaildir_resource.mo share/locale/eu/LC_MESSAGES/akonadi_newmailnotifier_agent.mo share/locale/eu/LC_MESSAGES/akonadi_openxchange_resource.mo share/locale/eu/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/eu/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/eu/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/eu/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/eu/LC_MESSAGES/gid-migrator.mo share/locale/eu/LC_MESSAGES/kio_akonadi.mo share/locale/eu/LC_MESSAGES/libfolderarchivesettings.mo share/locale/fi/LC_MESSAGES/akonadi-filestore.mo share/locale/fi/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/fi/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/fi/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/fi/LC_MESSAGES/akonadi_etesync_resource.mo share/locale/fi/LC_MESSAGES/akonadi_ews_resource.mo share/locale/fi/LC_MESSAGES/akonadi_google_resource.mo share/locale/fi/LC_MESSAGES/akonadi_ical_resource.mo share/locale/fi/LC_MESSAGES/akonadi_icaldir_resource.mo share/locale/fi/LC_MESSAGES/akonadi_imap_resource.mo share/locale/fi/LC_MESSAGES/akonadi_maildir_resource.mo share/locale/fi/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/fi/LC_MESSAGES/akonadi_mbox_resource.mo share/locale/fi/LC_MESSAGES/akonadi_migration_agent.mo share/locale/fi/LC_MESSAGES/akonadi_mixedmaildir_resource.mo share/locale/fi/LC_MESSAGES/akonadi_newmailnotifier_agent.mo share/locale/fi/LC_MESSAGES/akonadi_openxchange_resource.mo share/locale/fi/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/fi/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/fi/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/fi/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/fi/LC_MESSAGES/gid-migrator.mo share/locale/fi/LC_MESSAGES/kio_akonadi.mo share/locale/fi/LC_MESSAGES/libfolderarchivesettings.mo share/locale/fr/LC_MESSAGES/akonadi-filestore.mo share/locale/fr/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/fr/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/fr/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/fr/LC_MESSAGES/akonadi_etesync_resource.mo share/locale/fr/LC_MESSAGES/akonadi_ews_resource.mo share/locale/fr/LC_MESSAGES/akonadi_google_resource.mo share/locale/fr/LC_MESSAGES/akonadi_ical_resource.mo share/locale/fr/LC_MESSAGES/akonadi_icaldir_resource.mo share/locale/fr/LC_MESSAGES/akonadi_imap_resource.mo share/locale/fr/LC_MESSAGES/akonadi_maildir_resource.mo share/locale/fr/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/fr/LC_MESSAGES/akonadi_mbox_resource.mo share/locale/fr/LC_MESSAGES/akonadi_migration_agent.mo share/locale/fr/LC_MESSAGES/akonadi_mixedmaildir_resource.mo share/locale/fr/LC_MESSAGES/akonadi_newmailnotifier_agent.mo share/locale/fr/LC_MESSAGES/akonadi_openxchange_resource.mo share/locale/fr/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/fr/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/fr/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/fr/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/fr/LC_MESSAGES/gid-migrator.mo share/locale/fr/LC_MESSAGES/kio_akonadi.mo share/locale/fr/LC_MESSAGES/libfolderarchivesettings.mo share/locale/ga/LC_MESSAGES/akonadi-filestore.mo share/locale/ga/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/ga/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/ga/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/ga/LC_MESSAGES/akonadi_google_resource.mo share/locale/ga/LC_MESSAGES/akonadi_ical_resource.mo share/locale/ga/LC_MESSAGES/akonadi_icaldir_resource.mo share/locale/ga/LC_MESSAGES/akonadi_imap_resource.mo share/locale/ga/LC_MESSAGES/akonadi_maildir_resource.mo share/locale/ga/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/ga/LC_MESSAGES/akonadi_mbox_resource.mo share/locale/ga/LC_MESSAGES/akonadi_mixedmaildir_resource.mo share/locale/ga/LC_MESSAGES/akonadi_newmailnotifier_agent.mo share/locale/ga/LC_MESSAGES/akonadi_openxchange_resource.mo share/locale/ga/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/ga/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/ga/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/ga/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/ga/LC_MESSAGES/kio_akonadi.mo share/locale/gl/LC_MESSAGES/akonadi-filestore.mo share/locale/gl/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/gl/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/gl/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/gl/LC_MESSAGES/akonadi_etesync_resource.mo share/locale/gl/LC_MESSAGES/akonadi_ews_resource.mo share/locale/gl/LC_MESSAGES/akonadi_google_resource.mo share/locale/gl/LC_MESSAGES/akonadi_ical_resource.mo share/locale/gl/LC_MESSAGES/akonadi_icaldir_resource.mo share/locale/gl/LC_MESSAGES/akonadi_imap_resource.mo share/locale/gl/LC_MESSAGES/akonadi_maildir_resource.mo share/locale/gl/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/gl/LC_MESSAGES/akonadi_mbox_resource.mo share/locale/gl/LC_MESSAGES/akonadi_migration_agent.mo share/locale/gl/LC_MESSAGES/akonadi_mixedmaildir_resource.mo share/locale/gl/LC_MESSAGES/akonadi_newmailnotifier_agent.mo share/locale/gl/LC_MESSAGES/akonadi_openxchange_resource.mo share/locale/gl/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/gl/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/gl/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/gl/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/gl/LC_MESSAGES/gid-migrator.mo share/locale/gl/LC_MESSAGES/kio_akonadi.mo share/locale/gl/LC_MESSAGES/libfolderarchivesettings.mo share/locale/he/LC_MESSAGES/akonadi-filestore.mo share/locale/he/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/he/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/he/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/he/LC_MESSAGES/akonadi_etesync_resource.mo share/locale/he/LC_MESSAGES/akonadi_ews_resource.mo share/locale/he/LC_MESSAGES/akonadi_google_resource.mo share/locale/he/LC_MESSAGES/akonadi_ical_resource.mo share/locale/he/LC_MESSAGES/akonadi_icaldir_resource.mo share/locale/he/LC_MESSAGES/akonadi_imap_resource.mo share/locale/he/LC_MESSAGES/akonadi_maildir_resource.mo share/locale/he/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/he/LC_MESSAGES/akonadi_mbox_resource.mo share/locale/he/LC_MESSAGES/akonadi_migration_agent.mo share/locale/he/LC_MESSAGES/akonadi_mixedmaildir_resource.mo share/locale/he/LC_MESSAGES/akonadi_newmailnotifier_agent.mo share/locale/he/LC_MESSAGES/akonadi_openxchange_resource.mo share/locale/he/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/he/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/he/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/he/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/he/LC_MESSAGES/gid-migrator.mo share/locale/he/LC_MESSAGES/kio_akonadi.mo share/locale/he/LC_MESSAGES/libfolderarchivesettings.mo share/locale/hi/LC_MESSAGES/akonadi-filestore.mo share/locale/hi/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/hi/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/hi/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/hi/LC_MESSAGES/akonadi_etesync_resource.mo share/locale/hi/LC_MESSAGES/akonadi_ews_resource.mo share/locale/hi/LC_MESSAGES/akonadi_google_resource.mo share/locale/hi/LC_MESSAGES/akonadi_ical_resource.mo share/locale/hi/LC_MESSAGES/akonadi_icaldir_resource.mo share/locale/hi/LC_MESSAGES/akonadi_imap_resource.mo share/locale/hi/LC_MESSAGES/akonadi_maildir_resource.mo share/locale/hi/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/hi/LC_MESSAGES/akonadi_mbox_resource.mo share/locale/hi/LC_MESSAGES/akonadi_migration_agent.mo share/locale/hi/LC_MESSAGES/akonadi_mixedmaildir_resource.mo share/locale/hi/LC_MESSAGES/akonadi_newmailnotifier_agent.mo share/locale/hi/LC_MESSAGES/akonadi_openxchange_resource.mo share/locale/hi/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/hi/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/hi/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/hi/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/hi/LC_MESSAGES/gid-migrator.mo share/locale/hi/LC_MESSAGES/kio_akonadi.mo share/locale/hi/LC_MESSAGES/libfolderarchivesettings.mo share/locale/hr/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/hr/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/hr/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/hsb/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/hu/LC_MESSAGES/akonadi-filestore.mo share/locale/hu/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/hu/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/hu/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/hu/LC_MESSAGES/akonadi_google_resource.mo share/locale/hu/LC_MESSAGES/akonadi_ical_resource.mo share/locale/hu/LC_MESSAGES/akonadi_icaldir_resource.mo share/locale/hu/LC_MESSAGES/akonadi_imap_resource.mo share/locale/hu/LC_MESSAGES/akonadi_maildir_resource.mo share/locale/hu/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/hu/LC_MESSAGES/akonadi_mbox_resource.mo share/locale/hu/LC_MESSAGES/akonadi_migration_agent.mo share/locale/hu/LC_MESSAGES/akonadi_mixedmaildir_resource.mo share/locale/hu/LC_MESSAGES/akonadi_newmailnotifier_agent.mo share/locale/hu/LC_MESSAGES/akonadi_openxchange_resource.mo share/locale/hu/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/hu/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/hu/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/hu/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/hu/LC_MESSAGES/gid-migrator.mo share/locale/hu/LC_MESSAGES/kio_akonadi.mo share/locale/hu/LC_MESSAGES/libfolderarchivesettings.mo share/locale/ia/LC_MESSAGES/akonadi-filestore.mo share/locale/ia/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/ia/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/ia/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/ia/LC_MESSAGES/akonadi_etesync_resource.mo share/locale/ia/LC_MESSAGES/akonadi_ews_resource.mo share/locale/ia/LC_MESSAGES/akonadi_google_resource.mo share/locale/ia/LC_MESSAGES/akonadi_ical_resource.mo share/locale/ia/LC_MESSAGES/akonadi_icaldir_resource.mo share/locale/ia/LC_MESSAGES/akonadi_imap_resource.mo share/locale/ia/LC_MESSAGES/akonadi_maildir_resource.mo share/locale/ia/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/ia/LC_MESSAGES/akonadi_mbox_resource.mo share/locale/ia/LC_MESSAGES/akonadi_migration_agent.mo share/locale/ia/LC_MESSAGES/akonadi_mixedmaildir_resource.mo share/locale/ia/LC_MESSAGES/akonadi_newmailnotifier_agent.mo share/locale/ia/LC_MESSAGES/akonadi_openxchange_resource.mo share/locale/ia/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/ia/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/ia/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/ia/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/ia/LC_MESSAGES/gid-migrator.mo share/locale/ia/LC_MESSAGES/kio_akonadi.mo share/locale/ia/LC_MESSAGES/libfolderarchivesettings.mo share/locale/id/LC_MESSAGES/akonadi_newmailnotifier_agent.mo share/locale/it/LC_MESSAGES/akonadi-filestore.mo share/locale/it/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/it/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/it/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/it/LC_MESSAGES/akonadi_etesync_resource.mo share/locale/it/LC_MESSAGES/akonadi_ews_resource.mo share/locale/it/LC_MESSAGES/akonadi_google_resource.mo share/locale/it/LC_MESSAGES/akonadi_ical_resource.mo share/locale/it/LC_MESSAGES/akonadi_icaldir_resource.mo share/locale/it/LC_MESSAGES/akonadi_imap_resource.mo share/locale/it/LC_MESSAGES/akonadi_maildir_resource.mo share/locale/it/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/it/LC_MESSAGES/akonadi_mbox_resource.mo share/locale/it/LC_MESSAGES/akonadi_migration_agent.mo share/locale/it/LC_MESSAGES/akonadi_mixedmaildir_resource.mo share/locale/it/LC_MESSAGES/akonadi_newmailnotifier_agent.mo share/locale/it/LC_MESSAGES/akonadi_openxchange_resource.mo share/locale/it/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/it/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/it/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/it/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/it/LC_MESSAGES/gid-migrator.mo share/locale/it/LC_MESSAGES/kio_akonadi.mo share/locale/it/LC_MESSAGES/libfolderarchivesettings.mo share/locale/ja/LC_MESSAGES/akonadi-filestore.mo share/locale/ja/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/ja/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/ja/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/ja/LC_MESSAGES/akonadi_etesync_resource.mo share/locale/ja/LC_MESSAGES/akonadi_ews_resource.mo share/locale/ja/LC_MESSAGES/akonadi_google_resource.mo share/locale/ja/LC_MESSAGES/akonadi_ical_resource.mo share/locale/ja/LC_MESSAGES/akonadi_icaldir_resource.mo share/locale/ja/LC_MESSAGES/akonadi_imap_resource.mo share/locale/ja/LC_MESSAGES/akonadi_maildir_resource.mo share/locale/ja/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/ja/LC_MESSAGES/akonadi_mbox_resource.mo share/locale/ja/LC_MESSAGES/akonadi_migration_agent.mo share/locale/ja/LC_MESSAGES/akonadi_mixedmaildir_resource.mo share/locale/ja/LC_MESSAGES/akonadi_newmailnotifier_agent.mo share/locale/ja/LC_MESSAGES/akonadi_openxchange_resource.mo share/locale/ja/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/ja/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/ja/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/ja/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/ja/LC_MESSAGES/gid-migrator.mo share/locale/ja/LC_MESSAGES/kio_akonadi.mo share/locale/ja/LC_MESSAGES/libfolderarchivesettings.mo share/locale/ka/LC_MESSAGES/akonadi-filestore.mo share/locale/ka/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/ka/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/ka/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/ka/LC_MESSAGES/akonadi_etesync_resource.mo share/locale/ka/LC_MESSAGES/akonadi_ews_resource.mo share/locale/ka/LC_MESSAGES/akonadi_google_resource.mo share/locale/ka/LC_MESSAGES/akonadi_ical_resource.mo share/locale/ka/LC_MESSAGES/akonadi_icaldir_resource.mo share/locale/ka/LC_MESSAGES/akonadi_imap_resource.mo share/locale/ka/LC_MESSAGES/akonadi_maildir_resource.mo share/locale/ka/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/ka/LC_MESSAGES/akonadi_mbox_resource.mo share/locale/ka/LC_MESSAGES/akonadi_migration_agent.mo share/locale/ka/LC_MESSAGES/akonadi_mixedmaildir_resource.mo share/locale/ka/LC_MESSAGES/akonadi_newmailnotifier_agent.mo share/locale/ka/LC_MESSAGES/akonadi_openxchange_resource.mo share/locale/ka/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/ka/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/ka/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/ka/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/ka/LC_MESSAGES/gid-migrator.mo share/locale/ka/LC_MESSAGES/kio_akonadi.mo share/locale/ka/LC_MESSAGES/libfolderarchivesettings.mo share/locale/kk/LC_MESSAGES/akonadi-filestore.mo share/locale/kk/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/kk/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/kk/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/kk/LC_MESSAGES/akonadi_google_resource.mo share/locale/kk/LC_MESSAGES/akonadi_ical_resource.mo share/locale/kk/LC_MESSAGES/akonadi_icaldir_resource.mo share/locale/kk/LC_MESSAGES/akonadi_imap_resource.mo share/locale/kk/LC_MESSAGES/akonadi_maildir_resource.mo share/locale/kk/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/kk/LC_MESSAGES/akonadi_mbox_resource.mo share/locale/kk/LC_MESSAGES/akonadi_migration_agent.mo share/locale/kk/LC_MESSAGES/akonadi_mixedmaildir_resource.mo share/locale/kk/LC_MESSAGES/akonadi_newmailnotifier_agent.mo share/locale/kk/LC_MESSAGES/akonadi_openxchange_resource.mo share/locale/kk/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/kk/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/kk/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/kk/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/kk/LC_MESSAGES/gid-migrator.mo share/locale/kk/LC_MESSAGES/kio_akonadi.mo share/locale/km/LC_MESSAGES/akonadi-filestore.mo share/locale/km/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/km/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/km/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/km/LC_MESSAGES/akonadi_google_resource.mo share/locale/km/LC_MESSAGES/akonadi_ical_resource.mo share/locale/km/LC_MESSAGES/akonadi_imap_resource.mo share/locale/km/LC_MESSAGES/akonadi_maildir_resource.mo share/locale/km/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/km/LC_MESSAGES/akonadi_mbox_resource.mo share/locale/km/LC_MESSAGES/akonadi_mixedmaildir_resource.mo share/locale/km/LC_MESSAGES/akonadi_openxchange_resource.mo share/locale/km/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/km/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/km/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/km/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/km/LC_MESSAGES/kio_akonadi.mo share/locale/ko/LC_MESSAGES/akonadi-filestore.mo share/locale/ko/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/ko/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/ko/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/ko/LC_MESSAGES/akonadi_etesync_resource.mo share/locale/ko/LC_MESSAGES/akonadi_ews_resource.mo share/locale/ko/LC_MESSAGES/akonadi_google_resource.mo share/locale/ko/LC_MESSAGES/akonadi_ical_resource.mo share/locale/ko/LC_MESSAGES/akonadi_icaldir_resource.mo share/locale/ko/LC_MESSAGES/akonadi_imap_resource.mo share/locale/ko/LC_MESSAGES/akonadi_maildir_resource.mo share/locale/ko/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/ko/LC_MESSAGES/akonadi_mbox_resource.mo share/locale/ko/LC_MESSAGES/akonadi_migration_agent.mo share/locale/ko/LC_MESSAGES/akonadi_mixedmaildir_resource.mo share/locale/ko/LC_MESSAGES/akonadi_newmailnotifier_agent.mo share/locale/ko/LC_MESSAGES/akonadi_openxchange_resource.mo share/locale/ko/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/ko/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/ko/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/ko/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/ko/LC_MESSAGES/gid-migrator.mo share/locale/ko/LC_MESSAGES/kio_akonadi.mo share/locale/ko/LC_MESSAGES/libfolderarchivesettings.mo share/locale/lt/LC_MESSAGES/akonadi-filestore.mo share/locale/lt/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/lt/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/lt/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/lt/LC_MESSAGES/akonadi_etesync_resource.mo share/locale/lt/LC_MESSAGES/akonadi_ews_resource.mo share/locale/lt/LC_MESSAGES/akonadi_google_resource.mo share/locale/lt/LC_MESSAGES/akonadi_ical_resource.mo share/locale/lt/LC_MESSAGES/akonadi_icaldir_resource.mo share/locale/lt/LC_MESSAGES/akonadi_imap_resource.mo share/locale/lt/LC_MESSAGES/akonadi_maildir_resource.mo share/locale/lt/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/lt/LC_MESSAGES/akonadi_mbox_resource.mo share/locale/lt/LC_MESSAGES/akonadi_migration_agent.mo share/locale/lt/LC_MESSAGES/akonadi_mixedmaildir_resource.mo share/locale/lt/LC_MESSAGES/akonadi_newmailnotifier_agent.mo share/locale/lt/LC_MESSAGES/akonadi_openxchange_resource.mo share/locale/lt/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/lt/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/lt/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/lt/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/lt/LC_MESSAGES/gid-migrator.mo share/locale/lt/LC_MESSAGES/kio_akonadi.mo share/locale/lt/LC_MESSAGES/libfolderarchivesettings.mo share/locale/lv/LC_MESSAGES/akonadi-filestore.mo share/locale/lv/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/lv/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/lv/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/lv/LC_MESSAGES/akonadi_etesync_resource.mo share/locale/lv/LC_MESSAGES/akonadi_ews_resource.mo share/locale/lv/LC_MESSAGES/akonadi_google_resource.mo share/locale/lv/LC_MESSAGES/akonadi_ical_resource.mo share/locale/lv/LC_MESSAGES/akonadi_icaldir_resource.mo share/locale/lv/LC_MESSAGES/akonadi_imap_resource.mo share/locale/lv/LC_MESSAGES/akonadi_maildir_resource.mo share/locale/lv/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/lv/LC_MESSAGES/akonadi_mbox_resource.mo share/locale/lv/LC_MESSAGES/akonadi_migration_agent.mo share/locale/lv/LC_MESSAGES/akonadi_mixedmaildir_resource.mo share/locale/lv/LC_MESSAGES/akonadi_newmailnotifier_agent.mo share/locale/lv/LC_MESSAGES/akonadi_openxchange_resource.mo share/locale/lv/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/lv/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/lv/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/lv/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/lv/LC_MESSAGES/gid-migrator.mo share/locale/lv/LC_MESSAGES/kio_akonadi.mo share/locale/lv/LC_MESSAGES/libfolderarchivesettings.mo share/locale/mai/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/mai/LC_MESSAGES/akonadi_imap_resource.mo share/locale/mai/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/mr/LC_MESSAGES/akonadi-filestore.mo share/locale/mr/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/mr/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/mr/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/mr/LC_MESSAGES/akonadi_google_resource.mo share/locale/mr/LC_MESSAGES/akonadi_ical_resource.mo share/locale/mr/LC_MESSAGES/akonadi_icaldir_resource.mo share/locale/mr/LC_MESSAGES/akonadi_imap_resource.mo share/locale/mr/LC_MESSAGES/akonadi_maildir_resource.mo share/locale/mr/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/mr/LC_MESSAGES/akonadi_mbox_resource.mo share/locale/mr/LC_MESSAGES/akonadi_mixedmaildir_resource.mo share/locale/mr/LC_MESSAGES/akonadi_newmailnotifier_agent.mo share/locale/mr/LC_MESSAGES/akonadi_openxchange_resource.mo share/locale/mr/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/mr/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/mr/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/mr/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/mr/LC_MESSAGES/kio_akonadi.mo share/locale/nb/LC_MESSAGES/akonadi-filestore.mo share/locale/nb/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/nb/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/nb/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/nb/LC_MESSAGES/akonadi_google_resource.mo share/locale/nb/LC_MESSAGES/akonadi_ical_resource.mo share/locale/nb/LC_MESSAGES/akonadi_icaldir_resource.mo share/locale/nb/LC_MESSAGES/akonadi_imap_resource.mo share/locale/nb/LC_MESSAGES/akonadi_maildir_resource.mo share/locale/nb/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/nb/LC_MESSAGES/akonadi_mbox_resource.mo share/locale/nb/LC_MESSAGES/akonadi_migration_agent.mo share/locale/nb/LC_MESSAGES/akonadi_mixedmaildir_resource.mo share/locale/nb/LC_MESSAGES/akonadi_newmailnotifier_agent.mo share/locale/nb/LC_MESSAGES/akonadi_openxchange_resource.mo share/locale/nb/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/nb/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/nb/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/nb/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/nb/LC_MESSAGES/gid-migrator.mo share/locale/nb/LC_MESSAGES/kio_akonadi.mo share/locale/nb/LC_MESSAGES/libfolderarchivesettings.mo share/locale/nds/LC_MESSAGES/akonadi-filestore.mo share/locale/nds/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/nds/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/nds/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/nds/LC_MESSAGES/akonadi_google_resource.mo share/locale/nds/LC_MESSAGES/akonadi_ical_resource.mo share/locale/nds/LC_MESSAGES/akonadi_icaldir_resource.mo share/locale/nds/LC_MESSAGES/akonadi_imap_resource.mo share/locale/nds/LC_MESSAGES/akonadi_maildir_resource.mo share/locale/nds/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/nds/LC_MESSAGES/akonadi_mbox_resource.mo share/locale/nds/LC_MESSAGES/akonadi_migration_agent.mo share/locale/nds/LC_MESSAGES/akonadi_mixedmaildir_resource.mo share/locale/nds/LC_MESSAGES/akonadi_newmailnotifier_agent.mo share/locale/nds/LC_MESSAGES/akonadi_openxchange_resource.mo share/locale/nds/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/nds/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/nds/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/nds/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/nds/LC_MESSAGES/gid-migrator.mo share/locale/nds/LC_MESSAGES/kio_akonadi.mo share/locale/nds/LC_MESSAGES/libfolderarchivesettings.mo share/locale/nl/LC_MESSAGES/akonadi-filestore.mo share/locale/nl/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/nl/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/nl/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/nl/LC_MESSAGES/akonadi_etesync_resource.mo share/locale/nl/LC_MESSAGES/akonadi_ews_resource.mo share/locale/nl/LC_MESSAGES/akonadi_google_resource.mo share/locale/nl/LC_MESSAGES/akonadi_ical_resource.mo share/locale/nl/LC_MESSAGES/akonadi_icaldir_resource.mo share/locale/nl/LC_MESSAGES/akonadi_imap_resource.mo share/locale/nl/LC_MESSAGES/akonadi_maildir_resource.mo share/locale/nl/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/nl/LC_MESSAGES/akonadi_mbox_resource.mo share/locale/nl/LC_MESSAGES/akonadi_migration_agent.mo share/locale/nl/LC_MESSAGES/akonadi_mixedmaildir_resource.mo share/locale/nl/LC_MESSAGES/akonadi_newmailnotifier_agent.mo share/locale/nl/LC_MESSAGES/akonadi_openxchange_resource.mo share/locale/nl/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/nl/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/nl/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/nl/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/nl/LC_MESSAGES/gid-migrator.mo share/locale/nl/LC_MESSAGES/kio_akonadi.mo share/locale/nl/LC_MESSAGES/libfolderarchivesettings.mo share/locale/nn/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/nn/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/nn/LC_MESSAGES/akonadi_ical_resource.mo share/locale/nn/LC_MESSAGES/akonadi_imap_resource.mo share/locale/nn/LC_MESSAGES/akonadi_maildir_resource.mo share/locale/nn/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/nn/LC_MESSAGES/akonadi_mbox_resource.mo share/locale/nn/LC_MESSAGES/akonadi_openxchange_resource.mo share/locale/nn/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/nn/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/nn/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/nn/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/nn/LC_MESSAGES/kio_akonadi.mo share/locale/pa/LC_MESSAGES/akonadi-filestore.mo share/locale/pa/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/pa/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/pa/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/pa/LC_MESSAGES/akonadi_ical_resource.mo share/locale/pa/LC_MESSAGES/akonadi_imap_resource.mo share/locale/pa/LC_MESSAGES/akonadi_maildir_resource.mo share/locale/pa/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/pa/LC_MESSAGES/akonadi_mbox_resource.mo share/locale/pa/LC_MESSAGES/akonadi_mixedmaildir_resource.mo share/locale/pa/LC_MESSAGES/akonadi_newmailnotifier_agent.mo share/locale/pa/LC_MESSAGES/akonadi_openxchange_resource.mo share/locale/pa/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/pa/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/pa/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/pa/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/pa/LC_MESSAGES/kio_akonadi.mo share/locale/pl/LC_MESSAGES/akonadi-filestore.mo share/locale/pl/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/pl/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/pl/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/pl/LC_MESSAGES/akonadi_etesync_resource.mo share/locale/pl/LC_MESSAGES/akonadi_ews_resource.mo share/locale/pl/LC_MESSAGES/akonadi_google_resource.mo share/locale/pl/LC_MESSAGES/akonadi_ical_resource.mo share/locale/pl/LC_MESSAGES/akonadi_icaldir_resource.mo share/locale/pl/LC_MESSAGES/akonadi_imap_resource.mo share/locale/pl/LC_MESSAGES/akonadi_maildir_resource.mo share/locale/pl/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/pl/LC_MESSAGES/akonadi_mbox_resource.mo share/locale/pl/LC_MESSAGES/akonadi_migration_agent.mo share/locale/pl/LC_MESSAGES/akonadi_mixedmaildir_resource.mo share/locale/pl/LC_MESSAGES/akonadi_newmailnotifier_agent.mo share/locale/pl/LC_MESSAGES/akonadi_openxchange_resource.mo share/locale/pl/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/pl/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/pl/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/pl/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/pl/LC_MESSAGES/gid-migrator.mo share/locale/pl/LC_MESSAGES/kio_akonadi.mo share/locale/pl/LC_MESSAGES/libfolderarchivesettings.mo share/locale/pt/LC_MESSAGES/akonadi-filestore.mo share/locale/pt/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/pt/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/pt/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/pt/LC_MESSAGES/akonadi_etesync_resource.mo share/locale/pt/LC_MESSAGES/akonadi_ews_resource.mo share/locale/pt/LC_MESSAGES/akonadi_google_resource.mo share/locale/pt/LC_MESSAGES/akonadi_ical_resource.mo share/locale/pt/LC_MESSAGES/akonadi_icaldir_resource.mo share/locale/pt/LC_MESSAGES/akonadi_imap_resource.mo share/locale/pt/LC_MESSAGES/akonadi_maildir_resource.mo share/locale/pt/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/pt/LC_MESSAGES/akonadi_mbox_resource.mo share/locale/pt/LC_MESSAGES/akonadi_migration_agent.mo share/locale/pt/LC_MESSAGES/akonadi_mixedmaildir_resource.mo share/locale/pt/LC_MESSAGES/akonadi_newmailnotifier_agent.mo share/locale/pt/LC_MESSAGES/akonadi_openxchange_resource.mo share/locale/pt/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/pt/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/pt/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/pt/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/pt/LC_MESSAGES/gid-migrator.mo share/locale/pt/LC_MESSAGES/kio_akonadi.mo share/locale/pt/LC_MESSAGES/libfolderarchivesettings.mo share/locale/pt_BR/LC_MESSAGES/akonadi-filestore.mo share/locale/pt_BR/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/pt_BR/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/pt_BR/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/pt_BR/LC_MESSAGES/akonadi_etesync_resource.mo share/locale/pt_BR/LC_MESSAGES/akonadi_ews_resource.mo share/locale/pt_BR/LC_MESSAGES/akonadi_google_resource.mo share/locale/pt_BR/LC_MESSAGES/akonadi_ical_resource.mo share/locale/pt_BR/LC_MESSAGES/akonadi_icaldir_resource.mo share/locale/pt_BR/LC_MESSAGES/akonadi_imap_resource.mo share/locale/pt_BR/LC_MESSAGES/akonadi_maildir_resource.mo share/locale/pt_BR/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/pt_BR/LC_MESSAGES/akonadi_mbox_resource.mo share/locale/pt_BR/LC_MESSAGES/akonadi_migration_agent.mo share/locale/pt_BR/LC_MESSAGES/akonadi_mixedmaildir_resource.mo share/locale/pt_BR/LC_MESSAGES/akonadi_newmailnotifier_agent.mo share/locale/pt_BR/LC_MESSAGES/akonadi_openxchange_resource.mo share/locale/pt_BR/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/pt_BR/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/pt_BR/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/pt_BR/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/pt_BR/LC_MESSAGES/gid-migrator.mo share/locale/pt_BR/LC_MESSAGES/kio_akonadi.mo share/locale/pt_BR/LC_MESSAGES/libfolderarchivesettings.mo share/locale/ro/LC_MESSAGES/akonadi-filestore.mo share/locale/ro/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/ro/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/ro/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/ro/LC_MESSAGES/akonadi_ical_resource.mo share/locale/ro/LC_MESSAGES/akonadi_imap_resource.mo share/locale/ro/LC_MESSAGES/akonadi_maildir_resource.mo share/locale/ro/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/ro/LC_MESSAGES/akonadi_mbox_resource.mo share/locale/ro/LC_MESSAGES/akonadi_migration_agent.mo share/locale/ro/LC_MESSAGES/akonadi_mixedmaildir_resource.mo share/locale/ro/LC_MESSAGES/akonadi_openxchange_resource.mo share/locale/ro/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/ro/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/ro/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/ro/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/ro/LC_MESSAGES/kio_akonadi.mo share/locale/ru/LC_MESSAGES/akonadi-filestore.mo share/locale/ru/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/ru/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/ru/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/ru/LC_MESSAGES/akonadi_etesync_resource.mo share/locale/ru/LC_MESSAGES/akonadi_ews_resource.mo share/locale/ru/LC_MESSAGES/akonadi_google_resource.mo share/locale/ru/LC_MESSAGES/akonadi_ical_resource.mo share/locale/ru/LC_MESSAGES/akonadi_icaldir_resource.mo share/locale/ru/LC_MESSAGES/akonadi_imap_resource.mo share/locale/ru/LC_MESSAGES/akonadi_maildir_resource.mo share/locale/ru/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/ru/LC_MESSAGES/akonadi_mbox_resource.mo share/locale/ru/LC_MESSAGES/akonadi_migration_agent.mo share/locale/ru/LC_MESSAGES/akonadi_mixedmaildir_resource.mo share/locale/ru/LC_MESSAGES/akonadi_newmailnotifier_agent.mo share/locale/ru/LC_MESSAGES/akonadi_openxchange_resource.mo share/locale/ru/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/ru/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/ru/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/ru/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/ru/LC_MESSAGES/gid-migrator.mo share/locale/ru/LC_MESSAGES/kio_akonadi.mo share/locale/ru/LC_MESSAGES/libfolderarchivesettings.mo share/locale/sa/LC_MESSAGES/akonadi-filestore.mo share/locale/sa/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/sa/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/sa/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/sa/LC_MESSAGES/akonadi_etesync_resource.mo share/locale/sa/LC_MESSAGES/akonadi_ews_resource.mo share/locale/sa/LC_MESSAGES/akonadi_google_resource.mo share/locale/sa/LC_MESSAGES/akonadi_ical_resource.mo share/locale/sa/LC_MESSAGES/akonadi_icaldir_resource.mo share/locale/sa/LC_MESSAGES/akonadi_imap_resource.mo share/locale/sa/LC_MESSAGES/akonadi_maildir_resource.mo share/locale/sa/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/sa/LC_MESSAGES/akonadi_mbox_resource.mo share/locale/sa/LC_MESSAGES/akonadi_migration_agent.mo share/locale/sa/LC_MESSAGES/akonadi_mixedmaildir_resource.mo share/locale/sa/LC_MESSAGES/akonadi_newmailnotifier_agent.mo share/locale/sa/LC_MESSAGES/akonadi_openxchange_resource.mo share/locale/sa/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/sa/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/sa/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/sa/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/sa/LC_MESSAGES/gid-migrator.mo share/locale/sa/LC_MESSAGES/kio_akonadi.mo share/locale/sa/LC_MESSAGES/libfolderarchivesettings.mo share/locale/sk/LC_MESSAGES/akonadi-filestore.mo share/locale/sk/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/sk/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/sk/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/sk/LC_MESSAGES/akonadi_etesync_resource.mo share/locale/sk/LC_MESSAGES/akonadi_ews_resource.mo share/locale/sk/LC_MESSAGES/akonadi_google_resource.mo share/locale/sk/LC_MESSAGES/akonadi_ical_resource.mo share/locale/sk/LC_MESSAGES/akonadi_icaldir_resource.mo share/locale/sk/LC_MESSAGES/akonadi_imap_resource.mo share/locale/sk/LC_MESSAGES/akonadi_maildir_resource.mo share/locale/sk/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/sk/LC_MESSAGES/akonadi_mbox_resource.mo share/locale/sk/LC_MESSAGES/akonadi_migration_agent.mo share/locale/sk/LC_MESSAGES/akonadi_mixedmaildir_resource.mo share/locale/sk/LC_MESSAGES/akonadi_newmailnotifier_agent.mo share/locale/sk/LC_MESSAGES/akonadi_openxchange_resource.mo share/locale/sk/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/sk/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/sk/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/sk/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/sk/LC_MESSAGES/gid-migrator.mo share/locale/sk/LC_MESSAGES/kio_akonadi.mo share/locale/sk/LC_MESSAGES/libfolderarchivesettings.mo share/locale/sl/LC_MESSAGES/akonadi-filestore.mo share/locale/sl/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/sl/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/sl/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/sl/LC_MESSAGES/akonadi_etesync_resource.mo share/locale/sl/LC_MESSAGES/akonadi_ews_resource.mo share/locale/sl/LC_MESSAGES/akonadi_google_resource.mo share/locale/sl/LC_MESSAGES/akonadi_ical_resource.mo share/locale/sl/LC_MESSAGES/akonadi_icaldir_resource.mo share/locale/sl/LC_MESSAGES/akonadi_imap_resource.mo share/locale/sl/LC_MESSAGES/akonadi_maildir_resource.mo share/locale/sl/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/sl/LC_MESSAGES/akonadi_mbox_resource.mo share/locale/sl/LC_MESSAGES/akonadi_migration_agent.mo share/locale/sl/LC_MESSAGES/akonadi_mixedmaildir_resource.mo share/locale/sl/LC_MESSAGES/akonadi_newmailnotifier_agent.mo share/locale/sl/LC_MESSAGES/akonadi_openxchange_resource.mo share/locale/sl/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/sl/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/sl/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/sl/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/sl/LC_MESSAGES/gid-migrator.mo share/locale/sl/LC_MESSAGES/kio_akonadi.mo share/locale/sl/LC_MESSAGES/libfolderarchivesettings.mo share/locale/sq/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/sq/LC_MESSAGES/akonadi_ical_resource.mo share/locale/sq/LC_MESSAGES/akonadi_imap_resource.mo share/locale/sq/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/sq/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/sq/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/sq/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/sq/LC_MESSAGES/kio_akonadi.mo share/locale/sr/LC_MESSAGES/akonadi-filestore.mo share/locale/sr/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/sr/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/sr/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/sr/LC_MESSAGES/akonadi_google_resource.mo share/locale/sr/LC_MESSAGES/akonadi_ical_resource.mo share/locale/sr/LC_MESSAGES/akonadi_icaldir_resource.mo share/locale/sr/LC_MESSAGES/akonadi_imap_resource.mo share/locale/sr/LC_MESSAGES/akonadi_maildir_resource.mo share/locale/sr/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/sr/LC_MESSAGES/akonadi_mbox_resource.mo share/locale/sr/LC_MESSAGES/akonadi_migration_agent.mo share/locale/sr/LC_MESSAGES/akonadi_mixedmaildir_resource.mo share/locale/sr/LC_MESSAGES/akonadi_newmailnotifier_agent.mo share/locale/sr/LC_MESSAGES/akonadi_openxchange_resource.mo share/locale/sr/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/sr/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/sr/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/sr/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/sr/LC_MESSAGES/gid-migrator.mo share/locale/sr/LC_MESSAGES/kio_akonadi.mo share/locale/sr/LC_MESSAGES/libfolderarchivesettings.mo share/locale/sr@ijekavian/LC_MESSAGES/akonadi-filestore.mo share/locale/sr@ijekavian/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/sr@ijekavian/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/sr@ijekavian/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/sr@ijekavian/LC_MESSAGES/akonadi_google_resource.mo share/locale/sr@ijekavian/LC_MESSAGES/akonadi_ical_resource.mo share/locale/sr@ijekavian/LC_MESSAGES/akonadi_icaldir_resource.mo share/locale/sr@ijekavian/LC_MESSAGES/akonadi_imap_resource.mo share/locale/sr@ijekavian/LC_MESSAGES/akonadi_maildir_resource.mo share/locale/sr@ijekavian/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/sr@ijekavian/LC_MESSAGES/akonadi_mbox_resource.mo share/locale/sr@ijekavian/LC_MESSAGES/akonadi_migration_agent.mo share/locale/sr@ijekavian/LC_MESSAGES/akonadi_mixedmaildir_resource.mo share/locale/sr@ijekavian/LC_MESSAGES/akonadi_newmailnotifier_agent.mo share/locale/sr@ijekavian/LC_MESSAGES/akonadi_openxchange_resource.mo share/locale/sr@ijekavian/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/sr@ijekavian/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/sr@ijekavian/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/sr@ijekavian/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/sr@ijekavian/LC_MESSAGES/gid-migrator.mo share/locale/sr@ijekavian/LC_MESSAGES/kio_akonadi.mo share/locale/sr@ijekavian/LC_MESSAGES/libfolderarchivesettings.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/akonadi-filestore.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/akonadi_google_resource.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/akonadi_ical_resource.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/akonadi_icaldir_resource.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/akonadi_imap_resource.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/akonadi_maildir_resource.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/akonadi_mbox_resource.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/akonadi_migration_agent.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/akonadi_mixedmaildir_resource.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/akonadi_newmailnotifier_agent.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/akonadi_openxchange_resource.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/gid-migrator.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kio_akonadi.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/libfolderarchivesettings.mo share/locale/sr@latin/LC_MESSAGES/akonadi-filestore.mo share/locale/sr@latin/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/sr@latin/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/sr@latin/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/sr@latin/LC_MESSAGES/akonadi_google_resource.mo share/locale/sr@latin/LC_MESSAGES/akonadi_ical_resource.mo share/locale/sr@latin/LC_MESSAGES/akonadi_icaldir_resource.mo share/locale/sr@latin/LC_MESSAGES/akonadi_imap_resource.mo share/locale/sr@latin/LC_MESSAGES/akonadi_maildir_resource.mo share/locale/sr@latin/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/sr@latin/LC_MESSAGES/akonadi_mbox_resource.mo share/locale/sr@latin/LC_MESSAGES/akonadi_migration_agent.mo share/locale/sr@latin/LC_MESSAGES/akonadi_mixedmaildir_resource.mo share/locale/sr@latin/LC_MESSAGES/akonadi_newmailnotifier_agent.mo share/locale/sr@latin/LC_MESSAGES/akonadi_openxchange_resource.mo share/locale/sr@latin/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/sr@latin/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/sr@latin/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/sr@latin/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/sr@latin/LC_MESSAGES/gid-migrator.mo share/locale/sr@latin/LC_MESSAGES/kio_akonadi.mo share/locale/sr@latin/LC_MESSAGES/libfolderarchivesettings.mo share/locale/sv/LC_MESSAGES/akonadi-filestore.mo share/locale/sv/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/sv/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/sv/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/sv/LC_MESSAGES/akonadi_etesync_resource.mo share/locale/sv/LC_MESSAGES/akonadi_ews_resource.mo share/locale/sv/LC_MESSAGES/akonadi_google_resource.mo share/locale/sv/LC_MESSAGES/akonadi_ical_resource.mo share/locale/sv/LC_MESSAGES/akonadi_icaldir_resource.mo share/locale/sv/LC_MESSAGES/akonadi_imap_resource.mo share/locale/sv/LC_MESSAGES/akonadi_maildir_resource.mo share/locale/sv/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/sv/LC_MESSAGES/akonadi_mbox_resource.mo share/locale/sv/LC_MESSAGES/akonadi_migration_agent.mo share/locale/sv/LC_MESSAGES/akonadi_mixedmaildir_resource.mo share/locale/sv/LC_MESSAGES/akonadi_newmailnotifier_agent.mo share/locale/sv/LC_MESSAGES/akonadi_openxchange_resource.mo share/locale/sv/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/sv/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/sv/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/sv/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/sv/LC_MESSAGES/gid-migrator.mo share/locale/sv/LC_MESSAGES/kio_akonadi.mo share/locale/sv/LC_MESSAGES/libfolderarchivesettings.mo share/locale/ta/LC_MESSAGES/akonadi_maildir_resource.mo share/locale/ta/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/ta/LC_MESSAGES/akonadi_mixedmaildir_resource.mo share/locale/ta/LC_MESSAGES/akonadi_newmailnotifier_agent.mo share/locale/ta/LC_MESSAGES/libfolderarchivesettings.mo share/locale/th/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/th/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/th/LC_MESSAGES/akonadi_ical_resource.mo share/locale/tr/LC_MESSAGES/akonadi-filestore.mo share/locale/tr/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/tr/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/tr/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/tr/LC_MESSAGES/akonadi_etesync_resource.mo share/locale/tr/LC_MESSAGES/akonadi_ews_resource.mo share/locale/tr/LC_MESSAGES/akonadi_google_resource.mo share/locale/tr/LC_MESSAGES/akonadi_ical_resource.mo share/locale/tr/LC_MESSAGES/akonadi_icaldir_resource.mo share/locale/tr/LC_MESSAGES/akonadi_imap_resource.mo share/locale/tr/LC_MESSAGES/akonadi_maildir_resource.mo share/locale/tr/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/tr/LC_MESSAGES/akonadi_mbox_resource.mo share/locale/tr/LC_MESSAGES/akonadi_migration_agent.mo share/locale/tr/LC_MESSAGES/akonadi_mixedmaildir_resource.mo share/locale/tr/LC_MESSAGES/akonadi_newmailnotifier_agent.mo share/locale/tr/LC_MESSAGES/akonadi_openxchange_resource.mo share/locale/tr/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/tr/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/tr/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/tr/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/tr/LC_MESSAGES/gid-migrator.mo share/locale/tr/LC_MESSAGES/kio_akonadi.mo share/locale/tr/LC_MESSAGES/libfolderarchivesettings.mo share/locale/ug/LC_MESSAGES/akonadi-filestore.mo share/locale/ug/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/ug/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/ug/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/ug/LC_MESSAGES/akonadi_google_resource.mo share/locale/ug/LC_MESSAGES/akonadi_ical_resource.mo share/locale/ug/LC_MESSAGES/akonadi_icaldir_resource.mo share/locale/ug/LC_MESSAGES/akonadi_imap_resource.mo share/locale/ug/LC_MESSAGES/akonadi_maildir_resource.mo share/locale/ug/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/ug/LC_MESSAGES/akonadi_mbox_resource.mo share/locale/ug/LC_MESSAGES/akonadi_mixedmaildir_resource.mo share/locale/ug/LC_MESSAGES/akonadi_newmailnotifier_agent.mo share/locale/ug/LC_MESSAGES/akonadi_openxchange_resource.mo share/locale/ug/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/ug/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/ug/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/ug/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/ug/LC_MESSAGES/kio_akonadi.mo share/locale/uk/LC_MESSAGES/akonadi-filestore.mo share/locale/uk/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/uk/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/uk/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/uk/LC_MESSAGES/akonadi_etesync_resource.mo share/locale/uk/LC_MESSAGES/akonadi_ews_resource.mo share/locale/uk/LC_MESSAGES/akonadi_google_resource.mo share/locale/uk/LC_MESSAGES/akonadi_ical_resource.mo share/locale/uk/LC_MESSAGES/akonadi_icaldir_resource.mo share/locale/uk/LC_MESSAGES/akonadi_imap_resource.mo share/locale/uk/LC_MESSAGES/akonadi_maildir_resource.mo share/locale/uk/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/uk/LC_MESSAGES/akonadi_mbox_resource.mo share/locale/uk/LC_MESSAGES/akonadi_migration_agent.mo share/locale/uk/LC_MESSAGES/akonadi_mixedmaildir_resource.mo share/locale/uk/LC_MESSAGES/akonadi_newmailnotifier_agent.mo share/locale/uk/LC_MESSAGES/akonadi_openxchange_resource.mo share/locale/uk/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/uk/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/uk/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/uk/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/uk/LC_MESSAGES/gid-migrator.mo share/locale/uk/LC_MESSAGES/kio_akonadi.mo share/locale/uk/LC_MESSAGES/libfolderarchivesettings.mo share/locale/zh_CN/LC_MESSAGES/akonadi-filestore.mo share/locale/zh_CN/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/zh_CN/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/zh_CN/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/zh_CN/LC_MESSAGES/akonadi_etesync_resource.mo share/locale/zh_CN/LC_MESSAGES/akonadi_ews_resource.mo share/locale/zh_CN/LC_MESSAGES/akonadi_google_resource.mo share/locale/zh_CN/LC_MESSAGES/akonadi_ical_resource.mo share/locale/zh_CN/LC_MESSAGES/akonadi_icaldir_resource.mo share/locale/zh_CN/LC_MESSAGES/akonadi_imap_resource.mo share/locale/zh_CN/LC_MESSAGES/akonadi_maildir_resource.mo share/locale/zh_CN/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/zh_CN/LC_MESSAGES/akonadi_mbox_resource.mo share/locale/zh_CN/LC_MESSAGES/akonadi_migration_agent.mo share/locale/zh_CN/LC_MESSAGES/akonadi_mixedmaildir_resource.mo share/locale/zh_CN/LC_MESSAGES/akonadi_newmailnotifier_agent.mo share/locale/zh_CN/LC_MESSAGES/akonadi_openxchange_resource.mo share/locale/zh_CN/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/zh_CN/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/zh_CN/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/zh_CN/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/zh_CN/LC_MESSAGES/gid-migrator.mo share/locale/zh_CN/LC_MESSAGES/kio_akonadi.mo share/locale/zh_CN/LC_MESSAGES/libfolderarchivesettings.mo share/locale/zh_TW/LC_MESSAGES/akonadi-filestore.mo share/locale/zh_TW/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/zh_TW/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/zh_TW/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/zh_TW/LC_MESSAGES/akonadi_etesync_resource.mo share/locale/zh_TW/LC_MESSAGES/akonadi_ews_resource.mo share/locale/zh_TW/LC_MESSAGES/akonadi_google_resource.mo share/locale/zh_TW/LC_MESSAGES/akonadi_ical_resource.mo share/locale/zh_TW/LC_MESSAGES/akonadi_icaldir_resource.mo share/locale/zh_TW/LC_MESSAGES/akonadi_imap_resource.mo share/locale/zh_TW/LC_MESSAGES/akonadi_maildir_resource.mo share/locale/zh_TW/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/zh_TW/LC_MESSAGES/akonadi_mbox_resource.mo share/locale/zh_TW/LC_MESSAGES/akonadi_migration_agent.mo share/locale/zh_TW/LC_MESSAGES/akonadi_mixedmaildir_resource.mo share/locale/zh_TW/LC_MESSAGES/akonadi_newmailnotifier_agent.mo share/locale/zh_TW/LC_MESSAGES/akonadi_openxchange_resource.mo share/locale/zh_TW/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/zh_TW/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/zh_TW/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/zh_TW/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/zh_TW/LC_MESSAGES/gid-migrator.mo share/locale/zh_TW/LC_MESSAGES/kio_akonadi.mo share/locale/zh_TW/LC_MESSAGES/libfolderarchivesettings.mo share/mime/packages/kdepim-mime.xml share/qlogging-categories6/kdepim-runtime.categories share/qlogging-categories6/kdepim-runtime.renamecategories diff --git a/deskutils/keditbookmarks/distinfo b/deskutils/keditbookmarks/distinfo index f2fca6584fc9..576c9b917634 100644 --- a/deskutils/keditbookmarks/distinfo +++ b/deskutils/keditbookmarks/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1751381249 -SHA256 (KDE/release-service/25.04.3/keditbookmarks-25.04.3.tar.xz) = dff6e7d196f46aef79968b13bae6ec10093cdfb7e4526fde7310913ca72f513a -SIZE (KDE/release-service/25.04.3/keditbookmarks-25.04.3.tar.xz) = 262556 +TIMESTAMP = 1754646162 +SHA256 (KDE/release-service/25.08.0/keditbookmarks-25.08.0.tar.xz) = 8f06c46e58cf01e61d84d9eb2c468024d46f20ace9c0318ea37001c278fd54db +SIZE (KDE/release-service/25.08.0/keditbookmarks-25.08.0.tar.xz) = 262488 diff --git a/deskutils/kfind/distinfo b/deskutils/kfind/distinfo index 2f6c3d4bd967..dad653477970 100644 --- a/deskutils/kfind/distinfo +++ b/deskutils/kfind/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1751381252 -SHA256 (KDE/release-service/25.04.3/kfind-25.04.3.tar.xz) = 0c7d00b06fdefbb7a66f2665196b3072c17f6846679ea9b293be9bf31088c160 -SIZE (KDE/release-service/25.04.3/kfind-25.04.3.tar.xz) = 333336 +TIMESTAMP = 1754646165 +SHA256 (KDE/release-service/25.08.0/kfind-25.08.0.tar.xz) = 8f09a449aaa0bfddbf0922a8954bff281a7e14d53cd24374d171c52a722aea24 +SIZE (KDE/release-service/25.08.0/kfind-25.08.0.tar.xz) = 330800 diff --git a/deskutils/kmail-account-wizard/distinfo b/deskutils/kmail-account-wizard/distinfo index 3144a29b928b..09cfe78c157c 100644 --- a/deskutils/kmail-account-wizard/distinfo +++ b/deskutils/kmail-account-wizard/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1751381257 -SHA256 (KDE/release-service/25.04.3/kmail-account-wizard-25.04.3.tar.xz) = 0b4629ee1bf919e7a8496c644162591afc7ebfa36439555c1fbdeb9226e905fd -SIZE (KDE/release-service/25.04.3/kmail-account-wizard-25.04.3.tar.xz) = 171716 +TIMESTAMP = 1754646170 +SHA256 (KDE/release-service/25.08.0/kmail-account-wizard-25.08.0.tar.xz) = 6b7b78fbc370024308193024b276066bac2b5957dcca5ac54c2a5f60fdfd9c44 +SIZE (KDE/release-service/25.08.0/kmail-account-wizard-25.08.0.tar.xz) = 172724 diff --git a/deskutils/kmail/distinfo b/deskutils/kmail/distinfo index 1528f24753a7..0a862e04b3f6 100644 --- a/deskutils/kmail/distinfo +++ b/deskutils/kmail/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1751381254 -SHA256 (KDE/release-service/25.04.3/kmail-25.04.3.tar.xz) = 19ea73dc617b39772a8b3c92a0b86132bee6150ca4692d3f7b776bf74c41f509 -SIZE (KDE/release-service/25.04.3/kmail-25.04.3.tar.xz) = 7813204 +TIMESTAMP = 1754646167 +SHA256 (KDE/release-service/25.08.0/kmail-25.08.0.tar.xz) = da5d1c108a2626746ec205d175f840e51f23ac92f3da535dba56d644d41d9c46 +SIZE (KDE/release-service/25.08.0/kmail-25.08.0.tar.xz) = 7836352 diff --git a/deskutils/kongress/distinfo b/deskutils/kongress/distinfo index 341e6a816c02..3661b92246fe 100644 --- a/deskutils/kongress/distinfo +++ b/deskutils/kongress/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1751381259 -SHA256 (KDE/release-service/25.04.3/kongress-25.04.3.tar.xz) = 4bbd06c2da8edd3433c1ba0edd634d16161ace50a8b4b7c80cd991ee86d60201 -SIZE (KDE/release-service/25.04.3/kongress-25.04.3.tar.xz) = 164300 +TIMESTAMP = 1754646172 +SHA256 (KDE/release-service/25.08.0/kongress-25.08.0.tar.xz) = 0b72a9b8b885f2730b74fb4e0bc9ce2812d0b92d1e6ea089d74c82db44922637 +SIZE (KDE/release-service/25.08.0/kongress-25.08.0.tar.xz) = 164148 diff --git a/deskutils/kontact/distinfo b/deskutils/kontact/distinfo index b97d84d81108..1e29c5d8cece 100644 --- a/deskutils/kontact/distinfo +++ b/deskutils/kontact/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1751381261 -SHA256 (KDE/release-service/25.04.3/kontact-25.04.3.tar.xz) = ae7b65711117568ef1149628ed68ea81e08afa414b273d06a8654d1a6f537489 -SIZE (KDE/release-service/25.04.3/kontact-25.04.3.tar.xz) = 886252 +TIMESTAMP = 1754646174 +SHA256 (KDE/release-service/25.08.0/kontact-25.08.0.tar.xz) = ebcdecbbdd111eac06ec296347c1d2d847d7ef040b2675dbf5c48b25368f257e +SIZE (KDE/release-service/25.08.0/kontact-25.08.0.tar.xz) = 888404 diff --git a/deskutils/korganizer/distinfo b/deskutils/korganizer/distinfo index e169a6079fc5..a4392ffc43bc 100644 --- a/deskutils/korganizer/distinfo +++ b/deskutils/korganizer/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1751381264 -SHA256 (KDE/release-service/25.04.3/korganizer-25.04.3.tar.xz) = dd18b2c26bb1af4ccd4ee66a4a203c8c6ab59f639bc6f5a09a3b4c8d1bf55cee -SIZE (KDE/release-service/25.04.3/korganizer-25.04.3.tar.xz) = 2977332 +TIMESTAMP = 1754646177 +SHA256 (KDE/release-service/25.08.0/korganizer-25.08.0.tar.xz) = 74c7d57be2ecd00920c5cc1b079d33e849d7b36f02fe45259cad337da5b4f78b +SIZE (KDE/release-service/25.08.0/korganizer-25.08.0.tar.xz) = 3053852 diff --git a/deskutils/korganizer/pkg-plist b/deskutils/korganizer/pkg-plist index dbe8d279563d..2cd1d89b1006 100644 --- a/deskutils/korganizer/pkg-plist +++ b/deskutils/korganizer/pkg-plist @@ -1,231 +1,230 @@ bin/korganizer lib/libkorganizer_core.so.6 lib/libkorganizer_core.so.%%KDE_APPLICATIONS_SHLIB_VER%% lib/libkorganizer_interfaces.so.6 lib/libkorganizer_interfaces.so.%%KDE_APPLICATIONS_SHLIB_VER%% lib/libkorganizerprivate.so.6 lib/libkorganizerprivate.so.%%KDE_APPLICATIONS_SHLIB_VER%% %%QT_PLUGINDIR%%/korganizerpart.so %%QT_PLUGINDIR%%/pim6/kcms/korganizer/korganizer_configcolorsandfonts.so %%QT_PLUGINDIR%%/pim6/kcms/korganizer/korganizer_configfreebusy.so %%QT_PLUGINDIR%%/pim6/kcms/korganizer/korganizer_configgroupscheduling.so %%QT_PLUGINDIR%%/pim6/kcms/korganizer/korganizer_configmain.so %%QT_PLUGINDIR%%/pim6/kcms/korganizer/korganizer_configplugins.so %%QT_PLUGINDIR%%/pim6/kcms/korganizer/korganizer_configtime.so %%QT_PLUGINDIR%%/pim6/kcms/korganizer/korganizer_configviews.so %%QT_PLUGINDIR%%/pim6/kcms/korganizer/korganizer_userfeedback.so %%QT_PLUGINDIR%%/pim6/kcms/summary/kcmapptsummary.so %%QT_PLUGINDIR%%/pim6/kcms/summary/kcmsdsummary.so %%QT_PLUGINDIR%%/pim6/kcms/summary/kcmtodosummary.so %%QT_PLUGINDIR%%/pim6/kontact/kontact_journalplugin.so %%QT_PLUGINDIR%%/pim6/kontact/kontact_korganizerplugin.so %%QT_PLUGINDIR%%/pim6/kontact/kontact_specialdatesplugin.so %%QT_PLUGINDIR%%/pim6/kontact/kontact_todoplugin.so %%QT_PLUGINDIR%%/pim6/korganizer/datenums.so %%QT_PLUGINDIR%%/pim6/korganizer/lunarphases.so %%QT_PLUGINDIR%%/pim6/korganizer/picoftheday.so %%QT_PLUGINDIR%%/pim6/korganizer/thisdayinhistory.so share/applications/korganizer-import.desktop share/applications/korganizer-view.desktop share/applications/org.kde.korganizer.desktop share/config.kcfg/korganizer.kcfg share/dbus-1/interfaces/org.kde.Korganizer.Calendar.xml share/dbus-1/interfaces/org.kde.korganizer.Korganizer.xml share/dbus-1/services/org.kde.korganizer.service share/icons/hicolor/128x128/apps/korg-journal.png share/icons/hicolor/128x128/apps/korg-todo.png share/icons/hicolor/128x128/apps/korganizer.png share/icons/hicolor/128x128/apps/quickview.png share/icons/hicolor/16x16/apps/korg-journal.png share/icons/hicolor/16x16/apps/korg-todo.png share/icons/hicolor/16x16/apps/korganizer.png share/icons/hicolor/16x16/apps/quickview.png share/icons/hicolor/22x22/apps/korg-journal.png share/icons/hicolor/22x22/apps/korg-todo.png share/icons/hicolor/22x22/apps/korganizer.png share/icons/hicolor/22x22/apps/quickview.png share/icons/hicolor/256x256/apps/quickview.png share/icons/hicolor/32x32/apps/korg-journal.png share/icons/hicolor/32x32/apps/korg-todo.png share/icons/hicolor/32x32/apps/korganizer.png share/icons/hicolor/32x32/apps/quickview.png share/icons/hicolor/48x48/apps/korg-journal.png share/icons/hicolor/48x48/apps/korg-todo.png share/icons/hicolor/48x48/apps/korganizer.png share/icons/hicolor/48x48/apps/quickview.png share/icons/hicolor/64x64/apps/korg-journal.png share/icons/hicolor/64x64/apps/korg-todo.png share/icons/hicolor/64x64/apps/korganizer.png share/icons/hicolor/64x64/apps/quickview.png share/icons/hicolor/scalable/apps/korg-journal.svgz share/icons/hicolor/scalable/apps/korg-todo.svg share/icons/hicolor/scalable/apps/korganizer.svg share/icons/hicolor/scalable/apps/quickview.svgz share/icons/hicolor/scalable/status/moon-phase-first-quarter.svg share/icons/hicolor/scalable/status/moon-phase-full.svg share/icons/hicolor/scalable/status/moon-phase-last-quarter.svg share/icons/hicolor/scalable/status/moon-phase-new.svg -share/knsrcfiles/korganizer.knsrc %%DATADIR%%/sounds/alert.wav %%DATADIR%%/sounds/icemag.wav %%DATADIR%%/sounds/lightmag.wav %%DATADIR%%/sounds/onscreen.wav %%DATADIR%%/sounds/spinout.wav share/locale/af/LC_MESSAGES/korganizer.mo share/locale/af/LC_MESSAGES/korganizer_calendarplugins.mo share/locale/ar/LC_MESSAGES/korganizer.mo share/locale/ar/LC_MESSAGES/korganizer_calendarplugins.mo share/locale/ast/LC_MESSAGES/korganizer.mo share/locale/ast/LC_MESSAGES/korganizer_calendarplugins.mo share/locale/az/LC_MESSAGES/korganizer.mo share/locale/az/LC_MESSAGES/korganizer_calendarplugins.mo share/locale/be/LC_MESSAGES/korganizer.mo share/locale/be/LC_MESSAGES/korganizer_calendarplugins.mo share/locale/bg/LC_MESSAGES/korganizer.mo share/locale/bg/LC_MESSAGES/korganizer_calendarplugins.mo share/locale/br/LC_MESSAGES/korganizer.mo share/locale/br/LC_MESSAGES/korganizer_calendarplugins.mo share/locale/bs/LC_MESSAGES/korganizer.mo share/locale/bs/LC_MESSAGES/korganizer_calendarplugins.mo share/locale/ca/LC_MESSAGES/korganizer.mo share/locale/ca/LC_MESSAGES/korganizer_calendarplugins.mo share/locale/ca@valencia/LC_MESSAGES/korganizer.mo share/locale/ca@valencia/LC_MESSAGES/korganizer_calendarplugins.mo share/locale/cs/LC_MESSAGES/korganizer.mo share/locale/cs/LC_MESSAGES/korganizer_calendarplugins.mo share/locale/cy/LC_MESSAGES/korganizer.mo share/locale/cy/LC_MESSAGES/korganizer_calendarplugins.mo share/locale/da/LC_MESSAGES/korganizer.mo share/locale/da/LC_MESSAGES/korganizer_calendarplugins.mo share/locale/de/LC_MESSAGES/korganizer.mo share/locale/de/LC_MESSAGES/korganizer_calendarplugins.mo share/locale/el/LC_MESSAGES/korganizer.mo share/locale/el/LC_MESSAGES/korganizer_calendarplugins.mo share/locale/en_GB/LC_MESSAGES/korganizer.mo share/locale/en_GB/LC_MESSAGES/korganizer_calendarplugins.mo share/locale/eo/LC_MESSAGES/korganizer.mo share/locale/eo/LC_MESSAGES/korganizer_calendarplugins.mo share/locale/es/LC_MESSAGES/korganizer.mo share/locale/es/LC_MESSAGES/korganizer_calendarplugins.mo share/locale/et/LC_MESSAGES/korganizer.mo share/locale/et/LC_MESSAGES/korganizer_calendarplugins.mo share/locale/eu/LC_MESSAGES/korganizer.mo share/locale/eu/LC_MESSAGES/korganizer_calendarplugins.mo share/locale/fa/LC_MESSAGES/korganizer.mo share/locale/fa/LC_MESSAGES/korganizer_calendarplugins.mo share/locale/fi/LC_MESSAGES/korganizer.mo share/locale/fi/LC_MESSAGES/korganizer_calendarplugins.mo share/locale/fr/LC_MESSAGES/korganizer.mo share/locale/fr/LC_MESSAGES/korganizer_calendarplugins.mo share/locale/fy/LC_MESSAGES/korganizer.mo share/locale/fy/LC_MESSAGES/korganizer_calendarplugins.mo share/locale/ga/LC_MESSAGES/korganizer.mo share/locale/ga/LC_MESSAGES/korganizer_calendarplugins.mo share/locale/gl/LC_MESSAGES/korganizer.mo share/locale/gl/LC_MESSAGES/korganizer_calendarplugins.mo share/locale/he/LC_MESSAGES/korganizer.mo share/locale/he/LC_MESSAGES/korganizer_calendarplugins.mo share/locale/hi/LC_MESSAGES/korganizer.mo share/locale/hi/LC_MESSAGES/korganizer_calendarplugins.mo share/locale/hne/LC_MESSAGES/korganizer.mo share/locale/hne/LC_MESSAGES/korganizer_calendarplugins.mo share/locale/hr/LC_MESSAGES/korganizer.mo share/locale/hr/LC_MESSAGES/korganizer_calendarplugins.mo share/locale/hsb/LC_MESSAGES/korganizer.mo share/locale/hsb/LC_MESSAGES/korganizer_calendarplugins.mo share/locale/hu/LC_MESSAGES/korganizer.mo share/locale/hu/LC_MESSAGES/korganizer_calendarplugins.mo share/locale/ia/LC_MESSAGES/korganizer.mo share/locale/ia/LC_MESSAGES/korganizer_calendarplugins.mo share/locale/id/LC_MESSAGES/korganizer.mo share/locale/is/LC_MESSAGES/korganizer.mo share/locale/is/LC_MESSAGES/korganizer_calendarplugins.mo share/locale/it/LC_MESSAGES/korganizer.mo share/locale/it/LC_MESSAGES/korganizer_calendarplugins.mo share/locale/ja/LC_MESSAGES/korganizer.mo share/locale/ja/LC_MESSAGES/korganizer_calendarplugins.mo share/locale/ka/LC_MESSAGES/korganizer.mo share/locale/ka/LC_MESSAGES/korganizer_calendarplugins.mo share/locale/kk/LC_MESSAGES/korganizer.mo share/locale/kk/LC_MESSAGES/korganizer_calendarplugins.mo share/locale/km/LC_MESSAGES/korganizer.mo share/locale/km/LC_MESSAGES/korganizer_calendarplugins.mo share/locale/ko/LC_MESSAGES/korganizer.mo share/locale/ko/LC_MESSAGES/korganizer_calendarplugins.mo share/locale/lt/LC_MESSAGES/korganizer.mo share/locale/lt/LC_MESSAGES/korganizer_calendarplugins.mo share/locale/lv/LC_MESSAGES/korganizer.mo share/locale/lv/LC_MESSAGES/korganizer_calendarplugins.mo share/locale/mai/LC_MESSAGES/korganizer.mo share/locale/mai/LC_MESSAGES/korganizer_calendarplugins.mo share/locale/mk/LC_MESSAGES/korganizer.mo share/locale/mk/LC_MESSAGES/korganizer_calendarplugins.mo share/locale/mr/LC_MESSAGES/korganizer.mo share/locale/mr/LC_MESSAGES/korganizer_calendarplugins.mo share/locale/ms/LC_MESSAGES/korganizer.mo share/locale/ms/LC_MESSAGES/korganizer_calendarplugins.mo share/locale/nb/LC_MESSAGES/korganizer.mo share/locale/nb/LC_MESSAGES/korganizer_calendarplugins.mo share/locale/nds/LC_MESSAGES/korganizer.mo share/locale/nds/LC_MESSAGES/korganizer_calendarplugins.mo share/locale/ne/LC_MESSAGES/korganizer.mo share/locale/ne/LC_MESSAGES/korganizer_calendarplugins.mo share/locale/nl/LC_MESSAGES/korganizer.mo share/locale/nl/LC_MESSAGES/korganizer_calendarplugins.mo share/locale/nn/LC_MESSAGES/korganizer.mo share/locale/nn/LC_MESSAGES/korganizer_calendarplugins.mo share/locale/pa/LC_MESSAGES/korganizer.mo share/locale/pa/LC_MESSAGES/korganizer_calendarplugins.mo share/locale/pl/LC_MESSAGES/korganizer.mo share/locale/pl/LC_MESSAGES/korganizer_calendarplugins.mo share/locale/pt/LC_MESSAGES/korganizer.mo share/locale/pt/LC_MESSAGES/korganizer_calendarplugins.mo share/locale/pt_BR/LC_MESSAGES/korganizer.mo share/locale/pt_BR/LC_MESSAGES/korganizer_calendarplugins.mo share/locale/ro/LC_MESSAGES/korganizer.mo share/locale/ro/LC_MESSAGES/korganizer_calendarplugins.mo share/locale/ru/LC_MESSAGES/korganizer.mo share/locale/ru/LC_MESSAGES/korganizer_calendarplugins.mo share/locale/sa/LC_MESSAGES/korganizer.mo share/locale/sa/LC_MESSAGES/korganizer_calendarplugins.mo share/locale/se/LC_MESSAGES/korganizer.mo share/locale/se/LC_MESSAGES/korganizer_calendarplugins.mo share/locale/sk/LC_MESSAGES/korganizer.mo share/locale/sk/LC_MESSAGES/korganizer_calendarplugins.mo share/locale/sl/LC_MESSAGES/korganizer.mo share/locale/sl/LC_MESSAGES/korganizer_calendarplugins.mo share/locale/sq/LC_MESSAGES/korganizer.mo share/locale/sq/LC_MESSAGES/korganizer_calendarplugins.mo share/locale/sr/LC_MESSAGES/korganizer_calendarplugins.mo share/locale/sr@ijekavian/LC_MESSAGES/korganizer_calendarplugins.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/korganizer_calendarplugins.mo share/locale/sr@latin/LC_MESSAGES/korganizer_calendarplugins.mo share/locale/sv/LC_MESSAGES/korganizer.mo share/locale/sv/LC_MESSAGES/korganizer_calendarplugins.mo share/locale/ta/LC_MESSAGES/korganizer.mo share/locale/ta/LC_MESSAGES/korganizer_calendarplugins.mo share/locale/tg/LC_MESSAGES/korganizer.mo share/locale/tg/LC_MESSAGES/korganizer_calendarplugins.mo share/locale/th/LC_MESSAGES/korganizer.mo share/locale/th/LC_MESSAGES/korganizer_calendarplugins.mo share/locale/tr/LC_MESSAGES/korganizer.mo share/locale/tr/LC_MESSAGES/korganizer_calendarplugins.mo share/locale/ug/LC_MESSAGES/korganizer.mo share/locale/ug/LC_MESSAGES/korganizer_calendarplugins.mo share/locale/uk/LC_MESSAGES/korganizer.mo share/locale/uk/LC_MESSAGES/korganizer_calendarplugins.mo share/locale/uz/LC_MESSAGES/korganizer.mo share/locale/uz/LC_MESSAGES/korganizer_calendarplugins.mo share/locale/uz@cyrillic/LC_MESSAGES/korganizer.mo share/locale/uz@cyrillic/LC_MESSAGES/korganizer_calendarplugins.mo share/locale/wa/LC_MESSAGES/korganizer.mo share/locale/wa/LC_MESSAGES/korganizer_calendarplugins.mo share/locale/xh/LC_MESSAGES/korganizer.mo share/locale/xh/LC_MESSAGES/korganizer_calendarplugins.mo share/locale/zh_CN/LC_MESSAGES/korganizer.mo share/locale/zh_CN/LC_MESSAGES/korganizer_calendarplugins.mo share/locale/zh_TW/LC_MESSAGES/korganizer.mo share/locale/zh_TW/LC_MESSAGES/korganizer_calendarplugins.mo share/metainfo/org.kde.korganizer.appdata.xml share/qlogging-categories6/korganizer.categories share/qlogging-categories6/korganizer.renamecategories diff --git a/deskutils/kruler/distinfo b/deskutils/kruler/distinfo index 19f1f8afa73b..d9cb3ceed6fb 100644 --- a/deskutils/kruler/distinfo +++ b/deskutils/kruler/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1751381266 -SHA256 (KDE/release-service/25.04.3/kruler-25.04.3.tar.xz) = 708d897f213cb3fd88cbac8629957b1d683a8fc5f876d74f47bc33434837742f -SIZE (KDE/release-service/25.04.3/kruler-25.04.3.tar.xz) = 287084 +TIMESTAMP = 1754646179 +SHA256 (KDE/release-service/25.08.0/kruler-25.08.0.tar.xz) = acc49d6e7124958d48caa3016444b0a0c883f24e63b5c13f1de645f19f20938b +SIZE (KDE/release-service/25.08.0/kruler-25.08.0.tar.xz) = 287448 diff --git a/deskutils/kweather/distinfo b/deskutils/kweather/distinfo index 1f364e30fb46..a60e554235ef 100644 --- a/deskutils/kweather/distinfo +++ b/deskutils/kweather/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1751381267 -SHA256 (KDE/release-service/25.04.3/kweather-25.04.3.tar.xz) = d525088b84628aa45e4a1c504f5227ac0b66711a32b545c2eefc82649cf362b1 -SIZE (KDE/release-service/25.04.3/kweather-25.04.3.tar.xz) = 366216 +TIMESTAMP = 1754646180 +SHA256 (KDE/release-service/25.08.0/kweather-25.08.0.tar.xz) = acd8d383abc97323a08283f5c34511d05a06b7019320d024968a01ccf6fe2106 +SIZE (KDE/release-service/25.08.0/kweather-25.08.0.tar.xz) = 366672 diff --git a/deskutils/kweathercore/distinfo b/deskutils/kweathercore/distinfo index 4dfa6647c9a5..1897532c3577 100644 --- a/deskutils/kweathercore/distinfo +++ b/deskutils/kweathercore/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1751381267 -SHA256 (KDE/release-service/25.04.3/kweathercore-25.04.3.tar.xz) = c9914329e77e4dd460a1e0b8d0744773775c2494f5be3f4f3efacac8d3e006a9 -SIZE (KDE/release-service/25.04.3/kweathercore-25.04.3.tar.xz) = 78712 +TIMESTAMP = 1754646180 +SHA256 (KDE/release-service/25.08.0/kweathercore-25.08.0.tar.xz) = 1b97e95aec8f1930244ae5c400712056109b3ed22fa5b6994834cd714bbe324a +SIZE (KDE/release-service/25.08.0/kweathercore-25.08.0.tar.xz) = 78728 diff --git a/deskutils/libkdepim/distinfo b/deskutils/libkdepim/distinfo index 4c4a247a9167..4fbae4f133c2 100644 --- a/deskutils/libkdepim/distinfo +++ b/deskutils/libkdepim/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1751381269 -SHA256 (KDE/release-service/25.04.3/libkdepim-25.04.3.tar.xz) = 6d9c78063db5234539e5f3fddbecbca61948b79e60073ec215a7ffdad62418fa -SIZE (KDE/release-service/25.04.3/libkdepim-25.04.3.tar.xz) = 283020 +TIMESTAMP = 1754646182 +SHA256 (KDE/release-service/25.08.0/libkdepim-25.08.0.tar.xz) = 4daae877b8d10c4bd1fe70d0dd02dc132fdafe0ff6062727a32dcd88d4eff61a +SIZE (KDE/release-service/25.08.0/libkdepim-25.08.0.tar.xz) = 285188 diff --git a/deskutils/mbox-importer/distinfo b/deskutils/mbox-importer/distinfo index 3a6065d1da10..94fd6017c900 100644 --- a/deskutils/mbox-importer/distinfo +++ b/deskutils/mbox-importer/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1751381272 -SHA256 (KDE/release-service/25.04.3/mbox-importer-25.04.3.tar.xz) = 116992fe3927a74f272fa9b8ab1bb2f494dcdba062d045d9d1e56d248a52d3f3 -SIZE (KDE/release-service/25.04.3/mbox-importer-25.04.3.tar.xz) = 31848 +TIMESTAMP = 1754646185 +SHA256 (KDE/release-service/25.08.0/mbox-importer-25.08.0.tar.xz) = 98fca7d6940d41de21d7bd8b399596a13686d95fdd466b2dd3ddbaf40552487b +SIZE (KDE/release-service/25.08.0/mbox-importer-25.08.0.tar.xz) = 34148 diff --git a/deskutils/merkuro/distinfo b/deskutils/merkuro/distinfo index c03798a1d0a0..485e96886a73 100644 --- a/deskutils/merkuro/distinfo +++ b/deskutils/merkuro/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1751381274 -SHA256 (KDE/release-service/25.04.3/merkuro-25.04.3.tar.xz) = c213e7f4bd746e699ec56315cd26393124283e9190a5e9c2c3adf21811cdde27 -SIZE (KDE/release-service/25.04.3/merkuro-25.04.3.tar.xz) = 822428 +TIMESTAMP = 1754646187 +SHA256 (KDE/release-service/25.08.0/merkuro-25.08.0.tar.xz) = 0a6b2a7b54b647604955b23df98da32f7799c6c599f8fd7f403f5c582e909218 +SIZE (KDE/release-service/25.08.0/merkuro-25.08.0.tar.xz) = 826652 diff --git a/deskutils/merkuro/pkg-plist b/deskutils/merkuro/pkg-plist index 496ce99edcb4..1cd4b5eeedf6 100644 --- a/deskutils/merkuro/pkg-plist +++ b/deskutils/merkuro/pkg-plist @@ -1,218 +1,207 @@ 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/CollectionChooserPage.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/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_contactplugin.so %%QT_QMLDIR%%/org/kde/merkuro/contact/merkuro_contact.qmltypes %%QT_QMLDIR%%/org/kde/merkuro/contact/private/AddressBookMenu.qml %%QT_QMLDIR%%/org/kde/merkuro/contact/private/ContactGroupPage.qml %%QT_QMLDIR%%/org/kde/merkuro/contact/private/ContactPage.qml %%QT_QMLDIR%%/org/kde/merkuro/contact/private/ContactsPage.qml %%QT_QMLDIR%%/org/kde/merkuro/contact/private/DeleteContactDialog.qml %%QT_QMLDIR%%/org/kde/merkuro/contact/private/Header.qml %%QT_QMLDIR%%/org/kde/merkuro/contact/private/PhoneNumberDialog.qml %%QT_QMLDIR%%/org/kde/merkuro/contact/private/QrCodePage.qml %%QT_QMLDIR%%/org/kde/merkuro/contact/private/contact_editor/AddressBookEditorCard.qml %%QT_QMLDIR%%/org/kde/merkuro/contact/private/contact_editor/BusinessEditorCard.qml %%QT_QMLDIR%%/org/kde/merkuro/contact/private/contact_editor/ContactEditorPage.qml %%QT_QMLDIR%%/org/kde/merkuro/contact/private/contact_editor/ContactGroupEditorPage.qml %%QT_QMLDIR%%/org/kde/merkuro/contact/private/contact_editor/EmailEditorCard.qml %%QT_QMLDIR%%/org/kde/merkuro/contact/private/contact_editor/InstantMessengerEditorCard.qml %%QT_QMLDIR%%/org/kde/merkuro/contact/private/contact_editor/PersonalInfoEditorCard.qml %%QT_QMLDIR%%/org/kde/merkuro/contact/private/contact_editor/PhoneEditorCard.qml %%QT_QMLDIR%%/org/kde/merkuro/contact/private/contact_editor/PhotoEditor.qml %%QT_QMLDIR%%/org/kde/merkuro/contact/qmldir %%QT_QMLDIR%%/org/kde/merkuro/contact/resources/fallbackBackground.png share/applications/org.kde.merkuro.calendar.desktop share/applications/org.kde.merkuro.contact.desktop share/applications/org.kde.merkuro.desktop share/applications/org.kde.merkuro.mail.desktop share/icons/hicolor/128x128/apps/org.kde.merkuro.calendar.png share/icons/hicolor/128x128/apps/org.kde.merkuro.contact.png share/icons/hicolor/128x128/apps/org.kde.merkuro.mail.png share/icons/hicolor/16x16/apps/org.kde.merkuro.calendar.png share/icons/hicolor/16x16/apps/org.kde.merkuro.mail.png share/icons/hicolor/24x24/apps/org.kde.merkuro.calendar.png share/icons/hicolor/24x24/apps/org.kde.merkuro.mail.png share/icons/hicolor/256x256/apps/org.kde.merkuro.calendar.png share/icons/hicolor/256x256/apps/org.kde.merkuro.contact.png share/icons/hicolor/256x256/apps/org.kde.merkuro.mail.png share/icons/hicolor/32x32/apps/org.kde.merkuro.calendar.png share/icons/hicolor/32x32/apps/org.kde.merkuro.mail.png share/icons/hicolor/48x48/apps/org.kde.merkuro.calendar.png share/icons/hicolor/48x48/apps/org.kde.merkuro.contact.png share/icons/hicolor/48x48/apps/org.kde.merkuro.mail.png share/knotifications6/merkuro.mail.notifyrc share/locale/ar/LC_MESSAGES/merkuro.mo share/locale/ar/LC_MESSAGES/merkurolauncher.mo share/locale/ar/LC_MESSAGES/plasma_applet_org.kde.merkuro.contact.mo share/locale/ast/LC_MESSAGES/merkuro.mo share/locale/ast/LC_MESSAGES/plasma_applet_org.kde.merkuro.contact.mo share/locale/az/LC_MESSAGES/merkuro.mo share/locale/az/LC_MESSAGES/plasma_applet_org.kde.merkuro.contact.mo share/locale/bg/LC_MESSAGES/merkuro.mo share/locale/bg/LC_MESSAGES/merkurolauncher.mo share/locale/bg/LC_MESSAGES/plasma_applet_org.kde.merkuro.contact.mo share/locale/ca/LC_MESSAGES/merkuro.mo share/locale/ca/LC_MESSAGES/merkurolauncher.mo share/locale/ca/LC_MESSAGES/plasma_applet_org.kde.merkuro.contact.mo share/locale/ca@valencia/LC_MESSAGES/merkuro.mo share/locale/ca@valencia/LC_MESSAGES/merkurolauncher.mo share/locale/ca@valencia/LC_MESSAGES/plasma_applet_org.kde.merkuro.contact.mo share/locale/cs/LC_MESSAGES/merkuro.mo share/locale/cs/LC_MESSAGES/merkurolauncher.mo share/locale/cs/LC_MESSAGES/plasma_applet_org.kde.merkuro.contact.mo share/locale/da/LC_MESSAGES/merkuro.mo share/locale/da/LC_MESSAGES/plasma_applet_org.kde.merkuro.contact.mo share/locale/de/LC_MESSAGES/merkuro.mo share/locale/de/LC_MESSAGES/merkurolauncher.mo share/locale/de/LC_MESSAGES/plasma_applet_org.kde.merkuro.contact.mo share/locale/el/LC_MESSAGES/merkuro.mo share/locale/en_GB/LC_MESSAGES/merkuro.mo share/locale/en_GB/LC_MESSAGES/merkurolauncher.mo share/locale/en_GB/LC_MESSAGES/plasma_applet_org.kde.merkuro.contact.mo share/locale/eo/LC_MESSAGES/merkuro.mo share/locale/eo/LC_MESSAGES/plasma_applet_org.kde.merkuro.contact.mo share/locale/es/LC_MESSAGES/merkuro.mo share/locale/es/LC_MESSAGES/merkurolauncher.mo share/locale/es/LC_MESSAGES/plasma_applet_org.kde.merkuro.contact.mo share/locale/eu/LC_MESSAGES/merkuro.mo share/locale/eu/LC_MESSAGES/merkurolauncher.mo share/locale/eu/LC_MESSAGES/plasma_applet_org.kde.merkuro.contact.mo share/locale/fi/LC_MESSAGES/merkuro.mo share/locale/fi/LC_MESSAGES/merkurolauncher.mo share/locale/fi/LC_MESSAGES/plasma_applet_org.kde.merkuro.contact.mo share/locale/fr/LC_MESSAGES/merkuro.mo share/locale/fr/LC_MESSAGES/merkurolauncher.mo share/locale/fr/LC_MESSAGES/plasma_applet_org.kde.merkuro.contact.mo share/locale/gl/LC_MESSAGES/merkuro.mo share/locale/gl/LC_MESSAGES/merkurolauncher.mo share/locale/gl/LC_MESSAGES/plasma_applet_org.kde.merkuro.contact.mo share/locale/he/LC_MESSAGES/merkuro.mo share/locale/he/LC_MESSAGES/merkurolauncher.mo share/locale/he/LC_MESSAGES/plasma_applet_org.kde.merkuro.contact.mo share/locale/hi/LC_MESSAGES/merkuro.mo share/locale/hi/LC_MESSAGES/merkurolauncher.mo share/locale/hi/LC_MESSAGES/plasma_applet_org.kde.merkuro.contact.mo share/locale/hu/LC_MESSAGES/merkuro.mo share/locale/hu/LC_MESSAGES/merkurolauncher.mo share/locale/hu/LC_MESSAGES/plasma_applet_org.kde.merkuro.contact.mo share/locale/ia/LC_MESSAGES/merkuro.mo share/locale/ia/LC_MESSAGES/merkurolauncher.mo share/locale/ia/LC_MESSAGES/plasma_applet_org.kde.merkuro.contact.mo share/locale/id/LC_MESSAGES/merkuro.mo share/locale/id/LC_MESSAGES/plasma_applet_org.kde.merkuro.contact.mo share/locale/it/LC_MESSAGES/merkuro.mo share/locale/it/LC_MESSAGES/merkurolauncher.mo share/locale/it/LC_MESSAGES/plasma_applet_org.kde.merkuro.contact.mo share/locale/ja/LC_MESSAGES/merkuro.mo share/locale/ja/LC_MESSAGES/plasma_applet_org.kde.merkuro.contact.mo share/locale/ka/LC_MESSAGES/merkuro.mo share/locale/ka/LC_MESSAGES/merkurolauncher.mo share/locale/ka/LC_MESSAGES/plasma_applet_org.kde.merkuro.contact.mo share/locale/ko/LC_MESSAGES/merkuro.mo share/locale/ko/LC_MESSAGES/merkurolauncher.mo share/locale/ko/LC_MESSAGES/plasma_applet_org.kde.merkuro.contact.mo share/locale/lt/LC_MESSAGES/merkuro.mo share/locale/lt/LC_MESSAGES/plasma_applet_org.kde.merkuro.contact.mo share/locale/lv/LC_MESSAGES/merkuro.mo share/locale/lv/LC_MESSAGES/merkurolauncher.mo share/locale/lv/LC_MESSAGES/plasma_applet_org.kde.merkuro.contact.mo share/locale/nl/LC_MESSAGES/merkuro.mo share/locale/nl/LC_MESSAGES/merkurolauncher.mo share/locale/nl/LC_MESSAGES/plasma_applet_org.kde.merkuro.contact.mo share/locale/nn/LC_MESSAGES/plasma_applet_org.kde.merkuro.contact.mo share/locale/pl/LC_MESSAGES/merkuro.mo share/locale/pl/LC_MESSAGES/merkurolauncher.mo share/locale/pl/LC_MESSAGES/plasma_applet_org.kde.merkuro.contact.mo share/locale/pt/LC_MESSAGES/merkuro.mo share/locale/pt/LC_MESSAGES/plasma_applet_org.kde.merkuro.contact.mo share/locale/pt_BR/LC_MESSAGES/merkuro.mo share/locale/pt_BR/LC_MESSAGES/plasma_applet_org.kde.merkuro.contact.mo share/locale/ru/LC_MESSAGES/merkuro.mo share/locale/ru/LC_MESSAGES/merkurolauncher.mo share/locale/ru/LC_MESSAGES/plasma_applet_org.kde.merkuro.contact.mo share/locale/sa/LC_MESSAGES/merkuro.mo share/locale/sa/LC_MESSAGES/merkurolauncher.mo share/locale/sa/LC_MESSAGES/plasma_applet_org.kde.merkuro.contact.mo share/locale/sk/LC_MESSAGES/merkuro.mo share/locale/sk/LC_MESSAGES/merkurolauncher.mo share/locale/sk/LC_MESSAGES/plasma_applet_org.kde.merkuro.contact.mo share/locale/sl/LC_MESSAGES/merkuro.mo share/locale/sl/LC_MESSAGES/merkurolauncher.mo share/locale/sl/LC_MESSAGES/plasma_applet_org.kde.merkuro.contact.mo share/locale/sv/LC_MESSAGES/merkuro.mo share/locale/sv/LC_MESSAGES/merkurolauncher.mo share/locale/sv/LC_MESSAGES/plasma_applet_org.kde.merkuro.contact.mo share/locale/ta/LC_MESSAGES/merkuro.mo share/locale/ta/LC_MESSAGES/plasma_applet_org.kde.merkuro.contact.mo share/locale/tr/LC_MESSAGES/merkuro.mo share/locale/tr/LC_MESSAGES/merkurolauncher.mo share/locale/tr/LC_MESSAGES/plasma_applet_org.kde.merkuro.contact.mo share/locale/uk/LC_MESSAGES/merkuro.mo share/locale/uk/LC_MESSAGES/merkurolauncher.mo share/locale/uk/LC_MESSAGES/plasma_applet_org.kde.merkuro.contact.mo share/locale/zh_CN/LC_MESSAGES/merkuro.mo share/locale/zh_CN/LC_MESSAGES/merkurolauncher.mo share/locale/zh_CN/LC_MESSAGES/plasma_applet_org.kde.merkuro.contact.mo share/locale/zh_TW/LC_MESSAGES/merkuro.mo share/locale/zh_TW/LC_MESSAGES/merkurolauncher.mo share/locale/zh_TW/LC_MESSAGES/plasma_applet_org.kde.merkuro.contact.mo share/metainfo/org.kde.merkuro.calendar.metainfo.xml share/metainfo/org.kde.merkuro.contact.applet.appdata.xml share/metainfo/org.kde.merkuro.contact.metainfo.xml share/metainfo/org.kde.merkuro.mail.metainfo.xml share/metainfo/org.kde.merkuro.metainfo.xml share/plasma/plasmoids/org.kde.merkuro.contact.applet/contents/config/main.xml share/plasma/plasmoids/org.kde.merkuro.contact.applet/contents/resources/fallbackBackground.png share/plasma/plasmoids/org.kde.merkuro.contact.applet/contents/ui/CompactRepresentation.qml share/plasma/plasmoids/org.kde.merkuro.contact.applet/contents/ui/ContactPage.qml share/plasma/plasmoids/org.kde.merkuro.contact.applet/contents/ui/ContactsPage.qml share/plasma/plasmoids/org.kde.merkuro.contact.applet/contents/ui/Header.qml share/plasma/plasmoids/org.kde.merkuro.contact.applet/contents/ui/QrCodePage.qml share/plasma/plasmoids/org.kde.merkuro.contact.applet/contents/ui/main.qml share/plasma/plasmoids/org.kde.merkuro.contact.applet/metadata.json share/plasma/plasmoids/org.kde.merkuro.contact.applet/metadata.json.license -share/qlogging-categories6/akonadi.quick.categories share/qlogging-categories6/merkuro.categories share/qlogging-categories6/merkuro.contact.categories diff --git a/deskutils/pim-data-exporter/distinfo b/deskutils/pim-data-exporter/distinfo index 5bac32f85f32..3da1fa0b6f12 100644 --- a/deskutils/pim-data-exporter/distinfo +++ b/deskutils/pim-data-exporter/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1751381277 -SHA256 (KDE/release-service/25.04.3/pim-data-exporter-25.04.3.tar.xz) = 8518b292b029f643c84cf5b4e479ff264228b3e1fe052633cc1876450bd558d2 -SIZE (KDE/release-service/25.04.3/pim-data-exporter-25.04.3.tar.xz) = 428076 +TIMESTAMP = 1754646189 +SHA256 (KDE/release-service/25.08.0/pim-data-exporter-25.08.0.tar.xz) = db537eb250dbcfb865343ba94ec4aa2558ebc1425a188bb41515058ccd853df6 +SIZE (KDE/release-service/25.08.0/pim-data-exporter-25.08.0.tar.xz) = 430600 diff --git a/deskutils/pim-sieve-editor/distinfo b/deskutils/pim-sieve-editor/distinfo index 68beba57c2d5..866d274dead1 100644 --- a/deskutils/pim-sieve-editor/distinfo +++ b/deskutils/pim-sieve-editor/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1751381279 -SHA256 (KDE/release-service/25.04.3/pim-sieve-editor-25.04.3.tar.xz) = b22482d7c74e2578bc347d08cc7958f214661482826f14c8f5e957c92f6ec006 -SIZE (KDE/release-service/25.04.3/pim-sieve-editor-25.04.3.tar.xz) = 479624 +TIMESTAMP = 1754646192 +SHA256 (KDE/release-service/25.08.0/pim-sieve-editor-25.08.0.tar.xz) = b763761947acf5826c358e2c439b4da991f9a23b7ad39afb80f34bcac471bbbd +SIZE (KDE/release-service/25.08.0/pim-sieve-editor-25.08.0.tar.xz) = 483296 diff --git a/deskutils/zanshin/distinfo b/deskutils/zanshin/distinfo index 2fa252f35f9d..a07ef5f31f07 100644 --- a/deskutils/zanshin/distinfo +++ b/deskutils/zanshin/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1751381282 -SHA256 (KDE/release-service/25.04.3/zanshin-25.04.3.tar.xz) = f76f95b0c73a798d1fb9dcc05367456ace322296f3ecaa68c34f3d6a66404158 -SIZE (KDE/release-service/25.04.3/zanshin-25.04.3.tar.xz) = 387440 +TIMESTAMP = 1754646194 +SHA256 (KDE/release-service/25.08.0/zanshin-25.08.0.tar.xz) = 16cc15f22657e56914d1637830f8b7cb465004ee8aa73930439f97efacc74345 +SIZE (KDE/release-service/25.08.0/zanshin-25.08.0.tar.xz) = 387556 diff --git a/devel/cervisia/Makefile b/devel/cervisia/Makefile index 262cdfc2c68d..27a38dc9fa77 100644 --- a/devel/cervisia/Makefile +++ b/devel/cervisia/Makefile @@ -1,24 +1,25 @@ PORTNAME= cervisia DISTVERSION= ${KDE_APPLICATIONS_VERSION} CATEGORIES= devel kde kde-applications MAINTAINER= kde@FreeBSD.org COMMENT= CVS Frontend for KDE -DEPRECATED= Abandoned and excluded from future KDE Gear releases +IGNORE= Abandoned and excluded from KDE Gear releases +DEPRECATED= Abandoned and excluded from KDE Gear releases EXPIRATION_DATE= 2025-08-31 USES= cmake compiler:c++11-lang desktop-file-utils gettext kde:5 \ qt:5 tar:xz xorg USE_KDE= auth codecs completion config configwidgets coreaddons \ dbusaddons doctools i18n iconthemes init itemviews jobwidgets \ kdesu kio notifications parts pty service solid sonnet \ textwidgets widgetsaddons windowsystem xmlgui \ ecm:build USE_QT= concurrent core dbus gui network widgets xml \ buildtools:build qmake:build USE_XORG= x11 OPTIONS_DEFINE= DOCS .include diff --git a/devel/dolphin-plugins/distinfo b/devel/dolphin-plugins/distinfo index a88d9a817f1a..6d74c9d2b916 100644 --- a/devel/dolphin-plugins/distinfo +++ b/devel/dolphin-plugins/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1751381287 -SHA256 (KDE/release-service/25.04.3/dolphin-plugins-25.04.3.tar.xz) = 4966eab899ffa9143d02fbb7adc4839e8ad6f6ad97fd1b083ca6b488a3dfbd3e -SIZE (KDE/release-service/25.04.3/dolphin-plugins-25.04.3.tar.xz) = 329648 +TIMESTAMP = 1754646197 +SHA256 (KDE/release-service/25.08.0/dolphin-plugins-25.08.0.tar.xz) = 4e7552525dc3a30d6e521b9ce5d7e34deb0bac3474c621894b11567a743ecccf +SIZE (KDE/release-service/25.08.0/dolphin-plugins-25.08.0.tar.xz) = 330584 diff --git a/devel/dolphin-plugins/pkg-plist b/devel/dolphin-plugins/pkg-plist index fac7fe588f83..b1353911d3ec 100644 --- a/devel/dolphin-plugins/pkg-plist +++ b/devel/dolphin-plugins/pkg-plist @@ -1,303 +1,304 @@ %%QT_PLUGINDIR%%/dolphin/vcs/fileviewbazaarplugin.so %%QT_PLUGINDIR%%/dolphin/vcs/fileviewdropboxplugin.so %%QT_PLUGINDIR%%/dolphin/vcs/fileviewgitplugin.so %%QT_PLUGINDIR%%/dolphin/vcs/fileviewhgplugin.so %%QT_PLUGINDIR%%/dolphin/vcs/fileviewsvnplugin.so %%QT_PLUGINDIR%%/kf6/kfileitemaction/makefileactions.so %%QT_PLUGINDIR%%/kf6/kfileitemaction/mountisoaction.so share/config.kcfg/fileviewgitpluginsettings.kcfg share/config.kcfg/fileviewhgpluginsettings.kcfg share/config.kcfg/fileviewsvnpluginsettings.kcfg share/locale/ar/LC_MESSAGES/mountisoaction.mo share/locale/ast/LC_MESSAGES/fileviewbazaarplugin.mo share/locale/ast/LC_MESSAGES/fileviewgitplugin.mo share/locale/ast/LC_MESSAGES/fileviewhgplugin.mo share/locale/ast/LC_MESSAGES/fileviewsvnplugin.mo share/locale/ast/LC_MESSAGES/makefileactions.mo share/locale/ast/LC_MESSAGES/mountisoaction.mo share/locale/az/LC_MESSAGES/fileviewbazaarplugin.mo share/locale/az/LC_MESSAGES/fileviewgitplugin.mo share/locale/az/LC_MESSAGES/fileviewhgplugin.mo share/locale/az/LC_MESSAGES/fileviewsvnplugin.mo +share/locale/az/LC_MESSAGES/makefileactions.mo share/locale/az/LC_MESSAGES/mountisoaction.mo share/locale/bg/LC_MESSAGES/fileviewbazaarplugin.mo share/locale/bg/LC_MESSAGES/fileviewgitplugin.mo share/locale/bg/LC_MESSAGES/fileviewhgplugin.mo share/locale/bg/LC_MESSAGES/fileviewsvnplugin.mo -share/locale/bg/LC_MESSAGES/makefileactions.mo share/locale/bg/LC_MESSAGES/mountisoaction.mo share/locale/bs/LC_MESSAGES/fileviewbazaarplugin.mo share/locale/bs/LC_MESSAGES/fileviewgitplugin.mo share/locale/bs/LC_MESSAGES/fileviewhgplugin.mo share/locale/bs/LC_MESSAGES/fileviewsvnplugin.mo share/locale/ca/LC_MESSAGES/fileviewbazaarplugin.mo share/locale/ca/LC_MESSAGES/fileviewgitplugin.mo share/locale/ca/LC_MESSAGES/fileviewhgplugin.mo share/locale/ca/LC_MESSAGES/fileviewsvnplugin.mo share/locale/ca/LC_MESSAGES/makefileactions.mo share/locale/ca/LC_MESSAGES/mountisoaction.mo share/locale/ca@valencia/LC_MESSAGES/fileviewbazaarplugin.mo share/locale/ca@valencia/LC_MESSAGES/fileviewgitplugin.mo share/locale/ca@valencia/LC_MESSAGES/fileviewhgplugin.mo share/locale/ca@valencia/LC_MESSAGES/fileviewsvnplugin.mo share/locale/ca@valencia/LC_MESSAGES/makefileactions.mo share/locale/ca@valencia/LC_MESSAGES/mountisoaction.mo share/locale/cs/LC_MESSAGES/fileviewbazaarplugin.mo share/locale/cs/LC_MESSAGES/fileviewgitplugin.mo share/locale/cs/LC_MESSAGES/fileviewhgplugin.mo share/locale/cs/LC_MESSAGES/fileviewsvnplugin.mo share/locale/cs/LC_MESSAGES/makefileactions.mo share/locale/cs/LC_MESSAGES/mountisoaction.mo share/locale/da/LC_MESSAGES/fileviewbazaarplugin.mo share/locale/da/LC_MESSAGES/fileviewgitplugin.mo share/locale/da/LC_MESSAGES/fileviewhgplugin.mo share/locale/da/LC_MESSAGES/fileviewsvnplugin.mo share/locale/de/LC_MESSAGES/fileviewbazaarplugin.mo share/locale/de/LC_MESSAGES/fileviewgitplugin.mo share/locale/de/LC_MESSAGES/fileviewhgplugin.mo share/locale/de/LC_MESSAGES/fileviewsvnplugin.mo share/locale/de/LC_MESSAGES/makefileactions.mo share/locale/de/LC_MESSAGES/mountisoaction.mo share/locale/el/LC_MESSAGES/fileviewbazaarplugin.mo share/locale/el/LC_MESSAGES/fileviewgitplugin.mo share/locale/el/LC_MESSAGES/fileviewhgplugin.mo share/locale/el/LC_MESSAGES/fileviewsvnplugin.mo share/locale/el/LC_MESSAGES/makefileactions.mo share/locale/el/LC_MESSAGES/mountisoaction.mo share/locale/en_GB/LC_MESSAGES/fileviewbazaarplugin.mo share/locale/en_GB/LC_MESSAGES/fileviewgitplugin.mo share/locale/en_GB/LC_MESSAGES/fileviewhgplugin.mo share/locale/en_GB/LC_MESSAGES/fileviewsvnplugin.mo share/locale/en_GB/LC_MESSAGES/makefileactions.mo share/locale/en_GB/LC_MESSAGES/mountisoaction.mo share/locale/eo/LC_MESSAGES/fileviewbazaarplugin.mo share/locale/eo/LC_MESSAGES/fileviewgitplugin.mo share/locale/eo/LC_MESSAGES/fileviewhgplugin.mo share/locale/eo/LC_MESSAGES/fileviewsvnplugin.mo share/locale/eo/LC_MESSAGES/makefileactions.mo share/locale/eo/LC_MESSAGES/mountisoaction.mo share/locale/es/LC_MESSAGES/fileviewbazaarplugin.mo share/locale/es/LC_MESSAGES/fileviewgitplugin.mo share/locale/es/LC_MESSAGES/fileviewhgplugin.mo share/locale/es/LC_MESSAGES/fileviewsvnplugin.mo share/locale/es/LC_MESSAGES/makefileactions.mo share/locale/es/LC_MESSAGES/mountisoaction.mo share/locale/et/LC_MESSAGES/fileviewbazaarplugin.mo share/locale/et/LC_MESSAGES/fileviewgitplugin.mo share/locale/et/LC_MESSAGES/fileviewhgplugin.mo share/locale/et/LC_MESSAGES/fileviewsvnplugin.mo share/locale/et/LC_MESSAGES/mountisoaction.mo share/locale/eu/LC_MESSAGES/fileviewbazaarplugin.mo share/locale/eu/LC_MESSAGES/fileviewgitplugin.mo share/locale/eu/LC_MESSAGES/fileviewhgplugin.mo share/locale/eu/LC_MESSAGES/fileviewsvnplugin.mo share/locale/eu/LC_MESSAGES/makefileactions.mo share/locale/eu/LC_MESSAGES/mountisoaction.mo share/locale/fi/LC_MESSAGES/fileviewbazaarplugin.mo share/locale/fi/LC_MESSAGES/fileviewgitplugin.mo share/locale/fi/LC_MESSAGES/fileviewhgplugin.mo share/locale/fi/LC_MESSAGES/fileviewsvnplugin.mo share/locale/fi/LC_MESSAGES/makefileactions.mo share/locale/fi/LC_MESSAGES/mountisoaction.mo share/locale/fr/LC_MESSAGES/fileviewbazaarplugin.mo share/locale/fr/LC_MESSAGES/fileviewgitplugin.mo share/locale/fr/LC_MESSAGES/fileviewhgplugin.mo share/locale/fr/LC_MESSAGES/fileviewsvnplugin.mo share/locale/fr/LC_MESSAGES/makefileactions.mo share/locale/fr/LC_MESSAGES/mountisoaction.mo share/locale/ga/LC_MESSAGES/fileviewbazaarplugin.mo share/locale/ga/LC_MESSAGES/fileviewgitplugin.mo share/locale/ga/LC_MESSAGES/fileviewhgplugin.mo share/locale/ga/LC_MESSAGES/fileviewsvnplugin.mo share/locale/gl/LC_MESSAGES/fileviewbazaarplugin.mo share/locale/gl/LC_MESSAGES/fileviewgitplugin.mo share/locale/gl/LC_MESSAGES/fileviewhgplugin.mo share/locale/gl/LC_MESSAGES/fileviewsvnplugin.mo share/locale/gl/LC_MESSAGES/makefileactions.mo share/locale/gl/LC_MESSAGES/mountisoaction.mo share/locale/he/LC_MESSAGES/fileviewbazaarplugin.mo share/locale/he/LC_MESSAGES/fileviewgitplugin.mo share/locale/he/LC_MESSAGES/fileviewhgplugin.mo share/locale/he/LC_MESSAGES/fileviewsvnplugin.mo share/locale/he/LC_MESSAGES/makefileactions.mo share/locale/he/LC_MESSAGES/mountisoaction.mo share/locale/hi/LC_MESSAGES/fileviewbazaarplugin.mo share/locale/hi/LC_MESSAGES/fileviewgitplugin.mo share/locale/hi/LC_MESSAGES/fileviewhgplugin.mo share/locale/hi/LC_MESSAGES/fileviewsvnplugin.mo share/locale/hi/LC_MESSAGES/makefileactions.mo share/locale/hi/LC_MESSAGES/mountisoaction.mo share/locale/hu/LC_MESSAGES/fileviewbazaarplugin.mo share/locale/hu/LC_MESSAGES/fileviewgitplugin.mo share/locale/hu/LC_MESSAGES/fileviewhgplugin.mo share/locale/hu/LC_MESSAGES/fileviewsvnplugin.mo share/locale/hu/LC_MESSAGES/makefileactions.mo share/locale/hu/LC_MESSAGES/mountisoaction.mo share/locale/ia/LC_MESSAGES/fileviewbazaarplugin.mo share/locale/ia/LC_MESSAGES/fileviewgitplugin.mo share/locale/ia/LC_MESSAGES/fileviewhgplugin.mo share/locale/ia/LC_MESSAGES/fileviewsvnplugin.mo share/locale/ia/LC_MESSAGES/makefileactions.mo share/locale/ia/LC_MESSAGES/mountisoaction.mo share/locale/id/LC_MESSAGES/fileviewbazaarplugin.mo share/locale/id/LC_MESSAGES/fileviewgitplugin.mo share/locale/id/LC_MESSAGES/fileviewhgplugin.mo share/locale/id/LC_MESSAGES/fileviewsvnplugin.mo share/locale/id/LC_MESSAGES/mountisoaction.mo share/locale/ie/LC_MESSAGES/fileviewgitplugin.mo share/locale/ie/LC_MESSAGES/mountisoaction.mo +share/locale/is/LC_MESSAGES/mountisoaction.mo share/locale/it/LC_MESSAGES/fileviewbazaarplugin.mo share/locale/it/LC_MESSAGES/fileviewgitplugin.mo share/locale/it/LC_MESSAGES/fileviewhgplugin.mo share/locale/it/LC_MESSAGES/fileviewsvnplugin.mo share/locale/it/LC_MESSAGES/makefileactions.mo share/locale/it/LC_MESSAGES/mountisoaction.mo share/locale/ja/LC_MESSAGES/fileviewbazaarplugin.mo share/locale/ja/LC_MESSAGES/fileviewgitplugin.mo share/locale/ja/LC_MESSAGES/fileviewhgplugin.mo share/locale/ja/LC_MESSAGES/fileviewsvnplugin.mo share/locale/ja/LC_MESSAGES/makefileactions.mo share/locale/ja/LC_MESSAGES/mountisoaction.mo share/locale/ka/LC_MESSAGES/fileviewbazaarplugin.mo share/locale/ka/LC_MESSAGES/fileviewgitplugin.mo share/locale/ka/LC_MESSAGES/fileviewhgplugin.mo share/locale/ka/LC_MESSAGES/fileviewsvnplugin.mo share/locale/ka/LC_MESSAGES/makefileactions.mo share/locale/ka/LC_MESSAGES/mountisoaction.mo share/locale/kk/LC_MESSAGES/fileviewbazaarplugin.mo share/locale/kk/LC_MESSAGES/fileviewgitplugin.mo share/locale/kk/LC_MESSAGES/fileviewhgplugin.mo share/locale/kk/LC_MESSAGES/fileviewsvnplugin.mo share/locale/ko/LC_MESSAGES/fileviewbazaarplugin.mo share/locale/ko/LC_MESSAGES/fileviewgitplugin.mo share/locale/ko/LC_MESSAGES/fileviewhgplugin.mo share/locale/ko/LC_MESSAGES/fileviewsvnplugin.mo share/locale/ko/LC_MESSAGES/makefileactions.mo share/locale/ko/LC_MESSAGES/mountisoaction.mo share/locale/lt/LC_MESSAGES/fileviewbazaarplugin.mo share/locale/lt/LC_MESSAGES/fileviewgitplugin.mo share/locale/lt/LC_MESSAGES/fileviewhgplugin.mo share/locale/lt/LC_MESSAGES/fileviewsvnplugin.mo share/locale/lt/LC_MESSAGES/makefileactions.mo share/locale/lt/LC_MESSAGES/mountisoaction.mo share/locale/lv/LC_MESSAGES/makefileactions.mo share/locale/lv/LC_MESSAGES/mountisoaction.mo share/locale/mr/LC_MESSAGES/fileviewbazaarplugin.mo share/locale/mr/LC_MESSAGES/fileviewgitplugin.mo share/locale/mr/LC_MESSAGES/fileviewhgplugin.mo share/locale/mr/LC_MESSAGES/fileviewsvnplugin.mo share/locale/my/LC_MESSAGES/fileviewbazaarplugin.mo share/locale/my/LC_MESSAGES/fileviewgitplugin.mo share/locale/my/LC_MESSAGES/fileviewhgplugin.mo share/locale/my/LC_MESSAGES/fileviewsvnplugin.mo share/locale/my/LC_MESSAGES/mountisoaction.mo share/locale/nb/LC_MESSAGES/fileviewbazaarplugin.mo share/locale/nb/LC_MESSAGES/fileviewgitplugin.mo share/locale/nb/LC_MESSAGES/fileviewhgplugin.mo share/locale/nb/LC_MESSAGES/fileviewsvnplugin.mo share/locale/nb/LC_MESSAGES/mountisoaction.mo share/locale/nds/LC_MESSAGES/fileviewbazaarplugin.mo share/locale/nds/LC_MESSAGES/fileviewgitplugin.mo share/locale/nds/LC_MESSAGES/fileviewhgplugin.mo share/locale/nds/LC_MESSAGES/fileviewsvnplugin.mo share/locale/nl/LC_MESSAGES/fileviewbazaarplugin.mo share/locale/nl/LC_MESSAGES/fileviewgitplugin.mo share/locale/nl/LC_MESSAGES/fileviewhgplugin.mo share/locale/nl/LC_MESSAGES/fileviewsvnplugin.mo share/locale/nl/LC_MESSAGES/makefileactions.mo share/locale/nl/LC_MESSAGES/mountisoaction.mo share/locale/nn/LC_MESSAGES/fileviewbazaarplugin.mo share/locale/nn/LC_MESSAGES/fileviewgitplugin.mo share/locale/nn/LC_MESSAGES/fileviewsvnplugin.mo share/locale/nn/LC_MESSAGES/mountisoaction.mo share/locale/pa/LC_MESSAGES/fileviewgitplugin.mo share/locale/pa/LC_MESSAGES/fileviewhgplugin.mo share/locale/pa/LC_MESSAGES/fileviewsvnplugin.mo share/locale/pa/LC_MESSAGES/mountisoaction.mo share/locale/pl/LC_MESSAGES/fileviewbazaarplugin.mo share/locale/pl/LC_MESSAGES/fileviewgitplugin.mo share/locale/pl/LC_MESSAGES/fileviewhgplugin.mo share/locale/pl/LC_MESSAGES/fileviewsvnplugin.mo share/locale/pl/LC_MESSAGES/makefileactions.mo share/locale/pl/LC_MESSAGES/mountisoaction.mo share/locale/pt/LC_MESSAGES/fileviewbazaarplugin.mo share/locale/pt/LC_MESSAGES/fileviewgitplugin.mo share/locale/pt/LC_MESSAGES/fileviewhgplugin.mo share/locale/pt/LC_MESSAGES/fileviewsvnplugin.mo share/locale/pt/LC_MESSAGES/mountisoaction.mo share/locale/pt_BR/LC_MESSAGES/fileviewbazaarplugin.mo share/locale/pt_BR/LC_MESSAGES/fileviewgitplugin.mo share/locale/pt_BR/LC_MESSAGES/fileviewhgplugin.mo share/locale/pt_BR/LC_MESSAGES/fileviewsvnplugin.mo share/locale/pt_BR/LC_MESSAGES/makefileactions.mo share/locale/pt_BR/LC_MESSAGES/mountisoaction.mo share/locale/ro/LC_MESSAGES/fileviewgitplugin.mo share/locale/ro/LC_MESSAGES/fileviewsvnplugin.mo share/locale/ro/LC_MESSAGES/mountisoaction.mo share/locale/ru/LC_MESSAGES/fileviewbazaarplugin.mo share/locale/ru/LC_MESSAGES/fileviewgitplugin.mo share/locale/ru/LC_MESSAGES/fileviewhgplugin.mo share/locale/ru/LC_MESSAGES/fileviewsvnplugin.mo share/locale/ru/LC_MESSAGES/makefileactions.mo share/locale/ru/LC_MESSAGES/mountisoaction.mo share/locale/sa/LC_MESSAGES/fileviewbazaarplugin.mo share/locale/sa/LC_MESSAGES/fileviewgitplugin.mo share/locale/sa/LC_MESSAGES/fileviewhgplugin.mo share/locale/sa/LC_MESSAGES/fileviewsvnplugin.mo share/locale/sa/LC_MESSAGES/makefileactions.mo share/locale/sa/LC_MESSAGES/mountisoaction.mo share/locale/sk/LC_MESSAGES/fileviewbazaarplugin.mo share/locale/sk/LC_MESSAGES/fileviewgitplugin.mo share/locale/sk/LC_MESSAGES/fileviewhgplugin.mo share/locale/sk/LC_MESSAGES/fileviewsvnplugin.mo share/locale/sk/LC_MESSAGES/makefileactions.mo share/locale/sk/LC_MESSAGES/mountisoaction.mo share/locale/sl/LC_MESSAGES/fileviewbazaarplugin.mo share/locale/sl/LC_MESSAGES/fileviewgitplugin.mo share/locale/sl/LC_MESSAGES/fileviewhgplugin.mo share/locale/sl/LC_MESSAGES/fileviewsvnplugin.mo share/locale/sl/LC_MESSAGES/makefileactions.mo share/locale/sl/LC_MESSAGES/mountisoaction.mo share/locale/sv/LC_MESSAGES/fileviewbazaarplugin.mo share/locale/sv/LC_MESSAGES/fileviewgitplugin.mo share/locale/sv/LC_MESSAGES/fileviewhgplugin.mo share/locale/sv/LC_MESSAGES/fileviewsvnplugin.mo share/locale/sv/LC_MESSAGES/makefileactions.mo share/locale/sv/LC_MESSAGES/mountisoaction.mo share/locale/ta/LC_MESSAGES/fileviewgitplugin.mo share/locale/ta/LC_MESSAGES/fileviewhgplugin.mo share/locale/ta/LC_MESSAGES/fileviewsvnplugin.mo share/locale/ta/LC_MESSAGES/makefileactions.mo share/locale/ta/LC_MESSAGES/mountisoaction.mo share/locale/tr/LC_MESSAGES/fileviewbazaarplugin.mo share/locale/tr/LC_MESSAGES/fileviewgitplugin.mo share/locale/tr/LC_MESSAGES/fileviewhgplugin.mo share/locale/tr/LC_MESSAGES/fileviewsvnplugin.mo share/locale/tr/LC_MESSAGES/makefileactions.mo share/locale/tr/LC_MESSAGES/mountisoaction.mo share/locale/ug/LC_MESSAGES/fileviewbazaarplugin.mo share/locale/ug/LC_MESSAGES/fileviewgitplugin.mo share/locale/ug/LC_MESSAGES/fileviewhgplugin.mo share/locale/ug/LC_MESSAGES/fileviewsvnplugin.mo share/locale/uk/LC_MESSAGES/fileviewbazaarplugin.mo share/locale/uk/LC_MESSAGES/fileviewgitplugin.mo share/locale/uk/LC_MESSAGES/fileviewhgplugin.mo share/locale/uk/LC_MESSAGES/fileviewsvnplugin.mo share/locale/uk/LC_MESSAGES/makefileactions.mo share/locale/uk/LC_MESSAGES/mountisoaction.mo share/locale/vi/LC_MESSAGES/fileviewgitplugin.mo share/locale/vi/LC_MESSAGES/mountisoaction.mo share/locale/zh_CN/LC_MESSAGES/fileviewbazaarplugin.mo share/locale/zh_CN/LC_MESSAGES/fileviewgitplugin.mo share/locale/zh_CN/LC_MESSAGES/fileviewhgplugin.mo share/locale/zh_CN/LC_MESSAGES/fileviewsvnplugin.mo share/locale/zh_CN/LC_MESSAGES/makefileactions.mo share/locale/zh_CN/LC_MESSAGES/mountisoaction.mo share/locale/zh_TW/LC_MESSAGES/fileviewbazaarplugin.mo share/locale/zh_TW/LC_MESSAGES/fileviewgitplugin.mo share/locale/zh_TW/LC_MESSAGES/fileviewhgplugin.mo share/locale/zh_TW/LC_MESSAGES/fileviewsvnplugin.mo share/locale/zh_TW/LC_MESSAGES/makefileactions.mo share/locale/zh_TW/LC_MESSAGES/mountisoaction.mo share/metainfo/org.kde.dolphin-plugins.metainfo.xml share/qlogging-categories6/dolphingit.categories diff --git a/devel/kapptemplate/distinfo b/devel/kapptemplate/distinfo index 45973c861070..7afdec8beee8 100644 --- a/devel/kapptemplate/distinfo +++ b/devel/kapptemplate/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1751381289 -SHA256 (KDE/release-service/25.04.3/kapptemplate-25.04.3.tar.xz) = b75a287958ec122da7f1fab810f9ab624fad6d4ab2c67ee463b236bd7bdfb0e2 -SIZE (KDE/release-service/25.04.3/kapptemplate-25.04.3.tar.xz) = 479648 +TIMESTAMP = 1754646199 +SHA256 (KDE/release-service/25.08.0/kapptemplate-25.08.0.tar.xz) = f423016414c486c0a8f7bb872633eb33980b3dfa927658887db68eafabb4002b +SIZE (KDE/release-service/25.08.0/kapptemplate-25.08.0.tar.xz) = 479832 diff --git a/devel/kcachegrind/distinfo b/devel/kcachegrind/distinfo index 21f9301c2a34..6b083312bbf7 100644 --- a/devel/kcachegrind/distinfo +++ b/devel/kcachegrind/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1751381292 -SHA256 (KDE/release-service/25.04.3/kcachegrind-25.04.3.tar.xz) = 23c7dcbbf15c5ee00ddac068022f118b5de939d097199b0f918df9f94f74d9e1 -SIZE (KDE/release-service/25.04.3/kcachegrind-25.04.3.tar.xz) = 990836 +TIMESTAMP = 1754646202 +SHA256 (KDE/release-service/25.08.0/kcachegrind-25.08.0.tar.xz) = 4253d8643a5e1c9261be470ac61c8f5eb2ce721036115ae204ac3aab6b38a0a4 +SIZE (KDE/release-service/25.08.0/kcachegrind-25.08.0.tar.xz) = 992484 diff --git a/devel/kde-dev-scripts/distinfo b/devel/kde-dev-scripts/distinfo index 743bb08ca479..7d9999c4cc76 100644 --- a/devel/kde-dev-scripts/distinfo +++ b/devel/kde-dev-scripts/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1751381292 -SHA256 (KDE/release-service/25.04.3/kde-dev-scripts-25.04.3.tar.xz) = 51b1e73755941aa50cc68d1260ef32624a1fe1bc3968a3a7d126ea9fb76ea7f8 -SIZE (KDE/release-service/25.04.3/kde-dev-scripts-25.04.3.tar.xz) = 376240 +TIMESTAMP = 1754646202 +SHA256 (KDE/release-service/25.08.0/kde-dev-scripts-25.08.0.tar.xz) = d0952f2440b3d1f594754c6a514c4b29a203be1187817af4d10d1cfff92f41cd +SIZE (KDE/release-service/25.08.0/kde-dev-scripts-25.08.0.tar.xz) = 377032 diff --git a/devel/kde-dev-utils/distinfo b/devel/kde-dev-utils/distinfo index 233f039f15b7..cf42857e530a 100644 --- a/devel/kde-dev-utils/distinfo +++ b/devel/kde-dev-utils/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1751381294 -SHA256 (KDE/release-service/25.04.3/kde-dev-utils-25.04.3.tar.xz) = e64b249ea10c3bd84314102661d823f28f440c5cc4ae6e706e22588f6d11fc70 -SIZE (KDE/release-service/25.04.3/kde-dev-utils-25.04.3.tar.xz) = 77164 +TIMESTAMP = 1754646204 +SHA256 (KDE/release-service/25.08.0/kde-dev-utils-25.08.0.tar.xz) = 6cbd5ee79fb7ad909ac81ddf2c2916fe86047aabe8ca2b606034f76744a31393 +SIZE (KDE/release-service/25.08.0/kde-dev-utils-25.08.0.tar.xz) = 77188 diff --git a/devel/kdesdk-kio/distinfo b/devel/kdesdk-kio/distinfo index a26c8013ba56..0ea2696c6d65 100644 --- a/devel/kdesdk-kio/distinfo +++ b/devel/kdesdk-kio/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1751381297 -SHA256 (KDE/release-service/25.04.3/kdesdk-kio-25.04.3.tar.xz) = 3b93482ea49547e48b485b66ec1a6a1a3499bb031a315cb3cfdb9cb3cc108c8a -SIZE (KDE/release-service/25.04.3/kdesdk-kio-25.04.3.tar.xz) = 42956 +TIMESTAMP = 1754646207 +SHA256 (KDE/release-service/25.08.0/kdesdk-kio-25.08.0.tar.xz) = b566d2a76d7aae1723eb78096ffd414a7a691a76cacb447f5dbd3848c731eca7 +SIZE (KDE/release-service/25.08.0/kdesdk-kio-25.08.0.tar.xz) = 42956 diff --git a/devel/kdesdk-thumbnailers/distinfo b/devel/kdesdk-thumbnailers/distinfo index bd4198a4e1f8..b8a8da419ef2 100644 --- a/devel/kdesdk-thumbnailers/distinfo +++ b/devel/kdesdk-thumbnailers/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1751381299 -SHA256 (KDE/release-service/25.04.3/kdesdk-thumbnailers-25.04.3.tar.xz) = f018010ac0dc4cfe4dcdf61af73c2b7d7f68ddf1c1926a25f7b9429c64a20de4 -SIZE (KDE/release-service/25.04.3/kdesdk-thumbnailers-25.04.3.tar.xz) = 27292 +TIMESTAMP = 1754646209 +SHA256 (KDE/release-service/25.08.0/kdesdk-thumbnailers-25.08.0.tar.xz) = 533c9319075a9fcddc127d1e46442c3b5987b7dcc25746288b8572ec714bb8bb +SIZE (KDE/release-service/25.08.0/kdesdk-thumbnailers-25.08.0.tar.xz) = 27404 diff --git a/devel/kdesdk-thumbnailers/pkg-plist b/devel/kdesdk-thumbnailers/pkg-plist index 0a3abeda62ac..2f447493d541 100644 --- a/devel/kdesdk-thumbnailers/pkg-plist +++ b/devel/kdesdk-thumbnailers/pkg-plist @@ -1,51 +1,52 @@ %%QT_PLUGINDIR%%/kf6/thumbcreator/pothumbnail.so share/config.kcfg/pocreatorsettings.kcfg share/locale/ar/LC_MESSAGES/pothumbnail.mo share/locale/bg/LC_MESSAGES/pothumbnail.mo share/locale/bs/LC_MESSAGES/pothumbnail.mo share/locale/ca/LC_MESSAGES/pothumbnail.mo share/locale/ca@valencia/LC_MESSAGES/pothumbnail.mo share/locale/cs/LC_MESSAGES/pothumbnail.mo share/locale/da/LC_MESSAGES/pothumbnail.mo share/locale/de/LC_MESSAGES/pothumbnail.mo share/locale/el/LC_MESSAGES/pothumbnail.mo share/locale/en_GB/LC_MESSAGES/pothumbnail.mo share/locale/eo/LC_MESSAGES/pothumbnail.mo share/locale/es/LC_MESSAGES/pothumbnail.mo share/locale/et/LC_MESSAGES/pothumbnail.mo share/locale/eu/LC_MESSAGES/pothumbnail.mo share/locale/fi/LC_MESSAGES/pothumbnail.mo share/locale/fr/LC_MESSAGES/pothumbnail.mo share/locale/ga/LC_MESSAGES/pothumbnail.mo share/locale/gl/LC_MESSAGES/pothumbnail.mo share/locale/he/LC_MESSAGES/pothumbnail.mo share/locale/hi/LC_MESSAGES/pothumbnail.mo share/locale/hu/LC_MESSAGES/pothumbnail.mo share/locale/id/LC_MESSAGES/pothumbnail.mo share/locale/is/LC_MESSAGES/pothumbnail.mo share/locale/it/LC_MESSAGES/pothumbnail.mo share/locale/ja/LC_MESSAGES/pothumbnail.mo share/locale/ka/LC_MESSAGES/pothumbnail.mo share/locale/kk/LC_MESSAGES/pothumbnail.mo share/locale/ko/LC_MESSAGES/pothumbnail.mo share/locale/lt/LC_MESSAGES/pothumbnail.mo +share/locale/lv/LC_MESSAGES/pothumbnail.mo share/locale/mr/LC_MESSAGES/pothumbnail.mo share/locale/nb/LC_MESSAGES/pothumbnail.mo share/locale/nds/LC_MESSAGES/pothumbnail.mo share/locale/nl/LC_MESSAGES/pothumbnail.mo share/locale/nn/LC_MESSAGES/pothumbnail.mo share/locale/pa/LC_MESSAGES/pothumbnail.mo share/locale/pl/LC_MESSAGES/pothumbnail.mo share/locale/pt/LC_MESSAGES/pothumbnail.mo share/locale/pt_BR/LC_MESSAGES/pothumbnail.mo share/locale/ro/LC_MESSAGES/pothumbnail.mo share/locale/ru/LC_MESSAGES/pothumbnail.mo share/locale/sk/LC_MESSAGES/pothumbnail.mo share/locale/sl/LC_MESSAGES/pothumbnail.mo share/locale/sv/LC_MESSAGES/pothumbnail.mo share/locale/tr/LC_MESSAGES/pothumbnail.mo share/locale/ug/LC_MESSAGES/pothumbnail.mo share/locale/uk/LC_MESSAGES/pothumbnail.mo share/locale/vi/LC_MESSAGES/pothumbnail.mo share/locale/zh_CN/LC_MESSAGES/pothumbnail.mo share/locale/zh_TW/LC_MESSAGES/pothumbnail.mo diff --git a/devel/kdev-php/distinfo b/devel/kdev-php/distinfo index ab256586f09d..154a96e065b0 100644 --- a/devel/kdev-php/distinfo +++ b/devel/kdev-php/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1751381302 -SHA256 (KDE/release-service/25.04.3/kdev-php-25.04.3.tar.xz) = 7bcaf875b86270f6bdb429ec46be8a01ed067824d4e92368a2d1b19a683880e3 -SIZE (KDE/release-service/25.04.3/kdev-php-25.04.3.tar.xz) = 1099136 +TIMESTAMP = 1754646212 +SHA256 (KDE/release-service/25.08.0/kdev-php-25.08.0.tar.xz) = 25d0420fc41db12acb52c01b62cbee12a4aae2a72bcf8f6ddfbcdf668878c7cf +SIZE (KDE/release-service/25.08.0/kdev-php-25.08.0.tar.xz) = 1099112 diff --git a/devel/kdev-python/distinfo b/devel/kdev-python/distinfo index e145f19f720a..5cd17d53b5bd 100644 --- a/devel/kdev-python/distinfo +++ b/devel/kdev-python/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1751381304 -SHA256 (KDE/release-service/25.04.3/kdev-python-25.04.3.tar.xz) = 46c656bc6e069ab8fb29d3c289dbbbe91531f94b8b6b820b35018a337eb03c09 -SIZE (KDE/release-service/25.04.3/kdev-python-25.04.3.tar.xz) = 1109016 +TIMESTAMP = 1754646214 +SHA256 (KDE/release-service/25.08.0/kdev-python-25.08.0.tar.xz) = c8af23528dcbfb737d38bf54fabcb3edeba4498d56e638ec22d1fa855628b1fc +SIZE (KDE/release-service/25.08.0/kdev-python-25.08.0.tar.xz) = 1110412 diff --git a/devel/kdevelop/distinfo b/devel/kdevelop/distinfo index 2b338e98af80..637c285e9b90 100644 --- a/devel/kdevelop/distinfo +++ b/devel/kdevelop/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1751381307 -SHA256 (KDE/release-service/25.04.3/kdevelop-25.04.3.tar.xz) = 72bb08d913c4932eae52781c5a619d8aa04c4c77d0f3162a60ec2e8d027afeae -SIZE (KDE/release-service/25.04.3/kdevelop-25.04.3.tar.xz) = 8919580 +TIMESTAMP = 1754646217 +SHA256 (KDE/release-service/25.08.0/kdevelop-25.08.0.tar.xz) = 8682c13bad865433cf93574275f3da8fe6ff7080ee6178541c5c46cb4560a0ad +SIZE (KDE/release-service/25.08.0/kdevelop-25.08.0.tar.xz) = 8946068 diff --git a/devel/kdevelop/kdevelop.mk b/devel/kdevelop/kdevelop.mk index 531ce9793dc7..8c4904f7e4ca 100644 --- a/devel/kdevelop/kdevelop.mk +++ b/devel/kdevelop/kdevelop.mk @@ -1,11 +1,11 @@ # Common variables for KDevelop ports: # devel/kdev-php # devel/kdev-python # devel/kdevelop -_kdevelop_PROJECT_VERSION= 6.2 +_kdevelop_PROJECT_VERSION= 6.3 PLATFORM_VER= ${_kdevelop_PROJECT_VERSION:S/.//} PLIST_SUB+= PLATFORM_VER="${PLATFORM_VER}" PRIVATE_VER= 6.0 PLIST_SUB+= PRIVATE_VER=${PRIVATE_VER} diff --git a/devel/kdevelop/pkg-plist b/devel/kdevelop/pkg-plist index 25044170fe08..fb239cfb5714 100644 --- a/devel/kdevelop/pkg-plist +++ b/devel/kdevelop/pkg-plist @@ -1,3430 +1,3446 @@ bin/kdev_dbus_socket_transformer bin/kdev_format_source bin/kdev_includepathsconverter bin/kdevelop bin/kdevelop! bin/kdevplatform_shell_environment.sh include/kdevelop/custom-definesandincludes/idefinesandincludesmanager.h include/kdevelop/kdevelop_version.h include/kdevelop/makebuilder/imakebuilder.h include/kdevelop/qmake/iqmakebuilder.h include/kdevplatform/config-kdevplatform.h include/kdevplatform/debugger/breakpoint/breakpoint.h include/kdevplatform/debugger/breakpoint/breakpointdetails.h include/kdevplatform/debugger/breakpoint/breakpointmodel.h include/kdevplatform/debugger/breakpoint/breakpointwidget.h include/kdevplatform/debugger/debuggerexport.h include/kdevplatform/debugger/framestack/framestackmodel.h include/kdevplatform/debugger/interfaces/ibreakpointcontroller.h include/kdevplatform/debugger/interfaces/idebugsession.h include/kdevplatform/debugger/interfaces/iframestackmodel.h include/kdevplatform/debugger/interfaces/ivariablecontroller.h include/kdevplatform/debugger/util/pathmappings.h include/kdevplatform/debugger/util/treeitem.h include/kdevplatform/debugger/util/treemodel.h include/kdevplatform/debugger/util/treeview.h include/kdevplatform/debugger/variable/variablecollection.h include/kdevplatform/documentation/documentationexport.h include/kdevplatform/documentation/documentationfindwidget.h include/kdevplatform/documentation/standarddocumentationview.h include/kdevplatform/execute/iexecuteplugin.h +include/kdevplatform/execute/iexecutepluginhelpers.h include/kdevplatform/executescript/iexecutescriptplugin.h include/kdevplatform/interfaces/configpage.h include/kdevplatform/interfaces/context.h include/kdevplatform/interfaces/contextmenuextension.h include/kdevplatform/interfaces/iassistant.h include/kdevplatform/interfaces/ibuddydocumentfinder.h include/kdevplatform/interfaces/icompletionsettings.h include/kdevplatform/interfaces/icore.h include/kdevplatform/interfaces/idebugcontroller.h include/kdevplatform/interfaces/idocument.h include/kdevplatform/interfaces/idocumentation.h include/kdevplatform/interfaces/idocumentationcontroller.h include/kdevplatform/interfaces/idocumentationprovider.h include/kdevplatform/interfaces/idocumentationproviderprovider.h include/kdevplatform/interfaces/idocumentcontroller.h include/kdevplatform/interfaces/ilanguagecheck.h include/kdevplatform/interfaces/ilanguagecheckprovider.h include/kdevplatform/interfaces/ilanguagecontroller.h include/kdevplatform/interfaces/ilaunchconfiguration.h include/kdevplatform/interfaces/ilauncher.h include/kdevplatform/interfaces/ilaunchmode.h include/kdevplatform/interfaces/interfacesexport.h include/kdevplatform/interfaces/ipartcontroller.h include/kdevplatform/interfaces/iplugin.h include/kdevplatform/interfaces/iplugincontroller.h include/kdevplatform/interfaces/ipluginversion.h include/kdevplatform/interfaces/iproblem.h include/kdevplatform/interfaces/iproject.h include/kdevplatform/interfaces/iprojectcontroller.h include/kdevplatform/interfaces/iprojectprovider.h include/kdevplatform/interfaces/iruncontroller.h include/kdevplatform/interfaces/iruntime.h include/kdevplatform/interfaces/iruntimecontroller.h include/kdevplatform/interfaces/iselectioncontroller.h include/kdevplatform/interfaces/isession.h include/kdevplatform/interfaces/isessionlock.h include/kdevplatform/interfaces/isourceformatter.h include/kdevplatform/interfaces/isourceformattercontroller.h include/kdevplatform/interfaces/istatus.h include/kdevplatform/interfaces/itemplateprovider.h include/kdevplatform/interfaces/itestcontroller.h include/kdevplatform/interfaces/itestsuite.h include/kdevplatform/interfaces/itoolviewactionlistener.h include/kdevplatform/interfaces/iuicontroller.h include/kdevplatform/interfaces/launchconfigurationpage.h include/kdevplatform/interfaces/launchconfigurationtype.h include/kdevplatform/kdevplatform_version.h include/kdevplatform/language/assistant/renameaction.h include/kdevplatform/language/assistant/renameassistant.h include/kdevplatform/language/assistant/staticassistant.h include/kdevplatform/language/assistant/staticassistantsmanager.h include/kdevplatform/language/backgroundparser/backgroundparser.h include/kdevplatform/language/backgroundparser/documentchangetracker.h include/kdevplatform/language/backgroundparser/parsejob.h include/kdevplatform/language/backgroundparser/parseprojectjob.h include/kdevplatform/language/backgroundparser/urlparselock.h include/kdevplatform/language/checks/controlflowgraph.h include/kdevplatform/language/checks/controlflownode.h include/kdevplatform/language/checks/dataaccess.h include/kdevplatform/language/checks/dataaccessrepository.h include/kdevplatform/language/classmodel/allclassesfolder.h include/kdevplatform/language/classmodel/classmodel.h include/kdevplatform/language/classmodel/classmodelnode.h include/kdevplatform/language/classmodel/classmodelnodescontroller.h include/kdevplatform/language/classmodel/documentclassesfolder.h include/kdevplatform/language/classmodel/projectfolder.h include/kdevplatform/language/codecompletion/abstractincludefilecompletionitem.h include/kdevplatform/language/codecompletion/codecompletion.h include/kdevplatform/language/codecompletion/codecompletioncontext.h include/kdevplatform/language/codecompletion/codecompletionhelper.h include/kdevplatform/language/codecompletion/codecompletionitem.h include/kdevplatform/language/codecompletion/codecompletionitemgrouper.h include/kdevplatform/language/codecompletion/codecompletionmodel.h include/kdevplatform/language/codecompletion/codecompletiontesthelper.h include/kdevplatform/language/codecompletion/codecompletionworker.h include/kdevplatform/language/codecompletion/normaldeclarationcompletionitem.h include/kdevplatform/language/codegen/astchangeset.h include/kdevplatform/language/codegen/basicrefactoring.h include/kdevplatform/language/codegen/codedescription.h include/kdevplatform/language/codegen/coderepresentation.h include/kdevplatform/language/codegen/documentchangeset.h include/kdevplatform/language/codegen/duchainchangeset.h include/kdevplatform/language/codegen/sourcefiletemplate.h include/kdevplatform/language/codegen/templateclassgenerator.h include/kdevplatform/language/codegen/templateengine.h include/kdevplatform/language/codegen/templatepreviewicon.h include/kdevplatform/language/codegen/templaterenderer.h include/kdevplatform/language/codegen/templatesmodel.h include/kdevplatform/language/codegen/utilities.h include/kdevplatform/language/duchain/abstractfunctiondeclaration.h include/kdevplatform/language/duchain/aliasdeclaration.h include/kdevplatform/language/duchain/appendedlist.h include/kdevplatform/language/duchain/builders/abstractcontextbuilder.h include/kdevplatform/language/duchain/builders/abstractdeclarationbuilder.h include/kdevplatform/language/duchain/builders/abstracttypebuilder.h include/kdevplatform/language/duchain/builders/abstractusebuilder.h include/kdevplatform/language/duchain/builders/dynamiclanguageexpressionvisitor.h include/kdevplatform/language/duchain/classdeclaration.h include/kdevplatform/language/duchain/classfunctiondeclaration.h include/kdevplatform/language/duchain/classmemberdeclaration.h include/kdevplatform/language/duchain/classmemberdeclarationdata.h include/kdevplatform/language/duchain/codemodel.h include/kdevplatform/language/duchain/declaration.h include/kdevplatform/language/duchain/declarationdata.h include/kdevplatform/language/duchain/declarationid.h include/kdevplatform/language/duchain/definitions.h include/kdevplatform/language/duchain/duchain.h include/kdevplatform/language/duchain/duchainbase.h include/kdevplatform/language/duchain/duchaindumper.h include/kdevplatform/language/duchain/duchainlock.h include/kdevplatform/language/duchain/duchainpointer.h include/kdevplatform/language/duchain/duchainregister.h include/kdevplatform/language/duchain/duchainutils.h include/kdevplatform/language/duchain/ducontext.h include/kdevplatform/language/duchain/ducontextdata.h include/kdevplatform/language/duchain/dumpdotgraph.h include/kdevplatform/language/duchain/forwarddeclaration.h include/kdevplatform/language/duchain/functiondeclaration.h include/kdevplatform/language/duchain/functiondefinition.h include/kdevplatform/language/duchain/identifier.h include/kdevplatform/language/duchain/indexeddeclaration.h include/kdevplatform/language/duchain/indexedducontext.h include/kdevplatform/language/duchain/indexedtopducontext.h include/kdevplatform/language/duchain/instantiationinformation.h include/kdevplatform/language/duchain/localindexeddeclaration.h include/kdevplatform/language/duchain/localindexedducontext.h include/kdevplatform/language/duchain/namespacealiasdeclaration.h include/kdevplatform/language/duchain/navigation/abstractdeclarationnavigationcontext.h include/kdevplatform/language/duchain/navigation/abstractincludenavigationcontext.h include/kdevplatform/language/duchain/navigation/abstractnavigationcontext.h include/kdevplatform/language/duchain/navigation/abstractnavigationwidget.h include/kdevplatform/language/duchain/navigation/navigationaction.h include/kdevplatform/language/duchain/navigation/usescollector.h include/kdevplatform/language/duchain/navigation/usesnavigationcontext.h include/kdevplatform/language/duchain/navigation/useswidget.h include/kdevplatform/language/duchain/parsingenvironment.h include/kdevplatform/language/duchain/persistentsymboltable.h include/kdevplatform/language/duchain/problem.h include/kdevplatform/language/duchain/specializationstore.h include/kdevplatform/language/duchain/stringhelpers.h include/kdevplatform/language/duchain/topducontext.h include/kdevplatform/language/duchain/topducontextdata.h include/kdevplatform/language/duchain/topducontextutils.h include/kdevplatform/language/duchain/types/abstracttype.h include/kdevplatform/language/duchain/types/alltypes.h include/kdevplatform/language/duchain/types/arraytype.h include/kdevplatform/language/duchain/types/constantintegraltype.h include/kdevplatform/language/duchain/types/containertypes.h include/kdevplatform/language/duchain/types/delayedtype.h include/kdevplatform/language/duchain/types/enumerationtype.h include/kdevplatform/language/duchain/types/enumeratortype.h include/kdevplatform/language/duchain/types/functiontype.h include/kdevplatform/language/duchain/types/identifiedtype.h include/kdevplatform/language/duchain/types/indexedtype.h include/kdevplatform/language/duchain/types/integraltype.h include/kdevplatform/language/duchain/types/pointertype.h include/kdevplatform/language/duchain/types/referencetype.h include/kdevplatform/language/duchain/types/structuretype.h include/kdevplatform/language/duchain/types/typealiastype.h include/kdevplatform/language/duchain/types/typepointer.h include/kdevplatform/language/duchain/types/typeregister.h include/kdevplatform/language/duchain/types/typerepository.h include/kdevplatform/language/duchain/types/typesystem.h include/kdevplatform/language/duchain/types/typesystemdata.h include/kdevplatform/language/duchain/types/typeutils.h include/kdevplatform/language/duchain/types/unsuretype.h include/kdevplatform/language/duchain/use.h include/kdevplatform/language/editor/cursorinrevision.h include/kdevplatform/language/editor/documentcursor.h include/kdevplatform/language/editor/documentrange.h include/kdevplatform/language/editor/modificationrevision.h include/kdevplatform/language/editor/modificationrevisionset.h include/kdevplatform/language/editor/persistentmovingrange.h include/kdevplatform/language/editor/rangeinrevision.h include/kdevplatform/language/highlighting/codehighlighting.h include/kdevplatform/language/highlighting/colorcache.h include/kdevplatform/language/highlighting/configurablecolors.h include/kdevplatform/language/interfaces/abbreviations.h include/kdevplatform/language/interfaces/codecontext.h include/kdevplatform/language/interfaces/editorcontext.h include/kdevplatform/language/interfaces/iastcontainer.h include/kdevplatform/language/interfaces/icodehighlighting.h include/kdevplatform/language/interfaces/icontextbrowser.h include/kdevplatform/language/interfaces/icreateclasshelper.h include/kdevplatform/language/interfaces/ilanguagesupport.h include/kdevplatform/language/interfaces/iquickopen.h include/kdevplatform/language/interfaces/quickopendataprovider.h include/kdevplatform/language/interfaces/quickopenfilter.h include/kdevplatform/language/languageexport.h include/kdevplatform/language/util/basicsetrepository.h include/kdevplatform/language/util/debuglanguageparserhelper.h include/kdevplatform/language/util/includeitem.h include/kdevplatform/language/util/kdevhash.h include/kdevplatform/language/util/navigationtooltip.h include/kdevplatform/language/util/setrepository.h include/kdevplatform/openwith/iopenwith.h include/kdevplatform/outputview/filtereditem.h include/kdevplatform/outputview/ifilterstrategy.h include/kdevplatform/outputview/ioutputview.h include/kdevplatform/outputview/ioutputviewmodel.h include/kdevplatform/outputview/outputdelegate.h include/kdevplatform/outputview/outputexecutejob.h include/kdevplatform/outputview/outputfilteringstrategies.h include/kdevplatform/outputview/outputjob.h include/kdevplatform/outputview/outputmodel.h include/kdevplatform/outputview/outputviewexport.h include/kdevplatform/project/abstractfilemanagerplugin.h include/kdevplatform/project/builderjob.h include/kdevplatform/project/helper.h include/kdevplatform/project/importprojectjob.h include/kdevplatform/project/interfaces/ibuildsystemmanager.h include/kdevplatform/project/interfaces/iprojectbuilder.h include/kdevplatform/project/interfaces/iprojectfilemanager.h include/kdevplatform/project/interfaces/iprojectfilter.h include/kdevplatform/project/interfaces/iprojectfilterprovider.h include/kdevplatform/project/projectbuildsetmodel.h include/kdevplatform/project/projectchangesmodel.h include/kdevplatform/project/projectconfigpage.h include/kdevplatform/project/projectconfigskeleton.h include/kdevplatform/project/projectexport.h include/kdevplatform/project/projectfiltermanager.h include/kdevplatform/project/projectitemlineedit.h include/kdevplatform/project/projectmodel.h include/kdevplatform/project/projectutils.h include/kdevplatform/project/widgets/dependencieswidget.h include/kdevplatform/serialization/abstractitemrepository.h include/kdevplatform/serialization/indexedstring.h include/kdevplatform/serialization/indexedstringview.h include/kdevplatform/serialization/itemrepository.h include/kdevplatform/serialization/itemrepositoryexampleitem.h include/kdevplatform/serialization/itemrepositoryreferencecounting.h include/kdevplatform/serialization/itemrepositoryregistry.h include/kdevplatform/serialization/referencecounting.h include/kdevplatform/serialization/repositorymanager.h include/kdevplatform/serialization/serializationexport.h include/kdevplatform/shell/core.h include/kdevplatform/shell/documentcontroller.h include/kdevplatform/shell/environmentconfigurebutton.h include/kdevplatform/shell/filteredproblemstore.h include/kdevplatform/shell/languagecontroller.h include/kdevplatform/shell/launchconfiguration.h include/kdevplatform/shell/mainwindow.h include/kdevplatform/shell/partcontroller.h include/kdevplatform/shell/partdocument.h include/kdevplatform/shell/plugincontroller.h include/kdevplatform/shell/problem.h include/kdevplatform/shell/problemconstants.h include/kdevplatform/shell/problemmodel.h include/kdevplatform/shell/problemmodelset.h include/kdevplatform/shell/problemstore.h include/kdevplatform/shell/project.h include/kdevplatform/shell/projectcontroller.h include/kdevplatform/shell/runcontroller.h include/kdevplatform/shell/selectioncontroller.h include/kdevplatform/shell/session.h include/kdevplatform/shell/sessioncontroller.h include/kdevplatform/shell/sessionlock.h include/kdevplatform/shell/shellexport.h include/kdevplatform/shell/shellextension.h include/kdevplatform/shell/sourceformatterconfig.h include/kdevplatform/shell/sourceformattercontroller.h include/kdevplatform/shell/sourceformatterselectionedit.h include/kdevplatform/shell/textdocument.h include/kdevplatform/shell/uicontroller.h include/kdevplatform/sublime/area.h include/kdevplatform/sublime/areaindex.h include/kdevplatform/sublime/areawalkers.h include/kdevplatform/sublime/container.h include/kdevplatform/sublime/controller.h include/kdevplatform/sublime/document.h include/kdevplatform/sublime/mainwindow.h include/kdevplatform/sublime/mainwindowoperator.h include/kdevplatform/sublime/message.h include/kdevplatform/sublime/sublimedefs.h include/kdevplatform/sublime/sublimeexport.h include/kdevplatform/sublime/tooldocument.h include/kdevplatform/sublime/urldocument.h include/kdevplatform/sublime/view.h include/kdevplatform/sublime/viewbarcontainer.h include/kdevplatform/util/activetooltip.h include/kdevplatform/util/algorithm.h include/kdevplatform/util/autoorientedsplitter.h include/kdevplatform/util/commandexecutor.h include/kdevplatform/util/convenientfreelist.h include/kdevplatform/util/embeddedfreetree.h include/kdevplatform/util/environmentprofilelist.h include/kdevplatform/util/environmentselectionwidget.h include/kdevplatform/util/executecompositejob.h include/kdevplatform/util/filesystemhelpers.h include/kdevplatform/util/focusedtreeview.h include/kdevplatform/util/foregroundlock.h include/kdevplatform/util/formattinghelpers.h include/kdevplatform/util/jobstatus.h include/kdevplatform/util/kdevcoreaddons/kcompoundjob.h include/kdevplatform/util/kdevcoreaddons/ksequentialcompoundjob.h include/kdevplatform/util/kdevcoreaddons/ksimplesequentialcompoundjob.h include/kdevplatform/util/kdevstringhandler.h include/kdevplatform/util/kdevvarlengtharray.h include/kdevplatform/util/ksharedobject.h include/kdevplatform/util/multilevellistview.h include/kdevplatform/util/namespacedoperatorbitwiseorworkaroundqtbug.h include/kdevplatform/util/objectlist.h include/kdevplatform/util/owningrawpointercontainer.h include/kdevplatform/util/path.h include/kdevplatform/util/placeholderitemproxymodel.h include/kdevplatform/util/processlinemaker.h include/kdevplatform/util/projecttestjob.h include/kdevplatform/util/pushvalue.h include/kdevplatform/util/scopedincrementor.h include/kdevplatform/util/stack.h include/kdevplatform/util/stringviewhelpers.h include/kdevplatform/util/texteditorhelpers.h include/kdevplatform/util/toggleonlybool.h include/kdevplatform/util/utilexport.h include/kdevplatform/util/widgetcolorizer.h include/kdevplatform/util/wildcardhelpers.h include/kdevplatform/util/zoomcontroller.h include/kdevplatform/vcs/dvcs/dvcsevent.h include/kdevplatform/vcs/dvcs/dvcsjob.h include/kdevplatform/vcs/dvcs/dvcsplugin.h include/kdevplatform/vcs/dvcs/ui/dvcsimportmetadatawidget.h include/kdevplatform/vcs/interfaces/ibasicversioncontrol.h include/kdevplatform/vcs/interfaces/ibranchingversioncontrol.h include/kdevplatform/vcs/interfaces/ibrowsableversioncontrol.h include/kdevplatform/vcs/interfaces/icentralizedversioncontrol.h include/kdevplatform/vcs/interfaces/idistributedversioncontrol.h include/kdevplatform/vcs/interfaces/ipatchdocument.h include/kdevplatform/vcs/interfaces/ipatchsource.h include/kdevplatform/vcs/interfaces/irepositoryversioncontrol.h include/kdevplatform/vcs/models/brancheslistmodel.h include/kdevplatform/vcs/models/vcsannotationmodel.h include/kdevplatform/vcs/models/vcseventmodel.h include/kdevplatform/vcs/models/vcsfilechangesmodel.h include/kdevplatform/vcs/models/vcsitemeventmodel.h include/kdevplatform/vcs/vcsannotation.h include/kdevplatform/vcs/vcsdiff.h include/kdevplatform/vcs/vcsevent.h include/kdevplatform/vcs/vcsexport.h include/kdevplatform/vcs/vcsjob.h include/kdevplatform/vcs/vcslocation.h include/kdevplatform/vcs/vcspluginhelper.h include/kdevplatform/vcs/vcsrevision.h include/kdevplatform/vcs/vcsstatusinfo.h include/kdevplatform/vcs/widgets/standardvcslocationwidget.h include/kdevplatform/vcs/widgets/vcscommitdialog.h include/kdevplatform/vcs/widgets/vcsdiffwidget.h include/kdevplatform/vcs/widgets/vcseventwidget.h include/kdevplatform/vcs/widgets/vcsimportmetadatawidget.h include/kdevplatform/vcs/widgets/vcslocationwidget.h lib/cmake/KDevPlatform/KDevPlatformConfig.cmake lib/cmake/KDevPlatform/KDevPlatformConfigVersion.cmake lib/cmake/KDevPlatform/KDevPlatformMacros.cmake lib/cmake/KDevPlatform/KDevPlatformTargets-%%CMAKE_BUILD_TYPE%%.cmake lib/cmake/KDevPlatform/KDevPlatformTargets.cmake lib/cmake/KDevelop/KDevelopConfig.cmake lib/cmake/KDevelop/KDevelopConfigVersion.cmake lib/cmake/KDevelop/KDevelopTargets.cmake lib/libKDevCMakeCommon.so.%%PLATFORM_VER%% lib/libKDevClangPrivate.so.%%PLATFORM_VER%% lib/libKDevCompileAnalyzerCommon.so.%%PLATFORM_VER%% lib/libKDevPlatformDebugger.so lib/libKDevPlatformDebugger.so.%%SHLIB_VER_LONG%% lib/libKDevPlatformDebugger.so.%%PLATFORM_VER%% lib/libKDevPlatformDocumentation.so lib/libKDevPlatformDocumentation.so.%%SHLIB_VER_LONG%% lib/libKDevPlatformDocumentation.so.%%PLATFORM_VER%% lib/libKDevPlatformInterfaces.so lib/libKDevPlatformInterfaces.so.%%SHLIB_VER_LONG%% lib/libKDevPlatformInterfaces.so.%%PLATFORM_VER%% lib/libKDevPlatformLanguage.so lib/libKDevPlatformLanguage.so.%%SHLIB_VER_LONG%% lib/libKDevPlatformLanguage.so.%%PLATFORM_VER%% lib/libKDevPlatformOutputView.so lib/libKDevPlatformOutputView.so.%%SHLIB_VER_LONG%% lib/libKDevPlatformOutputView.so.%%PLATFORM_VER%% lib/libKDevPlatformProject.so lib/libKDevPlatformProject.so.%%SHLIB_VER_LONG%% lib/libKDevPlatformProject.so.%%PLATFORM_VER%% lib/libKDevPlatformSerialization.so lib/libKDevPlatformSerialization.so.%%SHLIB_VER_LONG%% lib/libKDevPlatformSerialization.so.%%PLATFORM_VER%% lib/libKDevPlatformShell.so lib/libKDevPlatformShell.so.%%SHLIB_VER_LONG%% lib/libKDevPlatformShell.so.%%PLATFORM_VER%% lib/libKDevPlatformSublime.so lib/libKDevPlatformSublime.so.%%SHLIB_VER_LONG%% lib/libKDevPlatformSublime.so.%%PLATFORM_VER%% lib/libKDevPlatformUtil.so lib/libKDevPlatformUtil.so.%%SHLIB_VER_LONG%% lib/libKDevPlatformUtil.so.%%PLATFORM_VER%% lib/libKDevPlatformVcs.so lib/libKDevPlatformVcs.so.%%SHLIB_VER_LONG%% lib/libKDevPlatformVcs.so.%%PLATFORM_VER%% lib/libKDevelopSessionsWatch.so %%QT_PLUGINDIR%%/kdevplatform/%%PLATFORM_VER%%/KDevCMakeBuilder.so %%QT_PLUGINDIR%%/kdevplatform/%%PLATFORM_VER%%/KDevCMakeDocumentation.so %%QT_PLUGINDIR%%/kdevplatform/%%PLATFORM_VER%%/KDevCMakeManager.so %%QT_PLUGINDIR%%/kdevplatform/%%PLATFORM_VER%%/KDevCustomBuildSystem.so %%QT_PLUGINDIR%%/kdevplatform/%%PLATFORM_VER%%/KDevCustomMakeManager.so %%QT_PLUGINDIR%%/kdevplatform/%%PLATFORM_VER%%/KDevDefinesAndIncludesManager.so %%QT_PLUGINDIR%%/kdevplatform/%%PLATFORM_VER%%/KDevGenericManager.so %%QT_PLUGINDIR%%/kdevplatform/%%PLATFORM_VER%%/KDevMakeBuilder.so %%QT_PLUGINDIR%%/kdevplatform/%%PLATFORM_VER%%/KDevManPage.so %%QT_PLUGINDIR%%/kdevplatform/%%PLATFORM_VER%%/KDevMesonManager.so %%QT_PLUGINDIR%%/kdevplatform/%%PLATFORM_VER%%/KDevNinjaBuilder.so %%QT_PLUGINDIR%%/kdevplatform/%%PLATFORM_VER%%/KDevOutlineView.so %%QT_PLUGINDIR%%/kdevplatform/%%PLATFORM_VER%%/KDevProjectFilter.so %%QT_PLUGINDIR%%/kdevplatform/%%PLATFORM_VER%%/KDevProjectManagerView.so %%QT_PLUGINDIR%%/kdevplatform/%%PLATFORM_VER%%/KDevQMakeBuilder.so %%QT_PLUGINDIR%%/kdevplatform/%%PLATFORM_VER%%/KDevQMakeManager.so %%QT_PLUGINDIR%%/kdevplatform/%%PLATFORM_VER%%/KDevStandardOutputView.so %%QT_PLUGINDIR%%/kdevplatform/%%PLATFORM_VER%%/KDevWelcomePage.so %%QT_PLUGINDIR%%/kdevplatform/%%PLATFORM_VER%%/kdevandroid.so %%QT_PLUGINDIR%%/kdevplatform/%%PLATFORM_VER%%/kdevappwizard.so %%QT_PLUGINDIR%%/kdevplatform/%%PLATFORM_VER%%/kdevastyle.so %%QT_PLUGINDIR%%/kdevplatform/%%PLATFORM_VER%%/kdevbazaar.so %%QT_PLUGINDIR%%/kdevplatform/%%PLATFORM_VER%%/kdevclangsupport.so %%QT_PLUGINDIR%%/kdevplatform/%%PLATFORM_VER%%/kdevclangtidy.so %%QT_PLUGINDIR%%/kdevplatform/%%PLATFORM_VER%%/kdevclassbrowser.so %%QT_PLUGINDIR%%/kdevplatform/%%PLATFORM_VER%%/kdevclazy.so %%QT_PLUGINDIR%%/kdevplatform/%%PLATFORM_VER%%/kdevcodeutils.so %%QT_PLUGINDIR%%/kdevplatform/%%PLATFORM_VER%%/kdevcontextbrowser.so %%QT_PLUGINDIR%%/kdevplatform/%%PLATFORM_VER%%/kdevcppcheck.so %%QT_PLUGINDIR%%/kdevplatform/%%PLATFORM_VER%%/kdevcraft.so %%QT_PLUGINDIR%%/kdevplatform/%%PLATFORM_VER%%/kdevcustomscript.so %%QT_PLUGINDIR%%/kdevplatform/%%PLATFORM_VER%%/kdevdocker.so %%QT_PLUGINDIR%%/kdevplatform/%%PLATFORM_VER%%/kdevdocumentswitcher.so %%QT_PLUGINDIR%%/kdevplatform/%%PLATFORM_VER%%/kdevdocumentview.so %%QT_PLUGINDIR%%/kdevplatform/%%PLATFORM_VER%%/kdevexecute.so %%QT_PLUGINDIR%%/kdevplatform/%%PLATFORM_VER%%/kdevexecuteplasmoid.so %%QT_PLUGINDIR%%/kdevplatform/%%PLATFORM_VER%%/kdevexecutescript.so %%QT_PLUGINDIR%%/kdevplatform/%%PLATFORM_VER%%/kdevexternalscript.so %%QT_PLUGINDIR%%/kdevplatform/%%PLATFORM_VER%%/kdevfilemanager.so %%QT_PLUGINDIR%%/kdevplatform/%%PLATFORM_VER%%/kdevfiletemplates.so %%QT_PLUGINDIR%%/kdevplatform/%%PLATFORM_VER%%/kdevflatpak.so %%QT_PLUGINDIR%%/kdevplatform/%%PLATFORM_VER%%/kdevgdb.so %%QT_PLUGINDIR%%/kdevplatform/%%PLATFORM_VER%%/kdevghprovider.so %%QT_PLUGINDIR%%/kdevplatform/%%PLATFORM_VER%%/kdevgit.so %%QT_PLUGINDIR%%/kdevplatform/%%PLATFORM_VER%%/kdevgrepview.so %%QT_PLUGINDIR%%/kdevplatform/%%PLATFORM_VER%%/kdevheaptrack.so %%QT_PLUGINDIR%%/kdevplatform/%%PLATFORM_VER%%/kdevkonsoleview.so %%QT_PLUGINDIR%%/kdevplatform/%%PLATFORM_VER%%/kdevlldb.so %%QT_PLUGINDIR%%/kdevplatform/%%PLATFORM_VER%%/kdevopenwith.so %%QT_PLUGINDIR%%/kdevplatform/%%PLATFORM_VER%%/kdevpatchreview.so %%QT_PLUGINDIR%%/kdevplatform/%%PLATFORM_VER%%/kdevperforce.so %%QT_PLUGINDIR%%/kdevplatform/%%PLATFORM_VER%%/kdevproblemreporter.so %%QT_PLUGINDIR%%/kdevplatform/%%PLATFORM_VER%%/kdevqthelp.so %%QT_PLUGINDIR%%/kdevplatform/%%PLATFORM_VER%%/kdevquickopen.so %%QT_PLUGINDIR%%/kdevplatform/%%PLATFORM_VER%%/kdevsourceformatter.so %%QT_PLUGINDIR%%/kdevplatform/%%PLATFORM_VER%%/kdevsubversion.so %%QT_PLUGINDIR%%/kdevplatform/%%PLATFORM_VER%%/kdevswitchtobuddy.so %%QT_PLUGINDIR%%/kdevplatform/%%PLATFORM_VER%%/kdevtestview.so %%QT_PLUGINDIR%%/kdevplatform/%%PLATFORM_VER%%/kdevvcschangesviewplugin.so %%QT_PLUGINDIR%%/kdevplatform/%%PLATFORM_VER%%/scratchpad.so %%QT_PLUGINDIR%%/kf6/krunner/kdevelopsessions.so %%QT_PLUGINDIR%%/kf6/ktexttemplate/kdev_filters.so %%QT_QMLDIR%%/org/kde/plasma/private/kdevelopsessions/libkdevelopsessionsplugin.so %%QT_QMLDIR%%/org/kde/plasma/private/kdevelopsessions/qmldir share/applications/org.kde.kdevelop.desktop share/applications/org.kde.kdevelop_bzr.desktop share/applications/org.kde.kdevelop_git.desktop share/applications/org.kde.kdevelop_kdev4.desktop share/applications/org.kde.kdevelop_ps.desktop share/applications/org.kde.kdevelop_svn.desktop share/doc/HTML/ca/kdevelop/index.cache.bz2 share/doc/HTML/ca/kdevelop/index.docbook share/doc/HTML/ca/kdevelop/kdevelop4_sessionsprojectsworkingsets.png share/doc/HTML/en/kdevelop/Icon-folder.png share/doc/HTML/en/kdevelop/Icon-list-add.png share/doc/HTML/en/kdevelop/Icon-list-remove.png share/doc/HTML/en/kdevelop/index.cache.bz2 share/doc/HTML/en/kdevelop/index.docbook share/doc/HTML/en/kdevelop/kdevelop-10.png share/doc/HTML/en/kdevelop/kdevelop-11.png share/doc/HTML/en/kdevelop/kdevelop-12.png share/doc/HTML/en/kdevelop/kdevelop-13.png share/doc/HTML/en/kdevelop/kdevelop-14.png share/doc/HTML/en/kdevelop/kdevelop-15.png share/doc/HTML/en/kdevelop/kdevelop-16.png share/doc/HTML/en/kdevelop/kdevelop-17.png share/doc/HTML/en/kdevelop/kdevelop-18.png share/doc/HTML/en/kdevelop/kdevelop-19.png share/doc/HTML/en/kdevelop/kdevelop-1a.png share/doc/HTML/en/kdevelop/kdevelop-2.png share/doc/HTML/en/kdevelop/kdevelop-20.png share/doc/HTML/en/kdevelop/kdevelop-23.png share/doc/HTML/en/kdevelop/kdevelop-24.png share/doc/HTML/en/kdevelop/kdevelop-25.png share/doc/HTML/en/kdevelop/kdevelop-26.png share/doc/HTML/en/kdevelop/kdevelop-3.png share/doc/HTML/en/kdevelop/kdevelop-30.png share/doc/HTML/en/kdevelop/kdevelop-31.png share/doc/HTML/en/kdevelop/kdevelop-32.png share/doc/HTML/en/kdevelop/kdevelop-33.png share/doc/HTML/en/kdevelop/kdevelop-34.png share/doc/HTML/en/kdevelop/kdevelop-35.png share/doc/HTML/en/kdevelop/kdevelop-36.png share/doc/HTML/en/kdevelop/kdevelop-37.png share/doc/HTML/en/kdevelop/kdevelop-38.png share/doc/HTML/en/kdevelop/kdevelop-39.png share/doc/HTML/en/kdevelop/kdevelop-4.png share/doc/HTML/en/kdevelop/kdevelop-40.png share/doc/HTML/en/kdevelop/kdevelop-41.png share/doc/HTML/en/kdevelop/kdevelop-42.png share/doc/HTML/en/kdevelop/kdevelop-43.png share/doc/HTML/en/kdevelop/kdevelop-5.png share/doc/HTML/en/kdevelop/kdevelop-6.png share/doc/HTML/en/kdevelop/kdevelop-7.png share/doc/HTML/en/kdevelop/kdevelop-8.png share/doc/HTML/en/kdevelop/kdevelop-9.png share/doc/HTML/en/kdevelop/kdevelop-project-dialog.png share/doc/HTML/en/kdevelop/kdevelop-template-inheritance.png share/doc/HTML/en/kdevelop/kdevelop-template-manager.png share/doc/HTML/en/kdevelop/kdevelop-template-members.png share/doc/HTML/en/kdevelop/kdevelop-template-result.png share/doc/HTML/en/kdevelop/kdevelop-template-selection.png share/doc/HTML/en/kdevelop/kdevelop4_noworkingset.png share/doc/HTML/en/kdevelop/kdevelop4_sessionsprojectsworkingsets.png share/doc/HTML/es/kdevelop/index.cache.bz2 share/doc/HTML/es/kdevelop/index.docbook share/doc/HTML/it/kdevelop/index.cache.bz2 share/doc/HTML/it/kdevelop/index.docbook share/doc/HTML/nl/kdevelop/index.cache.bz2 share/doc/HTML/nl/kdevelop/index.docbook share/doc/HTML/pt/kdevelop/index.cache.bz2 share/doc/HTML/pt/kdevelop/index.docbook share/doc/HTML/pt_BR/kdevelop/index.cache.bz2 share/doc/HTML/pt_BR/kdevelop/index.docbook share/doc/HTML/ru/kdevelop/index.cache.bz2 share/doc/HTML/ru/kdevelop/index.docbook share/doc/HTML/sl/kdevelop/index.cache.bz2 share/doc/HTML/sl/kdevelop/index.docbook share/doc/HTML/sv/kdevelop/index.cache.bz2 share/doc/HTML/sv/kdevelop/index.docbook share/doc/HTML/uk/kdevelop/index.cache.bz2 share/doc/HTML/uk/kdevelop/index.docbook share/icons/hicolor/1024x1024/apps/kdevelop.png share/icons/hicolor/128x128/apps/bazaar.png share/icons/hicolor/128x128/apps/clazy.png share/icons/hicolor/128x128/apps/cmake.png share/icons/hicolor/128x128/apps/cppcheck.png share/icons/hicolor/128x128/apps/kdevelop.png share/icons/hicolor/16x16/actions/breakpoint.png share/icons/hicolor/16x16/apps/cmake.png share/icons/hicolor/16x16/apps/github-forked.png share/icons/hicolor/16x16/apps/github-private.png share/icons/hicolor/16x16/apps/github-repo.png share/icons/hicolor/16x16/apps/kdevelop.png share/icons/hicolor/16x16/apps/kdevgh.png -@comment share/icons/hicolor/16x16/apps/subversion.png +share/icons/hicolor/16x16/apps/subversion.png share/icons/hicolor/22x22/actions/breakpoint.png share/icons/hicolor/256x256/apps/kdevelop.png share/icons/hicolor/32x32/actions/breakpoint.png share/icons/hicolor/32x32/apps/cmake.png share/icons/hicolor/32x32/apps/kdevelop.png share/icons/hicolor/32x32/apps/kdevgh.png share/icons/hicolor/32x32/apps/subversion.png share/icons/hicolor/48x48/apps/kdevelop.png share/icons/hicolor/512x512/apps/kdevelop.png share/icons/hicolor/64x64/apps/cmake.png share/icons/hicolor/64x64/apps/kdevelop.png share/icons/hicolor/64x64/apps/subversion.png share/icons/hicolor/scalable/actions/breakpoint.svg share/icons/hicolor/scalable/apps/git.svg share/icons/hicolor/scalable/apps/kdevelop.svg share/icons/hicolor/scalable/apps/qtlogo.svg share/icons/hicolor/scalable/apps/subversion.svg share/kdevappwizard/templates/cmake_kdevplugin.tar.bz2 share/kdevappwizard/templates/cmake_plainc.tar.bz2 share/kdevappwizard/templates/cmake_plaincpp.tar.bz2 share/kdevappwizard/templates/cmake_qt6quick_app.tar.bz2 share/kdevappwizard/templates/cmake_qt6widgetsapp.tar.bz2 share/kdevappwizard/templates/empty.tar.bz2 share/kdevappwizard/templates/file_template_template.tar.bz2 share/kdevappwizard/templates/meson_plainc.tar.bz2 share/kdevappwizard/templates/meson_plaincpp.tar.bz2 share/kdevappwizard/templates/qmake_qt5guiapp.tar.bz2 share/kdevappwizard/templates/qt5-qml2.tar.bz2 share/kdevclangsupport/gccCompatibility/additional_floating_types.h share/kdevclangsupport/wrappedQtHeaders/QtCore/qobjectdefs.h share/kdevcodegen/licenses/Apache v2 share/kdevcodegen/licenses/BSD share/kdevcodegen/licenses/Boost share/kdevcodegen/licenses/GPL v2 share/kdevcodegen/licenses/GPL v2+ (KDE) share/kdevcodegen/licenses/GPL v3 share/kdevcodegen/licenses/LGPL v2 share/kdevcodegen/licenses/LGPL v2+ (KDE) share/kdevcodegen/licenses/LGPL v3 share/kdevcodegen/licenses/MIT X11 share/kdevcodegen/licenses/Mozilla v1.1 share/kdevcodegen/templates/arguments_names.txt share/kdevcodegen/templates/arguments_types_names.txt share/kdevcodegen/templates/class_declaration_apidox_cpp.txt share/kdevcodegen/templates/class_declaration_cpp.txt share/kdevcodegen/templates/class_method_declaration_apidox_cpp.txt share/kdevcodegen/templates/class_method_declaration_cpp.txt share/kdevcodegen/templates/class_property_getter_declaration_apidox_cpp.txt share/kdevcodegen/templates/class_property_getter_declaration_cpp.txt share/kdevcodegen/templates/class_property_getter_definition_cpp.txt share/kdevcodegen/templates/class_property_setter_declaration_apidox_cpp.txt share/kdevcodegen/templates/class_property_setter_declaration_cpp.txt share/kdevcodegen/templates/class_property_setter_definition_cpp.txt share/kdevcodegen/templates/class_property_signal_declaration_cpp.txt share/kdevcodegen/templates/class_qproperty_declaration_cpp.txt share/kdevcodegen/templates/cpp_header.h share/kdevcodegen/templates/cpp_header_onlyfunctions.h share/kdevcodegen/templates/cpp_implementation.cpp share/kdevcodegen/templates/cpp_qobject_header.h share/kdevcodegen/templates/cpp_qobject_implementation.cpp share/kdevcodegen/templates/cpp_qobject_pimpl_header.h share/kdevcodegen/templates/cpp_qobject_pimpl_implementation.cpp share/kdevcodegen/templates/cpp_qobject_pimpl_p_header.h share/kdevcodegen/templates/include_guard_cpp.txt share/kdevcodegen/templates/license_header_cpp.txt share/kdevcodegen/templates/method_declaration_cpp.txt share/kdevcodegen/templates/method_definition_cpp.txt share/kdevcodegen/templates/namespace_close_cpp.txt share/kdevcodegen/templates/namespace_open_cpp.txt share/kdevcodegen/templates/namespace_use_cpp.txt share/kdevcodeutils/templates/doxygen_cpp.txt share/kdevcodeutils/templates/phpdoc_php.txt share/kdevcodeutils/templates/rest_python.txt %%DATADIR%%/icons/hicolor/16x16/actions/classnew.png %%DATADIR%%/icons/hicolor/16x16/actions/dirsync.png %%DATADIR%%/icons/hicolor/16x16/actions/methodnew.png %%DATADIR%%/icons/hicolor/16x16/actions/variablenew.png %%DATADIR%%/icons/hicolor/22x22/actions/classnew.png %%DATADIR%%/icons/hicolor/32x32/actions/classnew.png %%DATADIR%%/kdevflatpak/replicate.sh %%DATADIR%%/pics/CTchildren.png %%DATADIR%%/pics/CTclients.png %%DATADIR%%/pics/CTdisconnected_parents.png %%DATADIR%%/pics/CTparents.png %%DATADIR%%/pics/CTsuppliers.png %%DATADIR%%/pics/CTvirtuals.png %%DATADIR%%/pics/CVclass.png %%DATADIR%%/pics/CVglobal_meth.png %%DATADIR%%/pics/CVglobal_var.png %%DATADIR%%/pics/CVnamespace.png %%DATADIR%%/pics/CVpackage_meth.png %%DATADIR%%/pics/CVpackage_var.png %%DATADIR%%/pics/CVprivate_meth.png %%DATADIR%%/pics/CVprivate_signal.png %%DATADIR%%/pics/CVprivate_slot.png %%DATADIR%%/pics/CVprivate_var.png %%DATADIR%%/pics/CVprotected_meth.png %%DATADIR%%/pics/CVprotected_signal.png %%DATADIR%%/pics/CVprotected_slot.png %%DATADIR%%/pics/CVprotected_var.png %%DATADIR%%/pics/CVpublic_meth.png %%DATADIR%%/pics/CVpublic_signal.png %%DATADIR%%/pics/CVpublic_slot.png %%DATADIR%%/pics/CVpublic_var.png %%DATADIR%%/pics/CVstruct.png %%DATADIR%%/pics/CVtypedef.png %%DATADIR%%/pics/code-class.png %%DATADIR%%/pics/code-function.png %%DATADIR%%/pics/enum.png %%DATADIR%%/pics/field.png %%DATADIR%%/pics/namespace.png %%DATADIR%%/pics/private_class.png %%DATADIR%%/pics/private_enum.png %%DATADIR%%/pics/private_field.png %%DATADIR%%/pics/private_function.png %%DATADIR%%/pics/private_struct.png %%DATADIR%%/pics/private_union.png %%DATADIR%%/pics/protected_class.png %%DATADIR%%/pics/protected_enum.png %%DATADIR%%/pics/protected_field.png %%DATADIR%%/pics/protected_function.png %%DATADIR%%/pics/protected_struct.png %%DATADIR%%/pics/protected_union.png %%DATADIR%%/pics/signal.png %%DATADIR%%/pics/slot.png %%DATADIR%%/pics/struct.png %%DATADIR%%/pics/typedef.png %%DATADIR%%/pics/union.png %%DATADIR%%/shortcuts/QtCreator share/kdevfiletemplates/templates/c_gobject.tar.bz2 share/kdevfiletemplates/templates/c_gobject_private.tar.bz2 share/kdevfiletemplates/templates/c_gobject_properties.tar.bz2 share/kdevfiletemplates/templates/cmake_module.tar.bz2 share/kdevfiletemplates/templates/cpp_basic.tar.bz2 share/kdevfiletemplates/templates/cpp_cpputest.tar.bz2 share/kdevfiletemplates/templates/cpp_gtest.tar.bz2 share/kdevfiletemplates/templates/cpp_qtestlib.tar.bz2 share/kdevfiletemplates/templates/cpp_qtestlib_kdevelop.tar.bz2 share/kdevfiletemplates/templates/dockerfile-template.tar.bz2 share/kdevfiletemplates/templates/flatpak-template.tar.bz2 share/kdevfiletemplates/templates/php_phpunit.tar.bz2 share/kdevfiletemplates/templates/private_pointer.tar.bz2 share/kdevfiletemplates/templates/python_basic.tar.bz2 share/kdevfiletemplates/templates/python_pyunit.tar.bz2 share/kdevfiletemplates/templates/qabstractitemmodel.tar.bz2 share/kdevfiletemplates/templates/qabstractitemmodel_pimpl.tar.bz2 share/kdevfiletemplates/templates/qdialog.tar.bz2 share/kdevfiletemplates/templates/qdialog_pimpl.tar.bz2 share/kdevfiletemplates/templates/qobject.tar.bz2 share/kdevfiletemplates/templates/qobject_pimpl.tar.bz2 share/kdevfiletemplates/templates/qt_interface.tar.bz2 share/kdevfiletemplates/templates/qt_qrc_file.tar.bz2 share/kdevfiletemplates/templates/qt_shared.tar.bz2 share/kdevfiletemplates/templates/qt_widget.tar.bz2 share/kdevfiletemplates/templates/qwidget_pimpl.tar.bz2 share/kdevgdb/printers/gdbinit share/kdevgdb/printers/helper.py share/kdevgdb/printers/kde.py share/kdevgdb/printers/qt.py share/kdevgdb/printers/qtcreator_debugger/README share/kdevgdb/printers/qtcreator_debugger/__init__.py share/kdevgdb/printers/qtcreator_debugger/dumper.py share/kdevgdb/printers/qtcreator_debugger/gdbbridge.py share/kdevgdb/printers/qtcreator_debugger/qttypes.py share/kdevlldb/formatters/all.py share/kdevlldb/formatters/helpers.py share/kdevlldb/formatters/kde.py share/kdevlldb/formatters/qt.py share/kdevmanpage/manpagedocumentation.css share/kdevplatform/shellutils/.zshrc share/knotifications6/kdevelop.notifyrc share/knsrcfiles/kdevappwizard.knsrc share/knsrcfiles/kdevelop-qthelp.knsrc share/knsrcfiles/kdevfiletemplates.knsrc share/locale/af/LC_MESSAGES/kdevelop.mo share/locale/ar/LC_MESSAGES/kdevclassbrowser.mo share/locale/ar/LC_MESSAGES/kdevelop.mo share/locale/ar/LC_MESSAGES/kdevexecuteplasmoid.mo share/locale/ar/LC_MESSAGES/kdevkonsole.mo share/locale/ar/LC_MESSAGES/kdevplatform.mo share/locale/ar/LC_MESSAGES/kdevqthelp.mo share/locale/ar/LC_MESSAGES/kdevwelcomepage.mo share/locale/az/LC_MESSAGES/kdevclazy.mo share/locale/az/LC_MESSAGES/kdevdebuggercommon.mo share/locale/az/LC_MESSAGES/kdevelop.mo share/locale/az/LC_MESSAGES/kdevgit.mo share/locale/az/LC_MESSAGES/kdevmesonmanager.mo share/locale/az/LC_MESSAGES/kdevplatform.mo share/locale/be/LC_MESSAGES/kdevelop.mo share/locale/bg/LC_MESSAGES/kdevandroid.mo share/locale/bg/LC_MESSAGES/kdevappwizard.mo share/locale/bg/LC_MESSAGES/kdevastyle.mo share/locale/bg/LC_MESSAGES/kdevbazaar.mo share/locale/bg/LC_MESSAGES/kdevclang.mo share/locale/bg/LC_MESSAGES/kdevclangtidy.mo share/locale/bg/LC_MESSAGES/kdevclassbrowser.mo share/locale/bg/LC_MESSAGES/kdevclazy.mo share/locale/bg/LC_MESSAGES/kdevcmake.mo share/locale/bg/LC_MESSAGES/kdevcmakebuilder.mo share/locale/bg/LC_MESSAGES/kdevcodeutils.mo share/locale/bg/LC_MESSAGES/kdevcompileanalyzercommon.mo share/locale/bg/LC_MESSAGES/kdevcontextbrowser.mo share/locale/bg/LC_MESSAGES/kdevcppcheck.mo share/locale/bg/LC_MESSAGES/kdevcustombuildsystem.mo share/locale/bg/LC_MESSAGES/kdevcustomdefinesandincludes.mo share/locale/bg/LC_MESSAGES/kdevcustommake.mo share/locale/bg/LC_MESSAGES/kdevcustomscript.mo share/locale/bg/LC_MESSAGES/kdevdebuggercommon.mo share/locale/bg/LC_MESSAGES/kdevdocker.mo share/locale/bg/LC_MESSAGES/kdevdocumentswitcher.mo share/locale/bg/LC_MESSAGES/kdevdocumentview.mo share/locale/bg/LC_MESSAGES/kdevelop.mo share/locale/bg/LC_MESSAGES/kdevexecute.mo share/locale/bg/LC_MESSAGES/kdevexecuteplasmoid.mo share/locale/bg/LC_MESSAGES/kdevexecutescript.mo share/locale/bg/LC_MESSAGES/kdevexternalscript.mo share/locale/bg/LC_MESSAGES/kdevfilemanager.mo share/locale/bg/LC_MESSAGES/kdevfiletemplates.mo share/locale/bg/LC_MESSAGES/kdevflatpak.mo share/locale/bg/LC_MESSAGES/kdevgdb.mo share/locale/bg/LC_MESSAGES/kdevghprovider.mo share/locale/bg/LC_MESSAGES/kdevgit.mo share/locale/bg/LC_MESSAGES/kdevgrepview.mo share/locale/bg/LC_MESSAGES/kdevheaptrack.mo share/locale/bg/LC_MESSAGES/kdevkonsole.mo share/locale/bg/LC_MESSAGES/kdevlldb.mo share/locale/bg/LC_MESSAGES/kdevmakebuilder.mo share/locale/bg/LC_MESSAGES/kdevmanpage.mo share/locale/bg/LC_MESSAGES/kdevmesonmanager.mo share/locale/bg/LC_MESSAGES/kdevninja.mo share/locale/bg/LC_MESSAGES/kdevokteta.mo share/locale/bg/LC_MESSAGES/kdevopenwith.mo share/locale/bg/LC_MESSAGES/kdevoutlineview.mo share/locale/bg/LC_MESSAGES/kdevpatchreview.mo share/locale/bg/LC_MESSAGES/kdevperforce.mo share/locale/bg/LC_MESSAGES/kdevplatform.mo share/locale/bg/LC_MESSAGES/kdevproblemreporter.mo share/locale/bg/LC_MESSAGES/kdevprojectfilter.mo share/locale/bg/LC_MESSAGES/kdevprojectmanagerview.mo share/locale/bg/LC_MESSAGES/kdevqmakebuilder.mo share/locale/bg/LC_MESSAGES/kdevqmakemanager.mo share/locale/bg/LC_MESSAGES/kdevqmljs.mo share/locale/bg/LC_MESSAGES/kdevqthelp.mo share/locale/bg/LC_MESSAGES/kdevquickopen.mo share/locale/bg/LC_MESSAGES/kdevscratchpad.mo share/locale/bg/LC_MESSAGES/kdevsourceformatter.mo share/locale/bg/LC_MESSAGES/kdevstandardoutputview.mo share/locale/bg/LC_MESSAGES/kdevsubversion.mo share/locale/bg/LC_MESSAGES/kdevswitchtobuddy.mo share/locale/bg/LC_MESSAGES/kdevtestview.mo share/locale/bg/LC_MESSAGES/kdevvcsprojectintegration.mo share/locale/bg/LC_MESSAGES/kdevwelcomepage.mo share/locale/bg/LC_MESSAGES/plasma_applet_kdevelopsessions.mo share/locale/bg/LC_MESSAGES/plasma_runner_kdevelopsessions.mo share/locale/br/LC_MESSAGES/kdevelop.mo share/locale/bs/LC_MESSAGES/kdevappwizard.mo share/locale/bs/LC_MESSAGES/kdevbazaar.mo share/locale/bs/LC_MESSAGES/kdevclassbrowser.mo share/locale/bs/LC_MESSAGES/kdevcmake.mo share/locale/bs/LC_MESSAGES/kdevcmakebuilder.mo share/locale/bs/LC_MESSAGES/kdevcodeutils.mo share/locale/bs/LC_MESSAGES/kdevcontextbrowser.mo share/locale/bs/LC_MESSAGES/kdevcppcheck.mo share/locale/bs/LC_MESSAGES/kdevcustombuildsystem.mo share/locale/bs/LC_MESSAGES/kdevcustommake.mo share/locale/bs/LC_MESSAGES/kdevdebuggercommon.mo share/locale/bs/LC_MESSAGES/kdevdocumentswitcher.mo share/locale/bs/LC_MESSAGES/kdevdocumentview.mo share/locale/bs/LC_MESSAGES/kdevelop.mo share/locale/bs/LC_MESSAGES/kdevexecute.mo share/locale/bs/LC_MESSAGES/kdevexecuteplasmoid.mo share/locale/bs/LC_MESSAGES/kdevexecutescript.mo share/locale/bs/LC_MESSAGES/kdevexternalscript.mo share/locale/bs/LC_MESSAGES/kdevfilemanager.mo share/locale/bs/LC_MESSAGES/kdevfiletemplates.mo share/locale/bs/LC_MESSAGES/kdevgdb.mo share/locale/bs/LC_MESSAGES/kdevghprovider.mo share/locale/bs/LC_MESSAGES/kdevgit.mo share/locale/bs/LC_MESSAGES/kdevgrepview.mo share/locale/bs/LC_MESSAGES/kdevkonsole.mo share/locale/bs/LC_MESSAGES/kdevmakebuilder.mo share/locale/bs/LC_MESSAGES/kdevmanpage.mo share/locale/bs/LC_MESSAGES/kdevninja.mo share/locale/bs/LC_MESSAGES/kdevokteta.mo share/locale/bs/LC_MESSAGES/kdevopenwith.mo share/locale/bs/LC_MESSAGES/kdevpatchreview.mo share/locale/bs/LC_MESSAGES/kdevperforce.mo share/locale/bs/LC_MESSAGES/kdevplatform.mo share/locale/bs/LC_MESSAGES/kdevproblemreporter.mo share/locale/bs/LC_MESSAGES/kdevprojectfilter.mo share/locale/bs/LC_MESSAGES/kdevprojectmanagerview.mo share/locale/bs/LC_MESSAGES/kdevqmakebuilder.mo share/locale/bs/LC_MESSAGES/kdevqmakemanager.mo share/locale/bs/LC_MESSAGES/kdevqmljs.mo share/locale/bs/LC_MESSAGES/kdevqthelp.mo share/locale/bs/LC_MESSAGES/kdevquickopen.mo share/locale/bs/LC_MESSAGES/kdevstandardoutputview.mo share/locale/bs/LC_MESSAGES/kdevsubversion.mo share/locale/bs/LC_MESSAGES/kdevswitchtobuddy.mo share/locale/bs/LC_MESSAGES/kdevtestview.mo share/locale/bs/LC_MESSAGES/kdevvcsprojectintegration.mo share/locale/bs/LC_MESSAGES/plasma_applet_kdevelopsessions.mo share/locale/bs/LC_MESSAGES/plasma_runner_kdevelopsessions.mo share/locale/ca/LC_MESSAGES/kdevandroid.mo share/locale/ca/LC_MESSAGES/kdevappwizard.mo share/locale/ca/LC_MESSAGES/kdevastyle.mo share/locale/ca/LC_MESSAGES/kdevbazaar.mo share/locale/ca/LC_MESSAGES/kdevclang.mo share/locale/ca/LC_MESSAGES/kdevclangtidy.mo share/locale/ca/LC_MESSAGES/kdevclassbrowser.mo share/locale/ca/LC_MESSAGES/kdevclazy.mo share/locale/ca/LC_MESSAGES/kdevcmake.mo share/locale/ca/LC_MESSAGES/kdevcmakebuilder.mo share/locale/ca/LC_MESSAGES/kdevcodeutils.mo share/locale/ca/LC_MESSAGES/kdevcompileanalyzercommon.mo share/locale/ca/LC_MESSAGES/kdevcontextbrowser.mo share/locale/ca/LC_MESSAGES/kdevcppcheck.mo share/locale/ca/LC_MESSAGES/kdevcustombuildsystem.mo share/locale/ca/LC_MESSAGES/kdevcustomdefinesandincludes.mo share/locale/ca/LC_MESSAGES/kdevcustommake.mo share/locale/ca/LC_MESSAGES/kdevcustomscript.mo share/locale/ca/LC_MESSAGES/kdevdebuggercommon.mo share/locale/ca/LC_MESSAGES/kdevdocker.mo share/locale/ca/LC_MESSAGES/kdevdocumentswitcher.mo share/locale/ca/LC_MESSAGES/kdevdocumentview.mo share/locale/ca/LC_MESSAGES/kdevelop.mo share/locale/ca/LC_MESSAGES/kdevexecute.mo share/locale/ca/LC_MESSAGES/kdevexecuteplasmoid.mo share/locale/ca/LC_MESSAGES/kdevexecutescript.mo share/locale/ca/LC_MESSAGES/kdevexternalscript.mo share/locale/ca/LC_MESSAGES/kdevfilemanager.mo share/locale/ca/LC_MESSAGES/kdevfiletemplates.mo share/locale/ca/LC_MESSAGES/kdevflatpak.mo share/locale/ca/LC_MESSAGES/kdevgdb.mo share/locale/ca/LC_MESSAGES/kdevghprovider.mo share/locale/ca/LC_MESSAGES/kdevgit.mo share/locale/ca/LC_MESSAGES/kdevgrepview.mo share/locale/ca/LC_MESSAGES/kdevheaptrack.mo share/locale/ca/LC_MESSAGES/kdevkonsole.mo share/locale/ca/LC_MESSAGES/kdevlldb.mo share/locale/ca/LC_MESSAGES/kdevmakebuilder.mo share/locale/ca/LC_MESSAGES/kdevmanpage.mo share/locale/ca/LC_MESSAGES/kdevmesonmanager.mo share/locale/ca/LC_MESSAGES/kdevninja.mo share/locale/ca/LC_MESSAGES/kdevokteta.mo share/locale/ca/LC_MESSAGES/kdevopenwith.mo share/locale/ca/LC_MESSAGES/kdevoutlineview.mo share/locale/ca/LC_MESSAGES/kdevpatchreview.mo share/locale/ca/LC_MESSAGES/kdevperforce.mo share/locale/ca/LC_MESSAGES/kdevplatform.mo share/locale/ca/LC_MESSAGES/kdevproblemreporter.mo share/locale/ca/LC_MESSAGES/kdevprojectfilter.mo share/locale/ca/LC_MESSAGES/kdevprojectmanagerview.mo share/locale/ca/LC_MESSAGES/kdevqmakebuilder.mo share/locale/ca/LC_MESSAGES/kdevqmakemanager.mo share/locale/ca/LC_MESSAGES/kdevqmljs.mo share/locale/ca/LC_MESSAGES/kdevqthelp.mo share/locale/ca/LC_MESSAGES/kdevquickopen.mo share/locale/ca/LC_MESSAGES/kdevscratchpad.mo share/locale/ca/LC_MESSAGES/kdevsourceformatter.mo share/locale/ca/LC_MESSAGES/kdevstandardoutputview.mo share/locale/ca/LC_MESSAGES/kdevsubversion.mo share/locale/ca/LC_MESSAGES/kdevswitchtobuddy.mo share/locale/ca/LC_MESSAGES/kdevtestview.mo share/locale/ca/LC_MESSAGES/kdevvcsprojectintegration.mo share/locale/ca/LC_MESSAGES/kdevwelcomepage.mo share/locale/ca/LC_MESSAGES/plasma_applet_kdevelopsessions.mo share/locale/ca/LC_MESSAGES/plasma_runner_kdevelopsessions.mo share/locale/ca@valencia/LC_MESSAGES/kdevandroid.mo share/locale/ca@valencia/LC_MESSAGES/kdevappwizard.mo share/locale/ca@valencia/LC_MESSAGES/kdevastyle.mo share/locale/ca@valencia/LC_MESSAGES/kdevbazaar.mo share/locale/ca@valencia/LC_MESSAGES/kdevclang.mo share/locale/ca@valencia/LC_MESSAGES/kdevclangtidy.mo share/locale/ca@valencia/LC_MESSAGES/kdevclassbrowser.mo share/locale/ca@valencia/LC_MESSAGES/kdevclazy.mo share/locale/ca@valencia/LC_MESSAGES/kdevcmake.mo share/locale/ca@valencia/LC_MESSAGES/kdevcmakebuilder.mo share/locale/ca@valencia/LC_MESSAGES/kdevcodeutils.mo share/locale/ca@valencia/LC_MESSAGES/kdevcompileanalyzercommon.mo share/locale/ca@valencia/LC_MESSAGES/kdevcontextbrowser.mo share/locale/ca@valencia/LC_MESSAGES/kdevcppcheck.mo share/locale/ca@valencia/LC_MESSAGES/kdevcustombuildsystem.mo share/locale/ca@valencia/LC_MESSAGES/kdevcustomdefinesandincludes.mo share/locale/ca@valencia/LC_MESSAGES/kdevcustommake.mo share/locale/ca@valencia/LC_MESSAGES/kdevcustomscript.mo share/locale/ca@valencia/LC_MESSAGES/kdevdebuggercommon.mo share/locale/ca@valencia/LC_MESSAGES/kdevdocker.mo share/locale/ca@valencia/LC_MESSAGES/kdevdocumentswitcher.mo share/locale/ca@valencia/LC_MESSAGES/kdevdocumentview.mo share/locale/ca@valencia/LC_MESSAGES/kdevelop.mo share/locale/ca@valencia/LC_MESSAGES/kdevexecute.mo share/locale/ca@valencia/LC_MESSAGES/kdevexecuteplasmoid.mo share/locale/ca@valencia/LC_MESSAGES/kdevexecutescript.mo share/locale/ca@valencia/LC_MESSAGES/kdevexternalscript.mo share/locale/ca@valencia/LC_MESSAGES/kdevfilemanager.mo share/locale/ca@valencia/LC_MESSAGES/kdevfiletemplates.mo share/locale/ca@valencia/LC_MESSAGES/kdevflatpak.mo share/locale/ca@valencia/LC_MESSAGES/kdevgdb.mo share/locale/ca@valencia/LC_MESSAGES/kdevghprovider.mo share/locale/ca@valencia/LC_MESSAGES/kdevgit.mo share/locale/ca@valencia/LC_MESSAGES/kdevgrepview.mo share/locale/ca@valencia/LC_MESSAGES/kdevheaptrack.mo share/locale/ca@valencia/LC_MESSAGES/kdevkonsole.mo share/locale/ca@valencia/LC_MESSAGES/kdevlldb.mo share/locale/ca@valencia/LC_MESSAGES/kdevmakebuilder.mo share/locale/ca@valencia/LC_MESSAGES/kdevmanpage.mo share/locale/ca@valencia/LC_MESSAGES/kdevmesonmanager.mo share/locale/ca@valencia/LC_MESSAGES/kdevninja.mo share/locale/ca@valencia/LC_MESSAGES/kdevokteta.mo share/locale/ca@valencia/LC_MESSAGES/kdevopenwith.mo share/locale/ca@valencia/LC_MESSAGES/kdevoutlineview.mo share/locale/ca@valencia/LC_MESSAGES/kdevpatchreview.mo share/locale/ca@valencia/LC_MESSAGES/kdevperforce.mo share/locale/ca@valencia/LC_MESSAGES/kdevplatform.mo share/locale/ca@valencia/LC_MESSAGES/kdevproblemreporter.mo share/locale/ca@valencia/LC_MESSAGES/kdevprojectfilter.mo share/locale/ca@valencia/LC_MESSAGES/kdevprojectmanagerview.mo share/locale/ca@valencia/LC_MESSAGES/kdevqmakebuilder.mo share/locale/ca@valencia/LC_MESSAGES/kdevqmakemanager.mo share/locale/ca@valencia/LC_MESSAGES/kdevqmljs.mo share/locale/ca@valencia/LC_MESSAGES/kdevqthelp.mo share/locale/ca@valencia/LC_MESSAGES/kdevquickopen.mo share/locale/ca@valencia/LC_MESSAGES/kdevscratchpad.mo share/locale/ca@valencia/LC_MESSAGES/kdevsourceformatter.mo share/locale/ca@valencia/LC_MESSAGES/kdevstandardoutputview.mo share/locale/ca@valencia/LC_MESSAGES/kdevsubversion.mo share/locale/ca@valencia/LC_MESSAGES/kdevswitchtobuddy.mo share/locale/ca@valencia/LC_MESSAGES/kdevtestview.mo share/locale/ca@valencia/LC_MESSAGES/kdevvcsprojectintegration.mo share/locale/ca@valencia/LC_MESSAGES/kdevwelcomepage.mo share/locale/ca@valencia/LC_MESSAGES/plasma_applet_kdevelopsessions.mo share/locale/ca@valencia/LC_MESSAGES/plasma_runner_kdevelopsessions.mo share/locale/cs/LC_MESSAGES/kdevandroid.mo share/locale/cs/LC_MESSAGES/kdevappwizard.mo share/locale/cs/LC_MESSAGES/kdevastyle.mo share/locale/cs/LC_MESSAGES/kdevbazaar.mo share/locale/cs/LC_MESSAGES/kdevclang.mo share/locale/cs/LC_MESSAGES/kdevclangtidy.mo share/locale/cs/LC_MESSAGES/kdevclassbrowser.mo share/locale/cs/LC_MESSAGES/kdevclazy.mo share/locale/cs/LC_MESSAGES/kdevcmake.mo share/locale/cs/LC_MESSAGES/kdevcmakebuilder.mo share/locale/cs/LC_MESSAGES/kdevcodeutils.mo share/locale/cs/LC_MESSAGES/kdevcompileanalyzercommon.mo share/locale/cs/LC_MESSAGES/kdevcontextbrowser.mo share/locale/cs/LC_MESSAGES/kdevcppcheck.mo share/locale/cs/LC_MESSAGES/kdevcustombuildsystem.mo share/locale/cs/LC_MESSAGES/kdevcustomdefinesandincludes.mo share/locale/cs/LC_MESSAGES/kdevcustommake.mo share/locale/cs/LC_MESSAGES/kdevcustomscript.mo share/locale/cs/LC_MESSAGES/kdevdebuggercommon.mo share/locale/cs/LC_MESSAGES/kdevdocker.mo share/locale/cs/LC_MESSAGES/kdevdocumentswitcher.mo share/locale/cs/LC_MESSAGES/kdevdocumentview.mo share/locale/cs/LC_MESSAGES/kdevelop.mo share/locale/cs/LC_MESSAGES/kdevexecute.mo share/locale/cs/LC_MESSAGES/kdevexecuteplasmoid.mo share/locale/cs/LC_MESSAGES/kdevexecutescript.mo share/locale/cs/LC_MESSAGES/kdevexternalscript.mo share/locale/cs/LC_MESSAGES/kdevfilemanager.mo share/locale/cs/LC_MESSAGES/kdevfiletemplates.mo share/locale/cs/LC_MESSAGES/kdevflatpak.mo share/locale/cs/LC_MESSAGES/kdevgdb.mo share/locale/cs/LC_MESSAGES/kdevghprovider.mo share/locale/cs/LC_MESSAGES/kdevgit.mo share/locale/cs/LC_MESSAGES/kdevgrepview.mo share/locale/cs/LC_MESSAGES/kdevheaptrack.mo share/locale/cs/LC_MESSAGES/kdevkonsole.mo share/locale/cs/LC_MESSAGES/kdevlldb.mo share/locale/cs/LC_MESSAGES/kdevmakebuilder.mo share/locale/cs/LC_MESSAGES/kdevmanpage.mo share/locale/cs/LC_MESSAGES/kdevmesonmanager.mo share/locale/cs/LC_MESSAGES/kdevninja.mo share/locale/cs/LC_MESSAGES/kdevokteta.mo share/locale/cs/LC_MESSAGES/kdevopenwith.mo share/locale/cs/LC_MESSAGES/kdevoutlineview.mo share/locale/cs/LC_MESSAGES/kdevpatchreview.mo share/locale/cs/LC_MESSAGES/kdevperforce.mo share/locale/cs/LC_MESSAGES/kdevplatform.mo share/locale/cs/LC_MESSAGES/kdevproblemreporter.mo share/locale/cs/LC_MESSAGES/kdevprojectfilter.mo share/locale/cs/LC_MESSAGES/kdevprojectmanagerview.mo share/locale/cs/LC_MESSAGES/kdevqmakebuilder.mo share/locale/cs/LC_MESSAGES/kdevqmakemanager.mo share/locale/cs/LC_MESSAGES/kdevqmljs.mo share/locale/cs/LC_MESSAGES/kdevqthelp.mo share/locale/cs/LC_MESSAGES/kdevquickopen.mo share/locale/cs/LC_MESSAGES/kdevscratchpad.mo share/locale/cs/LC_MESSAGES/kdevsourceformatter.mo share/locale/cs/LC_MESSAGES/kdevstandardoutputview.mo share/locale/cs/LC_MESSAGES/kdevsubversion.mo share/locale/cs/LC_MESSAGES/kdevswitchtobuddy.mo share/locale/cs/LC_MESSAGES/kdevtestview.mo share/locale/cs/LC_MESSAGES/kdevvcsprojectintegration.mo share/locale/cs/LC_MESSAGES/kdevwelcomepage.mo share/locale/cs/LC_MESSAGES/plasma_applet_kdevelopsessions.mo share/locale/cs/LC_MESSAGES/plasma_runner_kdevelopsessions.mo share/locale/cy/LC_MESSAGES/kdevelop.mo share/locale/da/LC_MESSAGES/kdevappwizard.mo share/locale/da/LC_MESSAGES/kdevclassbrowser.mo share/locale/da/LC_MESSAGES/kdevcmake.mo share/locale/da/LC_MESSAGES/kdevcmakebuilder.mo share/locale/da/LC_MESSAGES/kdevcodeutils.mo share/locale/da/LC_MESSAGES/kdevcontextbrowser.mo share/locale/da/LC_MESSAGES/kdevcustombuildsystem.mo share/locale/da/LC_MESSAGES/kdevcustommake.mo share/locale/da/LC_MESSAGES/kdevdebuggercommon.mo share/locale/da/LC_MESSAGES/kdevdocumentswitcher.mo share/locale/da/LC_MESSAGES/kdevdocumentview.mo share/locale/da/LC_MESSAGES/kdevelop.mo share/locale/da/LC_MESSAGES/kdevexecute.mo share/locale/da/LC_MESSAGES/kdevexecuteplasmoid.mo share/locale/da/LC_MESSAGES/kdevexecutescript.mo share/locale/da/LC_MESSAGES/kdevexternalscript.mo share/locale/da/LC_MESSAGES/kdevfilemanager.mo share/locale/da/LC_MESSAGES/kdevfiletemplates.mo share/locale/da/LC_MESSAGES/kdevgdb.mo share/locale/da/LC_MESSAGES/kdevghprovider.mo share/locale/da/LC_MESSAGES/kdevgit.mo share/locale/da/LC_MESSAGES/kdevgrepview.mo share/locale/da/LC_MESSAGES/kdevkonsole.mo share/locale/da/LC_MESSAGES/kdevmakebuilder.mo share/locale/da/LC_MESSAGES/kdevmanpage.mo share/locale/da/LC_MESSAGES/kdevninja.mo share/locale/da/LC_MESSAGES/kdevokteta.mo share/locale/da/LC_MESSAGES/kdevopenwith.mo share/locale/da/LC_MESSAGES/kdevpatchreview.mo share/locale/da/LC_MESSAGES/kdevperforce.mo share/locale/da/LC_MESSAGES/kdevplatform.mo share/locale/da/LC_MESSAGES/kdevproblemreporter.mo share/locale/da/LC_MESSAGES/kdevprojectfilter.mo share/locale/da/LC_MESSAGES/kdevprojectmanagerview.mo share/locale/da/LC_MESSAGES/kdevqthelp.mo share/locale/da/LC_MESSAGES/kdevquickopen.mo share/locale/da/LC_MESSAGES/kdevstandardoutputview.mo share/locale/da/LC_MESSAGES/kdevsubversion.mo share/locale/da/LC_MESSAGES/kdevswitchtobuddy.mo share/locale/da/LC_MESSAGES/kdevtestview.mo share/locale/da/LC_MESSAGES/kdevvcsprojectintegration.mo share/locale/da/LC_MESSAGES/plasma_applet_kdevelopsessions.mo share/locale/da/LC_MESSAGES/plasma_runner_kdevelopsessions.mo share/locale/de/LC_MESSAGES/kdevandroid.mo share/locale/de/LC_MESSAGES/kdevappwizard.mo share/locale/de/LC_MESSAGES/kdevastyle.mo share/locale/de/LC_MESSAGES/kdevbazaar.mo share/locale/de/LC_MESSAGES/kdevclang.mo share/locale/de/LC_MESSAGES/kdevclangtidy.mo share/locale/de/LC_MESSAGES/kdevclassbrowser.mo share/locale/de/LC_MESSAGES/kdevclazy.mo share/locale/de/LC_MESSAGES/kdevcmake.mo share/locale/de/LC_MESSAGES/kdevcmakebuilder.mo share/locale/de/LC_MESSAGES/kdevcodeutils.mo share/locale/de/LC_MESSAGES/kdevcompileanalyzercommon.mo share/locale/de/LC_MESSAGES/kdevcontextbrowser.mo share/locale/de/LC_MESSAGES/kdevcppcheck.mo share/locale/de/LC_MESSAGES/kdevcustombuildsystem.mo share/locale/de/LC_MESSAGES/kdevcustomdefinesandincludes.mo share/locale/de/LC_MESSAGES/kdevcustommake.mo share/locale/de/LC_MESSAGES/kdevcustomscript.mo share/locale/de/LC_MESSAGES/kdevdebuggercommon.mo share/locale/de/LC_MESSAGES/kdevdocker.mo share/locale/de/LC_MESSAGES/kdevdocumentswitcher.mo share/locale/de/LC_MESSAGES/kdevdocumentview.mo share/locale/de/LC_MESSAGES/kdevelop.mo share/locale/de/LC_MESSAGES/kdevexecute.mo share/locale/de/LC_MESSAGES/kdevexecuteplasmoid.mo share/locale/de/LC_MESSAGES/kdevexecutescript.mo share/locale/de/LC_MESSAGES/kdevexternalscript.mo share/locale/de/LC_MESSAGES/kdevfilemanager.mo share/locale/de/LC_MESSAGES/kdevfiletemplates.mo share/locale/de/LC_MESSAGES/kdevflatpak.mo share/locale/de/LC_MESSAGES/kdevgdb.mo share/locale/de/LC_MESSAGES/kdevghprovider.mo share/locale/de/LC_MESSAGES/kdevgit.mo share/locale/de/LC_MESSAGES/kdevgrepview.mo share/locale/de/LC_MESSAGES/kdevheaptrack.mo share/locale/de/LC_MESSAGES/kdevkonsole.mo share/locale/de/LC_MESSAGES/kdevlldb.mo share/locale/de/LC_MESSAGES/kdevmakebuilder.mo share/locale/de/LC_MESSAGES/kdevmanpage.mo share/locale/de/LC_MESSAGES/kdevmesonmanager.mo share/locale/de/LC_MESSAGES/kdevninja.mo share/locale/de/LC_MESSAGES/kdevokteta.mo share/locale/de/LC_MESSAGES/kdevopenwith.mo share/locale/de/LC_MESSAGES/kdevoutlineview.mo share/locale/de/LC_MESSAGES/kdevpatchreview.mo share/locale/de/LC_MESSAGES/kdevperforce.mo share/locale/de/LC_MESSAGES/kdevplatform.mo share/locale/de/LC_MESSAGES/kdevproblemreporter.mo share/locale/de/LC_MESSAGES/kdevprojectfilter.mo share/locale/de/LC_MESSAGES/kdevprojectmanagerview.mo share/locale/de/LC_MESSAGES/kdevqmakebuilder.mo share/locale/de/LC_MESSAGES/kdevqmakemanager.mo share/locale/de/LC_MESSAGES/kdevqmljs.mo share/locale/de/LC_MESSAGES/kdevqthelp.mo share/locale/de/LC_MESSAGES/kdevquickopen.mo share/locale/de/LC_MESSAGES/kdevscratchpad.mo share/locale/de/LC_MESSAGES/kdevsourceformatter.mo share/locale/de/LC_MESSAGES/kdevstandardoutputview.mo share/locale/de/LC_MESSAGES/kdevsubversion.mo share/locale/de/LC_MESSAGES/kdevswitchtobuddy.mo share/locale/de/LC_MESSAGES/kdevtestview.mo share/locale/de/LC_MESSAGES/kdevvcsprojectintegration.mo share/locale/de/LC_MESSAGES/kdevwelcomepage.mo share/locale/de/LC_MESSAGES/plasma_applet_kdevelopsessions.mo share/locale/de/LC_MESSAGES/plasma_runner_kdevelopsessions.mo share/locale/el/LC_MESSAGES/kdevandroid.mo share/locale/el/LC_MESSAGES/kdevappwizard.mo share/locale/el/LC_MESSAGES/kdevastyle.mo share/locale/el/LC_MESSAGES/kdevbazaar.mo share/locale/el/LC_MESSAGES/kdevclang.mo share/locale/el/LC_MESSAGES/kdevclangtidy.mo share/locale/el/LC_MESSAGES/kdevclassbrowser.mo share/locale/el/LC_MESSAGES/kdevclazy.mo share/locale/el/LC_MESSAGES/kdevcmake.mo share/locale/el/LC_MESSAGES/kdevcmakebuilder.mo share/locale/el/LC_MESSAGES/kdevcodeutils.mo share/locale/el/LC_MESSAGES/kdevcompileanalyzercommon.mo share/locale/el/LC_MESSAGES/kdevcontextbrowser.mo share/locale/el/LC_MESSAGES/kdevcppcheck.mo share/locale/el/LC_MESSAGES/kdevcustombuildsystem.mo share/locale/el/LC_MESSAGES/kdevcustomdefinesandincludes.mo share/locale/el/LC_MESSAGES/kdevcustommake.mo share/locale/el/LC_MESSAGES/kdevcustomscript.mo share/locale/el/LC_MESSAGES/kdevdebuggercommon.mo share/locale/el/LC_MESSAGES/kdevdocker.mo share/locale/el/LC_MESSAGES/kdevdocumentswitcher.mo share/locale/el/LC_MESSAGES/kdevdocumentview.mo share/locale/el/LC_MESSAGES/kdevelop.mo share/locale/el/LC_MESSAGES/kdevexecute.mo share/locale/el/LC_MESSAGES/kdevexecuteplasmoid.mo share/locale/el/LC_MESSAGES/kdevexecutescript.mo share/locale/el/LC_MESSAGES/kdevexternalscript.mo share/locale/el/LC_MESSAGES/kdevfilemanager.mo share/locale/el/LC_MESSAGES/kdevfiletemplates.mo share/locale/el/LC_MESSAGES/kdevflatpak.mo share/locale/el/LC_MESSAGES/kdevgdb.mo share/locale/el/LC_MESSAGES/kdevghprovider.mo share/locale/el/LC_MESSAGES/kdevgit.mo share/locale/el/LC_MESSAGES/kdevgrepview.mo share/locale/el/LC_MESSAGES/kdevheaptrack.mo share/locale/el/LC_MESSAGES/kdevkonsole.mo share/locale/el/LC_MESSAGES/kdevlldb.mo share/locale/el/LC_MESSAGES/kdevmakebuilder.mo share/locale/el/LC_MESSAGES/kdevmanpage.mo share/locale/el/LC_MESSAGES/kdevmesonmanager.mo share/locale/el/LC_MESSAGES/kdevninja.mo share/locale/el/LC_MESSAGES/kdevokteta.mo share/locale/el/LC_MESSAGES/kdevopenwith.mo share/locale/el/LC_MESSAGES/kdevoutlineview.mo share/locale/el/LC_MESSAGES/kdevpatchreview.mo share/locale/el/LC_MESSAGES/kdevperforce.mo share/locale/el/LC_MESSAGES/kdevplatform.mo share/locale/el/LC_MESSAGES/kdevproblemreporter.mo share/locale/el/LC_MESSAGES/kdevprojectfilter.mo share/locale/el/LC_MESSAGES/kdevprojectmanagerview.mo share/locale/el/LC_MESSAGES/kdevqmakebuilder.mo share/locale/el/LC_MESSAGES/kdevqmakemanager.mo share/locale/el/LC_MESSAGES/kdevqmljs.mo share/locale/el/LC_MESSAGES/kdevqthelp.mo share/locale/el/LC_MESSAGES/kdevquickopen.mo share/locale/el/LC_MESSAGES/kdevscratchpad.mo share/locale/el/LC_MESSAGES/kdevsourceformatter.mo share/locale/el/LC_MESSAGES/kdevstandardoutputview.mo share/locale/el/LC_MESSAGES/kdevsubversion.mo share/locale/el/LC_MESSAGES/kdevswitchtobuddy.mo share/locale/el/LC_MESSAGES/kdevtestview.mo share/locale/el/LC_MESSAGES/kdevvcsprojectintegration.mo share/locale/el/LC_MESSAGES/kdevwelcomepage.mo share/locale/el/LC_MESSAGES/plasma_applet_kdevelopsessions.mo share/locale/el/LC_MESSAGES/plasma_runner_kdevelopsessions.mo share/locale/en_GB/LC_MESSAGES/kdevandroid.mo share/locale/en_GB/LC_MESSAGES/kdevappwizard.mo share/locale/en_GB/LC_MESSAGES/kdevastyle.mo share/locale/en_GB/LC_MESSAGES/kdevbazaar.mo share/locale/en_GB/LC_MESSAGES/kdevclang.mo share/locale/en_GB/LC_MESSAGES/kdevclangtidy.mo share/locale/en_GB/LC_MESSAGES/kdevclassbrowser.mo share/locale/en_GB/LC_MESSAGES/kdevclazy.mo share/locale/en_GB/LC_MESSAGES/kdevcmake.mo share/locale/en_GB/LC_MESSAGES/kdevcmakebuilder.mo share/locale/en_GB/LC_MESSAGES/kdevcodeutils.mo share/locale/en_GB/LC_MESSAGES/kdevcompileanalyzercommon.mo share/locale/en_GB/LC_MESSAGES/kdevcontextbrowser.mo share/locale/en_GB/LC_MESSAGES/kdevcppcheck.mo share/locale/en_GB/LC_MESSAGES/kdevcustombuildsystem.mo share/locale/en_GB/LC_MESSAGES/kdevcustomdefinesandincludes.mo share/locale/en_GB/LC_MESSAGES/kdevcustommake.mo share/locale/en_GB/LC_MESSAGES/kdevcustomscript.mo share/locale/en_GB/LC_MESSAGES/kdevdebuggercommon.mo share/locale/en_GB/LC_MESSAGES/kdevdocker.mo share/locale/en_GB/LC_MESSAGES/kdevdocumentswitcher.mo share/locale/en_GB/LC_MESSAGES/kdevdocumentview.mo share/locale/en_GB/LC_MESSAGES/kdevelop.mo share/locale/en_GB/LC_MESSAGES/kdevexecute.mo share/locale/en_GB/LC_MESSAGES/kdevexecuteplasmoid.mo share/locale/en_GB/LC_MESSAGES/kdevexecutescript.mo share/locale/en_GB/LC_MESSAGES/kdevexternalscript.mo share/locale/en_GB/LC_MESSAGES/kdevfilemanager.mo share/locale/en_GB/LC_MESSAGES/kdevfiletemplates.mo share/locale/en_GB/LC_MESSAGES/kdevflatpak.mo share/locale/en_GB/LC_MESSAGES/kdevgdb.mo share/locale/en_GB/LC_MESSAGES/kdevghprovider.mo share/locale/en_GB/LC_MESSAGES/kdevgit.mo share/locale/en_GB/LC_MESSAGES/kdevgrepview.mo share/locale/en_GB/LC_MESSAGES/kdevheaptrack.mo share/locale/en_GB/LC_MESSAGES/kdevkonsole.mo share/locale/en_GB/LC_MESSAGES/kdevlldb.mo share/locale/en_GB/LC_MESSAGES/kdevmakebuilder.mo share/locale/en_GB/LC_MESSAGES/kdevmanpage.mo share/locale/en_GB/LC_MESSAGES/kdevmesonmanager.mo share/locale/en_GB/LC_MESSAGES/kdevninja.mo share/locale/en_GB/LC_MESSAGES/kdevokteta.mo share/locale/en_GB/LC_MESSAGES/kdevopenwith.mo share/locale/en_GB/LC_MESSAGES/kdevoutlineview.mo share/locale/en_GB/LC_MESSAGES/kdevpatchreview.mo share/locale/en_GB/LC_MESSAGES/kdevperforce.mo share/locale/en_GB/LC_MESSAGES/kdevplatform.mo share/locale/en_GB/LC_MESSAGES/kdevproblemreporter.mo share/locale/en_GB/LC_MESSAGES/kdevprojectfilter.mo share/locale/en_GB/LC_MESSAGES/kdevprojectmanagerview.mo share/locale/en_GB/LC_MESSAGES/kdevqmakebuilder.mo share/locale/en_GB/LC_MESSAGES/kdevqmakemanager.mo share/locale/en_GB/LC_MESSAGES/kdevqmljs.mo share/locale/en_GB/LC_MESSAGES/kdevqthelp.mo share/locale/en_GB/LC_MESSAGES/kdevquickopen.mo share/locale/en_GB/LC_MESSAGES/kdevscratchpad.mo share/locale/en_GB/LC_MESSAGES/kdevsourceformatter.mo share/locale/en_GB/LC_MESSAGES/kdevstandardoutputview.mo share/locale/en_GB/LC_MESSAGES/kdevsubversion.mo share/locale/en_GB/LC_MESSAGES/kdevswitchtobuddy.mo share/locale/en_GB/LC_MESSAGES/kdevtestview.mo share/locale/en_GB/LC_MESSAGES/kdevvcsprojectintegration.mo share/locale/en_GB/LC_MESSAGES/kdevwelcomepage.mo share/locale/en_GB/LC_MESSAGES/plasma_applet_kdevelopsessions.mo share/locale/en_GB/LC_MESSAGES/plasma_runner_kdevelopsessions.mo share/locale/eo/LC_MESSAGES/kdevandroid.mo share/locale/eo/LC_MESSAGES/kdevappwizard.mo share/locale/eo/LC_MESSAGES/kdevastyle.mo share/locale/eo/LC_MESSAGES/kdevbazaar.mo share/locale/eo/LC_MESSAGES/kdevclang.mo share/locale/eo/LC_MESSAGES/kdevclangtidy.mo share/locale/eo/LC_MESSAGES/kdevclassbrowser.mo share/locale/eo/LC_MESSAGES/kdevclazy.mo share/locale/eo/LC_MESSAGES/kdevcmake.mo share/locale/eo/LC_MESSAGES/kdevcmakebuilder.mo share/locale/eo/LC_MESSAGES/kdevcodeutils.mo share/locale/eo/LC_MESSAGES/kdevcompileanalyzercommon.mo share/locale/eo/LC_MESSAGES/kdevcontextbrowser.mo share/locale/eo/LC_MESSAGES/kdevcppcheck.mo share/locale/eo/LC_MESSAGES/kdevcustombuildsystem.mo share/locale/eo/LC_MESSAGES/kdevcustomdefinesandincludes.mo share/locale/eo/LC_MESSAGES/kdevcustommake.mo share/locale/eo/LC_MESSAGES/kdevcustomscript.mo share/locale/eo/LC_MESSAGES/kdevdebuggercommon.mo share/locale/eo/LC_MESSAGES/kdevdocker.mo share/locale/eo/LC_MESSAGES/kdevdocumentswitcher.mo share/locale/eo/LC_MESSAGES/kdevdocumentview.mo share/locale/eo/LC_MESSAGES/kdevelop.mo share/locale/eo/LC_MESSAGES/kdevexecute.mo share/locale/eo/LC_MESSAGES/kdevexecuteplasmoid.mo share/locale/eo/LC_MESSAGES/kdevexecutescript.mo share/locale/eo/LC_MESSAGES/kdevexternalscript.mo share/locale/eo/LC_MESSAGES/kdevfilemanager.mo share/locale/eo/LC_MESSAGES/kdevfiletemplates.mo share/locale/eo/LC_MESSAGES/kdevflatpak.mo share/locale/eo/LC_MESSAGES/kdevgdb.mo share/locale/eo/LC_MESSAGES/kdevghprovider.mo share/locale/eo/LC_MESSAGES/kdevgit.mo share/locale/eo/LC_MESSAGES/kdevgrepview.mo share/locale/eo/LC_MESSAGES/kdevheaptrack.mo share/locale/eo/LC_MESSAGES/kdevkonsole.mo share/locale/eo/LC_MESSAGES/kdevlldb.mo share/locale/eo/LC_MESSAGES/kdevmakebuilder.mo share/locale/eo/LC_MESSAGES/kdevmanpage.mo share/locale/eo/LC_MESSAGES/kdevmesonmanager.mo share/locale/eo/LC_MESSAGES/kdevninja.mo share/locale/eo/LC_MESSAGES/kdevokteta.mo share/locale/eo/LC_MESSAGES/kdevopenwith.mo share/locale/eo/LC_MESSAGES/kdevoutlineview.mo share/locale/eo/LC_MESSAGES/kdevpatchreview.mo share/locale/eo/LC_MESSAGES/kdevperforce.mo share/locale/eo/LC_MESSAGES/kdevplatform.mo share/locale/eo/LC_MESSAGES/kdevproblemreporter.mo share/locale/eo/LC_MESSAGES/kdevprojectfilter.mo share/locale/eo/LC_MESSAGES/kdevprojectmanagerview.mo share/locale/eo/LC_MESSAGES/kdevqmakebuilder.mo share/locale/eo/LC_MESSAGES/kdevqmakemanager.mo share/locale/eo/LC_MESSAGES/kdevqmljs.mo share/locale/eo/LC_MESSAGES/kdevqthelp.mo share/locale/eo/LC_MESSAGES/kdevquickopen.mo share/locale/eo/LC_MESSAGES/kdevscratchpad.mo share/locale/eo/LC_MESSAGES/kdevsourceformatter.mo share/locale/eo/LC_MESSAGES/kdevstandardoutputview.mo share/locale/eo/LC_MESSAGES/kdevsubversion.mo share/locale/eo/LC_MESSAGES/kdevswitchtobuddy.mo share/locale/eo/LC_MESSAGES/kdevtestview.mo share/locale/eo/LC_MESSAGES/kdevvcsprojectintegration.mo share/locale/eo/LC_MESSAGES/kdevwelcomepage.mo share/locale/eo/LC_MESSAGES/plasma_applet_kdevelopsessions.mo share/locale/eo/LC_MESSAGES/plasma_runner_kdevelopsessions.mo share/locale/es/LC_MESSAGES/kdevandroid.mo share/locale/es/LC_MESSAGES/kdevappwizard.mo share/locale/es/LC_MESSAGES/kdevastyle.mo share/locale/es/LC_MESSAGES/kdevbazaar.mo share/locale/es/LC_MESSAGES/kdevclang.mo share/locale/es/LC_MESSAGES/kdevclangtidy.mo share/locale/es/LC_MESSAGES/kdevclassbrowser.mo share/locale/es/LC_MESSAGES/kdevclazy.mo share/locale/es/LC_MESSAGES/kdevcmake.mo share/locale/es/LC_MESSAGES/kdevcmakebuilder.mo share/locale/es/LC_MESSAGES/kdevcodeutils.mo share/locale/es/LC_MESSAGES/kdevcompileanalyzercommon.mo share/locale/es/LC_MESSAGES/kdevcontextbrowser.mo share/locale/es/LC_MESSAGES/kdevcppcheck.mo share/locale/es/LC_MESSAGES/kdevcustombuildsystem.mo share/locale/es/LC_MESSAGES/kdevcustomdefinesandincludes.mo share/locale/es/LC_MESSAGES/kdevcustommake.mo share/locale/es/LC_MESSAGES/kdevcustomscript.mo share/locale/es/LC_MESSAGES/kdevdebuggercommon.mo share/locale/es/LC_MESSAGES/kdevdocker.mo share/locale/es/LC_MESSAGES/kdevdocumentswitcher.mo share/locale/es/LC_MESSAGES/kdevdocumentview.mo share/locale/es/LC_MESSAGES/kdevelop.mo share/locale/es/LC_MESSAGES/kdevexecute.mo share/locale/es/LC_MESSAGES/kdevexecuteplasmoid.mo share/locale/es/LC_MESSAGES/kdevexecutescript.mo share/locale/es/LC_MESSAGES/kdevexternalscript.mo share/locale/es/LC_MESSAGES/kdevfilemanager.mo share/locale/es/LC_MESSAGES/kdevfiletemplates.mo share/locale/es/LC_MESSAGES/kdevflatpak.mo share/locale/es/LC_MESSAGES/kdevgdb.mo share/locale/es/LC_MESSAGES/kdevghprovider.mo share/locale/es/LC_MESSAGES/kdevgit.mo share/locale/es/LC_MESSAGES/kdevgrepview.mo share/locale/es/LC_MESSAGES/kdevheaptrack.mo share/locale/es/LC_MESSAGES/kdevkonsole.mo share/locale/es/LC_MESSAGES/kdevlldb.mo share/locale/es/LC_MESSAGES/kdevmakebuilder.mo share/locale/es/LC_MESSAGES/kdevmanpage.mo share/locale/es/LC_MESSAGES/kdevmesonmanager.mo share/locale/es/LC_MESSAGES/kdevninja.mo share/locale/es/LC_MESSAGES/kdevokteta.mo share/locale/es/LC_MESSAGES/kdevopenwith.mo share/locale/es/LC_MESSAGES/kdevoutlineview.mo share/locale/es/LC_MESSAGES/kdevpatchreview.mo share/locale/es/LC_MESSAGES/kdevperforce.mo share/locale/es/LC_MESSAGES/kdevplatform.mo share/locale/es/LC_MESSAGES/kdevproblemreporter.mo share/locale/es/LC_MESSAGES/kdevprojectfilter.mo share/locale/es/LC_MESSAGES/kdevprojectmanagerview.mo share/locale/es/LC_MESSAGES/kdevqmakebuilder.mo share/locale/es/LC_MESSAGES/kdevqmakemanager.mo share/locale/es/LC_MESSAGES/kdevqmljs.mo share/locale/es/LC_MESSAGES/kdevqthelp.mo share/locale/es/LC_MESSAGES/kdevquickopen.mo share/locale/es/LC_MESSAGES/kdevscratchpad.mo share/locale/es/LC_MESSAGES/kdevsourceformatter.mo share/locale/es/LC_MESSAGES/kdevstandardoutputview.mo share/locale/es/LC_MESSAGES/kdevsubversion.mo share/locale/es/LC_MESSAGES/kdevswitchtobuddy.mo share/locale/es/LC_MESSAGES/kdevtestview.mo share/locale/es/LC_MESSAGES/kdevvcsprojectintegration.mo share/locale/es/LC_MESSAGES/kdevwelcomepage.mo share/locale/es/LC_MESSAGES/plasma_applet_kdevelopsessions.mo share/locale/es/LC_MESSAGES/plasma_runner_kdevelopsessions.mo share/locale/et/LC_MESSAGES/kdevandroid.mo share/locale/et/LC_MESSAGES/kdevappwizard.mo share/locale/et/LC_MESSAGES/kdevastyle.mo share/locale/et/LC_MESSAGES/kdevbazaar.mo share/locale/et/LC_MESSAGES/kdevclang.mo share/locale/et/LC_MESSAGES/kdevclangtidy.mo share/locale/et/LC_MESSAGES/kdevclassbrowser.mo share/locale/et/LC_MESSAGES/kdevclazy.mo share/locale/et/LC_MESSAGES/kdevcmake.mo share/locale/et/LC_MESSAGES/kdevcmakebuilder.mo share/locale/et/LC_MESSAGES/kdevcodeutils.mo share/locale/et/LC_MESSAGES/kdevcompileanalyzercommon.mo share/locale/et/LC_MESSAGES/kdevcontextbrowser.mo share/locale/et/LC_MESSAGES/kdevcppcheck.mo share/locale/et/LC_MESSAGES/kdevcustombuildsystem.mo share/locale/et/LC_MESSAGES/kdevcustomdefinesandincludes.mo share/locale/et/LC_MESSAGES/kdevcustommake.mo share/locale/et/LC_MESSAGES/kdevcustomscript.mo share/locale/et/LC_MESSAGES/kdevdebuggercommon.mo share/locale/et/LC_MESSAGES/kdevdocker.mo share/locale/et/LC_MESSAGES/kdevdocumentswitcher.mo share/locale/et/LC_MESSAGES/kdevdocumentview.mo share/locale/et/LC_MESSAGES/kdevelop.mo share/locale/et/LC_MESSAGES/kdevexecute.mo share/locale/et/LC_MESSAGES/kdevexecuteplasmoid.mo share/locale/et/LC_MESSAGES/kdevexecutescript.mo share/locale/et/LC_MESSAGES/kdevexternalscript.mo share/locale/et/LC_MESSAGES/kdevfilemanager.mo share/locale/et/LC_MESSAGES/kdevfiletemplates.mo share/locale/et/LC_MESSAGES/kdevflatpak.mo share/locale/et/LC_MESSAGES/kdevgdb.mo share/locale/et/LC_MESSAGES/kdevghprovider.mo share/locale/et/LC_MESSAGES/kdevgit.mo share/locale/et/LC_MESSAGES/kdevgrepview.mo share/locale/et/LC_MESSAGES/kdevheaptrack.mo share/locale/et/LC_MESSAGES/kdevkonsole.mo share/locale/et/LC_MESSAGES/kdevlldb.mo share/locale/et/LC_MESSAGES/kdevmakebuilder.mo share/locale/et/LC_MESSAGES/kdevmanpage.mo share/locale/et/LC_MESSAGES/kdevmesonmanager.mo share/locale/et/LC_MESSAGES/kdevninja.mo share/locale/et/LC_MESSAGES/kdevokteta.mo share/locale/et/LC_MESSAGES/kdevopenwith.mo share/locale/et/LC_MESSAGES/kdevoutlineview.mo share/locale/et/LC_MESSAGES/kdevpatchreview.mo share/locale/et/LC_MESSAGES/kdevperforce.mo share/locale/et/LC_MESSAGES/kdevplatform.mo share/locale/et/LC_MESSAGES/kdevproblemreporter.mo share/locale/et/LC_MESSAGES/kdevprojectfilter.mo share/locale/et/LC_MESSAGES/kdevprojectmanagerview.mo share/locale/et/LC_MESSAGES/kdevqmakebuilder.mo share/locale/et/LC_MESSAGES/kdevqmakemanager.mo share/locale/et/LC_MESSAGES/kdevqmljs.mo share/locale/et/LC_MESSAGES/kdevqthelp.mo share/locale/et/LC_MESSAGES/kdevquickopen.mo share/locale/et/LC_MESSAGES/kdevscratchpad.mo share/locale/et/LC_MESSAGES/kdevsourceformatter.mo share/locale/et/LC_MESSAGES/kdevstandardoutputview.mo share/locale/et/LC_MESSAGES/kdevsubversion.mo share/locale/et/LC_MESSAGES/kdevswitchtobuddy.mo share/locale/et/LC_MESSAGES/kdevtestview.mo share/locale/et/LC_MESSAGES/kdevvcsprojectintegration.mo share/locale/et/LC_MESSAGES/kdevwelcomepage.mo share/locale/et/LC_MESSAGES/plasma_applet_kdevelopsessions.mo share/locale/et/LC_MESSAGES/plasma_runner_kdevelopsessions.mo share/locale/eu/LC_MESSAGES/kdevandroid.mo share/locale/eu/LC_MESSAGES/kdevappwizard.mo share/locale/eu/LC_MESSAGES/kdevbazaar.mo share/locale/eu/LC_MESSAGES/kdevclassbrowser.mo share/locale/eu/LC_MESSAGES/kdevcodeutils.mo share/locale/eu/LC_MESSAGES/kdevcontextbrowser.mo share/locale/eu/LC_MESSAGES/kdevcustommake.mo share/locale/eu/LC_MESSAGES/kdevcustomscript.mo share/locale/eu/LC_MESSAGES/kdevdocker.mo share/locale/eu/LC_MESSAGES/kdevdocumentswitcher.mo share/locale/eu/LC_MESSAGES/kdevdocumentview.mo share/locale/eu/LC_MESSAGES/kdevelop.mo share/locale/eu/LC_MESSAGES/kdevexecuteplasmoid.mo share/locale/eu/LC_MESSAGES/kdevfilemanager.mo share/locale/eu/LC_MESSAGES/kdevflatpak.mo share/locale/eu/LC_MESSAGES/kdevgit.mo share/locale/eu/LC_MESSAGES/kdevgrepview.mo share/locale/eu/LC_MESSAGES/kdevkonsole.mo share/locale/eu/LC_MESSAGES/kdevmanpage.mo share/locale/eu/LC_MESSAGES/kdevninja.mo share/locale/eu/LC_MESSAGES/kdevokteta.mo share/locale/eu/LC_MESSAGES/kdevopenwith.mo share/locale/eu/LC_MESSAGES/kdevoutlineview.mo share/locale/eu/LC_MESSAGES/kdevplatform.mo share/locale/eu/LC_MESSAGES/kdevprojectfilter.mo share/locale/eu/LC_MESSAGES/kdevqmakebuilder.mo share/locale/eu/LC_MESSAGES/kdevqthelp.mo share/locale/eu/LC_MESSAGES/kdevsourceformatter.mo share/locale/eu/LC_MESSAGES/kdevsubversion.mo share/locale/eu/LC_MESSAGES/kdevswitchtobuddy.mo share/locale/eu/LC_MESSAGES/kdevtestview.mo share/locale/eu/LC_MESSAGES/kdevvcsprojectintegration.mo share/locale/eu/LC_MESSAGES/kdevwelcomepage.mo share/locale/eu/LC_MESSAGES/plasma_applet_kdevelopsessions.mo share/locale/eu/LC_MESSAGES/plasma_runner_kdevelopsessions.mo share/locale/fa/LC_MESSAGES/kdevelop.mo share/locale/fi/LC_MESSAGES/kdevandroid.mo share/locale/fi/LC_MESSAGES/kdevappwizard.mo share/locale/fi/LC_MESSAGES/kdevastyle.mo share/locale/fi/LC_MESSAGES/kdevbazaar.mo share/locale/fi/LC_MESSAGES/kdevclang.mo share/locale/fi/LC_MESSAGES/kdevclangtidy.mo share/locale/fi/LC_MESSAGES/kdevclassbrowser.mo share/locale/fi/LC_MESSAGES/kdevclazy.mo share/locale/fi/LC_MESSAGES/kdevcmake.mo share/locale/fi/LC_MESSAGES/kdevcmakebuilder.mo share/locale/fi/LC_MESSAGES/kdevcodeutils.mo share/locale/fi/LC_MESSAGES/kdevcompileanalyzercommon.mo share/locale/fi/LC_MESSAGES/kdevcontextbrowser.mo share/locale/fi/LC_MESSAGES/kdevcppcheck.mo share/locale/fi/LC_MESSAGES/kdevcustombuildsystem.mo share/locale/fi/LC_MESSAGES/kdevcustomdefinesandincludes.mo share/locale/fi/LC_MESSAGES/kdevcustommake.mo share/locale/fi/LC_MESSAGES/kdevcustomscript.mo share/locale/fi/LC_MESSAGES/kdevdebuggercommon.mo share/locale/fi/LC_MESSAGES/kdevdocker.mo share/locale/fi/LC_MESSAGES/kdevdocumentswitcher.mo share/locale/fi/LC_MESSAGES/kdevdocumentview.mo share/locale/fi/LC_MESSAGES/kdevelop.mo share/locale/fi/LC_MESSAGES/kdevexecute.mo share/locale/fi/LC_MESSAGES/kdevexecuteplasmoid.mo share/locale/fi/LC_MESSAGES/kdevexecutescript.mo share/locale/fi/LC_MESSAGES/kdevexternalscript.mo share/locale/fi/LC_MESSAGES/kdevfilemanager.mo share/locale/fi/LC_MESSAGES/kdevfiletemplates.mo share/locale/fi/LC_MESSAGES/kdevflatpak.mo share/locale/fi/LC_MESSAGES/kdevgdb.mo share/locale/fi/LC_MESSAGES/kdevghprovider.mo share/locale/fi/LC_MESSAGES/kdevgit.mo share/locale/fi/LC_MESSAGES/kdevgrepview.mo share/locale/fi/LC_MESSAGES/kdevheaptrack.mo share/locale/fi/LC_MESSAGES/kdevkonsole.mo share/locale/fi/LC_MESSAGES/kdevlldb.mo share/locale/fi/LC_MESSAGES/kdevmakebuilder.mo share/locale/fi/LC_MESSAGES/kdevmanpage.mo share/locale/fi/LC_MESSAGES/kdevmesonmanager.mo share/locale/fi/LC_MESSAGES/kdevninja.mo share/locale/fi/LC_MESSAGES/kdevokteta.mo share/locale/fi/LC_MESSAGES/kdevopenwith.mo share/locale/fi/LC_MESSAGES/kdevoutlineview.mo share/locale/fi/LC_MESSAGES/kdevpatchreview.mo share/locale/fi/LC_MESSAGES/kdevperforce.mo share/locale/fi/LC_MESSAGES/kdevplatform.mo share/locale/fi/LC_MESSAGES/kdevproblemreporter.mo share/locale/fi/LC_MESSAGES/kdevprojectfilter.mo share/locale/fi/LC_MESSAGES/kdevprojectmanagerview.mo share/locale/fi/LC_MESSAGES/kdevqmakebuilder.mo share/locale/fi/LC_MESSAGES/kdevqmakemanager.mo share/locale/fi/LC_MESSAGES/kdevqmljs.mo share/locale/fi/LC_MESSAGES/kdevqthelp.mo share/locale/fi/LC_MESSAGES/kdevquickopen.mo share/locale/fi/LC_MESSAGES/kdevscratchpad.mo share/locale/fi/LC_MESSAGES/kdevsourceformatter.mo share/locale/fi/LC_MESSAGES/kdevstandardoutputview.mo share/locale/fi/LC_MESSAGES/kdevsubversion.mo share/locale/fi/LC_MESSAGES/kdevswitchtobuddy.mo share/locale/fi/LC_MESSAGES/kdevtestview.mo share/locale/fi/LC_MESSAGES/kdevvcsprojectintegration.mo share/locale/fi/LC_MESSAGES/kdevwelcomepage.mo share/locale/fi/LC_MESSAGES/plasma_applet_kdevelopsessions.mo share/locale/fi/LC_MESSAGES/plasma_runner_kdevelopsessions.mo share/locale/fr/LC_MESSAGES/kdevandroid.mo share/locale/fr/LC_MESSAGES/kdevappwizard.mo share/locale/fr/LC_MESSAGES/kdevastyle.mo share/locale/fr/LC_MESSAGES/kdevbazaar.mo share/locale/fr/LC_MESSAGES/kdevclang.mo share/locale/fr/LC_MESSAGES/kdevclangtidy.mo share/locale/fr/LC_MESSAGES/kdevclassbrowser.mo share/locale/fr/LC_MESSAGES/kdevclazy.mo share/locale/fr/LC_MESSAGES/kdevcmake.mo share/locale/fr/LC_MESSAGES/kdevcmakebuilder.mo share/locale/fr/LC_MESSAGES/kdevcodeutils.mo share/locale/fr/LC_MESSAGES/kdevcompileanalyzercommon.mo share/locale/fr/LC_MESSAGES/kdevcontextbrowser.mo share/locale/fr/LC_MESSAGES/kdevcppcheck.mo share/locale/fr/LC_MESSAGES/kdevcustombuildsystem.mo share/locale/fr/LC_MESSAGES/kdevcustomdefinesandincludes.mo share/locale/fr/LC_MESSAGES/kdevcustommake.mo share/locale/fr/LC_MESSAGES/kdevcustomscript.mo share/locale/fr/LC_MESSAGES/kdevdebuggercommon.mo share/locale/fr/LC_MESSAGES/kdevdocker.mo share/locale/fr/LC_MESSAGES/kdevdocumentswitcher.mo share/locale/fr/LC_MESSAGES/kdevdocumentview.mo share/locale/fr/LC_MESSAGES/kdevelop.mo share/locale/fr/LC_MESSAGES/kdevexecute.mo share/locale/fr/LC_MESSAGES/kdevexecuteplasmoid.mo share/locale/fr/LC_MESSAGES/kdevexecutescript.mo share/locale/fr/LC_MESSAGES/kdevexternalscript.mo share/locale/fr/LC_MESSAGES/kdevfilemanager.mo share/locale/fr/LC_MESSAGES/kdevfiletemplates.mo share/locale/fr/LC_MESSAGES/kdevflatpak.mo share/locale/fr/LC_MESSAGES/kdevgdb.mo share/locale/fr/LC_MESSAGES/kdevghprovider.mo share/locale/fr/LC_MESSAGES/kdevgit.mo share/locale/fr/LC_MESSAGES/kdevgrepview.mo share/locale/fr/LC_MESSAGES/kdevheaptrack.mo share/locale/fr/LC_MESSAGES/kdevkonsole.mo share/locale/fr/LC_MESSAGES/kdevlldb.mo share/locale/fr/LC_MESSAGES/kdevmakebuilder.mo share/locale/fr/LC_MESSAGES/kdevmanpage.mo share/locale/fr/LC_MESSAGES/kdevmesonmanager.mo share/locale/fr/LC_MESSAGES/kdevninja.mo share/locale/fr/LC_MESSAGES/kdevokteta.mo share/locale/fr/LC_MESSAGES/kdevopenwith.mo share/locale/fr/LC_MESSAGES/kdevoutlineview.mo share/locale/fr/LC_MESSAGES/kdevpatchreview.mo share/locale/fr/LC_MESSAGES/kdevperforce.mo share/locale/fr/LC_MESSAGES/kdevplatform.mo share/locale/fr/LC_MESSAGES/kdevproblemreporter.mo share/locale/fr/LC_MESSAGES/kdevprojectfilter.mo share/locale/fr/LC_MESSAGES/kdevprojectmanagerview.mo share/locale/fr/LC_MESSAGES/kdevqmakebuilder.mo share/locale/fr/LC_MESSAGES/kdevqmakemanager.mo share/locale/fr/LC_MESSAGES/kdevqmljs.mo share/locale/fr/LC_MESSAGES/kdevqthelp.mo share/locale/fr/LC_MESSAGES/kdevquickopen.mo share/locale/fr/LC_MESSAGES/kdevscratchpad.mo share/locale/fr/LC_MESSAGES/kdevsourceformatter.mo share/locale/fr/LC_MESSAGES/kdevstandardoutputview.mo share/locale/fr/LC_MESSAGES/kdevsubversion.mo share/locale/fr/LC_MESSAGES/kdevswitchtobuddy.mo share/locale/fr/LC_MESSAGES/kdevtestview.mo share/locale/fr/LC_MESSAGES/kdevvcsprojectintegration.mo share/locale/fr/LC_MESSAGES/kdevwelcomepage.mo share/locale/fr/LC_MESSAGES/plasma_applet_kdevelopsessions.mo share/locale/fr/LC_MESSAGES/plasma_runner_kdevelopsessions.mo share/locale/ga/LC_MESSAGES/kdevappwizard.mo share/locale/ga/LC_MESSAGES/kdevbazaar.mo share/locale/ga/LC_MESSAGES/kdevclassbrowser.mo share/locale/ga/LC_MESSAGES/kdevcmake.mo share/locale/ga/LC_MESSAGES/kdevcmakebuilder.mo share/locale/ga/LC_MESSAGES/kdevcodeutils.mo share/locale/ga/LC_MESSAGES/kdevcontextbrowser.mo share/locale/ga/LC_MESSAGES/kdevcustombuildsystem.mo share/locale/ga/LC_MESSAGES/kdevcustommake.mo share/locale/ga/LC_MESSAGES/kdevdebuggercommon.mo share/locale/ga/LC_MESSAGES/kdevdocumentswitcher.mo share/locale/ga/LC_MESSAGES/kdevdocumentview.mo share/locale/ga/LC_MESSAGES/kdevelop.mo share/locale/ga/LC_MESSAGES/kdevexecute.mo share/locale/ga/LC_MESSAGES/kdevexecutescript.mo share/locale/ga/LC_MESSAGES/kdevexternalscript.mo share/locale/ga/LC_MESSAGES/kdevfilemanager.mo share/locale/ga/LC_MESSAGES/kdevgdb.mo share/locale/ga/LC_MESSAGES/kdevgit.mo share/locale/ga/LC_MESSAGES/kdevgrepview.mo share/locale/ga/LC_MESSAGES/kdevkonsole.mo share/locale/ga/LC_MESSAGES/kdevmakebuilder.mo share/locale/ga/LC_MESSAGES/kdevmanpage.mo share/locale/ga/LC_MESSAGES/kdevninja.mo share/locale/ga/LC_MESSAGES/kdevokteta.mo share/locale/ga/LC_MESSAGES/kdevopenwith.mo share/locale/ga/LC_MESSAGES/kdevpatchreview.mo share/locale/ga/LC_MESSAGES/kdevperforce.mo share/locale/ga/LC_MESSAGES/kdevplatform.mo share/locale/ga/LC_MESSAGES/kdevproblemreporter.mo share/locale/ga/LC_MESSAGES/kdevprojectmanagerview.mo share/locale/ga/LC_MESSAGES/kdevqmakebuilder.mo share/locale/ga/LC_MESSAGES/kdevqmakemanager.mo share/locale/ga/LC_MESSAGES/kdevqthelp.mo share/locale/ga/LC_MESSAGES/kdevquickopen.mo share/locale/ga/LC_MESSAGES/kdevstandardoutputview.mo share/locale/ga/LC_MESSAGES/kdevsubversion.mo share/locale/ga/LC_MESSAGES/kdevswitchtobuddy.mo share/locale/ga/LC_MESSAGES/kdevvcsprojectintegration.mo share/locale/ga/LC_MESSAGES/plasma_applet_kdevelopsessions.mo share/locale/ga/LC_MESSAGES/plasma_runner_kdevelopsessions.mo share/locale/gl/LC_MESSAGES/kdevandroid.mo share/locale/gl/LC_MESSAGES/kdevappwizard.mo share/locale/gl/LC_MESSAGES/kdevastyle.mo share/locale/gl/LC_MESSAGES/kdevbazaar.mo share/locale/gl/LC_MESSAGES/kdevclang.mo share/locale/gl/LC_MESSAGES/kdevclangtidy.mo share/locale/gl/LC_MESSAGES/kdevclassbrowser.mo share/locale/gl/LC_MESSAGES/kdevclazy.mo share/locale/gl/LC_MESSAGES/kdevcmake.mo share/locale/gl/LC_MESSAGES/kdevcmakebuilder.mo share/locale/gl/LC_MESSAGES/kdevcodeutils.mo share/locale/gl/LC_MESSAGES/kdevcompileanalyzercommon.mo share/locale/gl/LC_MESSAGES/kdevcontextbrowser.mo share/locale/gl/LC_MESSAGES/kdevcppcheck.mo share/locale/gl/LC_MESSAGES/kdevcustombuildsystem.mo share/locale/gl/LC_MESSAGES/kdevcustomdefinesandincludes.mo share/locale/gl/LC_MESSAGES/kdevcustommake.mo share/locale/gl/LC_MESSAGES/kdevcustomscript.mo share/locale/gl/LC_MESSAGES/kdevdebuggercommon.mo share/locale/gl/LC_MESSAGES/kdevdocker.mo share/locale/gl/LC_MESSAGES/kdevdocumentswitcher.mo share/locale/gl/LC_MESSAGES/kdevdocumentview.mo share/locale/gl/LC_MESSAGES/kdevelop.mo share/locale/gl/LC_MESSAGES/kdevexecute.mo share/locale/gl/LC_MESSAGES/kdevexecuteplasmoid.mo share/locale/gl/LC_MESSAGES/kdevexecutescript.mo share/locale/gl/LC_MESSAGES/kdevexternalscript.mo share/locale/gl/LC_MESSAGES/kdevfilemanager.mo share/locale/gl/LC_MESSAGES/kdevfiletemplates.mo share/locale/gl/LC_MESSAGES/kdevflatpak.mo share/locale/gl/LC_MESSAGES/kdevgdb.mo share/locale/gl/LC_MESSAGES/kdevghprovider.mo share/locale/gl/LC_MESSAGES/kdevgit.mo share/locale/gl/LC_MESSAGES/kdevgrepview.mo share/locale/gl/LC_MESSAGES/kdevheaptrack.mo share/locale/gl/LC_MESSAGES/kdevkonsole.mo share/locale/gl/LC_MESSAGES/kdevlldb.mo share/locale/gl/LC_MESSAGES/kdevmakebuilder.mo share/locale/gl/LC_MESSAGES/kdevmanpage.mo share/locale/gl/LC_MESSAGES/kdevmesonmanager.mo share/locale/gl/LC_MESSAGES/kdevninja.mo share/locale/gl/LC_MESSAGES/kdevokteta.mo share/locale/gl/LC_MESSAGES/kdevopenwith.mo share/locale/gl/LC_MESSAGES/kdevoutlineview.mo share/locale/gl/LC_MESSAGES/kdevpatchreview.mo share/locale/gl/LC_MESSAGES/kdevperforce.mo share/locale/gl/LC_MESSAGES/kdevplatform.mo share/locale/gl/LC_MESSAGES/kdevproblemreporter.mo share/locale/gl/LC_MESSAGES/kdevprojectfilter.mo share/locale/gl/LC_MESSAGES/kdevprojectmanagerview.mo share/locale/gl/LC_MESSAGES/kdevqmakebuilder.mo share/locale/gl/LC_MESSAGES/kdevqmakemanager.mo share/locale/gl/LC_MESSAGES/kdevqmljs.mo share/locale/gl/LC_MESSAGES/kdevqthelp.mo share/locale/gl/LC_MESSAGES/kdevquickopen.mo share/locale/gl/LC_MESSAGES/kdevscratchpad.mo share/locale/gl/LC_MESSAGES/kdevsourceformatter.mo share/locale/gl/LC_MESSAGES/kdevstandardoutputview.mo share/locale/gl/LC_MESSAGES/kdevsubversion.mo share/locale/gl/LC_MESSAGES/kdevswitchtobuddy.mo share/locale/gl/LC_MESSAGES/kdevtestview.mo share/locale/gl/LC_MESSAGES/kdevvcsprojectintegration.mo share/locale/gl/LC_MESSAGES/kdevwelcomepage.mo share/locale/gl/LC_MESSAGES/plasma_applet_kdevelopsessions.mo share/locale/gl/LC_MESSAGES/plasma_runner_kdevelopsessions.mo +share/locale/he/LC_MESSAGES/kdevandroid.mo share/locale/he/LC_MESSAGES/kdevbazaar.mo +share/locale/he/LC_MESSAGES/kdevclassbrowser.mo +share/locale/he/LC_MESSAGES/kdevcodeutils.mo +share/locale/he/LC_MESSAGES/kdevdocker.mo +share/locale/he/LC_MESSAGES/kdevdocumentswitcher.mo +share/locale/he/LC_MESSAGES/kdevdocumentview.mo +share/locale/he/LC_MESSAGES/kdevfilemanager.mo share/locale/he/LC_MESSAGES/kdevkonsole.mo +share/locale/he/LC_MESSAGES/kdevmanpage.mo +share/locale/he/LC_MESSAGES/kdevokteta.mo +share/locale/he/LC_MESSAGES/kdevoutlineview.mo +share/locale/he/LC_MESSAGES/kdevqmakebuilder.mo share/locale/he/LC_MESSAGES/kdevswitchtobuddy.mo +share/locale/he/LC_MESSAGES/kdevtestview.mo +share/locale/he/LC_MESSAGES/kdevvcsprojectintegration.mo +share/locale/he/LC_MESSAGES/kdevwelcomepage.mo share/locale/he/LC_MESSAGES/plasma_applet_kdevelopsessions.mo +share/locale/he/LC_MESSAGES/plasma_runner_kdevelopsessions.mo share/locale/hi/LC_MESSAGES/kdevandroid.mo share/locale/hi/LC_MESSAGES/kdevappwizard.mo share/locale/hi/LC_MESSAGES/kdevastyle.mo share/locale/hi/LC_MESSAGES/kdevbazaar.mo share/locale/hi/LC_MESSAGES/kdevclang.mo share/locale/hi/LC_MESSAGES/kdevclangtidy.mo share/locale/hi/LC_MESSAGES/kdevclassbrowser.mo share/locale/hi/LC_MESSAGES/kdevclazy.mo share/locale/hi/LC_MESSAGES/kdevcmake.mo share/locale/hi/LC_MESSAGES/kdevcmakebuilder.mo share/locale/hi/LC_MESSAGES/kdevcodeutils.mo share/locale/hi/LC_MESSAGES/kdevcompileanalyzercommon.mo share/locale/hi/LC_MESSAGES/kdevcontextbrowser.mo share/locale/hi/LC_MESSAGES/kdevcppcheck.mo share/locale/hi/LC_MESSAGES/kdevcustombuildsystem.mo share/locale/hi/LC_MESSAGES/kdevcustomdefinesandincludes.mo share/locale/hi/LC_MESSAGES/kdevcustommake.mo share/locale/hi/LC_MESSAGES/kdevcustomscript.mo share/locale/hi/LC_MESSAGES/kdevdebuggercommon.mo share/locale/hi/LC_MESSAGES/kdevdocker.mo share/locale/hi/LC_MESSAGES/kdevdocumentswitcher.mo share/locale/hi/LC_MESSAGES/kdevdocumentview.mo share/locale/hi/LC_MESSAGES/kdevelop.mo share/locale/hi/LC_MESSAGES/kdevexecute.mo share/locale/hi/LC_MESSAGES/kdevexecuteplasmoid.mo share/locale/hi/LC_MESSAGES/kdevexecutescript.mo share/locale/hi/LC_MESSAGES/kdevexternalscript.mo share/locale/hi/LC_MESSAGES/kdevfilemanager.mo share/locale/hi/LC_MESSAGES/kdevfiletemplates.mo share/locale/hi/LC_MESSAGES/kdevflatpak.mo share/locale/hi/LC_MESSAGES/kdevgdb.mo share/locale/hi/LC_MESSAGES/kdevghprovider.mo share/locale/hi/LC_MESSAGES/kdevgit.mo share/locale/hi/LC_MESSAGES/kdevgrepview.mo share/locale/hi/LC_MESSAGES/kdevheaptrack.mo share/locale/hi/LC_MESSAGES/kdevkonsole.mo share/locale/hi/LC_MESSAGES/kdevlldb.mo share/locale/hi/LC_MESSAGES/kdevmakebuilder.mo share/locale/hi/LC_MESSAGES/kdevmanpage.mo share/locale/hi/LC_MESSAGES/kdevmesonmanager.mo share/locale/hi/LC_MESSAGES/kdevninja.mo share/locale/hi/LC_MESSAGES/kdevokteta.mo share/locale/hi/LC_MESSAGES/kdevopenwith.mo share/locale/hi/LC_MESSAGES/kdevoutlineview.mo share/locale/hi/LC_MESSAGES/kdevpatchreview.mo share/locale/hi/LC_MESSAGES/kdevperforce.mo share/locale/hi/LC_MESSAGES/kdevplatform.mo share/locale/hi/LC_MESSAGES/kdevproblemreporter.mo share/locale/hi/LC_MESSAGES/kdevprojectfilter.mo share/locale/hi/LC_MESSAGES/kdevprojectmanagerview.mo share/locale/hi/LC_MESSAGES/kdevqmakebuilder.mo share/locale/hi/LC_MESSAGES/kdevqmakemanager.mo share/locale/hi/LC_MESSAGES/kdevqmljs.mo share/locale/hi/LC_MESSAGES/kdevqthelp.mo share/locale/hi/LC_MESSAGES/kdevquickopen.mo share/locale/hi/LC_MESSAGES/kdevscratchpad.mo share/locale/hi/LC_MESSAGES/kdevsourceformatter.mo share/locale/hi/LC_MESSAGES/kdevstandardoutputview.mo share/locale/hi/LC_MESSAGES/kdevsubversion.mo share/locale/hi/LC_MESSAGES/kdevswitchtobuddy.mo share/locale/hi/LC_MESSAGES/kdevtestview.mo share/locale/hi/LC_MESSAGES/kdevvcsprojectintegration.mo share/locale/hi/LC_MESSAGES/kdevwelcomepage.mo share/locale/hi/LC_MESSAGES/plasma_applet_kdevelopsessions.mo share/locale/hi/LC_MESSAGES/plasma_runner_kdevelopsessions.mo share/locale/hne/LC_MESSAGES/kdevelop.mo share/locale/hr/LC_MESSAGES/kdevappwizard.mo share/locale/hr/LC_MESSAGES/kdevclassbrowser.mo share/locale/hr/LC_MESSAGES/kdevcmake.mo share/locale/hr/LC_MESSAGES/kdevcmakebuilder.mo share/locale/hr/LC_MESSAGES/kdevcontextbrowser.mo share/locale/hr/LC_MESSAGES/kdevcustommake.mo share/locale/hr/LC_MESSAGES/kdevdebuggercommon.mo share/locale/hr/LC_MESSAGES/kdevdocumentswitcher.mo share/locale/hr/LC_MESSAGES/kdevdocumentview.mo share/locale/hr/LC_MESSAGES/kdevelop.mo share/locale/hr/LC_MESSAGES/kdevexecute.mo share/locale/hr/LC_MESSAGES/kdevfilemanager.mo share/locale/hr/LC_MESSAGES/kdevgdb.mo share/locale/hr/LC_MESSAGES/kdevgrepview.mo share/locale/hr/LC_MESSAGES/kdevkonsole.mo share/locale/hr/LC_MESSAGES/kdevmakebuilder.mo share/locale/hr/LC_MESSAGES/kdevpatchreview.mo share/locale/hr/LC_MESSAGES/kdevplatform.mo share/locale/hr/LC_MESSAGES/kdevproblemreporter.mo share/locale/hr/LC_MESSAGES/kdevprojectmanagerview.mo share/locale/hr/LC_MESSAGES/kdevqthelp.mo share/locale/hr/LC_MESSAGES/kdevquickopen.mo share/locale/hr/LC_MESSAGES/kdevstandardoutputview.mo share/locale/hr/LC_MESSAGES/kdevsubversion.mo share/locale/hu/LC_MESSAGES/kdevandroid.mo share/locale/hu/LC_MESSAGES/kdevappwizard.mo share/locale/hu/LC_MESSAGES/kdevastyle.mo share/locale/hu/LC_MESSAGES/kdevbazaar.mo share/locale/hu/LC_MESSAGES/kdevclassbrowser.mo share/locale/hu/LC_MESSAGES/kdevcmake.mo share/locale/hu/LC_MESSAGES/kdevcmakebuilder.mo share/locale/hu/LC_MESSAGES/kdevcodeutils.mo share/locale/hu/LC_MESSAGES/kdevcontextbrowser.mo share/locale/hu/LC_MESSAGES/kdevcppcheck.mo share/locale/hu/LC_MESSAGES/kdevcustombuildsystem.mo share/locale/hu/LC_MESSAGES/kdevcustommake.mo share/locale/hu/LC_MESSAGES/kdevdebuggercommon.mo share/locale/hu/LC_MESSAGES/kdevdocumentswitcher.mo share/locale/hu/LC_MESSAGES/kdevdocumentview.mo share/locale/hu/LC_MESSAGES/kdevelop.mo share/locale/hu/LC_MESSAGES/kdevexecute.mo share/locale/hu/LC_MESSAGES/kdevexecuteplasmoid.mo share/locale/hu/LC_MESSAGES/kdevexecutescript.mo share/locale/hu/LC_MESSAGES/kdevexternalscript.mo share/locale/hu/LC_MESSAGES/kdevfilemanager.mo share/locale/hu/LC_MESSAGES/kdevfiletemplates.mo share/locale/hu/LC_MESSAGES/kdevgdb.mo share/locale/hu/LC_MESSAGES/kdevghprovider.mo share/locale/hu/LC_MESSAGES/kdevgit.mo share/locale/hu/LC_MESSAGES/kdevgrepview.mo share/locale/hu/LC_MESSAGES/kdevkonsole.mo share/locale/hu/LC_MESSAGES/kdevmakebuilder.mo share/locale/hu/LC_MESSAGES/kdevmanpage.mo share/locale/hu/LC_MESSAGES/kdevninja.mo share/locale/hu/LC_MESSAGES/kdevokteta.mo share/locale/hu/LC_MESSAGES/kdevopenwith.mo share/locale/hu/LC_MESSAGES/kdevpatchreview.mo share/locale/hu/LC_MESSAGES/kdevperforce.mo share/locale/hu/LC_MESSAGES/kdevplatform.mo share/locale/hu/LC_MESSAGES/kdevproblemreporter.mo share/locale/hu/LC_MESSAGES/kdevprojectfilter.mo share/locale/hu/LC_MESSAGES/kdevprojectmanagerview.mo share/locale/hu/LC_MESSAGES/kdevqmakebuilder.mo share/locale/hu/LC_MESSAGES/kdevqmakemanager.mo share/locale/hu/LC_MESSAGES/kdevqmljs.mo share/locale/hu/LC_MESSAGES/kdevqthelp.mo share/locale/hu/LC_MESSAGES/kdevquickopen.mo share/locale/hu/LC_MESSAGES/kdevstandardoutputview.mo share/locale/hu/LC_MESSAGES/kdevsubversion.mo share/locale/hu/LC_MESSAGES/kdevswitchtobuddy.mo share/locale/hu/LC_MESSAGES/kdevtestview.mo share/locale/hu/LC_MESSAGES/kdevvcsprojectintegration.mo share/locale/hu/LC_MESSAGES/kdevwelcomepage.mo share/locale/hu/LC_MESSAGES/plasma_applet_kdevelopsessions.mo share/locale/hu/LC_MESSAGES/plasma_runner_kdevelopsessions.mo share/locale/ia/LC_MESSAGES/kdevappwizard.mo share/locale/ia/LC_MESSAGES/kdevastyle.mo share/locale/ia/LC_MESSAGES/kdevelop.mo share/locale/ia/LC_MESSAGES/kdevplatform.mo share/locale/is/LC_MESSAGES/kdevelop.mo share/locale/it/LC_MESSAGES/kdevandroid.mo share/locale/it/LC_MESSAGES/kdevappwizard.mo share/locale/it/LC_MESSAGES/kdevastyle.mo share/locale/it/LC_MESSAGES/kdevbazaar.mo share/locale/it/LC_MESSAGES/kdevclang.mo share/locale/it/LC_MESSAGES/kdevclangtidy.mo share/locale/it/LC_MESSAGES/kdevclassbrowser.mo share/locale/it/LC_MESSAGES/kdevclazy.mo share/locale/it/LC_MESSAGES/kdevcmake.mo share/locale/it/LC_MESSAGES/kdevcmakebuilder.mo share/locale/it/LC_MESSAGES/kdevcodeutils.mo share/locale/it/LC_MESSAGES/kdevcompileanalyzercommon.mo share/locale/it/LC_MESSAGES/kdevcontextbrowser.mo share/locale/it/LC_MESSAGES/kdevcppcheck.mo share/locale/it/LC_MESSAGES/kdevcustombuildsystem.mo share/locale/it/LC_MESSAGES/kdevcustomdefinesandincludes.mo share/locale/it/LC_MESSAGES/kdevcustommake.mo share/locale/it/LC_MESSAGES/kdevcustomscript.mo share/locale/it/LC_MESSAGES/kdevdebuggercommon.mo share/locale/it/LC_MESSAGES/kdevdocker.mo share/locale/it/LC_MESSAGES/kdevdocumentswitcher.mo share/locale/it/LC_MESSAGES/kdevdocumentview.mo share/locale/it/LC_MESSAGES/kdevelop.mo share/locale/it/LC_MESSAGES/kdevexecute.mo share/locale/it/LC_MESSAGES/kdevexecuteplasmoid.mo share/locale/it/LC_MESSAGES/kdevexecutescript.mo share/locale/it/LC_MESSAGES/kdevexternalscript.mo share/locale/it/LC_MESSAGES/kdevfilemanager.mo share/locale/it/LC_MESSAGES/kdevfiletemplates.mo share/locale/it/LC_MESSAGES/kdevflatpak.mo share/locale/it/LC_MESSAGES/kdevgdb.mo share/locale/it/LC_MESSAGES/kdevghprovider.mo share/locale/it/LC_MESSAGES/kdevgit.mo share/locale/it/LC_MESSAGES/kdevgrepview.mo share/locale/it/LC_MESSAGES/kdevheaptrack.mo share/locale/it/LC_MESSAGES/kdevkonsole.mo share/locale/it/LC_MESSAGES/kdevlldb.mo share/locale/it/LC_MESSAGES/kdevmakebuilder.mo share/locale/it/LC_MESSAGES/kdevmanpage.mo share/locale/it/LC_MESSAGES/kdevmesonmanager.mo share/locale/it/LC_MESSAGES/kdevninja.mo share/locale/it/LC_MESSAGES/kdevokteta.mo share/locale/it/LC_MESSAGES/kdevopenwith.mo share/locale/it/LC_MESSAGES/kdevoutlineview.mo share/locale/it/LC_MESSAGES/kdevpatchreview.mo share/locale/it/LC_MESSAGES/kdevperforce.mo share/locale/it/LC_MESSAGES/kdevplatform.mo share/locale/it/LC_MESSAGES/kdevproblemreporter.mo share/locale/it/LC_MESSAGES/kdevprojectfilter.mo share/locale/it/LC_MESSAGES/kdevprojectmanagerview.mo share/locale/it/LC_MESSAGES/kdevqmakebuilder.mo share/locale/it/LC_MESSAGES/kdevqmakemanager.mo share/locale/it/LC_MESSAGES/kdevqmljs.mo share/locale/it/LC_MESSAGES/kdevqthelp.mo share/locale/it/LC_MESSAGES/kdevquickopen.mo share/locale/it/LC_MESSAGES/kdevscratchpad.mo share/locale/it/LC_MESSAGES/kdevsourceformatter.mo share/locale/it/LC_MESSAGES/kdevstandardoutputview.mo share/locale/it/LC_MESSAGES/kdevsubversion.mo share/locale/it/LC_MESSAGES/kdevswitchtobuddy.mo share/locale/it/LC_MESSAGES/kdevtestview.mo share/locale/it/LC_MESSAGES/kdevvcsprojectintegration.mo share/locale/it/LC_MESSAGES/kdevwelcomepage.mo share/locale/it/LC_MESSAGES/plasma_applet_kdevelopsessions.mo share/locale/it/LC_MESSAGES/plasma_runner_kdevelopsessions.mo share/locale/ja/LC_MESSAGES/kdevandroid.mo share/locale/ja/LC_MESSAGES/kdevappwizard.mo share/locale/ja/LC_MESSAGES/kdevastyle.mo share/locale/ja/LC_MESSAGES/kdevbazaar.mo share/locale/ja/LC_MESSAGES/kdevclang.mo share/locale/ja/LC_MESSAGES/kdevclangtidy.mo share/locale/ja/LC_MESSAGES/kdevclassbrowser.mo share/locale/ja/LC_MESSAGES/kdevclazy.mo share/locale/ja/LC_MESSAGES/kdevcmake.mo share/locale/ja/LC_MESSAGES/kdevcmakebuilder.mo share/locale/ja/LC_MESSAGES/kdevcodeutils.mo share/locale/ja/LC_MESSAGES/kdevcompileanalyzercommon.mo share/locale/ja/LC_MESSAGES/kdevcontextbrowser.mo share/locale/ja/LC_MESSAGES/kdevcppcheck.mo share/locale/ja/LC_MESSAGES/kdevcustombuildsystem.mo share/locale/ja/LC_MESSAGES/kdevcustomdefinesandincludes.mo share/locale/ja/LC_MESSAGES/kdevcustommake.mo share/locale/ja/LC_MESSAGES/kdevcustomscript.mo share/locale/ja/LC_MESSAGES/kdevdebuggercommon.mo share/locale/ja/LC_MESSAGES/kdevdocker.mo share/locale/ja/LC_MESSAGES/kdevdocumentswitcher.mo share/locale/ja/LC_MESSAGES/kdevdocumentview.mo share/locale/ja/LC_MESSAGES/kdevelop.mo share/locale/ja/LC_MESSAGES/kdevexecute.mo share/locale/ja/LC_MESSAGES/kdevexecuteplasmoid.mo share/locale/ja/LC_MESSAGES/kdevexecutescript.mo share/locale/ja/LC_MESSAGES/kdevexternalscript.mo share/locale/ja/LC_MESSAGES/kdevfilemanager.mo share/locale/ja/LC_MESSAGES/kdevfiletemplates.mo share/locale/ja/LC_MESSAGES/kdevflatpak.mo share/locale/ja/LC_MESSAGES/kdevgdb.mo share/locale/ja/LC_MESSAGES/kdevghprovider.mo share/locale/ja/LC_MESSAGES/kdevgit.mo share/locale/ja/LC_MESSAGES/kdevgrepview.mo share/locale/ja/LC_MESSAGES/kdevheaptrack.mo share/locale/ja/LC_MESSAGES/kdevkonsole.mo share/locale/ja/LC_MESSAGES/kdevlldb.mo share/locale/ja/LC_MESSAGES/kdevmakebuilder.mo share/locale/ja/LC_MESSAGES/kdevmanpage.mo share/locale/ja/LC_MESSAGES/kdevmesonmanager.mo share/locale/ja/LC_MESSAGES/kdevninja.mo share/locale/ja/LC_MESSAGES/kdevokteta.mo share/locale/ja/LC_MESSAGES/kdevopenwith.mo share/locale/ja/LC_MESSAGES/kdevoutlineview.mo share/locale/ja/LC_MESSAGES/kdevpatchreview.mo share/locale/ja/LC_MESSAGES/kdevperforce.mo share/locale/ja/LC_MESSAGES/kdevplatform.mo share/locale/ja/LC_MESSAGES/kdevproblemreporter.mo share/locale/ja/LC_MESSAGES/kdevprojectfilter.mo share/locale/ja/LC_MESSAGES/kdevprojectmanagerview.mo share/locale/ja/LC_MESSAGES/kdevqmakebuilder.mo share/locale/ja/LC_MESSAGES/kdevqmakemanager.mo share/locale/ja/LC_MESSAGES/kdevqmljs.mo share/locale/ja/LC_MESSAGES/kdevqthelp.mo share/locale/ja/LC_MESSAGES/kdevquickopen.mo share/locale/ja/LC_MESSAGES/kdevscratchpad.mo share/locale/ja/LC_MESSAGES/kdevsourceformatter.mo share/locale/ja/LC_MESSAGES/kdevstandardoutputview.mo share/locale/ja/LC_MESSAGES/kdevsubversion.mo share/locale/ja/LC_MESSAGES/kdevswitchtobuddy.mo share/locale/ja/LC_MESSAGES/kdevtestview.mo share/locale/ja/LC_MESSAGES/kdevvcsprojectintegration.mo share/locale/ja/LC_MESSAGES/kdevwelcomepage.mo share/locale/ja/LC_MESSAGES/plasma_applet_kdevelopsessions.mo share/locale/ja/LC_MESSAGES/plasma_runner_kdevelopsessions.mo share/locale/ka/LC_MESSAGES/kdevandroid.mo share/locale/ka/LC_MESSAGES/kdevappwizard.mo share/locale/ka/LC_MESSAGES/kdevastyle.mo share/locale/ka/LC_MESSAGES/kdevbazaar.mo share/locale/ka/LC_MESSAGES/kdevclang.mo share/locale/ka/LC_MESSAGES/kdevclangtidy.mo share/locale/ka/LC_MESSAGES/kdevclassbrowser.mo share/locale/ka/LC_MESSAGES/kdevclazy.mo share/locale/ka/LC_MESSAGES/kdevcmake.mo share/locale/ka/LC_MESSAGES/kdevcmakebuilder.mo share/locale/ka/LC_MESSAGES/kdevcodeutils.mo share/locale/ka/LC_MESSAGES/kdevcompileanalyzercommon.mo share/locale/ka/LC_MESSAGES/kdevcontextbrowser.mo share/locale/ka/LC_MESSAGES/kdevcppcheck.mo share/locale/ka/LC_MESSAGES/kdevcustombuildsystem.mo share/locale/ka/LC_MESSAGES/kdevcustomdefinesandincludes.mo share/locale/ka/LC_MESSAGES/kdevcustommake.mo share/locale/ka/LC_MESSAGES/kdevcustomscript.mo share/locale/ka/LC_MESSAGES/kdevdebuggercommon.mo share/locale/ka/LC_MESSAGES/kdevdocker.mo share/locale/ka/LC_MESSAGES/kdevdocumentswitcher.mo share/locale/ka/LC_MESSAGES/kdevdocumentview.mo share/locale/ka/LC_MESSAGES/kdevelop.mo share/locale/ka/LC_MESSAGES/kdevexecute.mo share/locale/ka/LC_MESSAGES/kdevexecuteplasmoid.mo share/locale/ka/LC_MESSAGES/kdevexecutescript.mo share/locale/ka/LC_MESSAGES/kdevexternalscript.mo share/locale/ka/LC_MESSAGES/kdevfilemanager.mo share/locale/ka/LC_MESSAGES/kdevfiletemplates.mo share/locale/ka/LC_MESSAGES/kdevflatpak.mo share/locale/ka/LC_MESSAGES/kdevgdb.mo share/locale/ka/LC_MESSAGES/kdevghprovider.mo share/locale/ka/LC_MESSAGES/kdevgit.mo share/locale/ka/LC_MESSAGES/kdevgrepview.mo share/locale/ka/LC_MESSAGES/kdevheaptrack.mo share/locale/ka/LC_MESSAGES/kdevkonsole.mo share/locale/ka/LC_MESSAGES/kdevlldb.mo share/locale/ka/LC_MESSAGES/kdevmakebuilder.mo share/locale/ka/LC_MESSAGES/kdevmanpage.mo share/locale/ka/LC_MESSAGES/kdevmesonmanager.mo share/locale/ka/LC_MESSAGES/kdevninja.mo share/locale/ka/LC_MESSAGES/kdevokteta.mo share/locale/ka/LC_MESSAGES/kdevopenwith.mo share/locale/ka/LC_MESSAGES/kdevoutlineview.mo share/locale/ka/LC_MESSAGES/kdevpatchreview.mo share/locale/ka/LC_MESSAGES/kdevperforce.mo share/locale/ka/LC_MESSAGES/kdevplatform.mo share/locale/ka/LC_MESSAGES/kdevproblemreporter.mo share/locale/ka/LC_MESSAGES/kdevprojectfilter.mo share/locale/ka/LC_MESSAGES/kdevprojectmanagerview.mo share/locale/ka/LC_MESSAGES/kdevqmakebuilder.mo share/locale/ka/LC_MESSAGES/kdevqmakemanager.mo share/locale/ka/LC_MESSAGES/kdevqmljs.mo share/locale/ka/LC_MESSAGES/kdevqthelp.mo share/locale/ka/LC_MESSAGES/kdevquickopen.mo share/locale/ka/LC_MESSAGES/kdevscratchpad.mo share/locale/ka/LC_MESSAGES/kdevsourceformatter.mo share/locale/ka/LC_MESSAGES/kdevstandardoutputview.mo share/locale/ka/LC_MESSAGES/kdevsubversion.mo share/locale/ka/LC_MESSAGES/kdevswitchtobuddy.mo share/locale/ka/LC_MESSAGES/kdevtestview.mo share/locale/ka/LC_MESSAGES/kdevvcsprojectintegration.mo share/locale/ka/LC_MESSAGES/kdevwelcomepage.mo share/locale/ka/LC_MESSAGES/plasma_applet_kdevelopsessions.mo share/locale/ka/LC_MESSAGES/plasma_runner_kdevelopsessions.mo share/locale/kk/LC_MESSAGES/kdevappwizard.mo share/locale/kk/LC_MESSAGES/kdevclassbrowser.mo share/locale/kk/LC_MESSAGES/kdevcmake.mo share/locale/kk/LC_MESSAGES/kdevcmakebuilder.mo share/locale/kk/LC_MESSAGES/kdevcodeutils.mo share/locale/kk/LC_MESSAGES/kdevcontextbrowser.mo share/locale/kk/LC_MESSAGES/kdevcustombuildsystem.mo share/locale/kk/LC_MESSAGES/kdevcustommake.mo share/locale/kk/LC_MESSAGES/kdevdebuggercommon.mo share/locale/kk/LC_MESSAGES/kdevdocumentswitcher.mo share/locale/kk/LC_MESSAGES/kdevdocumentview.mo share/locale/kk/LC_MESSAGES/kdevelop.mo share/locale/kk/LC_MESSAGES/kdevexecute.mo share/locale/kk/LC_MESSAGES/kdevexecuteplasmoid.mo share/locale/kk/LC_MESSAGES/kdevexecutescript.mo share/locale/kk/LC_MESSAGES/kdevexternalscript.mo share/locale/kk/LC_MESSAGES/kdevfilemanager.mo share/locale/kk/LC_MESSAGES/kdevfiletemplates.mo share/locale/kk/LC_MESSAGES/kdevgdb.mo share/locale/kk/LC_MESSAGES/kdevghprovider.mo share/locale/kk/LC_MESSAGES/kdevgit.mo share/locale/kk/LC_MESSAGES/kdevgrepview.mo share/locale/kk/LC_MESSAGES/kdevkonsole.mo share/locale/kk/LC_MESSAGES/kdevmakebuilder.mo share/locale/kk/LC_MESSAGES/kdevmanpage.mo share/locale/kk/LC_MESSAGES/kdevninja.mo share/locale/kk/LC_MESSAGES/kdevokteta.mo share/locale/kk/LC_MESSAGES/kdevopenwith.mo share/locale/kk/LC_MESSAGES/kdevpatchreview.mo share/locale/kk/LC_MESSAGES/kdevplatform.mo share/locale/kk/LC_MESSAGES/kdevproblemreporter.mo share/locale/kk/LC_MESSAGES/kdevprojectfilter.mo share/locale/kk/LC_MESSAGES/kdevprojectmanagerview.mo share/locale/kk/LC_MESSAGES/kdevqthelp.mo share/locale/kk/LC_MESSAGES/kdevquickopen.mo share/locale/kk/LC_MESSAGES/kdevstandardoutputview.mo share/locale/kk/LC_MESSAGES/kdevsubversion.mo share/locale/kk/LC_MESSAGES/kdevswitchtobuddy.mo share/locale/kk/LC_MESSAGES/kdevtestview.mo share/locale/kk/LC_MESSAGES/kdevvcsprojectintegration.mo share/locale/kk/LC_MESSAGES/plasma_applet_kdevelopsessions.mo share/locale/kk/LC_MESSAGES/plasma_runner_kdevelopsessions.mo share/locale/km/LC_MESSAGES/kdevelop.mo share/locale/ko/LC_MESSAGES/kdevandroid.mo share/locale/ko/LC_MESSAGES/kdevappwizard.mo share/locale/ko/LC_MESSAGES/kdevastyle.mo share/locale/ko/LC_MESSAGES/kdevbazaar.mo share/locale/ko/LC_MESSAGES/kdevclang.mo share/locale/ko/LC_MESSAGES/kdevclangtidy.mo share/locale/ko/LC_MESSAGES/kdevclassbrowser.mo share/locale/ko/LC_MESSAGES/kdevclazy.mo share/locale/ko/LC_MESSAGES/kdevcmake.mo share/locale/ko/LC_MESSAGES/kdevcmakebuilder.mo share/locale/ko/LC_MESSAGES/kdevcodeutils.mo share/locale/ko/LC_MESSAGES/kdevcompileanalyzercommon.mo share/locale/ko/LC_MESSAGES/kdevcontextbrowser.mo share/locale/ko/LC_MESSAGES/kdevcppcheck.mo share/locale/ko/LC_MESSAGES/kdevcustombuildsystem.mo share/locale/ko/LC_MESSAGES/kdevcustomdefinesandincludes.mo share/locale/ko/LC_MESSAGES/kdevcustommake.mo share/locale/ko/LC_MESSAGES/kdevcustomscript.mo share/locale/ko/LC_MESSAGES/kdevdebuggercommon.mo share/locale/ko/LC_MESSAGES/kdevdocker.mo share/locale/ko/LC_MESSAGES/kdevdocumentswitcher.mo share/locale/ko/LC_MESSAGES/kdevdocumentview.mo share/locale/ko/LC_MESSAGES/kdevelop.mo share/locale/ko/LC_MESSAGES/kdevexecute.mo share/locale/ko/LC_MESSAGES/kdevexecuteplasmoid.mo share/locale/ko/LC_MESSAGES/kdevexecutescript.mo share/locale/ko/LC_MESSAGES/kdevexternalscript.mo share/locale/ko/LC_MESSAGES/kdevfilemanager.mo share/locale/ko/LC_MESSAGES/kdevfiletemplates.mo share/locale/ko/LC_MESSAGES/kdevflatpak.mo share/locale/ko/LC_MESSAGES/kdevgdb.mo share/locale/ko/LC_MESSAGES/kdevghprovider.mo share/locale/ko/LC_MESSAGES/kdevgit.mo share/locale/ko/LC_MESSAGES/kdevgrepview.mo share/locale/ko/LC_MESSAGES/kdevheaptrack.mo share/locale/ko/LC_MESSAGES/kdevkonsole.mo share/locale/ko/LC_MESSAGES/kdevlldb.mo share/locale/ko/LC_MESSAGES/kdevmakebuilder.mo share/locale/ko/LC_MESSAGES/kdevmanpage.mo share/locale/ko/LC_MESSAGES/kdevmesonmanager.mo share/locale/ko/LC_MESSAGES/kdevninja.mo share/locale/ko/LC_MESSAGES/kdevokteta.mo share/locale/ko/LC_MESSAGES/kdevopenwith.mo share/locale/ko/LC_MESSAGES/kdevoutlineview.mo share/locale/ko/LC_MESSAGES/kdevpatchreview.mo share/locale/ko/LC_MESSAGES/kdevperforce.mo share/locale/ko/LC_MESSAGES/kdevplatform.mo share/locale/ko/LC_MESSAGES/kdevproblemreporter.mo share/locale/ko/LC_MESSAGES/kdevprojectfilter.mo share/locale/ko/LC_MESSAGES/kdevprojectmanagerview.mo share/locale/ko/LC_MESSAGES/kdevqmakebuilder.mo share/locale/ko/LC_MESSAGES/kdevqmakemanager.mo share/locale/ko/LC_MESSAGES/kdevqmljs.mo share/locale/ko/LC_MESSAGES/kdevqthelp.mo share/locale/ko/LC_MESSAGES/kdevquickopen.mo share/locale/ko/LC_MESSAGES/kdevscratchpad.mo share/locale/ko/LC_MESSAGES/kdevsourceformatter.mo share/locale/ko/LC_MESSAGES/kdevstandardoutputview.mo share/locale/ko/LC_MESSAGES/kdevsubversion.mo share/locale/ko/LC_MESSAGES/kdevswitchtobuddy.mo share/locale/ko/LC_MESSAGES/kdevtestview.mo share/locale/ko/LC_MESSAGES/kdevvcsprojectintegration.mo share/locale/ko/LC_MESSAGES/kdevwelcomepage.mo share/locale/ko/LC_MESSAGES/plasma_applet_kdevelopsessions.mo share/locale/ko/LC_MESSAGES/plasma_runner_kdevelopsessions.mo share/locale/ku/LC_MESSAGES/kdevelop.mo share/locale/lt/LC_MESSAGES/kdevandroid.mo share/locale/lt/LC_MESSAGES/kdevappwizard.mo share/locale/lt/LC_MESSAGES/kdevastyle.mo share/locale/lt/LC_MESSAGES/kdevbazaar.mo share/locale/lt/LC_MESSAGES/kdevclang.mo share/locale/lt/LC_MESSAGES/kdevclangtidy.mo share/locale/lt/LC_MESSAGES/kdevclassbrowser.mo share/locale/lt/LC_MESSAGES/kdevclazy.mo share/locale/lt/LC_MESSAGES/kdevcmake.mo share/locale/lt/LC_MESSAGES/kdevcmakebuilder.mo share/locale/lt/LC_MESSAGES/kdevcodeutils.mo share/locale/lt/LC_MESSAGES/kdevcompileanalyzercommon.mo share/locale/lt/LC_MESSAGES/kdevcontextbrowser.mo share/locale/lt/LC_MESSAGES/kdevcppcheck.mo share/locale/lt/LC_MESSAGES/kdevcustombuildsystem.mo share/locale/lt/LC_MESSAGES/kdevcustomdefinesandincludes.mo share/locale/lt/LC_MESSAGES/kdevcustommake.mo share/locale/lt/LC_MESSAGES/kdevcustomscript.mo share/locale/lt/LC_MESSAGES/kdevdebuggercommon.mo share/locale/lt/LC_MESSAGES/kdevdocker.mo share/locale/lt/LC_MESSAGES/kdevdocumentswitcher.mo share/locale/lt/LC_MESSAGES/kdevdocumentview.mo share/locale/lt/LC_MESSAGES/kdevelop.mo share/locale/lt/LC_MESSAGES/kdevexecute.mo share/locale/lt/LC_MESSAGES/kdevexecuteplasmoid.mo share/locale/lt/LC_MESSAGES/kdevexecutescript.mo share/locale/lt/LC_MESSAGES/kdevexternalscript.mo share/locale/lt/LC_MESSAGES/kdevfilemanager.mo share/locale/lt/LC_MESSAGES/kdevfiletemplates.mo share/locale/lt/LC_MESSAGES/kdevflatpak.mo share/locale/lt/LC_MESSAGES/kdevgdb.mo share/locale/lt/LC_MESSAGES/kdevghprovider.mo share/locale/lt/LC_MESSAGES/kdevgit.mo share/locale/lt/LC_MESSAGES/kdevgrepview.mo share/locale/lt/LC_MESSAGES/kdevheaptrack.mo share/locale/lt/LC_MESSAGES/kdevkonsole.mo share/locale/lt/LC_MESSAGES/kdevlldb.mo share/locale/lt/LC_MESSAGES/kdevmakebuilder.mo share/locale/lt/LC_MESSAGES/kdevmanpage.mo share/locale/lt/LC_MESSAGES/kdevmesonmanager.mo share/locale/lt/LC_MESSAGES/kdevninja.mo share/locale/lt/LC_MESSAGES/kdevokteta.mo share/locale/lt/LC_MESSAGES/kdevopenwith.mo share/locale/lt/LC_MESSAGES/kdevoutlineview.mo share/locale/lt/LC_MESSAGES/kdevpatchreview.mo share/locale/lt/LC_MESSAGES/kdevperforce.mo share/locale/lt/LC_MESSAGES/kdevplatform.mo share/locale/lt/LC_MESSAGES/kdevproblemreporter.mo share/locale/lt/LC_MESSAGES/kdevprojectfilter.mo share/locale/lt/LC_MESSAGES/kdevprojectmanagerview.mo share/locale/lt/LC_MESSAGES/kdevqmakebuilder.mo share/locale/lt/LC_MESSAGES/kdevqmakemanager.mo share/locale/lt/LC_MESSAGES/kdevqmljs.mo share/locale/lt/LC_MESSAGES/kdevqthelp.mo share/locale/lt/LC_MESSAGES/kdevquickopen.mo share/locale/lt/LC_MESSAGES/kdevscratchpad.mo share/locale/lt/LC_MESSAGES/kdevsourceformatter.mo share/locale/lt/LC_MESSAGES/kdevstandardoutputview.mo share/locale/lt/LC_MESSAGES/kdevsubversion.mo share/locale/lt/LC_MESSAGES/kdevswitchtobuddy.mo share/locale/lt/LC_MESSAGES/kdevtestview.mo share/locale/lt/LC_MESSAGES/kdevvcsprojectintegration.mo share/locale/lt/LC_MESSAGES/kdevwelcomepage.mo share/locale/lt/LC_MESSAGES/plasma_applet_kdevelopsessions.mo share/locale/lt/LC_MESSAGES/plasma_runner_kdevelopsessions.mo share/locale/lv/LC_MESSAGES/kdevelop.mo share/locale/mai/LC_MESSAGES/kdevbazaar.mo share/locale/mai/LC_MESSAGES/kdevexecutescript.mo share/locale/mai/LC_MESSAGES/kdevqmakebuilder.mo share/locale/mai/LC_MESSAGES/kdevqmakemanager.mo share/locale/mr/LC_MESSAGES/kdevappwizard.mo share/locale/mr/LC_MESSAGES/kdevclassbrowser.mo share/locale/mr/LC_MESSAGES/kdevcmake.mo share/locale/mr/LC_MESSAGES/kdevcmakebuilder.mo share/locale/mr/LC_MESSAGES/kdevcodeutils.mo share/locale/mr/LC_MESSAGES/kdevcontextbrowser.mo share/locale/mr/LC_MESSAGES/kdevcustombuildsystem.mo share/locale/mr/LC_MESSAGES/kdevcustommake.mo share/locale/mr/LC_MESSAGES/kdevdebuggercommon.mo share/locale/mr/LC_MESSAGES/kdevdocumentswitcher.mo share/locale/mr/LC_MESSAGES/kdevdocumentview.mo share/locale/mr/LC_MESSAGES/kdevelop.mo share/locale/mr/LC_MESSAGES/kdevexecute.mo share/locale/mr/LC_MESSAGES/kdevexecutescript.mo share/locale/mr/LC_MESSAGES/kdevexternalscript.mo share/locale/mr/LC_MESSAGES/kdevfilemanager.mo share/locale/mr/LC_MESSAGES/kdevgdb.mo share/locale/mr/LC_MESSAGES/kdevgit.mo share/locale/mr/LC_MESSAGES/kdevgrepview.mo share/locale/mr/LC_MESSAGES/kdevkonsole.mo share/locale/mr/LC_MESSAGES/kdevmakebuilder.mo share/locale/mr/LC_MESSAGES/kdevmanpage.mo share/locale/mr/LC_MESSAGES/kdevokteta.mo share/locale/mr/LC_MESSAGES/kdevopenwith.mo share/locale/mr/LC_MESSAGES/kdevpatchreview.mo share/locale/mr/LC_MESSAGES/kdevperforce.mo share/locale/mr/LC_MESSAGES/kdevplatform.mo share/locale/mr/LC_MESSAGES/kdevproblemreporter.mo share/locale/mr/LC_MESSAGES/kdevprojectmanagerview.mo share/locale/mr/LC_MESSAGES/kdevqmljs.mo share/locale/mr/LC_MESSAGES/kdevqthelp.mo share/locale/mr/LC_MESSAGES/kdevquickopen.mo share/locale/mr/LC_MESSAGES/kdevstandardoutputview.mo share/locale/mr/LC_MESSAGES/kdevsubversion.mo share/locale/mr/LC_MESSAGES/kdevswitchtobuddy.mo share/locale/mr/LC_MESSAGES/kdevvcsprojectintegration.mo share/locale/mr/LC_MESSAGES/plasma_applet_kdevelopsessions.mo share/locale/mr/LC_MESSAGES/plasma_runner_kdevelopsessions.mo share/locale/ms/LC_MESSAGES/kdevappwizard.mo share/locale/ms/LC_MESSAGES/kdevclassbrowser.mo share/locale/ms/LC_MESSAGES/kdevcmake.mo share/locale/ms/LC_MESSAGES/kdevcmakebuilder.mo share/locale/ms/LC_MESSAGES/kdevcontextbrowser.mo share/locale/ms/LC_MESSAGES/kdevcustommake.mo share/locale/ms/LC_MESSAGES/kdevdocumentswitcher.mo share/locale/ms/LC_MESSAGES/kdevdocumentview.mo share/locale/ms/LC_MESSAGES/kdevelop.mo share/locale/ms/LC_MESSAGES/kdevexecute.mo share/locale/ms/LC_MESSAGES/kdevfilemanager.mo share/locale/ms/LC_MESSAGES/kdevplatform.mo share/locale/nb/LC_MESSAGES/kdevappwizard.mo share/locale/nb/LC_MESSAGES/kdevastyle.mo share/locale/nb/LC_MESSAGES/kdevbazaar.mo share/locale/nb/LC_MESSAGES/kdevclassbrowser.mo share/locale/nb/LC_MESSAGES/kdevcmake.mo share/locale/nb/LC_MESSAGES/kdevcmakebuilder.mo share/locale/nb/LC_MESSAGES/kdevcodeutils.mo share/locale/nb/LC_MESSAGES/kdevcontextbrowser.mo share/locale/nb/LC_MESSAGES/kdevcustombuildsystem.mo share/locale/nb/LC_MESSAGES/kdevcustommake.mo share/locale/nb/LC_MESSAGES/kdevcustomscript.mo share/locale/nb/LC_MESSAGES/kdevdebuggercommon.mo share/locale/nb/LC_MESSAGES/kdevdocumentswitcher.mo share/locale/nb/LC_MESSAGES/kdevdocumentview.mo share/locale/nb/LC_MESSAGES/kdevelop.mo share/locale/nb/LC_MESSAGES/kdevexecute.mo share/locale/nb/LC_MESSAGES/kdevexecuteplasmoid.mo share/locale/nb/LC_MESSAGES/kdevexecutescript.mo share/locale/nb/LC_MESSAGES/kdevexternalscript.mo share/locale/nb/LC_MESSAGES/kdevfilemanager.mo share/locale/nb/LC_MESSAGES/kdevgdb.mo share/locale/nb/LC_MESSAGES/kdevgit.mo share/locale/nb/LC_MESSAGES/kdevgrepview.mo share/locale/nb/LC_MESSAGES/kdevkonsole.mo share/locale/nb/LC_MESSAGES/kdevmakebuilder.mo share/locale/nb/LC_MESSAGES/kdevmanpage.mo share/locale/nb/LC_MESSAGES/kdevokteta.mo share/locale/nb/LC_MESSAGES/kdevopenwith.mo share/locale/nb/LC_MESSAGES/kdevpatchreview.mo share/locale/nb/LC_MESSAGES/kdevplatform.mo share/locale/nb/LC_MESSAGES/kdevproblemreporter.mo share/locale/nb/LC_MESSAGES/kdevprojectmanagerview.mo share/locale/nb/LC_MESSAGES/kdevqmakebuilder.mo share/locale/nb/LC_MESSAGES/kdevqmakemanager.mo share/locale/nb/LC_MESSAGES/kdevqthelp.mo share/locale/nb/LC_MESSAGES/kdevquickopen.mo share/locale/nb/LC_MESSAGES/kdevsourceformatter.mo share/locale/nb/LC_MESSAGES/kdevstandardoutputview.mo share/locale/nb/LC_MESSAGES/kdevsubversion.mo share/locale/nb/LC_MESSAGES/kdevvcsprojectintegration.mo share/locale/nb/LC_MESSAGES/plasma_applet_kdevelopsessions.mo share/locale/nb/LC_MESSAGES/plasma_runner_kdevelopsessions.mo share/locale/nds/LC_MESSAGES/kdevappwizard.mo share/locale/nds/LC_MESSAGES/kdevbazaar.mo share/locale/nds/LC_MESSAGES/kdevclassbrowser.mo share/locale/nds/LC_MESSAGES/kdevcmake.mo share/locale/nds/LC_MESSAGES/kdevcmakebuilder.mo share/locale/nds/LC_MESSAGES/kdevcodeutils.mo share/locale/nds/LC_MESSAGES/kdevcontextbrowser.mo share/locale/nds/LC_MESSAGES/kdevcustombuildsystem.mo share/locale/nds/LC_MESSAGES/kdevcustommake.mo share/locale/nds/LC_MESSAGES/kdevdebuggercommon.mo share/locale/nds/LC_MESSAGES/kdevdocumentswitcher.mo share/locale/nds/LC_MESSAGES/kdevdocumentview.mo share/locale/nds/LC_MESSAGES/kdevelop.mo share/locale/nds/LC_MESSAGES/kdevexecute.mo share/locale/nds/LC_MESSAGES/kdevexecuteplasmoid.mo share/locale/nds/LC_MESSAGES/kdevexecutescript.mo share/locale/nds/LC_MESSAGES/kdevexternalscript.mo share/locale/nds/LC_MESSAGES/kdevfilemanager.mo share/locale/nds/LC_MESSAGES/kdevfiletemplates.mo share/locale/nds/LC_MESSAGES/kdevgdb.mo share/locale/nds/LC_MESSAGES/kdevghprovider.mo share/locale/nds/LC_MESSAGES/kdevgit.mo share/locale/nds/LC_MESSAGES/kdevgrepview.mo share/locale/nds/LC_MESSAGES/kdevkonsole.mo share/locale/nds/LC_MESSAGES/kdevmakebuilder.mo share/locale/nds/LC_MESSAGES/kdevmanpage.mo share/locale/nds/LC_MESSAGES/kdevninja.mo share/locale/nds/LC_MESSAGES/kdevokteta.mo share/locale/nds/LC_MESSAGES/kdevopenwith.mo share/locale/nds/LC_MESSAGES/kdevpatchreview.mo share/locale/nds/LC_MESSAGES/kdevperforce.mo share/locale/nds/LC_MESSAGES/kdevplatform.mo share/locale/nds/LC_MESSAGES/kdevproblemreporter.mo share/locale/nds/LC_MESSAGES/kdevprojectfilter.mo share/locale/nds/LC_MESSAGES/kdevprojectmanagerview.mo share/locale/nds/LC_MESSAGES/kdevqmakebuilder.mo share/locale/nds/LC_MESSAGES/kdevqmakemanager.mo share/locale/nds/LC_MESSAGES/kdevqthelp.mo share/locale/nds/LC_MESSAGES/kdevquickopen.mo share/locale/nds/LC_MESSAGES/kdevstandardoutputview.mo share/locale/nds/LC_MESSAGES/kdevsubversion.mo share/locale/nds/LC_MESSAGES/kdevswitchtobuddy.mo share/locale/nds/LC_MESSAGES/kdevtestview.mo share/locale/nds/LC_MESSAGES/kdevvcsprojectintegration.mo share/locale/nds/LC_MESSAGES/plasma_applet_kdevelopsessions.mo share/locale/nds/LC_MESSAGES/plasma_runner_kdevelopsessions.mo share/locale/ne/LC_MESSAGES/kdevelop.mo share/locale/nl/LC_MESSAGES/kdevandroid.mo share/locale/nl/LC_MESSAGES/kdevappwizard.mo share/locale/nl/LC_MESSAGES/kdevastyle.mo share/locale/nl/LC_MESSAGES/kdevbazaar.mo share/locale/nl/LC_MESSAGES/kdevclang.mo share/locale/nl/LC_MESSAGES/kdevclangtidy.mo share/locale/nl/LC_MESSAGES/kdevclassbrowser.mo share/locale/nl/LC_MESSAGES/kdevclazy.mo share/locale/nl/LC_MESSAGES/kdevcmake.mo share/locale/nl/LC_MESSAGES/kdevcmakebuilder.mo share/locale/nl/LC_MESSAGES/kdevcodeutils.mo share/locale/nl/LC_MESSAGES/kdevcompileanalyzercommon.mo share/locale/nl/LC_MESSAGES/kdevcontextbrowser.mo share/locale/nl/LC_MESSAGES/kdevcppcheck.mo share/locale/nl/LC_MESSAGES/kdevcustombuildsystem.mo share/locale/nl/LC_MESSAGES/kdevcustomdefinesandincludes.mo share/locale/nl/LC_MESSAGES/kdevcustommake.mo share/locale/nl/LC_MESSAGES/kdevcustomscript.mo share/locale/nl/LC_MESSAGES/kdevdebuggercommon.mo share/locale/nl/LC_MESSAGES/kdevdocker.mo share/locale/nl/LC_MESSAGES/kdevdocumentswitcher.mo share/locale/nl/LC_MESSAGES/kdevdocumentview.mo share/locale/nl/LC_MESSAGES/kdevelop.mo share/locale/nl/LC_MESSAGES/kdevexecute.mo share/locale/nl/LC_MESSAGES/kdevexecuteplasmoid.mo share/locale/nl/LC_MESSAGES/kdevexecutescript.mo share/locale/nl/LC_MESSAGES/kdevexternalscript.mo share/locale/nl/LC_MESSAGES/kdevfilemanager.mo share/locale/nl/LC_MESSAGES/kdevfiletemplates.mo share/locale/nl/LC_MESSAGES/kdevflatpak.mo share/locale/nl/LC_MESSAGES/kdevgdb.mo share/locale/nl/LC_MESSAGES/kdevghprovider.mo share/locale/nl/LC_MESSAGES/kdevgit.mo share/locale/nl/LC_MESSAGES/kdevgrepview.mo share/locale/nl/LC_MESSAGES/kdevheaptrack.mo share/locale/nl/LC_MESSAGES/kdevkonsole.mo share/locale/nl/LC_MESSAGES/kdevlldb.mo share/locale/nl/LC_MESSAGES/kdevmakebuilder.mo share/locale/nl/LC_MESSAGES/kdevmanpage.mo share/locale/nl/LC_MESSAGES/kdevmesonmanager.mo share/locale/nl/LC_MESSAGES/kdevninja.mo share/locale/nl/LC_MESSAGES/kdevokteta.mo share/locale/nl/LC_MESSAGES/kdevopenwith.mo share/locale/nl/LC_MESSAGES/kdevoutlineview.mo share/locale/nl/LC_MESSAGES/kdevpatchreview.mo share/locale/nl/LC_MESSAGES/kdevperforce.mo share/locale/nl/LC_MESSAGES/kdevplatform.mo share/locale/nl/LC_MESSAGES/kdevproblemreporter.mo share/locale/nl/LC_MESSAGES/kdevprojectfilter.mo share/locale/nl/LC_MESSAGES/kdevprojectmanagerview.mo share/locale/nl/LC_MESSAGES/kdevqmakebuilder.mo share/locale/nl/LC_MESSAGES/kdevqmakemanager.mo share/locale/nl/LC_MESSAGES/kdevqmljs.mo share/locale/nl/LC_MESSAGES/kdevqthelp.mo share/locale/nl/LC_MESSAGES/kdevquickopen.mo share/locale/nl/LC_MESSAGES/kdevscratchpad.mo share/locale/nl/LC_MESSAGES/kdevsourceformatter.mo share/locale/nl/LC_MESSAGES/kdevstandardoutputview.mo share/locale/nl/LC_MESSAGES/kdevsubversion.mo share/locale/nl/LC_MESSAGES/kdevswitchtobuddy.mo share/locale/nl/LC_MESSAGES/kdevtestview.mo share/locale/nl/LC_MESSAGES/kdevvcsprojectintegration.mo share/locale/nl/LC_MESSAGES/kdevwelcomepage.mo share/locale/nl/LC_MESSAGES/plasma_applet_kdevelopsessions.mo share/locale/nl/LC_MESSAGES/plasma_runner_kdevelopsessions.mo share/locale/nn/LC_MESSAGES/kdevappwizard.mo share/locale/nn/LC_MESSAGES/kdevastyle.mo share/locale/nn/LC_MESSAGES/kdevbazaar.mo share/locale/nn/LC_MESSAGES/kdevclassbrowser.mo share/locale/nn/LC_MESSAGES/kdevcmake.mo share/locale/nn/LC_MESSAGES/kdevcmakebuilder.mo share/locale/nn/LC_MESSAGES/kdevcontextbrowser.mo share/locale/nn/LC_MESSAGES/kdevcustommake.mo share/locale/nn/LC_MESSAGES/kdevcustomscript.mo share/locale/nn/LC_MESSAGES/kdevdebuggercommon.mo share/locale/nn/LC_MESSAGES/kdevdocumentview.mo share/locale/nn/LC_MESSAGES/kdevelop.mo share/locale/nn/LC_MESSAGES/kdevexecute.mo share/locale/nn/LC_MESSAGES/kdevfilemanager.mo share/locale/nn/LC_MESSAGES/kdevgdb.mo share/locale/nn/LC_MESSAGES/kdevgit.mo share/locale/nn/LC_MESSAGES/kdevgrepview.mo share/locale/nn/LC_MESSAGES/kdevheaptrack.mo share/locale/nn/LC_MESSAGES/kdevkonsole.mo share/locale/nn/LC_MESSAGES/kdevmakebuilder.mo share/locale/nn/LC_MESSAGES/kdevokteta.mo share/locale/nn/LC_MESSAGES/kdevplatform.mo share/locale/nn/LC_MESSAGES/kdevproblemreporter.mo share/locale/nn/LC_MESSAGES/kdevprojectmanagerview.mo share/locale/nn/LC_MESSAGES/kdevqmakebuilder.mo share/locale/nn/LC_MESSAGES/kdevqmakemanager.mo share/locale/nn/LC_MESSAGES/kdevquickopen.mo share/locale/nn/LC_MESSAGES/kdevsourceformatter.mo share/locale/nn/LC_MESSAGES/kdevstandardoutputview.mo share/locale/nn/LC_MESSAGES/kdevsubversion.mo share/locale/nn/LC_MESSAGES/plasma_applet_kdevelopsessions.mo share/locale/nn/LC_MESSAGES/plasma_runner_kdevelopsessions.mo share/locale/oc/LC_MESSAGES/kdevelop.mo share/locale/pa/LC_MESSAGES/kdevbazaar.mo share/locale/pa/LC_MESSAGES/kdevclassbrowser.mo share/locale/pa/LC_MESSAGES/kdevcontextbrowser.mo share/locale/pa/LC_MESSAGES/kdevexecute.mo share/locale/pa/LC_MESSAGES/kdevfilemanager.mo share/locale/pa/LC_MESSAGES/kdevgit.mo share/locale/pa/LC_MESSAGES/kdevkonsole.mo share/locale/pa/LC_MESSAGES/kdevplatform.mo share/locale/pa/LC_MESSAGES/kdevquickopen.mo share/locale/pa/LC_MESSAGES/kdevsubversion.mo share/locale/pl/LC_MESSAGES/kdevandroid.mo share/locale/pl/LC_MESSAGES/kdevappwizard.mo share/locale/pl/LC_MESSAGES/kdevastyle.mo share/locale/pl/LC_MESSAGES/kdevbazaar.mo share/locale/pl/LC_MESSAGES/kdevclang.mo share/locale/pl/LC_MESSAGES/kdevclangtidy.mo share/locale/pl/LC_MESSAGES/kdevclassbrowser.mo share/locale/pl/LC_MESSAGES/kdevclazy.mo share/locale/pl/LC_MESSAGES/kdevcmake.mo share/locale/pl/LC_MESSAGES/kdevcmakebuilder.mo share/locale/pl/LC_MESSAGES/kdevcodeutils.mo share/locale/pl/LC_MESSAGES/kdevcompileanalyzercommon.mo share/locale/pl/LC_MESSAGES/kdevcontextbrowser.mo share/locale/pl/LC_MESSAGES/kdevcppcheck.mo share/locale/pl/LC_MESSAGES/kdevcustombuildsystem.mo share/locale/pl/LC_MESSAGES/kdevcustomdefinesandincludes.mo share/locale/pl/LC_MESSAGES/kdevcustommake.mo share/locale/pl/LC_MESSAGES/kdevcustomscript.mo share/locale/pl/LC_MESSAGES/kdevdebuggercommon.mo share/locale/pl/LC_MESSAGES/kdevdocker.mo share/locale/pl/LC_MESSAGES/kdevdocumentswitcher.mo share/locale/pl/LC_MESSAGES/kdevdocumentview.mo share/locale/pl/LC_MESSAGES/kdevelop.mo share/locale/pl/LC_MESSAGES/kdevexecute.mo share/locale/pl/LC_MESSAGES/kdevexecuteplasmoid.mo share/locale/pl/LC_MESSAGES/kdevexecutescript.mo share/locale/pl/LC_MESSAGES/kdevexternalscript.mo share/locale/pl/LC_MESSAGES/kdevfilemanager.mo share/locale/pl/LC_MESSAGES/kdevfiletemplates.mo share/locale/pl/LC_MESSAGES/kdevflatpak.mo share/locale/pl/LC_MESSAGES/kdevgdb.mo share/locale/pl/LC_MESSAGES/kdevghprovider.mo share/locale/pl/LC_MESSAGES/kdevgit.mo share/locale/pl/LC_MESSAGES/kdevgrepview.mo share/locale/pl/LC_MESSAGES/kdevheaptrack.mo share/locale/pl/LC_MESSAGES/kdevkonsole.mo share/locale/pl/LC_MESSAGES/kdevlldb.mo share/locale/pl/LC_MESSAGES/kdevmakebuilder.mo share/locale/pl/LC_MESSAGES/kdevmanpage.mo share/locale/pl/LC_MESSAGES/kdevmesonmanager.mo share/locale/pl/LC_MESSAGES/kdevninja.mo share/locale/pl/LC_MESSAGES/kdevokteta.mo share/locale/pl/LC_MESSAGES/kdevopenwith.mo share/locale/pl/LC_MESSAGES/kdevoutlineview.mo share/locale/pl/LC_MESSAGES/kdevpatchreview.mo share/locale/pl/LC_MESSAGES/kdevperforce.mo share/locale/pl/LC_MESSAGES/kdevplatform.mo share/locale/pl/LC_MESSAGES/kdevproblemreporter.mo share/locale/pl/LC_MESSAGES/kdevprojectfilter.mo share/locale/pl/LC_MESSAGES/kdevprojectmanagerview.mo share/locale/pl/LC_MESSAGES/kdevqmakebuilder.mo share/locale/pl/LC_MESSAGES/kdevqmakemanager.mo share/locale/pl/LC_MESSAGES/kdevqmljs.mo share/locale/pl/LC_MESSAGES/kdevqthelp.mo share/locale/pl/LC_MESSAGES/kdevquickopen.mo share/locale/pl/LC_MESSAGES/kdevscratchpad.mo share/locale/pl/LC_MESSAGES/kdevsourceformatter.mo share/locale/pl/LC_MESSAGES/kdevstandardoutputview.mo share/locale/pl/LC_MESSAGES/kdevsubversion.mo share/locale/pl/LC_MESSAGES/kdevswitchtobuddy.mo share/locale/pl/LC_MESSAGES/kdevtestview.mo share/locale/pl/LC_MESSAGES/kdevvcsprojectintegration.mo share/locale/pl/LC_MESSAGES/kdevwelcomepage.mo share/locale/pl/LC_MESSAGES/plasma_applet_kdevelopsessions.mo share/locale/pl/LC_MESSAGES/plasma_runner_kdevelopsessions.mo share/locale/pt/LC_MESSAGES/kdevandroid.mo share/locale/pt/LC_MESSAGES/kdevappwizard.mo share/locale/pt/LC_MESSAGES/kdevastyle.mo share/locale/pt/LC_MESSAGES/kdevbazaar.mo share/locale/pt/LC_MESSAGES/kdevclang.mo share/locale/pt/LC_MESSAGES/kdevclangtidy.mo share/locale/pt/LC_MESSAGES/kdevclassbrowser.mo share/locale/pt/LC_MESSAGES/kdevclazy.mo share/locale/pt/LC_MESSAGES/kdevcmake.mo share/locale/pt/LC_MESSAGES/kdevcmakebuilder.mo share/locale/pt/LC_MESSAGES/kdevcodeutils.mo share/locale/pt/LC_MESSAGES/kdevcompileanalyzercommon.mo share/locale/pt/LC_MESSAGES/kdevcontextbrowser.mo share/locale/pt/LC_MESSAGES/kdevcppcheck.mo share/locale/pt/LC_MESSAGES/kdevcustombuildsystem.mo share/locale/pt/LC_MESSAGES/kdevcustomdefinesandincludes.mo share/locale/pt/LC_MESSAGES/kdevcustommake.mo share/locale/pt/LC_MESSAGES/kdevcustomscript.mo share/locale/pt/LC_MESSAGES/kdevdebuggercommon.mo share/locale/pt/LC_MESSAGES/kdevdocker.mo share/locale/pt/LC_MESSAGES/kdevdocumentswitcher.mo share/locale/pt/LC_MESSAGES/kdevdocumentview.mo share/locale/pt/LC_MESSAGES/kdevelop.mo share/locale/pt/LC_MESSAGES/kdevexecute.mo share/locale/pt/LC_MESSAGES/kdevexecuteplasmoid.mo share/locale/pt/LC_MESSAGES/kdevexecutescript.mo share/locale/pt/LC_MESSAGES/kdevexternalscript.mo share/locale/pt/LC_MESSAGES/kdevfilemanager.mo share/locale/pt/LC_MESSAGES/kdevfiletemplates.mo share/locale/pt/LC_MESSAGES/kdevflatpak.mo share/locale/pt/LC_MESSAGES/kdevgdb.mo share/locale/pt/LC_MESSAGES/kdevghprovider.mo share/locale/pt/LC_MESSAGES/kdevgit.mo share/locale/pt/LC_MESSAGES/kdevgrepview.mo share/locale/pt/LC_MESSAGES/kdevheaptrack.mo share/locale/pt/LC_MESSAGES/kdevkonsole.mo share/locale/pt/LC_MESSAGES/kdevlldb.mo share/locale/pt/LC_MESSAGES/kdevmakebuilder.mo share/locale/pt/LC_MESSAGES/kdevmanpage.mo share/locale/pt/LC_MESSAGES/kdevmesonmanager.mo share/locale/pt/LC_MESSAGES/kdevninja.mo share/locale/pt/LC_MESSAGES/kdevokteta.mo share/locale/pt/LC_MESSAGES/kdevopenwith.mo share/locale/pt/LC_MESSAGES/kdevoutlineview.mo share/locale/pt/LC_MESSAGES/kdevpatchreview.mo share/locale/pt/LC_MESSAGES/kdevperforce.mo share/locale/pt/LC_MESSAGES/kdevplatform.mo share/locale/pt/LC_MESSAGES/kdevproblemreporter.mo share/locale/pt/LC_MESSAGES/kdevprojectfilter.mo share/locale/pt/LC_MESSAGES/kdevprojectmanagerview.mo share/locale/pt/LC_MESSAGES/kdevqmakebuilder.mo share/locale/pt/LC_MESSAGES/kdevqmakemanager.mo share/locale/pt/LC_MESSAGES/kdevqmljs.mo share/locale/pt/LC_MESSAGES/kdevqthelp.mo share/locale/pt/LC_MESSAGES/kdevquickopen.mo share/locale/pt/LC_MESSAGES/kdevscratchpad.mo share/locale/pt/LC_MESSAGES/kdevsourceformatter.mo share/locale/pt/LC_MESSAGES/kdevstandardoutputview.mo share/locale/pt/LC_MESSAGES/kdevsubversion.mo share/locale/pt/LC_MESSAGES/kdevswitchtobuddy.mo share/locale/pt/LC_MESSAGES/kdevtestview.mo share/locale/pt/LC_MESSAGES/kdevvcsprojectintegration.mo share/locale/pt/LC_MESSAGES/kdevwelcomepage.mo share/locale/pt/LC_MESSAGES/plasma_applet_kdevelopsessions.mo share/locale/pt/LC_MESSAGES/plasma_runner_kdevelopsessions.mo share/locale/pt_BR/LC_MESSAGES/kdevandroid.mo share/locale/pt_BR/LC_MESSAGES/kdevappwizard.mo share/locale/pt_BR/LC_MESSAGES/kdevastyle.mo share/locale/pt_BR/LC_MESSAGES/kdevbazaar.mo share/locale/pt_BR/LC_MESSAGES/kdevclang.mo share/locale/pt_BR/LC_MESSAGES/kdevclangtidy.mo share/locale/pt_BR/LC_MESSAGES/kdevclassbrowser.mo share/locale/pt_BR/LC_MESSAGES/kdevclazy.mo share/locale/pt_BR/LC_MESSAGES/kdevcmake.mo share/locale/pt_BR/LC_MESSAGES/kdevcmakebuilder.mo share/locale/pt_BR/LC_MESSAGES/kdevcodeutils.mo share/locale/pt_BR/LC_MESSAGES/kdevcompileanalyzercommon.mo share/locale/pt_BR/LC_MESSAGES/kdevcontextbrowser.mo share/locale/pt_BR/LC_MESSAGES/kdevcppcheck.mo share/locale/pt_BR/LC_MESSAGES/kdevcustombuildsystem.mo share/locale/pt_BR/LC_MESSAGES/kdevcustomdefinesandincludes.mo share/locale/pt_BR/LC_MESSAGES/kdevcustommake.mo share/locale/pt_BR/LC_MESSAGES/kdevcustomscript.mo share/locale/pt_BR/LC_MESSAGES/kdevdebuggercommon.mo share/locale/pt_BR/LC_MESSAGES/kdevdocker.mo share/locale/pt_BR/LC_MESSAGES/kdevdocumentswitcher.mo share/locale/pt_BR/LC_MESSAGES/kdevdocumentview.mo share/locale/pt_BR/LC_MESSAGES/kdevelop.mo share/locale/pt_BR/LC_MESSAGES/kdevexecute.mo share/locale/pt_BR/LC_MESSAGES/kdevexecuteplasmoid.mo share/locale/pt_BR/LC_MESSAGES/kdevexecutescript.mo share/locale/pt_BR/LC_MESSAGES/kdevexternalscript.mo share/locale/pt_BR/LC_MESSAGES/kdevfilemanager.mo share/locale/pt_BR/LC_MESSAGES/kdevfiletemplates.mo share/locale/pt_BR/LC_MESSAGES/kdevflatpak.mo share/locale/pt_BR/LC_MESSAGES/kdevgdb.mo share/locale/pt_BR/LC_MESSAGES/kdevghprovider.mo share/locale/pt_BR/LC_MESSAGES/kdevgit.mo share/locale/pt_BR/LC_MESSAGES/kdevgrepview.mo share/locale/pt_BR/LC_MESSAGES/kdevheaptrack.mo share/locale/pt_BR/LC_MESSAGES/kdevkonsole.mo share/locale/pt_BR/LC_MESSAGES/kdevlldb.mo share/locale/pt_BR/LC_MESSAGES/kdevmakebuilder.mo share/locale/pt_BR/LC_MESSAGES/kdevmanpage.mo share/locale/pt_BR/LC_MESSAGES/kdevmesonmanager.mo share/locale/pt_BR/LC_MESSAGES/kdevninja.mo share/locale/pt_BR/LC_MESSAGES/kdevokteta.mo share/locale/pt_BR/LC_MESSAGES/kdevopenwith.mo share/locale/pt_BR/LC_MESSAGES/kdevoutlineview.mo share/locale/pt_BR/LC_MESSAGES/kdevpatchreview.mo share/locale/pt_BR/LC_MESSAGES/kdevperforce.mo share/locale/pt_BR/LC_MESSAGES/kdevplatform.mo share/locale/pt_BR/LC_MESSAGES/kdevproblemreporter.mo share/locale/pt_BR/LC_MESSAGES/kdevprojectfilter.mo share/locale/pt_BR/LC_MESSAGES/kdevprojectmanagerview.mo share/locale/pt_BR/LC_MESSAGES/kdevqmakebuilder.mo share/locale/pt_BR/LC_MESSAGES/kdevqmakemanager.mo share/locale/pt_BR/LC_MESSAGES/kdevqmljs.mo share/locale/pt_BR/LC_MESSAGES/kdevqthelp.mo share/locale/pt_BR/LC_MESSAGES/kdevquickopen.mo share/locale/pt_BR/LC_MESSAGES/kdevscratchpad.mo share/locale/pt_BR/LC_MESSAGES/kdevsourceformatter.mo share/locale/pt_BR/LC_MESSAGES/kdevstandardoutputview.mo share/locale/pt_BR/LC_MESSAGES/kdevsubversion.mo share/locale/pt_BR/LC_MESSAGES/kdevswitchtobuddy.mo share/locale/pt_BR/LC_MESSAGES/kdevtestview.mo share/locale/pt_BR/LC_MESSAGES/kdevvcsprojectintegration.mo share/locale/pt_BR/LC_MESSAGES/kdevwelcomepage.mo share/locale/pt_BR/LC_MESSAGES/plasma_applet_kdevelopsessions.mo share/locale/pt_BR/LC_MESSAGES/plasma_runner_kdevelopsessions.mo share/locale/ro/LC_MESSAGES/kdevappwizard.mo share/locale/ro/LC_MESSAGES/kdevastyle.mo share/locale/ro/LC_MESSAGES/kdevbazaar.mo share/locale/ro/LC_MESSAGES/kdevclassbrowser.mo share/locale/ro/LC_MESSAGES/kdevcmake.mo share/locale/ro/LC_MESSAGES/kdevcmakebuilder.mo share/locale/ro/LC_MESSAGES/kdevcontextbrowser.mo share/locale/ro/LC_MESSAGES/kdevcustommake.mo share/locale/ro/LC_MESSAGES/kdevcustomscript.mo share/locale/ro/LC_MESSAGES/kdevdebuggercommon.mo share/locale/ro/LC_MESSAGES/kdevdocumentswitcher.mo share/locale/ro/LC_MESSAGES/kdevdocumentview.mo share/locale/ro/LC_MESSAGES/kdevelop.mo share/locale/ro/LC_MESSAGES/kdevexecute.mo share/locale/ro/LC_MESSAGES/kdevfilemanager.mo share/locale/ro/LC_MESSAGES/kdevgdb.mo share/locale/ro/LC_MESSAGES/kdevgit.mo share/locale/ro/LC_MESSAGES/kdevgrepview.mo share/locale/ro/LC_MESSAGES/kdevkonsole.mo share/locale/ro/LC_MESSAGES/kdevmakebuilder.mo share/locale/ro/LC_MESSAGES/kdevopenwith.mo share/locale/ro/LC_MESSAGES/kdevpatchreview.mo share/locale/ro/LC_MESSAGES/kdevplatform.mo share/locale/ro/LC_MESSAGES/kdevproblemreporter.mo share/locale/ro/LC_MESSAGES/kdevprojectmanagerview.mo share/locale/ro/LC_MESSAGES/kdevqmakebuilder.mo share/locale/ro/LC_MESSAGES/kdevqmakemanager.mo share/locale/ro/LC_MESSAGES/kdevqthelp.mo share/locale/ro/LC_MESSAGES/kdevquickopen.mo share/locale/ro/LC_MESSAGES/kdevsourceformatter.mo share/locale/ro/LC_MESSAGES/kdevstandardoutputview.mo share/locale/ro/LC_MESSAGES/kdevsubversion.mo share/locale/ru/LC_MESSAGES/kdevandroid.mo share/locale/ru/LC_MESSAGES/kdevappwizard.mo share/locale/ru/LC_MESSAGES/kdevastyle.mo share/locale/ru/LC_MESSAGES/kdevbazaar.mo share/locale/ru/LC_MESSAGES/kdevclang.mo share/locale/ru/LC_MESSAGES/kdevclangtidy.mo share/locale/ru/LC_MESSAGES/kdevclassbrowser.mo share/locale/ru/LC_MESSAGES/kdevclazy.mo share/locale/ru/LC_MESSAGES/kdevcmake.mo share/locale/ru/LC_MESSAGES/kdevcmakebuilder.mo share/locale/ru/LC_MESSAGES/kdevcodeutils.mo share/locale/ru/LC_MESSAGES/kdevcompileanalyzercommon.mo share/locale/ru/LC_MESSAGES/kdevcontextbrowser.mo share/locale/ru/LC_MESSAGES/kdevcppcheck.mo share/locale/ru/LC_MESSAGES/kdevcustombuildsystem.mo share/locale/ru/LC_MESSAGES/kdevcustomdefinesandincludes.mo share/locale/ru/LC_MESSAGES/kdevcustommake.mo share/locale/ru/LC_MESSAGES/kdevcustomscript.mo share/locale/ru/LC_MESSAGES/kdevdebuggercommon.mo share/locale/ru/LC_MESSAGES/kdevdocumentswitcher.mo share/locale/ru/LC_MESSAGES/kdevdocumentview.mo share/locale/ru/LC_MESSAGES/kdevelop.mo share/locale/ru/LC_MESSAGES/kdevexecute.mo share/locale/ru/LC_MESSAGES/kdevexecuteplasmoid.mo share/locale/ru/LC_MESSAGES/kdevexecutescript.mo share/locale/ru/LC_MESSAGES/kdevexternalscript.mo share/locale/ru/LC_MESSAGES/kdevfilemanager.mo share/locale/ru/LC_MESSAGES/kdevfiletemplates.mo share/locale/ru/LC_MESSAGES/kdevgdb.mo share/locale/ru/LC_MESSAGES/kdevghprovider.mo share/locale/ru/LC_MESSAGES/kdevgit.mo share/locale/ru/LC_MESSAGES/kdevgrepview.mo share/locale/ru/LC_MESSAGES/kdevheaptrack.mo share/locale/ru/LC_MESSAGES/kdevkonsole.mo share/locale/ru/LC_MESSAGES/kdevlldb.mo share/locale/ru/LC_MESSAGES/kdevmakebuilder.mo share/locale/ru/LC_MESSAGES/kdevmanpage.mo share/locale/ru/LC_MESSAGES/kdevmesonmanager.mo share/locale/ru/LC_MESSAGES/kdevninja.mo share/locale/ru/LC_MESSAGES/kdevokteta.mo share/locale/ru/LC_MESSAGES/kdevopenwith.mo share/locale/ru/LC_MESSAGES/kdevoutlineview.mo share/locale/ru/LC_MESSAGES/kdevpatchreview.mo share/locale/ru/LC_MESSAGES/kdevperforce.mo share/locale/ru/LC_MESSAGES/kdevplatform.mo share/locale/ru/LC_MESSAGES/kdevproblemreporter.mo share/locale/ru/LC_MESSAGES/kdevprojectfilter.mo share/locale/ru/LC_MESSAGES/kdevprojectmanagerview.mo share/locale/ru/LC_MESSAGES/kdevqmakebuilder.mo share/locale/ru/LC_MESSAGES/kdevqmakemanager.mo share/locale/ru/LC_MESSAGES/kdevqmljs.mo share/locale/ru/LC_MESSAGES/kdevqthelp.mo share/locale/ru/LC_MESSAGES/kdevquickopen.mo share/locale/ru/LC_MESSAGES/kdevscratchpad.mo share/locale/ru/LC_MESSAGES/kdevstandardoutputview.mo share/locale/ru/LC_MESSAGES/kdevsubversion.mo share/locale/ru/LC_MESSAGES/kdevswitchtobuddy.mo share/locale/ru/LC_MESSAGES/kdevtestview.mo share/locale/ru/LC_MESSAGES/kdevvcsprojectintegration.mo share/locale/ru/LC_MESSAGES/kdevwelcomepage.mo share/locale/ru/LC_MESSAGES/plasma_applet_kdevelopsessions.mo share/locale/ru/LC_MESSAGES/plasma_runner_kdevelopsessions.mo share/locale/sa/LC_MESSAGES/kdevandroid.mo share/locale/sa/LC_MESSAGES/kdevappwizard.mo share/locale/sa/LC_MESSAGES/kdevastyle.mo share/locale/sa/LC_MESSAGES/kdevbazaar.mo share/locale/sa/LC_MESSAGES/kdevclang.mo share/locale/sa/LC_MESSAGES/kdevclangtidy.mo share/locale/sa/LC_MESSAGES/kdevclassbrowser.mo share/locale/sa/LC_MESSAGES/kdevclazy.mo share/locale/sa/LC_MESSAGES/kdevcmake.mo share/locale/sa/LC_MESSAGES/kdevcmakebuilder.mo share/locale/sa/LC_MESSAGES/kdevcodeutils.mo share/locale/sa/LC_MESSAGES/kdevcompileanalyzercommon.mo share/locale/sa/LC_MESSAGES/kdevcontextbrowser.mo share/locale/sa/LC_MESSAGES/kdevcppcheck.mo share/locale/sa/LC_MESSAGES/kdevcustombuildsystem.mo share/locale/sa/LC_MESSAGES/kdevcustomdefinesandincludes.mo share/locale/sa/LC_MESSAGES/kdevcustommake.mo share/locale/sa/LC_MESSAGES/kdevcustomscript.mo share/locale/sa/LC_MESSAGES/kdevdebuggercommon.mo share/locale/sa/LC_MESSAGES/kdevdocker.mo share/locale/sa/LC_MESSAGES/kdevdocumentswitcher.mo share/locale/sa/LC_MESSAGES/kdevdocumentview.mo share/locale/sa/LC_MESSAGES/kdevelop.mo share/locale/sa/LC_MESSAGES/kdevexecute.mo share/locale/sa/LC_MESSAGES/kdevexecuteplasmoid.mo share/locale/sa/LC_MESSAGES/kdevexecutescript.mo share/locale/sa/LC_MESSAGES/kdevexternalscript.mo share/locale/sa/LC_MESSAGES/kdevfilemanager.mo share/locale/sa/LC_MESSAGES/kdevfiletemplates.mo share/locale/sa/LC_MESSAGES/kdevflatpak.mo share/locale/sa/LC_MESSAGES/kdevgdb.mo share/locale/sa/LC_MESSAGES/kdevghprovider.mo share/locale/sa/LC_MESSAGES/kdevgit.mo share/locale/sa/LC_MESSAGES/kdevgrepview.mo share/locale/sa/LC_MESSAGES/kdevheaptrack.mo share/locale/sa/LC_MESSAGES/kdevkonsole.mo share/locale/sa/LC_MESSAGES/kdevlldb.mo share/locale/sa/LC_MESSAGES/kdevmakebuilder.mo share/locale/sa/LC_MESSAGES/kdevmanpage.mo share/locale/sa/LC_MESSAGES/kdevmesonmanager.mo share/locale/sa/LC_MESSAGES/kdevninja.mo share/locale/sa/LC_MESSAGES/kdevokteta.mo share/locale/sa/LC_MESSAGES/kdevopenwith.mo share/locale/sa/LC_MESSAGES/kdevoutlineview.mo share/locale/sa/LC_MESSAGES/kdevpatchreview.mo share/locale/sa/LC_MESSAGES/kdevperforce.mo share/locale/sa/LC_MESSAGES/kdevplatform.mo share/locale/sa/LC_MESSAGES/kdevproblemreporter.mo share/locale/sa/LC_MESSAGES/kdevprojectfilter.mo share/locale/sa/LC_MESSAGES/kdevprojectmanagerview.mo share/locale/sa/LC_MESSAGES/kdevqmakebuilder.mo share/locale/sa/LC_MESSAGES/kdevqmakemanager.mo share/locale/sa/LC_MESSAGES/kdevqmljs.mo share/locale/sa/LC_MESSAGES/kdevqthelp.mo share/locale/sa/LC_MESSAGES/kdevquickopen.mo share/locale/sa/LC_MESSAGES/kdevscratchpad.mo share/locale/sa/LC_MESSAGES/kdevsourceformatter.mo share/locale/sa/LC_MESSAGES/kdevstandardoutputview.mo share/locale/sa/LC_MESSAGES/kdevsubversion.mo share/locale/sa/LC_MESSAGES/kdevswitchtobuddy.mo share/locale/sa/LC_MESSAGES/kdevtestview.mo share/locale/sa/LC_MESSAGES/kdevvcsprojectintegration.mo share/locale/sa/LC_MESSAGES/kdevwelcomepage.mo share/locale/sa/LC_MESSAGES/plasma_applet_kdevelopsessions.mo share/locale/sa/LC_MESSAGES/plasma_runner_kdevelopsessions.mo share/locale/se/LC_MESSAGES/kdevelop.mo share/locale/sk/LC_MESSAGES/kdevandroid.mo share/locale/sk/LC_MESSAGES/kdevappwizard.mo share/locale/sk/LC_MESSAGES/kdevastyle.mo share/locale/sk/LC_MESSAGES/kdevbazaar.mo share/locale/sk/LC_MESSAGES/kdevclang.mo share/locale/sk/LC_MESSAGES/kdevclangtidy.mo share/locale/sk/LC_MESSAGES/kdevclassbrowser.mo share/locale/sk/LC_MESSAGES/kdevclazy.mo share/locale/sk/LC_MESSAGES/kdevcmake.mo share/locale/sk/LC_MESSAGES/kdevcmakebuilder.mo share/locale/sk/LC_MESSAGES/kdevcodeutils.mo share/locale/sk/LC_MESSAGES/kdevcompileanalyzercommon.mo share/locale/sk/LC_MESSAGES/kdevcontextbrowser.mo share/locale/sk/LC_MESSAGES/kdevcppcheck.mo share/locale/sk/LC_MESSAGES/kdevcustombuildsystem.mo share/locale/sk/LC_MESSAGES/kdevcustomdefinesandincludes.mo share/locale/sk/LC_MESSAGES/kdevcustommake.mo share/locale/sk/LC_MESSAGES/kdevcustomscript.mo share/locale/sk/LC_MESSAGES/kdevdebuggercommon.mo share/locale/sk/LC_MESSAGES/kdevdocker.mo share/locale/sk/LC_MESSAGES/kdevdocumentswitcher.mo share/locale/sk/LC_MESSAGES/kdevdocumentview.mo share/locale/sk/LC_MESSAGES/kdevelop.mo share/locale/sk/LC_MESSAGES/kdevexecute.mo share/locale/sk/LC_MESSAGES/kdevexecuteplasmoid.mo share/locale/sk/LC_MESSAGES/kdevexecutescript.mo share/locale/sk/LC_MESSAGES/kdevexternalscript.mo share/locale/sk/LC_MESSAGES/kdevfilemanager.mo share/locale/sk/LC_MESSAGES/kdevfiletemplates.mo share/locale/sk/LC_MESSAGES/kdevflatpak.mo share/locale/sk/LC_MESSAGES/kdevgdb.mo share/locale/sk/LC_MESSAGES/kdevghprovider.mo share/locale/sk/LC_MESSAGES/kdevgit.mo share/locale/sk/LC_MESSAGES/kdevgrepview.mo share/locale/sk/LC_MESSAGES/kdevheaptrack.mo share/locale/sk/LC_MESSAGES/kdevkonsole.mo share/locale/sk/LC_MESSAGES/kdevlldb.mo share/locale/sk/LC_MESSAGES/kdevmakebuilder.mo share/locale/sk/LC_MESSAGES/kdevmanpage.mo share/locale/sk/LC_MESSAGES/kdevmesonmanager.mo share/locale/sk/LC_MESSAGES/kdevninja.mo share/locale/sk/LC_MESSAGES/kdevokteta.mo share/locale/sk/LC_MESSAGES/kdevopenwith.mo share/locale/sk/LC_MESSAGES/kdevoutlineview.mo share/locale/sk/LC_MESSAGES/kdevpatchreview.mo share/locale/sk/LC_MESSAGES/kdevperforce.mo share/locale/sk/LC_MESSAGES/kdevplatform.mo share/locale/sk/LC_MESSAGES/kdevproblemreporter.mo share/locale/sk/LC_MESSAGES/kdevprojectfilter.mo share/locale/sk/LC_MESSAGES/kdevprojectmanagerview.mo share/locale/sk/LC_MESSAGES/kdevqmakebuilder.mo share/locale/sk/LC_MESSAGES/kdevqmakemanager.mo share/locale/sk/LC_MESSAGES/kdevqmljs.mo share/locale/sk/LC_MESSAGES/kdevqthelp.mo share/locale/sk/LC_MESSAGES/kdevquickopen.mo share/locale/sk/LC_MESSAGES/kdevscratchpad.mo share/locale/sk/LC_MESSAGES/kdevsourceformatter.mo share/locale/sk/LC_MESSAGES/kdevstandardoutputview.mo share/locale/sk/LC_MESSAGES/kdevsubversion.mo share/locale/sk/LC_MESSAGES/kdevswitchtobuddy.mo share/locale/sk/LC_MESSAGES/kdevtestview.mo share/locale/sk/LC_MESSAGES/kdevvcsprojectintegration.mo share/locale/sk/LC_MESSAGES/kdevwelcomepage.mo share/locale/sk/LC_MESSAGES/plasma_applet_kdevelopsessions.mo share/locale/sk/LC_MESSAGES/plasma_runner_kdevelopsessions.mo share/locale/sl/LC_MESSAGES/kdevandroid.mo share/locale/sl/LC_MESSAGES/kdevappwizard.mo share/locale/sl/LC_MESSAGES/kdevastyle.mo share/locale/sl/LC_MESSAGES/kdevbazaar.mo share/locale/sl/LC_MESSAGES/kdevclang.mo share/locale/sl/LC_MESSAGES/kdevclangtidy.mo share/locale/sl/LC_MESSAGES/kdevclassbrowser.mo share/locale/sl/LC_MESSAGES/kdevclazy.mo share/locale/sl/LC_MESSAGES/kdevcmake.mo share/locale/sl/LC_MESSAGES/kdevcmakebuilder.mo share/locale/sl/LC_MESSAGES/kdevcodeutils.mo share/locale/sl/LC_MESSAGES/kdevcompileanalyzercommon.mo share/locale/sl/LC_MESSAGES/kdevcontextbrowser.mo share/locale/sl/LC_MESSAGES/kdevcppcheck.mo share/locale/sl/LC_MESSAGES/kdevcustombuildsystem.mo share/locale/sl/LC_MESSAGES/kdevcustomdefinesandincludes.mo share/locale/sl/LC_MESSAGES/kdevcustommake.mo share/locale/sl/LC_MESSAGES/kdevcustomscript.mo share/locale/sl/LC_MESSAGES/kdevdebuggercommon.mo share/locale/sl/LC_MESSAGES/kdevdocker.mo share/locale/sl/LC_MESSAGES/kdevdocumentswitcher.mo share/locale/sl/LC_MESSAGES/kdevdocumentview.mo share/locale/sl/LC_MESSAGES/kdevelop.mo share/locale/sl/LC_MESSAGES/kdevexecute.mo share/locale/sl/LC_MESSAGES/kdevexecuteplasmoid.mo share/locale/sl/LC_MESSAGES/kdevexecutescript.mo share/locale/sl/LC_MESSAGES/kdevexternalscript.mo share/locale/sl/LC_MESSAGES/kdevfilemanager.mo share/locale/sl/LC_MESSAGES/kdevfiletemplates.mo share/locale/sl/LC_MESSAGES/kdevflatpak.mo share/locale/sl/LC_MESSAGES/kdevgdb.mo share/locale/sl/LC_MESSAGES/kdevghprovider.mo share/locale/sl/LC_MESSAGES/kdevgit.mo share/locale/sl/LC_MESSAGES/kdevgrepview.mo share/locale/sl/LC_MESSAGES/kdevheaptrack.mo share/locale/sl/LC_MESSAGES/kdevkonsole.mo share/locale/sl/LC_MESSAGES/kdevlldb.mo share/locale/sl/LC_MESSAGES/kdevmakebuilder.mo share/locale/sl/LC_MESSAGES/kdevmanpage.mo share/locale/sl/LC_MESSAGES/kdevmesonmanager.mo share/locale/sl/LC_MESSAGES/kdevninja.mo share/locale/sl/LC_MESSAGES/kdevokteta.mo share/locale/sl/LC_MESSAGES/kdevopenwith.mo share/locale/sl/LC_MESSAGES/kdevoutlineview.mo share/locale/sl/LC_MESSAGES/kdevpatchreview.mo share/locale/sl/LC_MESSAGES/kdevperforce.mo share/locale/sl/LC_MESSAGES/kdevplatform.mo share/locale/sl/LC_MESSAGES/kdevproblemreporter.mo share/locale/sl/LC_MESSAGES/kdevprojectfilter.mo share/locale/sl/LC_MESSAGES/kdevprojectmanagerview.mo share/locale/sl/LC_MESSAGES/kdevqmakebuilder.mo share/locale/sl/LC_MESSAGES/kdevqmakemanager.mo share/locale/sl/LC_MESSAGES/kdevqmljs.mo share/locale/sl/LC_MESSAGES/kdevqthelp.mo share/locale/sl/LC_MESSAGES/kdevquickopen.mo share/locale/sl/LC_MESSAGES/kdevscratchpad.mo share/locale/sl/LC_MESSAGES/kdevsourceformatter.mo share/locale/sl/LC_MESSAGES/kdevstandardoutputview.mo share/locale/sl/LC_MESSAGES/kdevsubversion.mo share/locale/sl/LC_MESSAGES/kdevswitchtobuddy.mo share/locale/sl/LC_MESSAGES/kdevtestview.mo share/locale/sl/LC_MESSAGES/kdevvcsprojectintegration.mo share/locale/sl/LC_MESSAGES/kdevwelcomepage.mo share/locale/sl/LC_MESSAGES/plasma_applet_kdevelopsessions.mo share/locale/sl/LC_MESSAGES/plasma_runner_kdevelopsessions.mo share/locale/sv/LC_MESSAGES/kdevandroid.mo share/locale/sv/LC_MESSAGES/kdevappwizard.mo share/locale/sv/LC_MESSAGES/kdevastyle.mo share/locale/sv/LC_MESSAGES/kdevbazaar.mo share/locale/sv/LC_MESSAGES/kdevclang.mo share/locale/sv/LC_MESSAGES/kdevclangtidy.mo share/locale/sv/LC_MESSAGES/kdevclassbrowser.mo share/locale/sv/LC_MESSAGES/kdevclazy.mo share/locale/sv/LC_MESSAGES/kdevcmake.mo share/locale/sv/LC_MESSAGES/kdevcmakebuilder.mo share/locale/sv/LC_MESSAGES/kdevcodeutils.mo share/locale/sv/LC_MESSAGES/kdevcompileanalyzercommon.mo share/locale/sv/LC_MESSAGES/kdevcontextbrowser.mo share/locale/sv/LC_MESSAGES/kdevcppcheck.mo share/locale/sv/LC_MESSAGES/kdevcustombuildsystem.mo share/locale/sv/LC_MESSAGES/kdevcustomdefinesandincludes.mo share/locale/sv/LC_MESSAGES/kdevcustommake.mo share/locale/sv/LC_MESSAGES/kdevcustomscript.mo share/locale/sv/LC_MESSAGES/kdevdebuggercommon.mo share/locale/sv/LC_MESSAGES/kdevdocker.mo share/locale/sv/LC_MESSAGES/kdevdocumentswitcher.mo share/locale/sv/LC_MESSAGES/kdevdocumentview.mo share/locale/sv/LC_MESSAGES/kdevelop.mo share/locale/sv/LC_MESSAGES/kdevexecute.mo share/locale/sv/LC_MESSAGES/kdevexecuteplasmoid.mo share/locale/sv/LC_MESSAGES/kdevexecutescript.mo share/locale/sv/LC_MESSAGES/kdevexternalscript.mo share/locale/sv/LC_MESSAGES/kdevfilemanager.mo share/locale/sv/LC_MESSAGES/kdevfiletemplates.mo share/locale/sv/LC_MESSAGES/kdevflatpak.mo share/locale/sv/LC_MESSAGES/kdevgdb.mo share/locale/sv/LC_MESSAGES/kdevghprovider.mo share/locale/sv/LC_MESSAGES/kdevgit.mo share/locale/sv/LC_MESSAGES/kdevgrepview.mo share/locale/sv/LC_MESSAGES/kdevheaptrack.mo share/locale/sv/LC_MESSAGES/kdevkonsole.mo share/locale/sv/LC_MESSAGES/kdevlldb.mo share/locale/sv/LC_MESSAGES/kdevmakebuilder.mo share/locale/sv/LC_MESSAGES/kdevmanpage.mo share/locale/sv/LC_MESSAGES/kdevmesonmanager.mo share/locale/sv/LC_MESSAGES/kdevninja.mo share/locale/sv/LC_MESSAGES/kdevokteta.mo share/locale/sv/LC_MESSAGES/kdevopenwith.mo share/locale/sv/LC_MESSAGES/kdevoutlineview.mo share/locale/sv/LC_MESSAGES/kdevpatchreview.mo share/locale/sv/LC_MESSAGES/kdevperforce.mo share/locale/sv/LC_MESSAGES/kdevplatform.mo share/locale/sv/LC_MESSAGES/kdevproblemreporter.mo share/locale/sv/LC_MESSAGES/kdevprojectfilter.mo share/locale/sv/LC_MESSAGES/kdevprojectmanagerview.mo share/locale/sv/LC_MESSAGES/kdevqmakebuilder.mo share/locale/sv/LC_MESSAGES/kdevqmakemanager.mo share/locale/sv/LC_MESSAGES/kdevqmljs.mo share/locale/sv/LC_MESSAGES/kdevqthelp.mo share/locale/sv/LC_MESSAGES/kdevquickopen.mo share/locale/sv/LC_MESSAGES/kdevscratchpad.mo share/locale/sv/LC_MESSAGES/kdevsourceformatter.mo share/locale/sv/LC_MESSAGES/kdevstandardoutputview.mo share/locale/sv/LC_MESSAGES/kdevsubversion.mo share/locale/sv/LC_MESSAGES/kdevswitchtobuddy.mo share/locale/sv/LC_MESSAGES/kdevtestview.mo share/locale/sv/LC_MESSAGES/kdevvcsprojectintegration.mo share/locale/sv/LC_MESSAGES/kdevwelcomepage.mo share/locale/sv/LC_MESSAGES/plasma_applet_kdevelopsessions.mo share/locale/sv/LC_MESSAGES/plasma_runner_kdevelopsessions.mo share/locale/ta/LC_MESSAGES/kdevelop.mo share/locale/ta/LC_MESSAGES/kdevkonsole.mo share/locale/tg/LC_MESSAGES/kdevelop.mo share/locale/tg/LC_MESSAGES/kdevplatform.mo share/locale/th/LC_MESSAGES/kdevappwizard.mo share/locale/th/LC_MESSAGES/kdevcustommake.mo share/locale/th/LC_MESSAGES/kdevkonsole.mo share/locale/th/LC_MESSAGES/kdevstandardoutputview.mo share/locale/tr/LC_MESSAGES/kdevandroid.mo share/locale/tr/LC_MESSAGES/kdevappwizard.mo share/locale/tr/LC_MESSAGES/kdevastyle.mo share/locale/tr/LC_MESSAGES/kdevbazaar.mo share/locale/tr/LC_MESSAGES/kdevclang.mo share/locale/tr/LC_MESSAGES/kdevclangtidy.mo share/locale/tr/LC_MESSAGES/kdevclassbrowser.mo share/locale/tr/LC_MESSAGES/kdevclazy.mo share/locale/tr/LC_MESSAGES/kdevcmake.mo share/locale/tr/LC_MESSAGES/kdevcmakebuilder.mo share/locale/tr/LC_MESSAGES/kdevcodeutils.mo share/locale/tr/LC_MESSAGES/kdevcompileanalyzercommon.mo share/locale/tr/LC_MESSAGES/kdevcontextbrowser.mo share/locale/tr/LC_MESSAGES/kdevcppcheck.mo share/locale/tr/LC_MESSAGES/kdevcustombuildsystem.mo share/locale/tr/LC_MESSAGES/kdevcustomdefinesandincludes.mo share/locale/tr/LC_MESSAGES/kdevcustommake.mo share/locale/tr/LC_MESSAGES/kdevcustomscript.mo share/locale/tr/LC_MESSAGES/kdevdebuggercommon.mo share/locale/tr/LC_MESSAGES/kdevdocker.mo share/locale/tr/LC_MESSAGES/kdevdocumentswitcher.mo share/locale/tr/LC_MESSAGES/kdevdocumentview.mo share/locale/tr/LC_MESSAGES/kdevelop.mo share/locale/tr/LC_MESSAGES/kdevexecute.mo share/locale/tr/LC_MESSAGES/kdevexecuteplasmoid.mo share/locale/tr/LC_MESSAGES/kdevexecutescript.mo share/locale/tr/LC_MESSAGES/kdevexternalscript.mo share/locale/tr/LC_MESSAGES/kdevfilemanager.mo share/locale/tr/LC_MESSAGES/kdevfiletemplates.mo share/locale/tr/LC_MESSAGES/kdevflatpak.mo share/locale/tr/LC_MESSAGES/kdevgdb.mo share/locale/tr/LC_MESSAGES/kdevghprovider.mo share/locale/tr/LC_MESSAGES/kdevgit.mo share/locale/tr/LC_MESSAGES/kdevgrepview.mo share/locale/tr/LC_MESSAGES/kdevheaptrack.mo share/locale/tr/LC_MESSAGES/kdevkonsole.mo share/locale/tr/LC_MESSAGES/kdevlldb.mo share/locale/tr/LC_MESSAGES/kdevmakebuilder.mo share/locale/tr/LC_MESSAGES/kdevmanpage.mo share/locale/tr/LC_MESSAGES/kdevmesonmanager.mo share/locale/tr/LC_MESSAGES/kdevninja.mo share/locale/tr/LC_MESSAGES/kdevokteta.mo share/locale/tr/LC_MESSAGES/kdevopenwith.mo share/locale/tr/LC_MESSAGES/kdevoutlineview.mo share/locale/tr/LC_MESSAGES/kdevpatchreview.mo share/locale/tr/LC_MESSAGES/kdevperforce.mo share/locale/tr/LC_MESSAGES/kdevplatform.mo share/locale/tr/LC_MESSAGES/kdevproblemreporter.mo share/locale/tr/LC_MESSAGES/kdevprojectfilter.mo share/locale/tr/LC_MESSAGES/kdevprojectmanagerview.mo share/locale/tr/LC_MESSAGES/kdevqmakebuilder.mo share/locale/tr/LC_MESSAGES/kdevqmakemanager.mo share/locale/tr/LC_MESSAGES/kdevqmljs.mo share/locale/tr/LC_MESSAGES/kdevqthelp.mo share/locale/tr/LC_MESSAGES/kdevquickopen.mo share/locale/tr/LC_MESSAGES/kdevscratchpad.mo share/locale/tr/LC_MESSAGES/kdevsourceformatter.mo share/locale/tr/LC_MESSAGES/kdevstandardoutputview.mo share/locale/tr/LC_MESSAGES/kdevsubversion.mo share/locale/tr/LC_MESSAGES/kdevswitchtobuddy.mo share/locale/tr/LC_MESSAGES/kdevtestview.mo share/locale/tr/LC_MESSAGES/kdevvcsprojectintegration.mo share/locale/tr/LC_MESSAGES/kdevwelcomepage.mo share/locale/tr/LC_MESSAGES/plasma_applet_kdevelopsessions.mo share/locale/tr/LC_MESSAGES/plasma_runner_kdevelopsessions.mo share/locale/ug/LC_MESSAGES/kdevappwizard.mo share/locale/ug/LC_MESSAGES/kdevbazaar.mo share/locale/ug/LC_MESSAGES/kdevclassbrowser.mo share/locale/ug/LC_MESSAGES/kdevcmake.mo share/locale/ug/LC_MESSAGES/kdevcmakebuilder.mo share/locale/ug/LC_MESSAGES/kdevcodeutils.mo share/locale/ug/LC_MESSAGES/kdevcontextbrowser.mo share/locale/ug/LC_MESSAGES/kdevcustombuildsystem.mo share/locale/ug/LC_MESSAGES/kdevcustommake.mo share/locale/ug/LC_MESSAGES/kdevdebuggercommon.mo share/locale/ug/LC_MESSAGES/kdevdocumentswitcher.mo share/locale/ug/LC_MESSAGES/kdevdocumentview.mo share/locale/ug/LC_MESSAGES/kdevelop.mo share/locale/ug/LC_MESSAGES/kdevexecute.mo share/locale/ug/LC_MESSAGES/kdevexecuteplasmoid.mo share/locale/ug/LC_MESSAGES/kdevexecutescript.mo share/locale/ug/LC_MESSAGES/kdevexternalscript.mo share/locale/ug/LC_MESSAGES/kdevfilemanager.mo share/locale/ug/LC_MESSAGES/kdevfiletemplates.mo share/locale/ug/LC_MESSAGES/kdevgdb.mo share/locale/ug/LC_MESSAGES/kdevgit.mo share/locale/ug/LC_MESSAGES/kdevgrepview.mo share/locale/ug/LC_MESSAGES/kdevkonsole.mo share/locale/ug/LC_MESSAGES/kdevmakebuilder.mo share/locale/ug/LC_MESSAGES/kdevmanpage.mo share/locale/ug/LC_MESSAGES/kdevninja.mo share/locale/ug/LC_MESSAGES/kdevokteta.mo share/locale/ug/LC_MESSAGES/kdevopenwith.mo share/locale/ug/LC_MESSAGES/kdevpatchreview.mo share/locale/ug/LC_MESSAGES/kdevperforce.mo share/locale/ug/LC_MESSAGES/kdevplatform.mo share/locale/ug/LC_MESSAGES/kdevproblemreporter.mo share/locale/ug/LC_MESSAGES/kdevprojectmanagerview.mo share/locale/ug/LC_MESSAGES/kdevqmakebuilder.mo share/locale/ug/LC_MESSAGES/kdevqmakemanager.mo share/locale/ug/LC_MESSAGES/kdevqmljs.mo share/locale/ug/LC_MESSAGES/kdevqthelp.mo share/locale/ug/LC_MESSAGES/kdevquickopen.mo share/locale/ug/LC_MESSAGES/kdevstandardoutputview.mo share/locale/ug/LC_MESSAGES/kdevsubversion.mo share/locale/ug/LC_MESSAGES/kdevswitchtobuddy.mo share/locale/ug/LC_MESSAGES/kdevtestview.mo share/locale/ug/LC_MESSAGES/kdevvcsprojectintegration.mo share/locale/ug/LC_MESSAGES/plasma_applet_kdevelopsessions.mo share/locale/ug/LC_MESSAGES/plasma_runner_kdevelopsessions.mo share/locale/uk/LC_MESSAGES/kdevandroid.mo share/locale/uk/LC_MESSAGES/kdevappwizard.mo share/locale/uk/LC_MESSAGES/kdevastyle.mo share/locale/uk/LC_MESSAGES/kdevbazaar.mo share/locale/uk/LC_MESSAGES/kdevclang.mo share/locale/uk/LC_MESSAGES/kdevclangtidy.mo share/locale/uk/LC_MESSAGES/kdevclassbrowser.mo share/locale/uk/LC_MESSAGES/kdevclazy.mo share/locale/uk/LC_MESSAGES/kdevcmake.mo share/locale/uk/LC_MESSAGES/kdevcmakebuilder.mo share/locale/uk/LC_MESSAGES/kdevcodeutils.mo share/locale/uk/LC_MESSAGES/kdevcompileanalyzercommon.mo share/locale/uk/LC_MESSAGES/kdevcontextbrowser.mo share/locale/uk/LC_MESSAGES/kdevcppcheck.mo share/locale/uk/LC_MESSAGES/kdevcustombuildsystem.mo share/locale/uk/LC_MESSAGES/kdevcustomdefinesandincludes.mo share/locale/uk/LC_MESSAGES/kdevcustommake.mo share/locale/uk/LC_MESSAGES/kdevcustomscript.mo share/locale/uk/LC_MESSAGES/kdevdebuggercommon.mo share/locale/uk/LC_MESSAGES/kdevdocker.mo share/locale/uk/LC_MESSAGES/kdevdocumentswitcher.mo share/locale/uk/LC_MESSAGES/kdevdocumentview.mo share/locale/uk/LC_MESSAGES/kdevelop.mo share/locale/uk/LC_MESSAGES/kdevexecute.mo share/locale/uk/LC_MESSAGES/kdevexecuteplasmoid.mo share/locale/uk/LC_MESSAGES/kdevexecutescript.mo share/locale/uk/LC_MESSAGES/kdevexternalscript.mo share/locale/uk/LC_MESSAGES/kdevfilemanager.mo share/locale/uk/LC_MESSAGES/kdevfiletemplates.mo share/locale/uk/LC_MESSAGES/kdevflatpak.mo share/locale/uk/LC_MESSAGES/kdevgdb.mo share/locale/uk/LC_MESSAGES/kdevghprovider.mo share/locale/uk/LC_MESSAGES/kdevgit.mo share/locale/uk/LC_MESSAGES/kdevgrepview.mo share/locale/uk/LC_MESSAGES/kdevheaptrack.mo share/locale/uk/LC_MESSAGES/kdevkonsole.mo share/locale/uk/LC_MESSAGES/kdevlldb.mo share/locale/uk/LC_MESSAGES/kdevmakebuilder.mo share/locale/uk/LC_MESSAGES/kdevmanpage.mo share/locale/uk/LC_MESSAGES/kdevmesonmanager.mo share/locale/uk/LC_MESSAGES/kdevninja.mo share/locale/uk/LC_MESSAGES/kdevokteta.mo share/locale/uk/LC_MESSAGES/kdevopenwith.mo share/locale/uk/LC_MESSAGES/kdevoutlineview.mo share/locale/uk/LC_MESSAGES/kdevpatchreview.mo share/locale/uk/LC_MESSAGES/kdevperforce.mo share/locale/uk/LC_MESSAGES/kdevplatform.mo share/locale/uk/LC_MESSAGES/kdevproblemreporter.mo share/locale/uk/LC_MESSAGES/kdevprojectfilter.mo share/locale/uk/LC_MESSAGES/kdevprojectmanagerview.mo share/locale/uk/LC_MESSAGES/kdevqmakebuilder.mo share/locale/uk/LC_MESSAGES/kdevqmakemanager.mo share/locale/uk/LC_MESSAGES/kdevqmljs.mo share/locale/uk/LC_MESSAGES/kdevqthelp.mo share/locale/uk/LC_MESSAGES/kdevquickopen.mo share/locale/uk/LC_MESSAGES/kdevscratchpad.mo share/locale/uk/LC_MESSAGES/kdevsourceformatter.mo share/locale/uk/LC_MESSAGES/kdevstandardoutputview.mo share/locale/uk/LC_MESSAGES/kdevsubversion.mo share/locale/uk/LC_MESSAGES/kdevswitchtobuddy.mo share/locale/uk/LC_MESSAGES/kdevtestview.mo share/locale/uk/LC_MESSAGES/kdevvcsprojectintegration.mo share/locale/uk/LC_MESSAGES/kdevwelcomepage.mo share/locale/uk/LC_MESSAGES/plasma_applet_kdevelopsessions.mo share/locale/uk/LC_MESSAGES/plasma_runner_kdevelopsessions.mo share/locale/vi/LC_MESSAGES/plasma_applet_kdevelopsessions.mo share/locale/vi/LC_MESSAGES/plasma_runner_kdevelopsessions.mo share/locale/xh/LC_MESSAGES/kdevelop.mo share/locale/zh_CN/LC_MESSAGES/kdevandroid.mo share/locale/zh_CN/LC_MESSAGES/kdevappwizard.mo share/locale/zh_CN/LC_MESSAGES/kdevastyle.mo share/locale/zh_CN/LC_MESSAGES/kdevbazaar.mo share/locale/zh_CN/LC_MESSAGES/kdevclang.mo share/locale/zh_CN/LC_MESSAGES/kdevclangtidy.mo share/locale/zh_CN/LC_MESSAGES/kdevclassbrowser.mo share/locale/zh_CN/LC_MESSAGES/kdevclazy.mo share/locale/zh_CN/LC_MESSAGES/kdevcmake.mo share/locale/zh_CN/LC_MESSAGES/kdevcmakebuilder.mo share/locale/zh_CN/LC_MESSAGES/kdevcodeutils.mo share/locale/zh_CN/LC_MESSAGES/kdevcompileanalyzercommon.mo share/locale/zh_CN/LC_MESSAGES/kdevcontextbrowser.mo share/locale/zh_CN/LC_MESSAGES/kdevcppcheck.mo share/locale/zh_CN/LC_MESSAGES/kdevcustombuildsystem.mo share/locale/zh_CN/LC_MESSAGES/kdevcustomdefinesandincludes.mo share/locale/zh_CN/LC_MESSAGES/kdevcustommake.mo share/locale/zh_CN/LC_MESSAGES/kdevcustomscript.mo share/locale/zh_CN/LC_MESSAGES/kdevdebuggercommon.mo share/locale/zh_CN/LC_MESSAGES/kdevdocker.mo share/locale/zh_CN/LC_MESSAGES/kdevdocumentswitcher.mo share/locale/zh_CN/LC_MESSAGES/kdevdocumentview.mo share/locale/zh_CN/LC_MESSAGES/kdevelop.mo share/locale/zh_CN/LC_MESSAGES/kdevexecute.mo share/locale/zh_CN/LC_MESSAGES/kdevexecuteplasmoid.mo share/locale/zh_CN/LC_MESSAGES/kdevexecutescript.mo share/locale/zh_CN/LC_MESSAGES/kdevexternalscript.mo share/locale/zh_CN/LC_MESSAGES/kdevfilemanager.mo share/locale/zh_CN/LC_MESSAGES/kdevfiletemplates.mo share/locale/zh_CN/LC_MESSAGES/kdevflatpak.mo share/locale/zh_CN/LC_MESSAGES/kdevgdb.mo share/locale/zh_CN/LC_MESSAGES/kdevghprovider.mo share/locale/zh_CN/LC_MESSAGES/kdevgit.mo share/locale/zh_CN/LC_MESSAGES/kdevgrepview.mo share/locale/zh_CN/LC_MESSAGES/kdevheaptrack.mo share/locale/zh_CN/LC_MESSAGES/kdevkonsole.mo share/locale/zh_CN/LC_MESSAGES/kdevlldb.mo share/locale/zh_CN/LC_MESSAGES/kdevmakebuilder.mo share/locale/zh_CN/LC_MESSAGES/kdevmanpage.mo share/locale/zh_CN/LC_MESSAGES/kdevmesonmanager.mo share/locale/zh_CN/LC_MESSAGES/kdevninja.mo share/locale/zh_CN/LC_MESSAGES/kdevokteta.mo share/locale/zh_CN/LC_MESSAGES/kdevopenwith.mo share/locale/zh_CN/LC_MESSAGES/kdevoutlineview.mo share/locale/zh_CN/LC_MESSAGES/kdevpatchreview.mo share/locale/zh_CN/LC_MESSAGES/kdevperforce.mo share/locale/zh_CN/LC_MESSAGES/kdevplatform.mo share/locale/zh_CN/LC_MESSAGES/kdevproblemreporter.mo share/locale/zh_CN/LC_MESSAGES/kdevprojectfilter.mo share/locale/zh_CN/LC_MESSAGES/kdevprojectmanagerview.mo share/locale/zh_CN/LC_MESSAGES/kdevqmakebuilder.mo share/locale/zh_CN/LC_MESSAGES/kdevqmakemanager.mo share/locale/zh_CN/LC_MESSAGES/kdevqmljs.mo share/locale/zh_CN/LC_MESSAGES/kdevqthelp.mo share/locale/zh_CN/LC_MESSAGES/kdevquickopen.mo share/locale/zh_CN/LC_MESSAGES/kdevscratchpad.mo share/locale/zh_CN/LC_MESSAGES/kdevsourceformatter.mo share/locale/zh_CN/LC_MESSAGES/kdevstandardoutputview.mo share/locale/zh_CN/LC_MESSAGES/kdevsubversion.mo share/locale/zh_CN/LC_MESSAGES/kdevswitchtobuddy.mo share/locale/zh_CN/LC_MESSAGES/kdevtestview.mo share/locale/zh_CN/LC_MESSAGES/kdevvcsprojectintegration.mo share/locale/zh_CN/LC_MESSAGES/kdevwelcomepage.mo share/locale/zh_CN/LC_MESSAGES/plasma_applet_kdevelopsessions.mo share/locale/zh_CN/LC_MESSAGES/plasma_runner_kdevelopsessions.mo share/locale/zh_TW/LC_MESSAGES/kdevandroid.mo share/locale/zh_TW/LC_MESSAGES/kdevappwizard.mo share/locale/zh_TW/LC_MESSAGES/kdevastyle.mo share/locale/zh_TW/LC_MESSAGES/kdevbazaar.mo share/locale/zh_TW/LC_MESSAGES/kdevclang.mo share/locale/zh_TW/LC_MESSAGES/kdevclangtidy.mo share/locale/zh_TW/LC_MESSAGES/kdevclassbrowser.mo share/locale/zh_TW/LC_MESSAGES/kdevclazy.mo share/locale/zh_TW/LC_MESSAGES/kdevcmake.mo share/locale/zh_TW/LC_MESSAGES/kdevcmakebuilder.mo share/locale/zh_TW/LC_MESSAGES/kdevcodeutils.mo share/locale/zh_TW/LC_MESSAGES/kdevcompileanalyzercommon.mo share/locale/zh_TW/LC_MESSAGES/kdevcontextbrowser.mo share/locale/zh_TW/LC_MESSAGES/kdevcppcheck.mo share/locale/zh_TW/LC_MESSAGES/kdevcustombuildsystem.mo share/locale/zh_TW/LC_MESSAGES/kdevcustomdefinesandincludes.mo share/locale/zh_TW/LC_MESSAGES/kdevcustommake.mo share/locale/zh_TW/LC_MESSAGES/kdevcustomscript.mo share/locale/zh_TW/LC_MESSAGES/kdevdebuggercommon.mo share/locale/zh_TW/LC_MESSAGES/kdevdocker.mo share/locale/zh_TW/LC_MESSAGES/kdevdocumentswitcher.mo share/locale/zh_TW/LC_MESSAGES/kdevdocumentview.mo share/locale/zh_TW/LC_MESSAGES/kdevelop.mo share/locale/zh_TW/LC_MESSAGES/kdevexecute.mo share/locale/zh_TW/LC_MESSAGES/kdevexecuteplasmoid.mo share/locale/zh_TW/LC_MESSAGES/kdevexecutescript.mo share/locale/zh_TW/LC_MESSAGES/kdevexternalscript.mo share/locale/zh_TW/LC_MESSAGES/kdevfilemanager.mo share/locale/zh_TW/LC_MESSAGES/kdevfiletemplates.mo share/locale/zh_TW/LC_MESSAGES/kdevflatpak.mo share/locale/zh_TW/LC_MESSAGES/kdevgdb.mo share/locale/zh_TW/LC_MESSAGES/kdevghprovider.mo share/locale/zh_TW/LC_MESSAGES/kdevgit.mo share/locale/zh_TW/LC_MESSAGES/kdevgrepview.mo share/locale/zh_TW/LC_MESSAGES/kdevheaptrack.mo share/locale/zh_TW/LC_MESSAGES/kdevkonsole.mo share/locale/zh_TW/LC_MESSAGES/kdevlldb.mo share/locale/zh_TW/LC_MESSAGES/kdevmakebuilder.mo share/locale/zh_TW/LC_MESSAGES/kdevmanpage.mo share/locale/zh_TW/LC_MESSAGES/kdevmesonmanager.mo share/locale/zh_TW/LC_MESSAGES/kdevninja.mo share/locale/zh_TW/LC_MESSAGES/kdevokteta.mo share/locale/zh_TW/LC_MESSAGES/kdevopenwith.mo share/locale/zh_TW/LC_MESSAGES/kdevoutlineview.mo share/locale/zh_TW/LC_MESSAGES/kdevpatchreview.mo share/locale/zh_TW/LC_MESSAGES/kdevperforce.mo share/locale/zh_TW/LC_MESSAGES/kdevplatform.mo share/locale/zh_TW/LC_MESSAGES/kdevproblemreporter.mo share/locale/zh_TW/LC_MESSAGES/kdevprojectfilter.mo share/locale/zh_TW/LC_MESSAGES/kdevprojectmanagerview.mo share/locale/zh_TW/LC_MESSAGES/kdevqmakebuilder.mo share/locale/zh_TW/LC_MESSAGES/kdevqmakemanager.mo share/locale/zh_TW/LC_MESSAGES/kdevqmljs.mo share/locale/zh_TW/LC_MESSAGES/kdevqthelp.mo share/locale/zh_TW/LC_MESSAGES/kdevquickopen.mo share/locale/zh_TW/LC_MESSAGES/kdevscratchpad.mo share/locale/zh_TW/LC_MESSAGES/kdevsourceformatter.mo share/locale/zh_TW/LC_MESSAGES/kdevstandardoutputview.mo share/locale/zh_TW/LC_MESSAGES/kdevsubversion.mo share/locale/zh_TW/LC_MESSAGES/kdevswitchtobuddy.mo share/locale/zh_TW/LC_MESSAGES/kdevtestview.mo share/locale/zh_TW/LC_MESSAGES/kdevvcsprojectintegration.mo share/locale/zh_TW/LC_MESSAGES/kdevwelcomepage.mo share/locale/zh_TW/LC_MESSAGES/plasma_applet_kdevelopsessions.mo share/locale/zh_TW/LC_MESSAGES/plasma_runner_kdevelopsessions.mo share/metainfo/org.kde.kdevelop.appdata.xml share/metainfo/org.kde.kdevelopsessions.appdata.xml share/mime/packages/kdevclang.xml share/mime/packages/kdevelop.xml share/mime/packages/kdevgit.xml share/plasma/plasmoids/org.kde.kdevelopsessions/contents/ui/main.qml share/plasma/plasmoids/org.kde.kdevelopsessions/metadata.json share/qlogging-categories6/kdevelop.categories share/qlogging-categories6/kdevplatform.categories diff --git a/devel/kio-extras/Makefile b/devel/kio-extras/Makefile index 34b8d44094be..243df2ed068b 100644 --- a/devel/kio-extras/Makefile +++ b/devel/kio-extras/Makefile @@ -1,71 +1,70 @@ PORTNAME= kio-extras DISTVERSION= ${KDE_APPLICATIONS_VERSION} -PORTREVISION= 2 CATEGORIES= devel kde kde-applications MAINTAINER= kde@FreeBSD.org COMMENT= Plasma6 library to increase the functionality of KIO WWW= https://projects.kde.org/projects/kde/workspace/kio-extras LIB_DEPENDS= libtag.so:audio/taglib \ libImath.so:math/Imath \ libkdsoap-qt6.so:www/kdsoap \ libKDSoapWSDiscoveryClient.so:www/kdsoap-ws-discovery-client\ libQCoro6Core.so:devel/qcoro USES= cmake compiler:c++11-lib gettext gperf kde:6 pkgconfig qt:6 \ shared-mime-info shebangfix tar:xz xorg USE_KDE= activities activities-stats archive auth bookmarks codecs \ completion config configwidgets coreaddons crash dbusaddons \ dnssd doctools guiaddons i18n iconthemes itemmodels itemviews \ jobwidgets kcmutils kio notifications parts phonon pty service \ solid sonnet syntaxhighlighting textwidgets unitconversion \ widgetsaddons windowsystem xmlgui \ ecm:build USE_QT= base declarative USE_XORG= x11 xcursor SHEBANG_FILES= info/kde-info2html # CVE-2018-19120 CMAKE_ON= CMAKE_DISABLE_FIND_PACKAGE_Qt6WebEngineWidget OPTIONS_DEFINE= SAMBA AFC MTP EXIV OPENEXR SLP SSH TAGLIB DOCS OPTIONS_DEFAULT= SAMBA AFC MTP EXIV OPENEXR SLP SSH TAGLIB OPTIONS_SUB= yes SAMBA_DESC= Needed to build the SMB kioslave SAMBA_CMAKE_BOOL_OFF= CMAKE_DISABLE_FIND_PACKAGE_Samba SAMBA_USES= samba:lib AFC_DESC= Needed to build AFC (Apple File Conduit) kioslave AFC_LIB_DEPENDS= libimobiledevice-1.0.so:comms/libimobiledevice \ libplist-2.0.so:devel/libplist AFC_CMAKE_BOOL_OFF= CMAKE_DISABLE_FIND_PACKAGE_IMobileDevice \ CMAKE_DISABLE_FIND_PACKAGE_PList MTP_DESC= Needed to build the MTP kioslave MTP_CMAKE_BOOL_OFF= CMAKE_DISABLE_FIND_PACKAGE_Mtp MTP_LIB_DEPENDS= libmtp.so:multimedia/libmtp EXIV_DESC= Provides support for automatic rotation of JPEGs in the thumbnail kioslave EXIV_CMAKE_BOOL_OFF= CMAKE_DISABLE_FIND_PACKAGE_KF6kExiv2 EXIV_USE= KDE=libkexiv2 OPENEXR_DESC= Provides support for OpenEXR formatted images in the thumbnail kioslave OPENEXR_CMAKE_BOOL_OFF= CMAKE_DISABLE_FIND_PACKAGE_OpenEXR OPENEXR_LIB_DEPENDS= libOpenEXR.so:graphics/openexr SLP_DESC= Provides SLP support in the network:/ kioslave SLP_CMAKE_BOOL_OFF= CMAKE_DISABLE_FIND_PACKAGE_SLP SLP_LIB_DEPENDS= libslp.so:net/openslp SSH_DESC= Needed to build the SFTP kioslave SSH_CMAKE_BOOL_OFF= CMAKE_DISABLE_FIND_PACKAGE_LibSSH SSH_LIB_DEPENDS= libssh.so:security/libssh # Our taglib is too old TAGLIB_DESC= Needed to build the audio thumbnail kioslave TAGLIB_CMAKE_BOOL_OFF= CMAKE_DISABLE_FIND_PACKAGE_Taglib TAGLIB_LIB_DEPENDS= libtag.so:audio/taglib .include diff --git a/devel/kio-extras/distinfo b/devel/kio-extras/distinfo index 844a654a6b3d..9e3aa7fb4ddc 100644 --- a/devel/kio-extras/distinfo +++ b/devel/kio-extras/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1751381309 -SHA256 (KDE/release-service/25.04.3/kio-extras-25.04.3.tar.xz) = f0b630639e4766ce85b9f8444b5b877fc3b40e09ec2fceb0d961eff4914d3fc8 -SIZE (KDE/release-service/25.04.3/kio-extras-25.04.3.tar.xz) = 3527392 +TIMESTAMP = 1754646219 +SHA256 (KDE/release-service/25.08.0/kio-extras-25.08.0.tar.xz) = 0a5dc865c5810b7a0cd280d34d4cbf8860433b78a657417b245cc71e33652405 +SIZE (KDE/release-service/25.08.0/kio-extras-25.08.0.tar.xz) = 3529132 diff --git a/devel/kirigami-gallery/distinfo b/devel/kirigami-gallery/distinfo index 1be84067442f..b9909fc0ca43 100644 --- a/devel/kirigami-gallery/distinfo +++ b/devel/kirigami-gallery/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1751381312 -SHA256 (KDE/release-service/25.04.3/kirigami-gallery-25.04.3.tar.xz) = 8a94609e1bcf14f4228e7ed8d00945011a8f3544f13e8ba99f35a293327ee06e -SIZE (KDE/release-service/25.04.3/kirigami-gallery-25.04.3.tar.xz) = 376636 +TIMESTAMP = 1754646221 +SHA256 (KDE/release-service/25.08.0/kirigami-gallery-25.08.0.tar.xz) = ba89fb934ded45afbd2ed7b4a5b7aff2d2c80eca931168417d6e04951a83c1aa +SIZE (KDE/release-service/25.08.0/kirigami-gallery-25.08.0.tar.xz) = 376388 diff --git a/devel/kopeninghours/distinfo b/devel/kopeninghours/distinfo index 6ab0c8b55625..82a4a701c900 100644 --- a/devel/kopeninghours/distinfo +++ b/devel/kopeninghours/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1751381314 -SHA256 (KDE/release-service/25.04.3/kopeninghours-25.04.3.tar.xz) = 84b9e783bf0fbdeb1416e7e300894c3268b01220b3c15be5592fb40097b8bcd2 -SIZE (KDE/release-service/25.04.3/kopeninghours-25.04.3.tar.xz) = 75912 +TIMESTAMP = 1754646224 +SHA256 (KDE/release-service/25.08.0/kopeninghours-25.08.0.tar.xz) = 94bae44259d7566b2a7c26411f3200fc40298bb1fc65d48060aa6a210afc4d50 +SIZE (KDE/release-service/25.08.0/kopeninghours-25.08.0.tar.xz) = 75952 diff --git a/devel/kpublictransport/Makefile b/devel/kpublictransport/Makefile index 9945e5e87284..3a4a20e94626 100644 --- a/devel/kpublictransport/Makefile +++ b/devel/kpublictransport/Makefile @@ -1,21 +1,22 @@ PORTNAME= kpublictransport DISTVERSION= ${KDE_APPLICATIONS_VERSION} CATEGORIES= devel kde kde-applications MAINTAINER= kde@FreeBSD.org COMMENT= Access realtime public transport data LIB_DEPENDS= libprotobuf.so:devel/protobuf USES= cmake compiler:c++11-lang gettext kde:6 qt:6 tar:xz -USE_KDE= ecm:build +USE_KDE= kirigami-addons ecm:build USE_QT= base OPTIONS_DEFINE= DOCS +CMAKE_ON= CMAKE_DISABLE_FIND_PACKAGE_KF6NetworkManagerQt CXXFLAGS= -DPROTOBUF_ENABLE_DEBUG_LOGGING_MAY_LEAK_PII=0 # Override shared library version #KDE_APPLICATIONS_SHLIB_VER= ${KDE_APPLICATIONS_VERSION} .include diff --git a/devel/kpublictransport/distinfo b/devel/kpublictransport/distinfo index ea1f1049f3e2..c6f2df8935a2 100644 --- a/devel/kpublictransport/distinfo +++ b/devel/kpublictransport/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1751381317 -SHA256 (KDE/release-service/25.04.3/kpublictransport-25.04.3.tar.xz) = 637bac5ff238b92d31c4a677e92a7319981611795756348552f00dd528425e5e -SIZE (KDE/release-service/25.04.3/kpublictransport-25.04.3.tar.xz) = 834216 +TIMESTAMP = 1754646226 +SHA256 (KDE/release-service/25.08.0/kpublictransport-25.08.0.tar.xz) = fd0190081f4be172711ec1e0e5702805bcf9c00c73a08a42ba3790167cabab0a +SIZE (KDE/release-service/25.08.0/kpublictransport-25.08.0.tar.xz) = 878080 diff --git a/devel/kpublictransport/pkg-plist b/devel/kpublictransport/pkg-plist index ebe1639bff4c..73c02cea8359 100644 --- a/devel/kpublictransport/pkg-plist +++ b/devel/kpublictransport/pkg-plist @@ -1,141 +1,156 @@ include/KPublicTransport/KPublicTransport/AbstractQueryModel include/KPublicTransport/KPublicTransport/Attribution include/KPublicTransport/KPublicTransport/Backend include/KPublicTransport/KPublicTransport/BackendModel +include/KPublicTransport/KPublicTransport/ClassUtil include/KPublicTransport/KPublicTransport/CoverageArea +include/KPublicTransport/KPublicTransport/CoverageCountryModel include/KPublicTransport/KPublicTransport/Datatypes include/KPublicTransport/KPublicTransport/Disruption include/KPublicTransport/KPublicTransport/Equipment include/KPublicTransport/KPublicTransport/Feature include/KPublicTransport/KPublicTransport/IndividualTransport include/KPublicTransport/KPublicTransport/Journey include/KPublicTransport/KPublicTransport/JourneyQueryModel include/KPublicTransport/KPublicTransport/JourneyReply include/KPublicTransport/KPublicTransport/JourneyRequest include/KPublicTransport/KPublicTransport/Line include/KPublicTransport/KPublicTransport/Load include/KPublicTransport/KPublicTransport/Location include/KPublicTransport/KPublicTransport/LocationHistoryModel include/KPublicTransport/KPublicTransport/LocationQueryModel include/KPublicTransport/KPublicTransport/LocationReply include/KPublicTransport/KPublicTransport/LocationRequest include/KPublicTransport/KPublicTransport/Manager include/KPublicTransport/KPublicTransport/OnboardStatus include/KPublicTransport/KPublicTransport/Path include/KPublicTransport/KPublicTransport/PathModel include/KPublicTransport/KPublicTransport/Platform include/KPublicTransport/KPublicTransport/PlatformLayout include/KPublicTransport/KPublicTransport/RentalVehicle include/KPublicTransport/KPublicTransport/Reply include/KPublicTransport/KPublicTransport/Stopover include/KPublicTransport/KPublicTransport/StopoverQueryModel include/KPublicTransport/KPublicTransport/StopoverReply include/KPublicTransport/KPublicTransport/StopoverRequest include/KPublicTransport/KPublicTransport/TripReply include/KPublicTransport/KPublicTransport/TripRequest +include/KPublicTransport/KPublicTransport/UpdateResult include/KPublicTransport/KPublicTransport/Vehicle include/KPublicTransport/KPublicTransport/VehicleLayoutQueryModel include/KPublicTransport/KPublicTransport/VehicleLayoutReply include/KPublicTransport/KPublicTransport/VehicleLayoutRequest include/KPublicTransport/kpublictransport/abstractquerymodel.h include/KPublicTransport/kpublictransport/attribution.h include/KPublicTransport/kpublictransport/backend.h include/KPublicTransport/kpublictransport/backendmodel.h +include/KPublicTransport/kpublictransport/classutil.h include/KPublicTransport/kpublictransport/coveragearea.h +include/KPublicTransport/kpublictransport/coveragecountrymodel.h include/KPublicTransport/kpublictransport/datatypes.h include/KPublicTransport/kpublictransport/disruption.h include/KPublicTransport/kpublictransport/equipment.h include/KPublicTransport/kpublictransport/feature.h include/KPublicTransport/kpublictransport/individualtransport.h include/KPublicTransport/kpublictransport/journey.h include/KPublicTransport/kpublictransport/journeyquerymodel.h include/KPublicTransport/kpublictransport/journeyreply.h include/KPublicTransport/kpublictransport/journeyrequest.h include/KPublicTransport/kpublictransport/kpublictransport_export.h include/KPublicTransport/kpublictransport/kpublictransportonboard_export.h include/KPublicTransport/kpublictransport/line.h include/KPublicTransport/kpublictransport/load.h include/KPublicTransport/kpublictransport/location.h include/KPublicTransport/kpublictransport/locationhistorymodel.h include/KPublicTransport/kpublictransport/locationquerymodel.h include/KPublicTransport/kpublictransport/locationreply.h include/KPublicTransport/kpublictransport/locationrequest.h include/KPublicTransport/kpublictransport/manager.h include/KPublicTransport/kpublictransport/onboardstatus.h include/KPublicTransport/kpublictransport/path.h include/KPublicTransport/kpublictransport/pathmodel.h include/KPublicTransport/kpublictransport/platform.h include/KPublicTransport/kpublictransport/platformlayout.h include/KPublicTransport/kpublictransport/rentalvehicle.h include/KPublicTransport/kpublictransport/reply.h include/KPublicTransport/kpublictransport/stopover.h include/KPublicTransport/kpublictransport/stopoverquerymodel.h include/KPublicTransport/kpublictransport/stopoverreply.h include/KPublicTransport/kpublictransport/stopoverrequest.h include/KPublicTransport/kpublictransport/tripreply.h include/KPublicTransport/kpublictransport/triprequest.h +include/KPublicTransport/kpublictransport/updateresult.h include/KPublicTransport/kpublictransport/vehicle.h include/KPublicTransport/kpublictransport/vehiclelayoutquerymodel.h include/KPublicTransport/kpublictransport/vehiclelayoutreply.h include/KPublicTransport/kpublictransport/vehiclelayoutrequest.h include/KPublicTransport/kpublictransport_version.h lib/cmake/KPublicTransport/KPublicTransportConfig.cmake lib/cmake/KPublicTransport/KPublicTransportConfigVersion.cmake lib/cmake/KPublicTransport/KPublicTransportTargets-%%CMAKE_BUILD_TYPE%%.cmake lib/cmake/KPublicTransport/KPublicTransportTargets.cmake lib/libKPublicTransport.so lib/libKPublicTransport.so.1 lib/libKPublicTransport.so.%%KDE_APPLICATIONS_VERSION%% lib/libKPublicTransportOnboard.so lib/libKPublicTransportOnboard.so.1 lib/libKPublicTransportOnboard.so.%%KDE_APPLICATIONS_VERSION%% %%QT_QMLDIR%%/org/kde/kpublictransport/kde-qmlmodule.version %%QT_QMLDIR%%/org/kde/kpublictransport/kpublictransportqmlplugin.qmltypes %%QT_QMLDIR%%/org/kde/kpublictransport/libkpublictransportqmlplugin.so %%QT_QMLDIR%%/org/kde/kpublictransport/onboard/kde-qmlmodule.version %%QT_QMLDIR%%/org/kde/kpublictransport/onboard/kpublictransportonboardqmlplugin.qmltypes %%QT_QMLDIR%%/org/kde/kpublictransport/onboard/libkpublictransportonboardqmlplugin.so %%QT_QMLDIR%%/org/kde/kpublictransport/onboard/qmldir %%QT_QMLDIR%%/org/kde/kpublictransport/qmldir +%%QT_QMLDIR%%/org/kde/kpublictransport/ui/BackendPage.qml +%%QT_QMLDIR%%/org/kde/kpublictransport/ui/ExpectedTimeLabel.qml +%%QT_QMLDIR%%/org/kde/kpublictransport/ui/FeatureDelegate.qml %%QT_QMLDIR%%/org/kde/kpublictransport/ui/FeatureIcon.qml %%QT_QMLDIR%%/org/kde/kpublictransport/ui/JourneyHorizontalBar.qml +%%QT_QMLDIR%%/org/kde/kpublictransport/ui/OccupancyDelegate.qml %%QT_QMLDIR%%/org/kde/kpublictransport/ui/OccupancyIndicator.qml +%%QT_QMLDIR%%/org/kde/kpublictransport/ui/StopPickerPage.qml +%%QT_QMLDIR%%/org/kde/kpublictransport/ui/StopoverInformationView.qml %%QT_QMLDIR%%/org/kde/kpublictransport/ui/TransportIcon.qml %%QT_QMLDIR%%/org/kde/kpublictransport/ui/TransportNameControl.qml +%%QT_QMLDIR%%/org/kde/kpublictransport/ui/VehicleLayoutView.qml +%%QT_QMLDIR%%/org/kde/kpublictransport/ui/VehicleSectionDelegate.qml %%QT_QMLDIR%%/org/kde/kpublictransport/ui/VehicleSectionItem.qml %%QT_QMLDIR%%/org/kde/kpublictransport/ui/kde-qmlmodule.version %%QT_QMLDIR%%/org/kde/kpublictransport/ui/kpublictransportquickplugin.qmltypes %%QT_QMLDIR%%/org/kde/kpublictransport/ui/libkpublictransportquickplugin.so +%%QT_QMLDIR%%/org/kde/kpublictransport/ui/private/CountryComboBox.qml %%QT_QMLDIR%%/org/kde/kpublictransport/ui/qmldir share/locale/ca/LC_MESSAGES/kpublictransport.mo share/locale/ca@valencia/LC_MESSAGES/kpublictransport.mo share/locale/cs/LC_MESSAGES/kpublictransport.mo share/locale/de/LC_MESSAGES/kpublictransport.mo share/locale/en_GB/LC_MESSAGES/kpublictransport.mo share/locale/eo/LC_MESSAGES/kpublictransport.mo share/locale/es/LC_MESSAGES/kpublictransport.mo share/locale/eu/LC_MESSAGES/kpublictransport.mo share/locale/fi/LC_MESSAGES/kpublictransport.mo share/locale/fr/LC_MESSAGES/kpublictransport.mo share/locale/gl/LC_MESSAGES/kpublictransport.mo share/locale/he/LC_MESSAGES/kpublictransport.mo share/locale/hi/LC_MESSAGES/kpublictransport.mo share/locale/hu/LC_MESSAGES/kpublictransport.mo share/locale/ia/LC_MESSAGES/kpublictransport.mo share/locale/it/LC_MESSAGES/kpublictransport.mo share/locale/ka/LC_MESSAGES/kpublictransport.mo share/locale/ko/LC_MESSAGES/kpublictransport.mo share/locale/lv/LC_MESSAGES/kpublictransport.mo share/locale/nl/LC_MESSAGES/kpublictransport.mo share/locale/pl/LC_MESSAGES/kpublictransport.mo share/locale/ru/LC_MESSAGES/kpublictransport.mo share/locale/sa/LC_MESSAGES/kpublictransport.mo share/locale/sk/LC_MESSAGES/kpublictransport.mo share/locale/sl/LC_MESSAGES/kpublictransport.mo share/locale/sv/LC_MESSAGES/kpublictransport.mo share/locale/tr/LC_MESSAGES/kpublictransport.mo share/locale/uk/LC_MESSAGES/kpublictransport.mo share/locale/zh_CN/LC_MESSAGES/kpublictransport.mo share/locale/zh_TW/LC_MESSAGES/kpublictransport.mo share/qlogging-categories6/org_kde_kpublictransport.categories share/qlogging-categories6/org_kde_kpublictransport_onboard.categories diff --git a/devel/kunifiedpush/distinfo b/devel/kunifiedpush/distinfo index 55e5102545f9..10b78850c4ee 100644 --- a/devel/kunifiedpush/distinfo +++ b/devel/kunifiedpush/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1753555094 -SHA256 (KDE/release-service/25.04.3/kunifiedpush-25.04.3.tar.xz) = a16ffe4117b14baa02f3b8ae7de9e509a17359c1b67dcd851aef4f3c3661a1df -SIZE (KDE/release-service/25.04.3/kunifiedpush-25.04.3.tar.xz) = 56744 +TIMESTAMP = 1754646229 +SHA256 (KDE/release-service/25.08.0/kunifiedpush-25.08.0.tar.xz) = 846db6ffc7d93f6afea7ce0d5a9f10b52792157ceb593856542279f4197f3518 +SIZE (KDE/release-service/25.08.0/kunifiedpush-25.08.0.tar.xz) = 83172 diff --git a/devel/kunifiedpush/pkg-plist b/devel/kunifiedpush/pkg-plist index 789b84f66ab6..8173959cfbc2 100644 --- a/devel/kunifiedpush/pkg-plist +++ b/devel/kunifiedpush/pkg-plist @@ -1,56 +1,59 @@ bin/kunifiedpush-distributor etc/xdg/KDE/kunifiedpush-distributor.conf etc/xdg/autostart/org.kde.kunifiedpush-distributor.desktop include/KUnifiedPush/KUnifiedPush/Connector include/KUnifiedPush/kunifiedpush/connector.h include/KUnifiedPush/kunifiedpush/kunifiedpush_export.h include/KUnifiedPush/kunifiedpush_version.h lib/cmake/KUnifiedPush/KUnifiedPushConfig.cmake lib/cmake/KUnifiedPush/KUnifiedPushConfigVersion.cmake lib/cmake/KUnifiedPush/KUnifiedPushTargets-%%CMAKE_BUILD_TYPE%%.cmake lib/cmake/KUnifiedPush/KUnifiedPushTargets.cmake lib/libKUnifiedPush.so lib/libKUnifiedPush.so.1 lib/libKUnifiedPush.so.%%KDE_APPLICATIONS_VERSION%% %%QT_PLUGINDIR%%/plasma/kcms/systemsettings/kcm_push_notifications.so +lib/systemd/user/graphical-session.target.wants/kunifiedpush-distributor.service +lib/systemd/user/kunifiedpush-distributor.service share/applications/kcm_push_notifications.desktop share/locale/ar/LC_MESSAGES/kcm_push_notifications.mo share/locale/ast/LC_MESSAGES/kcm_push_notifications.mo share/locale/bg/LC_MESSAGES/kcm_push_notifications.mo share/locale/ca/LC_MESSAGES/kcm_push_notifications.mo share/locale/ca@valencia/LC_MESSAGES/kcm_push_notifications.mo share/locale/cs/LC_MESSAGES/kcm_push_notifications.mo share/locale/de/LC_MESSAGES/kcm_push_notifications.mo share/locale/en_GB/LC_MESSAGES/kcm_push_notifications.mo share/locale/eo/LC_MESSAGES/kcm_push_notifications.mo share/locale/es/LC_MESSAGES/kcm_push_notifications.mo share/locale/eu/LC_MESSAGES/kcm_push_notifications.mo share/locale/fi/LC_MESSAGES/kcm_push_notifications.mo share/locale/fr/LC_MESSAGES/kcm_push_notifications.mo share/locale/gl/LC_MESSAGES/kcm_push_notifications.mo share/locale/he/LC_MESSAGES/kcm_push_notifications.mo share/locale/hi/LC_MESSAGES/kcm_push_notifications.mo +share/locale/hu/LC_MESSAGES/kcm_push_notifications.mo share/locale/ia/LC_MESSAGES/kcm_push_notifications.mo share/locale/it/LC_MESSAGES/kcm_push_notifications.mo share/locale/ja/LC_MESSAGES/kcm_push_notifications.mo share/locale/ka/LC_MESSAGES/kcm_push_notifications.mo share/locale/ko/LC_MESSAGES/kcm_push_notifications.mo share/locale/lt/LC_MESSAGES/kcm_push_notifications.mo share/locale/lv/LC_MESSAGES/kcm_push_notifications.mo share/locale/nl/LC_MESSAGES/kcm_push_notifications.mo share/locale/nn/LC_MESSAGES/kcm_push_notifications.mo share/locale/pa/LC_MESSAGES/kcm_push_notifications.mo share/locale/pl/LC_MESSAGES/kcm_push_notifications.mo share/locale/pt/LC_MESSAGES/kcm_push_notifications.mo share/locale/pt_BR/LC_MESSAGES/kcm_push_notifications.mo share/locale/ru/LC_MESSAGES/kcm_push_notifications.mo share/locale/sa/LC_MESSAGES/kcm_push_notifications.mo share/locale/sk/LC_MESSAGES/kcm_push_notifications.mo share/locale/sl/LC_MESSAGES/kcm_push_notifications.mo share/locale/sv/LC_MESSAGES/kcm_push_notifications.mo share/locale/ta/LC_MESSAGES/kcm_push_notifications.mo share/locale/tr/LC_MESSAGES/kcm_push_notifications.mo share/locale/uk/LC_MESSAGES/kcm_push_notifications.mo share/locale/zh_CN/LC_MESSAGES/kcm_push_notifications.mo share/locale/zh_TW/LC_MESSAGES/kcm_push_notifications.mo share/qlogging-categories6/org_kde_kunifiedpush.categories diff --git a/devel/lokalize/distinfo b/devel/lokalize/distinfo index 67a003c639eb..1f03aa060eab 100644 --- a/devel/lokalize/distinfo +++ b/devel/lokalize/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1751381319 -SHA256 (KDE/release-service/25.04.3/lokalize-25.04.3.tar.xz) = 5674c361792daf9b6892f4a267d91bceef245f6161dcffd75d1dd5c4b43b2321 -SIZE (KDE/release-service/25.04.3/lokalize-25.04.3.tar.xz) = 2068224 +TIMESTAMP = 1754646231 +SHA256 (KDE/release-service/25.08.0/lokalize-25.08.0.tar.xz) = f0ef7eff2b11cda91e4154723fab2936c107e462215f5a3ddda1e418c5dd1514 +SIZE (KDE/release-service/25.08.0/lokalize-25.08.0.tar.xz) = 2059216 diff --git a/devel/lokalize/pkg-plist b/devel/lokalize/pkg-plist index 675098f600f5..8159271d0061 100644 --- a/devel/lokalize/pkg-plist +++ b/devel/lokalize/pkg-plist @@ -1,204 +1,197 @@ bin/lokalize share/applications/org.kde.lokalize.desktop share/config.kcfg/lokalize.kcfg share/icons/hicolor/128x128/apps/lokalize.png share/icons/hicolor/32x32/apps/lokalize.png share/icons/hicolor/64x64/apps/lokalize.png share/icons/hicolor/scalable/apps/lokalize.svgz share/knotifications6/lokalize.notifyrc share/locale/ar/LC_MESSAGES/lokalize.mo share/locale/az/LC_MESSAGES/lokalize.mo share/locale/be/LC_MESSAGES/lokalize.mo share/locale/bg/LC_MESSAGES/lokalize.mo share/locale/bs/LC_MESSAGES/lokalize.mo share/locale/ca/LC_MESSAGES/lokalize.mo share/locale/ca@valencia/LC_MESSAGES/lokalize.mo share/locale/cs/LC_MESSAGES/lokalize.mo share/locale/csb/LC_MESSAGES/lokalize.mo share/locale/da/LC_MESSAGES/lokalize.mo share/locale/de/LC_MESSAGES/lokalize.mo share/locale/el/LC_MESSAGES/lokalize.mo share/locale/en_GB/LC_MESSAGES/lokalize.mo share/locale/eo/LC_MESSAGES/lokalize.mo share/locale/es/LC_MESSAGES/lokalize.mo share/locale/et/LC_MESSAGES/lokalize.mo share/locale/eu/LC_MESSAGES/lokalize.mo share/locale/fi/LC_MESSAGES/lokalize.mo share/locale/fr/LC_MESSAGES/lokalize.mo share/locale/ga/LC_MESSAGES/lokalize.mo share/locale/gl/LC_MESSAGES/lokalize.mo share/locale/he/LC_MESSAGES/lokalize.mo share/locale/hi/LC_MESSAGES/lokalize.mo share/locale/hr/LC_MESSAGES/lokalize.mo share/locale/hu/LC_MESSAGES/lokalize.mo share/locale/ia/LC_MESSAGES/lokalize.mo share/locale/id/LC_MESSAGES/lokalize.mo share/locale/ie/LC_MESSAGES/lokalize.mo share/locale/is/LC_MESSAGES/lokalize.mo share/locale/it/LC_MESSAGES/lokalize.mo share/locale/ja/LC_MESSAGES/lokalize.mo share/locale/ka/LC_MESSAGES/lokalize.mo share/locale/kab/LC_MESSAGES/lokalize.mo share/locale/kk/LC_MESSAGES/lokalize.mo share/locale/km/LC_MESSAGES/lokalize.mo share/locale/ko/LC_MESSAGES/lokalize.mo share/locale/ku/LC_MESSAGES/lokalize.mo share/locale/lt/LC_MESSAGES/lokalize.mo share/locale/lv/LC_MESSAGES/lokalize.mo share/locale/mai/LC_MESSAGES/lokalize.mo share/locale/mr/LC_MESSAGES/lokalize.mo share/locale/my/LC_MESSAGES/lokalize.mo share/locale/nb/LC_MESSAGES/lokalize.mo share/locale/nds/LC_MESSAGES/lokalize.mo share/locale/nl/LC_MESSAGES/lokalize.mo share/locale/nn/LC_MESSAGES/lokalize.mo share/locale/oc/LC_MESSAGES/lokalize.mo share/locale/pa/LC_MESSAGES/lokalize.mo share/locale/pl/LC_MESSAGES/lokalize.mo share/locale/pt/LC_MESSAGES/lokalize.mo share/locale/pt_BR/LC_MESSAGES/lokalize.mo share/locale/ro/LC_MESSAGES/lokalize.mo share/locale/ru/LC_MESSAGES/lokalize.mo share/locale/sa/LC_MESSAGES/lokalize.mo share/locale/sk/LC_MESSAGES/lokalize.mo share/locale/sl/LC_MESSAGES/lokalize.mo share/locale/sq/LC_MESSAGES/lokalize.mo share/locale/sr/LC_MESSAGES/lokalize.mo share/locale/sr@ijekavian/LC_MESSAGES/lokalize.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/lokalize.mo share/locale/sr@latin/LC_MESSAGES/lokalize.mo share/locale/sv/LC_MESSAGES/lokalize.mo share/locale/th/LC_MESSAGES/lokalize.mo share/locale/tr/LC_MESSAGES/lokalize.mo share/locale/ug/LC_MESSAGES/lokalize.mo share/locale/uk/LC_MESSAGES/lokalize.mo share/locale/vi/LC_MESSAGES/lokalize.mo share/locale/wa/LC_MESSAGES/lokalize.mo share/locale/zh_CN/LC_MESSAGES/lokalize.mo share/locale/zh_TW/LC_MESSAGES/lokalize.mo %%DATADIR%%/icons/hicolor/16x16/actions/approved.png %%DATADIR%%/icons/hicolor/16x16/actions/insert_arg.png %%DATADIR%%/icons/hicolor/16x16/actions/insert_tag.png %%DATADIR%%/icons/hicolor/16x16/actions/l10n/sr/approved.png %%DATADIR%%/icons/hicolor/16x16/actions/l10n/sr@ijekavian/approved.png %%DATADIR%%/icons/hicolor/16x16/actions/l10n/sr@ijekavianlatin/approved.png %%DATADIR%%/icons/hicolor/16x16/actions/l10n/sr@latin/approved.png %%DATADIR%%/icons/hicolor/16x16/actions/msgid2msgstr.png %%DATADIR%%/icons/hicolor/16x16/actions/nexterror.png %%DATADIR%%/icons/hicolor/16x16/actions/nextfuzzy.png %%DATADIR%%/icons/hicolor/16x16/actions/nextfuzzyuntrans.png %%DATADIR%%/icons/hicolor/16x16/actions/nextpo.png %%DATADIR%%/icons/hicolor/16x16/actions/nexttemplate.png %%DATADIR%%/icons/hicolor/16x16/actions/nextuntranslated.png %%DATADIR%%/icons/hicolor/16x16/actions/preverror.png %%DATADIR%%/icons/hicolor/16x16/actions/prevfuzzy.png %%DATADIR%%/icons/hicolor/16x16/actions/prevfuzzyuntrans.png %%DATADIR%%/icons/hicolor/16x16/actions/prevpo.png %%DATADIR%%/icons/hicolor/16x16/actions/prevtemplate.png %%DATADIR%%/icons/hicolor/16x16/actions/prevuntranslated.png %%DATADIR%%/icons/hicolor/16x16/actions/search2msgstr.png %%DATADIR%%/icons/hicolor/16x16/actions/transsearch.png %%DATADIR%%/icons/hicolor/22x22/actions/approved.png %%DATADIR%%/icons/hicolor/22x22/actions/catalogmanager.png %%DATADIR%%/icons/hicolor/22x22/actions/insert_arg.png %%DATADIR%%/icons/hicolor/22x22/actions/insert_tag.png %%DATADIR%%/icons/hicolor/22x22/actions/l10n/sr/approved.png %%DATADIR%%/icons/hicolor/22x22/actions/l10n/sr@ijekavian/approved.png %%DATADIR%%/icons/hicolor/22x22/actions/l10n/sr@ijekavianlatin/approved.png %%DATADIR%%/icons/hicolor/22x22/actions/l10n/sr@latin/approved.png %%DATADIR%%/icons/hicolor/22x22/actions/msgid2msgstr.png %%DATADIR%%/icons/hicolor/22x22/actions/nexterror.png %%DATADIR%%/icons/hicolor/22x22/actions/nextfuzzy.png %%DATADIR%%/icons/hicolor/22x22/actions/nextfuzzyuntrans.png %%DATADIR%%/icons/hicolor/22x22/actions/nextpo.png %%DATADIR%%/icons/hicolor/22x22/actions/nexttemplate.png %%DATADIR%%/icons/hicolor/22x22/actions/nextuntranslated.png %%DATADIR%%/icons/hicolor/22x22/actions/preverror.png %%DATADIR%%/icons/hicolor/22x22/actions/prevfuzzy.png %%DATADIR%%/icons/hicolor/22x22/actions/prevfuzzyuntrans.png %%DATADIR%%/icons/hicolor/22x22/actions/prevpo.png %%DATADIR%%/icons/hicolor/22x22/actions/prevtemplate.png %%DATADIR%%/icons/hicolor/22x22/actions/prevuntranslated.png %%DATADIR%%/icons/hicolor/22x22/actions/search2msgstr.png %%DATADIR%%/icons/hicolor/22x22/actions/transsearch.png %%DATADIR%%/icons/hicolor/32x32/actions/approved.png %%DATADIR%%/icons/hicolor/32x32/actions/catalogmanager.png %%DATADIR%%/icons/hicolor/32x32/actions/diff.png %%DATADIR%%/icons/hicolor/32x32/actions/insert_arg.png %%DATADIR%%/icons/hicolor/32x32/actions/insert_tag.png %%DATADIR%%/icons/hicolor/32x32/actions/l10n/sr/approved.png %%DATADIR%%/icons/hicolor/32x32/actions/l10n/sr@ijekavian/approved.png %%DATADIR%%/icons/hicolor/32x32/actions/l10n/sr@ijekavianlatin/approved.png %%DATADIR%%/icons/hicolor/32x32/actions/l10n/sr@latin/approved.png %%DATADIR%%/icons/hicolor/32x32/actions/msgid2msgstr.png %%DATADIR%%/icons/hicolor/32x32/actions/nexterror.png %%DATADIR%%/icons/hicolor/32x32/actions/nextfuzzy.png %%DATADIR%%/icons/hicolor/32x32/actions/nextfuzzyuntrans.png %%DATADIR%%/icons/hicolor/32x32/actions/nextpo.png %%DATADIR%%/icons/hicolor/32x32/actions/nexttemplate.png %%DATADIR%%/icons/hicolor/32x32/actions/nextuntranslated.png %%DATADIR%%/icons/hicolor/32x32/actions/preverror.png %%DATADIR%%/icons/hicolor/32x32/actions/prevfuzzy.png %%DATADIR%%/icons/hicolor/32x32/actions/prevfuzzyuntrans.png %%DATADIR%%/icons/hicolor/32x32/actions/prevpo.png %%DATADIR%%/icons/hicolor/32x32/actions/prevtemplate.png %%DATADIR%%/icons/hicolor/32x32/actions/prevuntranslated.png %%DATADIR%%/icons/hicolor/32x32/actions/search2msgstr.png %%DATADIR%%/icons/hicolor/32x32/actions/transsearch.png %%DATADIR%%/icons/hicolor/48x48/actions/approved.png %%DATADIR%%/icons/hicolor/48x48/actions/l10n/sr/approved.png %%DATADIR%%/icons/hicolor/48x48/actions/l10n/sr@ijekavian/approved.png %%DATADIR%%/icons/hicolor/48x48/actions/l10n/sr@ijekavianlatin/approved.png %%DATADIR%%/icons/hicolor/48x48/actions/l10n/sr@latin/approved.png %%DATADIR%%/icons/hicolor/scalable/actions/approved.svgz %%DATADIR%%/icons/hicolor/scalable/actions/l10n/sr/approved.svgz %%DATADIR%%/icons/hicolor/scalable/actions/l10n/sr@ijekavian/approved.svgz %%DATADIR%%/icons/hicolor/scalable/actions/l10n/sr@ijekavianlatin/approved.svgz %%DATADIR%%/icons/hicolor/scalable/actions/l10n/sr@latin/approved.svgz %%DATADIR%%/icons/locolor/16x16/actions/catalogmanager.png %%DATADIR%%/icons/locolor/16x16/actions/diff.png %%DATADIR%%/icons/locolor/16x16/actions/insert_arg.png %%DATADIR%%/icons/locolor/16x16/actions/insert_tag.png %%DATADIR%%/icons/locolor/16x16/actions/msgid2msgstr.png %%DATADIR%%/icons/locolor/16x16/actions/nexterror.png %%DATADIR%%/icons/locolor/16x16/actions/nextfuzzy.png %%DATADIR%%/icons/locolor/16x16/actions/nextfuzzyuntrans.png %%DATADIR%%/icons/locolor/16x16/actions/nextpo.png %%DATADIR%%/icons/locolor/16x16/actions/nexttemplate.png %%DATADIR%%/icons/locolor/16x16/actions/nextuntranslated.png %%DATADIR%%/icons/locolor/16x16/actions/preverror.png %%DATADIR%%/icons/locolor/16x16/actions/prevfuzzy.png %%DATADIR%%/icons/locolor/16x16/actions/prevfuzzyuntrans.png %%DATADIR%%/icons/locolor/16x16/actions/prevpo.png %%DATADIR%%/icons/locolor/16x16/actions/prevtemplate.png %%DATADIR%%/icons/locolor/16x16/actions/prevuntranslated.png %%DATADIR%%/icons/locolor/16x16/actions/search2msgstr.png %%DATADIR%%/icons/locolor/16x16/actions/transsearch.png %%DATADIR%%/icons/locolor/32x32/actions/catalogmanager.png %%DATADIR%%/icons/locolor/32x32/actions/diff.png %%DATADIR%%/icons/locolor/32x32/actions/insert_arg.png %%DATADIR%%/icons/locolor/32x32/actions/insert_tag.png %%DATADIR%%/icons/locolor/32x32/actions/msgid2msgstr.png %%DATADIR%%/icons/locolor/32x32/actions/nexterror.png %%DATADIR%%/icons/locolor/32x32/actions/nextfuzzy.png %%DATADIR%%/icons/locolor/32x32/actions/nextfuzzyuntrans.png %%DATADIR%%/icons/locolor/32x32/actions/nextpo.png %%DATADIR%%/icons/locolor/32x32/actions/nexttemplate.png %%DATADIR%%/icons/locolor/32x32/actions/nextuntranslated.png %%DATADIR%%/icons/locolor/32x32/actions/preverror.png %%DATADIR%%/icons/locolor/32x32/actions/prevfuzzy.png %%DATADIR%%/icons/locolor/32x32/actions/prevfuzzyuntrans.png %%DATADIR%%/icons/locolor/32x32/actions/prevpo.png %%DATADIR%%/icons/locolor/32x32/actions/prevtemplate.png %%DATADIR%%/icons/locolor/32x32/actions/prevuntranslated.png %%DATADIR%%/icons/locolor/32x32/actions/search2msgstr.png %%DATADIR%%/icons/locolor/32x32/actions/transsearch.png -%%DATADIR%%/scripts/find-gui-text.sh -%%DATADIR%%/scripts/msgmerge.py -%%DATADIR%%/scripts/msgmerge.rc -%%DATADIR%%/scripts/odf/xliff2odf-standalone.py -%%DATADIR%%/scripts/odf/xliff2odf.py -%%DATADIR%%/scripts/odf/xliff2odf.rc -%%DATADIR%%/scripts/odf/xliffmerge.py share/metainfo/org.kde.lokalize.appdata.xml share/qlogging-categories6/lokalize.categories diff --git a/devel/massif-visualizer/distinfo b/devel/massif-visualizer/distinfo index 467dda08031f..2bd2a97c96d0 100644 --- a/devel/massif-visualizer/distinfo +++ b/devel/massif-visualizer/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1751381322 -SHA256 (KDE/release-service/25.04.3/massif-visualizer-25.04.3.tar.xz) = 762ac3e82aff576c48b511f37fca042121cfaa10f64df31019b18a7bb0098834 -SIZE (KDE/release-service/25.04.3/massif-visualizer-25.04.3.tar.xz) = 283768 +TIMESTAMP = 1754646234 +SHA256 (KDE/release-service/25.08.0/massif-visualizer-25.08.0.tar.xz) = 6f282cbcf5b3c3be3d0f062c8d69f458a4294c804720cdc45576fb14e4bf1380 +SIZE (KDE/release-service/25.08.0/massif-visualizer-25.08.0.tar.xz) = 283832 diff --git a/devel/poxml/distinfo b/devel/poxml/distinfo index 919071f791da..a667d60a38f4 100644 --- a/devel/poxml/distinfo +++ b/devel/poxml/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1751381324 -SHA256 (KDE/release-service/25.04.3/poxml-25.04.3.tar.xz) = 35e158db85c6c15250ebb17f63062ad5b78e83ea7fa1cc966ed8ca198af89110 -SIZE (KDE/release-service/25.04.3/poxml-25.04.3.tar.xz) = 45208 +TIMESTAMP = 1754646236 +SHA256 (KDE/release-service/25.08.0/poxml-25.08.0.tar.xz) = be811de27a72330dec6401e8f734b9d660b094ffa1c505e80dc80403e037622d +SIZE (KDE/release-service/25.08.0/poxml-25.08.0.tar.xz) = 45196 diff --git a/devel/umbrello/distinfo b/devel/umbrello/distinfo index 7aed7975be72..8871999b221f 100644 --- a/devel/umbrello/distinfo +++ b/devel/umbrello/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1751381326 -SHA256 (KDE/release-service/25.04.3/umbrello-25.04.3.tar.xz) = e9a065bb626c97a48bb43e992489b58c15026166014505e42852d6e969be8ec3 -SIZE (KDE/release-service/25.04.3/umbrello-25.04.3.tar.xz) = 5618524 +TIMESTAMP = 1754646238 +SHA256 (KDE/release-service/25.08.0/umbrello-25.08.0.tar.xz) = 755cfa7a8ada1517614a175a40293a982dce4c3eb4739ca397a4124713b4fc6d +SIZE (KDE/release-service/25.08.0/umbrello-25.08.0.tar.xz) = 5621984 diff --git a/devel/umbrello/pkg-plist b/devel/umbrello/pkg-plist index f4badba2bf4a..db1a1135fbac 100644 --- a/devel/umbrello/pkg-plist +++ b/devel/umbrello/pkg-plist @@ -1,165 +1,166 @@ bin/po2xmi5 bin/umbrello5 bin/xmi2pot5 share/applications/org.kde.umbrello.desktop share/icons/hicolor/128x128/apps/umbrello.png share/icons/hicolor/16x16/apps/umbrello.png share/icons/hicolor/16x16/mimetypes/application-x-uml.png share/icons/hicolor/22x22/apps/umbrello.png share/icons/hicolor/32x32/apps/umbrello.png share/icons/hicolor/32x32/mimetypes/application-x-uml.png share/icons/hicolor/48x48/apps/umbrello.png share/icons/hicolor/64x64/apps/umbrello.png share/icons/hicolor/scalable/apps/umbrello.svgz share/locale/ar/LC_MESSAGES/umbrello.mo share/locale/be/LC_MESSAGES/umbrello.mo share/locale/bg/LC_MESSAGES/umbrello.mo share/locale/bg/LC_MESSAGES/umbrello_kdevphp5.mo share/locale/br/LC_MESSAGES/umbrello.mo share/locale/bs/LC_MESSAGES/umbrello.mo share/locale/bs/LC_MESSAGES/umbrello_kdevphp5.mo share/locale/ca/LC_MESSAGES/umbrello.mo share/locale/ca/LC_MESSAGES/umbrello_kdevphp5.mo share/locale/ca@valencia/LC_MESSAGES/umbrello.mo share/locale/ca@valencia/LC_MESSAGES/umbrello_kdevphp5.mo share/locale/cs/LC_MESSAGES/umbrello.mo share/locale/cs/LC_MESSAGES/umbrello_kdevphp5.mo share/locale/cy/LC_MESSAGES/umbrello.mo share/locale/da/LC_MESSAGES/umbrello.mo share/locale/da/LC_MESSAGES/umbrello_kdevphp5.mo share/locale/de/LC_MESSAGES/umbrello.mo share/locale/de/LC_MESSAGES/umbrello_kdevphp5.mo share/locale/el/LC_MESSAGES/umbrello.mo share/locale/el/LC_MESSAGES/umbrello_kdevphp5.mo share/locale/en_GB/LC_MESSAGES/umbrello.mo share/locale/en_GB/LC_MESSAGES/umbrello_kdevphp5.mo share/locale/eo/LC_MESSAGES/umbrello.mo share/locale/eo/LC_MESSAGES/umbrello_kdevphp5.mo share/locale/es/LC_MESSAGES/umbrello.mo share/locale/es/LC_MESSAGES/umbrello_kdevphp5.mo share/locale/et/LC_MESSAGES/umbrello.mo share/locale/et/LC_MESSAGES/umbrello_kdevphp5.mo share/locale/eu/LC_MESSAGES/umbrello.mo share/locale/fa/LC_MESSAGES/umbrello.mo share/locale/fi/LC_MESSAGES/umbrello.mo share/locale/fi/LC_MESSAGES/umbrello_kdevphp5.mo share/locale/fr/LC_MESSAGES/umbrello.mo share/locale/fr/LC_MESSAGES/umbrello_kdevphp5.mo share/locale/ga/LC_MESSAGES/umbrello.mo share/locale/ga/LC_MESSAGES/umbrello_kdevphp5.mo share/locale/gl/LC_MESSAGES/umbrello.mo share/locale/gl/LC_MESSAGES/umbrello_kdevphp5.mo +share/locale/he/LC_MESSAGES/umbrello_kdevphp5.mo share/locale/hi/LC_MESSAGES/umbrello.mo share/locale/hne/LC_MESSAGES/umbrello.mo share/locale/hr/LC_MESSAGES/umbrello.mo share/locale/hr/LC_MESSAGES/umbrello_kdevphp5.mo share/locale/hu/LC_MESSAGES/umbrello.mo share/locale/hu/LC_MESSAGES/umbrello_kdevphp5.mo share/locale/ia/LC_MESSAGES/umbrello.mo share/locale/it/LC_MESSAGES/umbrello.mo share/locale/it/LC_MESSAGES/umbrello_kdevphp5.mo share/locale/ja/LC_MESSAGES/umbrello.mo share/locale/ja/LC_MESSAGES/umbrello_kdevphp5.mo share/locale/ka/LC_MESSAGES/umbrello.mo share/locale/ka/LC_MESSAGES/umbrello_kdevphp5.mo share/locale/kk/LC_MESSAGES/umbrello.mo share/locale/kk/LC_MESSAGES/umbrello_kdevphp5.mo share/locale/km/LC_MESSAGES/umbrello.mo share/locale/ko/LC_MESSAGES/umbrello.mo share/locale/ko/LC_MESSAGES/umbrello_kdevphp5.mo share/locale/lt/LC_MESSAGES/umbrello.mo share/locale/lt/LC_MESSAGES/umbrello_kdevphp5.mo share/locale/mai/LC_MESSAGES/umbrello.mo share/locale/mk/LC_MESSAGES/umbrello.mo share/locale/mr/LC_MESSAGES/umbrello.mo share/locale/mr/LC_MESSAGES/umbrello_kdevphp5.mo share/locale/ms/LC_MESSAGES/umbrello.mo share/locale/nb/LC_MESSAGES/umbrello.mo share/locale/nb/LC_MESSAGES/umbrello_kdevphp5.mo share/locale/nds/LC_MESSAGES/umbrello.mo share/locale/nds/LC_MESSAGES/umbrello_kdevphp5.mo share/locale/ne/LC_MESSAGES/umbrello.mo share/locale/nl/LC_MESSAGES/umbrello.mo share/locale/nl/LC_MESSAGES/umbrello_kdevphp5.mo share/locale/nn/LC_MESSAGES/umbrello.mo share/locale/nn/LC_MESSAGES/umbrello_kdevphp5.mo share/locale/oc/LC_MESSAGES/umbrello.mo share/locale/pl/LC_MESSAGES/umbrello.mo share/locale/pl/LC_MESSAGES/umbrello_kdevphp5.mo share/locale/pt/LC_MESSAGES/umbrello.mo share/locale/pt/LC_MESSAGES/umbrello_kdevphp5.mo share/locale/pt_BR/LC_MESSAGES/umbrello.mo share/locale/pt_BR/LC_MESSAGES/umbrello_kdevphp5.mo share/locale/ro/LC_MESSAGES/umbrello.mo share/locale/ro/LC_MESSAGES/umbrello_kdevphp5.mo share/locale/ru/LC_MESSAGES/umbrello.mo share/locale/ru/LC_MESSAGES/umbrello_kdevphp5.mo share/locale/se/LC_MESSAGES/umbrello.mo share/locale/sk/LC_MESSAGES/umbrello.mo share/locale/sk/LC_MESSAGES/umbrello_kdevphp5.mo share/locale/sl/LC_MESSAGES/umbrello.mo share/locale/sl/LC_MESSAGES/umbrello_kdevphp5.mo share/locale/sq/LC_MESSAGES/umbrello.mo share/locale/sv/LC_MESSAGES/umbrello.mo share/locale/sv/LC_MESSAGES/umbrello_kdevphp5.mo share/locale/ta/LC_MESSAGES/umbrello.mo share/locale/tg/LC_MESSAGES/umbrello.mo share/locale/th/LC_MESSAGES/umbrello_kdevphp5.mo share/locale/tr/LC_MESSAGES/umbrello.mo share/locale/tr/LC_MESSAGES/umbrello_kdevphp5.mo share/locale/ug/LC_MESSAGES/umbrello.mo share/locale/ug/LC_MESSAGES/umbrello_kdevphp5.mo share/locale/uk/LC_MESSAGES/umbrello.mo share/locale/uk/LC_MESSAGES/umbrello_kdevphp5.mo share/locale/zh_CN/LC_MESSAGES/umbrello.mo share/locale/zh_CN/LC_MESSAGES/umbrello_kdevphp5.mo share/locale/zh_TW/LC_MESSAGES/umbrello.mo share/locale/zh_TW/LC_MESSAGES/umbrello_kdevphp5.mo share/metainfo/org.kde.umbrello.appdata.xml share/umbrello5/common.ent share/umbrello5/docbook2xhtml.xsl share/umbrello5/headings/heading.adb share/umbrello5/headings/heading.ads share/umbrello5/headings/heading.as share/umbrello5/headings/heading.cpp share/umbrello5/headings/heading.cs share/umbrello5/headings/heading.d share/umbrello5/headings/heading.h share/umbrello5/headings/heading.idl share/umbrello5/headings/heading.java share/umbrello5/headings/heading.js share/umbrello5/headings/heading.php share/umbrello5/headings/heading.pm share/umbrello5/headings/heading.py share/umbrello5/headings/heading.rb share/umbrello5/headings/heading.sql share/umbrello5/headings/heading.xsd share/umbrello5/layouts/activity-export.desktop share/umbrello5/layouts/activity-vertical.desktop share/umbrello5/layouts/class-export.desktop share/umbrello5/layouts/class-horizontal.desktop share/umbrello5/layouts/class-vertical.desktop share/umbrello5/layouts/component-horizontal.desktop share/umbrello5/layouts/component-vertical.desktop share/umbrello5/layouts/entityrelationship-export.desktop share/umbrello5/layouts/entityrelationship-horizontal.desktop share/umbrello5/layouts/entityrelationship-vertical.desktop share/umbrello5/layouts/object-export.desktop share/umbrello5/layouts/object-horizontal.desktop share/umbrello5/layouts/object-vertical.desktop share/umbrello5/layouts/state-export.desktop share/umbrello5/layouts/state-horizontal.desktop share/umbrello5/layouts/state-vertical.desktop share/umbrello5/layouts/usecase-default.desktop share/umbrello5/simple4125/sdbcent.mod share/umbrello5/simple4125/sdbhier.mod share/umbrello5/simple4125/sdbpool.mod share/umbrello5/simple4125/sdocbook-custom.dtd share/umbrello5/simple4125/sdocbook.css share/umbrello5/simple4125/sdocbook.dtd share/umbrello5/simple4125/sdocbookref-custom.dtd share/umbrello5/simple4125/sdocbookref.dtd share/umbrello5/simple4125/sinclist.mod share/umbrello5/xmi.css share/umbrello5/xmi1docbook.xsl share/umbrello5/xmi2docbook.xsl diff --git a/editors/calligra/distinfo b/editors/calligra/distinfo index 4fe0784db4d9..191be1ac2cf7 100644 --- a/editors/calligra/distinfo +++ b/editors/calligra/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1751381329 -SHA256 (KDE/release-service/25.04.3/calligra-25.04.3.tar.xz) = 26d75a67eca8a137849bc925da0f65f49f11c29e9fc75346cb2d6627036e6d4f -SIZE (KDE/release-service/25.04.3/calligra-25.04.3.tar.xz) = 58006524 +TIMESTAMP = 1754646241 +SHA256 (KDE/release-service/25.08.0/calligra-25.08.0.tar.xz) = 3366f528ce1cfacd8f05b24aa1f299b27bbd6f13322cefe3d8a5c909e16f11a0 +SIZE (KDE/release-service/25.08.0/calligra-25.08.0.tar.xz) = 58017328 diff --git a/editors/calligra/pkg-plist b/editors/calligra/pkg-plist index f37312f1164d..cb3bcbd4b9e8 100644 --- a/editors/calligra/pkg-plist +++ b/editors/calligra/pkg-plist @@ -1,7570 +1,7572 @@ bin/calligraconverter bin/calligralauncher bin/calligrasheets bin/calligrastage bin/calligrawords bin/karbon etc/xdg/calligrasheetsrc etc/xdg/calligrastagerc etc/xdg/calligrawordsrc etc/xdg/karbonrc lib/libRtfReader.so lib/libRtfReader.so.%%KDE_APPLICATIONS_VERSION%% lib/libRtfReader.so.%%SHLIB_VER%% lib/libautocorrection.so lib/libautocorrection.so.%%KDE_APPLICATIONS_VERSION%% lib/libautocorrection.so.%%SHLIB_VER%% lib/libbasicflakes.so lib/libbasicflakes.so.%%KDE_APPLICATIONS_VERSION%% lib/libbasicflakes.so.%%SHLIB_VER%% lib/libcalligrasheetscore.so lib/libcalligrasheetscore.so.%%KDE_APPLICATIONS_VERSION%% lib/libcalligrasheetscore.so.%%SHLIB_VER%% lib/libcalligrasheetsengine.so lib/libcalligrasheetsengine.so.%%KDE_APPLICATIONS_VERSION%% lib/libcalligrasheetsengine.so.%%SHLIB_VER%% lib/libcalligrasheetspartlib.so lib/libcalligrasheetspartlib.so.%%KDE_APPLICATIONS_VERSION%% lib/libcalligrasheetspartlib.so.%%SHLIB_VER%% lib/libcalligrasheetsui.so lib/libcalligrasheetsui.so.%%KDE_APPLICATIONS_VERSION%% lib/libcalligrasheetsui.so.%%SHLIB_VER%% lib/libcalligrastageprivate.so lib/libcalligrastageprivate.so.%%KDE_APPLICATIONS_VERSION%% lib/libcalligrastageprivate.so.%%SHLIB_VER%% lib/libflake.so lib/libflake.so.%%KDE_APPLICATIONS_VERSION%% lib/libflake.so.%%SHLIB_VER%% lib/libkarboncommon.so lib/libkarboncommon.so.%%KDE_APPLICATIONS_VERSION%% lib/libkarboncommon.so.%%SHLIB_VER%% lib/libkarbonui.so lib/libkarbonui.so.%%KDE_APPLICATIONS_VERSION%% lib/libkarbonui.so.%%SHLIB_VER%% lib/libkoformula.so lib/libkoformula.so.%%KDE_APPLICATIONS_VERSION%% lib/libkoformula.so.%%SHLIB_VER%% lib/libkomain.so lib/libkomain.so.%%KDE_APPLICATIONS_VERSION%% lib/libkomain.so.%%SHLIB_VER%% lib/libkomsooxml.so lib/libkomsooxml.so.%%KDE_APPLICATIONS_VERSION%% lib/libkomsooxml.so.%%SHLIB_VER%% lib/libkoodf.so lib/libkoodf.so.%%KDE_APPLICATIONS_VERSION%% lib/libkoodf.so.%%SHLIB_VER%% lib/libkoodf2.so lib/libkoodf2.so.%%KDE_APPLICATIONS_VERSION%% lib/libkoodf2.so.%%SHLIB_VER%% lib/libkoodfreader.so lib/libkoodfreader.so.%%KDE_APPLICATIONS_VERSION%% lib/libkoodfreader.so.%%SHLIB_VER%% lib/libkookularGenerator_odp.so lib/libkookularGenerator_odp.so.%%KDE_APPLICATIONS_VERSION%% lib/libkookularGenerator_odp.so.%%SHLIB_VER%% lib/libkookularGenerator_odt.so lib/libkookularGenerator_odt.so.%%KDE_APPLICATIONS_VERSION%% lib/libkookularGenerator_odt.so.%%SHLIB_VER%% lib/libkopageapp.so lib/libkopageapp.so.%%KDE_APPLICATIONS_VERSION%% lib/libkopageapp.so.%%SHLIB_VER%% lib/libkoplugin.so lib/libkoplugin.so.%%KDE_APPLICATIONS_VERSION%% lib/libkoplugin.so.%%SHLIB_VER%% lib/libkostore.so lib/libkostore.so.%%KDE_APPLICATIONS_VERSION%% lib/libkostore.so.%%SHLIB_VER%% lib/libkotext.so lib/libkotext.so.%%KDE_APPLICATIONS_VERSION%% lib/libkotext.so.%%SHLIB_VER%% lib/libkotextlayout.so lib/libkotextlayout.so.%%KDE_APPLICATIONS_VERSION%% lib/libkotextlayout.so.%%SHLIB_VER%% lib/libkovectorimage.so lib/libkovectorimage.so.%%KDE_APPLICATIONS_VERSION%% lib/libkovectorimage.so.%%SHLIB_VER%% lib/libkowidgets.so lib/libkowidgets.so.%%KDE_APPLICATIONS_VERSION%% lib/libkowidgets.so.%%SHLIB_VER%% lib/libkowidgetutils.so lib/libkowidgetutils.so.%%KDE_APPLICATIONS_VERSION%% lib/libkowidgetutils.so.%%SHLIB_VER%% lib/libkundo2.so lib/libkundo2.so.%%KDE_APPLICATIONS_VERSION%% lib/libkundo2.so.%%SHLIB_VER%% lib/libpigmentcms.so lib/libpigmentcms.so.%%KDE_APPLICATIONS_VERSION%% lib/libpigmentcms.so.%%SHLIB_VER%% lib/libwordsprivate.so lib/libwordsprivate.so.%%KDE_APPLICATIONS_VERSION%% lib/libwordsprivate.so.%%SHLIB_VER%% %%QT_PLUGINDIR%%/calligra/dockers/calligra_docker_defaults.so %%QT_PLUGINDIR%%/calligra/dockers/calligra_docker_stencils.so %%QT_PLUGINDIR%%/calligra/formatfilters/calligra_filter_applixspread2kspread.so %%QT_PLUGINDIR%%/calligra/formatfilters/calligra_filter_applixword2odt.so %%QT_PLUGINDIR%%/calligra/formatfilters/calligra_filter_ascii2words.so %%QT_PLUGINDIR%%/calligra/formatfilters/calligra_filter_csv2sheets.so %%QT_PLUGINDIR%%/calligra/formatfilters/calligra_filter_dbase2kspread.so %%QT_PLUGINDIR%%/calligra/formatfilters/calligra_filter_docx2odt.so %%QT_PLUGINDIR%%/calligra/formatfilters/calligra_filter_eps2svgai.so %%QT_PLUGINDIR%%/calligra/formatfilters/calligra_filter_gnumeric2sheets.so %%QT_PLUGINDIR%%/calligra/formatfilters/calligra_filter_html2ods.so %%QT_PLUGINDIR%%/calligra/formatfilters/calligra_filter_karbon1x2karbon.so %%QT_PLUGINDIR%%/calligra/formatfilters/calligra_filter_karbon2image.so %%QT_PLUGINDIR%%/calligra/formatfilters/calligra_filter_karbon2svg.so %%QT_PLUGINDIR%%/calligra/formatfilters/calligra_filter_karbon2wmf.so %%QT_PLUGINDIR%%/calligra/formatfilters/calligra_filter_key2odp.so %%QT_PLUGINDIR%%/calligra/formatfilters/calligra_filter_kpr2odp.so %%QT_PLUGINDIR%%/calligra/formatfilters/calligra_filter_kspread2tex.so %%QT_PLUGINDIR%%/calligra/formatfilters/calligra_filter_odt2ascii.so %%QT_PLUGINDIR%%/calligra/formatfilters/calligra_filter_odt2docx.so %%QT_PLUGINDIR%%/calligra/formatfilters/calligra_filter_odt2epub2.so %%QT_PLUGINDIR%%/calligra/formatfilters/calligra_filter_odt2html.so %%QT_PLUGINDIR%%/calligra/formatfilters/calligra_filter_odt2mobi.so %%QT_PLUGINDIR%%/calligra/formatfilters/calligra_filter_odt2wiki.so %%QT_PLUGINDIR%%/calligra/formatfilters/calligra_filter_opencalc2sheets.so %%QT_PLUGINDIR%%/calligra/formatfilters/calligra_filter_pdf2odg.so %%QT_PLUGINDIR%%/calligra/formatfilters/calligra_filter_pdf2svg.so %%QT_PLUGINDIR%%/calligra/formatfilters/calligra_filter_ppt2odp.so %%QT_PLUGINDIR%%/calligra/formatfilters/calligra_filter_pptx2odp.so %%QT_PLUGINDIR%%/calligra/formatfilters/calligra_filter_qpro2sheets.so %%QT_PLUGINDIR%%/calligra/formatfilters/calligra_filter_rtf2odt.so %%QT_PLUGINDIR%%/calligra/formatfilters/calligra_filter_sheets2csv.so %%QT_PLUGINDIR%%/calligra/formatfilters/calligra_filter_sheets2gnumeric.so %%QT_PLUGINDIR%%/calligra/formatfilters/calligra_filter_sheets2html.so %%QT_PLUGINDIR%%/calligra/formatfilters/calligra_filter_sheets2opencalc.so %%QT_PLUGINDIR%%/calligra/formatfilters/calligra_filter_svg2karbon.so %%QT_PLUGINDIR%%/calligra/formatfilters/calligra_filter_vsdx2odg.so %%QT_PLUGINDIR%%/calligra/formatfilters/calligra_filter_wmf2svg.so %%QT_PLUGINDIR%%/calligra/formatfilters/calligra_filter_wpd2odt.so %%QT_PLUGINDIR%%/calligra/formatfilters/calligra_filter_wpg2odg.so %%QT_PLUGINDIR%%/calligra/formatfilters/calligra_filter_wpg2svg.so %%QT_PLUGINDIR%%/calligra/formatfilters/calligra_filter_wps2odt.so %%QT_PLUGINDIR%%/calligra/formatfilters/calligra_filter_xfig2odg.so %%QT_PLUGINDIR%%/calligra/formatfilters/calligra_filter_xls2ods.so %%QT_PLUGINDIR%%/calligra/formatfilters/calligra_filter_xlsx2ods.so %%QT_PLUGINDIR%%/calligra/pageapptools/kopabackgroundtool.so %%QT_PLUGINDIR%%/calligra/parts/calligrasheetspart.so %%QT_PLUGINDIR%%/calligra/parts/calligrastagepart.so %%QT_PLUGINDIR%%/calligra/parts/calligrawordspart.so %%QT_PLUGINDIR%%/calligra/parts/karbonpart.so %%QT_PLUGINDIR%%/calligra/presentationeventactions/calligrastageeventactions.so %%QT_PLUGINDIR%%/calligra/shapefiltereffects/calligra_filtereffects.so %%QT_PLUGINDIR%%/calligra/shapes/braindump_shape_web.so %%QT_PLUGINDIR%%/calligra/shapes/calligra_shape_artistictext.so %%QT_PLUGINDIR%%/calligra/shapes/calligra_shape_chart.so %%QT_PLUGINDIR%%/calligra/shapes/calligra_shape_formula.so %%QT_PLUGINDIR%%/calligra/shapes/calligra_shape_music.so %%QT_PLUGINDIR%%/calligra/shapes/calligra_shape_paths.so %%QT_PLUGINDIR%%/calligra/shapes/calligra_shape_picture.so %%QT_PLUGINDIR%%/calligra/shapes/calligra_shape_plugin.so %%QT_PLUGINDIR%%/calligra/shapes/calligra_shape_text.so %%QT_PLUGINDIR%%/calligra/shapes/calligra_shape_threed.so %%QT_PLUGINDIR%%/calligra/shapes/calligra_shape_vector.so %%QT_PLUGINDIR%%/calligra/shapes/calligra_shape_video.so %%QT_PLUGINDIR%%/calligra/textediting/calligra_textediting_autocorrect.so %%QT_PLUGINDIR%%/calligra/textediting/calligra_textediting_changecase.so %%QT_PLUGINDIR%%/calligra/textediting/calligra_textediting_spellcheck.so %%QT_PLUGINDIR%%/calligra/textediting/calligra_textediting_thesaurus.so %%QT_PLUGINDIR%%/calligra/textinlineobjects/calligra_textinlineobject_variables.so %%QT_PLUGINDIR%%/calligra/textinlineobjects/kprvariables.so %%QT_PLUGINDIR%%/calligra/tools/calligra_tool_basicflakes.so %%QT_PLUGINDIR%%/calligra/tools/calligra_tool_defaults.so %%QT_PLUGINDIR%%/calligra/tools/karbon_tools.so %%QT_PLUGINDIR%%/calligrasheets/extensions/sheetssolver.so %%QT_PLUGINDIR%%/calligrasheets/functions/kspreadbitopsmodule.so %%QT_PLUGINDIR%%/calligrasheets/functions/kspreadconversionmodule.so %%QT_PLUGINDIR%%/calligrasheets/functions/kspreaddatabasemodule.so %%QT_PLUGINDIR%%/calligrasheets/functions/kspreaddatetimemodule.so %%QT_PLUGINDIR%%/calligrasheets/functions/kspreadengineeringmodule.so %%QT_PLUGINDIR%%/calligrasheets/functions/kspreadfinancialmodule.so %%QT_PLUGINDIR%%/calligrasheets/functions/kspreadinformationmodule.so %%QT_PLUGINDIR%%/calligrasheets/functions/kspreadlogicmodule.so %%QT_PLUGINDIR%%/calligrasheets/functions/kspreadmathmodule.so %%QT_PLUGINDIR%%/calligrasheets/functions/kspreadreferencemodule.so %%QT_PLUGINDIR%%/calligrasheets/functions/kspreadstatisticalmodule.so %%QT_PLUGINDIR%%/calligrasheets/functions/kspreadtextmodule.so %%QT_PLUGINDIR%%/calligrasheets/functions/kspreadtrigonometrymodule.so %%QT_PLUGINDIR%%/calligrastage/pageeffects/kpr_pageeffect_barwipe.so %%QT_PLUGINDIR%%/calligrastage/pageeffects/kpr_pageeffect_clockwipe.so %%QT_PLUGINDIR%%/calligrastage/pageeffects/kpr_pageeffect_edgewipe.so %%QT_PLUGINDIR%%/calligrastage/pageeffects/kpr_pageeffect_fade.so %%QT_PLUGINDIR%%/calligrastage/pageeffects/kpr_pageeffect_iriswipe.so %%QT_PLUGINDIR%%/calligrastage/pageeffects/kpr_pageeffect_matrixwipe.so %%QT_PLUGINDIR%%/calligrastage/pageeffects/kpr_pageeffect_slidewipe.so %%QT_PLUGINDIR%%/calligrastage/pageeffects/kpr_pageeffect_spacerotation.so %%QT_PLUGINDIR%%/calligrastage/pageeffects/kpr_pageeffect_swapeffect.so %%QT_PLUGINDIR%%/calligrastage/shapeanimations/kpr_shapeanimation_example.so %%QT_PLUGINDIR%%/calligrastage/tools/calligrastagetoolanimation.so %%QT_PLUGINDIR%%/karbon/extensions/karbon_flattenpath.so %%QT_PLUGINDIR%%/karbon/extensions/karbon_refinepath.so %%QT_PLUGINDIR%%/karbon/extensions/karbon_roundcorners.so %%QT_PLUGINDIR%%/karbon/extensions/karbon_whirlpinch.so %%QT_PLUGINDIR%%/kf6/propertiesdialog/calligradocinfopropspage.so %%QT_PLUGINDIR%%/kf6/thumbcreator/calligraimagethumbnail.so %%QT_PLUGINDIR%%/kf6/thumbcreator/calligrathumbnail.so %%QT_PLUGINDIR%%/okular_generators/okularGenerator_docx_calligra.so %%QT_PLUGINDIR%%/okular_generators/okularGenerator_odp_calligra.so %%QT_PLUGINDIR%%/okular_generators/okularGenerator_odt_calligra.so %%QT_PLUGINDIR%%/okular_generators/okularGenerator_powerpoint_calligra.so %%QT_PLUGINDIR%%/okular_generators/okularGenerator_pptx_calligra.so %%QT_PLUGINDIR%%/okular_generators/okularGenerator_rtf_calligra.so %%QT_PLUGINDIR%%/okular_generators/okularGenerator_wpd_calligra.so share/applications/calligra.desktop share/applications/okularApplication_docx_calligra.desktop share/applications/okularApplication_odp_calligra.desktop share/applications/okularApplication_odt_calligra.desktop share/applications/okularApplication_powerpoint_calligra.desktop share/applications/okularApplication_pptx_calligra.desktop share/applications/okularApplication_rtf_calligra.desktop share/applications/okularApplication_wpd_calligra.desktop share/applications/org.kde.calligra.desktop share/applications/org.kde.calligra.karbon.desktop share/applications/org.kde.calligra.sheets.desktop share/applications/org.kde.calligra.stage.desktop share/applications/org.kde.calligra.words.desktop share/applications/org.kde.calligrawords_ascii.desktop %%DATADIR%%/autocorrect/af_ZA.xml %%DATADIR%%/autocorrect/bg_BG.xml %%DATADIR%%/autocorrect/ca_ES.xml %%DATADIR%%/autocorrect/cs_CZ.xml %%DATADIR%%/autocorrect/da_DK.xml %%DATADIR%%/autocorrect/de.xml %%DATADIR%%/autocorrect/dsb.xml %%DATADIR%%/autocorrect/el_GR.xml %%DATADIR%%/autocorrect/en_AU.xml %%DATADIR%%/autocorrect/en_GB.xml %%DATADIR%%/autocorrect/en_US.xml %%DATADIR%%/autocorrect/en_ZA.xml %%DATADIR%%/autocorrect/fa_IR.xml %%DATADIR%%/autocorrect/fi_FI.xml %%DATADIR%%/autocorrect/ga_IE.xml %%DATADIR%%/autocorrect/hr_HR.xml %%DATADIR%%/autocorrect/hsb.xml %%DATADIR%%/autocorrect/hu_HU.xml %%DATADIR%%/autocorrect/is_IS.xml %%DATADIR%%/autocorrect/it.xml %%DATADIR%%/autocorrect/ja_JP.xml %%DATADIR%%/autocorrect/ko_KR.xml %%DATADIR%%/autocorrect/lb_LU.xml %%DATADIR%%/autocorrect/lt_LT.xml %%DATADIR%%/autocorrect/mn_MN.xml %%DATADIR%%/autocorrect/nb.xml %%DATADIR%%/autocorrect/nl_BE.xml %%DATADIR%%/autocorrect/nl_NL.xml %%DATADIR%%/autocorrect/nn.xml %%DATADIR%%/autocorrect/pl_PL.xml %%DATADIR%%/autocorrect/pt_BR.xml %%DATADIR%%/autocorrect/pt_PT.xml %%DATADIR%%/autocorrect/ro_RO.xml %%DATADIR%%/autocorrect/ru_RU.xml %%DATADIR%%/autocorrect/sk_SK.xml %%DATADIR%%/autocorrect/sl_SI.xml %%DATADIR%%/autocorrect/sr_CS.xml %%DATADIR%%/autocorrect/sr_Latn_CS.xml %%DATADIR%%/autocorrect/sr_Latn_ME.xml %%DATADIR%%/autocorrect/sr_Latn_RS.xml %%DATADIR%%/autocorrect/sr_ME.xml %%DATADIR%%/autocorrect/sr_RS.xml %%DATADIR%%/autocorrect/sv_SE.xml %%DATADIR%%/autocorrect/tr_TR.xml %%DATADIR%%/autocorrect/vi_VN.xml %%DATADIR%%/autocorrect/vro_EE.xml %%DATADIR%%/autocorrect/zh_CN.xml %%DATADIR%%/autocorrect/zh_TW.xml %%DATADIR%%/calligra_shell.rc %%DATADIR%%/cursors/cursor_connect.png %%DATADIR%%/cursors/cursor_rotate.png %%DATADIR%%/cursors/cursor_shear.png %%DATADIR%%/cursors/zoom_in_cursor.png %%DATADIR%%/cursors/zoom_out_cursor.png %%DATADIR%%/icons/hicolor/24x24/actions/insert-page-break.png %%DATADIR%%/icons/hicolor/16x16/actions/abs.png %%DATADIR%%/icons/hicolor/16x16/actions/animation-stage.png %%DATADIR%%/icons/hicolor/16x16/actions/bevelled.png %%DATADIR%%/icons/hicolor/16x16/actions/borderpainter.png %%DATADIR%%/icons/hicolor/16x16/actions/brackets.png %%DATADIR%%/icons/hicolor/16x16/actions/curve-connector.png %%DATADIR%%/icons/hicolor/16x16/actions/enclosed.png %%DATADIR%%/icons/hicolor/16x16/actions/escape-direction-all.png %%DATADIR%%/icons/hicolor/16x16/actions/escape-direction-down.png %%DATADIR%%/icons/hicolor/16x16/actions/escape-direction-horizontal.png %%DATADIR%%/icons/hicolor/16x16/actions/escape-direction-left.png %%DATADIR%%/icons/hicolor/16x16/actions/escape-direction-right.png %%DATADIR%%/icons/hicolor/16x16/actions/escape-direction-up.png %%DATADIR%%/icons/hicolor/16x16/actions/escape-direction-vertical.png %%DATADIR%%/icons/hicolor/16x16/actions/frac.png %%DATADIR%%/icons/hicolor/16x16/actions/gsub.png %%DATADIR%%/icons/hicolor/16x16/actions/gsubup.png %%DATADIR%%/icons/hicolor/16x16/actions/gsup.png %%DATADIR%%/icons/hicolor/16x16/actions/insert-page-break.png %%DATADIR%%/icons/hicolor/16x16/actions/int.png %%DATADIR%%/icons/hicolor/16x16/actions/lines-connector.png %%DATADIR%%/icons/hicolor/16x16/actions/lsub.png %%DATADIR%%/icons/hicolor/16x16/actions/lsup.png %%DATADIR%%/icons/hicolor/16x16/actions/matrix.png %%DATADIR%%/icons/hicolor/16x16/actions/multiline.png %%DATADIR%%/icons/hicolor/16x16/actions/onetwomatrix.png %%DATADIR%%/icons/hicolor/16x16/actions/over.png %%DATADIR%%/icons/hicolor/16x16/actions/paren.png %%DATADIR%%/icons/hicolor/16x16/actions/root.png %%DATADIR%%/icons/hicolor/16x16/actions/rsub.png %%DATADIR%%/icons/hicolor/16x16/actions/rsubup.png %%DATADIR%%/icons/hicolor/16x16/actions/rsup.png %%DATADIR%%/icons/hicolor/16x16/actions/snap-bounding-box.png %%DATADIR%%/icons/hicolor/16x16/actions/snap-extension.png %%DATADIR%%/icons/hicolor/16x16/actions/sqrt.png %%DATADIR%%/icons/hicolor/16x16/actions/standard-connector.png %%DATADIR%%/icons/hicolor/16x16/actions/straight-connector.png %%DATADIR%%/icons/hicolor/16x16/actions/table.png %%DATADIR%%/icons/hicolor/16x16/actions/under.png %%DATADIR%%/icons/hicolor/16x16/actions/vector.png %%DATADIR%%/icons/hicolor/22x22/actions/abs.png %%DATADIR%%/icons/hicolor/22x22/actions/artistictext-tool.png %%DATADIR%%/icons/hicolor/22x22/actions/backgroundtool.png %%DATADIR%%/icons/hicolor/22x22/actions/bevelled.png %%DATADIR%%/icons/hicolor/22x22/actions/brackets.png %%DATADIR%%/icons/hicolor/22x22/actions/calligraphy.png %%DATADIR%%/icons/hicolor/22x22/actions/callout-shape.png %%DATADIR%%/icons/hicolor/22x22/actions/circular-arrow-shape.png %%DATADIR%%/icons/hicolor/22x22/actions/createpath.png %%DATADIR%%/icons/hicolor/22x22/actions/cross-shape.png %%DATADIR%%/icons/hicolor/22x22/actions/editpath.png %%DATADIR%%/icons/hicolor/22x22/actions/edittext.png %%DATADIR%%/icons/hicolor/22x22/actions/ellipse-shape.png %%DATADIR%%/icons/hicolor/22x22/actions/enclosed.png %%DATADIR%%/icons/hicolor/22x22/actions/flower-shape.png %%DATADIR%%/icons/hicolor/22x22/actions/format-break-node.png %%DATADIR%%/icons/hicolor/22x22/actions/format-connect-node.png %%DATADIR%%/icons/hicolor/22x22/actions/format-convert-to-path.png %%DATADIR%%/icons/hicolor/22x22/actions/format-disconnect-node.png %%DATADIR%%/icons/hicolor/22x22/actions/format-insert-node.png %%DATADIR%%/icons/hicolor/22x22/actions/format-join-node.png %%DATADIR%%/icons/hicolor/22x22/actions/format-node-curve.png %%DATADIR%%/icons/hicolor/22x22/actions/format-node-line.png %%DATADIR%%/icons/hicolor/22x22/actions/format-remove-node.png %%DATADIR%%/icons/hicolor/22x22/actions/format-segment-curve.png %%DATADIR%%/icons/hicolor/22x22/actions/format-segment-line.png %%DATADIR%%/icons/hicolor/22x22/actions/frac.png %%DATADIR%%/icons/hicolor/22x22/actions/gearhead-shape.png %%DATADIR%%/icons/hicolor/22x22/actions/gradient.png %%DATADIR%%/icons/hicolor/22x22/actions/gsub.png %%DATADIR%%/icons/hicolor/22x22/actions/gsubup.png %%DATADIR%%/icons/hicolor/22x22/actions/gsup.png %%DATADIR%%/icons/hicolor/22x22/actions/hand.png %%DATADIR%%/icons/hicolor/22x22/actions/hexagon-shape.png %%DATADIR%%/icons/hicolor/22x22/actions/inscol.png %%DATADIR%%/icons/hicolor/22x22/actions/insrow.png %%DATADIR%%/icons/hicolor/22x22/actions/int.png %%DATADIR%%/icons/hicolor/22x22/actions/lsub.png %%DATADIR%%/icons/hicolor/22x22/actions/lsup.png %%DATADIR%%/icons/hicolor/22x22/actions/matrix.png %%DATADIR%%/icons/hicolor/22x22/actions/multiline.png %%DATADIR%%/icons/hicolor/22x22/actions/music-cross.png %%DATADIR%%/icons/hicolor/22x22/actions/music-dottednote.png %%DATADIR%%/icons/hicolor/22x22/actions/music-doublecross.png %%DATADIR%%/icons/hicolor/22x22/actions/music-doubleflat.png %%DATADIR%%/icons/hicolor/22x22/actions/music-flat.png %%DATADIR%%/icons/hicolor/22x22/actions/music-natural.png %%DATADIR%%/icons/hicolor/22x22/actions/music-note-128th.png %%DATADIR%%/icons/hicolor/22x22/actions/music-note-16th.png %%DATADIR%%/icons/hicolor/22x22/actions/music-note-32nd.png %%DATADIR%%/icons/hicolor/22x22/actions/music-note-64th.png %%DATADIR%%/icons/hicolor/22x22/actions/music-note-breve.png %%DATADIR%%/icons/hicolor/22x22/actions/music-note-eighth.png %%DATADIR%%/icons/hicolor/22x22/actions/music-note-half.png %%DATADIR%%/icons/hicolor/22x22/actions/music-note-quarter.png %%DATADIR%%/icons/hicolor/22x22/actions/music-note-whole.png %%DATADIR%%/icons/hicolor/22x22/actions/music-rest-128th.png %%DATADIR%%/icons/hicolor/22x22/actions/music-rest-16th.png %%DATADIR%%/icons/hicolor/22x22/actions/music-rest-32nd.png %%DATADIR%%/icons/hicolor/22x22/actions/music-rest-64th.png %%DATADIR%%/icons/hicolor/22x22/actions/music-rest-breve.png %%DATADIR%%/icons/hicolor/22x22/actions/music-rest-eighth.png %%DATADIR%%/icons/hicolor/22x22/actions/music-rest-half.png %%DATADIR%%/icons/hicolor/22x22/actions/music-rest-quarter.png %%DATADIR%%/icons/hicolor/22x22/actions/music-rest-whole.png %%DATADIR%%/icons/hicolor/22x22/actions/music-tiednote.png %%DATADIR%%/icons/hicolor/22x22/actions/node-type-cusp.png %%DATADIR%%/icons/hicolor/22x22/actions/node-type-smooth.png %%DATADIR%%/icons/hicolor/22x22/actions/node-type-symmetric.png %%DATADIR%%/icons/hicolor/22x22/actions/onetwomatrix.png %%DATADIR%%/icons/hicolor/22x22/actions/over.png %%DATADIR%%/icons/hicolor/22x22/actions/paren.png %%DATADIR%%/icons/hicolor/22x22/actions/pathshape.png %%DATADIR%%/icons/hicolor/22x22/actions/pattern.png %%DATADIR%%/icons/hicolor/22x22/actions/pentagon-shape.png %%DATADIR%%/icons/hicolor/22x22/actions/rectangle-shape.png %%DATADIR%%/icons/hicolor/22x22/actions/remcol.png %%DATADIR%%/icons/hicolor/22x22/actions/remrow.png %%DATADIR%%/icons/hicolor/22x22/actions/root.png %%DATADIR%%/icons/hicolor/22x22/actions/rsub.png %%DATADIR%%/icons/hicolor/22x22/actions/rsubup.png %%DATADIR%%/icons/hicolor/22x22/actions/rsup.png %%DATADIR%%/icons/hicolor/22x22/actions/select.png %%DATADIR%%/icons/hicolor/22x22/actions/smiley-shape.png %%DATADIR%%/icons/hicolor/22x22/actions/spiral-shape.png %%DATADIR%%/icons/hicolor/22x22/actions/sqrt.png %%DATADIR%%/icons/hicolor/22x22/actions/star-shape.png %%DATADIR%%/icons/hicolor/22x22/actions/table.png %%DATADIR%%/icons/hicolor/22x22/actions/text-put-on-path.png %%DATADIR%%/icons/hicolor/22x22/actions/text-remove-from-path.png %%DATADIR%%/icons/hicolor/22x22/actions/tool-text.png %%DATADIR%%/icons/hicolor/22x22/actions/tool_references.png %%DATADIR%%/icons/hicolor/22x22/actions/tool_review.png %%DATADIR%%/icons/hicolor/22x22/actions/under.png %%DATADIR%%/icons/hicolor/22x22/actions/vector.png %%DATADIR%%/icons/hicolor/22x22/actions/zoom-pixels.png %%DATADIR%%/icons/hicolor/32x32/actions/abs.png %%DATADIR%%/icons/hicolor/32x32/actions/bevelled.png %%DATADIR%%/icons/hicolor/32x32/actions/brackets.png %%DATADIR%%/icons/hicolor/32x32/actions/enclosed.png %%DATADIR%%/icons/hicolor/32x32/actions/frac.png %%DATADIR%%/icons/hicolor/32x32/actions/gsub.png %%DATADIR%%/icons/hicolor/32x32/actions/gsubup.png %%DATADIR%%/icons/hicolor/32x32/actions/gsup.png %%DATADIR%%/icons/hicolor/32x32/actions/insert-endnote.png %%DATADIR%%/icons/hicolor/32x32/actions/insert-footnote.png %%DATADIR%%/icons/hicolor/32x32/actions/insert-page-break.png %%DATADIR%%/icons/hicolor/32x32/actions/insert-table-of-contents.png %%DATADIR%%/icons/hicolor/32x32/actions/int.png %%DATADIR%%/icons/hicolor/32x32/actions/lsub.png %%DATADIR%%/icons/hicolor/32x32/actions/lsup.png %%DATADIR%%/icons/hicolor/32x32/actions/matrix.png %%DATADIR%%/icons/hicolor/32x32/actions/multiline.png %%DATADIR%%/icons/hicolor/32x32/actions/onetwomatrix.png %%DATADIR%%/icons/hicolor/32x32/actions/over.png %%DATADIR%%/icons/hicolor/32x32/actions/paren.png %%DATADIR%%/icons/hicolor/32x32/actions/root.png %%DATADIR%%/icons/hicolor/32x32/actions/rsub.png %%DATADIR%%/icons/hicolor/32x32/actions/rsubup.png %%DATADIR%%/icons/hicolor/32x32/actions/rsup.png %%DATADIR%%/icons/hicolor/32x32/actions/shape-choose.png %%DATADIR%%/icons/hicolor/32x32/actions/sqrt.png %%DATADIR%%/icons/hicolor/32x32/actions/table.png %%DATADIR%%/icons/hicolor/32x32/actions/tool_imageeffects.png %%DATADIR%%/icons/hicolor/32x32/actions/under.png %%DATADIR%%/icons/hicolor/32x32/actions/vector.png %%DATADIR%%/icons/hicolor/32x32/mimetypes/x-shape-connection.png %%DATADIR%%/icons/hicolor/32x32/mimetypes/x-shape-formula.png %%DATADIR%%/icons/hicolor/32x32/mimetypes/x-shape-image.png %%DATADIR%%/icons/hicolor/32x32/mimetypes/x-shape-text.png %%DATADIR%%/icons/hicolor/48x48/actions/table.png %%DATADIR%%/icons/hicolor/scalable/actions/artistictext-tool.svg %%DATADIR%%/icons/hicolor/scalable/actions/snap-bounding-box.svg %%DATADIR%%/icons/hicolor/scalable/actions/snap-extension.svg %%DATADIR%%/icons/hicolor/scalable/actions/table.svgz %%DATADIR%%/icons/hicolor/scalable/actions/text-put-on-path.svg %%DATADIR%%/icons/hicolor/scalable/actions/text-remove-from-path.svg %%DATADIR%%/palettes/concept-cookie.gpl %%DATADIR%%/palettes/default.gpl %%DATADIR%%/palettes/gradient.gpl %%DATADIR%%/palettes/marker.gpl %%DATADIR%%/palettes/pixelart-16.gpl %%DATADIR%%/palettes/pixelart-32.gpl %%DATADIR%%/palettes/ps.gpl %%DATADIR%%/palettes/swatch-cmyk.gpl %%DATADIR%%/palettes/swatch-colored-grey.gpl %%DATADIR%%/palettes/swatch-rgb.gpl %%DATADIR%%/palettes/swatche.gpl %%DATADIR%%/palettes/web.gpl %%DATADIR%%/pics/questionmark.png %%DATADIR%%/stencils/Assorted/arrow-chevron.desktop %%DATADIR%%/stencils/Assorted/arrow-chevron.odg %%DATADIR%%/stencils/Assorted/arrow-chevron.png %%DATADIR%%/stencils/Assorted/arrow-down.desktop %%DATADIR%%/stencils/Assorted/arrow-down.odg %%DATADIR%%/stencils/Assorted/arrow-down.png %%DATADIR%%/stencils/Assorted/arrow-left-notched.desktop %%DATADIR%%/stencils/Assorted/arrow-left-notched.odg %%DATADIR%%/stencils/Assorted/arrow-left-notched.png %%DATADIR%%/stencils/Assorted/arrow-left-right-up.desktop %%DATADIR%%/stencils/Assorted/arrow-left-right-up.odg %%DATADIR%%/stencils/Assorted/arrow-left-right-up.png %%DATADIR%%/stencils/Assorted/arrow-left-right.desktop %%DATADIR%%/stencils/Assorted/arrow-left-right.odg %%DATADIR%%/stencils/Assorted/arrow-left-right.png %%DATADIR%%/stencils/Assorted/arrow-left-up.desktop %%DATADIR%%/stencils/Assorted/arrow-left-up.odg %%DATADIR%%/stencils/Assorted/arrow-left-up.png %%DATADIR%%/stencils/Assorted/arrow-left.desktop %%DATADIR%%/stencils/Assorted/arrow-left.odg %%DATADIR%%/stencils/Assorted/arrow-left.png %%DATADIR%%/stencils/Assorted/arrow-pentagon.desktop %%DATADIR%%/stencils/Assorted/arrow-pentagon.odg %%DATADIR%%/stencils/Assorted/arrow-pentagon.png %%DATADIR%%/stencils/Assorted/arrow-quad.desktop %%DATADIR%%/stencils/Assorted/arrow-quad.odg %%DATADIR%%/stencils/Assorted/arrow-quad.png %%DATADIR%%/stencils/Assorted/arrow-right-notched.desktop %%DATADIR%%/stencils/Assorted/arrow-right-notched.odg %%DATADIR%%/stencils/Assorted/arrow-right-notched.png %%DATADIR%%/stencils/Assorted/arrow-right.desktop %%DATADIR%%/stencils/Assorted/arrow-right.odg %%DATADIR%%/stencils/Assorted/arrow-right.png %%DATADIR%%/stencils/Assorted/arrow-turn-up.desktop %%DATADIR%%/stencils/Assorted/arrow-turn-up.odg %%DATADIR%%/stencils/Assorted/arrow-turn-up.png %%DATADIR%%/stencils/Assorted/arrow-up-down-left.desktop %%DATADIR%%/stencils/Assorted/arrow-up-down-left.odg %%DATADIR%%/stencils/Assorted/arrow-up-down-left.png %%DATADIR%%/stencils/Assorted/arrow-up-down.desktop %%DATADIR%%/stencils/Assorted/arrow-up-down.odg %%DATADIR%%/stencils/Assorted/arrow-up-down.png %%DATADIR%%/stencils/Assorted/arrow-up.desktop %%DATADIR%%/stencils/Assorted/arrow-up.odg %%DATADIR%%/stencils/Assorted/arrow-up.png %%DATADIR%%/stencils/Assorted/circle-quarter.desktop %%DATADIR%%/stencils/Assorted/circle-quarter.odg %%DATADIR%%/stencils/Assorted/circle-quarter.png %%DATADIR%%/stencils/Assorted/circle.desktop %%DATADIR%%/stencils/Assorted/circle.odg %%DATADIR%%/stencils/Assorted/circle.png %%DATADIR%%/stencils/Assorted/collection.desktop %%DATADIR%%/stencils/Assorted/cross-maltese.desktop %%DATADIR%%/stencils/Assorted/cross-maltese.odg %%DATADIR%%/stencils/Assorted/cross-maltese.png %%DATADIR%%/stencils/Assorted/cross-swiss.desktop %%DATADIR%%/stencils/Assorted/cross-swiss.odg %%DATADIR%%/stencils/Assorted/cross-swiss.png %%DATADIR%%/stencils/Assorted/diamond.desktop %%DATADIR%%/stencils/Assorted/diamond.odg %%DATADIR%%/stencils/Assorted/diamond.png %%DATADIR%%/stencils/Assorted/heart.desktop %%DATADIR%%/stencils/Assorted/heart.odg %%DATADIR%%/stencils/Assorted/heart.png %%DATADIR%%/stencils/Assorted/heptagon.desktop %%DATADIR%%/stencils/Assorted/heptagon.odg %%DATADIR%%/stencils/Assorted/heptagon.png %%DATADIR%%/stencils/Assorted/hexagon.desktop %%DATADIR%%/stencils/Assorted/hexagon.odg %%DATADIR%%/stencils/Assorted/hexagon.png %%DATADIR%%/stencils/Assorted/moon-quarter.desktop %%DATADIR%%/stencils/Assorted/moon-quarter.odg %%DATADIR%%/stencils/Assorted/moon-quarter.png %%DATADIR%%/stencils/Assorted/octagon.desktop %%DATADIR%%/stencils/Assorted/octagon.odg %%DATADIR%%/stencils/Assorted/octagon.png %%DATADIR%%/stencils/Assorted/parallelogram-horizontal.desktop %%DATADIR%%/stencils/Assorted/parallelogram-horizontal.odg %%DATADIR%%/stencils/Assorted/parallelogram-horizontal.png %%DATADIR%%/stencils/Assorted/parallelogram-vertical.desktop %%DATADIR%%/stencils/Assorted/parallelogram-vertical.odg %%DATADIR%%/stencils/Assorted/parallelogram-vertical.png %%DATADIR%%/stencils/Assorted/pentagon.desktop %%DATADIR%%/stencils/Assorted/pentagon.odg %%DATADIR%%/stencils/Assorted/pentagon.png %%DATADIR%%/stencils/Assorted/square.desktop %%DATADIR%%/stencils/Assorted/square.odg %%DATADIR%%/stencils/Assorted/square.png %%DATADIR%%/stencils/Assorted/star4.desktop %%DATADIR%%/stencils/Assorted/star4.odg %%DATADIR%%/stencils/Assorted/star4.png %%DATADIR%%/stencils/Assorted/star4curved.desktop %%DATADIR%%/stencils/Assorted/star4curved.odg %%DATADIR%%/stencils/Assorted/star4curved.png %%DATADIR%%/stencils/Assorted/star5.desktop %%DATADIR%%/stencils/Assorted/star5.odg %%DATADIR%%/stencils/Assorted/star5.png %%DATADIR%%/stencils/Assorted/star6.desktop %%DATADIR%%/stencils/Assorted/star6.odg %%DATADIR%%/stencils/Assorted/star6.png %%DATADIR%%/stencils/Assorted/star7.desktop %%DATADIR%%/stencils/Assorted/star7.odg %%DATADIR%%/stencils/Assorted/star7.png %%DATADIR%%/stencils/Assorted/star8.desktop %%DATADIR%%/stencils/Assorted/star8.odg %%DATADIR%%/stencils/Assorted/star8.png %%DATADIR%%/stencils/Assorted/star8curved.desktop %%DATADIR%%/stencils/Assorted/star8curved.odg %%DATADIR%%/stencils/Assorted/star8curved.png %%DATADIR%%/stencils/Assorted/star8sharp.desktop %%DATADIR%%/stencils/Assorted/star8sharp.odg %%DATADIR%%/stencils/Assorted/star8sharp.png %%DATADIR%%/stencils/Assorted/sun.desktop %%DATADIR%%/stencils/Assorted/sun.odg %%DATADIR%%/stencils/Assorted/sun.png %%DATADIR%%/stencils/Assorted/trapezoid.desktop %%DATADIR%%/stencils/Assorted/trapezoid.odg %%DATADIR%%/stencils/Assorted/trapezoid.png %%DATADIR%%/stencils/Assorted/triangle-isoceles.desktop %%DATADIR%%/stencils/Assorted/triangle-isoceles.odg %%DATADIR%%/stencils/Assorted/triangle-isoceles.png %%DATADIR%%/stencils/Assorted/triangle-rightangle.desktop %%DATADIR%%/stencils/Assorted/triangle-rightangle.odg %%DATADIR%%/stencils/Assorted/triangle-rightangle.png %%DATADIR%%/stencils/BPMN/Activity-Looping.desktop %%DATADIR%%/stencils/BPMN/Activity-Looping.odg %%DATADIR%%/stencils/BPMN/Activity-Looping.png %%DATADIR%%/stencils/BPMN/Ad-Hoc-Collapsed-Sub-Process.desktop %%DATADIR%%/stencils/BPMN/Ad-Hoc-Collapsed-Sub-Process.odg %%DATADIR%%/stencils/BPMN/Ad-Hoc-Collapsed-Sub-Process.png %%DATADIR%%/stencils/BPMN/Collapsed-Sub-Process.desktop %%DATADIR%%/stencils/BPMN/Collapsed-Sub-Process.odg %%DATADIR%%/stencils/BPMN/Collapsed-Sub-Process.png %%DATADIR%%/stencils/BPMN/Compensation-Collapsed-Sub-Process.desktop %%DATADIR%%/stencils/BPMN/Compensation-Collapsed-Sub-Process.odg %%DATADIR%%/stencils/BPMN/Compensation-Collapsed-Sub-Process.png %%DATADIR%%/stencils/BPMN/Compensation.desktop %%DATADIR%%/stencils/BPMN/Compensation.odg %%DATADIR%%/stencils/BPMN/Compensation.png %%DATADIR%%/stencils/BPMN/Data-Object.desktop %%DATADIR%%/stencils/BPMN/Data-Object.odg %%DATADIR%%/stencils/BPMN/Data-Object.png %%DATADIR%%/stencils/BPMN/End-Event-Cancel.desktop %%DATADIR%%/stencils/BPMN/End-Event-Cancel.odg %%DATADIR%%/stencils/BPMN/End-Event-Cancel.png %%DATADIR%%/stencils/BPMN/End-Event-Compensation.desktop %%DATADIR%%/stencils/BPMN/End-Event-Compensation.odg %%DATADIR%%/stencils/BPMN/End-Event-Compensation.png %%DATADIR%%/stencils/BPMN/End-Event-Error.desktop %%DATADIR%%/stencils/BPMN/End-Event-Error.odg %%DATADIR%%/stencils/BPMN/End-Event-Error.png %%DATADIR%%/stencils/BPMN/End-Event-Link.desktop %%DATADIR%%/stencils/BPMN/End-Event-Link.odg %%DATADIR%%/stencils/BPMN/End-Event-Link.png %%DATADIR%%/stencils/BPMN/End-Event-Message.desktop %%DATADIR%%/stencils/BPMN/End-Event-Message.odg %%DATADIR%%/stencils/BPMN/End-Event-Message.png %%DATADIR%%/stencils/BPMN/End-Event-Multiple.desktop %%DATADIR%%/stencils/BPMN/End-Event-Multiple.odg %%DATADIR%%/stencils/BPMN/End-Event-Multiple.png %%DATADIR%%/stencils/BPMN/End-Event-Terminate.desktop %%DATADIR%%/stencils/BPMN/End-Event-Terminate.odg %%DATADIR%%/stencils/BPMN/End-Event-Terminate.png %%DATADIR%%/stencils/BPMN/End-Event.desktop %%DATADIR%%/stencils/BPMN/End-Event.odg %%DATADIR%%/stencils/BPMN/End-Event.png %%DATADIR%%/stencils/BPMN/Gateway-Complex.desktop %%DATADIR%%/stencils/BPMN/Gateway-Complex.odg %%DATADIR%%/stencils/BPMN/Gateway-Complex.png %%DATADIR%%/stencils/BPMN/Gateway-Exclusive-XOR-Data-Based.desktop %%DATADIR%%/stencils/BPMN/Gateway-Exclusive-XOR-Data-Based.odg %%DATADIR%%/stencils/BPMN/Gateway-Exclusive-XOR-Data-Based.png %%DATADIR%%/stencils/BPMN/Gateway-Exclusive-XOR-Event-Based.desktop %%DATADIR%%/stencils/BPMN/Gateway-Exclusive-XOR-Event-Based.odg %%DATADIR%%/stencils/BPMN/Gateway-Exclusive-XOR-Event-Based.png %%DATADIR%%/stencils/BPMN/Gateway-Inclusive-OR.desktop %%DATADIR%%/stencils/BPMN/Gateway-Inclusive-OR.odg %%DATADIR%%/stencils/BPMN/Gateway-Inclusive-OR.png %%DATADIR%%/stencils/BPMN/Gateway-Parallel-AND.desktop %%DATADIR%%/stencils/BPMN/Gateway-Parallel-AND.odg %%DATADIR%%/stencils/BPMN/Gateway-Parallel-AND.png %%DATADIR%%/stencils/BPMN/Gateway.desktop %%DATADIR%%/stencils/BPMN/Gateway.odg %%DATADIR%%/stencils/BPMN/Gateway.png %%DATADIR%%/stencils/BPMN/Group.desktop %%DATADIR%%/stencils/BPMN/Group.odg %%DATADIR%%/stencils/BPMN/Group.png %%DATADIR%%/stencils/BPMN/Intermediate-Event-Cancel.desktop %%DATADIR%%/stencils/BPMN/Intermediate-Event-Cancel.odg %%DATADIR%%/stencils/BPMN/Intermediate-Event-Cancel.png %%DATADIR%%/stencils/BPMN/Intermediate-Event-Compensation.desktop %%DATADIR%%/stencils/BPMN/Intermediate-Event-Compensation.odg %%DATADIR%%/stencils/BPMN/Intermediate-Event-Compensation.png %%DATADIR%%/stencils/BPMN/Intermediate-Event-Error.desktop %%DATADIR%%/stencils/BPMN/Intermediate-Event-Error.odg %%DATADIR%%/stencils/BPMN/Intermediate-Event-Error.png %%DATADIR%%/stencils/BPMN/Intermediate-Event-Link.desktop %%DATADIR%%/stencils/BPMN/Intermediate-Event-Link.odg %%DATADIR%%/stencils/BPMN/Intermediate-Event-Link.png %%DATADIR%%/stencils/BPMN/Intermediate-Event-Message.desktop %%DATADIR%%/stencils/BPMN/Intermediate-Event-Message.odg %%DATADIR%%/stencils/BPMN/Intermediate-Event-Message.png %%DATADIR%%/stencils/BPMN/Intermediate-Event-Multiple.desktop %%DATADIR%%/stencils/BPMN/Intermediate-Event-Multiple.odg %%DATADIR%%/stencils/BPMN/Intermediate-Event-Multiple.png %%DATADIR%%/stencils/BPMN/Intermediate-Event-Rule.desktop %%DATADIR%%/stencils/BPMN/Intermediate-Event-Rule.odg %%DATADIR%%/stencils/BPMN/Intermediate-Event-Rule.png %%DATADIR%%/stencils/BPMN/Intermediate-Event-Timer.desktop %%DATADIR%%/stencils/BPMN/Intermediate-Event-Timer.odg %%DATADIR%%/stencils/BPMN/Intermediate-Event-Timer.png %%DATADIR%%/stencils/BPMN/Intermediate-Event.desktop %%DATADIR%%/stencils/BPMN/Intermediate-Event.odg %%DATADIR%%/stencils/BPMN/Intermediate-Event.png %%DATADIR%%/stencils/BPMN/Looping-Collapsed-Sub-Process.desktop %%DATADIR%%/stencils/BPMN/Looping-Collapsed-Sub-Process.odg %%DATADIR%%/stencils/BPMN/Looping-Collapsed-Sub-Process.png %%DATADIR%%/stencils/BPMN/Multiple-Instance-Collapsed-Sub-Process.desktop %%DATADIR%%/stencils/BPMN/Multiple-Instance-Collapsed-Sub-Process.odg %%DATADIR%%/stencils/BPMN/Multiple-Instance-Collapsed-Sub-Process.png %%DATADIR%%/stencils/BPMN/Multiple-Instance-Task.desktop %%DATADIR%%/stencils/BPMN/Multiple-Instance-Task.odg %%DATADIR%%/stencils/BPMN/Multiple-Instance-Task.png %%DATADIR%%/stencils/BPMN/Start-Event-Link.desktop %%DATADIR%%/stencils/BPMN/Start-Event-Link.odg %%DATADIR%%/stencils/BPMN/Start-Event-Link.png %%DATADIR%%/stencils/BPMN/Start-Event-Message.desktop %%DATADIR%%/stencils/BPMN/Start-Event-Message.odg %%DATADIR%%/stencils/BPMN/Start-Event-Message.png %%DATADIR%%/stencils/BPMN/Start-Event-Multiple.desktop %%DATADIR%%/stencils/BPMN/Start-Event-Multiple.odg %%DATADIR%%/stencils/BPMN/Start-Event-Multiple.png %%DATADIR%%/stencils/BPMN/Start-Event-Rule.desktop %%DATADIR%%/stencils/BPMN/Start-Event-Rule.odg %%DATADIR%%/stencils/BPMN/Start-Event-Rule.png %%DATADIR%%/stencils/BPMN/Start-Event-Timer.desktop %%DATADIR%%/stencils/BPMN/Start-Event-Timer.odg %%DATADIR%%/stencils/BPMN/Start-Event-Timer.png %%DATADIR%%/stencils/BPMN/Start-Event.desktop %%DATADIR%%/stencils/BPMN/Start-Event.odg %%DATADIR%%/stencils/BPMN/Start-Event.png %%DATADIR%%/stencils/BPMN/Task.desktop %%DATADIR%%/stencils/BPMN/Task.odg %%DATADIR%%/stencils/BPMN/Task.png %%DATADIR%%/stencils/BPMN/Text-Annotation.desktop %%DATADIR%%/stencils/BPMN/Text-Annotation.odg %%DATADIR%%/stencils/BPMN/Text-Annotation.png %%DATADIR%%/stencils/BPMN/Transaction.desktop %%DATADIR%%/stencils/BPMN/Transaction.odg %%DATADIR%%/stencils/BPMN/Transaction.png %%DATADIR%%/stencils/BPMN/collection.desktop %%DATADIR%%/stencils/Basic_Flowchart/card.desktop %%DATADIR%%/stencils/Basic_Flowchart/card.odg %%DATADIR%%/stencils/Basic_Flowchart/collection.desktop %%DATADIR%%/stencils/Basic_Flowchart/data.desktop %%DATADIR%%/stencils/Basic_Flowchart/data.odg %%DATADIR%%/stencils/Basic_Flowchart/database.desktop %%DATADIR%%/stencils/Basic_Flowchart/database.odg %%DATADIR%%/stencils/Basic_Flowchart/decision.desktop %%DATADIR%%/stencils/Basic_Flowchart/decision.odg %%DATADIR%%/stencils/Basic_Flowchart/delay.desktop %%DATADIR%%/stencils/Basic_Flowchart/delay.odg %%DATADIR%%/stencils/Basic_Flowchart/direct_data.desktop %%DATADIR%%/stencils/Basic_Flowchart/direct_data.odg %%DATADIR%%/stencils/Basic_Flowchart/display.desktop %%DATADIR%%/stencils/Basic_Flowchart/display.odg %%DATADIR%%/stencils/Basic_Flowchart/document.desktop %%DATADIR%%/stencils/Basic_Flowchart/document.odg %%DATADIR%%/stencils/Basic_Flowchart/internal_storage.desktop %%DATADIR%%/stencils/Basic_Flowchart/internal_storage.odg %%DATADIR%%/stencils/Basic_Flowchart/loop_limit.desktop %%DATADIR%%/stencils/Basic_Flowchart/loop_limit.odg %%DATADIR%%/stencils/Basic_Flowchart/manual_input.desktop %%DATADIR%%/stencils/Basic_Flowchart/manual_input.odg %%DATADIR%%/stencils/Basic_Flowchart/manual_operation.desktop %%DATADIR%%/stencils/Basic_Flowchart/manual_operation.odg %%DATADIR%%/stencils/Basic_Flowchart/off-page_reference.desktop %%DATADIR%%/stencils/Basic_Flowchart/off-page_reference.odg %%DATADIR%%/stencils/Basic_Flowchart/paper_tape.desktop %%DATADIR%%/stencils/Basic_Flowchart/paper_tape.odg %%DATADIR%%/stencils/Basic_Flowchart/parallel_mode.desktop %%DATADIR%%/stencils/Basic_Flowchart/parallel_mode.odg %%DATADIR%%/stencils/Basic_Flowchart/predefined_process.desktop %%DATADIR%%/stencils/Basic_Flowchart/predefined_process.odg %%DATADIR%%/stencils/Basic_Flowchart/preparation.desktop %%DATADIR%%/stencils/Basic_Flowchart/preparation.odg %%DATADIR%%/stencils/Basic_Flowchart/process.desktop %%DATADIR%%/stencils/Basic_Flowchart/process.odg %%DATADIR%%/stencils/Basic_Flowchart/sequential_data.desktop %%DATADIR%%/stencils/Basic_Flowchart/sequential_data.odg %%DATADIR%%/stencils/Basic_Flowchart/start_1.desktop %%DATADIR%%/stencils/Basic_Flowchart/start_1.odg %%DATADIR%%/stencils/Basic_Flowchart/start_2.desktop %%DATADIR%%/stencils/Basic_Flowchart/start_2.odg %%DATADIR%%/stencils/Basic_Flowchart/stored_data.desktop %%DATADIR%%/stencils/Basic_Flowchart/stored_data.odg %%DATADIR%%/stencils/Basic_Flowchart/terminator.desktop %%DATADIR%%/stencils/Basic_Flowchart/terminator.odg %%DATADIR%%/stencils/Building_Site/circle_diagonal_quarters_filled.desktop %%DATADIR%%/stencils/Building_Site/circle_diagonal_quarters_filled.odg %%DATADIR%%/stencils/Building_Site/circle_diagonal_quarters_filled.png %%DATADIR%%/stencils/Building_Site/collection.desktop %%DATADIR%%/stencils/Building_Site/concrete_mixer.desktop %%DATADIR%%/stencils/Building_Site/concrete_mixer.odg %%DATADIR%%/stencils/Building_Site/concrete_mixer.png %%DATADIR%%/stencils/Building_Site/fence_horizontal.desktop %%DATADIR%%/stencils/Building_Site/fence_horizontal.odg %%DATADIR%%/stencils/Building_Site/fence_horizontal.png %%DATADIR%%/stencils/Building_Site/fence_vertical.desktop %%DATADIR%%/stencils/Building_Site/fence_vertical.odg %%DATADIR%%/stencils/Building_Site/fence_vertical.png %%DATADIR%%/stencils/Building_Site/pre_silo.desktop %%DATADIR%%/stencils/Building_Site/pre_silo.odg %%DATADIR%%/stencils/Building_Site/pre_silo.png %%DATADIR%%/stencils/Building_Site/proportioning_batcher.desktop %%DATADIR%%/stencils/Building_Site/proportioning_batcher.odg %%DATADIR%%/stencils/Building_Site/proportioning_batcher.png %%DATADIR%%/stencils/Building_Site/road_crossroads.desktop %%DATADIR%%/stencils/Building_Site/road_crossroads.odg %%DATADIR%%/stencils/Building_Site/road_crossroads.png %%DATADIR%%/stencils/Building_Site/road_horizontal.desktop %%DATADIR%%/stencils/Building_Site/road_horizontal.odg %%DATADIR%%/stencils/Building_Site/road_horizontal.png %%DATADIR%%/stencils/Building_Site/road_rotated_tee.desktop %%DATADIR%%/stencils/Building_Site/road_rotated_tee.odg %%DATADIR%%/stencils/Building_Site/road_rotated_tee.png %%DATADIR%%/stencils/Building_Site/road_tee.desktop %%DATADIR%%/stencils/Building_Site/road_tee.odg %%DATADIR%%/stencils/Building_Site/road_tee.png %%DATADIR%%/stencils/Building_Site/road_turn.desktop %%DATADIR%%/stencils/Building_Site/road_turn.odg %%DATADIR%%/stencils/Building_Site/road_turn.png %%DATADIR%%/stencils/Building_Site/road_vertical.desktop %%DATADIR%%/stencils/Building_Site/road_vertical.odg %%DATADIR%%/stencils/Building_Site/road_vertical.png %%DATADIR%%/stencils/Building_Site/slope_horizontal.desktop %%DATADIR%%/stencils/Building_Site/slope_horizontal.odg %%DATADIR%%/stencils/Building_Site/slope_horizontal.png %%DATADIR%%/stencils/Building_Site/slope_vertical.desktop %%DATADIR%%/stencils/Building_Site/slope_vertical.odg %%DATADIR%%/stencils/Building_Site/slope_vertical.png %%DATADIR%%/stencils/Building_Site/wall_horizontal.desktop %%DATADIR%%/stencils/Building_Site/wall_horizontal.odg %%DATADIR%%/stencils/Building_Site/wall_horizontal.png %%DATADIR%%/stencils/Building_Site/wall_vertical.desktop %%DATADIR%%/stencils/Building_Site/wall_vertical.odg %%DATADIR%%/stencils/Building_Site/wall_vertical.png %%DATADIR%%/stencils/CMOS/collection.desktop %%DATADIR%%/stencils/CMOS/gnd_h.desktop %%DATADIR%%/stencils/CMOS/gnd_h.odg %%DATADIR%%/stencils/CMOS/gnd_h.png %%DATADIR%%/stencils/CMOS/gnd_v.desktop %%DATADIR%%/stencils/CMOS/gnd_v.odg %%DATADIR%%/stencils/CMOS/gnd_v.png %%DATADIR%%/stencils/CMOS/nmos_h.desktop %%DATADIR%%/stencils/CMOS/nmos_h.odg %%DATADIR%%/stencils/CMOS/nmos_h.png %%DATADIR%%/stencils/CMOS/nmos_v.desktop %%DATADIR%%/stencils/CMOS/nmos_v.odg %%DATADIR%%/stencils/CMOS/nmos_v.png %%DATADIR%%/stencils/CMOS/pmos_h.desktop %%DATADIR%%/stencils/CMOS/pmos_h.odg %%DATADIR%%/stencils/CMOS/pmos_h.png %%DATADIR%%/stencils/CMOS/pmos_v.desktop %%DATADIR%%/stencils/CMOS/pmos_v.odg %%DATADIR%%/stencils/CMOS/pmos_v.png %%DATADIR%%/stencils/CMOS/vdd_h.desktop %%DATADIR%%/stencils/CMOS/vdd_h.odg %%DATADIR%%/stencils/CMOS/vdd_h.png %%DATADIR%%/stencils/CMOS/vdd_v.desktop %%DATADIR%%/stencils/CMOS/vdd_v.odg %%DATADIR%%/stencils/CMOS/vdd_v.png %%DATADIR%%/stencils/Central_Data_Processing/CPD_rack_15.desktop %%DATADIR%%/stencils/Central_Data_Processing/CPD_rack_15.odg %%DATADIR%%/stencils/Central_Data_Processing/CPD_rack_15.png %%DATADIR%%/stencils/Central_Data_Processing/CPD_rack_32.desktop %%DATADIR%%/stencils/Central_Data_Processing/CPD_rack_32.odg %%DATADIR%%/stencils/Central_Data_Processing/CPD_rack_32.png %%DATADIR%%/stencils/Central_Data_Processing/CPD_rack_36.desktop %%DATADIR%%/stencils/Central_Data_Processing/CPD_rack_36.odg %%DATADIR%%/stencils/Central_Data_Processing/CPD_rack_36.png %%DATADIR%%/stencils/Central_Data_Processing/CPD_rack_42.desktop %%DATADIR%%/stencils/Central_Data_Processing/CPD_rack_42.odg %%DATADIR%%/stencils/Central_Data_Processing/CPD_rack_42.png %%DATADIR%%/stencils/Central_Data_Processing/CPD_rack_44.desktop %%DATADIR%%/stencils/Central_Data_Processing/CPD_rack_44.odg %%DATADIR%%/stencils/Central_Data_Processing/CPD_rack_44.png %%DATADIR%%/stencils/Central_Data_Processing/CPD_rack_5.desktop %%DATADIR%%/stencils/Central_Data_Processing/CPD_rack_5.odg %%DATADIR%%/stencils/Central_Data_Processing/CPD_rack_5.png %%DATADIR%%/stencils/Central_Data_Processing/CPD_rack_7.desktop %%DATADIR%%/stencils/Central_Data_Processing/CPD_rack_7.odg %%DATADIR%%/stencils/Central_Data_Processing/CPD_rack_7.png %%DATADIR%%/stencils/Central_Data_Processing/Litter.desktop %%DATADIR%%/stencils/Central_Data_Processing/Litter.odg %%DATADIR%%/stencils/Central_Data_Processing/Litter.png %%DATADIR%%/stencils/Central_Data_Processing/Modem.desktop %%DATADIR%%/stencils/Central_Data_Processing/Modem.odg %%DATADIR%%/stencils/Central_Data_Processing/Modem.png %%DATADIR%%/stencils/Central_Data_Processing/Organizador_Rack_1U.desktop %%DATADIR%%/stencils/Central_Data_Processing/Organizador_Rack_1U.odg %%DATADIR%%/stencils/Central_Data_Processing/Organizador_Rack_1U.png %%DATADIR%%/stencils/Central_Data_Processing/Organizador_Rack_2U.desktop %%DATADIR%%/stencils/Central_Data_Processing/Organizador_Rack_2U.odg %%DATADIR%%/stencils/Central_Data_Processing/Organizador_Rack_2U.png %%DATADIR%%/stencils/Central_Data_Processing/Organizer_Rack_1U.desktop %%DATADIR%%/stencils/Central_Data_Processing/Organizer_Rack_1U.odg %%DATADIR%%/stencils/Central_Data_Processing/Organizer_Rack_1U.png %%DATADIR%%/stencils/Central_Data_Processing/Organizer_Rack_2U.desktop %%DATADIR%%/stencils/Central_Data_Processing/Organizer_Rack_2U.odg %%DATADIR%%/stencils/Central_Data_Processing/Organizer_Rack_2U.png %%DATADIR%%/stencils/Central_Data_Processing/Path_Painel_24P.desktop %%DATADIR%%/stencils/Central_Data_Processing/Path_Painel_24P.odg %%DATADIR%%/stencils/Central_Data_Processing/Path_Painel_24P.png %%DATADIR%%/stencils/Central_Data_Processing/Router.desktop %%DATADIR%%/stencils/Central_Data_Processing/Router.odg %%DATADIR%%/stencils/Central_Data_Processing/Router.png %%DATADIR%%/stencils/Central_Data_Processing/Server_Rack_1U.desktop %%DATADIR%%/stencils/Central_Data_Processing/Server_Rack_1U.odg %%DATADIR%%/stencils/Central_Data_Processing/Server_Rack_1U.png %%DATADIR%%/stencils/Central_Data_Processing/Server_Rack_2U.desktop %%DATADIR%%/stencils/Central_Data_Processing/Server_Rack_2U.odg %%DATADIR%%/stencils/Central_Data_Processing/Server_Rack_2U.png %%DATADIR%%/stencils/Central_Data_Processing/Server_Rack_2U_Slow.desktop %%DATADIR%%/stencils/Central_Data_Processing/Server_Rack_2U_Slow.odg %%DATADIR%%/stencils/Central_Data_Processing/Server_Rack_2U_Slow.png %%DATADIR%%/stencils/Central_Data_Processing/Server_Rack_2U_Very_Slow.desktop %%DATADIR%%/stencils/Central_Data_Processing/Server_Rack_2U_Very_Slow.odg %%DATADIR%%/stencils/Central_Data_Processing/Server_Rack_2U_Very_Slow.png %%DATADIR%%/stencils/Central_Data_Processing/Server_Rack_3U.desktop %%DATADIR%%/stencils/Central_Data_Processing/Server_Rack_3U.odg %%DATADIR%%/stencils/Central_Data_Processing/Server_Rack_3U.png %%DATADIR%%/stencils/Central_Data_Processing/Server_Rack_3U_Slow_Density.desktop %%DATADIR%%/stencils/Central_Data_Processing/Server_Rack_3U_Slow_Density.odg %%DATADIR%%/stencils/Central_Data_Processing/Server_Rack_3U_Slow_Density.png %%DATADIR%%/stencils/Central_Data_Processing/Server_Rack_4U.desktop %%DATADIR%%/stencils/Central_Data_Processing/Server_Rack_4U.odg %%DATADIR%%/stencils/Central_Data_Processing/Server_Rack_4U.png %%DATADIR%%/stencils/Central_Data_Processing/Server_Rack_4U_Right_Capacity.desktop %%DATADIR%%/stencils/Central_Data_Processing/Server_Rack_4U_Right_Capacity.odg %%DATADIR%%/stencils/Central_Data_Processing/Server_Rack_4U_Right_Capacity.png %%DATADIR%%/stencils/Central_Data_Processing/Server_Rack_4U_Slow_Capacity.desktop %%DATADIR%%/stencils/Central_Data_Processing/Server_Rack_4U_Slow_Capacity.odg %%DATADIR%%/stencils/Central_Data_Processing/Server_Rack_4U_Slow_Capacity.png %%DATADIR%%/stencils/Central_Data_Processing/Server_Rack_4U_Very_Right_Capacity.desktop %%DATADIR%%/stencils/Central_Data_Processing/Server_Rack_4U_Very_Right_Capacity.odg %%DATADIR%%/stencils/Central_Data_Processing/Server_Rack_4U_Very_Right_Capacity.png %%DATADIR%%/stencils/Central_Data_Processing/Server_Rack_5U.desktop %%DATADIR%%/stencils/Central_Data_Processing/Server_Rack_5U.odg %%DATADIR%%/stencils/Central_Data_Processing/Server_Rack_5U.png %%DATADIR%%/stencils/Central_Data_Processing/Server_Rack_5U_Right_Density.desktop %%DATADIR%%/stencils/Central_Data_Processing/Server_Rack_5U_Right_Density.odg %%DATADIR%%/stencils/Central_Data_Processing/Server_Rack_5U_Right_Density.png %%DATADIR%%/stencils/Central_Data_Processing/Storage_Rack_3U.desktop %%DATADIR%%/stencils/Central_Data_Processing/Storage_Rack_3U.odg %%DATADIR%%/stencils/Central_Data_Processing/Storage_Rack_3U.png %%DATADIR%%/stencils/Central_Data_Processing/Storage_Rack_3U_SAN.desktop %%DATADIR%%/stencils/Central_Data_Processing/Storage_Rack_3U_SAN.odg %%DATADIR%%/stencils/Central_Data_Processing/Storage_Rack_3U_SAN.png %%DATADIR%%/stencils/Central_Data_Processing/Switch_Rack_24P.desktop %%DATADIR%%/stencils/Central_Data_Processing/Switch_Rack_24P.odg %%DATADIR%%/stencils/Central_Data_Processing/Switch_Rack_24P.png %%DATADIR%%/stencils/Central_Data_Processing/Switch_Rack_16P.desktop %%DATADIR%%/stencils/Central_Data_Processing/Switch_Rack_16P.odg %%DATADIR%%/stencils/Central_Data_Processing/Switch_Rack_16P.png %%DATADIR%%/stencils/Central_Data_Processing/Switch_Rack_48P.desktop %%DATADIR%%/stencils/Central_Data_Processing/Switch_Rack_48P.odg %%DATADIR%%/stencils/Central_Data_Processing/Switch_Rack_48P.png %%DATADIR%%/stencils/Central_Data_Processing/Switch_Rack_50P.desktop %%DATADIR%%/stencils/Central_Data_Processing/Switch_Rack_50P.odg %%DATADIR%%/stencils/Central_Data_Processing/Switch_Rack_50P.png %%DATADIR%%/stencils/Central_Data_Processing/Telephone_exchange.desktop %%DATADIR%%/stencils/Central_Data_Processing/Telephone_exchange.odg %%DATADIR%%/stencils/Central_Data_Processing/Telephone_exchange.png %%DATADIR%%/stencils/Central_Data_Processing/Voice_Painel_20P.desktop %%DATADIR%%/stencils/Central_Data_Processing/Voice_Painel_20P.odg %%DATADIR%%/stencils/Central_Data_Processing/Voice_Painel_20P.png %%DATADIR%%/stencils/Central_Data_Processing/Voice_Painel_50P.desktop %%DATADIR%%/stencils/Central_Data_Processing/Voice_Painel_50P.odg %%DATADIR%%/stencils/Central_Data_Processing/Voice_Painel_50P.png %%DATADIR%%/stencils/Central_Data_Processing/collection.desktop %%DATADIR%%/stencils/ChemEng/ACgen.desktop %%DATADIR%%/stencils/ChemEng/ACgen.odg %%DATADIR%%/stencils/ChemEng/ACgen.png %%DATADIR%%/stencils/ChemEng/SaT-fixedtube.desktop %%DATADIR%%/stencils/ChemEng/SaT-fixedtube.odg %%DATADIR%%/stencils/ChemEng/SaT-fixedtube.png %%DATADIR%%/stencils/ChemEng/SaT-floatinghead.desktop %%DATADIR%%/stencils/ChemEng/SaT-floatinghead.odg %%DATADIR%%/stencils/ChemEng/SaT-floatinghead.png %%DATADIR%%/stencils/ChemEng/aircooler.desktop %%DATADIR%%/stencils/ChemEng/aircooler.odg %%DATADIR%%/stencils/ChemEng/aircooler.png %%DATADIR%%/stencils/ChemEng/airforced.desktop %%DATADIR%%/stencils/ChemEng/airforced.odg %%DATADIR%%/stencils/ChemEng/airforced.png %%DATADIR%%/stencils/ChemEng/airinduced.desktop %%DATADIR%%/stencils/ChemEng/airinduced.odg %%DATADIR%%/stencils/ChemEng/airinduced.png %%DATADIR%%/stencils/ChemEng/autoclave.desktop %%DATADIR%%/stencils/ChemEng/autoclave.odg %%DATADIR%%/stencils/ChemEng/autoclave.png %%DATADIR%%/stencils/ChemEng/bigtraycol.desktop %%DATADIR%%/stencils/ChemEng/bigtraycol.odg %%DATADIR%%/stencils/ChemEng/bigtraycol.png %%DATADIR%%/stencils/ChemEng/centrifuge.desktop %%DATADIR%%/stencils/ChemEng/centrifuge.odg %%DATADIR%%/stencils/ChemEng/centrifuge.png %%DATADIR%%/stencils/ChemEng/coil.desktop %%DATADIR%%/stencils/ChemEng/coil.odg %%DATADIR%%/stencils/ChemEng/coil.png %%DATADIR%%/stencils/ChemEng/coilv.desktop %%DATADIR%%/stencils/ChemEng/coilv.odg %%DATADIR%%/stencils/ChemEng/coilv.png %%DATADIR%%/stencils/ChemEng/collection.desktop %%DATADIR%%/stencils/ChemEng/compr.desktop %%DATADIR%%/stencils/ChemEng/compr.odg %%DATADIR%%/stencils/ChemEng/compr.png %%DATADIR%%/stencils/ChemEng/coveredtank.desktop %%DATADIR%%/stencils/ChemEng/coveredtank.odg %%DATADIR%%/stencils/ChemEng/coveredtank.png %%DATADIR%%/stencils/ChemEng/cyclone.desktop %%DATADIR%%/stencils/ChemEng/cyclone.odg %%DATADIR%%/stencils/ChemEng/cyclone.png %%DATADIR%%/stencils/ChemEng/displa.desktop %%DATADIR%%/stencils/ChemEng/displa.odg %%DATADIR%%/stencils/ChemEng/displa.png %%DATADIR%%/stencils/ChemEng/doublepipe.desktop %%DATADIR%%/stencils/ChemEng/doublepipe.odg %%DATADIR%%/stencils/ChemEng/doublepipe.png %%DATADIR%%/stencils/ChemEng/ejector.desktop %%DATADIR%%/stencils/ChemEng/ejector.odg %%DATADIR%%/stencils/ChemEng/ejector.png %%DATADIR%%/stencils/ChemEng/fan.desktop %%DATADIR%%/stencils/ChemEng/fan.odg %%DATADIR%%/stencils/ChemEng/fan.png %%DATADIR%%/stencils/ChemEng/filter.desktop %%DATADIR%%/stencils/ChemEng/filter.odg %%DATADIR%%/stencils/ChemEng/filter.png %%DATADIR%%/stencils/ChemEng/fixedroof.desktop %%DATADIR%%/stencils/ChemEng/fixedroof.odg %%DATADIR%%/stencils/ChemEng/fixedroof.png %%DATADIR%%/stencils/ChemEng/floatingroof.desktop %%DATADIR%%/stencils/ChemEng/floatingroof.odg %%DATADIR%%/stencils/ChemEng/floatingroof.png %%DATADIR%%/stencils/ChemEng/flowfan.desktop %%DATADIR%%/stencils/ChemEng/flowfan.odg %%DATADIR%%/stencils/ChemEng/flowfan.png %%DATADIR%%/stencils/ChemEng/fluidcont.desktop %%DATADIR%%/stencils/ChemEng/fluidcont.odg %%DATADIR%%/stencils/ChemEng/fluidcont.png %%DATADIR%%/stencils/ChemEng/furnace.desktop %%DATADIR%%/stencils/ChemEng/furnace.odg %%DATADIR%%/stencils/ChemEng/furnace.png %%DATADIR%%/stencils/ChemEng/gasholder.desktop %%DATADIR%%/stencils/ChemEng/gasholder.odg %%DATADIR%%/stencils/ChemEng/gasholder.png %%DATADIR%%/stencils/ChemEng/hx.desktop %%DATADIR%%/stencils/ChemEng/hx.odg %%DATADIR%%/stencils/ChemEng/hx.png %%DATADIR%%/stencils/ChemEng/hxv.desktop %%DATADIR%%/stencils/ChemEng/hxv.odg %%DATADIR%%/stencils/ChemEng/hxv.png %%DATADIR%%/stencils/ChemEng/kettle.desktop %%DATADIR%%/stencils/ChemEng/kettle.odg %%DATADIR%%/stencils/ChemEng/kettle.png %%DATADIR%%/stencils/ChemEng/knockout.desktop %%DATADIR%%/stencils/ChemEng/knockout.odg %%DATADIR%%/stencils/ChemEng/knockout.png %%DATADIR%%/stencils/ChemEng/measure.desktop %%DATADIR%%/stencils/ChemEng/measure.odg %%DATADIR%%/stencils/ChemEng/measure.png %%DATADIR%%/stencils/ChemEng/mixer.desktop %%DATADIR%%/stencils/ChemEng/mixer.odg %%DATADIR%%/stencils/ChemEng/mixer.png %%DATADIR%%/stencils/ChemEng/plate.desktop %%DATADIR%%/stencils/ChemEng/plate.odg %%DATADIR%%/stencils/ChemEng/plate.png %%DATADIR%%/stencils/ChemEng/pneum.desktop %%DATADIR%%/stencils/ChemEng/pneum.odg %%DATADIR%%/stencils/ChemEng/pneum.png %%DATADIR%%/stencils/ChemEng/pneumv.desktop %%DATADIR%%/stencils/ChemEng/pneumv.odg %%DATADIR%%/stencils/ChemEng/pneumv.png %%DATADIR%%/stencils/ChemEng/pnuemv.desktop %%DATADIR%%/stencils/ChemEng/pnuemv.odg %%DATADIR%%/stencils/ChemEng/pnuemv.png %%DATADIR%%/stencils/ChemEng/pump.desktop %%DATADIR%%/stencils/ChemEng/pump.odg %%DATADIR%%/stencils/ChemEng/pump.png %%DATADIR%%/stencils/ChemEng/reactor.desktop %%DATADIR%%/stencils/ChemEng/reactor.odg %%DATADIR%%/stencils/ChemEng/reactor.png %%DATADIR%%/stencils/ChemEng/recipr.desktop %%DATADIR%%/stencils/ChemEng/recipr.odg %%DATADIR%%/stencils/ChemEng/recipr.png %%DATADIR%%/stencils/ChemEng/regval.desktop %%DATADIR%%/stencils/ChemEng/regval.odg %%DATADIR%%/stencils/ChemEng/regval.png %%DATADIR%%/stencils/ChemEng/regvalv.desktop %%DATADIR%%/stencils/ChemEng/regvalv.odg %%DATADIR%%/stencils/ChemEng/regvalv.png %%DATADIR%%/stencils/ChemEng/sealedtank.desktop %%DATADIR%%/stencils/ChemEng/sealedtank.odg %%DATADIR%%/stencils/ChemEng/sealedtank.png %%DATADIR%%/stencils/ChemEng/settling.desktop %%DATADIR%%/stencils/ChemEng/settling.odg %%DATADIR%%/stencils/ChemEng/settling.png %%DATADIR%%/stencils/ChemEng/spray.desktop %%DATADIR%%/stencils/ChemEng/spray.odg %%DATADIR%%/stencils/ChemEng/spray.png %%DATADIR%%/stencils/ChemEng/spraydrier.desktop %%DATADIR%%/stencils/ChemEng/spraydrier.odg %%DATADIR%%/stencils/ChemEng/spraydrier.png %%DATADIR%%/stencils/ChemEng/storagesphere.desktop %%DATADIR%%/stencils/ChemEng/storagesphere.odg %%DATADIR%%/stencils/ChemEng/storagesphere.png %%DATADIR%%/stencils/ChemEng/tank.desktop %%DATADIR%%/stencils/ChemEng/tank.odg %%DATADIR%%/stencils/ChemEng/tank.png %%DATADIR%%/stencils/ChemEng/traycol.desktop %%DATADIR%%/stencils/ChemEng/traycol.odg %%DATADIR%%/stencils/ChemEng/traycol.png %%DATADIR%%/stencils/ChemEng/val.desktop %%DATADIR%%/stencils/ChemEng/val.odg %%DATADIR%%/stencils/ChemEng/val.png %%DATADIR%%/stencils/ChemEng/valv.desktop %%DATADIR%%/stencils/ChemEng/valv.odg %%DATADIR%%/stencils/ChemEng/valv.png %%DATADIR%%/stencils/ChemEng/vessel.desktop %%DATADIR%%/stencils/ChemEng/vessel.odg %%DATADIR%%/stencils/ChemEng/vessel.png %%DATADIR%%/stencils/ChemEng/wcool.desktop %%DATADIR%%/stencils/ChemEng/wcool.odg %%DATADIR%%/stencils/ChemEng/wcool.png %%DATADIR%%/stencils/ChemEng/wcoolv.desktop %%DATADIR%%/stencils/ChemEng/wcoolv.odg %%DATADIR%%/stencils/ChemEng/wcoolv.png %%DATADIR%%/stencils/Chemistry_Lab/30-degree-bend.desktop %%DATADIR%%/stencils/Chemistry_Lab/30-degree-bend.odg %%DATADIR%%/stencils/Chemistry_Lab/30-degree-bend.png %%DATADIR%%/stencils/Chemistry_Lab/beaker.desktop %%DATADIR%%/stencils/Chemistry_Lab/beaker.odg %%DATADIR%%/stencils/Chemistry_Lab/beaker.png %%DATADIR%%/stencils/Chemistry_Lab/buechner-funnel.desktop %%DATADIR%%/stencils/Chemistry_Lab/buechner-funnel.odg %%DATADIR%%/stencils/Chemistry_Lab/buechner-funnel.png %%DATADIR%%/stencils/Chemistry_Lab/burette.desktop %%DATADIR%%/stencils/Chemistry_Lab/burette.odg %%DATADIR%%/stencils/Chemistry_Lab/burette.png %%DATADIR%%/stencils/Chemistry_Lab/clamp-extra-large.desktop %%DATADIR%%/stencils/Chemistry_Lab/clamp-extra-large.odg %%DATADIR%%/stencils/Chemistry_Lab/clamp-extra-large.png %%DATADIR%%/stencils/Chemistry_Lab/clamp-front.desktop %%DATADIR%%/stencils/Chemistry_Lab/clamp-front.odg %%DATADIR%%/stencils/Chemistry_Lab/clamp-front.png %%DATADIR%%/stencils/Chemistry_Lab/clamp-large.desktop %%DATADIR%%/stencils/Chemistry_Lab/clamp-large.odg %%DATADIR%%/stencils/Chemistry_Lab/clamp-large.png %%DATADIR%%/stencils/Chemistry_Lab/clamp.desktop %%DATADIR%%/stencils/Chemistry_Lab/clamp.odg %%DATADIR%%/stencils/Chemistry_Lab/clamp.png %%DATADIR%%/stencils/Chemistry_Lab/collection.desktop %%DATADIR%%/stencils/Chemistry_Lab/column-reflux-red-blue.desktop %%DATADIR%%/stencils/Chemistry_Lab/column-reflux-red-blue.odg %%DATADIR%%/stencils/Chemistry_Lab/column-reflux-red-blue.png %%DATADIR%%/stencils/Chemistry_Lab/column-reflux-red.desktop %%DATADIR%%/stencils/Chemistry_Lab/column-reflux-red.odg %%DATADIR%%/stencils/Chemistry_Lab/column-reflux-red.png %%DATADIR%%/stencils/Chemistry_Lab/column-reflux.desktop %%DATADIR%%/stencils/Chemistry_Lab/column-reflux.odg %%DATADIR%%/stencils/Chemistry_Lab/column-reflux.png %%DATADIR%%/stencils/Chemistry_Lab/condenser-black.desktop %%DATADIR%%/stencils/Chemistry_Lab/condenser-black.odg %%DATADIR%%/stencils/Chemistry_Lab/condenser-black.png %%DATADIR%%/stencils/Chemistry_Lab/condenser-blue.desktop %%DATADIR%%/stencils/Chemistry_Lab/condenser-blue.odg %%DATADIR%%/stencils/Chemistry_Lab/condenser-blue.png %%DATADIR%%/stencils/Chemistry_Lab/condenser-green.desktop %%DATADIR%%/stencils/Chemistry_Lab/condenser-green.odg %%DATADIR%%/stencils/Chemistry_Lab/condenser-green.png %%DATADIR%%/stencils/Chemistry_Lab/condenser-liebig-vertical.desktop %%DATADIR%%/stencils/Chemistry_Lab/condenser-liebig-vertical.odg %%DATADIR%%/stencils/Chemistry_Lab/condenser-liebig-vertical.png %%DATADIR%%/stencils/Chemistry_Lab/condenser-orange.desktop %%DATADIR%%/stencils/Chemistry_Lab/condenser-orange.odg %%DATADIR%%/stencils/Chemistry_Lab/condenser-orange.png %%DATADIR%%/stencils/Chemistry_Lab/condenser-pale-blue.desktop %%DATADIR%%/stencils/Chemistry_Lab/condenser-pale-blue.odg %%DATADIR%%/stencils/Chemistry_Lab/condenser-pale-blue.png %%DATADIR%%/stencils/Chemistry_Lab/condenser-red.desktop %%DATADIR%%/stencils/Chemistry_Lab/condenser-red.odg %%DATADIR%%/stencils/Chemistry_Lab/condenser-red.png %%DATADIR%%/stencils/Chemistry_Lab/condenser.desktop %%DATADIR%%/stencils/Chemistry_Lab/condenser.odg %%DATADIR%%/stencils/Chemistry_Lab/condenser.png %%DATADIR%%/stencils/Chemistry_Lab/erlenmeyer.desktop %%DATADIR%%/stencils/Chemistry_Lab/erlenmeyer.odg %%DATADIR%%/stencils/Chemistry_Lab/erlenmeyer.png %%DATADIR%%/stencils/Chemistry_Lab/funnel.desktop %%DATADIR%%/stencils/Chemistry_Lab/funnel.odg %%DATADIR%%/stencils/Chemistry_Lab/funnel.png %%DATADIR%%/stencils/Chemistry_Lab/gooseneck.desktop %%DATADIR%%/stencils/Chemistry_Lab/gooseneck.odg %%DATADIR%%/stencils/Chemistry_Lab/gooseneck.png %%DATADIR%%/stencils/Chemistry_Lab/lab-stand-front.desktop %%DATADIR%%/stencils/Chemistry_Lab/lab-stand-front.odg %%DATADIR%%/stencils/Chemistry_Lab/lab-stand-front.png %%DATADIR%%/stencils/Chemistry_Lab/lab-stand.desktop %%DATADIR%%/stencils/Chemistry_Lab/lab-stand.odg %%DATADIR%%/stencils/Chemistry_Lab/lab-stand.png %%DATADIR%%/stencils/Chemistry_Lab/ring-front.desktop %%DATADIR%%/stencils/Chemistry_Lab/ring-front.odg %%DATADIR%%/stencils/Chemistry_Lab/ring-front.png %%DATADIR%%/stencils/Chemistry_Lab/ring.desktop %%DATADIR%%/stencils/Chemistry_Lab/ring.odg %%DATADIR%%/stencils/Chemistry_Lab/ring.png %%DATADIR%%/stencils/Chemistry_Lab/sep-funnel-three-phases.desktop %%DATADIR%%/stencils/Chemistry_Lab/sep-funnel-three-phases.odg %%DATADIR%%/stencils/Chemistry_Lab/sep-funnel-three-phases.png %%DATADIR%%/stencils/Chemistry_Lab/sep-funnel-two-phases.desktop %%DATADIR%%/stencils/Chemistry_Lab/sep-funnel-two-phases.odg %%DATADIR%%/stencils/Chemistry_Lab/sep-funnel-two-phases.png %%DATADIR%%/stencils/Chemistry_Lab/sep-funnel.desktop %%DATADIR%%/stencils/Chemistry_Lab/sep-funnel.odg %%DATADIR%%/stencils/Chemistry_Lab/sep-funnel.png %%DATADIR%%/stencils/Chemistry_Lab/stirbar.desktop %%DATADIR%%/stencils/Chemistry_Lab/stirbar.odg %%DATADIR%%/stencils/Chemistry_Lab/stirbar.png %%DATADIR%%/stencils/Chemistry_Lab/stirplate-front.desktop %%DATADIR%%/stencils/Chemistry_Lab/stirplate-front.odg %%DATADIR%%/stencils/Chemistry_Lab/stirplate-front.png %%DATADIR%%/stencils/Chemistry_Lab/stirplate.desktop %%DATADIR%%/stencils/Chemistry_Lab/stirplate.odg %%DATADIR%%/stencils/Chemistry_Lab/stirplate.png %%DATADIR%%/stencils/Circuit/collection.desktop %%DATADIR%%/stencils/Circuit/ground.desktop %%DATADIR%%/stencils/Circuit/ground.odg %%DATADIR%%/stencils/Circuit/ground.png %%DATADIR%%/stencils/Circuit/hcapacitor.desktop %%DATADIR%%/stencils/Circuit/hcapacitor.odg %%DATADIR%%/stencils/Circuit/hcapacitor.png %%DATADIR%%/stencils/Circuit/hdiode.desktop %%DATADIR%%/stencils/Circuit/hdiode.odg %%DATADIR%%/stencils/Circuit/hdiode.png %%DATADIR%%/stencils/Circuit/hfuse_de.desktop %%DATADIR%%/stencils/Circuit/hfuse_de.odg %%DATADIR%%/stencils/Circuit/hfuse_de.png %%DATADIR%%/stencils/Circuit/hinductor.desktop %%DATADIR%%/stencils/Circuit/hinductor.odg %%DATADIR%%/stencils/Circuit/hinductor.png %%DATADIR%%/stencils/Circuit/hinductor_de.desktop %%DATADIR%%/stencils/Circuit/hinductor_de.odg %%DATADIR%%/stencils/Circuit/hinductor_de.png %%DATADIR%%/stencils/Circuit/hjumper.desktop %%DATADIR%%/stencils/Circuit/hjumper.odg %%DATADIR%%/stencils/Circuit/hjumper.png %%DATADIR%%/stencils/Circuit/hled_de.desktop %%DATADIR%%/stencils/Circuit/hled_de.odg %%DATADIR%%/stencils/Circuit/hled_de.png %%DATADIR%%/stencils/Circuit/hpowersource_de.desktop %%DATADIR%%/stencils/Circuit/hpowersource_de.odg %%DATADIR%%/stencils/Circuit/hpowersource_de.png %%DATADIR%%/stencils/Circuit/hresistor.desktop %%DATADIR%%/stencils/Circuit/hresistor.odg %%DATADIR%%/stencils/Circuit/hresistor.png %%DATADIR%%/stencils/Circuit/hresistor_de.desktop %%DATADIR%%/stencils/Circuit/hresistor_de.odg %%DATADIR%%/stencils/Circuit/hresistor_de.png %%DATADIR%%/stencils/Circuit/hzener.desktop %%DATADIR%%/stencils/Circuit/hzener.odg %%DATADIR%%/stencils/Circuit/hzener.png %%DATADIR%%/stencils/Circuit/lamp_de.desktop %%DATADIR%%/stencils/Circuit/lamp_de.odg %%DATADIR%%/stencils/Circuit/lamp_de.png %%DATADIR%%/stencils/Circuit/microphone_de.desktop %%DATADIR%%/stencils/Circuit/microphone_de.odg %%DATADIR%%/stencils/Circuit/microphone_de.png %%DATADIR%%/stencils/Circuit/nmos_de.desktop %%DATADIR%%/stencils/Circuit/nmos_de.odg %%DATADIR%%/stencils/Circuit/nmos_de.png %%DATADIR%%/stencils/Circuit/npn.desktop %%DATADIR%%/stencils/Circuit/npn.odg %%DATADIR%%/stencils/Circuit/npn.png %%DATADIR%%/stencils/Circuit/opamp.desktop %%DATADIR%%/stencils/Circuit/opamp.odg %%DATADIR%%/stencils/Circuit/opamp.png %%DATADIR%%/stencils/Circuit/pmos_de.desktop %%DATADIR%%/stencils/Circuit/pmos_de.odg %%DATADIR%%/stencils/Circuit/pmos_de.png %%DATADIR%%/stencils/Circuit/pnp.desktop %%DATADIR%%/stencils/Circuit/pnp.odg %%DATADIR%%/stencils/Circuit/pnp.png %%DATADIR%%/stencils/Circuit/speaker_de.desktop %%DATADIR%%/stencils/Circuit/speaker_de.odg %%DATADIR%%/stencils/Circuit/speaker_de.png %%DATADIR%%/stencils/Circuit/vcapacitor.desktop %%DATADIR%%/stencils/Circuit/vcapacitor.odg %%DATADIR%%/stencils/Circuit/vcapacitor.png %%DATADIR%%/stencils/Circuit/vdiode.desktop %%DATADIR%%/stencils/Circuit/vdiode.odg %%DATADIR%%/stencils/Circuit/vdiode.png %%DATADIR%%/stencils/Circuit/vfuse_de.desktop %%DATADIR%%/stencils/Circuit/vfuse_de.odg %%DATADIR%%/stencils/Circuit/vfuse_de.png %%DATADIR%%/stencils/Circuit/vinductor.desktop %%DATADIR%%/stencils/Circuit/vinductor.odg %%DATADIR%%/stencils/Circuit/vinductor.png %%DATADIR%%/stencils/Circuit/vinductor_de.desktop %%DATADIR%%/stencils/Circuit/vinductor_de.odg %%DATADIR%%/stencils/Circuit/vinductor_de.png %%DATADIR%%/stencils/Circuit/vled_de.desktop %%DATADIR%%/stencils/Circuit/vled_de.odg %%DATADIR%%/stencils/Circuit/vled_de.png %%DATADIR%%/stencils/Circuit/vpowersource_de.desktop %%DATADIR%%/stencils/Circuit/vpowersource_de.odg %%DATADIR%%/stencils/Circuit/vpowersource_de.png %%DATADIR%%/stencils/Circuit/vresistor.desktop %%DATADIR%%/stencils/Circuit/vresistor.odg %%DATADIR%%/stencils/Circuit/vresistor.png %%DATADIR%%/stencils/Circuit/vresistor_de.desktop %%DATADIR%%/stencils/Circuit/vresistor_de.odg %%DATADIR%%/stencils/Circuit/vresistor_de.png %%DATADIR%%/stencils/Circuit/vzener.desktop %%DATADIR%%/stencils/Circuit/vzener.odg %%DATADIR%%/stencils/Circuit/vzener.png %%DATADIR%%/stencils/Circuit2/collection.desktop %%DATADIR%%/stencils/Circuit2/dcapacitor.desktop %%DATADIR%%/stencils/Circuit2/dcapacitor.odg %%DATADIR%%/stencils/Circuit2/dcapacitor.png %%DATADIR%%/stencils/Circuit2/ddiode.desktop %%DATADIR%%/stencils/Circuit2/ddiode.odg %%DATADIR%%/stencils/Circuit2/ddiode.png %%DATADIR%%/stencils/Circuit2/dinductor.desktop %%DATADIR%%/stencils/Circuit2/dinductor.odg %%DATADIR%%/stencils/Circuit2/dinductor.png %%DATADIR%%/stencils/Circuit2/dinductor_de.desktop %%DATADIR%%/stencils/Circuit2/dinductor_de.odg %%DATADIR%%/stencils/Circuit2/dinductor_de.png %%DATADIR%%/stencils/Circuit2/dled_de.desktop %%DATADIR%%/stencils/Circuit2/dled_de.odg %%DATADIR%%/stencils/Circuit2/dled_de.png %%DATADIR%%/stencils/Circuit2/dpcapacitor.desktop %%DATADIR%%/stencils/Circuit2/dpcapacitor.odg %%DATADIR%%/stencils/Circuit2/dpcapacitor.png %%DATADIR%%/stencils/Circuit2/dresistor.desktop %%DATADIR%%/stencils/Circuit2/dresistor.odg %%DATADIR%%/stencils/Circuit2/dresistor.png %%DATADIR%%/stencils/Circuit2/dresistor_de.desktop %%DATADIR%%/stencils/Circuit2/dresistor_de.odg %%DATADIR%%/stencils/Circuit2/dresistor_de.png %%DATADIR%%/stencils/Circuit2/dzener.desktop %%DATADIR%%/stencils/Circuit2/dzener.odg %%DATADIR%%/stencils/Circuit2/dzener.png %%DATADIR%%/stencils/Circuit2/hammeter.desktop %%DATADIR%%/stencils/Circuit2/hammeter.odg %%DATADIR%%/stencils/Circuit2/hammeter.png %%DATADIR%%/stencils/Circuit2/hpcapacitor.desktop %%DATADIR%%/stencils/Circuit2/hpcapacitor.odg %%DATADIR%%/stencils/Circuit2/hpcapacitor.png %%DATADIR%%/stencils/Circuit2/hvoltmeter.desktop %%DATADIR%%/stencils/Circuit2/hvoltmeter.odg %%DATADIR%%/stencils/Circuit2/hvoltmeter.png %%DATADIR%%/stencils/Circuit2/newhled.desktop %%DATADIR%%/stencils/Circuit2/newhled.odg %%DATADIR%%/stencils/Circuit2/newhled.png %%DATADIR%%/stencils/Circuit2/newvled.desktop %%DATADIR%%/stencils/Circuit2/newvled.odg %%DATADIR%%/stencils/Circuit2/newvled.png %%DATADIR%%/stencils/Circuit2/opto.desktop %%DATADIR%%/stencils/Circuit2/opto.odg %%DATADIR%%/stencils/Circuit2/opto.png %%DATADIR%%/stencils/Circuit2/ramp.desktop %%DATADIR%%/stencils/Circuit2/ramp.odg %%DATADIR%%/stencils/Circuit2/ramp.png %%DATADIR%%/stencils/Circuit2/relay.desktop %%DATADIR%%/stencils/Circuit2/relay.odg %%DATADIR%%/stencils/Circuit2/relay.png %%DATADIR%%/stencils/Circuit2/sine.desktop %%DATADIR%%/stencils/Circuit2/sine.odg %%DATADIR%%/stencils/Circuit2/sine.png %%DATADIR%%/stencils/Circuit2/square.desktop %%DATADIR%%/stencils/Circuit2/square.odg %%DATADIR%%/stencils/Circuit2/square.png %%DATADIR%%/stencils/Circuit2/triac.desktop %%DATADIR%%/stencils/Circuit2/triac.odg %%DATADIR%%/stencils/Circuit2/triac.png %%DATADIR%%/stencils/Circuit2/triangle.desktop %%DATADIR%%/stencils/Circuit2/triangle.odg %%DATADIR%%/stencils/Circuit2/triangle.png %%DATADIR%%/stencils/Circuit2/vammeter.desktop %%DATADIR%%/stencils/Circuit2/vammeter.odg %%DATADIR%%/stencils/Circuit2/vammeter.png %%DATADIR%%/stencils/Circuit2/vpcapacitor.desktop %%DATADIR%%/stencils/Circuit2/vpcapacitor.odg %%DATADIR%%/stencils/Circuit2/vpcapacitor.png %%DATADIR%%/stencils/Circuit2/vvoltmeter.desktop %%DATADIR%%/stencils/Circuit2/vvoltmeter.odg %%DATADIR%%/stencils/Circuit2/vvoltmeter.png %%DATADIR%%/stencils/Cisco/1000.desktop %%DATADIR%%/stencils/Cisco/1000.odg %%DATADIR%%/stencils/Cisco/1000.png %%DATADIR%%/stencils/Cisco/100baset_hub.desktop %%DATADIR%%/stencils/Cisco/100baset_hub.odg %%DATADIR%%/stencils/Cisco/100baset_hub.png %%DATADIR%%/stencils/Cisco/10700.desktop %%DATADIR%%/stencils/Cisco/10700.odg %%DATADIR%%/stencils/Cisco/10700.png %%DATADIR%%/stencils/Cisco/15200.desktop %%DATADIR%%/stencils/Cisco/15200.odg %%DATADIR%%/stencils/Cisco/15200.png %%DATADIR%%/stencils/Cisco/15800.desktop %%DATADIR%%/stencils/Cisco/15800.odg %%DATADIR%%/stencils/Cisco/15800.png %%DATADIR%%/stencils/Cisco/3174.desktop %%DATADIR%%/stencils/Cisco/3174.odg %%DATADIR%%/stencils/Cisco/3174.png %%DATADIR%%/stencils/Cisco/3x74.desktop %%DATADIR%%/stencils/Cisco/3x74.odg %%DATADIR%%/stencils/Cisco/3x74.png %%DATADIR%%/stencils/Cisco/5000.desktop %%DATADIR%%/stencils/Cisco/5000.odg %%DATADIR%%/stencils/Cisco/5000.png %%DATADIR%%/stencils/Cisco/5002.desktop %%DATADIR%%/stencils/Cisco/5002.odg %%DATADIR%%/stencils/Cisco/5002.png %%DATADIR%%/stencils/Cisco/5500.desktop %%DATADIR%%/stencils/Cisco/5500.odg %%DATADIR%%/stencils/Cisco/5500.png %%DATADIR%%/stencils/Cisco/6701.desktop %%DATADIR%%/stencils/Cisco/6701.odg %%DATADIR%%/stencils/Cisco/6701.png %%DATADIR%%/stencils/Cisco/6705.desktop %%DATADIR%%/stencils/Cisco/6705.odg %%DATADIR%%/stencils/Cisco/6705.png %%DATADIR%%/stencils/Cisco/6732.desktop %%DATADIR%%/stencils/Cisco/6732.odg %%DATADIR%%/stencils/Cisco/6732.png %%DATADIR%%/stencils/Cisco/7500ars.desktop %%DATADIR%%/stencils/Cisco/7500ars.odg %%DATADIR%%/stencils/Cisco/7500ars.png %%DATADIR%%/stencils/Cisco/7505.desktop %%DATADIR%%/stencils/Cisco/7505.odg %%DATADIR%%/stencils/Cisco/7505.png %%DATADIR%%/stencils/Cisco/7507.desktop %%DATADIR%%/stencils/Cisco/7507.odg %%DATADIR%%/stencils/Cisco/7507.png %%DATADIR%%/stencils/Cisco/access_gateway.desktop %%DATADIR%%/stencils/Cisco/access_gateway.odg %%DATADIR%%/stencils/Cisco/access_gateway.png %%DATADIR%%/stencils/Cisco/access_server.desktop %%DATADIR%%/stencils/Cisco/access_server.odg %%DATADIR%%/stencils/Cisco/access_server.png %%DATADIR%%/stencils/Cisco/accesspoint.desktop %%DATADIR%%/stencils/Cisco/accesspoint.odg %%DATADIR%%/stencils/Cisco/accesspoint.png %%DATADIR%%/stencils/Cisco/adm.desktop %%DATADIR%%/stencils/Cisco/adm.odg %%DATADIR%%/stencils/Cisco/adm.png %%DATADIR%%/stencils/Cisco/androgynous_person.desktop %%DATADIR%%/stencils/Cisco/androgynous_person.odg %%DATADIR%%/stencils/Cisco/androgynous_person.png %%DATADIR%%/stencils/Cisco/antenna.desktop %%DATADIR%%/stencils/Cisco/antenna.odg %%DATADIR%%/stencils/Cisco/antenna.png %%DATADIR%%/stencils/Cisco/asic.desktop %%DATADIR%%/stencils/Cisco/asic.odg %%DATADIR%%/stencils/Cisco/asic.png %%DATADIR%%/stencils/Cisco/ata.desktop %%DATADIR%%/stencils/Cisco/ata.odg %%DATADIR%%/stencils/Cisco/ata.png %%DATADIR%%/stencils/Cisco/atm3800.desktop %%DATADIR%%/stencils/Cisco/atm3800.odg %%DATADIR%%/stencils/Cisco/atm3800.png %%DATADIR%%/stencils/Cisco/atm_fast_gigabit_etherswitch.desktop %%DATADIR%%/stencils/Cisco/atm_fast_gigabit_etherswitch.odg %%DATADIR%%/stencils/Cisco/atm_fast_gigabit_etherswitch.png %%DATADIR%%/stencils/Cisco/atm_router.desktop %%DATADIR%%/stencils/Cisco/atm_router.odg %%DATADIR%%/stencils/Cisco/atm_switch.desktop %%DATADIR%%/stencils/Cisco/atm_switch.odg %%DATADIR%%/stencils/Cisco/atm_switch.png %%DATADIR%%/stencils/Cisco/atm_tag_switch_router.desktop %%DATADIR%%/stencils/Cisco/atm_tag_switch_router.odg %%DATADIR%%/stencils/Cisco/atm_tag_switch_router.png %%DATADIR%%/stencils/Cisco/automatic_protection_switching.desktop %%DATADIR%%/stencils/Cisco/automatic_protection_switching.odg %%DATADIR%%/stencils/Cisco/automatic_protection_switching.png %%DATADIR%%/stencils/Cisco/bbfw.desktop %%DATADIR%%/stencils/Cisco/bbfw.odg %%DATADIR%%/stencils/Cisco/bbfw.png %%DATADIR%%/stencils/Cisco/bbfw_media.desktop %%DATADIR%%/stencils/Cisco/bbfw_media.odg %%DATADIR%%/stencils/Cisco/bbfw_media.png %%DATADIR%%/stencils/Cisco/bbs.desktop %%DATADIR%%/stencils/Cisco/bbs.odg %%DATADIR%%/stencils/Cisco/bbs.png %%DATADIR%%/stencils/Cisco/bbsm.desktop %%DATADIR%%/stencils/Cisco/bbsm.odg %%DATADIR%%/stencils/Cisco/bbsm.png %%DATADIR%%/stencils/Cisco/branch_office.desktop %%DATADIR%%/stencils/Cisco/branch_office.odg %%DATADIR%%/stencils/Cisco/branch_office.png %%DATADIR%%/stencils/Cisco/branch_office_blue.desktop %%DATADIR%%/stencils/Cisco/branch_office_blue.odg %%DATADIR%%/stencils/Cisco/branch_office_blue.png %%DATADIR%%/stencils/Cisco/branch_office_subdued.desktop %%DATADIR%%/stencils/Cisco/branch_office_subdued.odg %%DATADIR%%/stencils/Cisco/branch_office_subdued.png %%DATADIR%%/stencils/Cisco/breakout_box.desktop %%DATADIR%%/stencils/Cisco/breakout_box.odg %%DATADIR%%/stencils/Cisco/breakout_box.png %%DATADIR%%/stencils/Cisco/bridge.desktop %%DATADIR%%/stencils/Cisco/bridge.odg %%DATADIR%%/stencils/Cisco/bridge.png %%DATADIR%%/stencils/Cisco/broadband_router.desktop %%DATADIR%%/stencils/Cisco/broadband_router.odg %%DATADIR%%/stencils/Cisco/broadband_router.png %%DATADIR%%/stencils/Cisco/bts10200.desktop %%DATADIR%%/stencils/Cisco/bts10200.odg %%DATADIR%%/stencils/Cisco/bts10200.png %%DATADIR%%/stencils/Cisco/ca.desktop %%DATADIR%%/stencils/Cisco/ca.odg %%DATADIR%%/stencils/Cisco/ca.png %%DATADIR%%/stencils/Cisco/cable_modem.desktop %%DATADIR%%/stencils/Cisco/cable_modem.odg %%DATADIR%%/stencils/Cisco/cable_modem.png %%DATADIR%%/stencils/Cisco/callmanager.desktop %%DATADIR%%/stencils/Cisco/callmanager.odg %%DATADIR%%/stencils/Cisco/callmanager.png %%DATADIR%%/stencils/Cisco/car.desktop %%DATADIR%%/stencils/Cisco/car.odg %%DATADIR%%/stencils/Cisco/car.png %%DATADIR%%/stencils/Cisco/carrier_routing_system.desktop %%DATADIR%%/stencils/Cisco/carrier_routing_system.odg %%DATADIR%%/stencils/Cisco/carrier_routing_system.png %%DATADIR%%/stencils/Cisco/catalyst_access_gateway.desktop %%DATADIR%%/stencils/Cisco/catalyst_access_gateway.odg %%DATADIR%%/stencils/Cisco/catalyst_access_gateway.png %%DATADIR%%/stencils/Cisco/cddi_fddi_concentrator.desktop %%DATADIR%%/stencils/Cisco/cddi_fddi_concentrator.odg %%DATADIR%%/stencils/Cisco/cddi_fddi_concentrator.png %%DATADIR%%/stencils/Cisco/cdm.desktop %%DATADIR%%/stencils/Cisco/cdm.odg %%DATADIR%%/stencils/Cisco/cdm.png %%DATADIR%%/stencils/Cisco/cellular_phone.desktop %%DATADIR%%/stencils/Cisco/cellular_phone.odg %%DATADIR%%/stencils/Cisco/cellular_phone.png %%DATADIR%%/stencils/Cisco/centri_firewall.desktop %%DATADIR%%/stencils/Cisco/centri_firewall.odg %%DATADIR%%/stencils/Cisco/centri_firewall.png %%DATADIR%%/stencils/Cisco/channelized_pipe.desktop %%DATADIR%%/stencils/Cisco/channelized_pipe.odg %%DATADIR%%/stencils/Cisco/channelized_pipe.png %%DATADIR%%/stencils/Cisco/cisco_hub.desktop %%DATADIR%%/stencils/Cisco/cisco_hub.odg %%DATADIR%%/stencils/Cisco/cisco_hub.png %%DATADIR%%/stencils/Cisco/ciscosecurity.desktop %%DATADIR%%/stencils/Cisco/ciscosecurity.odg %%DATADIR%%/stencils/Cisco/ciscosecurity.png %%DATADIR%%/stencils/Cisco/ciscoworks.desktop %%DATADIR%%/stencils/Cisco/ciscoworks.odg %%DATADIR%%/stencils/Cisco/ciscoworks.png %%DATADIR%%/stencils/Cisco/ciscoworks_man.desktop %%DATADIR%%/stencils/Cisco/ciscoworks_man.odg %%DATADIR%%/stencils/Cisco/ciscoworks_man.png %%DATADIR%%/stencils/Cisco/class45_switch.desktop %%DATADIR%%/stencils/Cisco/class45_switch.odg %%DATADIR%%/stencils/Cisco/class45_switch.png %%DATADIR%%/stencils/Cisco/cloud.desktop %%DATADIR%%/stencils/Cisco/cloud.odg %%DATADIR%%/stencils/Cisco/cloud.png %%DATADIR%%/stencils/Cisco/cloud_dark.desktop %%DATADIR%%/stencils/Cisco/cloud_dark.odg %%DATADIR%%/stencils/Cisco/cloud_dark.png %%DATADIR%%/stencils/Cisco/cloud_gold.desktop %%DATADIR%%/stencils/Cisco/cloud_gold.odg %%DATADIR%%/stencils/Cisco/cloud_gold.png %%DATADIR%%/stencils/Cisco/cloud_white.desktop %%DATADIR%%/stencils/Cisco/cloud_white.odg %%DATADIR%%/stencils/Cisco/cloud_white.png %%DATADIR%%/stencils/Cisco/collection.desktop %%DATADIR%%/stencils/Cisco/communications_server.desktop %%DATADIR%%/stencils/Cisco/communications_server.odg %%DATADIR%%/stencils/Cisco/communications_server.png %%DATADIR%%/stencils/Cisco/concatenated_payload.desktop %%DATADIR%%/stencils/Cisco/concatenated_payload.odg %%DATADIR%%/stencils/Cisco/concatenated_payload.png %%DATADIR%%/stencils/Cisco/content_engine.desktop %%DATADIR%%/stencils/Cisco/content_engine.odg %%DATADIR%%/stencils/Cisco/content_engine.png %%DATADIR%%/stencils/Cisco/content_router.desktop %%DATADIR%%/stencils/Cisco/content_router.odg %%DATADIR%%/stencils/Cisco/content_router.png %%DATADIR%%/stencils/Cisco/content_service_module.desktop %%DATADIR%%/stencils/Cisco/content_service_module.odg %%DATADIR%%/stencils/Cisco/content_service_module.png %%DATADIR%%/stencils/Cisco/content_switch.desktop %%DATADIR%%/stencils/Cisco/content_switch.odg %%DATADIR%%/stencils/Cisco/content_switch.png %%DATADIR%%/stencils/Cisco/csm-s.desktop %%DATADIR%%/stencils/Cisco/csm-s.odg %%DATADIR%%/stencils/Cisco/csm-s.png %%DATADIR%%/stencils/Cisco/css1100.desktop %%DATADIR%%/stencils/Cisco/css1100.odg %%DATADIR%%/stencils/Cisco/css1100.png %%DATADIR%%/stencils/Cisco/csu_dsu.desktop %%DATADIR%%/stencils/Cisco/csu_dsu.odg %%DATADIR%%/stencils/Cisco/csu_dsu.png %%DATADIR%%/stencils/Cisco/cte.desktop %%DATADIR%%/stencils/Cisco/cte.odg %%DATADIR%%/stencils/Cisco/cte.png %%DATADIR%%/stencils/Cisco/data_center_switch.desktop %%DATADIR%%/stencils/Cisco/data_center_switch.odg %%DATADIR%%/stencils/Cisco/data_center_switch.png %%DATADIR%%/stencils/Cisco/data_center_switch_reversed.desktop %%DATADIR%%/stencils/Cisco/data_center_switch_reversed.odg %%DATADIR%%/stencils/Cisco/data_center_switch_reversed.png %%DATADIR%%/stencils/Cisco/data_switch_processor.desktop %%DATADIR%%/stencils/Cisco/data_switch_processor.odg %%DATADIR%%/stencils/Cisco/data_switch_processor.png %%DATADIR%%/stencils/Cisco/detector.desktop %%DATADIR%%/stencils/Cisco/detector.odg %%DATADIR%%/stencils/Cisco/detector.png %%DATADIR%%/stencils/Cisco/digital_cross-connect.desktop %%DATADIR%%/stencils/Cisco/digital_cross-connect.odg %%DATADIR%%/stencils/Cisco/digital_cross-connect.png %%DATADIR%%/stencils/Cisco/director_fcis.desktop %%DATADIR%%/stencils/Cisco/director_fcis.odg %%DATADIR%%/stencils/Cisco/director_fcis.png %%DATADIR%%/stencils/Cisco/directory_server.desktop %%DATADIR%%/stencils/Cisco/directory_server.odg %%DATADIR%%/stencils/Cisco/directory_server.png %%DATADIR%%/stencils/Cisco/disk_subsystem.desktop %%DATADIR%%/stencils/Cisco/disk_subsystem.odg %%DATADIR%%/stencils/Cisco/disk_subsystem.png %%DATADIR%%/stencils/Cisco/diskette.desktop %%DATADIR%%/stencils/Cisco/diskette.odg %%DATADIR%%/stencils/Cisco/diskette.png %%DATADIR%%/stencils/Cisco/distributed_director.desktop %%DATADIR%%/stencils/Cisco/distributed_director.odg %%DATADIR%%/stencils/Cisco/distributed_director.png %%DATADIR%%/stencils/Cisco/dot_dot.desktop %%DATADIR%%/stencils/Cisco/dot_dot.odg %%DATADIR%%/stencils/Cisco/dot_dot.png %%DATADIR%%/stencils/Cisco/dpt.desktop %%DATADIR%%/stencils/Cisco/dpt.odg %%DATADIR%%/stencils/Cisco/dpt.png %%DATADIR%%/stencils/Cisco/dslam.desktop %%DATADIR%%/stencils/Cisco/dslam.odg %%DATADIR%%/stencils/Cisco/dslam.png %%DATADIR%%/stencils/Cisco/dual_mode_accesspoint.desktop %%DATADIR%%/stencils/Cisco/dual_mode_accesspoint.odg %%DATADIR%%/stencils/Cisco/dual_mode_accesspoint.png %%DATADIR%%/stencils/Cisco/dwdm_filter.desktop %%DATADIR%%/stencils/Cisco/dwdm_filter.odg %%DATADIR%%/stencils/Cisco/dwdm_filter.png %%DATADIR%%/stencils/Cisco/edge_label_switch_router.png %%DATADIR%%/stencils/Cisco/edge_label_switch_router_with_netflow.desktop %%DATADIR%%/stencils/Cisco/edge_label_switch_router_with_netflow.odg %%DATADIR%%/stencils/Cisco/edge_label_switch_router_with_netflow.png %%DATADIR%%/stencils/Cisco/end_office.desktop %%DATADIR%%/stencils/Cisco/end_office.odg %%DATADIR%%/stencils/Cisco/end_office.png %%DATADIR%%/stencils/Cisco/etherclient.desktop %%DATADIR%%/stencils/Cisco/etherclient.odg %%DATADIR%%/stencils/Cisco/etherclient.png %%DATADIR%%/stencils/Cisco/fax.desktop %%DATADIR%%/stencils/Cisco/fax.odg %%DATADIR%%/stencils/Cisco/fax.png %%DATADIR%%/stencils/Cisco/fc_storage.desktop %%DATADIR%%/stencils/Cisco/fc_storage.odg %%DATADIR%%/stencils/Cisco/fc_storage.png %%DATADIR%%/stencils/Cisco/fddi_ring.desktop %%DATADIR%%/stencils/Cisco/fddi_ring.odg %%DATADIR%%/stencils/Cisco/fddi_ring.png %%DATADIR%%/stencils/Cisco/file_cabinet.desktop %%DATADIR%%/stencils/Cisco/file_cabinet.odg %%DATADIR%%/stencils/Cisco/file_cabinet.png %%DATADIR%%/stencils/Cisco/file_engine.desktop %%DATADIR%%/stencils/Cisco/file_engine.odg %%DATADIR%%/stencils/Cisco/file_engine.png %%DATADIR%%/stencils/Cisco/file_server.desktop %%DATADIR%%/stencils/Cisco/file_server.odg %%DATADIR%%/stencils/Cisco/file_server.png %%DATADIR%%/stencils/Cisco/firewall.desktop %%DATADIR%%/stencils/Cisco/firewall.odg %%DATADIR%%/stencils/Cisco/firewall.png %%DATADIR%%/stencils/Cisco/firewall_horizontal.desktop %%DATADIR%%/stencils/Cisco/firewall_horizontal.odg %%DATADIR%%/stencils/Cisco/firewall_horizontal.png %%DATADIR%%/stencils/Cisco/firewall_subdued.desktop %%DATADIR%%/stencils/Cisco/firewall_subdued.odg %%DATADIR%%/stencils/Cisco/firewall_subdued.png %%DATADIR%%/stencils/Cisco/front_end_processor.desktop %%DATADIR%%/stencils/Cisco/front_end_processor.odg %%DATADIR%%/stencils/Cisco/front_end_processor.png %%DATADIR%%/stencils/Cisco/fwsm.desktop %%DATADIR%%/stencils/Cisco/fwsm.odg %%DATADIR%%/stencils/Cisco/fwsm.png %%DATADIR%%/stencils/Cisco/general_appliance.desktop %%DATADIR%%/stencils/Cisco/general_appliance.odg %%DATADIR%%/stencils/Cisco/general_appliance.png %%DATADIR%%/stencils/Cisco/generic_building.desktop %%DATADIR%%/stencils/Cisco/generic_building.odg %%DATADIR%%/stencils/Cisco/generic_building.png %%DATADIR%%/stencils/Cisco/generic_building_blue.desktop %%DATADIR%%/stencils/Cisco/generic_building_blue.odg %%DATADIR%%/stencils/Cisco/generic_building_blue.png %%DATADIR%%/stencils/Cisco/generic_building_subdued.desktop %%DATADIR%%/stencils/Cisco/generic_building_subdued.odg %%DATADIR%%/stencils/Cisco/generic_building_subdued.png %%DATADIR%%/stencils/Cisco/generic_gateway.desktop %%DATADIR%%/stencils/Cisco/generic_gateway.odg %%DATADIR%%/stencils/Cisco/generic_gateway.png %%DATADIR%%/stencils/Cisco/generic_processor.desktop %%DATADIR%%/stencils/Cisco/generic_processor.odg %%DATADIR%%/stencils/Cisco/generic_processor.png %%DATADIR%%/stencils/Cisco/generic_softswitch.desktop %%DATADIR%%/stencils/Cisco/generic_softswitch.odg %%DATADIR%%/stencils/Cisco/generic_softswitch.png %%DATADIR%%/stencils/Cisco/gigabit_switch_router_atm_tag.desktop %%DATADIR%%/stencils/Cisco/gigabit_switch_router_atm_tag.odg %%DATADIR%%/stencils/Cisco/gigabit_switch_router_atm_tag.png %%DATADIR%%/stencils/Cisco/government_building.desktop %%DATADIR%%/stencils/Cisco/government_building.odg %%DATADIR%%/stencils/Cisco/government_building.png %%DATADIR%%/stencils/Cisco/guard.desktop %%DATADIR%%/stencils/Cisco/guard.odg %%DATADIR%%/stencils/Cisco/guard.png %%DATADIR%%/stencils/Cisco/h323.desktop %%DATADIR%%/stencils/Cisco/h323.odg %%DATADIR%%/stencils/Cisco/h323.png %%DATADIR%%/stencils/Cisco/handheld.desktop %%DATADIR%%/stencils/Cisco/handheld.odg %%DATADIR%%/stencils/Cisco/handheld.png %%DATADIR%%/stencils/Cisco/headphones.desktop %%DATADIR%%/stencils/Cisco/headphones.odg %%DATADIR%%/stencils/Cisco/headphones.png %%DATADIR%%/stencils/Cisco/home_office.desktop %%DATADIR%%/stencils/Cisco/home_office.odg %%DATADIR%%/stencils/Cisco/home_office.png %%DATADIR%%/stencils/Cisco/hootphone.desktop %%DATADIR%%/stencils/Cisco/hootphone.odg %%DATADIR%%/stencils/Cisco/hootphone.png %%DATADIR%%/stencils/Cisco/host.desktop %%DATADIR%%/stencils/Cisco/host.odg %%DATADIR%%/stencils/Cisco/host.png %%DATADIR%%/stencils/Cisco/house.desktop %%DATADIR%%/stencils/Cisco/house.odg %%DATADIR%%/stencils/Cisco/house.png %%DATADIR%%/stencils/Cisco/house_blue.desktop %%DATADIR%%/stencils/Cisco/house_blue.odg %%DATADIR%%/stencils/Cisco/house_blue.png %%DATADIR%%/stencils/Cisco/hp_mini.desktop %%DATADIR%%/stencils/Cisco/hp_mini.odg %%DATADIR%%/stencils/Cisco/hp_mini.png %%DATADIR%%/stencils/Cisco/hub.desktop %%DATADIR%%/stencils/Cisco/hub.odg %%DATADIR%%/stencils/Cisco/hub.png %%DATADIR%%/stencils/Cisco/hub_subdued.desktop %%DATADIR%%/stencils/Cisco/hub_subdued.odg %%DATADIR%%/stencils/Cisco/hub_subdued.png %%DATADIR%%/stencils/Cisco/iad_router.desktop %%DATADIR%%/stencils/Cisco/iad_router.odg %%DATADIR%%/stencils/Cisco/iad_router.png %%DATADIR%%/stencils/Cisco/ibm_mainframe.desktop %%DATADIR%%/stencils/Cisco/ibm_mainframe.odg %%DATADIR%%/stencils/Cisco/ibm_mainframe.png %%DATADIR%%/stencils/Cisco/ibm_mainframe_with_fep.desktop %%DATADIR%%/stencils/Cisco/ibm_mainframe_with_fep.odg %%DATADIR%%/stencils/Cisco/ibm_mainframe_with_fep.png %%DATADIR%%/stencils/Cisco/ibm_mini.desktop %%DATADIR%%/stencils/Cisco/ibm_mini.odg %%DATADIR%%/stencils/Cisco/ibm_mini.png %%DATADIR%%/stencils/Cisco/ibm_tower.desktop %%DATADIR%%/stencils/Cisco/ibm_tower.odg %%DATADIR%%/stencils/Cisco/ibm_tower.png %%DATADIR%%/stencils/Cisco/icm.desktop %%DATADIR%%/stencils/Cisco/icm.odg %%DATADIR%%/stencils/Cisco/icm.png %%DATADIR%%/stencils/Cisco/ics.desktop %%DATADIR%%/stencils/Cisco/ics.odg %%DATADIR%%/stencils/Cisco/ics.png %%DATADIR%%/stencils/Cisco/intelliswitch_stack.desktop %%DATADIR%%/stencils/Cisco/intelliswitch_stack.odg %%DATADIR%%/stencils/Cisco/intelliswitch_stack.png %%DATADIR%%/stencils/Cisco/ios_firewall.desktop %%DATADIR%%/stencils/Cisco/ios_firewall.odg %%DATADIR%%/stencils/Cisco/ios_firewall.png %%DATADIR%%/stencils/Cisco/ios_slb.desktop %%DATADIR%%/stencils/Cisco/ios_slb.odg %%DATADIR%%/stencils/Cisco/ios_slb.png %%DATADIR%%/stencils/Cisco/ip.desktop %%DATADIR%%/stencils/Cisco/ip.odg %%DATADIR%%/stencils/Cisco/ip.png %%DATADIR%%/stencils/Cisco/ip_dsl.desktop %%DATADIR%%/stencils/Cisco/ip_dsl.odg %%DATADIR%%/stencils/Cisco/ip_dsl.png %%DATADIR%%/stencils/Cisco/ip_old-style.desktop %%DATADIR%%/stencils/Cisco/ip_old-style.odg %%DATADIR%%/stencils/Cisco/ip_old-style.png %%DATADIR%%/stencils/Cisco/ip_phone.desktop %%DATADIR%%/stencils/Cisco/ip_phone.odg %%DATADIR%%/stencils/Cisco/ip_phone.png %%DATADIR%%/stencils/Cisco/ip_softphone.desktop %%DATADIR%%/stencils/Cisco/ip_softphone.odg %%DATADIR%%/stencils/Cisco/ip_softphone.png %%DATADIR%%/stencils/Cisco/ip_telephony_router.desktop %%DATADIR%%/stencils/Cisco/ip_telephony_router.odg %%DATADIR%%/stencils/Cisco/ip_telephony_router.png %%DATADIR%%/stencils/Cisco/ip_transport_concentrator.desktop %%DATADIR%%/stencils/Cisco/ip_transport_concentrator.odg %%DATADIR%%/stencils/Cisco/ip_transport_concentrator.png %%DATADIR%%/stencils/Cisco/iptv_broadcast_server.desktop %%DATADIR%%/stencils/Cisco/iptv_broadcast_server.odg %%DATADIR%%/stencils/Cisco/iptv_broadcast_server.png %%DATADIR%%/stencils/Cisco/iptv_content_manager.desktop %%DATADIR%%/stencils/Cisco/iptv_content_manager.odg %%DATADIR%%/stencils/Cisco/iptv_content_manager.png %%DATADIR%%/stencils/Cisco/iscsi_switch.desktop %%DATADIR%%/stencils/Cisco/iscsi_switch.odg %%DATADIR%%/stencils/Cisco/iscsi_switch.png %%DATADIR%%/stencils/Cisco/isdn_switch.desktop %%DATADIR%%/stencils/Cisco/isdn_switch.odg %%DATADIR%%/stencils/Cisco/isdn_switch.png %%DATADIR%%/stencils/Cisco/itp.desktop %%DATADIR%%/stencils/Cisco/itp.odg %%DATADIR%%/stencils/Cisco/itp.png %%DATADIR%%/stencils/Cisco/jbod.desktop %%DATADIR%%/stencils/Cisco/jbod.odg %%DATADIR%%/stencils/Cisco/jbod.png %%DATADIR%%/stencils/Cisco/key.desktop %%DATADIR%%/stencils/Cisco/key.odg %%DATADIR%%/stencils/Cisco/key.png %%DATADIR%%/stencils/Cisco/label_switch_router.desktop %%DATADIR%%/stencils/Cisco/label_switch_router.odg %%DATADIR%%/stencils/Cisco/label_switch_router.png %%DATADIR%%/stencils/Cisco/lan2lan_switch.desktop %%DATADIR%%/stencils/Cisco/lan2lan_switch.odg %%DATADIR%%/stencils/Cisco/lan2lan_switch.png %%DATADIR%%/stencils/Cisco/lan_to_lan.desktop %%DATADIR%%/stencils/Cisco/lan_to_lan.odg %%DATADIR%%/stencils/Cisco/lan_to_lan.png %%DATADIR%%/stencils/Cisco/laptop.desktop %%DATADIR%%/stencils/Cisco/laptop.odg %%DATADIR%%/stencils/Cisco/laptop.png %%DATADIR%%/stencils/Cisco/layer3_switch.desktop %%DATADIR%%/stencils/Cisco/layer3_switch.odg %%DATADIR%%/stencils/Cisco/layer3_switch.png %%DATADIR%%/stencils/Cisco/layer_2_remote_switch.desktop %%DATADIR%%/stencils/Cisco/layer_2_remote_switch.odg %%DATADIR%%/stencils/Cisco/layer_2_remote_switch.png %%DATADIR%%/stencils/Cisco/lightweight_ap.desktop %%DATADIR%%/stencils/Cisco/lightweight_ap.odg %%DATADIR%%/stencils/Cisco/lightweight_ap.png %%DATADIR%%/stencils/Cisco/localdirector.desktop %%DATADIR%%/stencils/Cisco/localdirector.odg %%DATADIR%%/stencils/Cisco/localdirector.png %%DATADIR%%/stencils/Cisco/location_server.desktop %%DATADIR%%/stencils/Cisco/location_server.odg %%DATADIR%%/stencils/Cisco/location_server.png %%DATADIR%%/stencils/Cisco/lock.desktop %%DATADIR%%/stencils/Cisco/lock.odg %%DATADIR%%/stencils/Cisco/lock.png %%DATADIR%%/stencils/Cisco/lock_and_key.desktop %%DATADIR%%/stencils/Cisco/lock_and_key.odg %%DATADIR%%/stencils/Cisco/lock_and_key.png %%DATADIR%%/stencils/Cisco/longreach_cpe.desktop %%DATADIR%%/stencils/Cisco/longreach_cpe.odg %%DATADIR%%/stencils/Cisco/longreach_cpe.png %%DATADIR%%/stencils/Cisco/mac_woman.desktop %%DATADIR%%/stencils/Cisco/mac_woman.odg %%DATADIR%%/stencils/Cisco/mac_woman.png %%DATADIR%%/stencils/Cisco/mac_woman_right.desktop %%DATADIR%%/stencils/Cisco/mac_woman_right.odg %%DATADIR%%/stencils/Cisco/mac_woman_right.png %%DATADIR%%/stencils/Cisco/macintosh.desktop %%DATADIR%%/stencils/Cisco/macintosh.odg %%DATADIR%%/stencils/Cisco/macintosh.png %%DATADIR%%/stencils/Cisco/man.desktop %%DATADIR%%/stencils/Cisco/man.odg %%DATADIR%%/stencils/Cisco/man.png %%DATADIR%%/stencils/Cisco/man_blue.desktop %%DATADIR%%/stencils/Cisco/man_blue.odg %%DATADIR%%/stencils/Cisco/man_blue.png %%DATADIR%%/stencils/Cisco/man_gold.desktop %%DATADIR%%/stencils/Cisco/man_gold.odg %%DATADIR%%/stencils/Cisco/man_gold.png %%DATADIR%%/stencils/Cisco/man_red.desktop %%DATADIR%%/stencils/Cisco/man_red.odg %%DATADIR%%/stencils/Cisco/man_red.png %%DATADIR%%/stencils/Cisco/man_woman.desktop %%DATADIR%%/stencils/Cisco/man_woman.odg %%DATADIR%%/stencils/Cisco/man_woman.png %%DATADIR%%/stencils/Cisco/mas_gateway.desktop %%DATADIR%%/stencils/Cisco/mas_gateway.odg %%DATADIR%%/stencils/Cisco/mas_gateway.png %%DATADIR%%/stencils/Cisco/mau.desktop %%DATADIR%%/stencils/Cisco/mau.odg %%DATADIR%%/stencils/Cisco/mau.png %%DATADIR%%/stencils/Cisco/mcu.desktop %%DATADIR%%/stencils/Cisco/mcu.odg %%DATADIR%%/stencils/Cisco/mcu.png %%DATADIR%%/stencils/Cisco/mdu.desktop %%DATADIR%%/stencils/Cisco/mdu.odg %%DATADIR%%/stencils/Cisco/mdu.png %%DATADIR%%/stencils/Cisco/me1100.desktop %%DATADIR%%/stencils/Cisco/me1100.odg %%DATADIR%%/stencils/Cisco/me1100.png %%DATADIR%%/stencils/Cisco/medium_building.desktop %%DATADIR%%/stencils/Cisco/medium_building.odg %%DATADIR%%/stencils/Cisco/medium_building.png %%DATADIR%%/stencils/Cisco/medium_building_blue.desktop %%DATADIR%%/stencils/Cisco/medium_building_blue.odg %%DATADIR%%/stencils/Cisco/medium_building_blue.png %%DATADIR%%/stencils/Cisco/medium_building_subdued.desktop %%DATADIR%%/stencils/Cisco/medium_building_subdued.odg %%DATADIR%%/stencils/Cisco/medium_building_subdued.png %%DATADIR%%/stencils/Cisco/metro1500.desktop %%DATADIR%%/stencils/Cisco/metro1500.odg %%DATADIR%%/stencils/Cisco/metro1500.png %%DATADIR%%/stencils/Cisco/mgx8240.desktop %%DATADIR%%/stencils/Cisco/mgx8240.odg %%DATADIR%%/stencils/Cisco/mgx8240.png %%DATADIR%%/stencils/Cisco/mgx8220.desktop %%DATADIR%%/stencils/Cisco/mgx8220.odg %%DATADIR%%/stencils/Cisco/mgx8220.png %%DATADIR%%/stencils/Cisco/mgx8260.desktop %%DATADIR%%/stencils/Cisco/mgx8260.odg %%DATADIR%%/stencils/Cisco/mgx8260.png %%DATADIR%%/stencils/Cisco/mgx_8000_series_voice_gateway.desktop %%DATADIR%%/stencils/Cisco/mgx_8000_series_voice_gateway.odg %%DATADIR%%/stencils/Cisco/mgx_8000_series_voice_gateway.png %%DATADIR%%/stencils/Cisco/microphone.desktop %%DATADIR%%/stencils/Cisco/microphone.odg %%DATADIR%%/stencils/Cisco/microphone.png %%DATADIR%%/stencils/Cisco/microwebserver.desktop %%DATADIR%%/stencils/Cisco/microwebserver.odg %%DATADIR%%/stencils/Cisco/microwebserver.png %%DATADIR%%/stencils/Cisco/mini_vax.desktop %%DATADIR%%/stencils/Cisco/mini_vax.odg %%DATADIR%%/stencils/Cisco/mini_vax.png %%DATADIR%%/stencils/Cisco/mobile_access_ip_phone.desktop %%DATADIR%%/stencils/Cisco/mobile_access_ip_phone.odg %%DATADIR%%/stencils/Cisco/mobile_access_ip_phone.png %%DATADIR%%/stencils/Cisco/mobile_access_router.desktop %%DATADIR%%/stencils/Cisco/mobile_access_router.odg %%DATADIR%%/stencils/Cisco/mobile_access_router.png %%DATADIR%%/stencils/Cisco/modem.desktop %%DATADIR%%/stencils/Cisco/modem.odg %%DATADIR%%/stencils/Cisco/modem.png %%DATADIR%%/stencils/Cisco/moh_server.desktop %%DATADIR%%/stencils/Cisco/moh_server.odg %%DATADIR%%/stencils/Cisco/moh_server.png %%DATADIR%%/stencils/Cisco/monitor.desktop %%DATADIR%%/stencils/Cisco/monitor.odg %%DATADIR%%/stencils/Cisco/monitor.png %%DATADIR%%/stencils/Cisco/multi-fabric_server_switch.desktop %%DATADIR%%/stencils/Cisco/multi-fabric_server_switch.odg %%DATADIR%%/stencils/Cisco/multi-fabric_server_switch.png %%DATADIR%%/stencils/Cisco/multilayer_remote_switch.desktop %%DATADIR%%/stencils/Cisco/multilayer_remote_switch.odg %%DATADIR%%/stencils/Cisco/multilayer_remote_switch.png %%DATADIR%%/stencils/Cisco/multilayer_switch.desktop %%DATADIR%%/stencils/Cisco/multilayer_switch.odg %%DATADIR%%/stencils/Cisco/multilayer_switch.png %%DATADIR%%/stencils/Cisco/multilayer_switch_with_silicon.desktop %%DATADIR%%/stencils/Cisco/multilayer_switch_with_silicon.odg %%DATADIR%%/stencils/Cisco/multilayer_switch_with_silicon.png %%DATADIR%%/stencils/Cisco/multilayer_switch_with_silicon_subdued.desktop %%DATADIR%%/stencils/Cisco/multilayer_switch_with_silicon_subdued.odg %%DATADIR%%/stencils/Cisco/multilayer_switch_with_silicon_subdued.png %%DATADIR%%/stencils/Cisco/multiswitch_device.desktop %%DATADIR%%/stencils/Cisco/multiswitch_device.odg %%DATADIR%%/stencils/Cisco/multiswitch_device.png %%DATADIR%%/stencils/Cisco/mux.desktop %%DATADIR%%/stencils/Cisco/mux.odg %%DATADIR%%/stencils/Cisco/mux.png %%DATADIR%%/stencils/Cisco/nat.desktop %%DATADIR%%/stencils/Cisco/nat.odg %%DATADIR%%/stencils/Cisco/nat.png %%DATADIR%%/stencils/Cisco/netflow_router.desktop %%DATADIR%%/stencils/Cisco/netflow_router.odg %%DATADIR%%/stencils/Cisco/netflow_router.png %%DATADIR%%/stencils/Cisco/netranger.desktop %%DATADIR%%/stencils/Cisco/netranger.odg %%DATADIR%%/stencils/Cisco/netranger.png %%DATADIR%%/stencils/Cisco/netsonar.desktop %%DATADIR%%/stencils/Cisco/netsonar.odg %%DATADIR%%/stencils/Cisco/netsonar.png %%DATADIR%%/stencils/Cisco/network_management.desktop %%DATADIR%%/stencils/Cisco/network_management.odg %%DATADIR%%/stencils/Cisco/network_management.png %%DATADIR%%/stencils/Cisco/newton.desktop %%DATADIR%%/stencils/Cisco/newton.odg %%DATADIR%%/stencils/Cisco/newton.png %%DATADIR%%/stencils/Cisco/octel.desktop %%DATADIR%%/stencils/Cisco/octel.odg %%DATADIR%%/stencils/Cisco/octel.png %%DATADIR%%/stencils/Cisco/ons15104.desktop %%DATADIR%%/stencils/Cisco/ons15104.odg %%DATADIR%%/stencils/Cisco/ons15104.png %%DATADIR%%/stencils/Cisco/ons15540.desktop %%DATADIR%%/stencils/Cisco/ons15540.odg %%DATADIR%%/stencils/Cisco/ons15540.png %%DATADIR%%/stencils/Cisco/optical_amplifier.desktop %%DATADIR%%/stencils/Cisco/optical_amplifier.odg %%DATADIR%%/stencils/Cisco/optical_amplifier.png %%DATADIR%%/stencils/Cisco/optical_cross-connect.desktop %%DATADIR%%/stencils/Cisco/optical_cross-connect.odg %%DATADIR%%/stencils/Cisco/optical_cross-connect.png %%DATADIR%%/stencils/Cisco/optical_fiber.desktop %%DATADIR%%/stencils/Cisco/optical_fiber.odg %%DATADIR%%/stencils/Cisco/optical_fiber.png %%DATADIR%%/stencils/Cisco/optical_services_router.desktop %%DATADIR%%/stencils/Cisco/optical_services_router.odg %%DATADIR%%/stencils/Cisco/optical_services_router.png %%DATADIR%%/stencils/Cisco/optical_transport.desktop %%DATADIR%%/stencils/Cisco/optical_transport.odg %%DATADIR%%/stencils/Cisco/optical_transport.png %%DATADIR%%/stencils/Cisco/pad.desktop %%DATADIR%%/stencils/Cisco/pad.odg %%DATADIR%%/stencils/Cisco/pad.png %%DATADIR%%/stencils/Cisco/pager.desktop %%DATADIR%%/stencils/Cisco/pager.odg %%DATADIR%%/stencils/Cisco/pager.png %%DATADIR%%/stencils/Cisco/pbx.desktop %%DATADIR%%/stencils/Cisco/pbx.odg %%DATADIR%%/stencils/Cisco/pbx.png %%DATADIR%%/stencils/Cisco/pbx_switch.desktop %%DATADIR%%/stencils/Cisco/pbx_switch.odg %%DATADIR%%/stencils/Cisco/pbx_switch.png %%DATADIR%%/stencils/Cisco/pc.desktop %%DATADIR%%/stencils/Cisco/pc.odg %%DATADIR%%/stencils/Cisco/pc.png %%DATADIR%%/stencils/Cisco/pc_adapter_card.desktop %%DATADIR%%/stencils/Cisco/pc_adapter_card.odg %%DATADIR%%/stencils/Cisco/pc_adapter_card.png %%DATADIR%%/stencils/Cisco/pc_card.desktop %%DATADIR%%/stencils/Cisco/pc_card.odg %%DATADIR%%/stencils/Cisco/pc_card.png %%DATADIR%%/stencils/Cisco/pc_man.desktop %%DATADIR%%/stencils/Cisco/pc_man.odg %%DATADIR%%/stencils/Cisco/pc_man.png %%DATADIR%%/stencils/Cisco/pc_man_left.desktop %%DATADIR%%/stencils/Cisco/pc_man_left.odg %%DATADIR%%/stencils/Cisco/pc_man_left.png %%DATADIR%%/stencils/Cisco/pc_router_card.desktop %%DATADIR%%/stencils/Cisco/pc_router_card.odg %%DATADIR%%/stencils/Cisco/pc_router_card.png %%DATADIR%%/stencils/Cisco/pc_software.desktop %%DATADIR%%/stencils/Cisco/pc_software.odg %%DATADIR%%/stencils/Cisco/pc_software.png %%DATADIR%%/stencils/Cisco/pc_video.desktop %%DATADIR%%/stencils/Cisco/pc_video.odg %%DATADIR%%/stencils/Cisco/pc_video.png %%DATADIR%%/stencils/Cisco/pc_with_router-based_software.desktop %%DATADIR%%/stencils/Cisco/pc_with_router-based_software.odg %%DATADIR%%/stencils/Cisco/pc_with_router-based_software.png %%DATADIR%%/stencils/Cisco/pda.desktop %%DATADIR%%/stencils/Cisco/pda.odg %%DATADIR%%/stencils/Cisco/pda.png %%DATADIR%%/stencils/Cisco/phone.desktop %%DATADIR%%/stencils/Cisco/phone.odg %%DATADIR%%/stencils/Cisco/phone.png %%DATADIR%%/stencils/Cisco/phone_2.desktop %%DATADIR%%/stencils/Cisco/phone_2.odg %%DATADIR%%/stencils/Cisco/phone_2.png %%DATADIR%%/stencils/Cisco/phone_appliance.desktop %%DATADIR%%/stencils/Cisco/phone_appliance.odg %%DATADIR%%/stencils/Cisco/phone_appliance.png %%DATADIR%%/stencils/Cisco/phone_ethernet.desktop %%DATADIR%%/stencils/Cisco/phone_ethernet.odg %%DATADIR%%/stencils/Cisco/phone_ethernet.png %%DATADIR%%/stencils/Cisco/phone_fax.desktop %%DATADIR%%/stencils/Cisco/phone_fax.odg %%DATADIR%%/stencils/Cisco/phone_fax.png %%DATADIR%%/stencils/Cisco/phone_feature.desktop %%DATADIR%%/stencils/Cisco/phone_feature.odg %%DATADIR%%/stencils/Cisco/phone_feature.png %%DATADIR%%/stencils/Cisco/pix_firewall.desktop %%DATADIR%%/stencils/Cisco/pix_firewall.odg %%DATADIR%%/stencils/Cisco/pix_firewall.png %%DATADIR%%/stencils/Cisco/pix_firewall_left.desktop %%DATADIR%%/stencils/Cisco/pix_firewall_left.odg %%DATADIR%%/stencils/Cisco/pix_firewall_left.png %%DATADIR%%/stencils/Cisco/printer.desktop %%DATADIR%%/stencils/Cisco/printer.odg %%DATADIR%%/stencils/Cisco/printer.png %%DATADIR%%/stencils/Cisco/programmable_switch.desktop %%DATADIR%%/stencils/Cisco/programmable_switch.odg %%DATADIR%%/stencils/Cisco/programmable_switch.png %%DATADIR%%/stencils/Cisco/protocol_translator.desktop %%DATADIR%%/stencils/Cisco/protocol_translator.odg %%DATADIR%%/stencils/Cisco/protocol_translator.png %%DATADIR%%/stencils/Cisco/pxf.desktop %%DATADIR%%/stencils/Cisco/pxf.odg %%DATADIR%%/stencils/Cisco/pxf.png %%DATADIR%%/stencils/Cisco/radio_tower.desktop %%DATADIR%%/stencils/Cisco/radio_tower.odg %%DATADIR%%/stencils/Cisco/radio_tower.png %%DATADIR%%/stencils/Cisco/ratemux.desktop %%DATADIR%%/stencils/Cisco/ratemux.odg %%DATADIR%%/stencils/Cisco/ratemux.png %%DATADIR%%/stencils/Cisco/relational_database.desktop %%DATADIR%%/stencils/Cisco/relational_database.odg %%DATADIR%%/stencils/Cisco/relational_database.png %%DATADIR%%/stencils/Cisco/repeater.desktop %%DATADIR%%/stencils/Cisco/repeater.odg %%DATADIR%%/stencils/Cisco/repeater.png %%DATADIR%%/stencils/Cisco/route_switch_processor.desktop %%DATADIR%%/stencils/Cisco/route_switch_processor.odg %%DATADIR%%/stencils/Cisco/route_switch_processor.png %%DATADIR%%/stencils/Cisco/route_switch_processor_with_si.desktop %%DATADIR%%/stencils/Cisco/route_switch_processor_with_si.odg %%DATADIR%%/stencils/Cisco/route_switch_processor_with_si.png %%DATADIR%%/stencils/Cisco/router.desktop %%DATADIR%%/stencils/Cisco/router.odg %%DATADIR%%/stencils/Cisco/router.png %%DATADIR%%/stencils/Cisco/router_in_building.desktop %%DATADIR%%/stencils/Cisco/router_in_building.odg %%DATADIR%%/stencils/Cisco/router_in_building.png %%DATADIR%%/stencils/Cisco/router_subdued.desktop %%DATADIR%%/stencils/Cisco/router_subdued.odg %%DATADIR%%/stencils/Cisco/router_subdued.png %%DATADIR%%/stencils/Cisco/router_with_firewall.desktop %%DATADIR%%/stencils/Cisco/router_with_firewall.odg %%DATADIR%%/stencils/Cisco/router_with_firewall.png %%DATADIR%%/stencils/Cisco/router_with_silicon_switch.desktop %%DATADIR%%/stencils/Cisco/router_with_silicon_switch.odg %%DATADIR%%/stencils/Cisco/router_with_silicon_switch.png %%DATADIR%%/stencils/Cisco/rps.desktop %%DATADIR%%/stencils/Cisco/rps.odg %%DATADIR%%/stencils/Cisco/rps.png %%DATADIR%%/stencils/Cisco/running_man.desktop %%DATADIR%%/stencils/Cisco/running_man.odg %%DATADIR%%/stencils/Cisco/running_man.png %%DATADIR%%/stencils/Cisco/running_man_subdued.desktop %%DATADIR%%/stencils/Cisco/running_man_subdued.odg %%DATADIR%%/stencils/Cisco/running_man_subdued.png %%DATADIR%%/stencils/Cisco/running_woman.desktop %%DATADIR%%/stencils/Cisco/running_woman.odg %%DATADIR%%/stencils/Cisco/running_woman.png %%DATADIR%%/stencils/Cisco/satellite.desktop %%DATADIR%%/stencils/Cisco/satellite.odg %%DATADIR%%/stencils/Cisco/satellite.png %%DATADIR%%/stencils/Cisco/satellite_dish.desktop %%DATADIR%%/stencils/Cisco/satellite_dish.odg %%DATADIR%%/stencils/Cisco/satellite_dish.png %%DATADIR%%/stencils/Cisco/sc2200.desktop %%DATADIR%%/stencils/Cisco/sc2200.odg %%DATADIR%%/stencils/Cisco/sc2200.png %%DATADIR%%/stencils/Cisco/sc2200_vsc3000_host.desktop %%DATADIR%%/stencils/Cisco/sc2200_vsc3000_host.odg %%DATADIR%%/stencils/Cisco/sc2200_vsc3000_host.png %%DATADIR%%/stencils/Cisco/scanner.desktop %%DATADIR%%/stencils/Cisco/scanner.odg %%DATADIR%%/stencils/Cisco/scanner.png %%DATADIR%%/stencils/Cisco/security_appliance.desktop %%DATADIR%%/stencils/Cisco/security_appliance.odg %%DATADIR%%/stencils/Cisco/security_appliance.png %%DATADIR%%/stencils/Cisco/server_switch.desktop %%DATADIR%%/stencils/Cisco/server_switch.odg %%DATADIR%%/stencils/Cisco/server_switch.png %%DATADIR%%/stencils/Cisco/server_with_pc_router.desktop %%DATADIR%%/stencils/Cisco/server_with_pc_router.odg %%DATADIR%%/stencils/Cisco/server_with_pc_router.png %%DATADIR%%/stencils/Cisco/service_control.desktop %%DATADIR%%/stencils/Cisco/service_control.odg %%DATADIR%%/stencils/Cisco/service_control.png %%DATADIR%%/stencils/Cisco/sip_proxy_server.desktop %%DATADIR%%/stencils/Cisco/sip_proxy_server.odg %%DATADIR%%/stencils/Cisco/sip_proxy_server.png %%DATADIR%%/stencils/Cisco/sitting_woman.desktop %%DATADIR%%/stencils/Cisco/sitting_woman.odg %%DATADIR%%/stencils/Cisco/sitting_woman.png %%DATADIR%%/stencils/Cisco/small_business.desktop %%DATADIR%%/stencils/Cisco/small_business.odg %%DATADIR%%/stencils/Cisco/small_business.png %%DATADIR%%/stencils/Cisco/small_hub.desktop %%DATADIR%%/stencils/Cisco/small_hub.odg %%DATADIR%%/stencils/Cisco/small_hub.png %%DATADIR%%/stencils/Cisco/softphone.desktop %%DATADIR%%/stencils/Cisco/softphone.odg %%DATADIR%%/stencils/Cisco/softphone.png %%DATADIR%%/stencils/Cisco/software-based_router_on_file_server.desktop %%DATADIR%%/stencils/Cisco/software-based_router_on_file_server.odg %%DATADIR%%/stencils/Cisco/software-based_router_on_file_server.png %%DATADIR%%/stencils/Cisco/sonet_mux.desktop %%DATADIR%%/stencils/Cisco/sonet_mux.odg %%DATADIR%%/stencils/Cisco/sonet_mux.png %%DATADIR%%/stencils/Cisco/speaker.desktop %%DATADIR%%/stencils/Cisco/speaker.odg %%DATADIR%%/stencils/Cisco/speaker.png %%DATADIR%%/stencils/Cisco/ssl_terminator.desktop %%DATADIR%%/stencils/Cisco/ssl_terminator.odg %%DATADIR%%/stencils/Cisco/ssl_terminator.png %%DATADIR%%/stencils/Cisco/standing_man.desktop %%DATADIR%%/stencils/Cisco/standing_man.odg %%DATADIR%%/stencils/Cisco/standing_man.png %%DATADIR%%/stencils/Cisco/stb.desktop %%DATADIR%%/stencils/Cisco/stb.odg %%DATADIR%%/stencils/Cisco/stb.png %%DATADIR%%/stencils/Cisco/storage_array.desktop %%DATADIR%%/stencils/Cisco/storage_array.odg %%DATADIR%%/stencils/Cisco/storage_array.png %%DATADIR%%/stencils/Cisco/storage_router.desktop %%DATADIR%%/stencils/Cisco/storage_router.odg %%DATADIR%%/stencils/Cisco/storage_router.png %%DATADIR%%/stencils/Cisco/storage_solution_engine.desktop %%DATADIR%%/stencils/Cisco/storage_solution_engine.odg %%DATADIR%%/stencils/Cisco/storage_solution_engine.png %%DATADIR%%/stencils/Cisco/stp.desktop %%DATADIR%%/stencils/Cisco/stp.odg %%DATADIR%%/stencils/Cisco/stp.png %%DATADIR%%/stencils/Cisco/sun_workstation.desktop %%DATADIR%%/stencils/Cisco/sun_workstation.odg %%DATADIR%%/stencils/Cisco/sun_workstation.png %%DATADIR%%/stencils/Cisco/supercomputer.desktop %%DATADIR%%/stencils/Cisco/supercomputer.odg %%DATADIR%%/stencils/Cisco/supercomputer.png %%DATADIR%%/stencils/Cisco/svx.desktop %%DATADIR%%/stencils/Cisco/svx.odg %%DATADIR%%/stencils/Cisco/svx.png %%DATADIR%%/stencils/Cisco/switch_processor.desktop %%DATADIR%%/stencils/Cisco/switch_processor.odg %%DATADIR%%/stencils/Cisco/switch_processor.png %%DATADIR%%/stencils/Cisco/system_controller.desktop %%DATADIR%%/stencils/Cisco/system_controller.odg %%DATADIR%%/stencils/Cisco/system_controller.png %%DATADIR%%/stencils/Cisco/tablet.desktop %%DATADIR%%/stencils/Cisco/tablet.odg %%DATADIR%%/stencils/Cisco/tablet.png %%DATADIR%%/stencils/Cisco/tape_array.desktop %%DATADIR%%/stencils/Cisco/tape_array.odg %%DATADIR%%/stencils/Cisco/tape_array.png %%DATADIR%%/stencils/Cisco/tdm_router.desktop %%DATADIR%%/stencils/Cisco/tdm_router.odg %%DATADIR%%/stencils/Cisco/tdm_router.png %%DATADIR%%/stencils/Cisco/telecommuter.desktop %%DATADIR%%/stencils/Cisco/telecommuter.odg %%DATADIR%%/stencils/Cisco/telecommuter.png %%DATADIR%%/stencils/Cisco/telecommuter_house.desktop %%DATADIR%%/stencils/Cisco/telecommuter_house.odg %%DATADIR%%/stencils/Cisco/telecommuter_house.png %%DATADIR%%/stencils/Cisco/telecommuter_house_router.desktop %%DATADIR%%/stencils/Cisco/telecommuter_house_router.odg %%DATADIR%%/stencils/Cisco/telecommuter_house_router.png %%DATADIR%%/stencils/Cisco/telecommuter_house_subdued.desktop %%DATADIR%%/stencils/Cisco/telecommuter_house_subdued.odg %%DATADIR%%/stencils/Cisco/telecommuter_house_subdued.png %%DATADIR%%/stencils/Cisco/terminal.desktop %%DATADIR%%/stencils/Cisco/terminal.odg %%DATADIR%%/stencils/Cisco/terminal.png %%DATADIR%%/stencils/Cisco/terminal_server.desktop %%DATADIR%%/stencils/Cisco/terminal_server.odg %%DATADIR%%/stencils/Cisco/terminal_server.png %%DATADIR%%/stencils/Cisco/tokenring.desktop %%DATADIR%%/stencils/Cisco/tokenring.odg %%DATADIR%%/stencils/Cisco/tokenring.png %%DATADIR%%/stencils/Cisco/transpath.desktop %%DATADIR%%/stencils/Cisco/transpath.odg %%DATADIR%%/stencils/Cisco/transpath.png %%DATADIR%%/stencils/Cisco/truck.desktop %%DATADIR%%/stencils/Cisco/truck.odg %%DATADIR%%/stencils/Cisco/truck.png %%DATADIR%%/stencils/Cisco/turret.desktop %%DATADIR%%/stencils/Cisco/turret.odg %%DATADIR%%/stencils/Cisco/turret.png %%DATADIR%%/stencils/Cisco/tv.desktop %%DATADIR%%/stencils/Cisco/tv.odg %%DATADIR%%/stencils/Cisco/tv.png %%DATADIR%%/stencils/Cisco/ubr910_cable_dsu.desktop %%DATADIR%%/stencils/Cisco/ubr910_cable_dsu.odg %%DATADIR%%/stencils/Cisco/ubr910_cable_dsu.png %%DATADIR%%/stencils/Cisco/umg_series.desktop %%DATADIR%%/stencils/Cisco/umg_series.odg %%DATADIR%%/stencils/Cisco/umg_series.png %%DATADIR%%/stencils/Cisco/unity_express.desktop %%DATADIR%%/stencils/Cisco/unity_express.odg %%DATADIR%%/stencils/Cisco/unity_express.png %%DATADIR%%/stencils/Cisco/unity_server.desktop %%DATADIR%%/stencils/Cisco/unity_server.odg %%DATADIR%%/stencils/Cisco/unity_server.png %%DATADIR%%/stencils/Cisco/universal_gateway.desktop %%DATADIR%%/stencils/Cisco/universal_gateway.odg %%DATADIR%%/stencils/Cisco/universal_gateway.png %%DATADIR%%/stencils/Cisco/university.desktop %%DATADIR%%/stencils/Cisco/university.odg %%DATADIR%%/stencils/Cisco/university.png %%DATADIR%%/stencils/Cisco/ups.desktop %%DATADIR%%/stencils/Cisco/ups.odg %%DATADIR%%/stencils/Cisco/ups.png %%DATADIR%%/stencils/Cisco/video_camera.desktop %%DATADIR%%/stencils/Cisco/video_camera.odg %%DATADIR%%/stencils/Cisco/video_camera.png %%DATADIR%%/stencils/Cisco/video_camera_right.desktop %%DATADIR%%/stencils/Cisco/video_camera_right.odg %%DATADIR%%/stencils/Cisco/video_camera_right.png %%DATADIR%%/stencils/Cisco/vip.desktop %%DATADIR%%/stencils/Cisco/vip.odg %%DATADIR%%/stencils/Cisco/vip.png %%DATADIR%%/stencils/Cisco/virtual_layer_switch.desktop %%DATADIR%%/stencils/Cisco/virtual_layer_switch.odg %%DATADIR%%/stencils/Cisco/virtual_layer_switch.png %%DATADIR%%/stencils/Cisco/vn2900.desktop %%DATADIR%%/stencils/Cisco/vn2900.odg %%DATADIR%%/stencils/Cisco/vn2900.png %%DATADIR%%/stencils/Cisco/vn5900.desktop %%DATADIR%%/stencils/Cisco/vn5900.odg %%DATADIR%%/stencils/Cisco/vn5900.png %%DATADIR%%/stencils/Cisco/vn5902.desktop %%DATADIR%%/stencils/Cisco/vn5902.odg %%DATADIR%%/stencils/Cisco/vn5902.png %%DATADIR%%/stencils/Cisco/voice-enabled_access_server.desktop %%DATADIR%%/stencils/Cisco/voice-enabled_access_server.odg %%DATADIR%%/stencils/Cisco/voice-enabled_access_server.png %%DATADIR%%/stencils/Cisco/voice-enabled_atm_switch.desktop %%DATADIR%%/stencils/Cisco/voice-enabled_atm_switch.odg %%DATADIR%%/stencils/Cisco/voice-enabled_atm_switch.png %%DATADIR%%/stencils/Cisco/voice-enabled_router.desktop %%DATADIR%%/stencils/Cisco/voice-enabled_router.odg %%DATADIR%%/stencils/Cisco/voice-enabled_router.png %%DATADIR%%/stencils/Cisco/voice_switch2.desktop %%DATADIR%%/stencils/Cisco/voice_switch2.odg %%DATADIR%%/stencils/Cisco/voice_switch2.png %%DATADIR%%/stencils/Cisco/vpn_concentrator.desktop %%DATADIR%%/stencils/Cisco/vpn_concentrator.odg %%DATADIR%%/stencils/Cisco/vpn_concentrator.png %%DATADIR%%/stencils/Cisco/vpn_gateway.desktop %%DATADIR%%/stencils/Cisco/vpn_gateway.odg %%DATADIR%%/stencils/Cisco/vpn_gateway.png %%DATADIR%%/stencils/Cisco/vsc3000.desktop %%DATADIR%%/stencils/Cisco/vsc3000.odg %%DATADIR%%/stencils/Cisco/vsc3000.png %%DATADIR%%/stencils/Cisco/wan.desktop %%DATADIR%%/stencils/Cisco/wan.odg %%DATADIR%%/stencils/Cisco/wan.png %%DATADIR%%/stencils/Cisco/wavelength_router.desktop %%DATADIR%%/stencils/Cisco/wavelength_router.odg %%DATADIR%%/stencils/Cisco/wavelength_router.png %%DATADIR%%/stencils/Cisco/wdm.desktop %%DATADIR%%/stencils/Cisco/wdm.odg %%DATADIR%%/stencils/Cisco/wdm.png %%DATADIR%%/stencils/Cisco/web_browser.desktop %%DATADIR%%/stencils/Cisco/web_browser.odg %%DATADIR%%/stencils/Cisco/web_browser.png %%DATADIR%%/stencils/Cisco/web_cluster.desktop %%DATADIR%%/stencils/Cisco/web_cluster.odg %%DATADIR%%/stencils/Cisco/web_cluster.png %%DATADIR%%/stencils/Cisco/wi-fi_tag.desktop %%DATADIR%%/stencils/Cisco/wi-fi_tag.odg %%DATADIR%%/stencils/Cisco/wi-fi_tag.png %%DATADIR%%/stencils/Cisco/wireless.desktop %%DATADIR%%/stencils/Cisco/wireless.odg %%DATADIR%%/stencils/Cisco/wireless.png %%DATADIR%%/stencils/Cisco/wireless_bridge.desktop %%DATADIR%%/stencils/Cisco/wireless_bridge.odg %%DATADIR%%/stencils/Cisco/wireless_bridge.png %%DATADIR%%/stencils/Cisco/wireless_connectivity.desktop %%DATADIR%%/stencils/Cisco/wireless_connectivity.odg %%DATADIR%%/stencils/Cisco/wireless_connectivity.png %%DATADIR%%/stencils/Cisco/wireless_location_appliance.desktop %%DATADIR%%/stencils/Cisco/wireless_location_appliance.odg %%DATADIR%%/stencils/Cisco/wireless_location_appliance.png %%DATADIR%%/stencils/Cisco/wireless_router.desktop %%DATADIR%%/stencils/Cisco/wireless_router.odg %%DATADIR%%/stencils/Cisco/wireless_router.png %%DATADIR%%/stencils/Cisco/wireless_transport.desktop %%DATADIR%%/stencils/Cisco/wireless_transport.odg %%DATADIR%%/stencils/Cisco/wireless_transport.png %%DATADIR%%/stencils/Cisco/wlan_controller.desktop %%DATADIR%%/stencils/Cisco/wlan_controller.odg %%DATADIR%%/stencils/Cisco/wlan_controller.png %%DATADIR%%/stencils/Cisco/woman.desktop %%DATADIR%%/stencils/Cisco/woman.odg %%DATADIR%%/stencils/Cisco/woman.png %%DATADIR%%/stencils/Cisco/woman_blue.desktop %%DATADIR%%/stencils/Cisco/woman_blue.odg %%DATADIR%%/stencils/Cisco/woman_blue.png %%DATADIR%%/stencils/Cisco/woman_gold.desktop %%DATADIR%%/stencils/Cisco/woman_gold.odg %%DATADIR%%/stencils/Cisco/woman_gold.png %%DATADIR%%/stencils/Cisco/woman_red.desktop %%DATADIR%%/stencils/Cisco/woman_red.odg %%DATADIR%%/stencils/Cisco/woman_red.png %%DATADIR%%/stencils/Cisco/workgroup_director.desktop %%DATADIR%%/stencils/Cisco/workgroup_director.odg %%DATADIR%%/stencils/Cisco/workgroup_director.png %%DATADIR%%/stencils/Cisco/workgroup_fcis.desktop %%DATADIR%%/stencils/Cisco/workgroup_fcis.odg %%DATADIR%%/stencils/Cisco/workgroup_fcis.png %%DATADIR%%/stencils/Cisco/workgroup_switch.desktop %%DATADIR%%/stencils/Cisco/workgroup_switch.odg %%DATADIR%%/stencils/Cisco/workgroup_switch.png %%DATADIR%%/stencils/Cisco/workgroup_switch_subdued.desktop %%DATADIR%%/stencils/Cisco/workgroup_switch_subdued.odg %%DATADIR%%/stencils/Cisco/workgroup_switch_subdued.png %%DATADIR%%/stencils/Cisco/workgroup_switch_voice-enabled.desktop %%DATADIR%%/stencils/Cisco/workgroup_switch_voice-enabled.odg %%DATADIR%%/stencils/Cisco/workgroup_switch_voice-enabled.png %%DATADIR%%/stencils/Cisco/workstation.desktop %%DATADIR%%/stencils/Cisco/workstation.odg %%DATADIR%%/stencils/Cisco/workstation.png %%DATADIR%%/stencils/Cisco/www_server.desktop %%DATADIR%%/stencils/Cisco/www_server.odg %%DATADIR%%/stencils/Cisco/www_server.png %%DATADIR%%/stencils/Civil/bvrest.desktop %%DATADIR%%/stencils/Civil/bvrest.odg %%DATADIR%%/stencils/Civil/bvrest.png %%DATADIR%%/stencils/Civil/civil_aerator.desktop %%DATADIR%%/stencils/Civil/civil_aerator.odg %%DATADIR%%/stencils/Civil/civil_aerator.png %%DATADIR%%/stencils/Civil/civil_arrow_right.desktop %%DATADIR%%/stencils/Civil/civil_arrow_right.odg %%DATADIR%%/stencils/Civil/civil_arrow_right.png %%DATADIR%%/stencils/Civil/civil_arrow_up.desktop %%DATADIR%%/stencils/Civil/civil_arrow_up.odg %%DATADIR%%/stencils/Civil/civil_arrow_up.png %%DATADIR%%/stencils/Civil/civil_backflow_preventer.desktop %%DATADIR%%/stencils/Civil/civil_backflow_preventer.odg %%DATADIR%%/stencils/Civil/civil_backflow_preventer.png %%DATADIR%%/stencils/Civil/civil_basin.desktop %%DATADIR%%/stencils/Civil/civil_basin.odg %%DATADIR%%/stencils/Civil/civil_basin.png %%DATADIR%%/stencils/Civil/civil_container.desktop %%DATADIR%%/stencils/Civil/civil_container.odg %%DATADIR%%/stencils/Civil/civil_container.png %%DATADIR%%/stencils/Civil/civil_final-settling_basin.desktop %%DATADIR%%/stencils/Civil/civil_final-settling_basin.odg %%DATADIR%%/stencils/Civil/civil_final-settling_basin.png %%DATADIR%%/stencils/Civil/civil_frequency_converter.desktop %%DATADIR%%/stencils/Civil/civil_frequency_converter.odg %%DATADIR%%/stencils/Civil/civil_frequency_converter.png %%DATADIR%%/stencils/Civil/civil_gas_bottle.desktop %%DATADIR%%/stencils/Civil/civil_gas_bottle.odg %%DATADIR%%/stencils/Civil/civil_gas_bottle.png %%DATADIR%%/stencils/Civil/civil_horizontal_limiting_line.desktop %%DATADIR%%/stencils/Civil/civil_horizontal_limiting_line.odg %%DATADIR%%/stencils/Civil/civil_horizontal_limiting_line.png %%DATADIR%%/stencils/Civil/civil_horizontal_valve.desktop %%DATADIR%%/stencils/Civil/civil_horizontal_valve.odg %%DATADIR%%/stencils/Civil/civil_horizontal_valve.png %%DATADIR%%/stencils/Civil/civil_motor.desktop %%DATADIR%%/stencils/Civil/civil_motor.odg %%DATADIR%%/stencils/Civil/civil_motor.png %%DATADIR%%/stencils/Civil/civil_preliminary_clarification_tank.desktop %%DATADIR%%/stencils/Civil/civil_preliminary_clarification_tank.odg %%DATADIR%%/stencils/Civil/civil_preliminary_clarification_tank.png %%DATADIR%%/stencils/Civil/civil_rotor.desktop %%DATADIR%%/stencils/Civil/civil_rotor.odg %%DATADIR%%/stencils/Civil/civil_rotor.png %%DATADIR%%/stencils/Civil/civil_soil.desktop %%DATADIR%%/stencils/Civil/civil_soil.odg %%DATADIR%%/stencils/Civil/civil_soil.png %%DATADIR%%/stencils/Civil/civil_vertical_limiting_line.desktop %%DATADIR%%/stencils/Civil/civil_vertical_limiting_line.odg %%DATADIR%%/stencils/Civil/civil_vertical_limiting_line.png %%DATADIR%%/stencils/Civil/civil_vertical_propeller.desktop %%DATADIR%%/stencils/Civil/civil_vertical_propeller.odg %%DATADIR%%/stencils/Civil/civil_vertical_propeller.png %%DATADIR%%/stencils/Civil/collection.desktop %%DATADIR%%/stencils/Civil/hcompressor.desktop %%DATADIR%%/stencils/Civil/hcompressor.odg %%DATADIR%%/stencils/Civil/hcompressor.png %%DATADIR%%/stencils/Civil/hpump.desktop %%DATADIR%%/stencils/Civil/hpump.odg %%DATADIR%%/stencils/Civil/hpump.png %%DATADIR%%/stencils/Civil/hrest.desktop %%DATADIR%%/stencils/Civil/hrest.odg %%DATADIR%%/stencils/Civil/hrest.png %%DATADIR%%/stencils/Civil/line.desktop %%DATADIR%%/stencils/Civil/line.odg %%DATADIR%%/stencils/Civil/line.png %%DATADIR%%/stencils/Civil/vcompressor.desktop %%DATADIR%%/stencils/Civil/vcompressor.odg %%DATADIR%%/stencils/Civil/vcompressor.png %%DATADIR%%/stencils/Civil/vpump.desktop %%DATADIR%%/stencils/Civil/vpump.odg %%DATADIR%%/stencils/Civil/vpump.png %%DATADIR%%/stencils/Civil/vrest.desktop %%DATADIR%%/stencils/Civil/vrest.odg %%DATADIR%%/stencils/Civil/vrest.png %%DATADIR%%/stencils/Civil/water_level.desktop %%DATADIR%%/stencils/Civil/water_level.odg %%DATADIR%%/stencils/Civil/water_level.png %%DATADIR%%/stencils/Contact/c_if.desktop %%DATADIR%%/stencils/Contact/c_if.odg %%DATADIR%%/stencils/Contact/c_if.png %%DATADIR%%/stencils/Contact/c_ifnot.desktop %%DATADIR%%/stencils/Contact/c_ifnot.odg %%DATADIR%%/stencils/Contact/c_ifnot.png %%DATADIR%%/stencils/Contact/c_lamp.desktop %%DATADIR%%/stencils/Contact/c_lamp.odg %%DATADIR%%/stencils/Contact/c_lamp.png %%DATADIR%%/stencils/Contact/c_relay.desktop %%DATADIR%%/stencils/Contact/c_relay.odg %%DATADIR%%/stencils/Contact/c_relay.png %%DATADIR%%/stencils/Contact/collection.desktop %%DATADIR%%/stencils/Contact/l_if.desktop %%DATADIR%%/stencils/Contact/l_if.odg %%DATADIR%%/stencils/Contact/l_if.png %%DATADIR%%/stencils/Contact/l_ifnot.desktop %%DATADIR%%/stencils/Contact/l_ifnot.odg %%DATADIR%%/stencils/Contact/l_ifnot.png %%DATADIR%%/stencils/Contact/l_out.desktop %%DATADIR%%/stencils/Contact/l_out.odg %%DATADIR%%/stencils/Contact/l_out.png %%DATADIR%%/stencils/Contact/l_outj.desktop %%DATADIR%%/stencils/Contact/l_outj.odg %%DATADIR%%/stencils/Contact/l_outj.png %%DATADIR%%/stencils/Contact/l_outnot.desktop %%DATADIR%%/stencils/Contact/l_outnot.odg %%DATADIR%%/stencils/Contact/l_outnot.png %%DATADIR%%/stencils/Contact/l_outr.desktop %%DATADIR%%/stencils/Contact/l_outr.odg %%DATADIR%%/stencils/Contact/l_outr.png %%DATADIR%%/stencils/Contact/l_outrcep.desktop %%DATADIR%%/stencils/Contact/l_outrcep.odg %%DATADIR%%/stencils/Contact/l_outrcep.png %%DATADIR%%/stencils/Contact/l_outs.desktop %%DATADIR%%/stencils/Contact/l_outs.odg %%DATADIR%%/stencils/Contact/l_outs.png %%DATADIR%%/stencils/Contact/l_sout.desktop %%DATADIR%%/stencils/Contact/l_sout.odg %%DATADIR%%/stencils/Contact/l_sout.png %%DATADIR%%/stencils/Contact/l_soutnot.desktop %%DATADIR%%/stencils/Contact/l_soutnot.odg %%DATADIR%%/stencils/Contact/l_soutnot.png %%DATADIR%%/stencils/Contact/l_soutr.desktop %%DATADIR%%/stencils/Contact/l_soutr.odg %%DATADIR%%/stencils/Contact/l_soutr.png %%DATADIR%%/stencils/Contact/l_souts.desktop %%DATADIR%%/stencils/Contact/l_souts.odg %%DATADIR%%/stencils/Contact/l_souts.png %%DATADIR%%/stencils/Cybernetics/b-integrator.desktop %%DATADIR%%/stencils/Cybernetics/b-integrator.odg %%DATADIR%%/stencils/Cybernetics/b-integrator.png %%DATADIR%%/stencils/Cybernetics/b-minus.desktop %%DATADIR%%/stencils/Cybernetics/b-minus.odg %%DATADIR%%/stencils/Cybernetics/b-minus.png %%DATADIR%%/stencils/Cybernetics/b-sens.desktop %%DATADIR%%/stencils/Cybernetics/b-sens.odg %%DATADIR%%/stencils/Cybernetics/b-sens.png %%DATADIR%%/stencils/Cybernetics/collection.desktop %%DATADIR%%/stencils/Cybernetics/delta-t.desktop %%DATADIR%%/stencils/Cybernetics/delta-t.odg %%DATADIR%%/stencils/Cybernetics/delta-t.png %%DATADIR%%/stencils/Cybernetics/empty-func.desktop %%DATADIR%%/stencils/Cybernetics/empty-func.odg %%DATADIR%%/stencils/Cybernetics/empty-func.png %%DATADIR%%/stencils/Cybernetics/factor-0to-1.desktop %%DATADIR%%/stencils/Cybernetics/factor-0to-1.odg %%DATADIR%%/stencils/Cybernetics/factor-0to-1.png %%DATADIR%%/stencils/Cybernetics/factor-0to1.desktop %%DATADIR%%/stencils/Cybernetics/factor-0to1.odg %%DATADIR%%/stencils/Cybernetics/factor-0to1.png %%DATADIR%%/stencils/Cybernetics/factor-greater1.desktop %%DATADIR%%/stencils/Cybernetics/factor-greater1.odg %%DATADIR%%/stencils/Cybernetics/factor-greater1.png %%DATADIR%%/stencils/Cybernetics/factor-smaller-1.desktop %%DATADIR%%/stencils/Cybernetics/factor-smaller-1.odg %%DATADIR%%/stencils/Cybernetics/factor-smaller-1.png %%DATADIR%%/stencils/Cybernetics/full-wave-rectifier.desktop %%DATADIR%%/stencils/Cybernetics/full-wave-rectifier.odg %%DATADIR%%/stencils/Cybernetics/full-wave-rectifier.png %%DATADIR%%/stencils/Cybernetics/half-wave-rectifier.desktop %%DATADIR%%/stencils/Cybernetics/half-wave-rectifier.odg %%DATADIR%%/stencils/Cybernetics/half-wave-rectifier.png %%DATADIR%%/stencils/Cybernetics/hpf.desktop %%DATADIR%%/stencils/Cybernetics/hpf.odg %%DATADIR%%/stencils/Cybernetics/hpf.png %%DATADIR%%/stencils/Cybernetics/l-integrator.desktop %%DATADIR%%/stencils/Cybernetics/l-integrator.odg %%DATADIR%%/stencils/Cybernetics/l-integrator.png %%DATADIR%%/stencils/Cybernetics/l-minus.desktop %%DATADIR%%/stencils/Cybernetics/l-minus.odg %%DATADIR%%/stencils/Cybernetics/l-minus.png %%DATADIR%%/stencils/Cybernetics/l-sens.desktop %%DATADIR%%/stencils/Cybernetics/l-sens.odg %%DATADIR%%/stencils/Cybernetics/l-sens.png %%DATADIR%%/stencils/Cybernetics/lpf.desktop %%DATADIR%%/stencils/Cybernetics/lpf.odg %%DATADIR%%/stencils/Cybernetics/lpf.png %%DATADIR%%/stencils/Cybernetics/negative-shift.desktop %%DATADIR%%/stencils/Cybernetics/negative-shift.odg %%DATADIR%%/stencils/Cybernetics/negative-shift.png %%DATADIR%%/stencils/Cybernetics/positive-shift.desktop %%DATADIR%%/stencils/Cybernetics/positive-shift.odg %%DATADIR%%/stencils/Cybernetics/positive-shift.png %%DATADIR%%/stencils/Cybernetics/product.desktop %%DATADIR%%/stencils/Cybernetics/product.odg %%DATADIR%%/stencils/Cybernetics/product.png %%DATADIR%%/stencils/Cybernetics/r-integrator.desktop %%DATADIR%%/stencils/Cybernetics/r-integrator.odg %%DATADIR%%/stencils/Cybernetics/r-integrator.png %%DATADIR%%/stencils/Cybernetics/r-minus.desktop %%DATADIR%%/stencils/Cybernetics/r-minus.odg %%DATADIR%%/stencils/Cybernetics/r-minus.png %%DATADIR%%/stencils/Cybernetics/r-sens.desktop %%DATADIR%%/stencils/Cybernetics/r-sens.odg %%DATADIR%%/stencils/Cybernetics/r-sens.png %%DATADIR%%/stencils/Cybernetics/relay.desktop %%DATADIR%%/stencils/Cybernetics/relay.odg %%DATADIR%%/stencils/Cybernetics/relay.png %%DATADIR%%/stencils/Cybernetics/saturation.desktop %%DATADIR%%/stencils/Cybernetics/saturation.odg %%DATADIR%%/stencils/Cybernetics/saturation.png %%DATADIR%%/stencils/Cybernetics/sigmoid.desktop %%DATADIR%%/stencils/Cybernetics/sigmoid.odg %%DATADIR%%/stencils/Cybernetics/sigmoid.png %%DATADIR%%/stencils/Cybernetics/sine.desktop %%DATADIR%%/stencils/Cybernetics/sine.odg %%DATADIR%%/stencils/Cybernetics/sine.png %%DATADIR%%/stencils/Cybernetics/sum.desktop %%DATADIR%%/stencils/Cybernetics/sum.odg %%DATADIR%%/stencils/Cybernetics/sum.png %%DATADIR%%/stencils/Cybernetics/t-integrator.desktop %%DATADIR%%/stencils/Cybernetics/t-integrator.odg %%DATADIR%%/stencils/Cybernetics/t-integrator.png %%DATADIR%%/stencils/Cybernetics/t-minus.desktop %%DATADIR%%/stencils/Cybernetics/t-minus.odg %%DATADIR%%/stencils/Cybernetics/t-minus.png %%DATADIR%%/stencils/Cybernetics/t-sens.desktop %%DATADIR%%/stencils/Cybernetics/t-sens.odg %%DATADIR%%/stencils/Cybernetics/t-sens.png %%DATADIR%%/stencils/Digital/add_h.desktop %%DATADIR%%/stencils/Digital/add_h.odg %%DATADIR%%/stencils/Digital/add_h.png %%DATADIR%%/stencils/Digital/add_v.desktop %%DATADIR%%/stencils/Digital/add_v.odg %%DATADIR%%/stencils/Digital/add_v.png %%DATADIR%%/stencils/Digital/and_h.desktop %%DATADIR%%/stencils/Digital/and_h.odg %%DATADIR%%/stencils/Digital/and_h.png %%DATADIR%%/stencils/Digital/and_v.desktop %%DATADIR%%/stencils/Digital/and_v.odg %%DATADIR%%/stencils/Digital/and_v.png %%DATADIR%%/stencils/Digital/buff_h.desktop %%DATADIR%%/stencils/Digital/buff_h.odg %%DATADIR%%/stencils/Digital/buff_h.png %%DATADIR%%/stencils/Digital/buff_v.desktop %%DATADIR%%/stencils/Digital/buff_v.odg %%DATADIR%%/stencils/Digital/buff_v.png %%DATADIR%%/stencils/Digital/collection.desktop %%DATADIR%%/stencils/Digital/conn.desktop %%DATADIR%%/stencils/Digital/conn.odg %%DATADIR%%/stencils/Digital/conn.png %%DATADIR%%/stencils/Digital/inv_h.desktop %%DATADIR%%/stencils/Digital/inv_h.odg %%DATADIR%%/stencils/Digital/inv_h.png %%DATADIR%%/stencils/Digital/inv_v.desktop %%DATADIR%%/stencils/Digital/inv_v.odg %%DATADIR%%/stencils/Digital/inv_v.png %%DATADIR%%/stencils/Digital/mux_h.desktop %%DATADIR%%/stencils/Digital/mux_h.odg %%DATADIR%%/stencils/Digital/mux_h.png %%DATADIR%%/stencils/Digital/mux_v.desktop %%DATADIR%%/stencils/Digital/mux_v.odg %%DATADIR%%/stencils/Digital/mux_v.png %%DATADIR%%/stencils/Digital/nand_h.desktop %%DATADIR%%/stencils/Digital/nand_h.odg %%DATADIR%%/stencils/Digital/nand_h.png %%DATADIR%%/stencils/Digital/nand_v.desktop %%DATADIR%%/stencils/Digital/nand_v.odg %%DATADIR%%/stencils/Digital/nand_v.png %%DATADIR%%/stencils/Digital/nor_h.desktop %%DATADIR%%/stencils/Digital/nor_h.odg %%DATADIR%%/stencils/Digital/nor_h.png %%DATADIR%%/stencils/Digital/nor_v.desktop %%DATADIR%%/stencils/Digital/nor_v.odg %%DATADIR%%/stencils/Digital/nor_v.png %%DATADIR%%/stencils/Digital/or_h.desktop %%DATADIR%%/stencils/Digital/or_h.odg %%DATADIR%%/stencils/Digital/or_h.png %%DATADIR%%/stencils/Digital/or_v.desktop %%DATADIR%%/stencils/Digital/or_v.odg %%DATADIR%%/stencils/Digital/or_v.png %%DATADIR%%/stencils/Digital/reg_h.desktop %%DATADIR%%/stencils/Digital/reg_h.odg %%DATADIR%%/stencils/Digital/reg_h.png %%DATADIR%%/stencils/Digital/reg_v.desktop %%DATADIR%%/stencils/Digital/reg_v.odg %%DATADIR%%/stencils/Digital/reg_v.png %%DATADIR%%/stencils/Digital/xnor_h.desktop %%DATADIR%%/stencils/Digital/xnor_h.odg %%DATADIR%%/stencils/Digital/xnor_h.png %%DATADIR%%/stencils/Digital/xnor_v.desktop %%DATADIR%%/stencils/Digital/xnor_v.odg %%DATADIR%%/stencils/Digital/xnor_v.png %%DATADIR%%/stencils/Digital/xor_h.desktop %%DATADIR%%/stencils/Digital/xor_h.odg %%DATADIR%%/stencils/Digital/xor_h.png %%DATADIR%%/stencils/Digital/xor_v.desktop %%DATADIR%%/stencils/Digital/xor_v.odg %%DATADIR%%/stencils/Digital/xor_v.png %%DATADIR%%/stencils/Edpc/and.desktop %%DATADIR%%/stencils/Edpc/and.odg %%DATADIR%%/stencils/Edpc/and.png %%DATADIR%%/stencils/Edpc/collection.desktop %%DATADIR%%/stencils/Edpc/function.desktop %%DATADIR%%/stencils/Edpc/function.odg %%DATADIR%%/stencils/Edpc/function.png %%DATADIR%%/stencils/Edpc/or.desktop %%DATADIR%%/stencils/Edpc/or.odg %%DATADIR%%/stencils/Edpc/or.png %%DATADIR%%/stencils/Edpc/organisation_unit.desktop %%DATADIR%%/stencils/Edpc/organisation_unit.odg %%DATADIR%%/stencils/Edpc/organisation_unit.png %%DATADIR%%/stencils/Edpc/xor.desktop %%DATADIR%%/stencils/Edpc/xor.odg %%DATADIR%%/stencils/Edpc/xor.png %%DATADIR%%/stencils/Electric/cnx.desktop %%DATADIR%%/stencils/Electric/cnx.odg %%DATADIR%%/stencils/Electric/cnx.png %%DATADIR%%/stencils/Electric/collection.desktop %%DATADIR%%/stencils/Electric/command.desktop %%DATADIR%%/stencils/Electric/command.odg %%DATADIR%%/stencils/Electric/command.png %%DATADIR%%/stencils/Electric/contact_f.desktop %%DATADIR%%/stencils/Electric/contact_f.odg %%DATADIR%%/stencils/Electric/contact_f.png %%DATADIR%%/stencils/Electric/contact_o.desktop %%DATADIR%%/stencils/Electric/contact_o.odg %%DATADIR%%/stencils/Electric/contact_o.png %%DATADIR%%/stencils/Electric/intpos_f.desktop %%DATADIR%%/stencils/Electric/intpos_f.odg %%DATADIR%%/stencils/Electric/intpos_f.png %%DATADIR%%/stencils/Electric/intpos_o.desktop %%DATADIR%%/stencils/Electric/intpos_o.odg %%DATADIR%%/stencils/Electric/intpos_o.png %%DATADIR%%/stencils/Electric/lamp.desktop %%DATADIR%%/stencils/Electric/lamp.odg %%DATADIR%%/stencils/Electric/lamp.png %%DATADIR%%/stencils/Electric/relay.desktop %%DATADIR%%/stencils/Electric/relay.odg %%DATADIR%%/stencils/Electric/relay.png %%DATADIR%%/stencils/Electric/vcommand.desktop %%DATADIR%%/stencils/Electric/vcommand.odg %%DATADIR%%/stencils/Electric/vcommand.png %%DATADIR%%/stencils/Electric/vcontact_f.desktop %%DATADIR%%/stencils/Electric/vcontact_f.odg %%DATADIR%%/stencils/Electric/vcontact_f.png %%DATADIR%%/stencils/Electric/vcontact_o.desktop %%DATADIR%%/stencils/Electric/vcontact_o.odg %%DATADIR%%/stencils/Electric/vcontact_o.png %%DATADIR%%/stencils/Electric/vintpos_f.desktop %%DATADIR%%/stencils/Electric/vintpos_f.odg %%DATADIR%%/stencils/Electric/vintpos_f.png %%DATADIR%%/stencils/Electric/vintpos_o.desktop %%DATADIR%%/stencils/Electric/vintpos_o.odg %%DATADIR%%/stencils/Electric/vintpos_o.png %%DATADIR%%/stencils/Electric/vlamp.desktop %%DATADIR%%/stencils/Electric/vlamp.odg %%DATADIR%%/stencils/Electric/vlamp.png %%DATADIR%%/stencils/Electric/vrelay.desktop %%DATADIR%%/stencils/Electric/vrelay.odg %%DATADIR%%/stencils/Electric/vrelay.png %%DATADIR%%/stencils/Electric2/ckt-breaker.desktop %%DATADIR%%/stencils/Electric2/ckt-breaker.odg %%DATADIR%%/stencils/Electric2/ckt-breaker.png %%DATADIR%%/stencils/Electric2/collection.desktop %%DATADIR%%/stencils/Electric2/generator.desktop %%DATADIR%%/stencils/Electric2/generator.odg %%DATADIR%%/stencils/Electric2/generator.png %%DATADIR%%/stencils/Electric2/isolator.desktop %%DATADIR%%/stencils/Electric2/isolator.odg %%DATADIR%%/stencils/Electric2/isolator.png %%DATADIR%%/stencils/Electric2/transformer.desktop %%DATADIR%%/stencils/Electric2/transformer.odg %%DATADIR%%/stencils/Electric2/transformer.png %%DATADIR%%/stencils/Electronic/ampermeter.desktop %%DATADIR%%/stencils/Electronic/ampermeter.odg %%DATADIR%%/stencils/Electronic/ampermeter.png %%DATADIR%%/stencils/Electronic/antenna.desktop %%DATADIR%%/stencils/Electronic/antenna.odg %%DATADIR%%/stencils/Electronic/antenna.png %%DATADIR%%/stencils/Electronic/bell.desktop %%DATADIR%%/stencils/Electronic/bell.odg %%DATADIR%%/stencils/Electronic/bell.png %%DATADIR%%/stencils/Electronic/button.desktop %%DATADIR%%/stencils/Electronic/button.odg %%DATADIR%%/stencils/Electronic/button.png %%DATADIR%%/stencils/Electronic/capacitor.desktop %%DATADIR%%/stencils/Electronic/capacitor.odg %%DATADIR%%/stencils/Electronic/capacitor.png %%DATADIR%%/stencils/Electronic/capacitor_electrolytic.desktop %%DATADIR%%/stencils/Electronic/capacitor_electrolytic.odg %%DATADIR%%/stencils/Electronic/capacitor_electrolytic.png %%DATADIR%%/stencils/Electronic/collection.desktop %%DATADIR%%/stencils/Electronic/contact.desktop %%DATADIR%%/stencils/Electronic/contact.odg %%DATADIR%%/stencils/Electronic/contact.png %%DATADIR%%/stencils/Electronic/contact_pair.desktop %%DATADIR%%/stencils/Electronic/contact_pair.odg %%DATADIR%%/stencils/Electronic/contact_pair.png %%DATADIR%%/stencils/Electronic/crystal.desktop %%DATADIR%%/stencils/Electronic/crystal.odg %%DATADIR%%/stencils/Electronic/crystal.png %%DATADIR%%/stencils/Electronic/di_gate.desktop %%DATADIR%%/stencils/Electronic/di_gate.odg %%DATADIR%%/stencils/Electronic/di_gate.png %%DATADIR%%/stencils/Electronic/diac.desktop %%DATADIR%%/stencils/Electronic/diac.odg %%DATADIR%%/stencils/Electronic/diac.png %%DATADIR%%/stencils/Electronic/diode_inverse.desktop %%DATADIR%%/stencils/Electronic/diode_inverse.odg %%DATADIR%%/stencils/Electronic/diode_inverse.png %%DATADIR%%/stencils/Electronic/diode_schottky.desktop %%DATADIR%%/stencils/Electronic/diode_schottky.odg %%DATADIR%%/stencils/Electronic/diode_schottky.png %%DATADIR%%/stencils/Electronic/diode_tunnel.desktop %%DATADIR%%/stencils/Electronic/diode_tunnel.odg %%DATADIR%%/stencils/Electronic/diode_tunnel.png %%DATADIR%%/stencils/Electronic/diode_zenner.desktop %%DATADIR%%/stencils/Electronic/diode_zenner.odg %%DATADIR%%/stencils/Electronic/diode_zenner.png %%DATADIR%%/stencils/Electronic/engine.desktop %%DATADIR%%/stencils/Electronic/engine.odg %%DATADIR%%/stencils/Electronic/engine.png %%DATADIR%%/stencils/Electronic/ground.desktop %%DATADIR%%/stencils/Electronic/ground.odg %%DATADIR%%/stencils/Electronic/ground.png %%DATADIR%%/stencils/Electronic/headphone.desktop %%DATADIR%%/stencils/Electronic/headphone.odg %%DATADIR%%/stencils/Electronic/headphone.png %%DATADIR%%/stencils/Electronic/inductor.desktop %%DATADIR%%/stencils/Electronic/inductor.odg %%DATADIR%%/stencils/Electronic/inductor.png %%DATADIR%%/stencils/Electronic/led_display.desktop %%DATADIR%%/stencils/Electronic/led_display.odg %%DATADIR%%/stencils/Electronic/led_display.png %%DATADIR%%/stencils/Electronic/microphone.desktop %%DATADIR%%/stencils/Electronic/microphone.odg %%DATADIR%%/stencils/Electronic/microphone.png %%DATADIR%%/stencils/Electronic/photo_emiting_part.desktop %%DATADIR%%/stencils/Electronic/photo_emiting_part.odg %%DATADIR%%/stencils/Electronic/photo_emiting_part.png %%DATADIR%%/stencils/Electronic/photo_sensitive_part.desktop %%DATADIR%%/stencils/Electronic/photo_sensitive_part.odg %%DATADIR%%/stencils/Electronic/photo_sensitive_part.png %%DATADIR%%/stencils/Electronic/port_in.desktop %%DATADIR%%/stencils/Electronic/port_in.odg %%DATADIR%%/stencils/Electronic/port_in.png %%DATADIR%%/stencils/Electronic/port_inout.desktop %%DATADIR%%/stencils/Electronic/port_inout.odg %%DATADIR%%/stencils/Electronic/port_inout.png %%DATADIR%%/stencils/Electronic/port_out.desktop %%DATADIR%%/stencils/Electronic/port_out.odg %%DATADIR%%/stencils/Electronic/port_out.png %%DATADIR%%/stencils/Electronic/potenciometer.desktop %%DATADIR%%/stencils/Electronic/potenciometer.odg %%DATADIR%%/stencils/Electronic/potenciometer.png %%DATADIR%%/stencils/Electronic/source.desktop %%DATADIR%%/stencils/Electronic/source.odg %%DATADIR%%/stencils/Electronic/source.png %%DATADIR%%/stencils/Electronic/source_current.desktop %%DATADIR%%/stencils/Electronic/source_current.odg %%DATADIR%%/stencils/Electronic/source_current.png %%DATADIR%%/stencils/Electronic/source_substitution.desktop %%DATADIR%%/stencils/Electronic/source_substitution.odg %%DATADIR%%/stencils/Electronic/source_substitution.png %%DATADIR%%/stencils/Electronic/source_voltage.desktop %%DATADIR%%/stencils/Electronic/source_voltage.odg %%DATADIR%%/stencils/Electronic/source_voltage.png %%DATADIR%%/stencils/Electronic/source_voltage_alternating.desktop %%DATADIR%%/stencils/Electronic/source_voltage_alternating.odg %%DATADIR%%/stencils/Electronic/source_voltage_alternating.png %%DATADIR%%/stencils/Electronic/source_voltage_direct.desktop %%DATADIR%%/stencils/Electronic/source_voltage_direct.odg %%DATADIR%%/stencils/Electronic/source_voltage_direct.png %%DATADIR%%/stencils/Electronic/transistor_bipolar_npn_1.desktop %%DATADIR%%/stencils/Electronic/transistor_bipolar_npn_1.odg %%DATADIR%%/stencils/Electronic/transistor_bipolar_npn_1.png %%DATADIR%%/stencils/Electronic/transistor_bipolar_npn_2.desktop %%DATADIR%%/stencils/Electronic/transistor_bipolar_npn_2.odg %%DATADIR%%/stencils/Electronic/transistor_bipolar_npn_2.png %%DATADIR%%/stencils/Electronic/transistor_bipolar_pnp_1.desktop %%DATADIR%%/stencils/Electronic/transistor_bipolar_pnp_1.odg %%DATADIR%%/stencils/Electronic/transistor_bipolar_pnp_1.png %%DATADIR%%/stencils/Electronic/transistor_bipolar_pnp_2.desktop %%DATADIR%%/stencils/Electronic/transistor_bipolar_pnp_2.odg %%DATADIR%%/stencils/Electronic/transistor_bipolar_pnp_2.png %%DATADIR%%/stencils/Electronic/transistor_jfe_n.desktop %%DATADIR%%/stencils/Electronic/transistor_jfe_n.odg %%DATADIR%%/stencils/Electronic/transistor_jfe_n.png %%DATADIR%%/stencils/Electronic/transistor_jfe_p.desktop %%DATADIR%%/stencils/Electronic/transistor_jfe_p.odg %%DATADIR%%/stencils/Electronic/transistor_jfe_p.png %%DATADIR%%/stencils/Electronic/transistor_misfe_c_n.desktop %%DATADIR%%/stencils/Electronic/transistor_misfe_c_n.odg %%DATADIR%%/stencils/Electronic/transistor_misfe_c_n.png %%DATADIR%%/stencils/Electronic/transistor_misfe_c_p.desktop %%DATADIR%%/stencils/Electronic/transistor_misfe_c_p.odg %%DATADIR%%/stencils/Electronic/transistor_misfe_c_p.png %%DATADIR%%/stencils/Electronic/transistor_misfe_i_n.desktop %%DATADIR%%/stencils/Electronic/transistor_misfe_i_n.odg %%DATADIR%%/stencils/Electronic/transistor_misfe_i_n.png %%DATADIR%%/stencils/Electronic/transistor_misfe_i_p.desktop %%DATADIR%%/stencils/Electronic/transistor_misfe_i_p.odg %%DATADIR%%/stencils/Electronic/transistor_misfe_i_p.png %%DATADIR%%/stencils/Electronic/transistor_single_pn.desktop %%DATADIR%%/stencils/Electronic/transistor_single_pn.odg %%DATADIR%%/stencils/Electronic/transistor_single_pn.png %%DATADIR%%/stencils/Electronic/triac.desktop %%DATADIR%%/stencils/Electronic/triac.odg %%DATADIR%%/stencils/Electronic/triac.png %%DATADIR%%/stencils/Electronic/tyristor_diode.desktop %%DATADIR%%/stencils/Electronic/tyristor_diode.odg %%DATADIR%%/stencils/Electronic/tyristor_diode.png %%DATADIR%%/stencils/Electronic/tyristor_triode.desktop %%DATADIR%%/stencils/Electronic/tyristor_triode.odg %%DATADIR%%/stencils/Electronic/tyristor_triode.png %%DATADIR%%/stencils/Electronic/vacuum_diode.desktop %%DATADIR%%/stencils/Electronic/vacuum_diode.odg %%DATADIR%%/stencils/Electronic/vacuum_diode.png %%DATADIR%%/stencils/Electronic/vacuum_pentode.desktop %%DATADIR%%/stencils/Electronic/vacuum_pentode.odg %%DATADIR%%/stencils/Electronic/vacuum_pentode.png %%DATADIR%%/stencils/Electronic/vacuum_triode.desktop %%DATADIR%%/stencils/Electronic/vacuum_triode.odg %%DATADIR%%/stencils/Electronic/vacuum_triode.png %%DATADIR%%/stencils/Electronic/variable_linear_part.desktop %%DATADIR%%/stencils/Electronic/variable_linear_part.odg %%DATADIR%%/stencils/Electronic/variable_linear_part.png %%DATADIR%%/stencils/Electronic/variable_nonlinear_part.desktop %%DATADIR%%/stencils/Electronic/variable_nonlinear_part.odg %%DATADIR%%/stencils/Electronic/variable_nonlinear_part.png %%DATADIR%%/stencils/Electronic/varicap.desktop %%DATADIR%%/stencils/Electronic/varicap.odg %%DATADIR%%/stencils/Electronic/varicap.png %%DATADIR%%/stencils/Electronic/voltmeter.desktop %%DATADIR%%/stencils/Electronic/voltmeter.odg %%DATADIR%%/stencils/Electronic/voltmeter.png %%DATADIR%%/stencils/Flags/afghanistan.desktop %%DATADIR%%/stencils/Flags/afghanistan.odg %%DATADIR%%/stencils/Flags/afghanistan.png %%DATADIR%%/stencils/Flags/albania.desktop %%DATADIR%%/stencils/Flags/albania.odg %%DATADIR%%/stencils/Flags/albania.png %%DATADIR%%/stencils/Flags/algeria.desktop %%DATADIR%%/stencils/Flags/algeria.odg %%DATADIR%%/stencils/Flags/algeria.png %%DATADIR%%/stencils/Flags/andorra.desktop %%DATADIR%%/stencils/Flags/andorra.odg %%DATADIR%%/stencils/Flags/andorra.png %%DATADIR%%/stencils/Flags/angola.desktop %%DATADIR%%/stencils/Flags/angola.odg %%DATADIR%%/stencils/Flags/angola.png %%DATADIR%%/stencils/Flags/antarctica.desktop %%DATADIR%%/stencils/Flags/antarctica.odg %%DATADIR%%/stencils/Flags/antarctica.png %%DATADIR%%/stencils/Flags/antigua_and_barbuda.desktop %%DATADIR%%/stencils/Flags/antigua_and_barbuda.odg %%DATADIR%%/stencils/Flags/antigua_and_barbuda.png %%DATADIR%%/stencils/Flags/argentina.desktop %%DATADIR%%/stencils/Flags/argentina.odg %%DATADIR%%/stencils/Flags/argentina.png %%DATADIR%%/stencils/Flags/armenia.desktop %%DATADIR%%/stencils/Flags/armenia.odg %%DATADIR%%/stencils/Flags/armenia.png %%DATADIR%%/stencils/Flags/australia.desktop %%DATADIR%%/stencils/Flags/australia.odg %%DATADIR%%/stencils/Flags/australia.png %%DATADIR%%/stencils/Flags/austria.desktop %%DATADIR%%/stencils/Flags/austria.odg %%DATADIR%%/stencils/Flags/austria.png %%DATADIR%%/stencils/Flags/azerbaijan.desktop %%DATADIR%%/stencils/Flags/azerbaijan.odg %%DATADIR%%/stencils/Flags/azerbaijan.png %%DATADIR%%/stencils/Flags/bahamas.desktop %%DATADIR%%/stencils/Flags/bahamas.odg %%DATADIR%%/stencils/Flags/bahamas.png %%DATADIR%%/stencils/Flags/bahrain.desktop %%DATADIR%%/stencils/Flags/bahrain.odg %%DATADIR%%/stencils/Flags/bahrain.png %%DATADIR%%/stencils/Flags/bangladesh.desktop %%DATADIR%%/stencils/Flags/bangladesh.odg %%DATADIR%%/stencils/Flags/bangladesh.png %%DATADIR%%/stencils/Flags/barbados.desktop %%DATADIR%%/stencils/Flags/barbados.odg %%DATADIR%%/stencils/Flags/barbados.png %%DATADIR%%/stencils/Flags/belarus.desktop %%DATADIR%%/stencils/Flags/belarus.odg %%DATADIR%%/stencils/Flags/belarus.png %%DATADIR%%/stencils/Flags/belgium.desktop %%DATADIR%%/stencils/Flags/belgium.odg %%DATADIR%%/stencils/Flags/belgium.png %%DATADIR%%/stencils/Flags/belize.desktop %%DATADIR%%/stencils/Flags/belize.odg %%DATADIR%%/stencils/Flags/belize.png %%DATADIR%%/stencils/Flags/benin.desktop %%DATADIR%%/stencils/Flags/benin.odg %%DATADIR%%/stencils/Flags/benin.png %%DATADIR%%/stencils/Flags/bhutan.desktop %%DATADIR%%/stencils/Flags/bhutan.odg %%DATADIR%%/stencils/Flags/bhutan.png %%DATADIR%%/stencils/Flags/bolivia.desktop %%DATADIR%%/stencils/Flags/bolivia.odg %%DATADIR%%/stencils/Flags/bolivia.png %%DATADIR%%/stencils/Flags/bosnia_and_herzegovina.desktop %%DATADIR%%/stencils/Flags/bosnia_and_herzegovina.odg %%DATADIR%%/stencils/Flags/bosnia_and_herzegovina.png %%DATADIR%%/stencils/Flags/botswana.desktop %%DATADIR%%/stencils/Flags/botswana.odg %%DATADIR%%/stencils/Flags/botswana.png %%DATADIR%%/stencils/Flags/brazil.desktop %%DATADIR%%/stencils/Flags/brazil.odg %%DATADIR%%/stencils/Flags/brazil.png %%DATADIR%%/stencils/Flags/brunei_darussalam.desktop %%DATADIR%%/stencils/Flags/brunei_darussalam.odg %%DATADIR%%/stencils/Flags/brunei_darussalam.png %%DATADIR%%/stencils/Flags/bulgaria.desktop %%DATADIR%%/stencils/Flags/bulgaria.odg %%DATADIR%%/stencils/Flags/bulgaria.png %%DATADIR%%/stencils/Flags/burkina_faso.desktop %%DATADIR%%/stencils/Flags/burkina_faso.odg %%DATADIR%%/stencils/Flags/burkina_faso.png %%DATADIR%%/stencils/Flags/burundi.desktop %%DATADIR%%/stencils/Flags/burundi.odg %%DATADIR%%/stencils/Flags/burundi.png %%DATADIR%%/stencils/Flags/cambodia.desktop %%DATADIR%%/stencils/Flags/cambodia.odg %%DATADIR%%/stencils/Flags/cambodia.png %%DATADIR%%/stencils/Flags/cameroon.desktop %%DATADIR%%/stencils/Flags/cameroon.odg %%DATADIR%%/stencils/Flags/cameroon.png %%DATADIR%%/stencils/Flags/canada.desktop %%DATADIR%%/stencils/Flags/canada.odg %%DATADIR%%/stencils/Flags/canada.png %%DATADIR%%/stencils/Flags/cape_verde.desktop %%DATADIR%%/stencils/Flags/cape_verde.odg %%DATADIR%%/stencils/Flags/cape_verde.png %%DATADIR%%/stencils/Flags/central_african_republic.desktop %%DATADIR%%/stencils/Flags/central_african_republic.odg %%DATADIR%%/stencils/Flags/central_african_republic.png %%DATADIR%%/stencils/Flags/chad.desktop %%DATADIR%%/stencils/Flags/chad.odg %%DATADIR%%/stencils/Flags/chad.png %%DATADIR%%/stencils/Flags/chile.desktop %%DATADIR%%/stencils/Flags/chile.odg %%DATADIR%%/stencils/Flags/chile.png %%DATADIR%%/stencils/Flags/china_hong_kong.desktop %%DATADIR%%/stencils/Flags/china_hong_kong.odg %%DATADIR%%/stencils/Flags/china_hong_kong.png %%DATADIR%%/stencils/Flags/china_macao.desktop %%DATADIR%%/stencils/Flags/china_macao.odg %%DATADIR%%/stencils/Flags/china_macao.png %%DATADIR%%/stencils/Flags/china_prc.desktop %%DATADIR%%/stencils/Flags/china_prc.odg %%DATADIR%%/stencils/Flags/china_prc.png %%DATADIR%%/stencils/Flags/china_roc.desktop %%DATADIR%%/stencils/Flags/china_roc.odg %%DATADIR%%/stencils/Flags/china_roc.png %%DATADIR%%/stencils/Flags/collection.desktop %%DATADIR%%/stencils/Flags/colombia.desktop %%DATADIR%%/stencils/Flags/colombia.odg %%DATADIR%%/stencils/Flags/colombia.png %%DATADIR%%/stencils/Flags/comoros.desktop %%DATADIR%%/stencils/Flags/comoros.odg %%DATADIR%%/stencils/Flags/comoros.png %%DATADIR%%/stencils/Flags/congo_brazzaville.desktop %%DATADIR%%/stencils/Flags/congo_brazzaville.odg %%DATADIR%%/stencils/Flags/congo_brazzaville.png %%DATADIR%%/stencils/Flags/congo_kinshasa.desktop %%DATADIR%%/stencils/Flags/congo_kinshasa.odg %%DATADIR%%/stencils/Flags/congo_kinshasa.png %%DATADIR%%/stencils/Flags/costa_rica.desktop %%DATADIR%%/stencils/Flags/costa_rica.odg %%DATADIR%%/stencils/Flags/costa_rica.png %%DATADIR%%/stencils/Flags/cote_divoire.desktop %%DATADIR%%/stencils/Flags/cote_divoire.odg %%DATADIR%%/stencils/Flags/cote_divoire.png %%DATADIR%%/stencils/Flags/croatia.desktop %%DATADIR%%/stencils/Flags/croatia.odg %%DATADIR%%/stencils/Flags/croatia.png %%DATADIR%%/stencils/Flags/cuba.desktop %%DATADIR%%/stencils/Flags/cuba.odg %%DATADIR%%/stencils/Flags/cuba.png %%DATADIR%%/stencils/Flags/cyprus.desktop %%DATADIR%%/stencils/Flags/cyprus.odg %%DATADIR%%/stencils/Flags/cyprus.png %%DATADIR%%/stencils/Flags/czechia.desktop %%DATADIR%%/stencils/Flags/czechia.odg %%DATADIR%%/stencils/Flags/czechia.png %%DATADIR%%/stencils/Flags/denmark.desktop %%DATADIR%%/stencils/Flags/denmark.odg %%DATADIR%%/stencils/Flags/denmark.png %%DATADIR%%/stencils/Flags/djibouti.desktop %%DATADIR%%/stencils/Flags/djibouti.odg %%DATADIR%%/stencils/Flags/djibouti.png %%DATADIR%%/stencils/Flags/dominica.desktop %%DATADIR%%/stencils/Flags/dominica.odg %%DATADIR%%/stencils/Flags/dominica.png %%DATADIR%%/stencils/Flags/dominican_republic.desktop %%DATADIR%%/stencils/Flags/dominican_republic.odg %%DATADIR%%/stencils/Flags/dominican_republic.png %%DATADIR%%/stencils/Flags/ecuador.desktop %%DATADIR%%/stencils/Flags/ecuador.odg %%DATADIR%%/stencils/Flags/ecuador.png %%DATADIR%%/stencils/Flags/egypt.desktop %%DATADIR%%/stencils/Flags/egypt.odg %%DATADIR%%/stencils/Flags/egypt.png %%DATADIR%%/stencils/Flags/el_salvador.desktop %%DATADIR%%/stencils/Flags/el_salvador.odg %%DATADIR%%/stencils/Flags/el_salvador.png %%DATADIR%%/stencils/Flags/equatorial_guinea.desktop %%DATADIR%%/stencils/Flags/equatorial_guinea.odg %%DATADIR%%/stencils/Flags/equatorial_guinea.png %%DATADIR%%/stencils/Flags/eritrea.desktop %%DATADIR%%/stencils/Flags/eritrea.odg %%DATADIR%%/stencils/Flags/eritrea.png %%DATADIR%%/stencils/Flags/estonia.desktop %%DATADIR%%/stencils/Flags/estonia.odg %%DATADIR%%/stencils/Flags/estonia.png %%DATADIR%%/stencils/Flags/ethiopia.desktop %%DATADIR%%/stencils/Flags/ethiopia.odg %%DATADIR%%/stencils/Flags/ethiopia.png %%DATADIR%%/stencils/Flags/europeanunion.desktop %%DATADIR%%/stencils/Flags/europeanunion.odg %%DATADIR%%/stencils/Flags/europeanunion.png %%DATADIR%%/stencils/Flags/fiji.desktop %%DATADIR%%/stencils/Flags/fiji.odg %%DATADIR%%/stencils/Flags/fiji.png %%DATADIR%%/stencils/Flags/finland.desktop %%DATADIR%%/stencils/Flags/finland.odg %%DATADIR%%/stencils/Flags/finland.png %%DATADIR%%/stencils/Flags/france.desktop %%DATADIR%%/stencils/Flags/france.odg %%DATADIR%%/stencils/Flags/france.png %%DATADIR%%/stencils/Flags/gabon.desktop %%DATADIR%%/stencils/Flags/gabon.odg %%DATADIR%%/stencils/Flags/gabon.png %%DATADIR%%/stencils/Flags/gambia.desktop %%DATADIR%%/stencils/Flags/gambia.odg %%DATADIR%%/stencils/Flags/gambia.png %%DATADIR%%/stencils/Flags/georgia.desktop %%DATADIR%%/stencils/Flags/georgia.odg %%DATADIR%%/stencils/Flags/georgia.png %%DATADIR%%/stencils/Flags/germany.desktop %%DATADIR%%/stencils/Flags/germany.odg %%DATADIR%%/stencils/Flags/germany.png %%DATADIR%%/stencils/Flags/ghana.desktop %%DATADIR%%/stencils/Flags/ghana.odg %%DATADIR%%/stencils/Flags/ghana.png %%DATADIR%%/stencils/Flags/greece.desktop %%DATADIR%%/stencils/Flags/greece.odg %%DATADIR%%/stencils/Flags/greece.png %%DATADIR%%/stencils/Flags/grenada.desktop %%DATADIR%%/stencils/Flags/grenada.odg %%DATADIR%%/stencils/Flags/grenada.png %%DATADIR%%/stencils/Flags/guatemala.desktop %%DATADIR%%/stencils/Flags/guatemala.odg %%DATADIR%%/stencils/Flags/guatemala.png %%DATADIR%%/stencils/Flags/guinea.desktop %%DATADIR%%/stencils/Flags/guinea.odg %%DATADIR%%/stencils/Flags/guinea.png %%DATADIR%%/stencils/Flags/guyana.desktop %%DATADIR%%/stencils/Flags/guyana.odg %%DATADIR%%/stencils/Flags/guyana.png %%DATADIR%%/stencils/Flags/haiti.desktop %%DATADIR%%/stencils/Flags/haiti.odg %%DATADIR%%/stencils/Flags/haiti.png %%DATADIR%%/stencils/Flags/honduras.desktop %%DATADIR%%/stencils/Flags/honduras.odg %%DATADIR%%/stencils/Flags/honduras.png %%DATADIR%%/stencils/Flags/hungary.desktop %%DATADIR%%/stencils/Flags/hungary.odg %%DATADIR%%/stencils/Flags/hungary.png %%DATADIR%%/stencils/Flags/iceland.desktop %%DATADIR%%/stencils/Flags/iceland.odg %%DATADIR%%/stencils/Flags/iceland.png %%DATADIR%%/stencils/Flags/india.desktop %%DATADIR%%/stencils/Flags/india.odg %%DATADIR%%/stencils/Flags/india.png %%DATADIR%%/stencils/Flags/indonesia.desktop %%DATADIR%%/stencils/Flags/indonesia.odg %%DATADIR%%/stencils/Flags/indonesia.png %%DATADIR%%/stencils/Flags/iran.desktop %%DATADIR%%/stencils/Flags/iran.odg %%DATADIR%%/stencils/Flags/iran.png %%DATADIR%%/stencils/Flags/iraq.desktop %%DATADIR%%/stencils/Flags/iraq.odg %%DATADIR%%/stencils/Flags/iraq.png %%DATADIR%%/stencils/Flags/ireland.desktop %%DATADIR%%/stencils/Flags/ireland.odg %%DATADIR%%/stencils/Flags/ireland.png %%DATADIR%%/stencils/Flags/israel.desktop %%DATADIR%%/stencils/Flags/israel.odg %%DATADIR%%/stencils/Flags/israel.png %%DATADIR%%/stencils/Flags/italy.desktop %%DATADIR%%/stencils/Flags/italy.odg %%DATADIR%%/stencils/Flags/italy.png %%DATADIR%%/stencils/Flags/jamaica.desktop %%DATADIR%%/stencils/Flags/jamaica.odg %%DATADIR%%/stencils/Flags/jamaica.png %%DATADIR%%/stencils/Flags/japan.desktop %%DATADIR%%/stencils/Flags/japan.odg %%DATADIR%%/stencils/Flags/japan.png %%DATADIR%%/stencils/Flags/jordan.desktop %%DATADIR%%/stencils/Flags/jordan.odg %%DATADIR%%/stencils/Flags/jordan.png %%DATADIR%%/stencils/Flags/kazakhstan.desktop %%DATADIR%%/stencils/Flags/kazakhstan.odg %%DATADIR%%/stencils/Flags/kazakhstan.png %%DATADIR%%/stencils/Flags/kenya.desktop %%DATADIR%%/stencils/Flags/kenya.odg %%DATADIR%%/stencils/Flags/kenya.png %%DATADIR%%/stencils/Flags/kiribati.desktop %%DATADIR%%/stencils/Flags/kiribati.odg %%DATADIR%%/stencils/Flags/kiribati.png %%DATADIR%%/stencils/Flags/kuwait.desktop %%DATADIR%%/stencils/Flags/kuwait.odg %%DATADIR%%/stencils/Flags/kuwait.png %%DATADIR%%/stencils/Flags/kyrgyzstan.desktop %%DATADIR%%/stencils/Flags/kyrgyzstan.odg %%DATADIR%%/stencils/Flags/kyrgyzstan.png %%DATADIR%%/stencils/Flags/laos.desktop %%DATADIR%%/stencils/Flags/laos.odg %%DATADIR%%/stencils/Flags/laos.png %%DATADIR%%/stencils/Flags/latvia.desktop %%DATADIR%%/stencils/Flags/latvia.odg %%DATADIR%%/stencils/Flags/latvia.png %%DATADIR%%/stencils/Flags/lebanon.desktop %%DATADIR%%/stencils/Flags/lebanon.odg %%DATADIR%%/stencils/Flags/lebanon.png %%DATADIR%%/stencils/Flags/lesotho.desktop %%DATADIR%%/stencils/Flags/lesotho.odg %%DATADIR%%/stencils/Flags/lesotho.png %%DATADIR%%/stencils/Flags/liberia.desktop %%DATADIR%%/stencils/Flags/liberia.odg %%DATADIR%%/stencils/Flags/liberia.png %%DATADIR%%/stencils/Flags/libyan_arab_jamahiriya.desktop %%DATADIR%%/stencils/Flags/libyan_arab_jamahiriya.odg %%DATADIR%%/stencils/Flags/libyan_arab_jamahiriya.png %%DATADIR%%/stencils/Flags/liechtenstein.desktop %%DATADIR%%/stencils/Flags/liechtenstein.odg %%DATADIR%%/stencils/Flags/liechtenstein.png %%DATADIR%%/stencils/Flags/lithuania.desktop %%DATADIR%%/stencils/Flags/lithuania.odg %%DATADIR%%/stencils/Flags/lithuania.png %%DATADIR%%/stencils/Flags/luxembourg.desktop %%DATADIR%%/stencils/Flags/luxembourg.odg %%DATADIR%%/stencils/Flags/luxembourg.png %%DATADIR%%/stencils/Flags/macedonia.desktop %%DATADIR%%/stencils/Flags/macedonia.odg %%DATADIR%%/stencils/Flags/macedonia.png %%DATADIR%%/stencils/Flags/madagascar.desktop %%DATADIR%%/stencils/Flags/madagascar.odg %%DATADIR%%/stencils/Flags/madagascar.png %%DATADIR%%/stencils/Flags/malawi.desktop %%DATADIR%%/stencils/Flags/malawi.odg %%DATADIR%%/stencils/Flags/malawi.png %%DATADIR%%/stencils/Flags/malaysia.desktop %%DATADIR%%/stencils/Flags/malaysia.odg %%DATADIR%%/stencils/Flags/malaysia.png %%DATADIR%%/stencils/Flags/maldives.desktop %%DATADIR%%/stencils/Flags/maldives.odg %%DATADIR%%/stencils/Flags/maldives.png %%DATADIR%%/stencils/Flags/mali.desktop %%DATADIR%%/stencils/Flags/mali.odg %%DATADIR%%/stencils/Flags/mali.png %%DATADIR%%/stencils/Flags/malta.desktop %%DATADIR%%/stencils/Flags/malta.odg %%DATADIR%%/stencils/Flags/malta.png %%DATADIR%%/stencils/Flags/marshall_islands.desktop %%DATADIR%%/stencils/Flags/marshall_islands.odg %%DATADIR%%/stencils/Flags/marshall_islands.png %%DATADIR%%/stencils/Flags/mauritania.desktop %%DATADIR%%/stencils/Flags/mauritania.odg %%DATADIR%%/stencils/Flags/mauritania.png %%DATADIR%%/stencils/Flags/mauritius.desktop %%DATADIR%%/stencils/Flags/mauritius.odg %%DATADIR%%/stencils/Flags/mauritius.png %%DATADIR%%/stencils/Flags/mexico.desktop %%DATADIR%%/stencils/Flags/mexico.odg %%DATADIR%%/stencils/Flags/mexico.png %%DATADIR%%/stencils/Flags/micronesia.desktop %%DATADIR%%/stencils/Flags/micronesia.odg %%DATADIR%%/stencils/Flags/micronesia.png %%DATADIR%%/stencils/Flags/moldova.desktop %%DATADIR%%/stencils/Flags/moldova.odg %%DATADIR%%/stencils/Flags/moldova.png %%DATADIR%%/stencils/Flags/monaco.desktop %%DATADIR%%/stencils/Flags/monaco.odg %%DATADIR%%/stencils/Flags/monaco.png %%DATADIR%%/stencils/Flags/mongolia.desktop %%DATADIR%%/stencils/Flags/mongolia.odg %%DATADIR%%/stencils/Flags/mongolia.png %%DATADIR%%/stencils/Flags/montenegro.desktop %%DATADIR%%/stencils/Flags/montenegro.odg %%DATADIR%%/stencils/Flags/montenegro.png %%DATADIR%%/stencils/Flags/morocco.desktop %%DATADIR%%/stencils/Flags/morocco.odg %%DATADIR%%/stencils/Flags/morocco.png %%DATADIR%%/stencils/Flags/mozambique.desktop %%DATADIR%%/stencils/Flags/mozambique.odg %%DATADIR%%/stencils/Flags/mozambique.png %%DATADIR%%/stencils/Flags/myanmar.desktop %%DATADIR%%/stencils/Flags/myanmar.odg %%DATADIR%%/stencils/Flags/myanmar.png %%DATADIR%%/stencils/Flags/namibia.desktop %%DATADIR%%/stencils/Flags/namibia.odg %%DATADIR%%/stencils/Flags/namibia.png %%DATADIR%%/stencils/Flags/nauru.desktop %%DATADIR%%/stencils/Flags/nauru.odg %%DATADIR%%/stencils/Flags/nauru.png %%DATADIR%%/stencils/Flags/nepal.desktop %%DATADIR%%/stencils/Flags/nepal.odg %%DATADIR%%/stencils/Flags/nepal.png %%DATADIR%%/stencils/Flags/netherlands.desktop %%DATADIR%%/stencils/Flags/netherlands.odg %%DATADIR%%/stencils/Flags/netherlands.png %%DATADIR%%/stencils/Flags/netherlands_antilles.desktop %%DATADIR%%/stencils/Flags/netherlands_antilles.odg %%DATADIR%%/stencils/Flags/netherlands_antilles.png %%DATADIR%%/stencils/Flags/newzealand.desktop %%DATADIR%%/stencils/Flags/newzealand.odg %%DATADIR%%/stencils/Flags/newzealand.png %%DATADIR%%/stencils/Flags/nicaragua.desktop %%DATADIR%%/stencils/Flags/nicaragua.odg %%DATADIR%%/stencils/Flags/nicaragua.png %%DATADIR%%/stencils/Flags/niger.desktop %%DATADIR%%/stencils/Flags/niger.odg %%DATADIR%%/stencils/Flags/niger.png %%DATADIR%%/stencils/Flags/nigeria.desktop %%DATADIR%%/stencils/Flags/nigeria.odg %%DATADIR%%/stencils/Flags/nigeria.png %%DATADIR%%/stencils/Flags/north_korea.desktop %%DATADIR%%/stencils/Flags/north_korea.odg %%DATADIR%%/stencils/Flags/north_korea.png %%DATADIR%%/stencils/Flags/norway.desktop %%DATADIR%%/stencils/Flags/norway.odg %%DATADIR%%/stencils/Flags/norway.png %%DATADIR%%/stencils/Flags/olympic.desktop %%DATADIR%%/stencils/Flags/olympic.odg %%DATADIR%%/stencils/Flags/olympic.png %%DATADIR%%/stencils/Flags/oman.desktop %%DATADIR%%/stencils/Flags/oman.odg %%DATADIR%%/stencils/Flags/oman.png %%DATADIR%%/stencils/Flags/pakistan.desktop %%DATADIR%%/stencils/Flags/pakistan.odg %%DATADIR%%/stencils/Flags/pakistan.png %%DATADIR%%/stencils/Flags/palau.desktop %%DATADIR%%/stencils/Flags/palau.odg %%DATADIR%%/stencils/Flags/palau.png %%DATADIR%%/stencils/Flags/palestine.desktop %%DATADIR%%/stencils/Flags/palestine.odg %%DATADIR%%/stencils/Flags/palestine.png %%DATADIR%%/stencils/Flags/panama.desktop %%DATADIR%%/stencils/Flags/panama.odg %%DATADIR%%/stencils/Flags/panama.png %%DATADIR%%/stencils/Flags/papua_new_guinea.desktop %%DATADIR%%/stencils/Flags/papua_new_guinea.odg %%DATADIR%%/stencils/Flags/papua_new_guinea.png %%DATADIR%%/stencils/Flags/paraguay.desktop %%DATADIR%%/stencils/Flags/paraguay.odg %%DATADIR%%/stencils/Flags/paraguay.png %%DATADIR%%/stencils/Flags/peru.desktop %%DATADIR%%/stencils/Flags/peru.odg %%DATADIR%%/stencils/Flags/peru.png %%DATADIR%%/stencils/Flags/philippines.desktop %%DATADIR%%/stencils/Flags/philippines.odg %%DATADIR%%/stencils/Flags/philippines.png %%DATADIR%%/stencils/Flags/poland.desktop %%DATADIR%%/stencils/Flags/poland.odg %%DATADIR%%/stencils/Flags/poland.png %%DATADIR%%/stencils/Flags/portugal.desktop %%DATADIR%%/stencils/Flags/portugal.odg %%DATADIR%%/stencils/Flags/portugal.png %%DATADIR%%/stencils/Flags/qatar.desktop %%DATADIR%%/stencils/Flags/qatar.odg %%DATADIR%%/stencils/Flags/qatar.png %%DATADIR%%/stencils/Flags/romania.desktop %%DATADIR%%/stencils/Flags/romania.odg %%DATADIR%%/stencils/Flags/romania.png %%DATADIR%%/stencils/Flags/russian_federation.desktop %%DATADIR%%/stencils/Flags/russian_federation.odg %%DATADIR%%/stencils/Flags/russian_federation.png %%DATADIR%%/stencils/Flags/rwanda.desktop %%DATADIR%%/stencils/Flags/rwanda.odg %%DATADIR%%/stencils/Flags/rwanda.png %%DATADIR%%/stencils/Flags/saint_kitts_and_nevis.desktop %%DATADIR%%/stencils/Flags/saint_kitts_and_nevis.odg %%DATADIR%%/stencils/Flags/saint_kitts_and_nevis.png %%DATADIR%%/stencils/Flags/saint_lucia.desktop %%DATADIR%%/stencils/Flags/saint_lucia.odg %%DATADIR%%/stencils/Flags/saint_lucia.png %%DATADIR%%/stencils/Flags/saint_vincent_and_the_grenadines.desktop %%DATADIR%%/stencils/Flags/saint_vincent_and_the_grenadines.odg %%DATADIR%%/stencils/Flags/saint_vincent_and_the_grenadines.png %%DATADIR%%/stencils/Flags/samoa.desktop %%DATADIR%%/stencils/Flags/samoa.odg %%DATADIR%%/stencils/Flags/samoa.png %%DATADIR%%/stencils/Flags/san_marino.desktop %%DATADIR%%/stencils/Flags/san_marino.odg %%DATADIR%%/stencils/Flags/san_marino.png %%DATADIR%%/stencils/Flags/sao_tome_and_principe.desktop %%DATADIR%%/stencils/Flags/sao_tome_and_principe.odg %%DATADIR%%/stencils/Flags/sao_tome_and_principe.png %%DATADIR%%/stencils/Flags/saudi_arabia.desktop %%DATADIR%%/stencils/Flags/saudi_arabia.odg %%DATADIR%%/stencils/Flags/saudi_arabia.png %%DATADIR%%/stencils/Flags/senegal.desktop %%DATADIR%%/stencils/Flags/senegal.odg %%DATADIR%%/stencils/Flags/senegal.png %%DATADIR%%/stencils/Flags/serbia.desktop %%DATADIR%%/stencils/Flags/serbia.odg %%DATADIR%%/stencils/Flags/serbia.png %%DATADIR%%/stencils/Flags/seychelles.desktop %%DATADIR%%/stencils/Flags/seychelles.odg %%DATADIR%%/stencils/Flags/seychelles.png %%DATADIR%%/stencils/Flags/sierra_leone.desktop %%DATADIR%%/stencils/Flags/sierra_leone.odg %%DATADIR%%/stencils/Flags/sierra_leone.png %%DATADIR%%/stencils/Flags/singapore.desktop %%DATADIR%%/stencils/Flags/singapore.odg %%DATADIR%%/stencils/Flags/singapore.png %%DATADIR%%/stencils/Flags/slovakia.desktop %%DATADIR%%/stencils/Flags/slovakia.odg %%DATADIR%%/stencils/Flags/slovakia.png %%DATADIR%%/stencils/Flags/slovenia.desktop %%DATADIR%%/stencils/Flags/slovenia.odg %%DATADIR%%/stencils/Flags/slovenia.png %%DATADIR%%/stencils/Flags/solomonislands.desktop %%DATADIR%%/stencils/Flags/solomonislands.odg %%DATADIR%%/stencils/Flags/solomonislands.png %%DATADIR%%/stencils/Flags/somalia.desktop %%DATADIR%%/stencils/Flags/somalia.odg %%DATADIR%%/stencils/Flags/somalia.png %%DATADIR%%/stencils/Flags/south_africa.desktop %%DATADIR%%/stencils/Flags/south_africa.odg %%DATADIR%%/stencils/Flags/south_africa.png %%DATADIR%%/stencils/Flags/south_korea.desktop %%DATADIR%%/stencils/Flags/south_korea.odg %%DATADIR%%/stencils/Flags/south_korea.png %%DATADIR%%/stencils/Flags/spain.desktop %%DATADIR%%/stencils/Flags/spain.odg %%DATADIR%%/stencils/Flags/spain.png %%DATADIR%%/stencils/Flags/sri_lanka.desktop %%DATADIR%%/stencils/Flags/sri_lanka.odg %%DATADIR%%/stencils/Flags/sri_lanka.png %%DATADIR%%/stencils/Flags/sudan.desktop %%DATADIR%%/stencils/Flags/sudan.odg %%DATADIR%%/stencils/Flags/sudan.png %%DATADIR%%/stencils/Flags/suisse.desktop %%DATADIR%%/stencils/Flags/suisse.odg %%DATADIR%%/stencils/Flags/suisse.png %%DATADIR%%/stencils/Flags/suriname.desktop %%DATADIR%%/stencils/Flags/suriname.odg %%DATADIR%%/stencils/Flags/suriname.png %%DATADIR%%/stencils/Flags/swaziland.desktop %%DATADIR%%/stencils/Flags/swaziland.odg %%DATADIR%%/stencils/Flags/swaziland.png %%DATADIR%%/stencils/Flags/sweden.desktop %%DATADIR%%/stencils/Flags/sweden.odg %%DATADIR%%/stencils/Flags/sweden.png %%DATADIR%%/stencils/Flags/syrian_arab_republic.desktop %%DATADIR%%/stencils/Flags/syrian_arab_republic.odg %%DATADIR%%/stencils/Flags/syrian_arab_republic.png %%DATADIR%%/stencils/Flags/tajikistan.desktop %%DATADIR%%/stencils/Flags/tajikistan.odg %%DATADIR%%/stencils/Flags/tajikistan.png %%DATADIR%%/stencils/Flags/tanzania.desktop %%DATADIR%%/stencils/Flags/tanzania.odg %%DATADIR%%/stencils/Flags/tanzania.png %%DATADIR%%/stencils/Flags/thailand.desktop %%DATADIR%%/stencils/Flags/thailand.odg %%DATADIR%%/stencils/Flags/thailand.png %%DATADIR%%/stencils/Flags/timor_leste.desktop %%DATADIR%%/stencils/Flags/timor_leste.odg %%DATADIR%%/stencils/Flags/timor_leste.png %%DATADIR%%/stencils/Flags/togo.desktop %%DATADIR%%/stencils/Flags/togo.odg %%DATADIR%%/stencils/Flags/togo.png %%DATADIR%%/stencils/Flags/tonga.desktop %%DATADIR%%/stencils/Flags/tonga.odg %%DATADIR%%/stencils/Flags/tonga.png %%DATADIR%%/stencils/Flags/trinidad_and_tobago.desktop %%DATADIR%%/stencils/Flags/trinidad_and_tobago.odg %%DATADIR%%/stencils/Flags/trinidad_and_tobago.png %%DATADIR%%/stencils/Flags/tunisia.desktop %%DATADIR%%/stencils/Flags/tunisia.odg %%DATADIR%%/stencils/Flags/tunisia.png %%DATADIR%%/stencils/Flags/turkey.desktop %%DATADIR%%/stencils/Flags/turkey.odg %%DATADIR%%/stencils/Flags/turkey.png %%DATADIR%%/stencils/Flags/turkmenistan.desktop %%DATADIR%%/stencils/Flags/turkmenistan.odg %%DATADIR%%/stencils/Flags/turkmenistan.png %%DATADIR%%/stencils/Flags/tuvalu.desktop %%DATADIR%%/stencils/Flags/tuvalu.odg %%DATADIR%%/stencils/Flags/tuvalu.png %%DATADIR%%/stencils/Flags/uganda.desktop %%DATADIR%%/stencils/Flags/uganda.odg %%DATADIR%%/stencils/Flags/uganda.png %%DATADIR%%/stencils/Flags/ukraine.desktop %%DATADIR%%/stencils/Flags/ukraine.odg %%DATADIR%%/stencils/Flags/ukraine.png %%DATADIR%%/stencils/Flags/unesco.desktop %%DATADIR%%/stencils/Flags/unesco.odg %%DATADIR%%/stencils/Flags/unesco.png %%DATADIR%%/stencils/Flags/unicef.desktop %%DATADIR%%/stencils/Flags/unicef.odg %%DATADIR%%/stencils/Flags/unicef.png %%DATADIR%%/stencils/Flags/united_arab_emirates.desktop %%DATADIR%%/stencils/Flags/united_arab_emirates.odg %%DATADIR%%/stencils/Flags/united_arab_emirates.png %%DATADIR%%/stencils/Flags/united_kingdom.desktop %%DATADIR%%/stencils/Flags/united_kingdom.odg %%DATADIR%%/stencils/Flags/united_kingdom.png %%DATADIR%%/stencils/Flags/united_states.desktop %%DATADIR%%/stencils/Flags/united_states.odg %%DATADIR%%/stencils/Flags/united_states.png %%DATADIR%%/stencils/Flags/unitednations.desktop %%DATADIR%%/stencils/Flags/unitednations.odg %%DATADIR%%/stencils/Flags/unitednations.png %%DATADIR%%/stencils/Flags/uruguay.desktop %%DATADIR%%/stencils/Flags/uruguay.odg %%DATADIR%%/stencils/Flags/uruguay.png %%DATADIR%%/stencils/Flags/uzbekistan.desktop %%DATADIR%%/stencils/Flags/uzbekistan.odg %%DATADIR%%/stencils/Flags/uzbekistan.png %%DATADIR%%/stencils/Flags/vanuatu.desktop %%DATADIR%%/stencils/Flags/vanuatu.odg %%DATADIR%%/stencils/Flags/vanuatu.png %%DATADIR%%/stencils/Flags/vatican.desktop %%DATADIR%%/stencils/Flags/vatican.odg %%DATADIR%%/stencils/Flags/vatican.png %%DATADIR%%/stencils/Flags/venezuela.desktop %%DATADIR%%/stencils/Flags/venezuela.odg %%DATADIR%%/stencils/Flags/venezuela.png %%DATADIR%%/stencils/Flags/vietnam.desktop %%DATADIR%%/stencils/Flags/vietnam.odg %%DATADIR%%/stencils/Flags/vietnam.png %%DATADIR%%/stencils/Flags/wake_island.desktop %%DATADIR%%/stencils/Flags/wake_island.odg %%DATADIR%%/stencils/Flags/wake_island.png %%DATADIR%%/stencils/Flags/western_sahara.desktop %%DATADIR%%/stencils/Flags/western_sahara.odg %%DATADIR%%/stencils/Flags/western_sahara.png %%DATADIR%%/stencils/Flags/who.desktop %%DATADIR%%/stencils/Flags/who.odg %%DATADIR%%/stencils/Flags/who.png %%DATADIR%%/stencils/Flags/yemen.desktop %%DATADIR%%/stencils/Flags/yemen.odg %%DATADIR%%/stencils/Flags/yemen.png %%DATADIR%%/stencils/Flags/zambia.desktop %%DATADIR%%/stencils/Flags/zambia.odg %%DATADIR%%/stencils/Flags/zambia.png %%DATADIR%%/stencils/Flags/zimbabwe.desktop %%DATADIR%%/stencils/Flags/zimbabwe.odg %%DATADIR%%/stencils/Flags/zimbabwe.png %%DATADIR%%/stencils/Gane_and_Sarson/alt-entity.desktop %%DATADIR%%/stencils/Gane_and_Sarson/alt-entity.odg %%DATADIR%%/stencils/Gane_and_Sarson/alt-entity.png %%DATADIR%%/stencils/Gane_and_Sarson/collection.desktop %%DATADIR%%/stencils/Gane_and_Sarson/data_store.desktop %%DATADIR%%/stencils/Gane_and_Sarson/data_store.odg %%DATADIR%%/stencils/Gane_and_Sarson/data_store.png %%DATADIR%%/stencils/Gane_and_Sarson/entity.desktop %%DATADIR%%/stencils/Gane_and_Sarson/entity.odg %%DATADIR%%/stencils/Gane_and_Sarson/entity.png %%DATADIR%%/stencils/Gane_and_Sarson/process.desktop %%DATADIR%%/stencils/Gane_and_Sarson/process.odg %%DATADIR%%/stencils/Gane_and_Sarson/process.png %%DATADIR%%/stencils/Jigsaw/collection.desktop %%DATADIR%%/stencils/Jigsaw/part_iiii.desktop %%DATADIR%%/stencils/Jigsaw/part_iiii.odg %%DATADIR%%/stencils/Jigsaw/part_iiii.png %%DATADIR%%/stencils/Jigsaw/part_iiio.desktop %%DATADIR%%/stencils/Jigsaw/part_iiio.odg %%DATADIR%%/stencils/Jigsaw/part_iiio.png %%DATADIR%%/stencils/Jigsaw/part_iioi.desktop %%DATADIR%%/stencils/Jigsaw/part_iioi.odg %%DATADIR%%/stencils/Jigsaw/part_iioi.png %%DATADIR%%/stencils/Jigsaw/part_iioo.desktop %%DATADIR%%/stencils/Jigsaw/part_iioo.odg %%DATADIR%%/stencils/Jigsaw/part_iioo.png %%DATADIR%%/stencils/Jigsaw/part_ioii.desktop %%DATADIR%%/stencils/Jigsaw/part_ioii.odg %%DATADIR%%/stencils/Jigsaw/part_ioii.png %%DATADIR%%/stencils/Jigsaw/part_ioio.desktop %%DATADIR%%/stencils/Jigsaw/part_ioio.odg %%DATADIR%%/stencils/Jigsaw/part_ioio.png %%DATADIR%%/stencils/Jigsaw/part_iooi.desktop %%DATADIR%%/stencils/Jigsaw/part_iooi.odg %%DATADIR%%/stencils/Jigsaw/part_iooi.png %%DATADIR%%/stencils/Jigsaw/part_iooo.desktop %%DATADIR%%/stencils/Jigsaw/part_iooo.odg %%DATADIR%%/stencils/Jigsaw/part_iooo.png %%DATADIR%%/stencils/Jigsaw/part_oiii.desktop %%DATADIR%%/stencils/Jigsaw/part_oiii.odg %%DATADIR%%/stencils/Jigsaw/part_oiii.png %%DATADIR%%/stencils/Jigsaw/part_oiio.desktop %%DATADIR%%/stencils/Jigsaw/part_oiio.odg %%DATADIR%%/stencils/Jigsaw/part_oiio.png %%DATADIR%%/stencils/Jigsaw/part_oioi.desktop %%DATADIR%%/stencils/Jigsaw/part_oioi.odg %%DATADIR%%/stencils/Jigsaw/part_oioi.png %%DATADIR%%/stencils/Jigsaw/part_oioo.desktop %%DATADIR%%/stencils/Jigsaw/part_oioo.odg %%DATADIR%%/stencils/Jigsaw/part_oioo.png %%DATADIR%%/stencils/Jigsaw/part_ooii.desktop %%DATADIR%%/stencils/Jigsaw/part_ooii.odg %%DATADIR%%/stencils/Jigsaw/part_ooii.png %%DATADIR%%/stencils/Jigsaw/part_ooio.desktop %%DATADIR%%/stencils/Jigsaw/part_ooio.odg %%DATADIR%%/stencils/Jigsaw/part_ooio.png %%DATADIR%%/stencils/Jigsaw/part_oooi.desktop %%DATADIR%%/stencils/Jigsaw/part_oooi.odg %%DATADIR%%/stencils/Jigsaw/part_oooi.png %%DATADIR%%/stencils/Jigsaw/part_oooo.desktop %%DATADIR%%/stencils/Jigsaw/part_oooo.odg %%DATADIR%%/stencils/Jigsaw/part_oooo.png %%DATADIR%%/stencils/LST/associator_subsystem.desktop %%DATADIR%%/stencils/LST/associator_subsystem.odg %%DATADIR%%/stencils/LST/associator_subsystem.png %%DATADIR%%/stencils/LST/boundary.png %%DATADIR%%/stencils/LST/cn_subsystem.desktop %%DATADIR%%/stencils/LST/cn_subsystem.odg %%DATADIR%%/stencils/LST/cn_subsystem.png %%DATADIR%%/stencils/LST/collection.desktop %%DATADIR%%/stencils/LST/convert_subsystem.desktop %%DATADIR%%/stencils/LST/convert_subsystem.odg %%DATADIR%%/stencils/LST/convert_subsystem.png %%DATADIR%%/stencils/LST/converter.png %%DATADIR%%/stencils/LST/decider_subsystem.desktop %%DATADIR%%/stencils/LST/decider_subsystem.odg %%DATADIR%%/stencils/LST/decider_subsystem.png %%DATADIR%%/stencils/LST/decode_subsystem.desktop %%DATADIR%%/stencils/LST/decode_subsystem.odg %%DATADIR%%/stencils/LST/decode_subsystem.png %%DATADIR%%/stencils/LST/decoder.desktop %%DATADIR%%/stencils/LST/decoder.odg %%DATADIR%%/stencils/LST/decoder.png %%DATADIR%%/stencils/LST/distributor_subsystem.desktop %%DATADIR%%/stencils/LST/distributor_subsystem.odg %%DATADIR%%/stencils/LST/distributor_subsystem.png %%DATADIR%%/stencils/LST/encode_subsystem.desktop %%DATADIR%%/stencils/LST/encode_subsystem.odg %%DATADIR%%/stencils/LST/encode_subsystem.png %%DATADIR%%/stencils/LST/encoder.desktop %%DATADIR%%/stencils/LST/encoder.odg %%DATADIR%%/stencils/LST/encoder.png %%DATADIR%%/stencils/LST/extruder.desktop %%DATADIR%%/stencils/LST/extruder.odg %%DATADIR%%/stencils/LST/extruder.png %%DATADIR%%/stencils/LST/ingestor.png %%DATADIR%%/stencils/LST/ingestor_subsystem.desktop %%DATADIR%%/stencils/LST/ingestor_subsystem.odg %%DATADIR%%/stencils/LST/ingestor_subsystem.png %%DATADIR%%/stencils/LST/internal_subsystem.desktop %%DATADIR%%/stencils/LST/internal_subsystem.odg %%DATADIR%%/stencils/LST/internal_subsystem.png %%DATADIR%%/stencils/LST/it_subsystem.desktop %%DATADIR%%/stencils/LST/it_subsystem.odg %%DATADIR%%/stencils/LST/it_subsystem.png %%DATADIR%%/stencils/LST/memory_subsystem.desktop %%DATADIR%%/stencils/LST/memory_subsystem.odg %%DATADIR%%/stencils/LST/memory_subsystem.png %%DATADIR%%/stencils/LST/mestorage.desktop %%DATADIR%%/stencils/LST/mestorage.odg %%DATADIR%%/stencils/LST/mestorage.png %%DATADIR%%/stencils/LST/motor.desktop %%DATADIR%%/stencils/LST/motor.odg %%DATADIR%%/stencils/LST/motor.png %%DATADIR%%/stencils/LST/ot_subsystem.desktop %%DATADIR%%/stencils/LST/ot_subsystem.odg %%DATADIR%%/stencils/LST/ot_subsystem.png %%DATADIR%%/stencils/LST/producer.desktop %%DATADIR%%/stencils/LST/producer.odg %%DATADIR%%/stencils/LST/producer.png %%DATADIR%%/stencils/LST/reproducer_subsystem.desktop %%DATADIR%%/stencils/LST/reproducer_subsystem.odg %%DATADIR%%/stencils/LST/reproducer_subsystem.png %%DATADIR%%/stencils/LST/supporter_subsystem.desktop %%DATADIR%%/stencils/LST/supporter_subsystem.odg %%DATADIR%%/stencils/LST/supporter_subsystem.png %%DATADIR%%/stencils/LST/timer.desktop %%DATADIR%%/stencils/LST/timer.odg %%DATADIR%%/stencils/LST/timer.png %%DATADIR%%/stencils/Lights/ACL.desktop %%DATADIR%%/stencils/Lights/ACL.odg %%DATADIR%%/stencils/Lights/ACL.png %%DATADIR%%/stencils/Lights/Blacklight.desktop %%DATADIR%%/stencils/Lights/Blacklight.odg %%DATADIR%%/stencils/Lights/Blacklight.png %%DATADIR%%/stencils/Lights/Blinders.desktop %%DATADIR%%/stencils/Lights/Blinders.odg %%DATADIR%%/stencils/Lights/Blinders.png %%DATADIR%%/stencils/Lights/ERS.desktop %%DATADIR%%/stencils/Lights/ERS.odg %%DATADIR%%/stencils/Lights/ERS.png %%DATADIR%%/stencils/Lights/Fresnel.desktop %%DATADIR%%/stencils/Lights/Fresnel.odg %%DATADIR%%/stencils/Lights/Fresnel.png %%DATADIR%%/stencils/Lights/Moving_head.desktop %%DATADIR%%/stencils/Lights/Moving_head.odg %%DATADIR%%/stencils/Lights/Moving_head.png %%DATADIR%%/stencils/Lights/PAR.desktop %%DATADIR%%/stencils/Lights/PAR.odg %%DATADIR%%/stencils/Lights/PAR.png %%DATADIR%%/stencils/Lights/PAR_floor.desktop %%DATADIR%%/stencils/Lights/PAR_floor.odg %%DATADIR%%/stencils/Lights/PAR_floor.png %%DATADIR%%/stencils/Lights/PC.desktop %%DATADIR%%/stencils/Lights/PC.odg %%DATADIR%%/stencils/Lights/PC.png %%DATADIR%%/stencils/Lights/Scanner.desktop %%DATADIR%%/stencils/Lights/Scanner.odg %%DATADIR%%/stencils/Lights/Scanner.png %%DATADIR%%/stencils/Lights/Striplight.desktop %%DATADIR%%/stencils/Lights/Striplight.odg %%DATADIR%%/stencils/Lights/Striplight.png %%DATADIR%%/stencils/Lights/Stroboscope.desktop %%DATADIR%%/stencils/Lights/Stroboscope.odg %%DATADIR%%/stencils/Lights/Stroboscope.png %%DATADIR%%/stencils/Lights/Structure.desktop %%DATADIR%%/stencils/Lights/Structure.odg %%DATADIR%%/stencils/Lights/Structure.png %%DATADIR%%/stencils/Lights/collection.desktop %%DATADIR%%/stencils/Logic/and.desktop %%DATADIR%%/stencils/Logic/and.odg %%DATADIR%%/stencils/Logic/and.png %%DATADIR%%/stencils/Logic/buffer.desktop %%DATADIR%%/stencils/Logic/buffer.odg %%DATADIR%%/stencils/Logic/buffer.png %%DATADIR%%/stencils/Logic/collection.desktop %%DATADIR%%/stencils/Logic/connector.desktop %%DATADIR%%/stencils/Logic/connector.odg %%DATADIR%%/stencils/Logic/connector.png %%DATADIR%%/stencils/Logic/inverter.desktop %%DATADIR%%/stencils/Logic/inverter.odg %%DATADIR%%/stencils/Logic/inverter.png %%DATADIR%%/stencils/Logic/nand.desktop %%DATADIR%%/stencils/Logic/nand.odg %%DATADIR%%/stencils/Logic/nand.png %%DATADIR%%/stencils/Logic/nor.desktop %%DATADIR%%/stencils/Logic/nor.odg %%DATADIR%%/stencils/Logic/nor.png %%DATADIR%%/stencils/Logic/not.desktop %%DATADIR%%/stencils/Logic/not.odg %%DATADIR%%/stencils/Logic/not.png %%DATADIR%%/stencils/Logic/or.desktop %%DATADIR%%/stencils/Logic/or.odg %%DATADIR%%/stencils/Logic/or.png %%DATADIR%%/stencils/Logic/xor.desktop %%DATADIR%%/stencils/Logic/xor.odg %%DATADIR%%/stencils/Logic/xor.png %%DATADIR%%/stencils/MSE/collection.desktop %%DATADIR%%/stencils/MSE/demultiplexer.desktop %%DATADIR%%/stencils/MSE/demultiplexer.odg %%DATADIR%%/stencils/MSE/demultiplexer.png %%DATADIR%%/stencils/MSE/large_extension_node.desktop %%DATADIR%%/stencils/MSE/large_extension_node.odg %%DATADIR%%/stencils/MSE/large_extension_node.png %%DATADIR%%/stencils/MSE/multiplexer.desktop %%DATADIR%%/stencils/MSE/multiplexer.odg %%DATADIR%%/stencils/MSE/multiplexer.png %%DATADIR%%/stencils/MSE/node_center.desktop %%DATADIR%%/stencils/MSE/node_center.odg %%DATADIR%%/stencils/MSE/node_center.png %%DATADIR%%/stencils/MSE/small_extension_node.desktop %%DATADIR%%/stencils/MSE/small_extension_node.odg %%DATADIR%%/stencils/MSE/small_extension_node.png %%DATADIR%%/stencils/MSE/tacsat.desktop %%DATADIR%%/stencils/MSE/tacsat.odg %%DATADIR%%/stencils/MSE/tacsat.png %%DATADIR%%/stencils/Map/Block1.desktop %%DATADIR%%/stencils/Map/Block1.odg %%DATADIR%%/stencils/Map/Block1.png %%DATADIR%%/stencils/Map/Block2.desktop %%DATADIR%%/stencils/Map/Block2.odg %%DATADIR%%/stencils/Map/Block2.png %%DATADIR%%/stencils/Map/Block3.desktop %%DATADIR%%/stencils/Map/Block3.odg %%DATADIR%%/stencils/Map/Block3.png %%DATADIR%%/stencils/Map/Block4.desktop %%DATADIR%%/stencils/Map/Block4.odg %%DATADIR%%/stencils/Map/Block4.png %%DATADIR%%/stencils/Map/Block5.desktop %%DATADIR%%/stencils/Map/Block5.odg %%DATADIR%%/stencils/Map/Block5.png %%DATADIR%%/stencils/Map/Block6.desktop %%DATADIR%%/stencils/Map/Block6.odg %%DATADIR%%/stencils/Map/Block6.png %%DATADIR%%/stencils/Map/Block7.desktop %%DATADIR%%/stencils/Map/Block7.odg %%DATADIR%%/stencils/Map/Block7.png %%DATADIR%%/stencils/Map/Car1.desktop %%DATADIR%%/stencils/Map/Car1.odg %%DATADIR%%/stencils/Map/Car1.png %%DATADIR%%/stencils/Map/Car2.desktop %%DATADIR%%/stencils/Map/Car2.odg %%DATADIR%%/stencils/Map/Car2.png %%DATADIR%%/stencils/Map/Corner1.desktop %%DATADIR%%/stencils/Map/Corner1.odg %%DATADIR%%/stencils/Map/Corner1.png %%DATADIR%%/stencils/Map/Corner2.desktop %%DATADIR%%/stencils/Map/Corner2.odg %%DATADIR%%/stencils/Map/Corner2.png %%DATADIR%%/stencils/Map/Crossroads.desktop %%DATADIR%%/stencils/Map/Crossroads.odg %%DATADIR%%/stencils/Map/Crossroads.png %%DATADIR%%/stencils/Map/Elevated.desktop %%DATADIR%%/stencils/Map/Elevated.odg %%DATADIR%%/stencils/Map/Elevated.png %%DATADIR%%/stencils/Map/Factory.desktop %%DATADIR%%/stencils/Map/Factory.odg %%DATADIR%%/stencils/Map/Factory.png %%DATADIR%%/stencils/Map/FootBridge.desktop %%DATADIR%%/stencils/Map/FootBridge.odg %%DATADIR%%/stencils/Map/FootBridge.png %%DATADIR%%/stencils/Map/OneWay.desktop %%DATADIR%%/stencils/Map/OneWay.odg %%DATADIR%%/stencils/Map/OneWay.png %%DATADIR%%/stencils/Map/RedCar.desktop %%DATADIR%%/stencils/Map/RedCar.odg %%DATADIR%%/stencils/Map/RedCar.png %%DATADIR%%/stencils/Map/River.desktop %%DATADIR%%/stencils/Map/River.odg %%DATADIR%%/stencils/Map/River.png %%DATADIR%%/stencils/Map/Road1.desktop %%DATADIR%%/stencils/Map/Road1.odg %%DATADIR%%/stencils/Map/Road1.png %%DATADIR%%/stencils/Map/Roof1.desktop %%DATADIR%%/stencils/Map/Roof1.odg %%DATADIR%%/stencils/Map/Roof1.png %%DATADIR%%/stencils/Map/StraightRoad1.desktop %%DATADIR%%/stencils/Map/StraightRoad1.odg %%DATADIR%%/stencils/Map/StraightRoad1.png %%DATADIR%%/stencils/Map/T-Junction.desktop %%DATADIR%%/stencils/Map/T-Junction.odg %%DATADIR%%/stencils/Map/T-Junction.png %%DATADIR%%/stencils/Map/Train1.desktop %%DATADIR%%/stencils/Map/Train1.odg %%DATADIR%%/stencils/Map/Train1.png %%DATADIR%%/stencils/Map/Train2.desktop %%DATADIR%%/stencils/Map/Train2.odg %%DATADIR%%/stencils/Map/Train2.png %%DATADIR%%/stencils/Map/Tree1.desktop %%DATADIR%%/stencils/Map/Tree1.odg %%DATADIR%%/stencils/Map/Tree1.png %%DATADIR%%/stencils/Map/collection.desktop %%DATADIR%%/stencils/Misc/collection.desktop %%DATADIR%%/stencils/Misc/expended-node.desktop %%DATADIR%%/stencils/Misc/expended-node.odg %%DATADIR%%/stencils/Misc/expended-node.png %%DATADIR%%/stencils/Misc/expensible-node.desktop %%DATADIR%%/stencils/Misc/expensible-node.odg %%DATADIR%%/stencils/Misc/expensible-node.png %%DATADIR%%/stencils/Misc/file.desktop %%DATADIR%%/stencils/Misc/file.odg %%DATADIR%%/stencils/Misc/file.png %%DATADIR%%/stencils/Misc/folder.desktop %%DATADIR%%/stencils/Misc/folder.odg %%DATADIR%%/stencils/Misc/folder.png %%DATADIR%%/stencils/Network/antenna.desktop %%DATADIR%%/stencils/Network/antenna.odg %%DATADIR%%/stencils/Network/antenna.png %%DATADIR%%/stencils/Network/collection.desktop %%DATADIR%%/stencils/Network/computer.desktop %%DATADIR%%/stencils/Network/computer.odg %%DATADIR%%/stencils/Network/computer.png %%DATADIR%%/stencils/Network/dat_external.desktop %%DATADIR%%/stencils/Network/dat_external.odg %%DATADIR%%/stencils/Network/dat_external.png %%DATADIR%%/stencils/Network/digitizing_board.desktop %%DATADIR%%/stencils/Network/digitizing_board.odg %%DATADIR%%/stencils/Network/digitizing_board.png %%DATADIR%%/stencils/Network/disc.desktop %%DATADIR%%/stencils/Network/disc.odg %%DATADIR%%/stencils/Network/disc.png %%DATADIR%%/stencils/Network/diskette.desktop %%DATADIR%%/stencils/Network/diskette.odg %%DATADIR%%/stencils/Network/diskette.png %%DATADIR%%/stencils/Network/firewall.desktop %%DATADIR%%/stencils/Network/firewall.odg %%DATADIR%%/stencils/Network/firewall.png %%DATADIR%%/stencils/Network/flash.desktop %%DATADIR%%/stencils/Network/flash.odg %%DATADIR%%/stencils/Network/flash.png %%DATADIR%%/stencils/Network/genmonitor.desktop %%DATADIR%%/stencils/Network/genmonitor.odg %%DATADIR%%/stencils/Network/genmonitor.png %%DATADIR%%/stencils/Network/hub.desktop %%DATADIR%%/stencils/Network/hub.odg %%DATADIR%%/stencils/Network/hub.png %%DATADIR%%/stencils/Network/mobile_phone.desktop %%DATADIR%%/stencils/Network/mobile_phone.odg %%DATADIR%%/stencils/Network/mobile_phone.png %%DATADIR%%/stencils/Network/modem.desktop %%DATADIR%%/stencils/Network/modem.odg %%DATADIR%%/stencils/Network/modem.png %%DATADIR%%/stencils/Network/modularswitch.desktop %%DATADIR%%/stencils/Network/modularswitch.odg %%DATADIR%%/stencils/Network/modularswitch.png %%DATADIR%%/stencils/Network/monitor.desktop %%DATADIR%%/stencils/Network/monitor.odg %%DATADIR%%/stencils/Network/monitor.png %%DATADIR%%/stencils/Network/nwcloud.desktop %%DATADIR%%/stencils/Network/nwcloud.odg %%DATADIR%%/stencils/Network/nwcloud.png %%DATADIR%%/stencils/Network/patch-panel.desktop %%DATADIR%%/stencils/Network/patch-panel.odg %%DATADIR%%/stencils/Network/patch-panel.png %%DATADIR%%/stencils/Network/pc_bigtower.desktop %%DATADIR%%/stencils/Network/pc_bigtower.odg %%DATADIR%%/stencils/Network/pc_bigtower.png %%DATADIR%%/stencils/Network/pc_desktop.desktop %%DATADIR%%/stencils/Network/pc_desktop.odg %%DATADIR%%/stencils/Network/pc_desktop.png %%DATADIR%%/stencils/Network/pc_miditower.desktop %%DATADIR%%/stencils/Network/pc_miditower.odg %%DATADIR%%/stencils/Network/pc_miditower.png %%DATADIR%%/stencils/Network/pc_minitower.desktop %%DATADIR%%/stencils/Network/pc_minitower.odg %%DATADIR%%/stencils/Network/pc_minitower.png %%DATADIR%%/stencils/Network/plotter.desktop %%DATADIR%%/stencils/Network/plotter.odg %%DATADIR%%/stencils/Network/plotter.png %%DATADIR%%/stencils/Network/printer.desktop %%DATADIR%%/stencils/Network/printer.odg %%DATADIR%%/stencils/Network/printer.png %%DATADIR%%/stencils/Network/rj45plug.desktop %%DATADIR%%/stencils/Network/rj45plug.odg %%DATADIR%%/stencils/Network/rj45plug.png %%DATADIR%%/stencils/Network/router-symbol.desktop %%DATADIR%%/stencils/Network/router-symbol.odg %%DATADIR%%/stencils/Network/router-symbol.png %%DATADIR%%/stencils/Network/sceadplug.desktop %%DATADIR%%/stencils/Network/sceadplug.odg %%DATADIR%%/stencils/Network/sceadplug.png %%DATADIR%%/stencils/Network/speaker.desktop %%DATADIR%%/stencils/Network/speaker.odg %%DATADIR%%/stencils/Network/speaker.png %%DATADIR%%/stencils/Network/speaker_amp.desktop %%DATADIR%%/stencils/Network/speaker_amp.odg %%DATADIR%%/stencils/Network/speaker_amp.png %%DATADIR%%/stencils/Network/switch-atm-symbol.desktop %%DATADIR%%/stencils/Network/switch-atm-symbol.odg %%DATADIR%%/stencils/Network/switch-atm-symbol.png %%DATADIR%%/stencils/Network/switch-symbol.desktop %%DATADIR%%/stencils/Network/switch-symbol.odg %%DATADIR%%/stencils/Network/switch-symbol.png %%DATADIR%%/stencils/Network/telephone.desktop %%DATADIR%%/stencils/Network/telephone.odg %%DATADIR%%/stencils/Network/telephone.png %%DATADIR%%/stencils/Network/workstation.desktop %%DATADIR%%/stencils/Network/workstation.odg %%DATADIR%%/stencils/Network/workstation.png %%DATADIR%%/stencils/Network/zip-disk.desktop %%DATADIR%%/stencils/Network/zip-disk.odg %%DATADIR%%/stencils/Network/zip-disk.png %%DATADIR%%/stencils/Optics/atten.desktop %%DATADIR%%/stencils/Optics/atten.odg %%DATADIR%%/stencils/Optics/atten.png %%DATADIR%%/stencils/Optics/beam.desktop %%DATADIR%%/stencils/Optics/beam.odg %%DATADIR%%/stencils/Optics/beam.png %%DATADIR%%/stencils/Optics/circulator.desktop %%DATADIR%%/stencils/Optics/circulator.odg %%DATADIR%%/stencils/Optics/circulator.png %%DATADIR%%/stencils/Optics/collection.desktop %%DATADIR%%/stencils/Optics/coupler.desktop %%DATADIR%%/stencils/Optics/coupler.odg %%DATADIR%%/stencils/Optics/coupler.png %%DATADIR%%/stencils/Optics/coupler_vert.desktop %%DATADIR%%/stencils/Optics/coupler_vert.odg %%DATADIR%%/stencils/Optics/coupler_vert.png %%DATADIR%%/stencils/Optics/detector.desktop %%DATADIR%%/stencils/Optics/detector.odg %%DATADIR%%/stencils/Optics/detector.png %%DATADIR%%/stencils/Optics/detector_vert.desktop %%DATADIR%%/stencils/Optics/detector_vert.odg %%DATADIR%%/stencils/Optics/detector_vert.png %%DATADIR%%/stencils/Optics/dfb_laser.desktop %%DATADIR%%/stencils/Optics/dfb_laser.odg %%DATADIR%%/stencils/Optics/dfb_laser.png %%DATADIR%%/stencils/Optics/dfb_laser_big.png %%DATADIR%%/stencils/Optics/dfb_laser_vert.desktop %%DATADIR%%/stencils/Optics/dfb_laser_vert.odg %%DATADIR%%/stencils/Optics/dfb_laser_vert.png %%DATADIR%%/stencils/Optics/edfa.desktop %%DATADIR%%/stencils/Optics/edfa.odg %%DATADIR%%/stencils/Optics/edfa.png %%DATADIR%%/stencils/Optics/edfa_vert.desktop %%DATADIR%%/stencils/Optics/edfa_vert.odg %%DATADIR%%/stencils/Optics/edfa_vert.png %%DATADIR%%/stencils/Optics/fibre.desktop %%DATADIR%%/stencils/Optics/fibre.odg %%DATADIR%%/stencils/Optics/fibre.png %%DATADIR%%/stencils/Optics/fibre_vert.desktop %%DATADIR%%/stencils/Optics/fibre_vert.odg %%DATADIR%%/stencils/Optics/fibre_vert.png %%DATADIR%%/stencils/Optics/isolator.desktop %%DATADIR%%/stencils/Optics/isolator.odg %%DATADIR%%/stencils/Optics/isolator.png %%DATADIR%%/stencils/Optics/isolator_vert.desktop %%DATADIR%%/stencils/Optics/isolator_vert.odg %%DATADIR%%/stencils/Optics/isolator_vert.png %%DATADIR%%/stencils/Optics/lpg.desktop %%DATADIR%%/stencils/Optics/lpg.odg %%DATADIR%%/stencils/Optics/lpg.png %%DATADIR%%/stencils/Optics/lpg_vert.desktop %%DATADIR%%/stencils/Optics/lpg_vert.odg %%DATADIR%%/stencils/Optics/lpg_vert.png %%DATADIR%%/stencils/Optics/mod.desktop %%DATADIR%%/stencils/Optics/mod.odg %%DATADIR%%/stencils/Optics/mod.png %%DATADIR%%/stencils/Optics/mod_vert.desktop %%DATADIR%%/stencils/Optics/mod_vert.odg %%DATADIR%%/stencils/Optics/mod_vert.png %%DATADIR%%/stencils/Optics/phasemod.desktop %%DATADIR%%/stencils/Optics/phasemod.odg %%DATADIR%%/stencils/Optics/phasemod.png %%DATADIR%%/stencils/Optics/phasemod_vert.desktop %%DATADIR%%/stencils/Optics/phasemod_vert.odg %%DATADIR%%/stencils/Optics/phasemod_vert.png %%DATADIR%%/stencils/Optics/polarisation_control.desktop %%DATADIR%%/stencils/Optics/polarisation_control.odg %%DATADIR%%/stencils/Optics/polarisation_control.png %%DATADIR%%/stencils/Optics/polarisation_control_vert.desktop %%DATADIR%%/stencils/Optics/polarisation_control_vert.odg %%DATADIR%%/stencils/Optics/polarisation_control_vert.png %%DATADIR%%/stencils/Optics/scope.desktop %%DATADIR%%/stencils/Optics/scope.odg %%DATADIR%%/stencils/Optics/scope.png %%DATADIR%%/stencils/Optics/sine.desktop %%DATADIR%%/stencils/Optics/sine.odg %%DATADIR%%/stencils/Optics/sine.png %%DATADIR%%/stencils/Optics/spectrum.desktop %%DATADIR%%/stencils/Optics/spectrum.odg %%DATADIR%%/stencils/Optics/spectrum.png %%DATADIR%%/stencils/Optics/square.desktop %%DATADIR%%/stencils/Optics/square.odg %%DATADIR%%/stencils/Optics/square.png %%DATADIR%%/stencils/Optics/tuneable.desktop %%DATADIR%%/stencils/Optics/tuneable.odg %%DATADIR%%/stencils/Optics/tuneable.png %%DATADIR%%/stencils/Optics/wave.desktop %%DATADIR%%/stencils/Optics/wave.odg %%DATADIR%%/stencils/Optics/wave.png %%DATADIR%%/stencils/Pneumatic/cnx.desktop %%DATADIR%%/stencils/Pneumatic/cnx.odg %%DATADIR%%/stencils/Pneumatic/cnx.png %%DATADIR%%/stencils/Pneumatic/collection.desktop %%DATADIR%%/stencils/Pneumatic/comelec1.desktop %%DATADIR%%/stencils/Pneumatic/comelec1.odg %%DATADIR%%/stencils/Pneumatic/comelec1.png %%DATADIR%%/stencils/Pneumatic/comelec2.desktop %%DATADIR%%/stencils/Pneumatic/comelec2.odg %%DATADIR%%/stencils/Pneumatic/comelec2.png %%DATADIR%%/stencils/Pneumatic/commusc.desktop %%DATADIR%%/stencils/Pneumatic/commusc.odg %%DATADIR%%/stencils/Pneumatic/commusc.png %%DATADIR%%/stencils/Pneumatic/compb.desktop %%DATADIR%%/stencils/Pneumatic/compb.odg %%DATADIR%%/stencils/Pneumatic/compb.png %%DATADIR%%/stencils/Pneumatic/compilh.desktop %%DATADIR%%/stencils/Pneumatic/compilh.odg %%DATADIR%%/stencils/Pneumatic/compilh.png %%DATADIR%%/stencils/Pneumatic/compilp.desktop %%DATADIR%%/stencils/Pneumatic/compilp.odg %%DATADIR%%/stencils/Pneumatic/compilp.png %%DATADIR%%/stencils/Pneumatic/compush.desktop %%DATADIR%%/stencils/Pneumatic/compush.odg %%DATADIR%%/stencils/Pneumatic/compush.png %%DATADIR%%/stencils/Pneumatic/comspr.desktop %%DATADIR%%/stencils/Pneumatic/comspr.odg %%DATADIR%%/stencils/Pneumatic/comspr.png %%DATADIR%%/stencils/Pneumatic/dejack.desktop %%DATADIR%%/stencils/Pneumatic/dejack.odg %%DATADIR%%/stencils/Pneumatic/dejack.png %%DATADIR%%/stencils/Pneumatic/dist22.desktop %%DATADIR%%/stencils/Pneumatic/dist22.odg %%DATADIR%%/stencils/Pneumatic/dist22.png %%DATADIR%%/stencils/Pneumatic/dist32.desktop %%DATADIR%%/stencils/Pneumatic/dist32.odg %%DATADIR%%/stencils/Pneumatic/dist32.png %%DATADIR%%/stencils/Pneumatic/dist42.desktop %%DATADIR%%/stencils/Pneumatic/dist42.odg %%DATADIR%%/stencils/Pneumatic/dist42.png %%DATADIR%%/stencils/Pneumatic/dist52.desktop %%DATADIR%%/stencils/Pneumatic/dist52.odg %%DATADIR%%/stencils/Pneumatic/dist52.png %%DATADIR%%/stencils/Pneumatic/drain.desktop %%DATADIR%%/stencils/Pneumatic/drain.odg %%DATADIR%%/stencils/Pneumatic/drain.png %%DATADIR%%/stencils/Pneumatic/press.desktop %%DATADIR%%/stencils/Pneumatic/press.odg %%DATADIR%%/stencils/Pneumatic/press.png %%DATADIR%%/stencils/Pneumatic/presshy.desktop %%DATADIR%%/stencils/Pneumatic/presshy.odg %%DATADIR%%/stencils/Pneumatic/presshy.png %%DATADIR%%/stencils/Pneumatic/presspn.desktop %%DATADIR%%/stencils/Pneumatic/presspn.odg %%DATADIR%%/stencils/Pneumatic/presspn.png %%DATADIR%%/stencils/Pneumatic/seijack.desktop %%DATADIR%%/stencils/Pneumatic/seijack.odg %%DATADIR%%/stencils/Pneumatic/seijack.png %%DATADIR%%/stencils/Pneumatic/seojack.desktop %%DATADIR%%/stencils/Pneumatic/seojack.odg %%DATADIR%%/stencils/Pneumatic/seojack.png %%DATADIR%%/stencils/RDP/collection.desktop %%DATADIR%%/stencils/RDP/place.desktop %%DATADIR%%/stencils/RDP/place.odg %%DATADIR%%/stencils/RDP/place.png %%DATADIR%%/stencils/RDP/place_marquee.desktop %%DATADIR%%/stencils/RDP/place_marquee.odg %%DATADIR%%/stencils/RDP/place_marquee.png %%DATADIR%%/stencils/RDP/t_transition.desktop %%DATADIR%%/stencils/RDP/t_transition.odg %%DATADIR%%/stencils/RDP/t_transition.png %%DATADIR%%/stencils/RDP/transition.desktop %%DATADIR%%/stencils/RDP/transition.odg %%DATADIR%%/stencils/RDP/transition.png %%DATADIR%%/stencils/Racks/collection.desktop %%DATADIR%%/stencils/Racks/equipment_10u.desktop %%DATADIR%%/stencils/Racks/equipment_10u.odg %%DATADIR%%/stencils/Racks/equipment_10u.png %%DATADIR%%/stencils/Racks/equipment_11u.desktop %%DATADIR%%/stencils/Racks/equipment_11u.odg %%DATADIR%%/stencils/Racks/equipment_11u.png %%DATADIR%%/stencils/Racks/equipment_12u.desktop %%DATADIR%%/stencils/Racks/equipment_12u.odg %%DATADIR%%/stencils/Racks/equipment_12u.png %%DATADIR%%/stencils/Racks/equipment_1u.desktop %%DATADIR%%/stencils/Racks/equipment_1u.odg %%DATADIR%%/stencils/Racks/equipment_1u.png %%DATADIR%%/stencils/Racks/equipment_2u.desktop %%DATADIR%%/stencils/Racks/equipment_2u.odg %%DATADIR%%/stencils/Racks/equipment_2u.png %%DATADIR%%/stencils/Racks/equipment_3u.desktop %%DATADIR%%/stencils/Racks/equipment_3u.odg %%DATADIR%%/stencils/Racks/equipment_3u.png %%DATADIR%%/stencils/Racks/equipment_4u.desktop %%DATADIR%%/stencils/Racks/equipment_4u.odg %%DATADIR%%/stencils/Racks/equipment_4u.png %%DATADIR%%/stencils/Racks/equipment_5u.desktop %%DATADIR%%/stencils/Racks/equipment_5u.odg %%DATADIR%%/stencils/Racks/equipment_5u.png %%DATADIR%%/stencils/Racks/equipment_6u.desktop %%DATADIR%%/stencils/Racks/equipment_6u.odg %%DATADIR%%/stencils/Racks/equipment_6u.png %%DATADIR%%/stencils/Racks/equipment_7u.desktop %%DATADIR%%/stencils/Racks/equipment_7u.odg %%DATADIR%%/stencils/Racks/equipment_7u.png %%DATADIR%%/stencils/Racks/equipment_8u.desktop %%DATADIR%%/stencils/Racks/equipment_8u.odg %%DATADIR%%/stencils/Racks/equipment_8u.png %%DATADIR%%/stencils/Racks/equipment_9u.desktop %%DATADIR%%/stencils/Racks/equipment_9u.odg %%DATADIR%%/stencils/Racks/equipment_9u.png %%DATADIR%%/stencils/Racks/power_strip_bs.png %%DATADIR%%/stencils/Racks/power_strip_bs_7.desktop %%DATADIR%%/stencils/Racks/power_strip_bs_7.odg %%DATADIR%%/stencils/Racks/power_strip_schuko.png %%DATADIR%%/stencils/Racks/power_strip_schuko_8.desktop %%DATADIR%%/stencils/Racks/power_strip_schuko_8.odg %%DATADIR%%/stencils/Racks/power_strip_ute.png %%DATADIR%%/stencils/Racks/power_strip_ute_8.desktop %%DATADIR%%/stencils/Racks/power_strip_ute_8.odg %%DATADIR%%/stencils/Racks/rack_12u.desktop %%DATADIR%%/stencils/Racks/rack_12u.odg %%DATADIR%%/stencils/Racks/rack_12u.png %%DATADIR%%/stencils/Racks/rack_16u.desktop %%DATADIR%%/stencils/Racks/rack_16u.odg %%DATADIR%%/stencils/Racks/rack_16u.png %%DATADIR%%/stencils/Racks/rack_20u.desktop %%DATADIR%%/stencils/Racks/rack_20u.odg %%DATADIR%%/stencils/Racks/rack_20u.png %%DATADIR%%/stencils/Racks/rack_38u.desktop %%DATADIR%%/stencils/Racks/rack_38u.odg %%DATADIR%%/stencils/Racks/rack_38u.png %%DATADIR%%/stencils/Racks/rack_42u.desktop %%DATADIR%%/stencils/Racks/rack_42u.odg %%DATADIR%%/stencils/Racks/rack_42u.png %%DATADIR%%/stencils/Racks/rack_label_anchors_42u.desktop %%DATADIR%%/stencils/Racks/rack_label_anchors_42u.odg %%DATADIR%%/stencils/Racks/rack_label_anchors_42u.png %%DATADIR%%/stencils/Renewable_Energy/collection.desktop %%DATADIR%%/stencils/Renewable_Energy/cup_anemometer.desktop %%DATADIR%%/stencils/Renewable_Energy/cup_anemometer.odg %%DATADIR%%/stencils/Renewable_Energy/cup_anemometer.png %%DATADIR%%/stencils/Renewable_Energy/data_logger.desktop %%DATADIR%%/stencils/Renewable_Energy/data_logger.odg %%DATADIR%%/stencils/Renewable_Energy/data_logger.png %%DATADIR%%/stencils/Renewable_Energy/meas_tower.desktop %%DATADIR%%/stencils/Renewable_Energy/meas_tower.odg %%DATADIR%%/stencils/Renewable_Energy/meas_tower.png %%DATADIR%%/stencils/Renewable_Energy/solar_module.desktop %%DATADIR%%/stencils/Renewable_Energy/solar_module.odg %%DATADIR%%/stencils/Renewable_Energy/solar_module.png %%DATADIR%%/stencils/Renewable_Energy/temp_humi_sensor.desktop %%DATADIR%%/stencils/Renewable_Energy/temp_humi_sensor.odg %%DATADIR%%/stencils/Renewable_Energy/temp_humi_sensor.png %%DATADIR%%/stencils/Renewable_Energy/wind_turbine.desktop %%DATADIR%%/stencils/Renewable_Energy/wind_turbine.odg %%DATADIR%%/stencils/Renewable_Energy/wind_turbine.png %%DATADIR%%/stencils/Renewable_Energy/wind_vane.desktop %%DATADIR%%/stencils/Renewable_Energy/wind_vane.odg %%DATADIR%%/stencils/Renewable_Energy/wind_vane.png %%DATADIR%%/stencils/SDL/block.desktop %%DATADIR%%/stencils/SDL/block.odg %%DATADIR%%/stencils/SDL/block.png %%DATADIR%%/stencils/SDL/collection.desktop %%DATADIR%%/stencils/SDL/comment.desktop %%DATADIR%%/stencils/SDL/comment.odg %%DATADIR%%/stencils/SDL/comment.png %%DATADIR%%/stencils/SDL/decision.desktop %%DATADIR%%/stencils/SDL/decision.odg %%DATADIR%%/stencils/SDL/decision.png %%DATADIR%%/stencils/SDL/function.desktop %%DATADIR%%/stencils/SDL/function.odg %%DATADIR%%/stencils/SDL/function.png %%DATADIR%%/stencils/SDL/header.desktop %%DATADIR%%/stencils/SDL/header.odg %%DATADIR%%/stencils/SDL/header.png %%DATADIR%%/stencils/SDL/inout.desktop %%DATADIR%%/stencils/SDL/inout.odg %%DATADIR%%/stencils/SDL/inout.png %%DATADIR%%/stencils/SDL/macro.desktop %%DATADIR%%/stencils/SDL/macro.odg %%DATADIR%%/stencils/SDL/macro.png %%DATADIR%%/stencils/SDL/note.desktop %%DATADIR%%/stencils/SDL/note.odg %%DATADIR%%/stencils/SDL/note.png %%DATADIR%%/stencils/SDL/process.desktop %%DATADIR%%/stencils/SDL/process.odg %%DATADIR%%/stencils/SDL/process.png %%DATADIR%%/stencils/SDL/receive.desktop %%DATADIR%%/stencils/SDL/receive.odg %%DATADIR%%/stencils/SDL/receive.png %%DATADIR%%/stencils/SDL/return.desktop %%DATADIR%%/stencils/SDL/return.odg %%DATADIR%%/stencils/SDL/return.png %%DATADIR%%/stencils/SDL/save.desktop %%DATADIR%%/stencils/SDL/save.odg %%DATADIR%%/stencils/SDL/save.png %%DATADIR%%/stencils/SDL/send.desktop %%DATADIR%%/stencils/SDL/send.odg %%DATADIR%%/stencils/SDL/send.png %%DATADIR%%/stencils/SDL/service.desktop %%DATADIR%%/stencils/SDL/service.odg %%DATADIR%%/stencils/SDL/service.png %%DATADIR%%/stencils/SDL/state.desktop %%DATADIR%%/stencils/SDL/state.odg %%DATADIR%%/stencils/SDL/state.png %%DATADIR%%/stencils/SDL/stop.desktop %%DATADIR%%/stencils/SDL/stop.odg %%DATADIR%%/stencils/SDL/stop.png %%DATADIR%%/stencils/SDL/task.desktop %%DATADIR%%/stencils/SDL/task.odg %%DATADIR%%/stencils/SDL/task.png %%DATADIR%%/stencils/Scenegraph/appearance.desktop %%DATADIR%%/stencils/Scenegraph/appearance.odg %%DATADIR%%/stencils/Scenegraph/appearance.png %%DATADIR%%/stencils/Scenegraph/callback.desktop %%DATADIR%%/stencils/Scenegraph/callback.odg %%DATADIR%%/stencils/Scenegraph/callback.png %%DATADIR%%/stencils/Scenegraph/camera.desktop %%DATADIR%%/stencils/Scenegraph/camera.odg %%DATADIR%%/stencils/Scenegraph/camera.png %%DATADIR%%/stencils/Scenegraph/collection.desktop %%DATADIR%%/stencils/Scenegraph/component.desktop %%DATADIR%%/stencils/Scenegraph/component.odg %%DATADIR%%/stencils/Scenegraph/component.png %%DATADIR%%/stencils/Scenegraph/engine.desktop %%DATADIR%%/stencils/Scenegraph/engine.odg %%DATADIR%%/stencils/Scenegraph/engine.png %%DATADIR%%/stencils/Scenegraph/field.desktop %%DATADIR%%/stencils/Scenegraph/field.odg %%DATADIR%%/stencils/Scenegraph/field.png %%DATADIR%%/stencils/Scenegraph/group.desktop %%DATADIR%%/stencils/Scenegraph/group.odg %%DATADIR%%/stencils/Scenegraph/group.png %%DATADIR%%/stencils/Scenegraph/light.desktop %%DATADIR%%/stencils/Scenegraph/light.odg %%DATADIR%%/stencils/Scenegraph/light.png %%DATADIR%%/stencils/Scenegraph/manipulator.desktop %%DATADIR%%/stencils/Scenegraph/manipulator.odg %%DATADIR%%/stencils/Scenegraph/manipulator.png %%DATADIR%%/stencils/Scenegraph/metric.desktop %%DATADIR%%/stencils/Scenegraph/metric.odg %%DATADIR%%/stencils/Scenegraph/metric.png %%DATADIR%%/stencils/Scenegraph/nodekit.desktop %%DATADIR%%/stencils/Scenegraph/nodekit.odg %%DATADIR%%/stencils/Scenegraph/nodekit.png %%DATADIR%%/stencils/Scenegraph/property.desktop %%DATADIR%%/stencils/Scenegraph/property.odg %%DATADIR%%/stencils/Scenegraph/property.png %%DATADIR%%/stencils/Scenegraph/realtimeglobalfield.desktop %%DATADIR%%/stencils/Scenegraph/realtimeglobalfield.odg %%DATADIR%%/stencils/Scenegraph/realtimeglobalfield.png %%DATADIR%%/stencils/Scenegraph/separator.desktop %%DATADIR%%/stencils/Scenegraph/separator.odg %%DATADIR%%/stencils/Scenegraph/separator.png %%DATADIR%%/stencils/Scenegraph/shape.desktop %%DATADIR%%/stencils/Scenegraph/shape.odg %%DATADIR%%/stencils/Scenegraph/shape.png %%DATADIR%%/stencils/Scenegraph/soselection.desktop %%DATADIR%%/stencils/Scenegraph/soselection.odg %%DATADIR%%/stencils/Scenegraph/soselection.png %%DATADIR%%/stencils/Scenegraph/subgraph.desktop %%DATADIR%%/stencils/Scenegraph/subgraph.odg %%DATADIR%%/stencils/Scenegraph/subgraph.png %%DATADIR%%/stencils/Scenegraph/switch.desktop %%DATADIR%%/stencils/Scenegraph/switch.odg %%DATADIR%%/stencils/Scenegraph/switch.png %%DATADIR%%/stencils/Scenegraph/transform.desktop %%DATADIR%%/stencils/Scenegraph/transform.odg %%DATADIR%%/stencils/Scenegraph/transform.png %%DATADIR%%/stencils/Sybase/client.desktop %%DATADIR%%/stencils/Sybase/client.odg %%DATADIR%%/stencils/Sybase/client.png %%DATADIR%%/stencils/Sybase/collection.desktop %%DATADIR%%/stencils/Sybase/dataserver.desktop %%DATADIR%%/stencils/Sybase/dataserver.odg %%DATADIR%%/stencils/Sybase/dataserver.png %%DATADIR%%/stencils/Sybase/ltm.desktop %%DATADIR%%/stencils/Sybase/ltm.odg %%DATADIR%%/stencils/Sybase/ltm.png %%DATADIR%%/stencils/Sybase/repserver.desktop %%DATADIR%%/stencils/Sybase/repserver.odg %%DATADIR%%/stencils/Sybase/repserver.png %%DATADIR%%/stencils/Sybase/rsm.desktop %%DATADIR%%/stencils/Sybase/rsm.odg %%DATADIR%%/stencils/Sybase/rsm.png %%DATADIR%%/stencils/Sybase/stableq.desktop %%DATADIR%%/stencils/Sybase/stableq.odg %%DATADIR%%/stencils/Sybase/stableq.png %%DATADIR%%/stencils/Value_Stream_Mapping/collection.desktop %%DATADIR%%/stencils/Value_Stream_Mapping/happy_face.desktop %%DATADIR%%/stencils/Value_Stream_Mapping/happy_face.odg %%DATADIR%%/stencils/Value_Stream_Mapping/happy_face.png %%DATADIR%%/styles/markers.xml %%DATADIR%%/thesaurus/thesaurus.txt %%DATADIR%%_shape_music/fonts/Emmentaler-14.ttf %%DATADIR%%sheets/CellToolOptionWidgets.xml %%DATADIR%%sheets/dtd/kspread.dtd %%DATADIR%%sheets/functions/bitops.xml %%DATADIR%%sheets/functions/conversion.xml %%DATADIR%%sheets/functions/database.xml %%DATADIR%%sheets/functions/datetime.xml %%DATADIR%%sheets/functions/engineering.xml %%DATADIR%%sheets/functions/financial.xml %%DATADIR%%sheets/functions/information.xml %%DATADIR%%sheets/functions/logic.xml %%DATADIR%%sheets/functions/math.xml %%DATADIR%%sheets/functions/reference.xml %%DATADIR%%sheets/functions/statistical.xml %%DATADIR%%sheets/functions/text.xml %%DATADIR%%sheets/functions/trig.xml %%DATADIR%%sheets/icons/hicolor/16x16/actions/adjustcol.png %%DATADIR%%sheets/icons/hicolor/16x16/actions/adjustrow.png %%DATADIR%%sheets/icons/hicolor/16x16/actions/black_sum.png %%DATADIR%%sheets/icons/hicolor/16x16/actions/cell_edit.png %%DATADIR%%sheets/icons/hicolor/16x16/actions/cell_layout.png %%DATADIR%%sheets/icons/hicolor/16x16/actions/delete-comment.png %%DATADIR%%sheets/icons/hicolor/16x16/actions/delete_table.png %%DATADIR%%sheets/icons/hicolor/16x16/actions/deletecell.png %%DATADIR%%sheets/icons/hicolor/16x16/actions/dissociatecell.png %%DATADIR%%sheets/icons/hicolor/16x16/actions/edit-comment.png %%DATADIR%%sheets/icons/hicolor/16x16/actions/format-align-vertical-bottom.png %%DATADIR%%sheets/icons/hicolor/16x16/actions/format-align-vertical-center.png %%DATADIR%%sheets/icons/hicolor/16x16/actions/format-align-vertical-top.png %%DATADIR%%sheets/icons/hicolor/16x16/actions/format-border-set-all.png %%DATADIR%%sheets/icons/hicolor/16x16/actions/format-border-set-bottom.png %%DATADIR%%sheets/icons/hicolor/16x16/actions/format-border-set-diagonal-bl-tr.png %%DATADIR%%sheets/icons/hicolor/16x16/actions/format-border-set-diagonal-tl-br.png %%DATADIR%%sheets/icons/hicolor/16x16/actions/format-border-set-external.png %%DATADIR%%sheets/icons/hicolor/16x16/actions/format-border-set-internal-horizontal.png %%DATADIR%%sheets/icons/hicolor/16x16/actions/format-border-set-internal-vertical.png %%DATADIR%%sheets/icons/hicolor/16x16/actions/format-border-set-internal.png %%DATADIR%%sheets/icons/hicolor/16x16/actions/format-border-set-left.png %%DATADIR%%sheets/icons/hicolor/16x16/actions/format-border-set-none.png %%DATADIR%%sheets/icons/hicolor/16x16/actions/format-border-set-right.png %%DATADIR%%sheets/icons/hicolor/16x16/actions/format-border-set-top.png %%DATADIR%%sheets/icons/hicolor/16x16/actions/format-currency.png %%DATADIR%%sheets/icons/hicolor/16x16/actions/format-number-percent.png %%DATADIR%%sheets/icons/hicolor/16x16/actions/format-precision-less.png %%DATADIR%%sheets/icons/hicolor/16x16/actions/format-precision-more.png %%DATADIR%%sheets/icons/hicolor/16x16/actions/format-text-capitalize.png %%DATADIR%%sheets/icons/hicolor/16x16/actions/format-text-direction-vertical.png %%DATADIR%%sheets/icons/hicolor/16x16/actions/hide_table_column.png %%DATADIR%%sheets/icons/hicolor/16x16/actions/hide_table_row.png %%DATADIR%%sheets/icons/hicolor/16x16/actions/insert-math-expression.png %%DATADIR%%sheets/icons/hicolor/16x16/actions/insertcell.png %%DATADIR%%sheets/icons/hicolor/16x16/actions/insertcellcopy.png %%DATADIR%%sheets/icons/hicolor/16x16/actions/mergecell-horizontal.png %%DATADIR%%sheets/icons/hicolor/16x16/actions/mergecell-vertical.png %%DATADIR%%sheets/icons/hicolor/16x16/actions/mergecell.png %%DATADIR%%sheets/icons/hicolor/16x16/actions/multirow.png %%DATADIR%%sheets/icons/hicolor/16x16/actions/removecell.png %%DATADIR%%sheets/icons/hicolor/16x16/actions/resizecol.png %%DATADIR%%sheets/icons/hicolor/16x16/actions/resizerow.png %%DATADIR%%sheets/icons/hicolor/16x16/actions/selection.png %%DATADIR%%sheets/icons/hicolor/16x16/actions/series.png %%DATADIR%%sheets/icons/hicolor/16x16/actions/show_table_column.png %%DATADIR%%sheets/icons/hicolor/16x16/actions/show_table_row.png %%DATADIR%%sheets/icons/hicolor/16x16/actions/special_paste.png %%DATADIR%%sheets/icons/hicolor/22x22/actions/black_sum.png %%DATADIR%%sheets/icons/hicolor/22x22/actions/format-align-vertical-bottom.png %%DATADIR%%sheets/icons/hicolor/22x22/actions/format-align-vertical-center.png %%DATADIR%%sheets/icons/hicolor/22x22/actions/format-align-vertical-top.png %%DATADIR%%sheets/icons/hicolor/22x22/actions/format-border-set-all.png %%DATADIR%%sheets/icons/hicolor/22x22/actions/format-border-set-bottom.png %%DATADIR%%sheets/icons/hicolor/22x22/actions/format-border-set-diagonal-bl-tr.png %%DATADIR%%sheets/icons/hicolor/22x22/actions/format-border-set-diagonal-tl-br.png %%DATADIR%%sheets/icons/hicolor/22x22/actions/format-border-set-external.png %%DATADIR%%sheets/icons/hicolor/22x22/actions/format-border-set-internal-horizontal.png %%DATADIR%%sheets/icons/hicolor/22x22/actions/format-border-set-internal-vertical.png %%DATADIR%%sheets/icons/hicolor/22x22/actions/format-border-set-internal.png %%DATADIR%%sheets/icons/hicolor/22x22/actions/format-border-set-left.png %%DATADIR%%sheets/icons/hicolor/22x22/actions/format-border-set-none.png %%DATADIR%%sheets/icons/hicolor/22x22/actions/format-border-set-right.png %%DATADIR%%sheets/icons/hicolor/22x22/actions/format-border-set-top.png %%DATADIR%%sheets/icons/hicolor/22x22/actions/format-currency.png %%DATADIR%%sheets/icons/hicolor/22x22/actions/format-number-percent.png %%DATADIR%%sheets/icons/hicolor/22x22/actions/format-precision-less.png %%DATADIR%%sheets/icons/hicolor/22x22/actions/format-precision-more.png %%DATADIR%%sheets/icons/hicolor/22x22/actions/insert-math-expression.png %%DATADIR%%sheets/icons/hicolor/22x22/actions/mergecell-horizontal.png %%DATADIR%%sheets/icons/hicolor/22x22/actions/mergecell-vertical.png %%DATADIR%%sheets/icons/hicolor/22x22/actions/mergecell.png %%DATADIR%%sheets/icons/hicolor/22x22/actions/multirow.png %%DATADIR%%sheets/icons/hicolor/32x32/actions/format-border-set-all.png %%DATADIR%%sheets/icons/hicolor/32x32/actions/format-border-set-bottom.png %%DATADIR%%sheets/icons/hicolor/32x32/actions/format-border-set-diagonal-bl-tr.png %%DATADIR%%sheets/icons/hicolor/32x32/actions/format-border-set-diagonal-tl-br.png %%DATADIR%%sheets/icons/hicolor/32x32/actions/format-border-set-external.png %%DATADIR%%sheets/icons/hicolor/32x32/actions/format-border-set-internal-horizontal.png %%DATADIR%%sheets/icons/hicolor/32x32/actions/format-border-set-internal-vertical.png %%DATADIR%%sheets/icons/hicolor/32x32/actions/format-border-set-internal.png %%DATADIR%%sheets/icons/hicolor/32x32/actions/format-border-set-left.png %%DATADIR%%sheets/icons/hicolor/32x32/actions/format-border-set-none.png %%DATADIR%%sheets/icons/hicolor/32x32/actions/format-border-set-right.png %%DATADIR%%sheets/icons/hicolor/32x32/actions/format-border-set-top.png %%DATADIR%%sheets/icons/hicolor/32x32/actions/format-number-percent.png %%DATADIR%%sheets/icons/hicolor/32x32/actions/format-precision-less.png %%DATADIR%%sheets/icons/hicolor/32x32/actions/format-precision-more.png %%DATADIR%%sheets/icons/hicolor/32x32/actions/insert-math-expression.png %%DATADIR%%sheets/icons/hicolor/48x48/actions/template_balancesheet.png %%DATADIR%%sheets/icons/hicolor/48x48/actions/template_bmi.png %%DATADIR%%sheets/icons/hicolor/48x48/actions/template_creditcardtracker.png %%DATADIR%%sheets/icons/hicolor/48x48/actions/template_expensereport.png %%DATADIR%%sheets/icons/hicolor/48x48/actions/template_invoice.png %%DATADIR%%sheets/icons/hicolor/48x48/actions/template_menuplan.png %%DATADIR%%sheets/icons/hicolor/48x48/actions/template_packingslip.png %%DATADIR%%sheets/icons/hicolor/48x48/actions/template_pricequotation.png %%DATADIR%%sheets/icons/hicolor/48x48/actions/template_studentidcard.png %%DATADIR%%sheets/icons/hicolor/48x48/actions/template_vacationchecklist.png %%DATADIR%%sheets/icons/hicolor/48x48/actions/template_worksheet.png %%DATADIR%%sheets/icons/hicolor/scalable/actions/template_balancesheet.svgz %%DATADIR%%sheets/icons/hicolor/scalable/actions/template_bmi.svgz %%DATADIR%%sheets/icons/hicolor/scalable/actions/template_creditcardtracker.svgz %%DATADIR%%sheets/icons/hicolor/scalable/actions/template_expensereport.svgz %%DATADIR%%sheets/icons/hicolor/scalable/actions/template_invoice.svgz %%DATADIR%%sheets/icons/hicolor/scalable/actions/template_menuplan.svgz %%DATADIR%%sheets/icons/hicolor/scalable/actions/template_packingslip.svgz %%DATADIR%%sheets/icons/hicolor/scalable/actions/template_pricequotation.svgz %%DATADIR%%sheets/icons/hicolor/scalable/actions/template_studentidcard.svgz %%DATADIR%%sheets/icons/hicolor/scalable/actions/template_vacationchecklist.svgz %%DATADIR%%sheets/icons/hicolor/scalable/actions/template_worksheet.svgz %%DATADIR%%sheets/sheetstyles/standard1.ksts %%DATADIR%%sheets/sheetstyles/standard1.png %%DATADIR%%sheets/sheetstyles/standard1.xml %%DATADIR%%sheets/sheetstyles/standard2.ksts %%DATADIR%%sheets/sheetstyles/standard2.png %%DATADIR%%sheets/sheetstyles/standard2.xml %%DATADIR%%sheets/templates/Business/.directory %%DATADIR%%sheets/templates/Business/.source/BalanceSheet.kst %%DATADIR%%sheets/templates/Business/.source/ExpenseReport.kst %%DATADIR%%sheets/templates/Business/.source/Invoice.kst %%DATADIR%%sheets/templates/Business/.source/PackingSlip.kst %%DATADIR%%sheets/templates/Business/.source/PriceQuotation.kst %%DATADIR%%sheets/templates/Business/BalanceSheet.desktop %%DATADIR%%sheets/templates/Business/ExpenseReport.desktop %%DATADIR%%sheets/templates/Business/Invoice.desktop %%DATADIR%%sheets/templates/Business/PackingSlip.desktop %%DATADIR%%sheets/templates/Business/PriceQuotation.desktop %%DATADIR%%sheets/templates/General/.directory %%DATADIR%%sheets/templates/General/.source/StudentIDCard.kst %%DATADIR%%sheets/templates/General/.source/Worksheet.kst %%DATADIR%%sheets/templates/General/StudentIDCard.desktop %%DATADIR%%sheets/templates/General/Worksheet.desktop %%DATADIR%%sheets/templates/HomeFamily/.directory %%DATADIR%%sheets/templates/HomeFamily/.source/BMI.kst %%DATADIR%%sheets/templates/HomeFamily/.source/CreditCardTracker.kst %%DATADIR%%sheets/templates/HomeFamily/.source/MenuPlan.kst %%DATADIR%%sheets/templates/HomeFamily/.source/VacationChecklist.kst %%DATADIR%%sheets/templates/HomeFamily/BMI.desktop %%DATADIR%%sheets/templates/HomeFamily/CreditCardTracker.desktop %%DATADIR%%sheets/templates/HomeFamily/MenuPlan.desktop %%DATADIR%%sheets/templates/HomeFamily/VacationChecklist.desktop %%DATADIR%%sheets/viewplugins/solver.rc %%DATADIR%%stage/animations/animations.xml %%DATADIR%%stage/cursors/pen.png %%DATADIR%%stage/icons/hicolor/16x16/actions/highlight-pointer-spot.png %%DATADIR%%stage/icons/hicolor/16x16/actions/pause-to-black-screen.png %%DATADIR%%stage/icons/hicolor/32x32/actions/after_previous.png %%DATADIR%%stage/icons/hicolor/32x32/actions/edit_animation.png %%DATADIR%%stage/icons/hicolor/32x32/actions/onclick.png %%DATADIR%%stage/icons/hicolor/32x32/actions/unrecognized_animation.png %%DATADIR%%stage/icons/hicolor/32x32/actions/with_previous.png %%DATADIR%%stage/icons/hicolor/48x48/actions/template_emptylandscape.png %%DATADIR%%stage/icons/hicolor/64x64/actions/appear_animation.png %%DATADIR%%stage/icons/hicolor/64x64/actions/blue_orange_vector.png %%DATADIR%%stage/icons/hicolor/64x64/actions/bounce_animation.png %%DATADIR%%stage/icons/hicolor/64x64/actions/burning_desire.png %%DATADIR%%stage/icons/hicolor/64x64/actions/business.png %%DATADIR%%stage/icons/hicolor/64x64/actions/collapse_animation.png %%DATADIR%%stage/icons/hicolor/64x64/actions/crawl_out_animation.png %%DATADIR%%stage/icons/hicolor/64x64/actions/curious_penguin.png %%DATADIR%%stage/icons/hicolor/64x64/actions/custom_animations.png %%DATADIR%%stage/icons/hicolor/64x64/actions/disappear_animation.png %%DATADIR%%stage/icons/hicolor/64x64/actions/emphasis_animations.png %%DATADIR%%stage/icons/hicolor/64x64/actions/entrance_animations.png %%DATADIR%%stage/icons/hicolor/64x64/actions/exit_animations.png %%DATADIR%%stage/icons/hicolor/64x64/actions/falling_in_animation.png %%DATADIR%%stage/icons/hicolor/64x64/actions/flash_once_animation.png %%DATADIR%%stage/icons/hicolor/64x64/actions/flood_light.png %%DATADIR%%stage/icons/hicolor/64x64/actions/fly_in_animation.png %%DATADIR%%stage/icons/hicolor/64x64/actions/fly_in_slow_animation.png %%DATADIR%%stage/icons/hicolor/64x64/actions/fly_out_animation.png %%DATADIR%%stage/icons/hicolor/64x64/actions/horizontal_animations.png %%DATADIR%%stage/icons/hicolor/64x64/actions/in_animations.png %%DATADIR%%stage/icons/hicolor/64x64/actions/kde_events.png %%DATADIR%%stage/icons/hicolor/64x64/actions/motion_path_animations.png %%DATADIR%%stage/icons/hicolor/64x64/actions/movie_credits_animation.png %%DATADIR%%stage/icons/hicolor/64x64/actions/out_animations.png %%DATADIR%%stage/icons/hicolor/64x64/actions/rounded_square.png %%DATADIR%%stage/icons/hicolor/64x64/actions/simple_waves.png %%DATADIR%%stage/icons/hicolor/64x64/actions/skyline_monotone.png %%DATADIR%%stage/icons/hicolor/64x64/actions/skyline_monotone_wide.png %%DATADIR%%stage/icons/hicolor/64x64/actions/skyline_morning.png %%DATADIR%%stage/icons/hicolor/64x64/actions/skyline_morning_wide.png %%DATADIR%%stage/icons/hicolor/64x64/actions/skyline_night.png %%DATADIR%%stage/icons/hicolor/64x64/actions/skyline_night_wide.png %%DATADIR%%stage/icons/hicolor/64x64/actions/spiral_in_animation.png %%DATADIR%%stage/icons/hicolor/64x64/actions/spiral_out_animation.png %%DATADIR%%stage/icons/hicolor/64x64/actions/strange_far_hills.png %%DATADIR%%stage/icons/hicolor/64x64/actions/stretchy_animation.png %%DATADIR%%stage/icons/hicolor/64x64/actions/swish_animation.png %%DATADIR%%stage/icons/hicolor/64x64/actions/swivel_animation.png %%DATADIR%%stage/icons/hicolor/64x64/actions/thread_animation.png %%DATADIR%%stage/icons/hicolor/64x64/actions/vertical_animations.png %%DATADIR%%stage/icons/hicolor/64x64/actions/zoom_animation.png %%DATADIR%%stage/icons/hicolor/scalable/actions/cohere-blue.svgz %%DATADIR%%stage/icons/hicolor/scalable/actions/cohere-gold.svgz %%DATADIR%%stage/icons/hicolor/scalable/actions/cohere-magenta.svgz %%DATADIR%%stage/icons/hicolor/scalable/actions/cohere-red.svgz %%DATADIR%%stage/icons/hicolor/scalable/actions/template_emptylandscape.svgz %%DATADIR%%stage/pics/layout-elements.svg %%DATADIR%%stage/styles/defaultstyles.xml %%DATADIR%%stage/templates/Screen/.directory %%DATADIR%%stage/templates/Screen/.source/emptyLandscape.otp %%DATADIR%%stage/templates/Screen/.source/emptyLandscapeWide.otp %%DATADIR%%stage/templates/Screen/emptyLandscape.desktop %%DATADIR%%stage/templates/Screen/emptyLandscapeWide.desktop %%DATADIR%%stage/templates/exportHTML/slides.html %%DATADIR%%stage/templates/exportHTML/templates/stage.zip %%DATADIR%%stage/templates/exportHTML/toc.html %%DATADIR%%stage/templates/odf/.directory %%DATADIR%%stage/templates/odf/.source/blue_orange_vector.otp %%DATADIR%%stage/templates/odf/.source/burning_desire.otp %%DATADIR%%stage/templates/odf/.source/business.otp %%DATADIR%%stage/templates/odf/.source/cohere-blue.otp %%DATADIR%%stage/templates/odf/.source/cohere-gold.otp %%DATADIR%%stage/templates/odf/.source/cohere-magenta.otp %%DATADIR%%stage/templates/odf/.source/cohere-red.otp %%DATADIR%%stage/templates/odf/.source/curious_penguin.otp %%DATADIR%%stage/templates/odf/.source/flood_light.otp %%DATADIR%%stage/templates/odf/.source/kde_events.otp %%DATADIR%%stage/templates/odf/.source/rounded_square.otp %%DATADIR%%stage/templates/odf/.source/simple_waves.otp %%DATADIR%%stage/templates/odf/.source/skyline_monotone.otp %%DATADIR%%stage/templates/odf/.source/skyline_monotone_wide.otp %%DATADIR%%stage/templates/odf/.source/skyline_morning.otp %%DATADIR%%stage/templates/odf/.source/skyline_morning_wide.otp %%DATADIR%%stage/templates/odf/.source/skyline_night.otp %%DATADIR%%stage/templates/odf/.source/skyline_night_wide.otp %%DATADIR%%stage/templates/odf/.source/strange_far_hills.otp %%DATADIR%%stage/templates/odf/.thumbnail/blue_orange_vector.png %%DATADIR%%stage/templates/odf/.thumbnail/burning_desire.png %%DATADIR%%stage/templates/odf/.thumbnail/business.png %%DATADIR%%stage/templates/odf/.thumbnail/cohere-blue.png %%DATADIR%%stage/templates/odf/.thumbnail/cohere-gold.png %%DATADIR%%stage/templates/odf/.thumbnail/cohere-magenta.png %%DATADIR%%stage/templates/odf/.thumbnail/cohere-red.png %%DATADIR%%stage/templates/odf/.thumbnail/curious_penguin.png %%DATADIR%%stage/templates/odf/.thumbnail/flood_light.png %%DATADIR%%stage/templates/odf/.thumbnail/kde_events.png %%DATADIR%%stage/templates/odf/.thumbnail/rounded_square.png %%DATADIR%%stage/templates/odf/.thumbnail/simple_waves.png %%DATADIR%%stage/templates/odf/.thumbnail/skyline_monotone.png %%DATADIR%%stage/templates/odf/.thumbnail/skyline_monotone_wide.png %%DATADIR%%stage/templates/odf/.thumbnail/skyline_morning.png %%DATADIR%%stage/templates/odf/.thumbnail/skyline_morning_wide.png %%DATADIR%%stage/templates/odf/.thumbnail/skyline_night.png %%DATADIR%%stage/templates/odf/.thumbnail/skyline_night_wide.png %%DATADIR%%stage/templates/odf/.thumbnail/strange_far_hills.png %%DATADIR%%stage/templates/odf/blue_orange_vector.desktop %%DATADIR%%stage/templates/odf/burning_desire.desktop %%DATADIR%%stage/templates/odf/business.desktop %%DATADIR%%stage/templates/odf/cohere-blue.desktop %%DATADIR%%stage/templates/odf/cohere-gold.desktop %%DATADIR%%stage/templates/odf/cohere-magenta.desktop %%DATADIR%%stage/templates/odf/cohere-red.desktop %%DATADIR%%stage/templates/odf/curious_penguin.desktop %%DATADIR%%stage/templates/odf/flood_light.desktop %%DATADIR%%stage/templates/odf/kde_events.desktop %%DATADIR%%stage/templates/odf/rounded_square.desktop %%DATADIR%%stage/templates/odf/simple_waves.desktop %%DATADIR%%stage/templates/odf/skyline_monotone.desktop %%DATADIR%%stage/templates/odf/skyline_monotone_wide.desktop %%DATADIR%%stage/templates/odf/skyline_morning.desktop %%DATADIR%%stage/templates/odf/skyline_morning_wide.desktop %%DATADIR%%stage/templates/odf/skyline_night.desktop %%DATADIR%%stage/templates/odf/skyline_night_wide.desktop %%DATADIR%%stage/templates/odf/strange_far_hills.desktop %%DATADIR%%words/icons/hicolor/128x128/actions/template_a4.png %%DATADIR%%words/icons/hicolor/128x128/actions/template_colorful.png %%DATADIR%%words/icons/hicolor/128x128/actions/template_fax.png %%DATADIR%%words/icons/hicolor/128x128/actions/template_letter.png %%DATADIR%%words/icons/hicolor/22x22/actions/tool_pagelayout.png %%DATADIR%%words/icons/hicolor/48x48/actions/template_a4.png %%DATADIR%%words/icons/hicolor/48x48/actions/template_colorful.png %%DATADIR%%words/icons/hicolor/48x48/actions/template_fax.png %%DATADIR%%words/icons/hicolor/48x48/actions/template_letter.png %%DATADIR%%words/icons/hicolor/48x48/actions/template_plaintext.png %%DATADIR%%words/icons/hicolor/scalable/actions/template_a4.svgz %%DATADIR%%words/icons/hicolor/scalable/actions/template_fax.svgz %%DATADIR%%words/icons/hicolor/scalable/actions/template_letter.svgz %%DATADIR%%words/styles/defaultstyles.xml %%DATADIR%%words/templates/Normal/.directory %%DATADIR%%words/templates/Normal/.source/A4.odt %%DATADIR%%words/templates/Normal/.source/ColorfulLetter.odt %%DATADIR%%words/templates/Normal/.source/FaxLetter.odt %%DATADIR%%words/templates/Normal/.source/ProfessionalLetter.odt %%DATADIR%%words/templates/Normal/.thumbnail/a4.png %%DATADIR%%words/templates/Normal/.thumbnail/colorful.png %%DATADIR%%words/templates/Normal/.thumbnail/fax.png %%DATADIR%%words/templates/Normal/.thumbnail/professional.png %%DATADIR%%words/templates/Normal/A4.desktop %%DATADIR%%words/templates/Normal/ColorfulLetter.desktop %%DATADIR%%words/templates/Normal/FaxLetter.desktop %%DATADIR%%words/templates/Normal/ProfessionalLetter.desktop share/config.kcfg/calligrasheets.kcfg share/doc/HTML/ca/calligra/index.cache.bz2 share/doc/HTML/ca/calligra/index.docbook share/doc/HTML/ca/sheets/advanced.docbook share/doc/HTML/ca/sheets/basics.docbook share/doc/HTML/ca/sheets/commands.docbook share/doc/HTML/ca/sheets/config.docbook share/doc/HTML/ca/sheets/configdialog.docbook share/doc/HTML/ca/sheets/format.docbook share/doc/HTML/ca/sheets/functions.docbook share/doc/HTML/ca/sheets/index.cache.bz2 share/doc/HTML/ca/sheets/index.docbook share/doc/HTML/ca/stage/great-presentations.docbook share/doc/HTML/ca/stage/guides.docbook share/doc/HTML/ca/stage/index.cache.bz2 share/doc/HTML/ca/stage/index.docbook share/doc/HTML/ca/stage/menus.docbook share/doc/HTML/ca/stage/options.docbook share/doc/HTML/ca/stage/tutorial.docbook share/doc/HTML/de/calligra/index.cache.bz2 share/doc/HTML/de/calligra/index.docbook share/doc/HTML/de/stage/great-presentations.docbook share/doc/HTML/de/stage/guides.docbook share/doc/HTML/de/stage/index.cache.bz2 share/doc/HTML/de/stage/index.docbook share/doc/HTML/de/stage/menus.docbook share/doc/HTML/de/stage/options.docbook share/doc/HTML/de/stage/tutorial.docbook share/doc/HTML/en/calligra/index.cache.bz2 share/doc/HTML/en/calligra/index.docbook share/doc/HTML/en/calligrasheets/advanced.docbook share/doc/HTML/en/calligrasheets/basics.docbook share/doc/HTML/en/calligrasheets/cellformat0.png share/doc/HTML/en/calligrasheets/cellformat1.png share/doc/HTML/en/calligrasheets/cellformat2.png share/doc/HTML/en/calligrasheets/cellformat3.png share/doc/HTML/en/calligrasheets/cellformat4.png share/doc/HTML/en/calligrasheets/cellformat5.png share/doc/HTML/en/calligrasheets/cellformat6.png share/doc/HTML/en/calligrasheets/cellprotection1.png share/doc/HTML/en/calligrasheets/cellprotection2.png share/doc/HTML/en/calligrasheets/chart1.png share/doc/HTML/en/calligrasheets/commands.docbook share/doc/HTML/en/calligrasheets/config.docbook share/doc/HTML/en/calligrasheets/configdialog.docbook share/doc/HTML/en/calligrasheets/configure2.png share/doc/HTML/en/calligrasheets/configure3.png share/doc/HTML/en/calligrasheets/configure4.png share/doc/HTML/en/calligrasheets/configure5.png share/doc/HTML/en/calligrasheets/configure6.png share/doc/HTML/en/calligrasheets/copy1.png share/doc/HTML/en/calligrasheets/decreasedecimal.png share/doc/HTML/en/calligrasheets/format.docbook share/doc/HTML/en/calligrasheets/functions.docbook share/doc/HTML/en/calligrasheets/hi22-action-money.png share/doc/HTML/en/calligrasheets/hideformula1.png share/doc/HTML/en/calligrasheets/hideformula2.png share/doc/HTML/en/calligrasheets/hideformula3.png share/doc/HTML/en/calligrasheets/hideformula4.png share/doc/HTML/en/calligrasheets/hideformula5.png share/doc/HTML/en/calligrasheets/increasedecimal.png share/doc/HTML/en/calligrasheets/index.cache.bz2 share/doc/HTML/en/calligrasheets/index.docbook share/doc/HTML/en/calligrasheets/newdocument.png share/doc/HTML/en/calligrasheets/percent.png share/doc/HTML/en/calligrasheets/pivot1.png share/doc/HTML/en/calligrasheets/pivot2.png share/doc/HTML/en/calligrasheets/pivot3.png share/doc/HTML/en/calligrasheets/pivot4.png share/doc/HTML/en/calligrasheets/sheetproperties.png share/doc/HTML/en/calligrasheets/shortcut1.png share/doc/HTML/en/calligrasheets/sort1.png share/doc/HTML/en/calligrasheets/starting1.png share/doc/HTML/en/calligrastage/22x22-actions-format-text-color.png share/doc/HTML/en/calligrastage/barstyle1.png share/doc/HTML/en/calligrastage/break.png share/doc/HTML/en/calligrastage/configure-author.png share/doc/HTML/en/calligrastage/configure-document.png share/doc/HTML/en/calligrastage/configure-grid.png share/doc/HTML/en/calligrastage/configure-misc.png share/doc/HTML/en/calligrastage/great-presentations.docbook share/doc/HTML/en/calligrastage/guides.docbook share/doc/HTML/en/calligrastage/htmlshow3.png share/doc/HTML/en/calligrastage/htmlshow9.png share/doc/HTML/en/calligrastage/index.cache.bz2 share/doc/HTML/en/calligrastage/index.docbook share/doc/HTML/en/calligrastage/link.png share/doc/HTML/en/calligrastage/menus.docbook share/doc/HTML/en/calligrastage/options.docbook share/doc/HTML/en/calligrastage/settings03.png share/doc/HTML/en/calligrastage/settings04.png share/doc/HTML/en/calligrastage/template03.png share/doc/HTML/en/calligrastage/template04.png share/doc/HTML/en/calligrastage/tut01.png share/doc/HTML/en/calligrastage/tut03.png share/doc/HTML/en/calligrastage/tut04.png share/doc/HTML/en/calligrastage/tut07.png share/doc/HTML/en/calligrastage/tut09.png share/doc/HTML/en/calligrastage/tut10.png share/doc/HTML/en/calligrastage/tut13.png share/doc/HTML/en/calligrastage/tut19.png share/doc/HTML/en/calligrastage/tut20.png share/doc/HTML/en/calligrastage/tut21.png share/doc/HTML/en/calligrastage/tut25.png share/doc/HTML/en/calligrastage/tut26.png share/doc/HTML/en/calligrastage/tutorial.docbook share/doc/HTML/es/calligra/index.cache.bz2 share/doc/HTML/es/calligra/index.docbook share/doc/HTML/es/sheets/advanced.docbook share/doc/HTML/es/sheets/basics.docbook share/doc/HTML/es/sheets/cellformat0.png share/doc/HTML/es/sheets/cellformat1.png share/doc/HTML/es/sheets/cellformat2.png share/doc/HTML/es/sheets/cellformat3.png share/doc/HTML/es/sheets/cellformat4.png share/doc/HTML/es/sheets/cellformat5.png share/doc/HTML/es/sheets/cellformat6.png share/doc/HTML/es/sheets/cellprotection1.png share/doc/HTML/es/sheets/cellprotection2.png share/doc/HTML/es/sheets/chart1.png share/doc/HTML/es/sheets/commands.docbook share/doc/HTML/es/sheets/config.docbook share/doc/HTML/es/sheets/configdialog.docbook share/doc/HTML/es/sheets/configure2.png share/doc/HTML/es/sheets/configure3.png share/doc/HTML/es/sheets/copy1.png share/doc/HTML/es/sheets/decreasedecimal.png share/doc/HTML/es/sheets/format.docbook share/doc/HTML/es/sheets/functions.docbook share/doc/HTML/es/sheets/hideformula1.png share/doc/HTML/es/sheets/hideformula2.png share/doc/HTML/es/sheets/hideformula3.png share/doc/HTML/es/sheets/hideformula4.png share/doc/HTML/es/sheets/hideformula5.png share/doc/HTML/es/sheets/increasedecimal.png share/doc/HTML/es/sheets/index.cache.bz2 share/doc/HTML/es/sheets/index.docbook share/doc/HTML/es/sheets/newdocument.png share/doc/HTML/es/sheets/percent.png share/doc/HTML/es/sheets/sheetproperties.png share/doc/HTML/es/sheets/shortcut1.png share/doc/HTML/es/sheets/sort1.png share/doc/HTML/es/sheets/starting1.png share/doc/HTML/es/stage/great-presentations.docbook share/doc/HTML/es/stage/guides.docbook share/doc/HTML/es/stage/index.cache.bz2 share/doc/HTML/es/stage/index.docbook share/doc/HTML/es/stage/menus.docbook share/doc/HTML/es/stage/options.docbook share/doc/HTML/es/stage/tutorial.docbook share/doc/HTML/et/calligra/index.cache.bz2 share/doc/HTML/et/calligra/index.docbook share/doc/HTML/fr/calligra/index.cache.bz2 share/doc/HTML/fr/calligra/index.docbook share/doc/HTML/fr/sheets/advanced.docbook share/doc/HTML/fr/sheets/basics.docbook share/doc/HTML/fr/sheets/cellformat0.png share/doc/HTML/fr/sheets/cellformat1.png share/doc/HTML/fr/sheets/cellformat2.png share/doc/HTML/fr/sheets/cellformat3.png share/doc/HTML/fr/sheets/cellformat4.png share/doc/HTML/fr/sheets/cellformat5.png share/doc/HTML/fr/sheets/chart1.png share/doc/HTML/fr/sheets/commands.docbook share/doc/HTML/fr/sheets/config.docbook share/doc/HTML/fr/sheets/configdialog.docbook share/doc/HTML/fr/sheets/copy1.png share/doc/HTML/fr/sheets/format.docbook share/doc/HTML/fr/sheets/functions.docbook share/doc/HTML/fr/sheets/index.cache.bz2 share/doc/HTML/fr/sheets/index.docbook share/doc/HTML/fr/sheets/shortcut1.png share/doc/HTML/fr/sheets/shortcut2.png share/doc/HTML/fr/sheets/shortcut3.png share/doc/HTML/fr/sheets/sort1.png share/doc/HTML/fr/sheets/starting1.png share/doc/HTML/id/calligra/index.cache.bz2 share/doc/HTML/id/calligra/index.docbook share/doc/HTML/it/calligra/index.cache.bz2 share/doc/HTML/it/calligra/index.docbook share/doc/HTML/it/sheets/advanced.docbook share/doc/HTML/it/sheets/basics.docbook share/doc/HTML/it/sheets/cellformat0.png share/doc/HTML/it/sheets/cellformat1.png share/doc/HTML/it/sheets/cellformat2.png share/doc/HTML/it/sheets/cellformat3.png share/doc/HTML/it/sheets/cellformat4.png share/doc/HTML/it/sheets/cellformat5.png share/doc/HTML/it/sheets/cellformat6.png share/doc/HTML/it/sheets/cellprotection1.png share/doc/HTML/it/sheets/cellprotection2.png share/doc/HTML/it/sheets/chart1.png share/doc/HTML/it/sheets/commands.docbook share/doc/HTML/it/sheets/config.docbook share/doc/HTML/it/sheets/configdialog.docbook share/doc/HTML/it/sheets/configure2.png share/doc/HTML/it/sheets/configure3.png share/doc/HTML/it/sheets/configure4.png share/doc/HTML/it/sheets/configure5.png share/doc/HTML/it/sheets/configure6.png share/doc/HTML/it/sheets/copy1.png share/doc/HTML/it/sheets/format.docbook share/doc/HTML/it/sheets/functions.docbook share/doc/HTML/it/sheets/hideformula1.png share/doc/HTML/it/sheets/hideformula2.png share/doc/HTML/it/sheets/hideformula3.png share/doc/HTML/it/sheets/hideformula4.png share/doc/HTML/it/sheets/hideformula5.png share/doc/HTML/it/sheets/index.cache.bz2 share/doc/HTML/it/sheets/index.docbook share/doc/HTML/it/sheets/newdocument.png share/doc/HTML/it/sheets/pivot1.png share/doc/HTML/it/sheets/pivot2.png share/doc/HTML/it/sheets/pivot3.png share/doc/HTML/it/sheets/pivot4.png share/doc/HTML/it/sheets/sheetproperties.png share/doc/HTML/it/sheets/shortcut1.png share/doc/HTML/it/sheets/sort1.png share/doc/HTML/it/sheets/starting1.png share/doc/HTML/it/stage/barstyle1.png share/doc/HTML/it/stage/configure-author.png share/doc/HTML/it/stage/configure-document.png share/doc/HTML/it/stage/configure-grid.png share/doc/HTML/it/stage/configure-misc.png share/doc/HTML/it/stage/great-presentations.docbook share/doc/HTML/it/stage/guides.docbook share/doc/HTML/it/stage/htmlshow3.png share/doc/HTML/it/stage/htmlshow9.png share/doc/HTML/it/stage/index.cache.bz2 share/doc/HTML/it/stage/index.docbook share/doc/HTML/it/stage/menus.docbook share/doc/HTML/it/stage/options.docbook share/doc/HTML/it/stage/settings03.png share/doc/HTML/it/stage/settings04.png share/doc/HTML/it/stage/template03.png share/doc/HTML/it/stage/template04.png share/doc/HTML/it/stage/tut01.png share/doc/HTML/it/stage/tut03.png share/doc/HTML/it/stage/tut04.png share/doc/HTML/it/stage/tut07.png share/doc/HTML/it/stage/tut09.png share/doc/HTML/it/stage/tut10.png share/doc/HTML/it/stage/tut13.png share/doc/HTML/it/stage/tut19.png share/doc/HTML/it/stage/tut20.png share/doc/HTML/it/stage/tut21.png share/doc/HTML/it/stage/tut25.png share/doc/HTML/it/stage/tut26.png share/doc/HTML/it/stage/tutorial.docbook share/doc/HTML/nl/calligra/index.cache.bz2 share/doc/HTML/nl/calligra/index.docbook share/doc/HTML/nl/sheets/advanced.docbook share/doc/HTML/nl/sheets/basics.docbook share/doc/HTML/nl/sheets/celformat0.png share/doc/HTML/nl/sheets/celformat1.png share/doc/HTML/nl/sheets/celformat2.png share/doc/HTML/nl/sheets/celformat3.png share/doc/HTML/nl/sheets/celformat4.png share/doc/HTML/nl/sheets/celformat5.png share/doc/HTML/nl/sheets/chart1.png share/doc/HTML/nl/sheets/commands.docbook share/doc/HTML/nl/sheets/config.docbook share/doc/HTML/nl/sheets/configdialog.docbook share/doc/HTML/nl/sheets/copy1.png share/doc/HTML/nl/sheets/format.docbook share/doc/HTML/nl/sheets/functions.docbook share/doc/HTML/nl/sheets/index.cache.bz2 share/doc/HTML/nl/sheets/index.docbook share/doc/HTML/nl/sheets/shortcut1.png share/doc/HTML/nl/sheets/shortcut2.png share/doc/HTML/nl/sheets/shortcut3.png share/doc/HTML/nl/sheets/sort1.png share/doc/HTML/nl/sheets/starting1.png share/doc/HTML/nl/stage/barstyle1.png share/doc/HTML/nl/stage/barstyle2.png share/doc/HTML/nl/stage/barstyle3.png share/doc/HTML/nl/stage/barstyle4.png share/doc/HTML/nl/stage/barstyle5.png share/doc/HTML/nl/stage/barstyle6.png share/doc/HTML/nl/stage/barstyle7.png share/doc/HTML/nl/stage/great-presentations.docbook share/doc/HTML/nl/stage/guides.docbook share/doc/HTML/nl/stage/htmlshow00.png share/doc/HTML/nl/stage/htmlshow01.png share/doc/HTML/nl/stage/htmlshow02.png share/doc/HTML/nl/stage/htmlshow02a.png share/doc/HTML/nl/stage/htmlshow03.png share/doc/HTML/nl/stage/htmlshow04.png share/doc/HTML/nl/stage/htmlshow05.png share/doc/HTML/nl/stage/htmlshow07.png share/doc/HTML/nl/stage/index.cache.bz2 share/doc/HTML/nl/stage/index.docbook share/doc/HTML/nl/stage/menus.docbook share/doc/HTML/nl/stage/msexport1.png share/doc/HTML/nl/stage/msexport2.png share/doc/HTML/nl/stage/msexport3.png share/doc/HTML/nl/stage/msexport4.png share/doc/HTML/nl/stage/options.docbook share/doc/HTML/nl/stage/settings01.png share/doc/HTML/nl/stage/settings03.png share/doc/HTML/nl/stage/settings04.png share/doc/HTML/nl/stage/settings05.png share/doc/HTML/nl/stage/settings06.png share/doc/HTML/nl/stage/template02.png share/doc/HTML/nl/stage/template03.png share/doc/HTML/nl/stage/template04.png share/doc/HTML/nl/stage/template05.png share/doc/HTML/nl/stage/template06.png share/doc/HTML/nl/stage/template07.png share/doc/HTML/nl/stage/textmenu01.png share/doc/HTML/nl/stage/textmenu02.png share/doc/HTML/nl/stage/textmenu03.png share/doc/HTML/nl/stage/textmenu03a.png share/doc/HTML/nl/stage/textmenu04.png share/doc/HTML/nl/stage/toolsmenu01.png share/doc/HTML/nl/stage/tut01.png share/doc/HTML/nl/stage/tut02.png share/doc/HTML/nl/stage/tut03.png share/doc/HTML/nl/stage/tut04.png share/doc/HTML/nl/stage/tut05.png share/doc/HTML/nl/stage/tut06.png share/doc/HTML/nl/stage/tut07.png share/doc/HTML/nl/stage/tut08.png share/doc/HTML/nl/stage/tut09.png share/doc/HTML/nl/stage/tut10.png share/doc/HTML/nl/stage/tut11.png share/doc/HTML/nl/stage/tut12.png share/doc/HTML/nl/stage/tut13.png share/doc/HTML/nl/stage/tut14.png share/doc/HTML/nl/stage/tut15.png share/doc/HTML/nl/stage/tut16.png share/doc/HTML/nl/stage/tut17.png share/doc/HTML/nl/stage/tut18.png share/doc/HTML/nl/stage/tut19.png share/doc/HTML/nl/stage/tut20.png share/doc/HTML/nl/stage/tut21.png share/doc/HTML/nl/stage/tut22.png share/doc/HTML/nl/stage/tut23.png share/doc/HTML/nl/stage/tutorial.docbook share/doc/HTML/pt/calligra/index.cache.bz2 share/doc/HTML/pt/calligra/index.docbook share/doc/HTML/pt/stage/great-presentations.docbook share/doc/HTML/pt/stage/guides.docbook share/doc/HTML/pt/stage/index.cache.bz2 share/doc/HTML/pt/stage/index.docbook share/doc/HTML/pt/stage/menus.docbook share/doc/HTML/pt/stage/options.docbook share/doc/HTML/pt/stage/tutorial.docbook share/doc/HTML/pt_BR/calligra/index.cache.bz2 share/doc/HTML/pt_BR/calligra/index.docbook share/doc/HTML/pt_BR/sheets/advanced.docbook share/doc/HTML/pt_BR/sheets/basics.docbook share/doc/HTML/pt_BR/sheets/commands.docbook share/doc/HTML/pt_BR/sheets/config.docbook share/doc/HTML/pt_BR/sheets/configdialog.docbook share/doc/HTML/pt_BR/sheets/format.docbook share/doc/HTML/pt_BR/sheets/functions.docbook share/doc/HTML/pt_BR/sheets/index.cache.bz2 share/doc/HTML/pt_BR/sheets/index.docbook share/doc/HTML/pt_BR/stage/great-presentations.docbook share/doc/HTML/pt_BR/stage/guides.docbook share/doc/HTML/pt_BR/stage/index.cache.bz2 share/doc/HTML/pt_BR/stage/index.docbook share/doc/HTML/pt_BR/stage/menus.docbook share/doc/HTML/pt_BR/stage/options.docbook share/doc/HTML/pt_BR/stage/tutorial.docbook share/doc/HTML/ru/calligra/index.cache.bz2 share/doc/HTML/ru/calligra/index.docbook share/doc/HTML/sl/calligra/index.cache.bz2 share/doc/HTML/sl/calligra/index.docbook share/doc/HTML/sl/stage/great-presentations.docbook share/doc/HTML/sl/stage/guides.docbook share/doc/HTML/sl/stage/index.cache.bz2 share/doc/HTML/sl/stage/index.docbook share/doc/HTML/sl/stage/menus.docbook share/doc/HTML/sl/stage/options.docbook share/doc/HTML/sl/stage/tutorial.docbook share/doc/HTML/sv/calligra/index.cache.bz2 share/doc/HTML/sv/calligra/index.docbook share/doc/HTML/sv/sheets/advanced.docbook share/doc/HTML/sv/sheets/basics.docbook share/doc/HTML/sv/sheets/cellformat0.png share/doc/HTML/sv/sheets/cellformat1.png share/doc/HTML/sv/sheets/cellformat2.png share/doc/HTML/sv/sheets/cellformat3.png share/doc/HTML/sv/sheets/cellformat4.png share/doc/HTML/sv/sheets/cellformat5.png share/doc/HTML/sv/sheets/cellformat6.png share/doc/HTML/sv/sheets/cellformat7.png share/doc/HTML/sv/sheets/cellprotection1.png share/doc/HTML/sv/sheets/cellprotection2.png share/doc/HTML/sv/sheets/chart1.png share/doc/HTML/sv/sheets/commands.docbook share/doc/HTML/sv/sheets/config.docbook share/doc/HTML/sv/sheets/configdialog.docbook share/doc/HTML/sv/sheets/configure1.png share/doc/HTML/sv/sheets/configure2.png share/doc/HTML/sv/sheets/configure3.png share/doc/HTML/sv/sheets/configure4.png share/doc/HTML/sv/sheets/configure5.png share/doc/HTML/sv/sheets/configure6.png share/doc/HTML/sv/sheets/copy1.png share/doc/HTML/sv/sheets/format.docbook share/doc/HTML/sv/sheets/functions.docbook share/doc/HTML/sv/sheets/hideformula1.png share/doc/HTML/sv/sheets/hideformula2.png share/doc/HTML/sv/sheets/hideformula3.png share/doc/HTML/sv/sheets/hideformula4.png share/doc/HTML/sv/sheets/hideformula5.png share/doc/HTML/sv/sheets/index.cache.bz2 share/doc/HTML/sv/sheets/index.docbook share/doc/HTML/sv/sheets/kbd-focus-ext.png share/doc/HTML/sv/sheets/mousenav.png share/doc/HTML/sv/sheets/newdocument.png share/doc/HTML/sv/sheets/sheetproperties.png share/doc/HTML/sv/sheets/shortcut1.png share/doc/HTML/sv/sheets/shortcut2.png share/doc/HTML/sv/sheets/shortcut3.png share/doc/HTML/sv/sheets/sort1.png share/doc/HTML/sv/sheets/starting1.png share/doc/HTML/sv/sheets/tts.png share/doc/HTML/sv/stage/autocorrection1.png share/doc/HTML/sv/stage/autocorrection2.png share/doc/HTML/sv/stage/autocorrection3.png share/doc/HTML/sv/stage/autocorrection4.png share/doc/HTML/sv/stage/barstyle1.png share/doc/HTML/sv/stage/barstyle3.png share/doc/HTML/sv/stage/barstyle4.png share/doc/HTML/sv/stage/barstyle5.png share/doc/HTML/sv/stage/barstyle6.png share/doc/HTML/sv/stage/barstyle7.png share/doc/HTML/sv/stage/changeformat.png share/doc/HTML/sv/stage/completion.png share/doc/HTML/sv/stage/configure1.png share/doc/HTML/sv/stage/configure2.png share/doc/HTML/sv/stage/configure3.png share/doc/HTML/sv/stage/configure4.png share/doc/HTML/sv/stage/configure5.png share/doc/HTML/sv/stage/configure6.png share/doc/HTML/sv/stage/configure6b.png share/doc/HTML/sv/stage/configure6c.png share/doc/HTML/sv/stage/configure6d.png share/doc/HTML/sv/stage/configure6e.png share/doc/HTML/sv/stage/configure7.png share/doc/HTML/sv/stage/great-presentations.docbook share/doc/HTML/sv/stage/guides.docbook share/doc/HTML/sv/stage/htmlshow1.png share/doc/HTML/sv/stage/htmlshow2.png share/doc/HTML/sv/stage/htmlshow3.png share/doc/HTML/sv/stage/htmlshow4.png share/doc/HTML/sv/stage/htmlshow5.png share/doc/HTML/sv/stage/htmlshow6.png share/doc/HTML/sv/stage/htmlshow7.png share/doc/HTML/sv/stage/htmlshow8.png share/doc/HTML/sv/stage/index.cache.bz2 share/doc/HTML/sv/stage/index.docbook share/doc/HTML/sv/stage/kbd-focus-ext.png share/doc/HTML/sv/stage/menus.docbook share/doc/HTML/sv/stage/mousenav.png share/doc/HTML/sv/stage/msexport1.png share/doc/HTML/sv/stage/msexport2.png share/doc/HTML/sv/stage/msexport2b.png share/doc/HTML/sv/stage/msexport3.png share/doc/HTML/sv/stage/options.docbook share/doc/HTML/sv/stage/properties.png share/doc/HTML/sv/stage/settings01.png share/doc/HTML/sv/stage/settings03.png share/doc/HTML/sv/stage/settings04.png share/doc/HTML/sv/stage/template02.png share/doc/HTML/sv/stage/template03.png share/doc/HTML/sv/stage/template04.png share/doc/HTML/sv/stage/template05.png share/doc/HTML/sv/stage/template06.png share/doc/HTML/sv/stage/template07.png share/doc/HTML/sv/stage/textmenu1.png share/doc/HTML/sv/stage/textmenu2.png share/doc/HTML/sv/stage/toolsmenu01.png share/doc/HTML/sv/stage/tts.png share/doc/HTML/sv/stage/tut24.png share/doc/HTML/sv/stage/tut01.png share/doc/HTML/sv/stage/tut02.png share/doc/HTML/sv/stage/tut03.png share/doc/HTML/sv/stage/tut04.png share/doc/HTML/sv/stage/tut05.png share/doc/HTML/sv/stage/tut06.png share/doc/HTML/sv/stage/tut07.png share/doc/HTML/sv/stage/tut08.png share/doc/HTML/sv/stage/tut09.png share/doc/HTML/sv/stage/tut10.png share/doc/HTML/sv/stage/tut11.png share/doc/HTML/sv/stage/tut12.png share/doc/HTML/sv/stage/tut13.png share/doc/HTML/sv/stage/tut14.png share/doc/HTML/sv/stage/tut15.png share/doc/HTML/sv/stage/tut16.png share/doc/HTML/sv/stage/tut17.png share/doc/HTML/sv/stage/tut18.png share/doc/HTML/sv/stage/tut19.png share/doc/HTML/sv/stage/tut20.png share/doc/HTML/sv/stage/tut21.png share/doc/HTML/sv/stage/tut22.png share/doc/HTML/sv/stage/tut23.png share/doc/HTML/sv/stage/tut26.png share/doc/HTML/sv/stage/tutorial.docbook share/doc/HTML/uk/sheets/advanced.docbook share/doc/HTML/uk/sheets/basics.docbook share/doc/HTML/uk/sheets/cellformat0.png share/doc/HTML/uk/sheets/cellformat1.png share/doc/HTML/uk/sheets/cellformat2.png share/doc/HTML/uk/sheets/cellformat3.png share/doc/HTML/uk/sheets/cellformat4.png share/doc/HTML/uk/sheets/cellformat5.png share/doc/HTML/uk/sheets/cellformat6.png share/doc/HTML/uk/sheets/cellprotection1.png share/doc/HTML/uk/sheets/cellprotection2.png share/doc/HTML/uk/sheets/chart1.png share/doc/HTML/uk/sheets/commands.docbook share/doc/HTML/uk/sheets/config.docbook share/doc/HTML/uk/sheets/configdialog.docbook share/doc/HTML/uk/sheets/configure2.png share/doc/HTML/uk/sheets/configure3.png share/doc/HTML/uk/sheets/configure4.png share/doc/HTML/uk/sheets/configure5.png share/doc/HTML/uk/sheets/configure6.png share/doc/HTML/uk/sheets/copy1.png share/doc/HTML/uk/sheets/format.docbook share/doc/HTML/uk/sheets/functions.docbook share/doc/HTML/uk/sheets/hideformula1.png share/doc/HTML/uk/sheets/index.cache.bz2 share/doc/HTML/uk/sheets/index.docbook share/doc/HTML/uk/sheets/newdocument.png share/doc/HTML/uk/sheets/pivot1.png share/doc/HTML/uk/sheets/pivot2.png share/doc/HTML/uk/sheets/pivot3.png share/doc/HTML/uk/sheets/pivot4.png share/doc/HTML/uk/sheets/sheetproperties.png share/doc/HTML/uk/sheets/shortcut1.png share/doc/HTML/uk/sheets/sort1.png share/doc/HTML/uk/sheets/starting1.png share/doc/HTML/uk/stage/barstyle1.png share/doc/HTML/uk/stage/configure-document.png share/doc/HTML/uk/stage/configure-grid.png share/doc/HTML/uk/stage/configure-misc.png share/doc/HTML/uk/stage/great-presentations.docbook share/doc/HTML/uk/stage/guides.docbook share/doc/HTML/uk/stage/htmlshow3.png share/doc/HTML/uk/stage/htmlshow9.png share/doc/HTML/uk/stage/index.cache.bz2 share/doc/HTML/uk/stage/index.docbook share/doc/HTML/uk/stage/menus.docbook share/doc/HTML/uk/stage/options.docbook share/doc/HTML/uk/stage/settings03.png share/doc/HTML/uk/stage/settings04.png share/doc/HTML/uk/stage/template03.png share/doc/HTML/uk/stage/template04.png share/doc/HTML/uk/stage/tut01.png share/doc/HTML/uk/stage/tut03.png share/doc/HTML/uk/stage/tut04.png share/doc/HTML/uk/stage/tut07.png share/doc/HTML/uk/stage/tut09.png share/doc/HTML/uk/stage/tut10.png share/doc/HTML/uk/stage/tut13.png share/doc/HTML/uk/stage/tut19.png share/doc/HTML/uk/stage/tut20.png share/doc/HTML/uk/stage/tut21.png share/doc/HTML/uk/stage/tut25.png share/doc/HTML/uk/stage/tut26.png share/doc/HTML/uk/stage/tutorial.docbook share/icons/hicolor/1024x1024/apps/calligrakarbon.png share/icons/hicolor/1024x1024/apps/calligrasheets.png share/icons/hicolor/1024x1024/apps/calligrastage.png share/icons/hicolor/1024x1024/apps/calligrawords.png share/icons/hicolor/128x128/apps/calligrakarbon.png share/icons/hicolor/128x128/apps/calligrasheets.png share/icons/hicolor/128x128/apps/calligrastage.png share/icons/hicolor/128x128/apps/calligrawords.png share/icons/hicolor/16x16/apps/calligrakarbon.png share/icons/hicolor/16x16/apps/calligrasheets.png share/icons/hicolor/16x16/apps/calligrastage.png share/icons/hicolor/16x16/apps/calligrawords.png share/icons/hicolor/22x22/apps/calligrakarbon.png share/icons/hicolor/22x22/apps/calligrasheets.png share/icons/hicolor/22x22/apps/calligrastage.png share/icons/hicolor/22x22/apps/calligrawords.png share/icons/hicolor/256x256/apps/calligrakarbon.png share/icons/hicolor/256x256/apps/calligrasheets.png share/icons/hicolor/256x256/apps/calligrastage.png share/icons/hicolor/256x256/apps/calligrawords.png share/icons/hicolor/32x32/apps/calligrakarbon.png share/icons/hicolor/32x32/apps/calligrasheets.png share/icons/hicolor/32x32/apps/calligrastage.png share/icons/hicolor/32x32/apps/calligrawords.png share/icons/hicolor/48x48/apps/calligrakarbon.png share/icons/hicolor/48x48/apps/calligrasheets.png share/icons/hicolor/48x48/apps/calligrastage.png share/icons/hicolor/48x48/apps/calligrawords.png share/icons/hicolor/512x512/apps/calligrakarbon.png share/icons/hicolor/512x512/apps/calligrasheets.png share/icons/hicolor/512x512/apps/calligrastage.png share/icons/hicolor/512x512/apps/calligrawords.png share/icons/hicolor/64x64/apps/calligrakarbon.png share/icons/hicolor/64x64/apps/calligrasheets.png share/icons/hicolor/64x64/apps/calligrastage.png share/icons/hicolor/64x64/apps/calligrawords.png share/icons/hicolor/scalable/actions/office-chart-stock-candlestick.svg share/icons/hicolor/scalable/actions/office-chart-stock-hlc.svg share/icons/hicolor/scalable/actions/office-chart-stock-ohlc.svg share/icons/hicolor/scalable/apps/calligrakarbon.svgz share/icons/hicolor/scalable/apps/calligrasheets.svgz share/icons/hicolor/scalable/apps/calligrastage.svgz share/icons/hicolor/scalable/apps/calligrawords.svgz share/icons/hicolor/scalable/apps/org.kde.calligra.karbon.svg share/icons/hicolor/scalable/apps/org.kde.calligra.sheets.svg share/icons/hicolor/scalable/apps/org.kde.calligra.stage.svg share/icons/hicolor/scalable/apps/org.kde.calligra.words.svg share/karbon/gradients/allcolors.kgr share/karbon/gradients/simple.kgr share/karbon/icons/hicolor/22x22/actions/effect_flatten.png share/karbon/icons/hicolor/22x22/actions/effect_refine.png share/karbon/icons/hicolor/22x22/actions/effect_roundcorners.png share/karbon/icons/hicolor/22x22/actions/effect_whirl.png share/karbon/icons/hicolor/48x48/actions/template_empty.png share/karbon/palettes/svg-colors.gpl share/karbon/plugins/FlattenPathPlugin.rc share/karbon/plugins/RefinePathPlugin.rc share/karbon/plugins/RoundCornersPlugin.rc share/karbon/plugins/WhirlPinchPlugin.rc share/karbon/templates/Basic/.directory share/karbon/templates/Basic/.source/empty.odg share/karbon/templates/Basic/empty.desktop share/kio/servicemenus/karbon_print.desktop share/kio/servicemenus/sheets_print.desktop share/kio/servicemenus/stage_print.desktop share/kio/servicemenus/words_print.desktop share/kxmlgui5/calligrasheets/calligrasheets.rc share/kxmlgui5/calligrasheets/calligrasheets_readonly.rc share/kxmlgui5/calligrastage/calligrastage.rc share/kxmlgui5/calligrastage/calligrastage_readonly.rc share/kxmlgui5/calligrawords/calligrawords.rc share/kxmlgui5/calligrawords/calligrawords_readonly.rc share/kxmlgui5/karbon/karbon.rc share/kxmlgui5/karbon/karbon_readonly.rc share/locale/af/LC_MESSAGES/KarbonFilterEffects.mo share/locale/af/LC_MESSAGES/KarbonTools.mo share/locale/af/LC_MESSAGES/calligra.mo share/locale/af/LC_MESSAGES/calligra_textediting_thesaurus.mo share/locale/af/LC_MESSAGES/calligrafilters.mo share/locale/af/LC_MESSAGES/calligrasheets.mo share/locale/af/LC_MESSAGES/calligrastage.mo share/locale/af/LC_MESSAGES/calligrawords.mo share/locale/af/LC_MESSAGES/karbon.mo share/locale/af/LC_MESSAGES/koconverter.mo share/locale/ar/LC_MESSAGES/KarbonFilterEffects.mo share/locale/ar/LC_MESSAGES/KarbonTools.mo share/locale/ar/LC_MESSAGES/braindump.mo share/locale/ar/LC_MESSAGES/calligra-defaulttools.mo share/locale/ar/LC_MESSAGES/calligra-dockers.mo share/locale/ar/LC_MESSAGES/calligra.mo share/locale/ar/LC_MESSAGES/calligra_semanticitem_contact.mo share/locale/ar/LC_MESSAGES/calligra_semanticitem_event.mo share/locale/ar/LC_MESSAGES/calligra_semanticitem_location.mo share/locale/ar/LC_MESSAGES/calligra_shape_artistictext.mo share/locale/ar/LC_MESSAGES/calligra_shape_chart.mo share/locale/ar/LC_MESSAGES/calligra_shape_comment.mo share/locale/ar/LC_MESSAGES/calligra_shape_formula.mo share/locale/ar/LC_MESSAGES/calligra_shape_music.mo share/locale/ar/LC_MESSAGES/calligra_shape_paths.mo share/locale/ar/LC_MESSAGES/calligra_shape_picture.mo share/locale/ar/LC_MESSAGES/calligra_shape_plugin.mo share/locale/ar/LC_MESSAGES/calligra_shape_spreadsheet.mo share/locale/ar/LC_MESSAGES/calligra_shape_template.mo share/locale/ar/LC_MESSAGES/calligra_shape_text.mo share/locale/ar/LC_MESSAGES/calligra_shape_video.mo share/locale/ar/LC_MESSAGES/calligra_textediting_autocorrect.mo share/locale/ar/LC_MESSAGES/calligra_textediting_changecase.mo share/locale/ar/LC_MESSAGES/calligra_textediting_spellcheck.mo share/locale/ar/LC_MESSAGES/calligra_textediting_thesaurus.mo share/locale/ar/LC_MESSAGES/calligra_textinlineobject_variables.mo share/locale/ar/LC_MESSAGES/calligrafilters.mo share/locale/ar/LC_MESSAGES/calligralauncher.mo share/locale/ar/LC_MESSAGES/calligrasheets.mo share/locale/ar/LC_MESSAGES/calligrasheets_calendar.mo share/locale/ar/LC_MESSAGES/calligrasheets_solver.mo share/locale/ar/LC_MESSAGES/calligrastage.mo share/locale/ar/LC_MESSAGES/calligrawords.mo share/locale/ar/LC_MESSAGES/karbon.mo share/locale/ar/LC_MESSAGES/kocolorspaces.mo share/locale/ar/LC_MESSAGES/koconverter.mo share/locale/ar/LC_MESSAGES/okularGenerator_odp.mo share/locale/ar/LC_MESSAGES/okularGenerator_odt.mo share/locale/be/LC_MESSAGES/KarbonFilterEffects.mo share/locale/be/LC_MESSAGES/KarbonTools.mo share/locale/be/LC_MESSAGES/calligra-dockers.mo share/locale/be/LC_MESSAGES/calligra.mo share/locale/be/LC_MESSAGES/calligra_shape_music.mo share/locale/be/LC_MESSAGES/calligra_shape_paths.mo share/locale/be/LC_MESSAGES/calligra_shape_picture.mo share/locale/be/LC_MESSAGES/calligra_shape_text.mo share/locale/be/LC_MESSAGES/calligra_textediting_autocorrect.mo share/locale/be/LC_MESSAGES/calligra_textediting_changecase.mo share/locale/be/LC_MESSAGES/calligra_textediting_thesaurus.mo share/locale/be/LC_MESSAGES/calligra_textinlineobject_variables.mo share/locale/be/LC_MESSAGES/calligrafilters.mo share/locale/be/LC_MESSAGES/calligrasheets.mo share/locale/be/LC_MESSAGES/calligrasheets_calendar.mo share/locale/be/LC_MESSAGES/calligrasheets_solver.mo share/locale/be/LC_MESSAGES/calligrastage.mo share/locale/be/LC_MESSAGES/calligrawords.mo share/locale/be/LC_MESSAGES/karbon.mo share/locale/be/LC_MESSAGES/koconverter.mo share/locale/bg/LC_MESSAGES/KarbonFilterEffects.mo share/locale/bg/LC_MESSAGES/KarbonTools.mo share/locale/bg/LC_MESSAGES/braindump.mo share/locale/bg/LC_MESSAGES/calligra-defaulttools.mo share/locale/bg/LC_MESSAGES/calligra-dockers.mo share/locale/bg/LC_MESSAGES/calligra-opener.mo share/locale/bg/LC_MESSAGES/calligra.mo share/locale/bg/LC_MESSAGES/calligra_semanticitem_contact.mo share/locale/bg/LC_MESSAGES/calligra_semanticitem_event.mo share/locale/bg/LC_MESSAGES/calligra_semanticitem_location.mo share/locale/bg/LC_MESSAGES/calligra_shape_artistictext.mo share/locale/bg/LC_MESSAGES/calligra_shape_chart.mo share/locale/bg/LC_MESSAGES/calligra_shape_comment.mo share/locale/bg/LC_MESSAGES/calligra_shape_formula.mo share/locale/bg/LC_MESSAGES/calligra_shape_music.mo share/locale/bg/LC_MESSAGES/calligra_shape_paths.mo share/locale/bg/LC_MESSAGES/calligra_shape_picture.mo share/locale/bg/LC_MESSAGES/calligra_shape_plugin.mo share/locale/bg/LC_MESSAGES/calligra_shape_spreadsheet.mo share/locale/bg/LC_MESSAGES/calligra_shape_template.mo share/locale/bg/LC_MESSAGES/calligra_shape_text.mo share/locale/bg/LC_MESSAGES/calligra_shape_threed.mo share/locale/bg/LC_MESSAGES/calligra_shape_vector.mo share/locale/bg/LC_MESSAGES/calligra_shape_video.mo share/locale/bg/LC_MESSAGES/calligra_textediting_autocorrect.mo share/locale/bg/LC_MESSAGES/calligra_textediting_changecase.mo share/locale/bg/LC_MESSAGES/calligra_textediting_spellcheck.mo share/locale/bg/LC_MESSAGES/calligra_textediting_thesaurus.mo share/locale/bg/LC_MESSAGES/calligra_textinlineobject_variables.mo share/locale/bg/LC_MESSAGES/calligrafilters.mo share/locale/bg/LC_MESSAGES/calligrasheets.mo share/locale/bg/LC_MESSAGES/calligrasheets_calendar.mo share/locale/bg/LC_MESSAGES/calligrasheets_solver.mo share/locale/bg/LC_MESSAGES/calligrastage.mo share/locale/bg/LC_MESSAGES/calligrawords.mo share/locale/bg/LC_MESSAGES/karbon.mo share/locale/bg/LC_MESSAGES/kocolorspaces.mo share/locale/bg/LC_MESSAGES/koconverter.mo share/locale/bg/LC_MESSAGES/okularGenerator_odp.mo share/locale/bg/LC_MESSAGES/okularGenerator_odt.mo share/locale/br/LC_MESSAGES/KarbonFilterEffects.mo share/locale/br/LC_MESSAGES/KarbonTools.mo share/locale/br/LC_MESSAGES/calligra.mo share/locale/br/LC_MESSAGES/calligra_textediting_thesaurus.mo share/locale/br/LC_MESSAGES/calligrafilters.mo share/locale/br/LC_MESSAGES/calligrasheets.mo share/locale/br/LC_MESSAGES/calligrasheets_calendar.mo share/locale/br/LC_MESSAGES/calligrastage.mo share/locale/br/LC_MESSAGES/calligrawords.mo share/locale/br/LC_MESSAGES/karbon.mo share/locale/br/LC_MESSAGES/koconverter.mo share/locale/bs/LC_MESSAGES/KarbonFilterEffects.mo share/locale/bs/LC_MESSAGES/KarbonTools.mo share/locale/bs/LC_MESSAGES/braindump.mo share/locale/bs/LC_MESSAGES/calligra-defaulttools.mo share/locale/bs/LC_MESSAGES/calligra-dockers.mo share/locale/bs/LC_MESSAGES/calligra-opener.mo share/locale/bs/LC_MESSAGES/calligra.mo share/locale/bs/LC_MESSAGES/calligra_semanticitem_contact.mo share/locale/bs/LC_MESSAGES/calligra_semanticitem_event.mo share/locale/bs/LC_MESSAGES/calligra_semanticitem_location.mo share/locale/bs/LC_MESSAGES/calligra_shape_artistictext.mo share/locale/bs/LC_MESSAGES/calligra_shape_chart.mo share/locale/bs/LC_MESSAGES/calligra_shape_comment.mo share/locale/bs/LC_MESSAGES/calligra_shape_formula.mo share/locale/bs/LC_MESSAGES/calligra_shape_music.mo share/locale/bs/LC_MESSAGES/calligra_shape_paths.mo share/locale/bs/LC_MESSAGES/calligra_shape_picture.mo share/locale/bs/LC_MESSAGES/calligra_shape_plugin.mo share/locale/bs/LC_MESSAGES/calligra_shape_spreadsheet.mo share/locale/bs/LC_MESSAGES/calligra_shape_template.mo share/locale/bs/LC_MESSAGES/calligra_shape_text.mo share/locale/bs/LC_MESSAGES/calligra_shape_threed.mo share/locale/bs/LC_MESSAGES/calligra_shape_vector.mo share/locale/bs/LC_MESSAGES/calligra_shape_video.mo share/locale/bs/LC_MESSAGES/calligra_textediting_autocorrect.mo share/locale/bs/LC_MESSAGES/calligra_textediting_changecase.mo share/locale/bs/LC_MESSAGES/calligra_textediting_spellcheck.mo share/locale/bs/LC_MESSAGES/calligra_textediting_thesaurus.mo share/locale/bs/LC_MESSAGES/calligra_textinlineobject_variables.mo share/locale/bs/LC_MESSAGES/calligrafilters.mo share/locale/bs/LC_MESSAGES/calligrasheets.mo share/locale/bs/LC_MESSAGES/calligrasheets_calendar.mo share/locale/bs/LC_MESSAGES/calligrasheets_solver.mo share/locale/bs/LC_MESSAGES/calligrastage.mo share/locale/bs/LC_MESSAGES/calligrawords.mo share/locale/bs/LC_MESSAGES/karbon.mo share/locale/bs/LC_MESSAGES/kocolorspaces.mo share/locale/bs/LC_MESSAGES/koconverter.mo share/locale/bs/LC_MESSAGES/okularGenerator_odp.mo share/locale/bs/LC_MESSAGES/okularGenerator_odt.mo share/locale/ca/LC_MESSAGES/KarbonFilterEffects.mo share/locale/ca/LC_MESSAGES/KarbonTools.mo share/locale/ca/LC_MESSAGES/braindump.mo share/locale/ca/LC_MESSAGES/calligra-defaulttools.mo share/locale/ca/LC_MESSAGES/calligra-dockers.mo share/locale/ca/LC_MESSAGES/calligra-opener.mo share/locale/ca/LC_MESSAGES/calligra.mo share/locale/ca/LC_MESSAGES/calligra_semanticitem_contact.mo share/locale/ca/LC_MESSAGES/calligra_semanticitem_event.mo share/locale/ca/LC_MESSAGES/calligra_semanticitem_location.mo share/locale/ca/LC_MESSAGES/calligra_shape_artistictext.mo share/locale/ca/LC_MESSAGES/calligra_shape_chart.mo share/locale/ca/LC_MESSAGES/calligra_shape_comment.mo share/locale/ca/LC_MESSAGES/calligra_shape_formula.mo share/locale/ca/LC_MESSAGES/calligra_shape_music.mo share/locale/ca/LC_MESSAGES/calligra_shape_paths.mo share/locale/ca/LC_MESSAGES/calligra_shape_picture.mo share/locale/ca/LC_MESSAGES/calligra_shape_plugin.mo share/locale/ca/LC_MESSAGES/calligra_shape_spreadsheet.mo share/locale/ca/LC_MESSAGES/calligra_shape_template.mo share/locale/ca/LC_MESSAGES/calligra_shape_text.mo share/locale/ca/LC_MESSAGES/calligra_shape_threed.mo share/locale/ca/LC_MESSAGES/calligra_shape_vector.mo share/locale/ca/LC_MESSAGES/calligra_shape_video.mo share/locale/ca/LC_MESSAGES/calligra_shape_webshape.mo share/locale/ca/LC_MESSAGES/calligra_textediting_autocorrect.mo share/locale/ca/LC_MESSAGES/calligra_textediting_changecase.mo share/locale/ca/LC_MESSAGES/calligra_textediting_spellcheck.mo share/locale/ca/LC_MESSAGES/calligra_textediting_thesaurus.mo share/locale/ca/LC_MESSAGES/calligra_textinlineobject_variables.mo share/locale/ca/LC_MESSAGES/calligrafilters.mo share/locale/ca/LC_MESSAGES/calligralauncher.mo share/locale/ca/LC_MESSAGES/calligrasheets.mo share/locale/ca/LC_MESSAGES/calligrasheets_calendar.mo share/locale/ca/LC_MESSAGES/calligrasheets_solver.mo share/locale/ca/LC_MESSAGES/calligrastage.mo share/locale/ca/LC_MESSAGES/calligrawords.mo share/locale/ca/LC_MESSAGES/karbon.mo share/locale/ca/LC_MESSAGES/kocolorspaces.mo share/locale/ca/LC_MESSAGES/koconverter.mo share/locale/ca/LC_MESSAGES/okularGenerator_odp.mo share/locale/ca/LC_MESSAGES/okularGenerator_odt.mo share/locale/ca@valencia/LC_MESSAGES/KarbonFilterEffects.mo share/locale/ca@valencia/LC_MESSAGES/KarbonTools.mo share/locale/ca@valencia/LC_MESSAGES/braindump.mo share/locale/ca@valencia/LC_MESSAGES/calligra-defaulttools.mo share/locale/ca@valencia/LC_MESSAGES/calligra-dockers.mo share/locale/ca@valencia/LC_MESSAGES/calligra-opener.mo share/locale/ca@valencia/LC_MESSAGES/calligra.mo share/locale/ca@valencia/LC_MESSAGES/calligra_semanticitem_contact.mo share/locale/ca@valencia/LC_MESSAGES/calligra_semanticitem_event.mo share/locale/ca@valencia/LC_MESSAGES/calligra_semanticitem_location.mo share/locale/ca@valencia/LC_MESSAGES/calligra_shape_artistictext.mo share/locale/ca@valencia/LC_MESSAGES/calligra_shape_chart.mo share/locale/ca@valencia/LC_MESSAGES/calligra_shape_comment.mo share/locale/ca@valencia/LC_MESSAGES/calligra_shape_formula.mo share/locale/ca@valencia/LC_MESSAGES/calligra_shape_music.mo share/locale/ca@valencia/LC_MESSAGES/calligra_shape_paths.mo share/locale/ca@valencia/LC_MESSAGES/calligra_shape_picture.mo share/locale/ca@valencia/LC_MESSAGES/calligra_shape_plugin.mo share/locale/ca@valencia/LC_MESSAGES/calligra_shape_spreadsheet.mo share/locale/ca@valencia/LC_MESSAGES/calligra_shape_template.mo share/locale/ca@valencia/LC_MESSAGES/calligra_shape_text.mo share/locale/ca@valencia/LC_MESSAGES/calligra_shape_threed.mo share/locale/ca@valencia/LC_MESSAGES/calligra_shape_vector.mo share/locale/ca@valencia/LC_MESSAGES/calligra_shape_video.mo share/locale/ca@valencia/LC_MESSAGES/calligra_shape_webshape.mo share/locale/ca@valencia/LC_MESSAGES/calligra_textediting_autocorrect.mo share/locale/ca@valencia/LC_MESSAGES/calligra_textediting_changecase.mo share/locale/ca@valencia/LC_MESSAGES/calligra_textediting_spellcheck.mo share/locale/ca@valencia/LC_MESSAGES/calligra_textediting_thesaurus.mo share/locale/ca@valencia/LC_MESSAGES/calligra_textinlineobject_variables.mo share/locale/ca@valencia/LC_MESSAGES/calligrafilters.mo share/locale/ca@valencia/LC_MESSAGES/calligralauncher.mo share/locale/ca@valencia/LC_MESSAGES/calligrasheets.mo share/locale/ca@valencia/LC_MESSAGES/calligrasheets_calendar.mo share/locale/ca@valencia/LC_MESSAGES/calligrasheets_solver.mo share/locale/ca@valencia/LC_MESSAGES/calligrastage.mo share/locale/ca@valencia/LC_MESSAGES/calligrawords.mo share/locale/ca@valencia/LC_MESSAGES/karbon.mo share/locale/ca@valencia/LC_MESSAGES/kocolorspaces.mo share/locale/ca@valencia/LC_MESSAGES/koconverter.mo share/locale/ca@valencia/LC_MESSAGES/okularGenerator_odp.mo share/locale/ca@valencia/LC_MESSAGES/okularGenerator_odt.mo share/locale/cs/LC_MESSAGES/KarbonFilterEffects.mo share/locale/cs/LC_MESSAGES/KarbonTools.mo share/locale/cs/LC_MESSAGES/braindump.mo share/locale/cs/LC_MESSAGES/calligra-defaulttools.mo share/locale/cs/LC_MESSAGES/calligra-dockers.mo share/locale/cs/LC_MESSAGES/calligra-opener.mo share/locale/cs/LC_MESSAGES/calligra.mo share/locale/cs/LC_MESSAGES/calligra_semanticitem_contact.mo share/locale/cs/LC_MESSAGES/calligra_semanticitem_event.mo share/locale/cs/LC_MESSAGES/calligra_semanticitem_location.mo share/locale/cs/LC_MESSAGES/calligra_shape_artistictext.mo share/locale/cs/LC_MESSAGES/calligra_shape_chart.mo share/locale/cs/LC_MESSAGES/calligra_shape_comment.mo share/locale/cs/LC_MESSAGES/calligra_shape_formula.mo share/locale/cs/LC_MESSAGES/calligra_shape_music.mo share/locale/cs/LC_MESSAGES/calligra_shape_paths.mo share/locale/cs/LC_MESSAGES/calligra_shape_picture.mo share/locale/cs/LC_MESSAGES/calligra_shape_plugin.mo share/locale/cs/LC_MESSAGES/calligra_shape_spreadsheet.mo share/locale/cs/LC_MESSAGES/calligra_shape_template.mo share/locale/cs/LC_MESSAGES/calligra_shape_text.mo share/locale/cs/LC_MESSAGES/calligra_shape_threed.mo share/locale/cs/LC_MESSAGES/calligra_shape_vector.mo share/locale/cs/LC_MESSAGES/calligra_shape_video.mo share/locale/cs/LC_MESSAGES/calligra_shape_webshape.mo share/locale/cs/LC_MESSAGES/calligra_textediting_autocorrect.mo share/locale/cs/LC_MESSAGES/calligra_textediting_changecase.mo share/locale/cs/LC_MESSAGES/calligra_textediting_spellcheck.mo share/locale/cs/LC_MESSAGES/calligra_textediting_thesaurus.mo share/locale/cs/LC_MESSAGES/calligra_textinlineobject_variables.mo share/locale/cs/LC_MESSAGES/calligrafilters.mo share/locale/cs/LC_MESSAGES/calligralauncher.mo share/locale/cs/LC_MESSAGES/calligrasheets.mo share/locale/cs/LC_MESSAGES/calligrasheets_calendar.mo share/locale/cs/LC_MESSAGES/calligrasheets_solver.mo share/locale/cs/LC_MESSAGES/calligrastage.mo share/locale/cs/LC_MESSAGES/calligrawords.mo share/locale/cs/LC_MESSAGES/karbon.mo share/locale/cs/LC_MESSAGES/kocolorspaces.mo share/locale/cs/LC_MESSAGES/koconverter.mo share/locale/cs/LC_MESSAGES/okularGenerator_odp.mo share/locale/cs/LC_MESSAGES/okularGenerator_odt.mo share/locale/cy/LC_MESSAGES/KarbonFilterEffects.mo share/locale/cy/LC_MESSAGES/KarbonTools.mo share/locale/cy/LC_MESSAGES/calligra.mo share/locale/cy/LC_MESSAGES/calligra_textediting_thesaurus.mo share/locale/cy/LC_MESSAGES/calligrafilters.mo share/locale/cy/LC_MESSAGES/calligrasheets.mo share/locale/cy/LC_MESSAGES/calligrasheets_calendar.mo share/locale/cy/LC_MESSAGES/calligrastage.mo share/locale/cy/LC_MESSAGES/calligrawords.mo share/locale/cy/LC_MESSAGES/karbon.mo share/locale/cy/LC_MESSAGES/koconverter.mo share/locale/da/LC_MESSAGES/KarbonFilterEffects.mo share/locale/da/LC_MESSAGES/KarbonTools.mo share/locale/da/LC_MESSAGES/braindump.mo share/locale/da/LC_MESSAGES/calligra-defaulttools.mo share/locale/da/LC_MESSAGES/calligra-dockers.mo share/locale/da/LC_MESSAGES/calligra-opener.mo share/locale/da/LC_MESSAGES/calligra.mo share/locale/da/LC_MESSAGES/calligra_semanticitem_contact.mo share/locale/da/LC_MESSAGES/calligra_semanticitem_event.mo share/locale/da/LC_MESSAGES/calligra_semanticitem_location.mo share/locale/da/LC_MESSAGES/calligra_shape_artistictext.mo share/locale/da/LC_MESSAGES/calligra_shape_chart.mo share/locale/da/LC_MESSAGES/calligra_shape_comment.mo share/locale/da/LC_MESSAGES/calligra_shape_formula.mo share/locale/da/LC_MESSAGES/calligra_shape_music.mo share/locale/da/LC_MESSAGES/calligra_shape_paths.mo share/locale/da/LC_MESSAGES/calligra_shape_picture.mo share/locale/da/LC_MESSAGES/calligra_shape_plugin.mo share/locale/da/LC_MESSAGES/calligra_shape_spreadsheet.mo share/locale/da/LC_MESSAGES/calligra_shape_template.mo share/locale/da/LC_MESSAGES/calligra_shape_text.mo share/locale/da/LC_MESSAGES/calligra_shape_threed.mo share/locale/da/LC_MESSAGES/calligra_shape_vector.mo share/locale/da/LC_MESSAGES/calligra_shape_video.mo share/locale/da/LC_MESSAGES/calligra_textediting_autocorrect.mo share/locale/da/LC_MESSAGES/calligra_textediting_changecase.mo share/locale/da/LC_MESSAGES/calligra_textediting_spellcheck.mo share/locale/da/LC_MESSAGES/calligra_textediting_thesaurus.mo share/locale/da/LC_MESSAGES/calligra_textinlineobject_variables.mo share/locale/da/LC_MESSAGES/calligrafilters.mo share/locale/da/LC_MESSAGES/calligrasheets.mo share/locale/da/LC_MESSAGES/calligrasheets_calendar.mo share/locale/da/LC_MESSAGES/calligrasheets_solver.mo share/locale/da/LC_MESSAGES/calligrastage.mo share/locale/da/LC_MESSAGES/calligrawords.mo share/locale/da/LC_MESSAGES/karbon.mo share/locale/da/LC_MESSAGES/kocolorspaces.mo share/locale/da/LC_MESSAGES/koconverter.mo share/locale/da/LC_MESSAGES/okularGenerator_odp.mo share/locale/da/LC_MESSAGES/okularGenerator_odt.mo share/locale/de/LC_MESSAGES/KarbonFilterEffects.mo share/locale/de/LC_MESSAGES/KarbonTools.mo share/locale/de/LC_MESSAGES/braindump.mo share/locale/de/LC_MESSAGES/calligra-defaulttools.mo share/locale/de/LC_MESSAGES/calligra-dockers.mo share/locale/de/LC_MESSAGES/calligra-opener.mo share/locale/de/LC_MESSAGES/calligra.mo share/locale/de/LC_MESSAGES/calligra_semanticitem_contact.mo share/locale/de/LC_MESSAGES/calligra_semanticitem_event.mo share/locale/de/LC_MESSAGES/calligra_semanticitem_location.mo share/locale/de/LC_MESSAGES/calligra_shape_artistictext.mo share/locale/de/LC_MESSAGES/calligra_shape_chart.mo share/locale/de/LC_MESSAGES/calligra_shape_comment.mo share/locale/de/LC_MESSAGES/calligra_shape_formula.mo share/locale/de/LC_MESSAGES/calligra_shape_music.mo share/locale/de/LC_MESSAGES/calligra_shape_paths.mo share/locale/de/LC_MESSAGES/calligra_shape_picture.mo share/locale/de/LC_MESSAGES/calligra_shape_plugin.mo share/locale/de/LC_MESSAGES/calligra_shape_spreadsheet.mo share/locale/de/LC_MESSAGES/calligra_shape_template.mo share/locale/de/LC_MESSAGES/calligra_shape_text.mo share/locale/de/LC_MESSAGES/calligra_shape_threed.mo share/locale/de/LC_MESSAGES/calligra_shape_vector.mo share/locale/de/LC_MESSAGES/calligra_shape_video.mo share/locale/de/LC_MESSAGES/calligra_shape_webshape.mo share/locale/de/LC_MESSAGES/calligra_textediting_autocorrect.mo share/locale/de/LC_MESSAGES/calligra_textediting_changecase.mo share/locale/de/LC_MESSAGES/calligra_textediting_spellcheck.mo share/locale/de/LC_MESSAGES/calligra_textediting_thesaurus.mo share/locale/de/LC_MESSAGES/calligra_textinlineobject_variables.mo share/locale/de/LC_MESSAGES/calligrafilters.mo share/locale/de/LC_MESSAGES/calligralauncher.mo share/locale/de/LC_MESSAGES/calligrasheets.mo share/locale/de/LC_MESSAGES/calligrasheets_calendar.mo share/locale/de/LC_MESSAGES/calligrasheets_solver.mo share/locale/de/LC_MESSAGES/calligrastage.mo share/locale/de/LC_MESSAGES/calligrawords.mo share/locale/de/LC_MESSAGES/karbon.mo share/locale/de/LC_MESSAGES/kocolorspaces.mo share/locale/de/LC_MESSAGES/koconverter.mo share/locale/de/LC_MESSAGES/okularGenerator_odp.mo share/locale/de/LC_MESSAGES/okularGenerator_odt.mo share/locale/el/LC_MESSAGES/KarbonFilterEffects.mo share/locale/el/LC_MESSAGES/KarbonTools.mo share/locale/el/LC_MESSAGES/braindump.mo share/locale/el/LC_MESSAGES/calligra-defaulttools.mo share/locale/el/LC_MESSAGES/calligra-dockers.mo share/locale/el/LC_MESSAGES/calligra-opener.mo share/locale/el/LC_MESSAGES/calligra.mo share/locale/el/LC_MESSAGES/calligra_semanticitem_contact.mo share/locale/el/LC_MESSAGES/calligra_semanticitem_event.mo share/locale/el/LC_MESSAGES/calligra_semanticitem_location.mo share/locale/el/LC_MESSAGES/calligra_shape_artistictext.mo share/locale/el/LC_MESSAGES/calligra_shape_chart.mo share/locale/el/LC_MESSAGES/calligra_shape_comment.mo share/locale/el/LC_MESSAGES/calligra_shape_formula.mo share/locale/el/LC_MESSAGES/calligra_shape_music.mo share/locale/el/LC_MESSAGES/calligra_shape_paths.mo share/locale/el/LC_MESSAGES/calligra_shape_picture.mo share/locale/el/LC_MESSAGES/calligra_shape_plugin.mo share/locale/el/LC_MESSAGES/calligra_shape_spreadsheet.mo share/locale/el/LC_MESSAGES/calligra_shape_template.mo share/locale/el/LC_MESSAGES/calligra_shape_text.mo share/locale/el/LC_MESSAGES/calligra_shape_threed.mo share/locale/el/LC_MESSAGES/calligra_shape_vector.mo share/locale/el/LC_MESSAGES/calligra_shape_video.mo share/locale/el/LC_MESSAGES/calligra_textediting_autocorrect.mo share/locale/el/LC_MESSAGES/calligra_textediting_changecase.mo share/locale/el/LC_MESSAGES/calligra_textediting_spellcheck.mo share/locale/el/LC_MESSAGES/calligra_textediting_thesaurus.mo share/locale/el/LC_MESSAGES/calligra_textinlineobject_variables.mo share/locale/el/LC_MESSAGES/calligrafilters.mo share/locale/el/LC_MESSAGES/calligrasheets.mo share/locale/el/LC_MESSAGES/calligrasheets_calendar.mo share/locale/el/LC_MESSAGES/calligrasheets_solver.mo share/locale/el/LC_MESSAGES/calligrastage.mo share/locale/el/LC_MESSAGES/calligrawords.mo share/locale/el/LC_MESSAGES/karbon.mo share/locale/el/LC_MESSAGES/kocolorspaces.mo share/locale/el/LC_MESSAGES/koconverter.mo share/locale/el/LC_MESSAGES/okularGenerator_odp.mo share/locale/el/LC_MESSAGES/okularGenerator_odt.mo share/locale/en_GB/LC_MESSAGES/KarbonFilterEffects.mo share/locale/en_GB/LC_MESSAGES/KarbonTools.mo share/locale/en_GB/LC_MESSAGES/braindump.mo share/locale/en_GB/LC_MESSAGES/calligra-defaulttools.mo share/locale/en_GB/LC_MESSAGES/calligra-dockers.mo share/locale/en_GB/LC_MESSAGES/calligra-opener.mo share/locale/en_GB/LC_MESSAGES/calligra.mo share/locale/en_GB/LC_MESSAGES/calligra_semanticitem_contact.mo share/locale/en_GB/LC_MESSAGES/calligra_semanticitem_event.mo share/locale/en_GB/LC_MESSAGES/calligra_semanticitem_location.mo share/locale/en_GB/LC_MESSAGES/calligra_shape_artistictext.mo share/locale/en_GB/LC_MESSAGES/calligra_shape_chart.mo share/locale/en_GB/LC_MESSAGES/calligra_shape_comment.mo share/locale/en_GB/LC_MESSAGES/calligra_shape_formula.mo share/locale/en_GB/LC_MESSAGES/calligra_shape_music.mo share/locale/en_GB/LC_MESSAGES/calligra_shape_paths.mo share/locale/en_GB/LC_MESSAGES/calligra_shape_picture.mo share/locale/en_GB/LC_MESSAGES/calligra_shape_plugin.mo share/locale/en_GB/LC_MESSAGES/calligra_shape_spreadsheet.mo share/locale/en_GB/LC_MESSAGES/calligra_shape_template.mo share/locale/en_GB/LC_MESSAGES/calligra_shape_text.mo share/locale/en_GB/LC_MESSAGES/calligra_shape_threed.mo share/locale/en_GB/LC_MESSAGES/calligra_shape_vector.mo share/locale/en_GB/LC_MESSAGES/calligra_shape_video.mo share/locale/en_GB/LC_MESSAGES/calligra_shape_webshape.mo share/locale/en_GB/LC_MESSAGES/calligra_textediting_autocorrect.mo share/locale/en_GB/LC_MESSAGES/calligra_textediting_changecase.mo share/locale/en_GB/LC_MESSAGES/calligra_textediting_spellcheck.mo share/locale/en_GB/LC_MESSAGES/calligra_textediting_thesaurus.mo share/locale/en_GB/LC_MESSAGES/calligra_textinlineobject_variables.mo share/locale/en_GB/LC_MESSAGES/calligrafilters.mo share/locale/en_GB/LC_MESSAGES/calligralauncher.mo share/locale/en_GB/LC_MESSAGES/calligrasheets.mo share/locale/en_GB/LC_MESSAGES/calligrasheets_calendar.mo share/locale/en_GB/LC_MESSAGES/calligrasheets_solver.mo share/locale/en_GB/LC_MESSAGES/calligrastage.mo share/locale/en_GB/LC_MESSAGES/calligrawords.mo share/locale/en_GB/LC_MESSAGES/karbon.mo share/locale/en_GB/LC_MESSAGES/kocolorspaces.mo share/locale/en_GB/LC_MESSAGES/koconverter.mo share/locale/en_GB/LC_MESSAGES/okularGenerator_odp.mo share/locale/en_GB/LC_MESSAGES/okularGenerator_odt.mo share/locale/eo/LC_MESSAGES/KarbonFilterEffects.mo share/locale/eo/LC_MESSAGES/KarbonTools.mo share/locale/eo/LC_MESSAGES/braindump.mo share/locale/eo/LC_MESSAGES/calligra-defaulttools.mo share/locale/eo/LC_MESSAGES/calligra-dockers.mo share/locale/eo/LC_MESSAGES/calligra-opener.mo share/locale/eo/LC_MESSAGES/calligra.mo share/locale/eo/LC_MESSAGES/calligra_semanticitem_contact.mo share/locale/eo/LC_MESSAGES/calligra_semanticitem_event.mo share/locale/eo/LC_MESSAGES/calligra_semanticitem_location.mo share/locale/eo/LC_MESSAGES/calligra_shape_artistictext.mo share/locale/eo/LC_MESSAGES/calligra_shape_chart.mo share/locale/eo/LC_MESSAGES/calligra_shape_comment.mo share/locale/eo/LC_MESSAGES/calligra_shape_formula.mo share/locale/eo/LC_MESSAGES/calligra_shape_music.mo share/locale/eo/LC_MESSAGES/calligra_shape_paths.mo share/locale/eo/LC_MESSAGES/calligra_shape_picture.mo share/locale/eo/LC_MESSAGES/calligra_shape_plugin.mo share/locale/eo/LC_MESSAGES/calligra_shape_spreadsheet.mo share/locale/eo/LC_MESSAGES/calligra_shape_template.mo share/locale/eo/LC_MESSAGES/calligra_shape_text.mo share/locale/eo/LC_MESSAGES/calligra_shape_threed.mo share/locale/eo/LC_MESSAGES/calligra_shape_vector.mo share/locale/eo/LC_MESSAGES/calligra_shape_video.mo share/locale/eo/LC_MESSAGES/calligra_textediting_autocorrect.mo share/locale/eo/LC_MESSAGES/calligra_textediting_changecase.mo share/locale/eo/LC_MESSAGES/calligra_textediting_spellcheck.mo share/locale/eo/LC_MESSAGES/calligra_textediting_thesaurus.mo share/locale/eo/LC_MESSAGES/calligra_textinlineobject_variables.mo share/locale/eo/LC_MESSAGES/calligrafilters.mo share/locale/eo/LC_MESSAGES/calligrasheets.mo share/locale/eo/LC_MESSAGES/calligrasheets_calendar.mo share/locale/eo/LC_MESSAGES/calligrasheets_solver.mo share/locale/eo/LC_MESSAGES/calligrastage.mo share/locale/eo/LC_MESSAGES/calligrawords.mo share/locale/eo/LC_MESSAGES/karbon.mo share/locale/eo/LC_MESSAGES/kocolorspaces.mo share/locale/eo/LC_MESSAGES/koconverter.mo share/locale/eo/LC_MESSAGES/okularGenerator_odp.mo share/locale/eo/LC_MESSAGES/okularGenerator_odt.mo share/locale/es/LC_MESSAGES/KarbonFilterEffects.mo share/locale/es/LC_MESSAGES/KarbonTools.mo share/locale/es/LC_MESSAGES/braindump.mo share/locale/es/LC_MESSAGES/calligra-defaulttools.mo share/locale/es/LC_MESSAGES/calligra-dockers.mo share/locale/es/LC_MESSAGES/calligra-opener.mo share/locale/es/LC_MESSAGES/calligra.mo share/locale/es/LC_MESSAGES/calligra_semanticitem_contact.mo share/locale/es/LC_MESSAGES/calligra_semanticitem_event.mo share/locale/es/LC_MESSAGES/calligra_semanticitem_location.mo share/locale/es/LC_MESSAGES/calligra_shape_artistictext.mo share/locale/es/LC_MESSAGES/calligra_shape_chart.mo share/locale/es/LC_MESSAGES/calligra_shape_comment.mo share/locale/es/LC_MESSAGES/calligra_shape_formula.mo share/locale/es/LC_MESSAGES/calligra_shape_music.mo share/locale/es/LC_MESSAGES/calligra_shape_paths.mo share/locale/es/LC_MESSAGES/calligra_shape_picture.mo share/locale/es/LC_MESSAGES/calligra_shape_plugin.mo share/locale/es/LC_MESSAGES/calligra_shape_spreadsheet.mo share/locale/es/LC_MESSAGES/calligra_shape_template.mo share/locale/es/LC_MESSAGES/calligra_shape_text.mo share/locale/es/LC_MESSAGES/calligra_shape_threed.mo share/locale/es/LC_MESSAGES/calligra_shape_vector.mo share/locale/es/LC_MESSAGES/calligra_shape_video.mo share/locale/es/LC_MESSAGES/calligra_shape_webshape.mo share/locale/es/LC_MESSAGES/calligra_textediting_autocorrect.mo share/locale/es/LC_MESSAGES/calligra_textediting_changecase.mo share/locale/es/LC_MESSAGES/calligra_textediting_spellcheck.mo share/locale/es/LC_MESSAGES/calligra_textediting_thesaurus.mo share/locale/es/LC_MESSAGES/calligra_textinlineobject_variables.mo share/locale/es/LC_MESSAGES/calligrafilters.mo share/locale/es/LC_MESSAGES/calligralauncher.mo share/locale/es/LC_MESSAGES/calligrasheets.mo share/locale/es/LC_MESSAGES/calligrasheets_calendar.mo share/locale/es/LC_MESSAGES/calligrasheets_solver.mo share/locale/es/LC_MESSAGES/calligrastage.mo share/locale/es/LC_MESSAGES/calligrawords.mo share/locale/es/LC_MESSAGES/karbon.mo share/locale/es/LC_MESSAGES/kocolorspaces.mo share/locale/es/LC_MESSAGES/koconverter.mo share/locale/es/LC_MESSAGES/okularGenerator_odp.mo share/locale/es/LC_MESSAGES/okularGenerator_odt.mo share/locale/et/LC_MESSAGES/KarbonFilterEffects.mo share/locale/et/LC_MESSAGES/KarbonTools.mo share/locale/et/LC_MESSAGES/braindump.mo share/locale/et/LC_MESSAGES/calligra-defaulttools.mo share/locale/et/LC_MESSAGES/calligra-dockers.mo share/locale/et/LC_MESSAGES/calligra-opener.mo share/locale/et/LC_MESSAGES/calligra.mo share/locale/et/LC_MESSAGES/calligra_semanticitem_contact.mo share/locale/et/LC_MESSAGES/calligra_semanticitem_event.mo share/locale/et/LC_MESSAGES/calligra_semanticitem_location.mo share/locale/et/LC_MESSAGES/calligra_shape_artistictext.mo share/locale/et/LC_MESSAGES/calligra_shape_chart.mo share/locale/et/LC_MESSAGES/calligra_shape_comment.mo share/locale/et/LC_MESSAGES/calligra_shape_formula.mo share/locale/et/LC_MESSAGES/calligra_shape_music.mo share/locale/et/LC_MESSAGES/calligra_shape_paths.mo share/locale/et/LC_MESSAGES/calligra_shape_picture.mo share/locale/et/LC_MESSAGES/calligra_shape_plugin.mo share/locale/et/LC_MESSAGES/calligra_shape_spreadsheet.mo share/locale/et/LC_MESSAGES/calligra_shape_template.mo share/locale/et/LC_MESSAGES/calligra_shape_text.mo share/locale/et/LC_MESSAGES/calligra_shape_threed.mo share/locale/et/LC_MESSAGES/calligra_shape_vector.mo share/locale/et/LC_MESSAGES/calligra_shape_video.mo share/locale/et/LC_MESSAGES/calligra_textediting_autocorrect.mo share/locale/et/LC_MESSAGES/calligra_textediting_changecase.mo share/locale/et/LC_MESSAGES/calligra_textediting_spellcheck.mo share/locale/et/LC_MESSAGES/calligra_textediting_thesaurus.mo share/locale/et/LC_MESSAGES/calligra_textinlineobject_variables.mo share/locale/et/LC_MESSAGES/calligrafilters.mo share/locale/et/LC_MESSAGES/calligrasheets.mo share/locale/et/LC_MESSAGES/calligrasheets_calendar.mo share/locale/et/LC_MESSAGES/calligrasheets_solver.mo share/locale/et/LC_MESSAGES/calligrastage.mo share/locale/et/LC_MESSAGES/calligrawords.mo share/locale/et/LC_MESSAGES/karbon.mo share/locale/et/LC_MESSAGES/kocolorspaces.mo share/locale/et/LC_MESSAGES/koconverter.mo share/locale/et/LC_MESSAGES/okularGenerator_odp.mo share/locale/et/LC_MESSAGES/okularGenerator_odt.mo share/locale/eu/LC_MESSAGES/KarbonFilterEffects.mo share/locale/eu/LC_MESSAGES/KarbonTools.mo share/locale/eu/LC_MESSAGES/braindump.mo share/locale/eu/LC_MESSAGES/calligra-defaulttools.mo share/locale/eu/LC_MESSAGES/calligra-dockers.mo share/locale/eu/LC_MESSAGES/calligra-opener.mo share/locale/eu/LC_MESSAGES/calligra.mo share/locale/eu/LC_MESSAGES/calligra_semanticitem_contact.mo share/locale/eu/LC_MESSAGES/calligra_semanticitem_event.mo share/locale/eu/LC_MESSAGES/calligra_semanticitem_location.mo share/locale/eu/LC_MESSAGES/calligra_shape_artistictext.mo share/locale/eu/LC_MESSAGES/calligra_shape_chart.mo share/locale/eu/LC_MESSAGES/calligra_shape_comment.mo share/locale/eu/LC_MESSAGES/calligra_shape_formula.mo share/locale/eu/LC_MESSAGES/calligra_shape_music.mo share/locale/eu/LC_MESSAGES/calligra_shape_paths.mo share/locale/eu/LC_MESSAGES/calligra_shape_picture.mo share/locale/eu/LC_MESSAGES/calligra_shape_plugin.mo share/locale/eu/LC_MESSAGES/calligra_shape_spreadsheet.mo share/locale/eu/LC_MESSAGES/calligra_shape_template.mo share/locale/eu/LC_MESSAGES/calligra_shape_text.mo share/locale/eu/LC_MESSAGES/calligra_shape_threed.mo share/locale/eu/LC_MESSAGES/calligra_shape_vector.mo share/locale/eu/LC_MESSAGES/calligra_shape_video.mo share/locale/eu/LC_MESSAGES/calligra_shape_webshape.mo share/locale/eu/LC_MESSAGES/calligra_textediting_autocorrect.mo share/locale/eu/LC_MESSAGES/calligra_textediting_changecase.mo share/locale/eu/LC_MESSAGES/calligra_textediting_spellcheck.mo share/locale/eu/LC_MESSAGES/calligra_textediting_thesaurus.mo share/locale/eu/LC_MESSAGES/calligra_textinlineobject_variables.mo share/locale/eu/LC_MESSAGES/calligrafilters.mo share/locale/eu/LC_MESSAGES/calligralauncher.mo share/locale/eu/LC_MESSAGES/calligrasheets.mo share/locale/eu/LC_MESSAGES/calligrasheets_calendar.mo share/locale/eu/LC_MESSAGES/calligrasheets_solver.mo share/locale/eu/LC_MESSAGES/calligrastage.mo share/locale/eu/LC_MESSAGES/calligrawords.mo share/locale/eu/LC_MESSAGES/karbon.mo share/locale/eu/LC_MESSAGES/kocolorspaces.mo share/locale/eu/LC_MESSAGES/koconverter.mo share/locale/eu/LC_MESSAGES/okularGenerator_odp.mo share/locale/eu/LC_MESSAGES/okularGenerator_odt.mo share/locale/fa/LC_MESSAGES/KarbonFilterEffects.mo share/locale/fa/LC_MESSAGES/KarbonTools.mo share/locale/fa/LC_MESSAGES/calligra.mo share/locale/fa/LC_MESSAGES/calligra_textediting_thesaurus.mo share/locale/fa/LC_MESSAGES/calligrafilters.mo share/locale/fa/LC_MESSAGES/calligrasheets.mo share/locale/fa/LC_MESSAGES/calligrasheets_calendar.mo share/locale/fa/LC_MESSAGES/calligrastage.mo share/locale/fa/LC_MESSAGES/calligrawords.mo share/locale/fa/LC_MESSAGES/karbon.mo share/locale/fa/LC_MESSAGES/koconverter.mo share/locale/fi/LC_MESSAGES/KarbonFilterEffects.mo share/locale/fi/LC_MESSAGES/KarbonTools.mo share/locale/fi/LC_MESSAGES/braindump.mo share/locale/fi/LC_MESSAGES/calligra-defaulttools.mo share/locale/fi/LC_MESSAGES/calligra-dockers.mo share/locale/fi/LC_MESSAGES/calligra-opener.mo share/locale/fi/LC_MESSAGES/calligra.mo share/locale/fi/LC_MESSAGES/calligra_semanticitem_contact.mo share/locale/fi/LC_MESSAGES/calligra_semanticitem_event.mo share/locale/fi/LC_MESSAGES/calligra_semanticitem_location.mo share/locale/fi/LC_MESSAGES/calligra_shape_artistictext.mo share/locale/fi/LC_MESSAGES/calligra_shape_chart.mo share/locale/fi/LC_MESSAGES/calligra_shape_comment.mo share/locale/fi/LC_MESSAGES/calligra_shape_formula.mo share/locale/fi/LC_MESSAGES/calligra_shape_music.mo share/locale/fi/LC_MESSAGES/calligra_shape_paths.mo share/locale/fi/LC_MESSAGES/calligra_shape_picture.mo share/locale/fi/LC_MESSAGES/calligra_shape_plugin.mo share/locale/fi/LC_MESSAGES/calligra_shape_spreadsheet.mo share/locale/fi/LC_MESSAGES/calligra_shape_template.mo share/locale/fi/LC_MESSAGES/calligra_shape_text.mo share/locale/fi/LC_MESSAGES/calligra_shape_threed.mo share/locale/fi/LC_MESSAGES/calligra_shape_vector.mo share/locale/fi/LC_MESSAGES/calligra_shape_video.mo share/locale/fi/LC_MESSAGES/calligra_textediting_autocorrect.mo share/locale/fi/LC_MESSAGES/calligra_textediting_changecase.mo share/locale/fi/LC_MESSAGES/calligra_textediting_spellcheck.mo share/locale/fi/LC_MESSAGES/calligra_textediting_thesaurus.mo share/locale/fi/LC_MESSAGES/calligra_textinlineobject_variables.mo share/locale/fi/LC_MESSAGES/calligrafilters.mo share/locale/fi/LC_MESSAGES/calligralauncher.mo share/locale/fi/LC_MESSAGES/calligrasheets.mo share/locale/fi/LC_MESSAGES/calligrasheets_calendar.mo share/locale/fi/LC_MESSAGES/calligrasheets_solver.mo share/locale/fi/LC_MESSAGES/calligrastage.mo share/locale/fi/LC_MESSAGES/calligrawords.mo share/locale/fi/LC_MESSAGES/karbon.mo share/locale/fi/LC_MESSAGES/kocolorspaces.mo share/locale/fi/LC_MESSAGES/koconverter.mo share/locale/fi/LC_MESSAGES/okularGenerator_odp.mo share/locale/fi/LC_MESSAGES/okularGenerator_odt.mo share/locale/fr/LC_MESSAGES/KarbonFilterEffects.mo share/locale/fr/LC_MESSAGES/KarbonTools.mo share/locale/fr/LC_MESSAGES/braindump.mo share/locale/fr/LC_MESSAGES/calligra-defaulttools.mo share/locale/fr/LC_MESSAGES/calligra-dockers.mo share/locale/fr/LC_MESSAGES/calligra-opener.mo share/locale/fr/LC_MESSAGES/calligra.mo share/locale/fr/LC_MESSAGES/calligra_semanticitem_contact.mo share/locale/fr/LC_MESSAGES/calligra_semanticitem_event.mo share/locale/fr/LC_MESSAGES/calligra_semanticitem_location.mo share/locale/fr/LC_MESSAGES/calligra_shape_artistictext.mo share/locale/fr/LC_MESSAGES/calligra_shape_chart.mo share/locale/fr/LC_MESSAGES/calligra_shape_comment.mo share/locale/fr/LC_MESSAGES/calligra_shape_formula.mo share/locale/fr/LC_MESSAGES/calligra_shape_music.mo share/locale/fr/LC_MESSAGES/calligra_shape_paths.mo share/locale/fr/LC_MESSAGES/calligra_shape_picture.mo share/locale/fr/LC_MESSAGES/calligra_shape_plugin.mo share/locale/fr/LC_MESSAGES/calligra_shape_spreadsheet.mo share/locale/fr/LC_MESSAGES/calligra_shape_template.mo share/locale/fr/LC_MESSAGES/calligra_shape_text.mo share/locale/fr/LC_MESSAGES/calligra_shape_threed.mo share/locale/fr/LC_MESSAGES/calligra_shape_vector.mo share/locale/fr/LC_MESSAGES/calligra_shape_video.mo share/locale/fr/LC_MESSAGES/calligra_shape_webshape.mo share/locale/fr/LC_MESSAGES/calligra_textediting_autocorrect.mo share/locale/fr/LC_MESSAGES/calligra_textediting_changecase.mo share/locale/fr/LC_MESSAGES/calligra_textediting_spellcheck.mo share/locale/fr/LC_MESSAGES/calligra_textediting_thesaurus.mo share/locale/fr/LC_MESSAGES/calligra_textinlineobject_variables.mo share/locale/fr/LC_MESSAGES/calligrafilters.mo share/locale/fr/LC_MESSAGES/calligralauncher.mo share/locale/fr/LC_MESSAGES/calligrasheets.mo share/locale/fr/LC_MESSAGES/calligrasheets_calendar.mo share/locale/fr/LC_MESSAGES/calligrasheets_solver.mo share/locale/fr/LC_MESSAGES/calligrastage.mo share/locale/fr/LC_MESSAGES/calligrawords.mo share/locale/fr/LC_MESSAGES/karbon.mo share/locale/fr/LC_MESSAGES/kocolorspaces.mo share/locale/fr/LC_MESSAGES/koconverter.mo share/locale/fr/LC_MESSAGES/okularGenerator_odp.mo share/locale/fr/LC_MESSAGES/okularGenerator_odt.mo share/locale/fy/LC_MESSAGES/KarbonFilterEffects.mo share/locale/fy/LC_MESSAGES/KarbonTools.mo share/locale/fy/LC_MESSAGES/calligra-dockers.mo share/locale/fy/LC_MESSAGES/calligra.mo share/locale/fy/LC_MESSAGES/calligra_shape_music.mo share/locale/fy/LC_MESSAGES/calligra_shape_paths.mo share/locale/fy/LC_MESSAGES/calligra_shape_picture.mo share/locale/fy/LC_MESSAGES/calligra_shape_text.mo share/locale/fy/LC_MESSAGES/calligra_textediting_autocorrect.mo share/locale/fy/LC_MESSAGES/calligra_textediting_changecase.mo share/locale/fy/LC_MESSAGES/calligra_textediting_spellcheck.mo share/locale/fy/LC_MESSAGES/calligra_textediting_thesaurus.mo share/locale/fy/LC_MESSAGES/calligra_textinlineobject_variables.mo share/locale/fy/LC_MESSAGES/calligrafilters.mo share/locale/fy/LC_MESSAGES/calligrasheets.mo share/locale/fy/LC_MESSAGES/calligrasheets_calendar.mo share/locale/fy/LC_MESSAGES/calligrasheets_solver.mo share/locale/fy/LC_MESSAGES/calligrastage.mo share/locale/fy/LC_MESSAGES/calligrawords.mo share/locale/fy/LC_MESSAGES/karbon.mo share/locale/fy/LC_MESSAGES/koconverter.mo share/locale/ga/LC_MESSAGES/KarbonFilterEffects.mo share/locale/ga/LC_MESSAGES/KarbonTools.mo share/locale/ga/LC_MESSAGES/braindump.mo share/locale/ga/LC_MESSAGES/calligra-defaulttools.mo share/locale/ga/LC_MESSAGES/calligra-dockers.mo share/locale/ga/LC_MESSAGES/calligra-opener.mo share/locale/ga/LC_MESSAGES/calligra.mo share/locale/ga/LC_MESSAGES/calligra_shape_artistictext.mo share/locale/ga/LC_MESSAGES/calligra_shape_chart.mo share/locale/ga/LC_MESSAGES/calligra_shape_comment.mo share/locale/ga/LC_MESSAGES/calligra_shape_formula.mo share/locale/ga/LC_MESSAGES/calligra_shape_music.mo share/locale/ga/LC_MESSAGES/calligra_shape_paths.mo share/locale/ga/LC_MESSAGES/calligra_shape_picture.mo share/locale/ga/LC_MESSAGES/calligra_shape_plugin.mo share/locale/ga/LC_MESSAGES/calligra_shape_spreadsheet.mo share/locale/ga/LC_MESSAGES/calligra_shape_template.mo share/locale/ga/LC_MESSAGES/calligra_shape_text.mo share/locale/ga/LC_MESSAGES/calligra_shape_threed.mo share/locale/ga/LC_MESSAGES/calligra_shape_vector.mo share/locale/ga/LC_MESSAGES/calligra_shape_video.mo share/locale/ga/LC_MESSAGES/calligra_textediting_autocorrect.mo share/locale/ga/LC_MESSAGES/calligra_textediting_changecase.mo share/locale/ga/LC_MESSAGES/calligra_textediting_spellcheck.mo share/locale/ga/LC_MESSAGES/calligra_textediting_thesaurus.mo share/locale/ga/LC_MESSAGES/calligra_textinlineobject_variables.mo share/locale/ga/LC_MESSAGES/calligrafilters.mo share/locale/ga/LC_MESSAGES/calligrasheets.mo share/locale/ga/LC_MESSAGES/calligrasheets_calendar.mo share/locale/ga/LC_MESSAGES/calligrasheets_solver.mo share/locale/ga/LC_MESSAGES/calligrastage.mo share/locale/ga/LC_MESSAGES/calligrawords.mo share/locale/ga/LC_MESSAGES/karbon.mo share/locale/ga/LC_MESSAGES/kocolorspaces.mo share/locale/ga/LC_MESSAGES/koconverter.mo share/locale/ga/LC_MESSAGES/okularGenerator_odp.mo share/locale/gl/LC_MESSAGES/KarbonFilterEffects.mo share/locale/gl/LC_MESSAGES/KarbonTools.mo share/locale/gl/LC_MESSAGES/braindump.mo share/locale/gl/LC_MESSAGES/calligra-defaulttools.mo share/locale/gl/LC_MESSAGES/calligra-dockers.mo share/locale/gl/LC_MESSAGES/calligra-opener.mo share/locale/gl/LC_MESSAGES/calligra.mo share/locale/gl/LC_MESSAGES/calligra_semanticitem_contact.mo share/locale/gl/LC_MESSAGES/calligra_semanticitem_event.mo share/locale/gl/LC_MESSAGES/calligra_semanticitem_location.mo share/locale/gl/LC_MESSAGES/calligra_shape_artistictext.mo share/locale/gl/LC_MESSAGES/calligra_shape_chart.mo share/locale/gl/LC_MESSAGES/calligra_shape_comment.mo share/locale/gl/LC_MESSAGES/calligra_shape_formula.mo share/locale/gl/LC_MESSAGES/calligra_shape_music.mo share/locale/gl/LC_MESSAGES/calligra_shape_paths.mo share/locale/gl/LC_MESSAGES/calligra_shape_picture.mo share/locale/gl/LC_MESSAGES/calligra_shape_plugin.mo share/locale/gl/LC_MESSAGES/calligra_shape_spreadsheet.mo share/locale/gl/LC_MESSAGES/calligra_shape_template.mo share/locale/gl/LC_MESSAGES/calligra_shape_text.mo share/locale/gl/LC_MESSAGES/calligra_shape_threed.mo share/locale/gl/LC_MESSAGES/calligra_shape_vector.mo share/locale/gl/LC_MESSAGES/calligra_shape_video.mo share/locale/gl/LC_MESSAGES/calligra_shape_webshape.mo share/locale/gl/LC_MESSAGES/calligra_textediting_autocorrect.mo share/locale/gl/LC_MESSAGES/calligra_textediting_changecase.mo share/locale/gl/LC_MESSAGES/calligra_textediting_spellcheck.mo share/locale/gl/LC_MESSAGES/calligra_textediting_thesaurus.mo share/locale/gl/LC_MESSAGES/calligra_textinlineobject_variables.mo share/locale/gl/LC_MESSAGES/calligrafilters.mo share/locale/gl/LC_MESSAGES/calligralauncher.mo share/locale/gl/LC_MESSAGES/calligrasheets.mo share/locale/gl/LC_MESSAGES/calligrasheets_calendar.mo share/locale/gl/LC_MESSAGES/calligrasheets_solver.mo share/locale/gl/LC_MESSAGES/calligrastage.mo share/locale/gl/LC_MESSAGES/calligrawords.mo share/locale/gl/LC_MESSAGES/karbon.mo share/locale/gl/LC_MESSAGES/kocolorspaces.mo share/locale/gl/LC_MESSAGES/koconverter.mo share/locale/gl/LC_MESSAGES/okularGenerator_odp.mo share/locale/gl/LC_MESSAGES/okularGenerator_odt.mo share/locale/he/LC_MESSAGES/KarbonFilterEffects.mo share/locale/he/LC_MESSAGES/KarbonTools.mo share/locale/he/LC_MESSAGES/braindump.mo share/locale/he/LC_MESSAGES/calligra-defaulttools.mo share/locale/he/LC_MESSAGES/calligra-dockers.mo share/locale/he/LC_MESSAGES/calligra-opener.mo share/locale/he/LC_MESSAGES/calligra.mo share/locale/he/LC_MESSAGES/calligra_semanticitem_contact.mo share/locale/he/LC_MESSAGES/calligra_semanticitem_event.mo share/locale/he/LC_MESSAGES/calligra_semanticitem_location.mo share/locale/he/LC_MESSAGES/calligra_shape_artistictext.mo share/locale/he/LC_MESSAGES/calligra_shape_chart.mo share/locale/he/LC_MESSAGES/calligra_shape_comment.mo share/locale/he/LC_MESSAGES/calligra_shape_formula.mo share/locale/he/LC_MESSAGES/calligra_shape_paths.mo share/locale/he/LC_MESSAGES/calligra_shape_picture.mo share/locale/he/LC_MESSAGES/calligra_shape_plugin.mo share/locale/he/LC_MESSAGES/calligra_shape_spreadsheet.mo share/locale/he/LC_MESSAGES/calligra_shape_template.mo share/locale/he/LC_MESSAGES/calligra_shape_threed.mo share/locale/he/LC_MESSAGES/calligra_shape_vector.mo share/locale/he/LC_MESSAGES/calligra_shape_video.mo share/locale/he/LC_MESSAGES/calligra_shape_webshape.mo share/locale/he/LC_MESSAGES/calligra_textediting_autocorrect.mo share/locale/he/LC_MESSAGES/calligra_textediting_changecase.mo share/locale/he/LC_MESSAGES/calligra_textediting_spellcheck.mo share/locale/he/LC_MESSAGES/calligra_textediting_thesaurus.mo share/locale/he/LC_MESSAGES/calligra_textinlineobject_variables.mo share/locale/he/LC_MESSAGES/calligrafilters.mo share/locale/he/LC_MESSAGES/calligralauncher.mo share/locale/he/LC_MESSAGES/calligrasheets.mo share/locale/he/LC_MESSAGES/calligrasheets_calendar.mo share/locale/he/LC_MESSAGES/calligrasheets_solver.mo share/locale/he/LC_MESSAGES/calligrastage.mo share/locale/he/LC_MESSAGES/calligrawords.mo share/locale/he/LC_MESSAGES/karbon.mo share/locale/he/LC_MESSAGES/kocolorspaces.mo share/locale/he/LC_MESSAGES/koconverter.mo share/locale/he/LC_MESSAGES/okularGenerator_odp.mo share/locale/he/LC_MESSAGES/okularGenerator_odt.mo share/locale/hi/LC_MESSAGES/KarbonFilterEffects.mo share/locale/hi/LC_MESSAGES/KarbonTools.mo share/locale/hi/LC_MESSAGES/braindump.mo share/locale/hi/LC_MESSAGES/calligra-defaulttools.mo share/locale/hi/LC_MESSAGES/calligra-dockers.mo share/locale/hi/LC_MESSAGES/calligra-opener.mo share/locale/hi/LC_MESSAGES/calligra.mo share/locale/hi/LC_MESSAGES/calligra_semanticitem_contact.mo share/locale/hi/LC_MESSAGES/calligra_semanticitem_event.mo share/locale/hi/LC_MESSAGES/calligra_semanticitem_location.mo share/locale/hi/LC_MESSAGES/calligra_shape_artistictext.mo share/locale/hi/LC_MESSAGES/calligra_shape_chart.mo share/locale/hi/LC_MESSAGES/calligra_shape_comment.mo share/locale/hi/LC_MESSAGES/calligra_shape_formula.mo share/locale/hi/LC_MESSAGES/calligra_shape_music.mo share/locale/hi/LC_MESSAGES/calligra_shape_paths.mo share/locale/hi/LC_MESSAGES/calligra_shape_picture.mo share/locale/hi/LC_MESSAGES/calligra_shape_plugin.mo share/locale/hi/LC_MESSAGES/calligra_shape_spreadsheet.mo share/locale/hi/LC_MESSAGES/calligra_shape_template.mo share/locale/hi/LC_MESSAGES/calligra_shape_text.mo share/locale/hi/LC_MESSAGES/calligra_shape_threed.mo share/locale/hi/LC_MESSAGES/calligra_shape_vector.mo share/locale/hi/LC_MESSAGES/calligra_shape_video.mo share/locale/hi/LC_MESSAGES/calligra_shape_webshape.mo share/locale/hi/LC_MESSAGES/calligra_textediting_autocorrect.mo share/locale/hi/LC_MESSAGES/calligra_textediting_changecase.mo share/locale/hi/LC_MESSAGES/calligra_textediting_spellcheck.mo share/locale/hi/LC_MESSAGES/calligra_textediting_thesaurus.mo share/locale/hi/LC_MESSAGES/calligra_textinlineobject_variables.mo share/locale/hi/LC_MESSAGES/calligrafilters.mo share/locale/hi/LC_MESSAGES/calligralauncher.mo share/locale/hi/LC_MESSAGES/calligrasheets.mo share/locale/hi/LC_MESSAGES/calligrasheets_calendar.mo share/locale/hi/LC_MESSAGES/calligrasheets_solver.mo share/locale/hi/LC_MESSAGES/calligrastage.mo share/locale/hi/LC_MESSAGES/calligrawords.mo share/locale/hi/LC_MESSAGES/karbon.mo share/locale/hi/LC_MESSAGES/kocolorspaces.mo share/locale/hi/LC_MESSAGES/koconverter.mo share/locale/hi/LC_MESSAGES/okularGenerator_odp.mo share/locale/hi/LC_MESSAGES/okularGenerator_odt.mo share/locale/hne/LC_MESSAGES/KarbonFilterEffects.mo share/locale/hne/LC_MESSAGES/KarbonTools.mo share/locale/hne/LC_MESSAGES/calligra-dockers.mo share/locale/hne/LC_MESSAGES/calligra.mo share/locale/hne/LC_MESSAGES/calligra_shape_music.mo share/locale/hne/LC_MESSAGES/calligra_shape_paths.mo share/locale/hne/LC_MESSAGES/calligra_shape_picture.mo share/locale/hne/LC_MESSAGES/calligra_shape_text.mo share/locale/hne/LC_MESSAGES/calligra_textediting_autocorrect.mo share/locale/hne/LC_MESSAGES/calligra_textediting_changecase.mo share/locale/hne/LC_MESSAGES/calligra_textediting_spellcheck.mo share/locale/hne/LC_MESSAGES/calligra_textediting_thesaurus.mo share/locale/hne/LC_MESSAGES/calligra_textinlineobject_variables.mo share/locale/hne/LC_MESSAGES/calligrafilters.mo share/locale/hne/LC_MESSAGES/calligrasheets.mo share/locale/hne/LC_MESSAGES/calligrasheets_solver.mo share/locale/hne/LC_MESSAGES/calligrastage.mo share/locale/hne/LC_MESSAGES/calligrawords.mo share/locale/hne/LC_MESSAGES/karbon.mo share/locale/hne/LC_MESSAGES/koconverter.mo share/locale/hr/LC_MESSAGES/KarbonFilterEffects.mo share/locale/hr/LC_MESSAGES/KarbonTools.mo share/locale/hr/LC_MESSAGES/calligra.mo share/locale/hr/LC_MESSAGES/calligra_shape_artistictext.mo share/locale/hr/LC_MESSAGES/calligra_textediting_autocorrect.mo share/locale/hr/LC_MESSAGES/calligra_textediting_thesaurus.mo share/locale/hr/LC_MESSAGES/calligrafilters.mo share/locale/hr/LC_MESSAGES/calligrasheets.mo share/locale/hr/LC_MESSAGES/calligrastage.mo share/locale/hr/LC_MESSAGES/calligrawords.mo share/locale/hr/LC_MESSAGES/karbon.mo share/locale/hr/LC_MESSAGES/koconverter.mo share/locale/hsb/LC_MESSAGES/calligra.mo share/locale/hsb/LC_MESSAGES/calligra_textediting_thesaurus.mo share/locale/hsb/LC_MESSAGES/calligrafilters.mo share/locale/hsb/LC_MESSAGES/calligrastage.mo share/locale/hsb/LC_MESSAGES/calligrawords.mo share/locale/hu/LC_MESSAGES/KarbonFilterEffects.mo share/locale/hu/LC_MESSAGES/KarbonTools.mo share/locale/hu/LC_MESSAGES/braindump.mo share/locale/hu/LC_MESSAGES/calligra-defaulttools.mo share/locale/hu/LC_MESSAGES/calligra-dockers.mo share/locale/hu/LC_MESSAGES/calligra-opener.mo share/locale/hu/LC_MESSAGES/calligra.mo share/locale/hu/LC_MESSAGES/calligra_semanticitem_contact.mo share/locale/hu/LC_MESSAGES/calligra_semanticitem_event.mo share/locale/hu/LC_MESSAGES/calligra_semanticitem_location.mo share/locale/hu/LC_MESSAGES/calligra_shape_artistictext.mo share/locale/hu/LC_MESSAGES/calligra_shape_chart.mo share/locale/hu/LC_MESSAGES/calligra_shape_comment.mo share/locale/hu/LC_MESSAGES/calligra_shape_formula.mo share/locale/hu/LC_MESSAGES/calligra_shape_music.mo share/locale/hu/LC_MESSAGES/calligra_shape_paths.mo share/locale/hu/LC_MESSAGES/calligra_shape_picture.mo share/locale/hu/LC_MESSAGES/calligra_shape_plugin.mo share/locale/hu/LC_MESSAGES/calligra_shape_spreadsheet.mo share/locale/hu/LC_MESSAGES/calligra_shape_template.mo share/locale/hu/LC_MESSAGES/calligra_shape_text.mo share/locale/hu/LC_MESSAGES/calligra_shape_threed.mo share/locale/hu/LC_MESSAGES/calligra_shape_vector.mo share/locale/hu/LC_MESSAGES/calligra_shape_video.mo share/locale/hu/LC_MESSAGES/calligra_textediting_autocorrect.mo share/locale/hu/LC_MESSAGES/calligra_textediting_changecase.mo share/locale/hu/LC_MESSAGES/calligra_textediting_spellcheck.mo share/locale/hu/LC_MESSAGES/calligra_textediting_thesaurus.mo share/locale/hu/LC_MESSAGES/calligra_textinlineobject_variables.mo share/locale/hu/LC_MESSAGES/calligrafilters.mo share/locale/hu/LC_MESSAGES/calligrasheets.mo share/locale/hu/LC_MESSAGES/calligrasheets_calendar.mo share/locale/hu/LC_MESSAGES/calligrasheets_solver.mo share/locale/hu/LC_MESSAGES/calligrastage.mo share/locale/hu/LC_MESSAGES/calligrawords.mo share/locale/hu/LC_MESSAGES/karbon.mo share/locale/hu/LC_MESSAGES/kocolorspaces.mo share/locale/hu/LC_MESSAGES/koconverter.mo share/locale/hu/LC_MESSAGES/okularGenerator_odp.mo share/locale/hu/LC_MESSAGES/okularGenerator_odt.mo share/locale/ia/LC_MESSAGES/KarbonFilterEffects.mo share/locale/ia/LC_MESSAGES/KarbonTools.mo share/locale/ia/LC_MESSAGES/braindump.mo share/locale/ia/LC_MESSAGES/calligra-defaulttools.mo share/locale/ia/LC_MESSAGES/calligra-dockers.mo share/locale/ia/LC_MESSAGES/calligra-opener.mo share/locale/ia/LC_MESSAGES/calligra.mo share/locale/ia/LC_MESSAGES/calligra_semanticitem_contact.mo share/locale/ia/LC_MESSAGES/calligra_semanticitem_event.mo share/locale/ia/LC_MESSAGES/calligra_semanticitem_location.mo share/locale/ia/LC_MESSAGES/calligra_shape_artistictext.mo share/locale/ia/LC_MESSAGES/calligra_shape_chart.mo share/locale/ia/LC_MESSAGES/calligra_shape_comment.mo share/locale/ia/LC_MESSAGES/calligra_shape_formula.mo share/locale/ia/LC_MESSAGES/calligra_shape_music.mo share/locale/ia/LC_MESSAGES/calligra_shape_paths.mo share/locale/ia/LC_MESSAGES/calligra_shape_picture.mo share/locale/ia/LC_MESSAGES/calligra_shape_plugin.mo share/locale/ia/LC_MESSAGES/calligra_shape_spreadsheet.mo share/locale/ia/LC_MESSAGES/calligra_shape_template.mo share/locale/ia/LC_MESSAGES/calligra_shape_text.mo share/locale/ia/LC_MESSAGES/calligra_shape_threed.mo share/locale/ia/LC_MESSAGES/calligra_shape_vector.mo share/locale/ia/LC_MESSAGES/calligra_shape_video.mo share/locale/ia/LC_MESSAGES/calligra_textediting_autocorrect.mo share/locale/ia/LC_MESSAGES/calligra_textediting_changecase.mo share/locale/ia/LC_MESSAGES/calligra_textediting_spellcheck.mo share/locale/ia/LC_MESSAGES/calligra_textediting_thesaurus.mo share/locale/ia/LC_MESSAGES/calligra_textinlineobject_variables.mo share/locale/ia/LC_MESSAGES/calligrafilters.mo share/locale/ia/LC_MESSAGES/calligrasheets.mo share/locale/ia/LC_MESSAGES/calligrasheets_calendar.mo share/locale/ia/LC_MESSAGES/calligrasheets_solver.mo share/locale/ia/LC_MESSAGES/calligrastage.mo share/locale/ia/LC_MESSAGES/calligrawords.mo share/locale/ia/LC_MESSAGES/karbon.mo share/locale/ia/LC_MESSAGES/kocolorspaces.mo share/locale/ia/LC_MESSAGES/koconverter.mo share/locale/ia/LC_MESSAGES/okularGenerator_odp.mo share/locale/ia/LC_MESSAGES/okularGenerator_odt.mo share/locale/id/LC_MESSAGES/KarbonFilterEffects.mo share/locale/id/LC_MESSAGES/KarbonTools.mo share/locale/id/LC_MESSAGES/braindump.mo share/locale/id/LC_MESSAGES/calligra-defaulttools.mo share/locale/id/LC_MESSAGES/calligra-dockers.mo share/locale/id/LC_MESSAGES/calligra-opener.mo share/locale/id/LC_MESSAGES/calligra.mo share/locale/id/LC_MESSAGES/calligra_semanticitem_contact.mo share/locale/id/LC_MESSAGES/calligra_semanticitem_event.mo share/locale/id/LC_MESSAGES/calligra_semanticitem_location.mo share/locale/id/LC_MESSAGES/calligra_shape_artistictext.mo share/locale/id/LC_MESSAGES/calligra_shape_chart.mo share/locale/id/LC_MESSAGES/calligra_shape_comment.mo share/locale/id/LC_MESSAGES/calligra_shape_formula.mo share/locale/id/LC_MESSAGES/calligra_shape_music.mo share/locale/id/LC_MESSAGES/calligra_shape_paths.mo share/locale/id/LC_MESSAGES/calligra_shape_picture.mo share/locale/id/LC_MESSAGES/calligra_shape_plugin.mo share/locale/id/LC_MESSAGES/calligra_shape_spreadsheet.mo share/locale/id/LC_MESSAGES/calligra_shape_template.mo share/locale/id/LC_MESSAGES/calligra_shape_text.mo share/locale/id/LC_MESSAGES/calligra_shape_threed.mo share/locale/id/LC_MESSAGES/calligra_shape_vector.mo share/locale/id/LC_MESSAGES/calligra_shape_video.mo share/locale/id/LC_MESSAGES/calligra_textediting_autocorrect.mo share/locale/id/LC_MESSAGES/calligra_textediting_changecase.mo share/locale/id/LC_MESSAGES/calligra_textediting_spellcheck.mo share/locale/id/LC_MESSAGES/calligra_textediting_thesaurus.mo share/locale/id/LC_MESSAGES/calligra_textinlineobject_variables.mo share/locale/id/LC_MESSAGES/calligrafilters.mo share/locale/id/LC_MESSAGES/calligrasheets.mo share/locale/id/LC_MESSAGES/calligrasheets_calendar.mo share/locale/id/LC_MESSAGES/calligrasheets_solver.mo share/locale/id/LC_MESSAGES/calligrastage.mo share/locale/id/LC_MESSAGES/calligrawords.mo share/locale/id/LC_MESSAGES/karbon.mo share/locale/id/LC_MESSAGES/kocolorspaces.mo share/locale/id/LC_MESSAGES/koconverter.mo share/locale/id/LC_MESSAGES/okularGenerator_odp.mo share/locale/id/LC_MESSAGES/okularGenerator_odt.mo share/locale/is/LC_MESSAGES/calligra.mo share/locale/is/LC_MESSAGES/calligra_textediting_thesaurus.mo share/locale/is/LC_MESSAGES/calligrafilters.mo share/locale/is/LC_MESSAGES/calligrasheets.mo share/locale/is/LC_MESSAGES/calligrastage.mo share/locale/is/LC_MESSAGES/calligrawords.mo share/locale/is/LC_MESSAGES/koconverter.mo share/locale/it/LC_MESSAGES/KarbonFilterEffects.mo share/locale/it/LC_MESSAGES/KarbonTools.mo share/locale/it/LC_MESSAGES/braindump.mo share/locale/it/LC_MESSAGES/calligra-defaulttools.mo share/locale/it/LC_MESSAGES/calligra-dockers.mo share/locale/it/LC_MESSAGES/calligra-opener.mo share/locale/it/LC_MESSAGES/calligra.mo share/locale/it/LC_MESSAGES/calligra_semanticitem_contact.mo share/locale/it/LC_MESSAGES/calligra_semanticitem_event.mo share/locale/it/LC_MESSAGES/calligra_semanticitem_location.mo share/locale/it/LC_MESSAGES/calligra_shape_artistictext.mo share/locale/it/LC_MESSAGES/calligra_shape_chart.mo share/locale/it/LC_MESSAGES/calligra_shape_comment.mo share/locale/it/LC_MESSAGES/calligra_shape_formula.mo share/locale/it/LC_MESSAGES/calligra_shape_music.mo share/locale/it/LC_MESSAGES/calligra_shape_paths.mo share/locale/it/LC_MESSAGES/calligra_shape_picture.mo share/locale/it/LC_MESSAGES/calligra_shape_plugin.mo share/locale/it/LC_MESSAGES/calligra_shape_spreadsheet.mo share/locale/it/LC_MESSAGES/calligra_shape_template.mo share/locale/it/LC_MESSAGES/calligra_shape_text.mo share/locale/it/LC_MESSAGES/calligra_shape_threed.mo share/locale/it/LC_MESSAGES/calligra_shape_vector.mo share/locale/it/LC_MESSAGES/calligra_shape_video.mo share/locale/it/LC_MESSAGES/calligra_shape_webshape.mo share/locale/it/LC_MESSAGES/calligra_textediting_autocorrect.mo share/locale/it/LC_MESSAGES/calligra_textediting_changecase.mo share/locale/it/LC_MESSAGES/calligra_textediting_spellcheck.mo share/locale/it/LC_MESSAGES/calligra_textediting_thesaurus.mo share/locale/it/LC_MESSAGES/calligra_textinlineobject_variables.mo share/locale/it/LC_MESSAGES/calligrafilters.mo share/locale/it/LC_MESSAGES/calligralauncher.mo share/locale/it/LC_MESSAGES/calligrasheets.mo share/locale/it/LC_MESSAGES/calligrasheets_calendar.mo share/locale/it/LC_MESSAGES/calligrasheets_solver.mo share/locale/it/LC_MESSAGES/calligrastage.mo share/locale/it/LC_MESSAGES/calligrawords.mo share/locale/it/LC_MESSAGES/karbon.mo share/locale/it/LC_MESSAGES/kocolorspaces.mo share/locale/it/LC_MESSAGES/koconverter.mo share/locale/it/LC_MESSAGES/okularGenerator_odp.mo share/locale/it/LC_MESSAGES/okularGenerator_odt.mo share/locale/ja/LC_MESSAGES/KarbonFilterEffects.mo share/locale/ja/LC_MESSAGES/KarbonTools.mo share/locale/ja/LC_MESSAGES/braindump.mo share/locale/ja/LC_MESSAGES/calligra-defaulttools.mo share/locale/ja/LC_MESSAGES/calligra-dockers.mo share/locale/ja/LC_MESSAGES/calligra-opener.mo share/locale/ja/LC_MESSAGES/calligra.mo share/locale/ja/LC_MESSAGES/calligra_semanticitem_contact.mo share/locale/ja/LC_MESSAGES/calligra_semanticitem_event.mo share/locale/ja/LC_MESSAGES/calligra_semanticitem_location.mo share/locale/ja/LC_MESSAGES/calligra_shape_artistictext.mo share/locale/ja/LC_MESSAGES/calligra_shape_chart.mo share/locale/ja/LC_MESSAGES/calligra_shape_comment.mo share/locale/ja/LC_MESSAGES/calligra_shape_formula.mo share/locale/ja/LC_MESSAGES/calligra_shape_music.mo share/locale/ja/LC_MESSAGES/calligra_shape_paths.mo share/locale/ja/LC_MESSAGES/calligra_shape_picture.mo share/locale/ja/LC_MESSAGES/calligra_shape_plugin.mo share/locale/ja/LC_MESSAGES/calligra_shape_spreadsheet.mo share/locale/ja/LC_MESSAGES/calligra_shape_template.mo share/locale/ja/LC_MESSAGES/calligra_shape_text.mo share/locale/ja/LC_MESSAGES/calligra_shape_threed.mo share/locale/ja/LC_MESSAGES/calligra_shape_vector.mo share/locale/ja/LC_MESSAGES/calligra_shape_video.mo share/locale/ja/LC_MESSAGES/calligra_textediting_autocorrect.mo share/locale/ja/LC_MESSAGES/calligra_textediting_changecase.mo share/locale/ja/LC_MESSAGES/calligra_textediting_spellcheck.mo share/locale/ja/LC_MESSAGES/calligra_textediting_thesaurus.mo share/locale/ja/LC_MESSAGES/calligra_textinlineobject_variables.mo share/locale/ja/LC_MESSAGES/calligrafilters.mo share/locale/ja/LC_MESSAGES/calligrasheets.mo share/locale/ja/LC_MESSAGES/calligrasheets_calendar.mo share/locale/ja/LC_MESSAGES/calligrasheets_solver.mo share/locale/ja/LC_MESSAGES/calligrastage.mo share/locale/ja/LC_MESSAGES/calligrawords.mo share/locale/ja/LC_MESSAGES/karbon.mo share/locale/ja/LC_MESSAGES/kocolorspaces.mo share/locale/ja/LC_MESSAGES/koconverter.mo share/locale/ja/LC_MESSAGES/okularGenerator_odp.mo share/locale/ja/LC_MESSAGES/okularGenerator_odt.mo share/locale/ka/LC_MESSAGES/KarbonFilterEffects.mo share/locale/ka/LC_MESSAGES/KarbonTools.mo share/locale/ka/LC_MESSAGES/braindump.mo share/locale/ka/LC_MESSAGES/calligra-defaulttools.mo share/locale/ka/LC_MESSAGES/calligra-dockers.mo share/locale/ka/LC_MESSAGES/calligra-opener.mo share/locale/ka/LC_MESSAGES/calligra.mo share/locale/ka/LC_MESSAGES/calligra_semanticitem_contact.mo share/locale/ka/LC_MESSAGES/calligra_semanticitem_event.mo share/locale/ka/LC_MESSAGES/calligra_semanticitem_location.mo share/locale/ka/LC_MESSAGES/calligra_shape_artistictext.mo share/locale/ka/LC_MESSAGES/calligra_shape_chart.mo share/locale/ka/LC_MESSAGES/calligra_shape_comment.mo share/locale/ka/LC_MESSAGES/calligra_shape_formula.mo share/locale/ka/LC_MESSAGES/calligra_shape_music.mo share/locale/ka/LC_MESSAGES/calligra_shape_paths.mo share/locale/ka/LC_MESSAGES/calligra_shape_picture.mo share/locale/ka/LC_MESSAGES/calligra_shape_plugin.mo share/locale/ka/LC_MESSAGES/calligra_shape_spreadsheet.mo share/locale/ka/LC_MESSAGES/calligra_shape_template.mo share/locale/ka/LC_MESSAGES/calligra_shape_text.mo share/locale/ka/LC_MESSAGES/calligra_shape_threed.mo share/locale/ka/LC_MESSAGES/calligra_shape_vector.mo share/locale/ka/LC_MESSAGES/calligra_shape_video.mo share/locale/ka/LC_MESSAGES/calligra_shape_webshape.mo share/locale/ka/LC_MESSAGES/calligra_textediting_autocorrect.mo share/locale/ka/LC_MESSAGES/calligra_textediting_changecase.mo share/locale/ka/LC_MESSAGES/calligra_textediting_spellcheck.mo share/locale/ka/LC_MESSAGES/calligra_textediting_thesaurus.mo share/locale/ka/LC_MESSAGES/calligra_textinlineobject_variables.mo share/locale/ka/LC_MESSAGES/calligrafilters.mo share/locale/ka/LC_MESSAGES/calligralauncher.mo share/locale/ka/LC_MESSAGES/calligrasheets.mo share/locale/ka/LC_MESSAGES/calligrasheets_calendar.mo share/locale/ka/LC_MESSAGES/calligrasheets_solver.mo share/locale/ka/LC_MESSAGES/calligrastage.mo share/locale/ka/LC_MESSAGES/calligrawords.mo share/locale/ka/LC_MESSAGES/karbon.mo share/locale/ka/LC_MESSAGES/kocolorspaces.mo share/locale/ka/LC_MESSAGES/koconverter.mo share/locale/ka/LC_MESSAGES/okularGenerator_odp.mo share/locale/ka/LC_MESSAGES/okularGenerator_odt.mo share/locale/kk/LC_MESSAGES/KarbonFilterEffects.mo share/locale/kk/LC_MESSAGES/KarbonTools.mo share/locale/kk/LC_MESSAGES/braindump.mo share/locale/kk/LC_MESSAGES/calligra-defaulttools.mo share/locale/kk/LC_MESSAGES/calligra-dockers.mo share/locale/kk/LC_MESSAGES/calligra-opener.mo share/locale/kk/LC_MESSAGES/calligra.mo share/locale/kk/LC_MESSAGES/calligra_semanticitem_contact.mo share/locale/kk/LC_MESSAGES/calligra_semanticitem_event.mo share/locale/kk/LC_MESSAGES/calligra_semanticitem_location.mo share/locale/kk/LC_MESSAGES/calligra_shape_artistictext.mo share/locale/kk/LC_MESSAGES/calligra_shape_chart.mo share/locale/kk/LC_MESSAGES/calligra_shape_comment.mo share/locale/kk/LC_MESSAGES/calligra_shape_formula.mo share/locale/kk/LC_MESSAGES/calligra_shape_music.mo share/locale/kk/LC_MESSAGES/calligra_shape_paths.mo share/locale/kk/LC_MESSAGES/calligra_shape_picture.mo share/locale/kk/LC_MESSAGES/calligra_shape_plugin.mo share/locale/kk/LC_MESSAGES/calligra_shape_spreadsheet.mo share/locale/kk/LC_MESSAGES/calligra_shape_template.mo share/locale/kk/LC_MESSAGES/calligra_shape_text.mo share/locale/kk/LC_MESSAGES/calligra_shape_threed.mo share/locale/kk/LC_MESSAGES/calligra_shape_vector.mo share/locale/kk/LC_MESSAGES/calligra_shape_video.mo share/locale/kk/LC_MESSAGES/calligra_textediting_autocorrect.mo share/locale/kk/LC_MESSAGES/calligra_textediting_changecase.mo share/locale/kk/LC_MESSAGES/calligra_textediting_spellcheck.mo share/locale/kk/LC_MESSAGES/calligra_textediting_thesaurus.mo share/locale/kk/LC_MESSAGES/calligra_textinlineobject_variables.mo share/locale/kk/LC_MESSAGES/calligrafilters.mo share/locale/kk/LC_MESSAGES/calligrasheets.mo share/locale/kk/LC_MESSAGES/calligrasheets_calendar.mo share/locale/kk/LC_MESSAGES/calligrasheets_solver.mo share/locale/kk/LC_MESSAGES/calligrastage.mo share/locale/kk/LC_MESSAGES/calligrawords.mo share/locale/kk/LC_MESSAGES/karbon.mo share/locale/kk/LC_MESSAGES/kocolorspaces.mo share/locale/kk/LC_MESSAGES/koconverter.mo share/locale/kk/LC_MESSAGES/okularGenerator_odp.mo share/locale/km/LC_MESSAGES/koconverter.mo share/locale/ko/LC_MESSAGES/KarbonFilterEffects.mo share/locale/ko/LC_MESSAGES/KarbonTools.mo share/locale/ko/LC_MESSAGES/braindump.mo share/locale/ko/LC_MESSAGES/calligra-defaulttools.mo share/locale/ko/LC_MESSAGES/calligra-dockers.mo share/locale/ko/LC_MESSAGES/calligra-opener.mo share/locale/ko/LC_MESSAGES/calligra.mo share/locale/ko/LC_MESSAGES/calligra_semanticitem_contact.mo share/locale/ko/LC_MESSAGES/calligra_semanticitem_event.mo share/locale/ko/LC_MESSAGES/calligra_semanticitem_location.mo share/locale/ko/LC_MESSAGES/calligra_shape_artistictext.mo share/locale/ko/LC_MESSAGES/calligra_shape_chart.mo share/locale/ko/LC_MESSAGES/calligra_shape_comment.mo share/locale/ko/LC_MESSAGES/calligra_shape_formula.mo share/locale/ko/LC_MESSAGES/calligra_shape_music.mo share/locale/ko/LC_MESSAGES/calligra_shape_paths.mo share/locale/ko/LC_MESSAGES/calligra_shape_picture.mo share/locale/ko/LC_MESSAGES/calligra_shape_plugin.mo share/locale/ko/LC_MESSAGES/calligra_shape_spreadsheet.mo share/locale/ko/LC_MESSAGES/calligra_shape_template.mo share/locale/ko/LC_MESSAGES/calligra_shape_text.mo share/locale/ko/LC_MESSAGES/calligra_shape_threed.mo share/locale/ko/LC_MESSAGES/calligra_shape_vector.mo share/locale/ko/LC_MESSAGES/calligra_shape_video.mo share/locale/ko/LC_MESSAGES/calligra_textediting_autocorrect.mo share/locale/ko/LC_MESSAGES/calligra_textediting_changecase.mo share/locale/ko/LC_MESSAGES/calligra_textediting_spellcheck.mo share/locale/ko/LC_MESSAGES/calligra_textediting_thesaurus.mo share/locale/ko/LC_MESSAGES/calligra_textinlineobject_variables.mo share/locale/ko/LC_MESSAGES/calligrafilters.mo share/locale/ko/LC_MESSAGES/calligrasheets.mo share/locale/ko/LC_MESSAGES/calligrasheets_calendar.mo share/locale/ko/LC_MESSAGES/calligrasheets_solver.mo share/locale/ko/LC_MESSAGES/calligrastage.mo share/locale/ko/LC_MESSAGES/calligrawords.mo share/locale/ko/LC_MESSAGES/karbon.mo share/locale/ko/LC_MESSAGES/kocolorspaces.mo share/locale/ko/LC_MESSAGES/koconverter.mo share/locale/ko/LC_MESSAGES/okularGenerator_odp.mo share/locale/ko/LC_MESSAGES/okularGenerator_odt.mo share/locale/ku/LC_MESSAGES/calligra.mo share/locale/ku/LC_MESSAGES/calligrawords.mo share/locale/lt/LC_MESSAGES/KarbonFilterEffects.mo share/locale/lt/LC_MESSAGES/KarbonTools.mo share/locale/lt/LC_MESSAGES/braindump.mo share/locale/lt/LC_MESSAGES/calligra-defaulttools.mo share/locale/lt/LC_MESSAGES/calligra-dockers.mo share/locale/lt/LC_MESSAGES/calligra-opener.mo share/locale/lt/LC_MESSAGES/calligra.mo share/locale/lt/LC_MESSAGES/calligra_semanticitem_contact.mo share/locale/lt/LC_MESSAGES/calligra_semanticitem_event.mo share/locale/lt/LC_MESSAGES/calligra_semanticitem_location.mo share/locale/lt/LC_MESSAGES/calligra_shape_artistictext.mo share/locale/lt/LC_MESSAGES/calligra_shape_chart.mo share/locale/lt/LC_MESSAGES/calligra_shape_comment.mo share/locale/lt/LC_MESSAGES/calligra_shape_formula.mo share/locale/lt/LC_MESSAGES/calligra_shape_music.mo share/locale/lt/LC_MESSAGES/calligra_shape_paths.mo share/locale/lt/LC_MESSAGES/calligra_shape_picture.mo share/locale/lt/LC_MESSAGES/calligra_shape_plugin.mo share/locale/lt/LC_MESSAGES/calligra_shape_spreadsheet.mo share/locale/lt/LC_MESSAGES/calligra_shape_template.mo share/locale/lt/LC_MESSAGES/calligra_shape_text.mo share/locale/lt/LC_MESSAGES/calligra_shape_threed.mo share/locale/lt/LC_MESSAGES/calligra_shape_vector.mo share/locale/lt/LC_MESSAGES/calligra_shape_video.mo share/locale/lt/LC_MESSAGES/calligra_textediting_autocorrect.mo share/locale/lt/LC_MESSAGES/calligra_textediting_changecase.mo share/locale/lt/LC_MESSAGES/calligra_textediting_spellcheck.mo share/locale/lt/LC_MESSAGES/calligra_textediting_thesaurus.mo share/locale/lt/LC_MESSAGES/calligra_textinlineobject_variables.mo share/locale/lt/LC_MESSAGES/calligrafilters.mo share/locale/lt/LC_MESSAGES/calligrasheets.mo share/locale/lt/LC_MESSAGES/calligrasheets_calendar.mo share/locale/lt/LC_MESSAGES/calligrasheets_solver.mo share/locale/lt/LC_MESSAGES/calligrastage.mo share/locale/lt/LC_MESSAGES/calligrawords.mo share/locale/lt/LC_MESSAGES/karbon.mo share/locale/lt/LC_MESSAGES/kocolorspaces.mo share/locale/lt/LC_MESSAGES/koconverter.mo share/locale/lt/LC_MESSAGES/okularGenerator_odp.mo share/locale/lt/LC_MESSAGES/okularGenerator_odt.mo share/locale/lv/LC_MESSAGES/KarbonFilterEffects.mo share/locale/lv/LC_MESSAGES/KarbonTools.mo share/locale/lv/LC_MESSAGES/braindump.mo share/locale/lv/LC_MESSAGES/calligra-defaulttools.mo share/locale/lv/LC_MESSAGES/calligra-dockers.mo share/locale/lv/LC_MESSAGES/calligra-opener.mo share/locale/lv/LC_MESSAGES/calligra.mo share/locale/lv/LC_MESSAGES/calligra_semanticitem_contact.mo share/locale/lv/LC_MESSAGES/calligra_semanticitem_event.mo share/locale/lv/LC_MESSAGES/calligra_semanticitem_location.mo share/locale/lv/LC_MESSAGES/calligra_shape_artistictext.mo share/locale/lv/LC_MESSAGES/calligra_shape_chart.mo share/locale/lv/LC_MESSAGES/calligra_shape_comment.mo share/locale/lv/LC_MESSAGES/calligra_shape_formula.mo share/locale/lv/LC_MESSAGES/calligra_shape_music.mo share/locale/lv/LC_MESSAGES/calligra_shape_paths.mo share/locale/lv/LC_MESSAGES/calligra_shape_picture.mo share/locale/lv/LC_MESSAGES/calligra_shape_plugin.mo share/locale/lv/LC_MESSAGES/calligra_shape_spreadsheet.mo share/locale/lv/LC_MESSAGES/calligra_shape_template.mo share/locale/lv/LC_MESSAGES/calligra_shape_text.mo share/locale/lv/LC_MESSAGES/calligra_shape_threed.mo share/locale/lv/LC_MESSAGES/calligra_shape_vector.mo share/locale/lv/LC_MESSAGES/calligra_shape_video.mo share/locale/lv/LC_MESSAGES/calligra_shape_webshape.mo share/locale/lv/LC_MESSAGES/calligra_textediting_autocorrect.mo share/locale/lv/LC_MESSAGES/calligra_textediting_changecase.mo share/locale/lv/LC_MESSAGES/calligra_textediting_spellcheck.mo share/locale/lv/LC_MESSAGES/calligra_textediting_thesaurus.mo share/locale/lv/LC_MESSAGES/calligra_textinlineobject_variables.mo share/locale/lv/LC_MESSAGES/calligrafilters.mo share/locale/lv/LC_MESSAGES/calligralauncher.mo share/locale/lv/LC_MESSAGES/calligrasheets.mo share/locale/lv/LC_MESSAGES/calligrasheets_calendar.mo share/locale/lv/LC_MESSAGES/calligrasheets_solver.mo share/locale/lv/LC_MESSAGES/calligrastage.mo share/locale/lv/LC_MESSAGES/calligrawords.mo share/locale/lv/LC_MESSAGES/karbon.mo share/locale/lv/LC_MESSAGES/kocolorspaces.mo share/locale/lv/LC_MESSAGES/koconverter.mo share/locale/lv/LC_MESSAGES/okularGenerator_odp.mo share/locale/lv/LC_MESSAGES/okularGenerator_odt.mo share/locale/mai/LC_MESSAGES/KarbonFilterEffects.mo share/locale/mai/LC_MESSAGES/KarbonTools.mo share/locale/mai/LC_MESSAGES/calligra-defaulttools.mo share/locale/mai/LC_MESSAGES/calligra-dockers.mo share/locale/mai/LC_MESSAGES/calligra.mo share/locale/mai/LC_MESSAGES/calligra_shape_artistictext.mo share/locale/mai/LC_MESSAGES/calligra_shape_chart.mo share/locale/mai/LC_MESSAGES/calligra_shape_formula.mo share/locale/mai/LC_MESSAGES/calligra_shape_music.mo share/locale/mai/LC_MESSAGES/calligra_shape_paths.mo share/locale/mai/LC_MESSAGES/calligra_shape_picture.mo share/locale/mai/LC_MESSAGES/calligra_shape_spreadsheet.mo share/locale/mai/LC_MESSAGES/calligra_shape_text.mo share/locale/mai/LC_MESSAGES/calligra_textediting_autocorrect.mo share/locale/mai/LC_MESSAGES/calligra_textediting_changecase.mo share/locale/mai/LC_MESSAGES/calligra_textediting_spellcheck.mo share/locale/mai/LC_MESSAGES/calligra_textediting_thesaurus.mo share/locale/mai/LC_MESSAGES/calligra_textinlineobject_variables.mo share/locale/mai/LC_MESSAGES/calligrafilters.mo share/locale/mai/LC_MESSAGES/calligrasheets.mo share/locale/mai/LC_MESSAGES/calligrasheets_calendar.mo share/locale/mai/LC_MESSAGES/calligrasheets_solver.mo share/locale/mai/LC_MESSAGES/calligrastage.mo share/locale/mai/LC_MESSAGES/calligrawords.mo share/locale/mai/LC_MESSAGES/karbon.mo share/locale/mai/LC_MESSAGES/kocolorspaces.mo share/locale/mai/LC_MESSAGES/koconverter.mo share/locale/mk/LC_MESSAGES/calligra.mo share/locale/mk/LC_MESSAGES/calligrasheets.mo share/locale/mk/LC_MESSAGES/calligrawords.mo share/locale/ml/LC_MESSAGES/calligrasheets.mo share/locale/mr/LC_MESSAGES/KarbonFilterEffects.mo share/locale/mr/LC_MESSAGES/KarbonTools.mo share/locale/mr/LC_MESSAGES/braindump.mo share/locale/mr/LC_MESSAGES/calligra-defaulttools.mo share/locale/mr/LC_MESSAGES/calligra-dockers.mo share/locale/mr/LC_MESSAGES/calligra-opener.mo share/locale/mr/LC_MESSAGES/calligra.mo share/locale/mr/LC_MESSAGES/calligra_shape_artistictext.mo share/locale/mr/LC_MESSAGES/calligra_shape_chart.mo share/locale/mr/LC_MESSAGES/calligra_shape_comment.mo share/locale/mr/LC_MESSAGES/calligra_shape_formula.mo share/locale/mr/LC_MESSAGES/calligra_shape_music.mo share/locale/mr/LC_MESSAGES/calligra_shape_paths.mo share/locale/mr/LC_MESSAGES/calligra_shape_picture.mo share/locale/mr/LC_MESSAGES/calligra_shape_plugin.mo share/locale/mr/LC_MESSAGES/calligra_shape_spreadsheet.mo share/locale/mr/LC_MESSAGES/calligra_shape_template.mo share/locale/mr/LC_MESSAGES/calligra_shape_text.mo share/locale/mr/LC_MESSAGES/calligra_shape_threed.mo share/locale/mr/LC_MESSAGES/calligra_shape_vector.mo share/locale/mr/LC_MESSAGES/calligra_shape_video.mo share/locale/mr/LC_MESSAGES/calligra_textediting_autocorrect.mo share/locale/mr/LC_MESSAGES/calligra_textediting_changecase.mo share/locale/mr/LC_MESSAGES/calligra_textediting_spellcheck.mo share/locale/mr/LC_MESSAGES/calligra_textediting_thesaurus.mo share/locale/mr/LC_MESSAGES/calligra_textinlineobject_variables.mo share/locale/mr/LC_MESSAGES/calligrafilters.mo share/locale/mr/LC_MESSAGES/calligrasheets.mo share/locale/mr/LC_MESSAGES/calligrasheets_calendar.mo share/locale/mr/LC_MESSAGES/calligrasheets_solver.mo share/locale/mr/LC_MESSAGES/calligrastage.mo share/locale/mr/LC_MESSAGES/calligrawords.mo share/locale/mr/LC_MESSAGES/karbon.mo share/locale/mr/LC_MESSAGES/kocolorspaces.mo share/locale/mr/LC_MESSAGES/koconverter.mo share/locale/mr/LC_MESSAGES/okularGenerator_odp.mo share/locale/ms/LC_MESSAGES/KarbonFilterEffects.mo share/locale/ms/LC_MESSAGES/KarbonTools.mo share/locale/ms/LC_MESSAGES/braindump.mo share/locale/ms/LC_MESSAGES/calligra-defaulttools.mo share/locale/ms/LC_MESSAGES/calligra-dockers.mo share/locale/ms/LC_MESSAGES/calligra-opener.mo share/locale/ms/LC_MESSAGES/calligra.mo share/locale/ms/LC_MESSAGES/calligra_shape_artistictext.mo share/locale/ms/LC_MESSAGES/calligra_shape_chart.mo share/locale/ms/LC_MESSAGES/calligra_shape_comment.mo share/locale/ms/LC_MESSAGES/calligra_shape_formula.mo share/locale/ms/LC_MESSAGES/calligra_textediting_autocorrect.mo share/locale/ms/LC_MESSAGES/calligra_textediting_changecase.mo share/locale/ms/LC_MESSAGES/calligra_textediting_thesaurus.mo share/locale/ms/LC_MESSAGES/calligrafilters.mo share/locale/ms/LC_MESSAGES/calligrasheets.mo share/locale/ms/LC_MESSAGES/calligrasheets_calendar.mo share/locale/ms/LC_MESSAGES/calligrastage.mo share/locale/ms/LC_MESSAGES/calligrawords.mo share/locale/ms/LC_MESSAGES/karbon.mo share/locale/ms/LC_MESSAGES/koconverter.mo share/locale/nb/LC_MESSAGES/KarbonFilterEffects.mo share/locale/nb/LC_MESSAGES/KarbonTools.mo share/locale/nb/LC_MESSAGES/braindump.mo share/locale/nb/LC_MESSAGES/calligra-defaulttools.mo share/locale/nb/LC_MESSAGES/calligra-dockers.mo share/locale/nb/LC_MESSAGES/calligra-opener.mo share/locale/nb/LC_MESSAGES/calligra.mo share/locale/nb/LC_MESSAGES/calligra_semanticitem_contact.mo share/locale/nb/LC_MESSAGES/calligra_semanticitem_event.mo share/locale/nb/LC_MESSAGES/calligra_semanticitem_location.mo share/locale/nb/LC_MESSAGES/calligra_shape_artistictext.mo share/locale/nb/LC_MESSAGES/calligra_shape_chart.mo share/locale/nb/LC_MESSAGES/calligra_shape_comment.mo share/locale/nb/LC_MESSAGES/calligra_shape_formula.mo share/locale/nb/LC_MESSAGES/calligra_shape_music.mo share/locale/nb/LC_MESSAGES/calligra_shape_paths.mo share/locale/nb/LC_MESSAGES/calligra_shape_picture.mo share/locale/nb/LC_MESSAGES/calligra_shape_plugin.mo share/locale/nb/LC_MESSAGES/calligra_shape_spreadsheet.mo share/locale/nb/LC_MESSAGES/calligra_shape_template.mo share/locale/nb/LC_MESSAGES/calligra_shape_text.mo share/locale/nb/LC_MESSAGES/calligra_shape_threed.mo share/locale/nb/LC_MESSAGES/calligra_shape_vector.mo share/locale/nb/LC_MESSAGES/calligra_shape_video.mo share/locale/nb/LC_MESSAGES/calligra_textediting_autocorrect.mo share/locale/nb/LC_MESSAGES/calligra_textediting_changecase.mo share/locale/nb/LC_MESSAGES/calligra_textediting_spellcheck.mo share/locale/nb/LC_MESSAGES/calligra_textediting_thesaurus.mo share/locale/nb/LC_MESSAGES/calligra_textinlineobject_variables.mo share/locale/nb/LC_MESSAGES/calligrafilters.mo share/locale/nb/LC_MESSAGES/calligrasheets.mo share/locale/nb/LC_MESSAGES/calligrasheets_calendar.mo share/locale/nb/LC_MESSAGES/calligrasheets_solver.mo share/locale/nb/LC_MESSAGES/calligrastage.mo share/locale/nb/LC_MESSAGES/calligrawords.mo share/locale/nb/LC_MESSAGES/karbon.mo share/locale/nb/LC_MESSAGES/kocolorspaces.mo share/locale/nb/LC_MESSAGES/koconverter.mo share/locale/nb/LC_MESSAGES/okularGenerator_odp.mo share/locale/nds/LC_MESSAGES/KarbonFilterEffects.mo share/locale/nds/LC_MESSAGES/KarbonTools.mo share/locale/nds/LC_MESSAGES/braindump.mo share/locale/nds/LC_MESSAGES/calligra-defaulttools.mo share/locale/nds/LC_MESSAGES/calligra-dockers.mo share/locale/nds/LC_MESSAGES/calligra-opener.mo share/locale/nds/LC_MESSAGES/calligra.mo share/locale/nds/LC_MESSAGES/calligra_semanticitem_contact.mo share/locale/nds/LC_MESSAGES/calligra_semanticitem_event.mo share/locale/nds/LC_MESSAGES/calligra_semanticitem_location.mo share/locale/nds/LC_MESSAGES/calligra_shape_artistictext.mo share/locale/nds/LC_MESSAGES/calligra_shape_chart.mo share/locale/nds/LC_MESSAGES/calligra_shape_comment.mo share/locale/nds/LC_MESSAGES/calligra_shape_formula.mo share/locale/nds/LC_MESSAGES/calligra_shape_music.mo share/locale/nds/LC_MESSAGES/calligra_shape_paths.mo share/locale/nds/LC_MESSAGES/calligra_shape_picture.mo share/locale/nds/LC_MESSAGES/calligra_shape_plugin.mo share/locale/nds/LC_MESSAGES/calligra_shape_spreadsheet.mo share/locale/nds/LC_MESSAGES/calligra_shape_template.mo share/locale/nds/LC_MESSAGES/calligra_shape_text.mo share/locale/nds/LC_MESSAGES/calligra_shape_threed.mo share/locale/nds/LC_MESSAGES/calligra_shape_vector.mo share/locale/nds/LC_MESSAGES/calligra_shape_video.mo share/locale/nds/LC_MESSAGES/calligra_textediting_autocorrect.mo share/locale/nds/LC_MESSAGES/calligra_textediting_changecase.mo share/locale/nds/LC_MESSAGES/calligra_textediting_spellcheck.mo share/locale/nds/LC_MESSAGES/calligra_textediting_thesaurus.mo share/locale/nds/LC_MESSAGES/calligra_textinlineobject_variables.mo share/locale/nds/LC_MESSAGES/calligrafilters.mo share/locale/nds/LC_MESSAGES/calligrasheets.mo share/locale/nds/LC_MESSAGES/calligrasheets_calendar.mo share/locale/nds/LC_MESSAGES/calligrasheets_solver.mo share/locale/nds/LC_MESSAGES/calligrastage.mo share/locale/nds/LC_MESSAGES/calligrawords.mo share/locale/nds/LC_MESSAGES/karbon.mo share/locale/nds/LC_MESSAGES/kocolorspaces.mo share/locale/nds/LC_MESSAGES/koconverter.mo share/locale/nds/LC_MESSAGES/okularGenerator_odp.mo share/locale/ne/LC_MESSAGES/KarbonFilterEffects.mo share/locale/ne/LC_MESSAGES/KarbonTools.mo share/locale/ne/LC_MESSAGES/calligra.mo share/locale/ne/LC_MESSAGES/calligra_textediting_thesaurus.mo share/locale/ne/LC_MESSAGES/calligrafilters.mo share/locale/ne/LC_MESSAGES/calligrasheets.mo share/locale/ne/LC_MESSAGES/calligrasheets_calendar.mo share/locale/ne/LC_MESSAGES/calligrastage.mo share/locale/ne/LC_MESSAGES/calligrawords.mo share/locale/ne/LC_MESSAGES/karbon.mo share/locale/ne/LC_MESSAGES/koconverter.mo share/locale/nl/LC_MESSAGES/KarbonFilterEffects.mo share/locale/nl/LC_MESSAGES/KarbonTools.mo share/locale/nl/LC_MESSAGES/braindump.mo share/locale/nl/LC_MESSAGES/calligra-defaulttools.mo share/locale/nl/LC_MESSAGES/calligra-dockers.mo share/locale/nl/LC_MESSAGES/calligra-opener.mo share/locale/nl/LC_MESSAGES/calligra.mo share/locale/nl/LC_MESSAGES/calligra_semanticitem_contact.mo share/locale/nl/LC_MESSAGES/calligra_semanticitem_event.mo share/locale/nl/LC_MESSAGES/calligra_semanticitem_location.mo share/locale/nl/LC_MESSAGES/calligra_shape_artistictext.mo share/locale/nl/LC_MESSAGES/calligra_shape_chart.mo share/locale/nl/LC_MESSAGES/calligra_shape_comment.mo share/locale/nl/LC_MESSAGES/calligra_shape_formula.mo share/locale/nl/LC_MESSAGES/calligra_shape_music.mo share/locale/nl/LC_MESSAGES/calligra_shape_paths.mo share/locale/nl/LC_MESSAGES/calligra_shape_picture.mo share/locale/nl/LC_MESSAGES/calligra_shape_plugin.mo share/locale/nl/LC_MESSAGES/calligra_shape_spreadsheet.mo share/locale/nl/LC_MESSAGES/calligra_shape_template.mo share/locale/nl/LC_MESSAGES/calligra_shape_text.mo share/locale/nl/LC_MESSAGES/calligra_shape_threed.mo share/locale/nl/LC_MESSAGES/calligra_shape_vector.mo share/locale/nl/LC_MESSAGES/calligra_shape_video.mo share/locale/nl/LC_MESSAGES/calligra_shape_webshape.mo share/locale/nl/LC_MESSAGES/calligra_textediting_autocorrect.mo share/locale/nl/LC_MESSAGES/calligra_textediting_changecase.mo share/locale/nl/LC_MESSAGES/calligra_textediting_spellcheck.mo share/locale/nl/LC_MESSAGES/calligra_textediting_thesaurus.mo share/locale/nl/LC_MESSAGES/calligra_textinlineobject_variables.mo share/locale/nl/LC_MESSAGES/calligrafilters.mo share/locale/nl/LC_MESSAGES/calligralauncher.mo share/locale/nl/LC_MESSAGES/calligrasheets.mo share/locale/nl/LC_MESSAGES/calligrasheets_calendar.mo share/locale/nl/LC_MESSAGES/calligrasheets_solver.mo share/locale/nl/LC_MESSAGES/calligrastage.mo share/locale/nl/LC_MESSAGES/calligrawords.mo share/locale/nl/LC_MESSAGES/karbon.mo share/locale/nl/LC_MESSAGES/kocolorspaces.mo share/locale/nl/LC_MESSAGES/koconverter.mo share/locale/nl/LC_MESSAGES/okularGenerator_odp.mo share/locale/nl/LC_MESSAGES/okularGenerator_odt.mo share/locale/nn/LC_MESSAGES/KarbonFilterEffects.mo share/locale/nn/LC_MESSAGES/KarbonTools.mo share/locale/nn/LC_MESSAGES/calligra-defaulttools.mo share/locale/nn/LC_MESSAGES/calligra-dockers.mo share/locale/nn/LC_MESSAGES/calligra.mo share/locale/nn/LC_MESSAGES/calligra_shape_artistictext.mo share/locale/nn/LC_MESSAGES/calligra_shape_chart.mo share/locale/nn/LC_MESSAGES/calligra_shape_formula.mo share/locale/nn/LC_MESSAGES/calligra_shape_music.mo share/locale/nn/LC_MESSAGES/calligra_shape_paths.mo share/locale/nn/LC_MESSAGES/calligra_shape_picture.mo share/locale/nn/LC_MESSAGES/calligra_shape_spreadsheet.mo share/locale/nn/LC_MESSAGES/calligra_shape_text.mo share/locale/nn/LC_MESSAGES/calligra_textediting_autocorrect.mo share/locale/nn/LC_MESSAGES/calligra_textediting_changecase.mo share/locale/nn/LC_MESSAGES/calligra_textediting_spellcheck.mo share/locale/nn/LC_MESSAGES/calligra_textediting_thesaurus.mo share/locale/nn/LC_MESSAGES/calligra_textinlineobject_variables.mo share/locale/nn/LC_MESSAGES/calligrafilters.mo share/locale/nn/LC_MESSAGES/calligrasheets.mo share/locale/nn/LC_MESSAGES/calligrasheets_calendar.mo share/locale/nn/LC_MESSAGES/calligrasheets_solver.mo share/locale/nn/LC_MESSAGES/calligrastage.mo share/locale/nn/LC_MESSAGES/calligrawords.mo share/locale/nn/LC_MESSAGES/karbon.mo share/locale/nn/LC_MESSAGES/kocolorspaces.mo share/locale/nn/LC_MESSAGES/koconverter.mo share/locale/nn/LC_MESSAGES/okularGenerator_odp.mo share/locale/nn/LC_MESSAGES/okularGenerator_odt.mo share/locale/oc/LC_MESSAGES/KarbonFilterEffects.mo share/locale/oc/LC_MESSAGES/KarbonTools.mo share/locale/oc/LC_MESSAGES/calligra-dockers.mo share/locale/oc/LC_MESSAGES/calligra.mo share/locale/oc/LC_MESSAGES/calligra_shape_music.mo share/locale/oc/LC_MESSAGES/calligra_shape_paths.mo share/locale/oc/LC_MESSAGES/calligra_shape_picture.mo share/locale/oc/LC_MESSAGES/calligra_shape_text.mo share/locale/oc/LC_MESSAGES/calligra_textediting_autocorrect.mo share/locale/oc/LC_MESSAGES/calligra_textediting_changecase.mo share/locale/oc/LC_MESSAGES/calligra_textediting_spellcheck.mo share/locale/oc/LC_MESSAGES/calligra_textediting_thesaurus.mo share/locale/oc/LC_MESSAGES/calligra_textinlineobject_variables.mo share/locale/oc/LC_MESSAGES/calligrafilters.mo share/locale/oc/LC_MESSAGES/calligrasheets.mo share/locale/oc/LC_MESSAGES/calligrasheets_calendar.mo share/locale/oc/LC_MESSAGES/calligrasheets_solver.mo share/locale/oc/LC_MESSAGES/calligrastage.mo share/locale/oc/LC_MESSAGES/calligrawords.mo share/locale/oc/LC_MESSAGES/karbon.mo share/locale/oc/LC_MESSAGES/koconverter.mo share/locale/pa/LC_MESSAGES/calligra.mo share/locale/pa/LC_MESSAGES/calligrasheets.mo share/locale/pa/LC_MESSAGES/calligrastage.mo share/locale/pa/LC_MESSAGES/calligrawords.mo share/locale/pl/LC_MESSAGES/KarbonFilterEffects.mo share/locale/pl/LC_MESSAGES/KarbonTools.mo share/locale/pl/LC_MESSAGES/braindump.mo share/locale/pl/LC_MESSAGES/calligra-defaulttools.mo share/locale/pl/LC_MESSAGES/calligra-dockers.mo share/locale/pl/LC_MESSAGES/calligra-opener.mo share/locale/pl/LC_MESSAGES/calligra.mo share/locale/pl/LC_MESSAGES/calligra_semanticitem_contact.mo share/locale/pl/LC_MESSAGES/calligra_semanticitem_event.mo share/locale/pl/LC_MESSAGES/calligra_semanticitem_location.mo share/locale/pl/LC_MESSAGES/calligra_shape_artistictext.mo share/locale/pl/LC_MESSAGES/calligra_shape_chart.mo share/locale/pl/LC_MESSAGES/calligra_shape_comment.mo share/locale/pl/LC_MESSAGES/calligra_shape_formula.mo share/locale/pl/LC_MESSAGES/calligra_shape_music.mo share/locale/pl/LC_MESSAGES/calligra_shape_paths.mo share/locale/pl/LC_MESSAGES/calligra_shape_picture.mo share/locale/pl/LC_MESSAGES/calligra_shape_plugin.mo share/locale/pl/LC_MESSAGES/calligra_shape_spreadsheet.mo share/locale/pl/LC_MESSAGES/calligra_shape_template.mo share/locale/pl/LC_MESSAGES/calligra_shape_text.mo share/locale/pl/LC_MESSAGES/calligra_shape_threed.mo share/locale/pl/LC_MESSAGES/calligra_shape_vector.mo share/locale/pl/LC_MESSAGES/calligra_shape_video.mo share/locale/pl/LC_MESSAGES/calligra_shape_webshape.mo share/locale/pl/LC_MESSAGES/calligra_textediting_autocorrect.mo share/locale/pl/LC_MESSAGES/calligra_textediting_changecase.mo share/locale/pl/LC_MESSAGES/calligra_textediting_spellcheck.mo share/locale/pl/LC_MESSAGES/calligra_textediting_thesaurus.mo share/locale/pl/LC_MESSAGES/calligra_textinlineobject_variables.mo share/locale/pl/LC_MESSAGES/calligrafilters.mo share/locale/pl/LC_MESSAGES/calligralauncher.mo share/locale/pl/LC_MESSAGES/calligrasheets.mo share/locale/pl/LC_MESSAGES/calligrasheets_calendar.mo share/locale/pl/LC_MESSAGES/calligrasheets_solver.mo share/locale/pl/LC_MESSAGES/calligrastage.mo share/locale/pl/LC_MESSAGES/calligrawords.mo share/locale/pl/LC_MESSAGES/karbon.mo share/locale/pl/LC_MESSAGES/kocolorspaces.mo share/locale/pl/LC_MESSAGES/koconverter.mo share/locale/pl/LC_MESSAGES/okularGenerator_odp.mo share/locale/pl/LC_MESSAGES/okularGenerator_odt.mo share/locale/pt/LC_MESSAGES/KarbonFilterEffects.mo share/locale/pt/LC_MESSAGES/KarbonTools.mo share/locale/pt/LC_MESSAGES/braindump.mo share/locale/pt/LC_MESSAGES/calligra-defaulttools.mo share/locale/pt/LC_MESSAGES/calligra-dockers.mo share/locale/pt/LC_MESSAGES/calligra-opener.mo share/locale/pt/LC_MESSAGES/calligra.mo share/locale/pt/LC_MESSAGES/calligra_semanticitem_contact.mo share/locale/pt/LC_MESSAGES/calligra_semanticitem_event.mo share/locale/pt/LC_MESSAGES/calligra_semanticitem_location.mo share/locale/pt/LC_MESSAGES/calligra_shape_artistictext.mo share/locale/pt/LC_MESSAGES/calligra_shape_chart.mo share/locale/pt/LC_MESSAGES/calligra_shape_comment.mo share/locale/pt/LC_MESSAGES/calligra_shape_formula.mo share/locale/pt/LC_MESSAGES/calligra_shape_music.mo share/locale/pt/LC_MESSAGES/calligra_shape_paths.mo share/locale/pt/LC_MESSAGES/calligra_shape_picture.mo share/locale/pt/LC_MESSAGES/calligra_shape_plugin.mo share/locale/pt/LC_MESSAGES/calligra_shape_spreadsheet.mo share/locale/pt/LC_MESSAGES/calligra_shape_template.mo share/locale/pt/LC_MESSAGES/calligra_shape_text.mo share/locale/pt/LC_MESSAGES/calligra_shape_threed.mo share/locale/pt/LC_MESSAGES/calligra_shape_vector.mo share/locale/pt/LC_MESSAGES/calligra_shape_video.mo share/locale/pt/LC_MESSAGES/calligra_textediting_autocorrect.mo share/locale/pt/LC_MESSAGES/calligra_textediting_changecase.mo share/locale/pt/LC_MESSAGES/calligra_textediting_spellcheck.mo share/locale/pt/LC_MESSAGES/calligra_textediting_thesaurus.mo share/locale/pt/LC_MESSAGES/calligra_textinlineobject_variables.mo share/locale/pt/LC_MESSAGES/calligrafilters.mo share/locale/pt/LC_MESSAGES/calligrasheets.mo share/locale/pt/LC_MESSAGES/calligrasheets_calendar.mo share/locale/pt/LC_MESSAGES/calligrasheets_solver.mo share/locale/pt/LC_MESSAGES/calligrastage.mo share/locale/pt/LC_MESSAGES/calligrawords.mo share/locale/pt/LC_MESSAGES/karbon.mo share/locale/pt/LC_MESSAGES/kocolorspaces.mo share/locale/pt/LC_MESSAGES/koconverter.mo share/locale/pt/LC_MESSAGES/okularGenerator_odp.mo share/locale/pt/LC_MESSAGES/okularGenerator_odt.mo share/locale/pt_BR/LC_MESSAGES/KarbonFilterEffects.mo share/locale/pt_BR/LC_MESSAGES/KarbonTools.mo share/locale/pt_BR/LC_MESSAGES/braindump.mo share/locale/pt_BR/LC_MESSAGES/calligra-defaulttools.mo share/locale/pt_BR/LC_MESSAGES/calligra-dockers.mo share/locale/pt_BR/LC_MESSAGES/calligra-opener.mo share/locale/pt_BR/LC_MESSAGES/calligra.mo share/locale/pt_BR/LC_MESSAGES/calligra_semanticitem_contact.mo share/locale/pt_BR/LC_MESSAGES/calligra_semanticitem_event.mo share/locale/pt_BR/LC_MESSAGES/calligra_semanticitem_location.mo share/locale/pt_BR/LC_MESSAGES/calligra_shape_artistictext.mo share/locale/pt_BR/LC_MESSAGES/calligra_shape_chart.mo share/locale/pt_BR/LC_MESSAGES/calligra_shape_comment.mo share/locale/pt_BR/LC_MESSAGES/calligra_shape_formula.mo share/locale/pt_BR/LC_MESSAGES/calligra_shape_music.mo share/locale/pt_BR/LC_MESSAGES/calligra_shape_paths.mo share/locale/pt_BR/LC_MESSAGES/calligra_shape_picture.mo share/locale/pt_BR/LC_MESSAGES/calligra_shape_plugin.mo share/locale/pt_BR/LC_MESSAGES/calligra_shape_spreadsheet.mo share/locale/pt_BR/LC_MESSAGES/calligra_shape_template.mo share/locale/pt_BR/LC_MESSAGES/calligra_shape_text.mo share/locale/pt_BR/LC_MESSAGES/calligra_shape_threed.mo share/locale/pt_BR/LC_MESSAGES/calligra_shape_vector.mo share/locale/pt_BR/LC_MESSAGES/calligra_shape_video.mo +share/locale/pt_BR/LC_MESSAGES/calligra_shape_webshape.mo share/locale/pt_BR/LC_MESSAGES/calligra_textediting_autocorrect.mo share/locale/pt_BR/LC_MESSAGES/calligra_textediting_changecase.mo share/locale/pt_BR/LC_MESSAGES/calligra_textediting_spellcheck.mo share/locale/pt_BR/LC_MESSAGES/calligra_textediting_thesaurus.mo share/locale/pt_BR/LC_MESSAGES/calligra_textinlineobject_variables.mo share/locale/pt_BR/LC_MESSAGES/calligrafilters.mo +share/locale/pt_BR/LC_MESSAGES/calligralauncher.mo share/locale/pt_BR/LC_MESSAGES/calligrasheets.mo share/locale/pt_BR/LC_MESSAGES/calligrasheets_calendar.mo share/locale/pt_BR/LC_MESSAGES/calligrasheets_solver.mo share/locale/pt_BR/LC_MESSAGES/calligrastage.mo share/locale/pt_BR/LC_MESSAGES/calligrawords.mo share/locale/pt_BR/LC_MESSAGES/karbon.mo share/locale/pt_BR/LC_MESSAGES/kocolorspaces.mo share/locale/pt_BR/LC_MESSAGES/koconverter.mo share/locale/pt_BR/LC_MESSAGES/okularGenerator_odp.mo share/locale/pt_BR/LC_MESSAGES/okularGenerator_odt.mo share/locale/ro/LC_MESSAGES/KarbonFilterEffects.mo share/locale/ro/LC_MESSAGES/KarbonTools.mo share/locale/ro/LC_MESSAGES/calligra-dockers.mo share/locale/ro/LC_MESSAGES/calligra.mo share/locale/ro/LC_MESSAGES/calligra_shape_music.mo share/locale/ro/LC_MESSAGES/calligra_shape_paths.mo share/locale/ro/LC_MESSAGES/calligra_shape_picture.mo share/locale/ro/LC_MESSAGES/calligra_shape_text.mo share/locale/ro/LC_MESSAGES/calligra_textediting_autocorrect.mo share/locale/ro/LC_MESSAGES/calligra_textediting_changecase.mo share/locale/ro/LC_MESSAGES/calligra_textediting_spellcheck.mo share/locale/ro/LC_MESSAGES/calligra_textediting_thesaurus.mo share/locale/ro/LC_MESSAGES/calligra_textinlineobject_variables.mo share/locale/ro/LC_MESSAGES/calligrafilters.mo share/locale/ro/LC_MESSAGES/calligrasheets.mo share/locale/ro/LC_MESSAGES/calligrasheets_calendar.mo share/locale/ro/LC_MESSAGES/calligrasheets_solver.mo share/locale/ro/LC_MESSAGES/calligrastage.mo share/locale/ro/LC_MESSAGES/calligrawords.mo share/locale/ro/LC_MESSAGES/karbon.mo share/locale/ro/LC_MESSAGES/koconverter.mo share/locale/ru/LC_MESSAGES/KarbonFilterEffects.mo share/locale/ru/LC_MESSAGES/KarbonTools.mo share/locale/ru/LC_MESSAGES/braindump.mo share/locale/ru/LC_MESSAGES/calligra-defaulttools.mo share/locale/ru/LC_MESSAGES/calligra-dockers.mo share/locale/ru/LC_MESSAGES/calligra-opener.mo share/locale/ru/LC_MESSAGES/calligra.mo share/locale/ru/LC_MESSAGES/calligra_semanticitem_contact.mo share/locale/ru/LC_MESSAGES/calligra_semanticitem_event.mo share/locale/ru/LC_MESSAGES/calligra_semanticitem_location.mo share/locale/ru/LC_MESSAGES/calligra_shape_artistictext.mo share/locale/ru/LC_MESSAGES/calligra_shape_chart.mo share/locale/ru/LC_MESSAGES/calligra_shape_comment.mo share/locale/ru/LC_MESSAGES/calligra_shape_formula.mo share/locale/ru/LC_MESSAGES/calligra_shape_music.mo share/locale/ru/LC_MESSAGES/calligra_shape_paths.mo share/locale/ru/LC_MESSAGES/calligra_shape_picture.mo share/locale/ru/LC_MESSAGES/calligra_shape_plugin.mo share/locale/ru/LC_MESSAGES/calligra_shape_spreadsheet.mo share/locale/ru/LC_MESSAGES/calligra_shape_template.mo share/locale/ru/LC_MESSAGES/calligra_shape_text.mo share/locale/ru/LC_MESSAGES/calligra_shape_threed.mo share/locale/ru/LC_MESSAGES/calligra_shape_vector.mo share/locale/ru/LC_MESSAGES/calligra_shape_video.mo share/locale/ru/LC_MESSAGES/calligra_textediting_autocorrect.mo share/locale/ru/LC_MESSAGES/calligra_textediting_changecase.mo share/locale/ru/LC_MESSAGES/calligra_textediting_spellcheck.mo share/locale/ru/LC_MESSAGES/calligra_textediting_thesaurus.mo share/locale/ru/LC_MESSAGES/calligra_textinlineobject_variables.mo share/locale/ru/LC_MESSAGES/calligrafilters.mo share/locale/ru/LC_MESSAGES/calligrasheets.mo share/locale/ru/LC_MESSAGES/calligrasheets_calendar.mo share/locale/ru/LC_MESSAGES/calligrasheets_solver.mo share/locale/ru/LC_MESSAGES/calligrastage.mo share/locale/ru/LC_MESSAGES/calligrawords.mo share/locale/ru/LC_MESSAGES/karbon.mo share/locale/ru/LC_MESSAGES/kocolorspaces.mo share/locale/ru/LC_MESSAGES/koconverter.mo share/locale/ru/LC_MESSAGES/okularGenerator_odp.mo share/locale/ru/LC_MESSAGES/okularGenerator_odt.mo share/locale/sa/LC_MESSAGES/KarbonFilterEffects.mo share/locale/sa/LC_MESSAGES/KarbonTools.mo share/locale/sa/LC_MESSAGES/braindump.mo share/locale/sa/LC_MESSAGES/calligra-defaulttools.mo share/locale/sa/LC_MESSAGES/calligra-dockers.mo share/locale/sa/LC_MESSAGES/calligra-opener.mo share/locale/sa/LC_MESSAGES/calligra.mo share/locale/sa/LC_MESSAGES/calligra_semanticitem_contact.mo share/locale/sa/LC_MESSAGES/calligra_semanticitem_event.mo share/locale/sa/LC_MESSAGES/calligra_semanticitem_location.mo share/locale/sa/LC_MESSAGES/calligra_shape_artistictext.mo share/locale/sa/LC_MESSAGES/calligra_shape_chart.mo share/locale/sa/LC_MESSAGES/calligra_shape_comment.mo share/locale/sa/LC_MESSAGES/calligra_shape_formula.mo share/locale/sa/LC_MESSAGES/calligra_shape_music.mo share/locale/sa/LC_MESSAGES/calligra_shape_paths.mo share/locale/sa/LC_MESSAGES/calligra_shape_picture.mo share/locale/sa/LC_MESSAGES/calligra_shape_plugin.mo share/locale/sa/LC_MESSAGES/calligra_shape_spreadsheet.mo share/locale/sa/LC_MESSAGES/calligra_shape_template.mo share/locale/sa/LC_MESSAGES/calligra_shape_text.mo share/locale/sa/LC_MESSAGES/calligra_shape_threed.mo share/locale/sa/LC_MESSAGES/calligra_shape_vector.mo share/locale/sa/LC_MESSAGES/calligra_shape_video.mo share/locale/sa/LC_MESSAGES/calligra_shape_webshape.mo share/locale/sa/LC_MESSAGES/calligra_textediting_autocorrect.mo share/locale/sa/LC_MESSAGES/calligra_textediting_changecase.mo share/locale/sa/LC_MESSAGES/calligra_textediting_spellcheck.mo share/locale/sa/LC_MESSAGES/calligra_textediting_thesaurus.mo share/locale/sa/LC_MESSAGES/calligra_textinlineobject_variables.mo share/locale/sa/LC_MESSAGES/calligrafilters.mo share/locale/sa/LC_MESSAGES/calligralauncher.mo share/locale/sa/LC_MESSAGES/calligrasheets.mo share/locale/sa/LC_MESSAGES/calligrasheets_calendar.mo share/locale/sa/LC_MESSAGES/calligrasheets_solver.mo share/locale/sa/LC_MESSAGES/calligrastage.mo share/locale/sa/LC_MESSAGES/calligrawords.mo share/locale/sa/LC_MESSAGES/karbon.mo share/locale/sa/LC_MESSAGES/kocolorspaces.mo share/locale/sa/LC_MESSAGES/koconverter.mo share/locale/sa/LC_MESSAGES/okularGenerator_odp.mo share/locale/sa/LC_MESSAGES/okularGenerator_odt.mo share/locale/se/LC_MESSAGES/KarbonFilterEffects.mo share/locale/se/LC_MESSAGES/KarbonTools.mo share/locale/se/LC_MESSAGES/calligra.mo share/locale/se/LC_MESSAGES/calligra_textediting_autocorrect.mo share/locale/se/LC_MESSAGES/calligra_textediting_changecase.mo share/locale/se/LC_MESSAGES/calligra_textediting_thesaurus.mo share/locale/se/LC_MESSAGES/calligrafilters.mo share/locale/se/LC_MESSAGES/calligrasheets.mo share/locale/se/LC_MESSAGES/calligrasheets_calendar.mo share/locale/se/LC_MESSAGES/calligrastage.mo share/locale/se/LC_MESSAGES/calligrawords.mo share/locale/se/LC_MESSAGES/karbon.mo share/locale/se/LC_MESSAGES/koconverter.mo share/locale/sk/LC_MESSAGES/KarbonFilterEffects.mo share/locale/sk/LC_MESSAGES/KarbonTools.mo share/locale/sk/LC_MESSAGES/braindump.mo share/locale/sk/LC_MESSAGES/calligra-defaulttools.mo share/locale/sk/LC_MESSAGES/calligra-dockers.mo share/locale/sk/LC_MESSAGES/calligra-opener.mo share/locale/sk/LC_MESSAGES/calligra.mo share/locale/sk/LC_MESSAGES/calligra_semanticitem_contact.mo share/locale/sk/LC_MESSAGES/calligra_semanticitem_event.mo share/locale/sk/LC_MESSAGES/calligra_semanticitem_location.mo share/locale/sk/LC_MESSAGES/calligra_shape_artistictext.mo share/locale/sk/LC_MESSAGES/calligra_shape_chart.mo share/locale/sk/LC_MESSAGES/calligra_shape_comment.mo share/locale/sk/LC_MESSAGES/calligra_shape_formula.mo share/locale/sk/LC_MESSAGES/calligra_shape_music.mo share/locale/sk/LC_MESSAGES/calligra_shape_paths.mo share/locale/sk/LC_MESSAGES/calligra_shape_picture.mo share/locale/sk/LC_MESSAGES/calligra_shape_plugin.mo share/locale/sk/LC_MESSAGES/calligra_shape_spreadsheet.mo share/locale/sk/LC_MESSAGES/calligra_shape_template.mo share/locale/sk/LC_MESSAGES/calligra_shape_text.mo share/locale/sk/LC_MESSAGES/calligra_shape_threed.mo share/locale/sk/LC_MESSAGES/calligra_shape_vector.mo share/locale/sk/LC_MESSAGES/calligra_shape_video.mo share/locale/sk/LC_MESSAGES/calligra_shape_webshape.mo share/locale/sk/LC_MESSAGES/calligra_textediting_autocorrect.mo share/locale/sk/LC_MESSAGES/calligra_textediting_changecase.mo share/locale/sk/LC_MESSAGES/calligra_textediting_spellcheck.mo share/locale/sk/LC_MESSAGES/calligra_textediting_thesaurus.mo share/locale/sk/LC_MESSAGES/calligra_textinlineobject_variables.mo share/locale/sk/LC_MESSAGES/calligrafilters.mo share/locale/sk/LC_MESSAGES/calligralauncher.mo share/locale/sk/LC_MESSAGES/calligrasheets.mo share/locale/sk/LC_MESSAGES/calligrasheets_calendar.mo share/locale/sk/LC_MESSAGES/calligrasheets_solver.mo share/locale/sk/LC_MESSAGES/calligrastage.mo share/locale/sk/LC_MESSAGES/calligrawords.mo share/locale/sk/LC_MESSAGES/karbon.mo share/locale/sk/LC_MESSAGES/kocolorspaces.mo share/locale/sk/LC_MESSAGES/koconverter.mo share/locale/sk/LC_MESSAGES/okularGenerator_odp.mo share/locale/sk/LC_MESSAGES/okularGenerator_odt.mo share/locale/sl/LC_MESSAGES/KarbonFilterEffects.mo share/locale/sl/LC_MESSAGES/KarbonTools.mo share/locale/sl/LC_MESSAGES/braindump.mo share/locale/sl/LC_MESSAGES/calligra-defaulttools.mo share/locale/sl/LC_MESSAGES/calligra-dockers.mo share/locale/sl/LC_MESSAGES/calligra-opener.mo share/locale/sl/LC_MESSAGES/calligra.mo share/locale/sl/LC_MESSAGES/calligra_semanticitem_contact.mo share/locale/sl/LC_MESSAGES/calligra_semanticitem_event.mo share/locale/sl/LC_MESSAGES/calligra_semanticitem_location.mo share/locale/sl/LC_MESSAGES/calligra_shape_artistictext.mo share/locale/sl/LC_MESSAGES/calligra_shape_chart.mo share/locale/sl/LC_MESSAGES/calligra_shape_comment.mo share/locale/sl/LC_MESSAGES/calligra_shape_formula.mo share/locale/sl/LC_MESSAGES/calligra_shape_music.mo share/locale/sl/LC_MESSAGES/calligra_shape_paths.mo share/locale/sl/LC_MESSAGES/calligra_shape_picture.mo share/locale/sl/LC_MESSAGES/calligra_shape_plugin.mo share/locale/sl/LC_MESSAGES/calligra_shape_spreadsheet.mo share/locale/sl/LC_MESSAGES/calligra_shape_template.mo share/locale/sl/LC_MESSAGES/calligra_shape_text.mo share/locale/sl/LC_MESSAGES/calligra_shape_threed.mo share/locale/sl/LC_MESSAGES/calligra_shape_vector.mo share/locale/sl/LC_MESSAGES/calligra_shape_video.mo share/locale/sl/LC_MESSAGES/calligra_shape_webshape.mo share/locale/sl/LC_MESSAGES/calligra_textediting_autocorrect.mo share/locale/sl/LC_MESSAGES/calligra_textediting_changecase.mo share/locale/sl/LC_MESSAGES/calligra_textediting_spellcheck.mo share/locale/sl/LC_MESSAGES/calligra_textediting_thesaurus.mo share/locale/sl/LC_MESSAGES/calligra_textinlineobject_variables.mo share/locale/sl/LC_MESSAGES/calligrafilters.mo share/locale/sl/LC_MESSAGES/calligralauncher.mo share/locale/sl/LC_MESSAGES/calligrasheets.mo share/locale/sl/LC_MESSAGES/calligrasheets_calendar.mo share/locale/sl/LC_MESSAGES/calligrasheets_solver.mo share/locale/sl/LC_MESSAGES/calligrastage.mo share/locale/sl/LC_MESSAGES/calligrawords.mo share/locale/sl/LC_MESSAGES/karbon.mo share/locale/sl/LC_MESSAGES/kocolorspaces.mo share/locale/sl/LC_MESSAGES/koconverter.mo share/locale/sl/LC_MESSAGES/okularGenerator_odp.mo share/locale/sl/LC_MESSAGES/okularGenerator_odt.mo share/locale/sq/LC_MESSAGES/KarbonFilterEffects.mo share/locale/sq/LC_MESSAGES/calligra_shape_picture.mo share/locale/sq/LC_MESSAGES/calligra_shape_video.mo share/locale/sq/LC_MESSAGES/calligra_textediting_thesaurus.mo share/locale/sq/LC_MESSAGES/karbon.mo share/locale/sq/LC_MESSAGES/koconverter.mo share/locale/sv/LC_MESSAGES/KarbonFilterEffects.mo share/locale/sv/LC_MESSAGES/KarbonTools.mo share/locale/sv/LC_MESSAGES/braindump.mo share/locale/sv/LC_MESSAGES/calligra-defaulttools.mo share/locale/sv/LC_MESSAGES/calligra-dockers.mo share/locale/sv/LC_MESSAGES/calligra-opener.mo share/locale/sv/LC_MESSAGES/calligra.mo share/locale/sv/LC_MESSAGES/calligra_semanticitem_contact.mo share/locale/sv/LC_MESSAGES/calligra_semanticitem_event.mo share/locale/sv/LC_MESSAGES/calligra_semanticitem_location.mo share/locale/sv/LC_MESSAGES/calligra_shape_artistictext.mo share/locale/sv/LC_MESSAGES/calligra_shape_chart.mo share/locale/sv/LC_MESSAGES/calligra_shape_comment.mo share/locale/sv/LC_MESSAGES/calligra_shape_formula.mo share/locale/sv/LC_MESSAGES/calligra_shape_music.mo share/locale/sv/LC_MESSAGES/calligra_shape_paths.mo share/locale/sv/LC_MESSAGES/calligra_shape_picture.mo share/locale/sv/LC_MESSAGES/calligra_shape_plugin.mo share/locale/sv/LC_MESSAGES/calligra_shape_spreadsheet.mo share/locale/sv/LC_MESSAGES/calligra_shape_template.mo share/locale/sv/LC_MESSAGES/calligra_shape_text.mo share/locale/sv/LC_MESSAGES/calligra_shape_threed.mo share/locale/sv/LC_MESSAGES/calligra_shape_vector.mo share/locale/sv/LC_MESSAGES/calligra_shape_video.mo share/locale/sv/LC_MESSAGES/calligra_shape_webshape.mo share/locale/sv/LC_MESSAGES/calligra_textediting_autocorrect.mo share/locale/sv/LC_MESSAGES/calligra_textediting_changecase.mo share/locale/sv/LC_MESSAGES/calligra_textediting_spellcheck.mo share/locale/sv/LC_MESSAGES/calligra_textediting_thesaurus.mo share/locale/sv/LC_MESSAGES/calligra_textinlineobject_variables.mo share/locale/sv/LC_MESSAGES/calligrafilters.mo share/locale/sv/LC_MESSAGES/calligralauncher.mo share/locale/sv/LC_MESSAGES/calligrasheets.mo share/locale/sv/LC_MESSAGES/calligrasheets_calendar.mo share/locale/sv/LC_MESSAGES/calligrasheets_solver.mo share/locale/sv/LC_MESSAGES/calligrastage.mo share/locale/sv/LC_MESSAGES/calligrawords.mo share/locale/sv/LC_MESSAGES/karbon.mo share/locale/sv/LC_MESSAGES/kocolorspaces.mo share/locale/sv/LC_MESSAGES/koconverter.mo share/locale/sv/LC_MESSAGES/okularGenerator_odp.mo share/locale/sv/LC_MESSAGES/okularGenerator_odt.mo share/locale/ta/LC_MESSAGES/KarbonFilterEffects.mo share/locale/ta/LC_MESSAGES/KarbonTools.mo share/locale/ta/LC_MESSAGES/calligra.mo share/locale/ta/LC_MESSAGES/calligra_textediting_autocorrect.mo share/locale/ta/LC_MESSAGES/calligra_textediting_changecase.mo share/locale/ta/LC_MESSAGES/calligra_textediting_thesaurus.mo share/locale/ta/LC_MESSAGES/calligrafilters.mo share/locale/ta/LC_MESSAGES/calligrasheets.mo share/locale/ta/LC_MESSAGES/calligrastage.mo share/locale/ta/LC_MESSAGES/calligrawords.mo share/locale/ta/LC_MESSAGES/karbon.mo share/locale/ta/LC_MESSAGES/koconverter.mo share/locale/tg/LC_MESSAGES/KarbonFilterEffects.mo share/locale/tg/LC_MESSAGES/KarbonTools.mo share/locale/tg/LC_MESSAGES/calligra.mo share/locale/tg/LC_MESSAGES/calligra_textediting_thesaurus.mo share/locale/tg/LC_MESSAGES/calligrafilters.mo share/locale/tg/LC_MESSAGES/calligrasheets.mo share/locale/tg/LC_MESSAGES/calligrasheets_calendar.mo share/locale/tg/LC_MESSAGES/calligrastage.mo share/locale/tg/LC_MESSAGES/calligrawords.mo share/locale/tg/LC_MESSAGES/karbon.mo share/locale/tg/LC_MESSAGES/koconverter.mo share/locale/th/LC_MESSAGES/KarbonFilterEffects.mo share/locale/th/LC_MESSAGES/KarbonTools.mo share/locale/th/LC_MESSAGES/calligra.mo share/locale/th/LC_MESSAGES/calligra_textediting_thesaurus.mo share/locale/th/LC_MESSAGES/calligrafilters.mo share/locale/th/LC_MESSAGES/calligrasheets.mo share/locale/th/LC_MESSAGES/calligrastage.mo share/locale/th/LC_MESSAGES/calligrawords.mo share/locale/th/LC_MESSAGES/karbon.mo share/locale/th/LC_MESSAGES/koconverter.mo share/locale/tr/LC_MESSAGES/KarbonFilterEffects.mo share/locale/tr/LC_MESSAGES/KarbonTools.mo share/locale/tr/LC_MESSAGES/braindump.mo share/locale/tr/LC_MESSAGES/calligra-defaulttools.mo share/locale/tr/LC_MESSAGES/calligra-dockers.mo share/locale/tr/LC_MESSAGES/calligra-opener.mo share/locale/tr/LC_MESSAGES/calligra.mo share/locale/tr/LC_MESSAGES/calligra_semanticitem_contact.mo share/locale/tr/LC_MESSAGES/calligra_semanticitem_event.mo share/locale/tr/LC_MESSAGES/calligra_semanticitem_location.mo share/locale/tr/LC_MESSAGES/calligra_shape_artistictext.mo share/locale/tr/LC_MESSAGES/calligra_shape_chart.mo share/locale/tr/LC_MESSAGES/calligra_shape_comment.mo share/locale/tr/LC_MESSAGES/calligra_shape_formula.mo share/locale/tr/LC_MESSAGES/calligra_shape_music.mo share/locale/tr/LC_MESSAGES/calligra_shape_paths.mo share/locale/tr/LC_MESSAGES/calligra_shape_picture.mo share/locale/tr/LC_MESSAGES/calligra_shape_plugin.mo share/locale/tr/LC_MESSAGES/calligra_shape_spreadsheet.mo share/locale/tr/LC_MESSAGES/calligra_shape_template.mo share/locale/tr/LC_MESSAGES/calligra_shape_text.mo share/locale/tr/LC_MESSAGES/calligra_shape_threed.mo share/locale/tr/LC_MESSAGES/calligra_shape_vector.mo share/locale/tr/LC_MESSAGES/calligra_shape_video.mo share/locale/tr/LC_MESSAGES/calligra_shape_webshape.mo share/locale/tr/LC_MESSAGES/calligra_textediting_autocorrect.mo share/locale/tr/LC_MESSAGES/calligra_textediting_changecase.mo share/locale/tr/LC_MESSAGES/calligra_textediting_spellcheck.mo share/locale/tr/LC_MESSAGES/calligra_textediting_thesaurus.mo share/locale/tr/LC_MESSAGES/calligra_textinlineobject_variables.mo share/locale/tr/LC_MESSAGES/calligrafilters.mo share/locale/tr/LC_MESSAGES/calligralauncher.mo share/locale/tr/LC_MESSAGES/calligrasheets.mo share/locale/tr/LC_MESSAGES/calligrasheets_calendar.mo share/locale/tr/LC_MESSAGES/calligrasheets_solver.mo share/locale/tr/LC_MESSAGES/calligrastage.mo share/locale/tr/LC_MESSAGES/calligrawords.mo share/locale/tr/LC_MESSAGES/karbon.mo share/locale/tr/LC_MESSAGES/kocolorspaces.mo share/locale/tr/LC_MESSAGES/koconverter.mo share/locale/tr/LC_MESSAGES/okularGenerator_odp.mo share/locale/tr/LC_MESSAGES/okularGenerator_odt.mo share/locale/ug/LC_MESSAGES/KarbonFilterEffects.mo share/locale/ug/LC_MESSAGES/KarbonTools.mo share/locale/ug/LC_MESSAGES/braindump.mo share/locale/ug/LC_MESSAGES/calligra-defaulttools.mo share/locale/ug/LC_MESSAGES/calligra-dockers.mo share/locale/ug/LC_MESSAGES/calligra-opener.mo share/locale/ug/LC_MESSAGES/calligra.mo share/locale/ug/LC_MESSAGES/calligra_shape_artistictext.mo share/locale/ug/LC_MESSAGES/calligra_shape_chart.mo share/locale/ug/LC_MESSAGES/calligra_shape_comment.mo share/locale/ug/LC_MESSAGES/calligra_shape_formula.mo share/locale/ug/LC_MESSAGES/calligra_shape_music.mo share/locale/ug/LC_MESSAGES/calligra_shape_paths.mo share/locale/ug/LC_MESSAGES/calligra_shape_picture.mo share/locale/ug/LC_MESSAGES/calligra_shape_plugin.mo share/locale/ug/LC_MESSAGES/calligra_shape_spreadsheet.mo share/locale/ug/LC_MESSAGES/calligra_shape_template.mo share/locale/ug/LC_MESSAGES/calligra_shape_text.mo share/locale/ug/LC_MESSAGES/calligra_shape_threed.mo share/locale/ug/LC_MESSAGES/calligra_shape_vector.mo share/locale/ug/LC_MESSAGES/calligra_shape_video.mo share/locale/ug/LC_MESSAGES/calligra_textediting_autocorrect.mo share/locale/ug/LC_MESSAGES/calligra_textediting_changecase.mo share/locale/ug/LC_MESSAGES/calligra_textediting_spellcheck.mo share/locale/ug/LC_MESSAGES/calligra_textediting_thesaurus.mo share/locale/ug/LC_MESSAGES/calligra_textinlineobject_variables.mo share/locale/ug/LC_MESSAGES/calligrafilters.mo share/locale/ug/LC_MESSAGES/calligrasheets.mo share/locale/ug/LC_MESSAGES/calligrasheets_calendar.mo share/locale/ug/LC_MESSAGES/calligrasheets_solver.mo share/locale/ug/LC_MESSAGES/calligrastage.mo share/locale/ug/LC_MESSAGES/calligrawords.mo share/locale/ug/LC_MESSAGES/karbon.mo share/locale/ug/LC_MESSAGES/kocolorspaces.mo share/locale/ug/LC_MESSAGES/koconverter.mo share/locale/ug/LC_MESSAGES/okularGenerator_odp.mo share/locale/uk/LC_MESSAGES/KarbonFilterEffects.mo share/locale/uk/LC_MESSAGES/KarbonTools.mo share/locale/uk/LC_MESSAGES/braindump.mo share/locale/uk/LC_MESSAGES/calligra-defaulttools.mo share/locale/uk/LC_MESSAGES/calligra-dockers.mo share/locale/uk/LC_MESSAGES/calligra-opener.mo share/locale/uk/LC_MESSAGES/calligra.mo share/locale/uk/LC_MESSAGES/calligra_semanticitem_contact.mo share/locale/uk/LC_MESSAGES/calligra_semanticitem_event.mo share/locale/uk/LC_MESSAGES/calligra_semanticitem_location.mo share/locale/uk/LC_MESSAGES/calligra_shape_artistictext.mo share/locale/uk/LC_MESSAGES/calligra_shape_chart.mo share/locale/uk/LC_MESSAGES/calligra_shape_comment.mo share/locale/uk/LC_MESSAGES/calligra_shape_formula.mo share/locale/uk/LC_MESSAGES/calligra_shape_music.mo share/locale/uk/LC_MESSAGES/calligra_shape_paths.mo share/locale/uk/LC_MESSAGES/calligra_shape_picture.mo share/locale/uk/LC_MESSAGES/calligra_shape_plugin.mo share/locale/uk/LC_MESSAGES/calligra_shape_spreadsheet.mo share/locale/uk/LC_MESSAGES/calligra_shape_template.mo share/locale/uk/LC_MESSAGES/calligra_shape_text.mo share/locale/uk/LC_MESSAGES/calligra_shape_threed.mo share/locale/uk/LC_MESSAGES/calligra_shape_vector.mo share/locale/uk/LC_MESSAGES/calligra_shape_video.mo share/locale/uk/LC_MESSAGES/calligra_shape_webshape.mo share/locale/uk/LC_MESSAGES/calligra_textediting_autocorrect.mo share/locale/uk/LC_MESSAGES/calligra_textediting_changecase.mo share/locale/uk/LC_MESSAGES/calligra_textediting_spellcheck.mo share/locale/uk/LC_MESSAGES/calligra_textediting_thesaurus.mo share/locale/uk/LC_MESSAGES/calligra_textinlineobject_variables.mo share/locale/uk/LC_MESSAGES/calligrafilters.mo share/locale/uk/LC_MESSAGES/calligralauncher.mo share/locale/uk/LC_MESSAGES/calligrasheets.mo share/locale/uk/LC_MESSAGES/calligrasheets_calendar.mo share/locale/uk/LC_MESSAGES/calligrasheets_solver.mo share/locale/uk/LC_MESSAGES/calligrastage.mo share/locale/uk/LC_MESSAGES/calligrawords.mo share/locale/uk/LC_MESSAGES/karbon.mo share/locale/uk/LC_MESSAGES/kocolorspaces.mo share/locale/uk/LC_MESSAGES/koconverter.mo share/locale/uk/LC_MESSAGES/okularGenerator_odp.mo share/locale/uk/LC_MESSAGES/okularGenerator_odt.mo share/locale/uz/LC_MESSAGES/KarbonFilterEffects.mo share/locale/uz/LC_MESSAGES/KarbonTools.mo share/locale/uz/LC_MESSAGES/calligra.mo share/locale/uz/LC_MESSAGES/calligra_textediting_thesaurus.mo share/locale/uz/LC_MESSAGES/calligrafilters.mo share/locale/uz/LC_MESSAGES/calligrasheets.mo share/locale/uz/LC_MESSAGES/calligrastage.mo share/locale/uz/LC_MESSAGES/calligrawords.mo share/locale/uz/LC_MESSAGES/karbon.mo share/locale/uz/LC_MESSAGES/koconverter.mo share/locale/uz@cyrillic/LC_MESSAGES/calligra.mo share/locale/uz@cyrillic/LC_MESSAGES/calligrafilters.mo share/locale/uz@cyrillic/LC_MESSAGES/calligrasheets.mo share/locale/uz@cyrillic/LC_MESSAGES/calligrastage.mo share/locale/uz@cyrillic/LC_MESSAGES/calligrawords.mo share/locale/vi/LC_MESSAGES/calligra.mo share/locale/vi/LC_MESSAGES/calligrafilters.mo share/locale/vi/LC_MESSAGES/calligrastage.mo share/locale/vi/LC_MESSAGES/calligrawords.mo share/locale/wa/LC_MESSAGES/KarbonFilterEffects.mo share/locale/wa/LC_MESSAGES/KarbonTools.mo share/locale/wa/LC_MESSAGES/calligra-defaulttools.mo share/locale/wa/LC_MESSAGES/calligra-dockers.mo share/locale/wa/LC_MESSAGES/calligra.mo share/locale/wa/LC_MESSAGES/calligra_shape_artistictext.mo share/locale/wa/LC_MESSAGES/calligra_shape_chart.mo share/locale/wa/LC_MESSAGES/calligra_shape_comment.mo share/locale/wa/LC_MESSAGES/calligra_shape_formula.mo share/locale/wa/LC_MESSAGES/calligra_shape_music.mo share/locale/wa/LC_MESSAGES/calligra_shape_paths.mo share/locale/wa/LC_MESSAGES/calligra_shape_picture.mo share/locale/wa/LC_MESSAGES/calligra_shape_plugin.mo share/locale/wa/LC_MESSAGES/calligra_shape_spreadsheet.mo share/locale/wa/LC_MESSAGES/calligra_shape_text.mo share/locale/wa/LC_MESSAGES/calligra_shape_vector.mo share/locale/wa/LC_MESSAGES/calligra_shape_video.mo share/locale/wa/LC_MESSAGES/calligra_textediting_autocorrect.mo share/locale/wa/LC_MESSAGES/calligra_textediting_changecase.mo share/locale/wa/LC_MESSAGES/calligra_textediting_spellcheck.mo share/locale/wa/LC_MESSAGES/calligra_textediting_thesaurus.mo share/locale/wa/LC_MESSAGES/calligra_textinlineobject_variables.mo share/locale/wa/LC_MESSAGES/calligrafilters.mo share/locale/wa/LC_MESSAGES/calligrasheets.mo share/locale/wa/LC_MESSAGES/calligrasheets_calendar.mo share/locale/wa/LC_MESSAGES/calligrasheets_solver.mo share/locale/wa/LC_MESSAGES/calligrastage.mo share/locale/wa/LC_MESSAGES/calligrawords.mo share/locale/wa/LC_MESSAGES/karbon.mo share/locale/wa/LC_MESSAGES/kocolorspaces.mo share/locale/wa/LC_MESSAGES/koconverter.mo share/locale/xh/LC_MESSAGES/KarbonFilterEffects.mo share/locale/xh/LC_MESSAGES/KarbonTools.mo share/locale/xh/LC_MESSAGES/calligra.mo share/locale/xh/LC_MESSAGES/calligra_textediting_thesaurus.mo share/locale/xh/LC_MESSAGES/calligrafilters.mo share/locale/xh/LC_MESSAGES/calligrasheets.mo share/locale/xh/LC_MESSAGES/calligrastage.mo share/locale/xh/LC_MESSAGES/calligrawords.mo share/locale/xh/LC_MESSAGES/karbon.mo share/locale/xh/LC_MESSAGES/koconverter.mo share/locale/zh_CN/LC_MESSAGES/KarbonFilterEffects.mo share/locale/zh_CN/LC_MESSAGES/KarbonTools.mo share/locale/zh_CN/LC_MESSAGES/braindump.mo share/locale/zh_CN/LC_MESSAGES/calligra-defaulttools.mo share/locale/zh_CN/LC_MESSAGES/calligra-dockers.mo share/locale/zh_CN/LC_MESSAGES/calligra-opener.mo share/locale/zh_CN/LC_MESSAGES/calligra.mo share/locale/zh_CN/LC_MESSAGES/calligra_semanticitem_contact.mo share/locale/zh_CN/LC_MESSAGES/calligra_semanticitem_event.mo share/locale/zh_CN/LC_MESSAGES/calligra_semanticitem_location.mo share/locale/zh_CN/LC_MESSAGES/calligra_shape_artistictext.mo share/locale/zh_CN/LC_MESSAGES/calligra_shape_chart.mo share/locale/zh_CN/LC_MESSAGES/calligra_shape_comment.mo share/locale/zh_CN/LC_MESSAGES/calligra_shape_formula.mo share/locale/zh_CN/LC_MESSAGES/calligra_shape_music.mo share/locale/zh_CN/LC_MESSAGES/calligra_shape_paths.mo share/locale/zh_CN/LC_MESSAGES/calligra_shape_picture.mo share/locale/zh_CN/LC_MESSAGES/calligra_shape_plugin.mo share/locale/zh_CN/LC_MESSAGES/calligra_shape_spreadsheet.mo share/locale/zh_CN/LC_MESSAGES/calligra_shape_template.mo share/locale/zh_CN/LC_MESSAGES/calligra_shape_text.mo share/locale/zh_CN/LC_MESSAGES/calligra_shape_threed.mo share/locale/zh_CN/LC_MESSAGES/calligra_shape_vector.mo share/locale/zh_CN/LC_MESSAGES/calligra_shape_video.mo share/locale/zh_CN/LC_MESSAGES/calligra_shape_webshape.mo share/locale/zh_CN/LC_MESSAGES/calligra_textediting_autocorrect.mo share/locale/zh_CN/LC_MESSAGES/calligra_textediting_changecase.mo share/locale/zh_CN/LC_MESSAGES/calligra_textediting_spellcheck.mo share/locale/zh_CN/LC_MESSAGES/calligra_textediting_thesaurus.mo share/locale/zh_CN/LC_MESSAGES/calligra_textinlineobject_variables.mo share/locale/zh_CN/LC_MESSAGES/calligrafilters.mo share/locale/zh_CN/LC_MESSAGES/calligralauncher.mo share/locale/zh_CN/LC_MESSAGES/calligrasheets.mo share/locale/zh_CN/LC_MESSAGES/calligrasheets_calendar.mo share/locale/zh_CN/LC_MESSAGES/calligrasheets_solver.mo share/locale/zh_CN/LC_MESSAGES/calligrastage.mo share/locale/zh_CN/LC_MESSAGES/calligrawords.mo share/locale/zh_CN/LC_MESSAGES/karbon.mo share/locale/zh_CN/LC_MESSAGES/kocolorspaces.mo share/locale/zh_CN/LC_MESSAGES/koconverter.mo share/locale/zh_CN/LC_MESSAGES/okularGenerator_odp.mo share/locale/zh_CN/LC_MESSAGES/okularGenerator_odt.mo share/locale/zh_TW/LC_MESSAGES/KarbonFilterEffects.mo share/locale/zh_TW/LC_MESSAGES/KarbonTools.mo share/locale/zh_TW/LC_MESSAGES/braindump.mo share/locale/zh_TW/LC_MESSAGES/calligra-defaulttools.mo share/locale/zh_TW/LC_MESSAGES/calligra-dockers.mo share/locale/zh_TW/LC_MESSAGES/calligra-opener.mo share/locale/zh_TW/LC_MESSAGES/calligra.mo share/locale/zh_TW/LC_MESSAGES/calligra_semanticitem_contact.mo share/locale/zh_TW/LC_MESSAGES/calligra_semanticitem_event.mo share/locale/zh_TW/LC_MESSAGES/calligra_semanticitem_location.mo share/locale/zh_TW/LC_MESSAGES/calligra_shape_artistictext.mo share/locale/zh_TW/LC_MESSAGES/calligra_shape_chart.mo share/locale/zh_TW/LC_MESSAGES/calligra_shape_comment.mo share/locale/zh_TW/LC_MESSAGES/calligra_shape_formula.mo share/locale/zh_TW/LC_MESSAGES/calligra_shape_music.mo share/locale/zh_TW/LC_MESSAGES/calligra_shape_paths.mo share/locale/zh_TW/LC_MESSAGES/calligra_shape_picture.mo share/locale/zh_TW/LC_MESSAGES/calligra_shape_plugin.mo share/locale/zh_TW/LC_MESSAGES/calligra_shape_spreadsheet.mo share/locale/zh_TW/LC_MESSAGES/calligra_shape_template.mo share/locale/zh_TW/LC_MESSAGES/calligra_shape_text.mo share/locale/zh_TW/LC_MESSAGES/calligra_shape_threed.mo share/locale/zh_TW/LC_MESSAGES/calligra_shape_vector.mo share/locale/zh_TW/LC_MESSAGES/calligra_shape_video.mo share/locale/zh_TW/LC_MESSAGES/calligra_shape_webshape.mo share/locale/zh_TW/LC_MESSAGES/calligra_textediting_autocorrect.mo share/locale/zh_TW/LC_MESSAGES/calligra_textediting_changecase.mo share/locale/zh_TW/LC_MESSAGES/calligra_textediting_spellcheck.mo share/locale/zh_TW/LC_MESSAGES/calligra_textediting_thesaurus.mo share/locale/zh_TW/LC_MESSAGES/calligra_textinlineobject_variables.mo share/locale/zh_TW/LC_MESSAGES/calligrafilters.mo share/locale/zh_TW/LC_MESSAGES/calligralauncher.mo share/locale/zh_TW/LC_MESSAGES/calligrasheets.mo share/locale/zh_TW/LC_MESSAGES/calligrasheets_calendar.mo share/locale/zh_TW/LC_MESSAGES/calligrasheets_solver.mo share/locale/zh_TW/LC_MESSAGES/calligrastage.mo share/locale/zh_TW/LC_MESSAGES/calligrawords.mo share/locale/zh_TW/LC_MESSAGES/karbon.mo share/locale/zh_TW/LC_MESSAGES/kocolorspaces.mo share/locale/zh_TW/LC_MESSAGES/koconverter.mo share/locale/zh_TW/LC_MESSAGES/okularGenerator_odp.mo share/locale/zh_TW/LC_MESSAGES/okularGenerator_odt.mo share/metainfo/org.kde.calligra.karbon.metainfo.xml share/metainfo/org.kde.calligra.metainfo.xml share/metainfo/org.kde.calligra.sheets.metainfo.xml share/metainfo/org.kde.calligra.stage.metainfo.xml share/metainfo/org.kde.calligra.words.metainfo.xml share/mime/packages/calligra_svm.xml share/mime/packages/wiki-format.xml share/templates/.source/Illustration.odg share/templates/.source/Presentation.odp share/templates/.source/SpreadSheet.ods share/templates/.source/TextDocument.odt share/templates/Illustration.desktop share/templates/Presentation.desktop share/templates/SpreadSheet.desktop share/templates/TextDocument.desktop diff --git a/editors/ghostwriter/distinfo b/editors/ghostwriter/distinfo index 1ad5fa48c068..d3fa98ab9671 100644 --- a/editors/ghostwriter/distinfo +++ b/editors/ghostwriter/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1751381332 -SHA256 (KDE/release-service/25.04.3/ghostwriter-25.04.3.tar.xz) = 87043eeb3bd4f096e56ce4df26d001ab158bf95cddbd01f69866f1c1223d73e8 -SIZE (KDE/release-service/25.04.3/ghostwriter-25.04.3.tar.xz) = 2722240 +TIMESTAMP = 1754646243 +SHA256 (KDE/release-service/25.08.0/ghostwriter-25.08.0.tar.xz) = e263840e6e4a5f24ca46c615cfafd0c4b792349bb66354a40ac3beef00b5d8b7 +SIZE (KDE/release-service/25.08.0/ghostwriter-25.08.0.tar.xz) = 2728260 diff --git a/editors/ghostwriter/pkg-plist b/editors/ghostwriter/pkg-plist index 0388657cb5d6..e23a7b4c4acd 100644 --- a/editors/ghostwriter/pkg-plist +++ b/editors/ghostwriter/pkg-plist @@ -1,53 +1,54 @@ bin/ghostwriter share/applications/org.kde.ghostwriter.desktop share/icons/hicolor/128x128/apps/ghostwriter.png share/icons/hicolor/16x16/apps/ghostwriter.png share/icons/hicolor/22x22/apps/ghostwriter.png share/icons/hicolor/256x256/apps/ghostwriter.png share/icons/hicolor/32x32/apps/ghostwriter.png share/icons/hicolor/64x64/apps/ghostwriter.png share/icons/hicolor/scalable/apps/ghostwriter.svg share/locale/ca/LC_MESSAGES/ghostwriter_qt.qm share/locale/ca@valencia/LC_MESSAGES/ghostwriter_qt.qm share/locale/cs/LC_MESSAGES/ghostwriter_qt.qm share/locale/de/LC_MESSAGES/ghostwriter_qt.qm share/locale/en/LC_MESSAGES/ghostwriter_qt.qm share/locale/en_GB/LC_MESSAGES/ghostwriter_qt.qm share/locale/eo/LC_MESSAGES/ghostwriter_qt.qm share/locale/es/LC_MESSAGES/ghostwriter_qt.qm share/locale/eu/LC_MESSAGES/ghostwriter_qt.qm share/locale/fi/LC_MESSAGES/ghostwriter_qt.qm share/locale/fr/LC_MESSAGES/ghostwriter_qt.qm share/locale/gl/LC_MESSAGES/ghostwriter_qt.qm share/locale/he/LC_MESSAGES/ghostwriter_qt.qm share/locale/hi/LC_MESSAGES/ghostwriter_qt.qm share/locale/ia/LC_MESSAGES/ghostwriter_qt.qm share/locale/id/LC_MESSAGES/ghostwriter_qt.qm share/locale/it/LC_MESSAGES/ghostwriter_qt.qm share/locale/ja/LC_MESSAGES/ghostwriter_qt.qm share/locale/ka/LC_MESSAGES/ghostwriter_qt.qm share/locale/ko/LC_MESSAGES/ghostwriter_qt.qm share/locale/lt/LC_MESSAGES/ghostwriter_qt.qm +share/locale/lv/LC_MESSAGES/ghostwriter_qt.qm share/locale/nl/LC_MESSAGES/ghostwriter_qt.qm share/locale/pl/LC_MESSAGES/ghostwriter_qt.qm share/locale/pt/LC_MESSAGES/ghostwriter_qt.qm share/locale/pt_BR/LC_MESSAGES/ghostwriter_qt.qm share/locale/ru/LC_MESSAGES/ghostwriter_qt.qm share/locale/sa/LC_MESSAGES/ghostwriter_qt.qm share/locale/sk/LC_MESSAGES/ghostwriter_qt.qm share/locale/sl/LC_MESSAGES/ghostwriter_qt.qm share/locale/sv/LC_MESSAGES/ghostwriter_qt.qm share/locale/tr/LC_MESSAGES/ghostwriter_qt.qm share/locale/uk/LC_MESSAGES/ghostwriter_qt.qm share/locale/zh_CN/LC_MESSAGES/ghostwriter_qt.qm share/locale/zh_TW/LC_MESSAGES/ghostwriter_qt.qm share/man/ca/man1/ghostwriter.1.gz share/man/es/man1/ghostwriter.1.gz share/man/it/man1/ghostwriter.1.gz share/man/man1/ghostwriter.1.gz share/man/nl/man1/ghostwriter.1.gz share/man/ru/man1/ghostwriter.1.gz share/man/sl/man1/ghostwriter.1.gz share/man/sv/man1/ghostwriter.1.gz share/man/uk/man1/ghostwriter.1.gz share/metainfo/org.kde.ghostwriter.metainfo.xml diff --git a/editors/kate/distinfo b/editors/kate/distinfo index 8b0b7a7e8a1c..bbabfb2099f4 100644 --- a/editors/kate/distinfo +++ b/editors/kate/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1751381334 -SHA256 (KDE/release-service/25.04.3/kate-25.04.3.tar.xz) = 1d4546f8382e1e3bc8410be1c1af88e06eb66ce12c8160c4c84ac28bfb618e97 -SIZE (KDE/release-service/25.04.3/kate-25.04.3.tar.xz) = 8377752 +TIMESTAMP = 1754646246 +SHA256 (KDE/release-service/25.08.0/kate-25.08.0.tar.xz) = 7fed779b76da86f687c9509c1c22b419b2a97d57c41e693d880664b6c20a2f37 +SIZE (KDE/release-service/25.08.0/kate-25.08.0.tar.xz) = 8417060 diff --git a/editors/kate/pkg-plist b/editors/kate/pkg-plist index 5a59601cf60c..0db9fa3b898a 100644 --- a/editors/kate/pkg-plist +++ b/editors/kate/pkg-plist @@ -1,1760 +1,1786 @@ bin/kate bin/kwrite lib/libkateprivate.so.%%KDE_APPLICATIONS_VERSION%% +%%QT_PLUGINDIR%%/kf6/ktexteditor/bookmarksplugin.so %%QT_PLUGINDIR%%/kf6/ktexteditor/cmaketoolsplugin.so %%QT_PLUGINDIR%%/kf6/ktexteditor/compilerexplorer.so %%QT_PLUGINDIR%%/kf6/ktexteditor/eslintplugin.so %%QT_PLUGINDIR%%/kf6/ktexteditor/externaltoolsplugin.so %%QT_PLUGINDIR%%/kf6/ktexteditor/formatplugin.so %%QT_PLUGINDIR%%/kf6/ktexteditor/katebacktracebrowserplugin.so %%QT_PLUGINDIR%%/kf6/ktexteditor/katebuildplugin.so %%QT_PLUGINDIR%%/kf6/ktexteditor/katecloseexceptplugin.so %%QT_PLUGINDIR%%/kf6/ktexteditor/katecolorpickerplugin.so %%QT_PLUGINDIR%%/kf6/ktexteditor/katectagsplugin.so %%QT_PLUGINDIR%%/kf6/ktexteditor/katefilebrowserplugin.so %%QT_PLUGINDIR%%/kf6/ktexteditor/katefiletreeplugin.so %%QT_PLUGINDIR%%/kf6/ktexteditor/kategdbplugin.so %%QT_PLUGINDIR%%/kf6/ktexteditor/kategitblameplugin.so %%QT_PLUGINDIR%%/kf6/ktexteditor/katekonsoleplugin.so %%QT_PLUGINDIR%%/kf6/ktexteditor/kateprojectplugin.so %%QT_PLUGINDIR%%/kf6/ktexteditor/katereplicodeplugin.so %%QT_PLUGINDIR%%/kf6/ktexteditor/katesearchplugin.so %%QT_PLUGINDIR%%/kf6/ktexteditor/katesnippetsplugin.so %%QT_PLUGINDIR%%/kf6/ktexteditor/katesqlplugin.so %%QT_PLUGINDIR%%/kf6/ktexteditor/katesymbolviewerplugin.so %%QT_PLUGINDIR%%/kf6/ktexteditor/katexmlcheckplugin.so %%QT_PLUGINDIR%%/kf6/ktexteditor/katexmltoolsplugin.so %%QT_PLUGINDIR%%/kf6/ktexteditor/keyboardmacrosplugin.so %%QT_PLUGINDIR%%/kf6/ktexteditor/ktexteditorpreviewplugin.so %%QT_PLUGINDIR%%/kf6/ktexteditor/latexcompletionplugin.so %%QT_PLUGINDIR%%/kf6/ktexteditor/lspclientplugin.so %%QT_PLUGINDIR%%/kf6/ktexteditor/openlinkplugin.so %%QT_PLUGINDIR%%/kf6/ktexteditor/rainbowparens.so %%QT_PLUGINDIR%%/kf6/ktexteditor/rbqlplugin.so %%QT_PLUGINDIR%%/kf6/ktexteditor/tabswitcherplugin.so %%QT_PLUGINDIR%%/kf6/ktexteditor/templateplugin.so %%QT_PLUGINDIR%%/kf6/ktexteditor/textfilterplugin.so share/applications/org.kde.kate.desktop share/applications/org.kde.kwrite.desktop share/icons/hicolor/128x128/apps/kate.png share/icons/hicolor/128x128/apps/kwrite.png share/icons/hicolor/150x150/apps/kate.png share/icons/hicolor/150x150/apps/kwrite.png share/icons/hicolor/16x16/apps/kate.png share/icons/hicolor/16x16/apps/kwrite.png share/icons/hicolor/22x22/apps/kate.png share/icons/hicolor/22x22/apps/kwrite.png share/icons/hicolor/256x256/apps/kate.png share/icons/hicolor/256x256/apps/kwrite.png share/icons/hicolor/310x310/apps/kate.png share/icons/hicolor/310x310/apps/kwrite.png share/icons/hicolor/32x32/apps/kate.png share/icons/hicolor/32x32/apps/kwrite.png share/icons/hicolor/44x44/apps/kate.png share/icons/hicolor/44x44/apps/kwrite.png share/icons/hicolor/48x48/apps/kate.png share/icons/hicolor/48x48/apps/kwrite.png share/icons/hicolor/512x512/apps/kate.png share/icons/hicolor/512x512/apps/kwrite.png share/icons/hicolor/64x64/apps/kate.png share/icons/hicolor/64x64/apps/kwrite.png share/icons/hicolor/scalable/apps/kate.svg share/icons/hicolor/scalable/apps/kwrite.svg share/kateproject/kateproject.example share/katexmltools/html4-loose.dtd.xml share/katexmltools/html4-strict.dtd.xml share/katexmltools/kcfg.dtd.xml share/katexmltools/kde-docbook.dtd.xml share/katexmltools/kpartgui.dtd.xml share/katexmltools/language.dtd.xml share/katexmltools/simplify_dtd.xsl share/katexmltools/testcases.xml share/katexmltools/xhtml1-frameset.dtd.xml share/katexmltools/xhtml1-strict.dtd.xml share/katexmltools/xhtml1-transitional.dtd.xml share/katexmltools/xslt-1.0.dtd.xml share/locale/af/LC_MESSAGES/kate.mo share/locale/af/LC_MESSAGES/katetextfilter.mo share/locale/af/LC_MESSAGES/katexmltools.mo share/locale/ar/LC_MESSAGES/formatplugin.mo share/locale/ar/LC_MESSAGES/kate-ctags-plugin.mo share/locale/ar/LC_MESSAGES/kate-replicode-plugin.mo share/locale/ar/LC_MESSAGES/kate.mo share/locale/ar/LC_MESSAGES/katebacktracebrowserplugin.mo +share/locale/ar/LC_MESSAGES/katebookmarksplugin.mo share/locale/ar/LC_MESSAGES/katebuild-plugin.mo share/locale/ar/LC_MESSAGES/katecloseexceptplugin.mo share/locale/ar/LC_MESSAGES/katecolorpickerplugin.mo share/locale/ar/LC_MESSAGES/katecompilerexplorer.mo share/locale/ar/LC_MESSAGES/kateexternaltoolsplugin.mo share/locale/ar/LC_MESSAGES/katefilebrowserplugin.mo share/locale/ar/LC_MESSAGES/katefiletree.mo share/locale/ar/LC_MESSAGES/kategdbplugin.mo share/locale/ar/LC_MESSAGES/kategitblameplugin.mo share/locale/ar/LC_MESSAGES/katekeyboardmacros.mo share/locale/ar/LC_MESSAGES/katekonsoleplugin.mo share/locale/ar/LC_MESSAGES/kateproject.mo share/locale/ar/LC_MESSAGES/katesearch.mo share/locale/ar/LC_MESSAGES/katesnippetsplugin.mo share/locale/ar/LC_MESSAGES/katesql.mo share/locale/ar/LC_MESSAGES/katesymbolviewer.mo share/locale/ar/LC_MESSAGES/katetextfilter.mo share/locale/ar/LC_MESSAGES/katexmlcheck.mo share/locale/ar/LC_MESSAGES/katexmltools.mo share/locale/ar/LC_MESSAGES/ktexteditorpreviewplugin.mo share/locale/ar/LC_MESSAGES/lspclient.mo share/locale/ar/LC_MESSAGES/rainbowparens.mo share/locale/ar/LC_MESSAGES/rbqlplugin.mo share/locale/ar/LC_MESSAGES/tabswitcherplugin.mo share/locale/ast/LC_MESSAGES/formatplugin.mo share/locale/ast/LC_MESSAGES/kate-ctags-plugin.mo share/locale/ast/LC_MESSAGES/kate-replicode-plugin.mo share/locale/ast/LC_MESSAGES/kate.mo share/locale/ast/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/ast/LC_MESSAGES/katebuild-plugin.mo share/locale/ast/LC_MESSAGES/katecloseexceptplugin.mo share/locale/ast/LC_MESSAGES/katecolorpickerplugin.mo share/locale/ast/LC_MESSAGES/kateexternaltoolsplugin.mo share/locale/ast/LC_MESSAGES/katefilebrowserplugin.mo share/locale/ast/LC_MESSAGES/katefiletree.mo share/locale/ast/LC_MESSAGES/kategdbplugin.mo share/locale/ast/LC_MESSAGES/kategitblameplugin.mo share/locale/ast/LC_MESSAGES/katekeyboardmacros.mo share/locale/ast/LC_MESSAGES/katekonsoleplugin.mo share/locale/ast/LC_MESSAGES/kateproject.mo share/locale/ast/LC_MESSAGES/katesearch.mo share/locale/ast/LC_MESSAGES/katesnippetsplugin.mo share/locale/ast/LC_MESSAGES/katesql.mo share/locale/ast/LC_MESSAGES/katesymbolviewer.mo share/locale/ast/LC_MESSAGES/katetextfilter.mo share/locale/ast/LC_MESSAGES/katexmlcheck.mo share/locale/ast/LC_MESSAGES/katexmltools.mo share/locale/ast/LC_MESSAGES/ktexteditorpreviewplugin.mo share/locale/ast/LC_MESSAGES/lspclient.mo share/locale/ast/LC_MESSAGES/rainbowparens.mo share/locale/ast/LC_MESSAGES/tabswitcherplugin.mo share/locale/az/LC_MESSAGES/kate-ctags-plugin.mo share/locale/az/LC_MESSAGES/kate-replicode-plugin.mo share/locale/az/LC_MESSAGES/kate.mo share/locale/az/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/az/LC_MESSAGES/katebuild-plugin.mo share/locale/az/LC_MESSAGES/katecloseexceptplugin.mo share/locale/az/LC_MESSAGES/katecolorpickerplugin.mo share/locale/az/LC_MESSAGES/kateexternaltoolsplugin.mo share/locale/az/LC_MESSAGES/katefilebrowserplugin.mo share/locale/az/LC_MESSAGES/katefiletree.mo share/locale/az/LC_MESSAGES/kategdbplugin.mo share/locale/az/LC_MESSAGES/kategitblameplugin.mo share/locale/az/LC_MESSAGES/katekeyboardmacros.mo share/locale/az/LC_MESSAGES/katekonsoleplugin.mo share/locale/az/LC_MESSAGES/kateproject.mo share/locale/az/LC_MESSAGES/katesearch.mo share/locale/az/LC_MESSAGES/katesnippetsplugin.mo share/locale/az/LC_MESSAGES/katesql.mo share/locale/az/LC_MESSAGES/katesymbolviewer.mo share/locale/az/LC_MESSAGES/katetextfilter.mo share/locale/az/LC_MESSAGES/katexmlcheck.mo share/locale/az/LC_MESSAGES/katexmltools.mo share/locale/az/LC_MESSAGES/ktexteditorpreviewplugin.mo share/locale/az/LC_MESSAGES/lspclient.mo share/locale/az/LC_MESSAGES/tabswitcherplugin.mo share/locale/be/LC_MESSAGES/kate.mo share/locale/be/LC_MESSAGES/katefilebrowserplugin.mo share/locale/be/LC_MESSAGES/katekonsoleplugin.mo share/locale/be/LC_MESSAGES/katesymbolviewer.mo share/locale/be/LC_MESSAGES/katetextfilter.mo share/locale/be/LC_MESSAGES/katexmltools.mo share/locale/bg/LC_MESSAGES/formatplugin.mo share/locale/bg/LC_MESSAGES/kate-ctags-plugin.mo share/locale/bg/LC_MESSAGES/kate-replicode-plugin.mo share/locale/bg/LC_MESSAGES/kate.mo share/locale/bg/LC_MESSAGES/katebacktracebrowserplugin.mo +share/locale/bg/LC_MESSAGES/katebookmarksplugin.mo share/locale/bg/LC_MESSAGES/katebuild-plugin.mo share/locale/bg/LC_MESSAGES/katecloseexceptplugin.mo share/locale/bg/LC_MESSAGES/katecolorpickerplugin.mo share/locale/bg/LC_MESSAGES/katecompilerexplorer.mo share/locale/bg/LC_MESSAGES/kateexternaltoolsplugin.mo share/locale/bg/LC_MESSAGES/katefilebrowserplugin.mo share/locale/bg/LC_MESSAGES/katefiletree.mo share/locale/bg/LC_MESSAGES/kategdbplugin.mo share/locale/bg/LC_MESSAGES/kategitblameplugin.mo share/locale/bg/LC_MESSAGES/katekeyboardmacros.mo share/locale/bg/LC_MESSAGES/katekonsoleplugin.mo share/locale/bg/LC_MESSAGES/kateproject.mo share/locale/bg/LC_MESSAGES/katesearch.mo share/locale/bg/LC_MESSAGES/katesnippetsplugin.mo share/locale/bg/LC_MESSAGES/katesql.mo share/locale/bg/LC_MESSAGES/katesymbolviewer.mo share/locale/bg/LC_MESSAGES/katetextfilter.mo share/locale/bg/LC_MESSAGES/katexmlcheck.mo share/locale/bg/LC_MESSAGES/katexmltools.mo share/locale/bg/LC_MESSAGES/ktexteditorpreviewplugin.mo share/locale/bg/LC_MESSAGES/lspclient.mo share/locale/bg/LC_MESSAGES/rainbowparens.mo share/locale/bg/LC_MESSAGES/rbqlplugin.mo share/locale/bg/LC_MESSAGES/tabswitcherplugin.mo share/locale/br/LC_MESSAGES/kate.mo share/locale/br/LC_MESSAGES/katesymbolviewer.mo share/locale/br/LC_MESSAGES/katetextfilter.mo share/locale/br/LC_MESSAGES/katexmltools.mo share/locale/bs/LC_MESSAGES/kate-ctags-plugin.mo share/locale/bs/LC_MESSAGES/kate.mo share/locale/bs/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/bs/LC_MESSAGES/katebuild-plugin.mo share/locale/bs/LC_MESSAGES/katecloseexceptplugin.mo share/locale/bs/LC_MESSAGES/katefilebrowserplugin.mo share/locale/bs/LC_MESSAGES/katefiletree.mo share/locale/bs/LC_MESSAGES/kategdbplugin.mo share/locale/bs/LC_MESSAGES/katekonsoleplugin.mo share/locale/bs/LC_MESSAGES/kateproject.mo share/locale/bs/LC_MESSAGES/katesearch.mo share/locale/bs/LC_MESSAGES/katesnippetsplugin.mo share/locale/bs/LC_MESSAGES/katesql.mo share/locale/bs/LC_MESSAGES/katesymbolviewer.mo share/locale/bs/LC_MESSAGES/katetextfilter.mo share/locale/bs/LC_MESSAGES/katexmltools.mo share/locale/bs/LC_MESSAGES/tabswitcherplugin.mo share/locale/ca/LC_MESSAGES/formatplugin.mo share/locale/ca/LC_MESSAGES/kate-ctags-plugin.mo share/locale/ca/LC_MESSAGES/kate-replicode-plugin.mo share/locale/ca/LC_MESSAGES/kate.mo share/locale/ca/LC_MESSAGES/katebacktracebrowserplugin.mo +share/locale/ca/LC_MESSAGES/katebookmarksplugin.mo share/locale/ca/LC_MESSAGES/katebuild-plugin.mo share/locale/ca/LC_MESSAGES/katecloseexceptplugin.mo share/locale/ca/LC_MESSAGES/katecolorpickerplugin.mo share/locale/ca/LC_MESSAGES/katecompilerexplorer.mo share/locale/ca/LC_MESSAGES/kateexternaltoolsplugin.mo share/locale/ca/LC_MESSAGES/katefilebrowserplugin.mo share/locale/ca/LC_MESSAGES/katefiletree.mo share/locale/ca/LC_MESSAGES/kategdbplugin.mo share/locale/ca/LC_MESSAGES/kategitblameplugin.mo share/locale/ca/LC_MESSAGES/katekeyboardmacros.mo share/locale/ca/LC_MESSAGES/katekonsoleplugin.mo share/locale/ca/LC_MESSAGES/kateproject.mo share/locale/ca/LC_MESSAGES/katesearch.mo share/locale/ca/LC_MESSAGES/katesnippetsplugin.mo share/locale/ca/LC_MESSAGES/katesql.mo share/locale/ca/LC_MESSAGES/katesymbolviewer.mo share/locale/ca/LC_MESSAGES/katetextfilter.mo share/locale/ca/LC_MESSAGES/katexmlcheck.mo share/locale/ca/LC_MESSAGES/katexmltools.mo share/locale/ca/LC_MESSAGES/ktexteditorpreviewplugin.mo share/locale/ca/LC_MESSAGES/lspclient.mo share/locale/ca/LC_MESSAGES/rainbowparens.mo share/locale/ca/LC_MESSAGES/rbqlplugin.mo share/locale/ca/LC_MESSAGES/tabswitcherplugin.mo share/locale/ca@valencia/LC_MESSAGES/formatplugin.mo share/locale/ca@valencia/LC_MESSAGES/kate-ctags-plugin.mo share/locale/ca@valencia/LC_MESSAGES/kate-replicode-plugin.mo share/locale/ca@valencia/LC_MESSAGES/kate.mo share/locale/ca@valencia/LC_MESSAGES/katebacktracebrowserplugin.mo +share/locale/ca@valencia/LC_MESSAGES/katebookmarksplugin.mo share/locale/ca@valencia/LC_MESSAGES/katebuild-plugin.mo share/locale/ca@valencia/LC_MESSAGES/katecloseexceptplugin.mo share/locale/ca@valencia/LC_MESSAGES/katecolorpickerplugin.mo share/locale/ca@valencia/LC_MESSAGES/katecompilerexplorer.mo share/locale/ca@valencia/LC_MESSAGES/kateexternaltoolsplugin.mo share/locale/ca@valencia/LC_MESSAGES/katefilebrowserplugin.mo share/locale/ca@valencia/LC_MESSAGES/katefiletree.mo share/locale/ca@valencia/LC_MESSAGES/kategdbplugin.mo share/locale/ca@valencia/LC_MESSAGES/kategitblameplugin.mo share/locale/ca@valencia/LC_MESSAGES/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/katebookmarksplugin.mo share/locale/de/LC_MESSAGES/katebuild-plugin.mo share/locale/de/LC_MESSAGES/katecloseexceptplugin.mo share/locale/de/LC_MESSAGES/katecolorpickerplugin.mo share/locale/de/LC_MESSAGES/katecompilerexplorer.mo share/locale/de/LC_MESSAGES/kateexternaltoolsplugin.mo share/locale/de/LC_MESSAGES/katefilebrowserplugin.mo share/locale/de/LC_MESSAGES/katefiletree.mo share/locale/de/LC_MESSAGES/kategdbplugin.mo share/locale/de/LC_MESSAGES/kategitblameplugin.mo share/locale/de/LC_MESSAGES/katekeyboardmacros.mo share/locale/de/LC_MESSAGES/katekonsoleplugin.mo share/locale/de/LC_MESSAGES/kateproject.mo share/locale/de/LC_MESSAGES/katesearch.mo share/locale/de/LC_MESSAGES/katesnippetsplugin.mo share/locale/de/LC_MESSAGES/katesql.mo share/locale/de/LC_MESSAGES/katesymbolviewer.mo share/locale/de/LC_MESSAGES/katetextfilter.mo share/locale/de/LC_MESSAGES/katexmlcheck.mo share/locale/de/LC_MESSAGES/katexmltools.mo share/locale/de/LC_MESSAGES/ktexteditorpreviewplugin.mo share/locale/de/LC_MESSAGES/lspclient.mo share/locale/de/LC_MESSAGES/rainbowparens.mo share/locale/de/LC_MESSAGES/rbqlplugin.mo share/locale/de/LC_MESSAGES/tabswitcherplugin.mo share/locale/el/LC_MESSAGES/kate-ctags-plugin.mo share/locale/el/LC_MESSAGES/kate-replicode-plugin.mo share/locale/el/LC_MESSAGES/kate.mo share/locale/el/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/el/LC_MESSAGES/katebuild-plugin.mo share/locale/el/LC_MESSAGES/katecloseexceptplugin.mo share/locale/el/LC_MESSAGES/katecolorpickerplugin.mo share/locale/el/LC_MESSAGES/kateexternaltoolsplugin.mo share/locale/el/LC_MESSAGES/katefilebrowserplugin.mo share/locale/el/LC_MESSAGES/katefiletree.mo share/locale/el/LC_MESSAGES/kategdbplugin.mo share/locale/el/LC_MESSAGES/kategitblameplugin.mo share/locale/el/LC_MESSAGES/katekeyboardmacros.mo share/locale/el/LC_MESSAGES/katekonsoleplugin.mo share/locale/el/LC_MESSAGES/kateproject.mo share/locale/el/LC_MESSAGES/katesearch.mo share/locale/el/LC_MESSAGES/katesnippetsplugin.mo share/locale/el/LC_MESSAGES/katesql.mo share/locale/el/LC_MESSAGES/katesymbolviewer.mo share/locale/el/LC_MESSAGES/katetextfilter.mo share/locale/el/LC_MESSAGES/katexmlcheck.mo share/locale/el/LC_MESSAGES/katexmltools.mo share/locale/el/LC_MESSAGES/ktexteditorpreviewplugin.mo share/locale/el/LC_MESSAGES/lspclient.mo share/locale/el/LC_MESSAGES/tabswitcherplugin.mo share/locale/en_GB/LC_MESSAGES/formatplugin.mo share/locale/en_GB/LC_MESSAGES/kate-ctags-plugin.mo share/locale/en_GB/LC_MESSAGES/kate-replicode-plugin.mo share/locale/en_GB/LC_MESSAGES/kate.mo share/locale/en_GB/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/en_GB/LC_MESSAGES/katebuild-plugin.mo share/locale/en_GB/LC_MESSAGES/katecloseexceptplugin.mo share/locale/en_GB/LC_MESSAGES/katecolorpickerplugin.mo share/locale/en_GB/LC_MESSAGES/katecompilerexplorer.mo share/locale/en_GB/LC_MESSAGES/kateexternaltoolsplugin.mo share/locale/en_GB/LC_MESSAGES/katefilebrowserplugin.mo share/locale/en_GB/LC_MESSAGES/katefiletree.mo share/locale/en_GB/LC_MESSAGES/kategdbplugin.mo share/locale/en_GB/LC_MESSAGES/kategitblameplugin.mo share/locale/en_GB/LC_MESSAGES/katekeyboardmacros.mo share/locale/en_GB/LC_MESSAGES/katekonsoleplugin.mo share/locale/en_GB/LC_MESSAGES/kateproject.mo share/locale/en_GB/LC_MESSAGES/katesearch.mo share/locale/en_GB/LC_MESSAGES/katesnippetsplugin.mo share/locale/en_GB/LC_MESSAGES/katesql.mo share/locale/en_GB/LC_MESSAGES/katesymbolviewer.mo share/locale/en_GB/LC_MESSAGES/katetextfilter.mo share/locale/en_GB/LC_MESSAGES/katexmlcheck.mo share/locale/en_GB/LC_MESSAGES/katexmltools.mo share/locale/en_GB/LC_MESSAGES/ktexteditorpreviewplugin.mo share/locale/en_GB/LC_MESSAGES/lspclient.mo share/locale/en_GB/LC_MESSAGES/rainbowparens.mo share/locale/en_GB/LC_MESSAGES/rbqlplugin.mo share/locale/en_GB/LC_MESSAGES/tabswitcherplugin.mo share/locale/eo/LC_MESSAGES/formatplugin.mo share/locale/eo/LC_MESSAGES/kate-ctags-plugin.mo share/locale/eo/LC_MESSAGES/kate-replicode-plugin.mo share/locale/eo/LC_MESSAGES/kate.mo share/locale/eo/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/eo/LC_MESSAGES/katebuild-plugin.mo share/locale/eo/LC_MESSAGES/katecloseexceptplugin.mo share/locale/eo/LC_MESSAGES/katecolorpickerplugin.mo share/locale/eo/LC_MESSAGES/katecompilerexplorer.mo share/locale/eo/LC_MESSAGES/kateexternaltoolsplugin.mo share/locale/eo/LC_MESSAGES/katefilebrowserplugin.mo share/locale/eo/LC_MESSAGES/katefiletree.mo share/locale/eo/LC_MESSAGES/kategdbplugin.mo share/locale/eo/LC_MESSAGES/kategitblameplugin.mo share/locale/eo/LC_MESSAGES/katekeyboardmacros.mo share/locale/eo/LC_MESSAGES/katekonsoleplugin.mo share/locale/eo/LC_MESSAGES/kateproject.mo share/locale/eo/LC_MESSAGES/katesearch.mo share/locale/eo/LC_MESSAGES/katesnippetsplugin.mo share/locale/eo/LC_MESSAGES/katesql.mo share/locale/eo/LC_MESSAGES/katesymbolviewer.mo share/locale/eo/LC_MESSAGES/katetextfilter.mo share/locale/eo/LC_MESSAGES/katexmlcheck.mo share/locale/eo/LC_MESSAGES/katexmltools.mo share/locale/eo/LC_MESSAGES/ktexteditorpreviewplugin.mo share/locale/eo/LC_MESSAGES/lspclient.mo share/locale/eo/LC_MESSAGES/rainbowparens.mo share/locale/eo/LC_MESSAGES/rbqlplugin.mo share/locale/eo/LC_MESSAGES/tabswitcherplugin.mo share/locale/es/LC_MESSAGES/formatplugin.mo share/locale/es/LC_MESSAGES/kate-ctags-plugin.mo share/locale/es/LC_MESSAGES/kate-replicode-plugin.mo share/locale/es/LC_MESSAGES/kate.mo share/locale/es/LC_MESSAGES/katebacktracebrowserplugin.mo +share/locale/es/LC_MESSAGES/katebookmarksplugin.mo share/locale/es/LC_MESSAGES/katebuild-plugin.mo share/locale/es/LC_MESSAGES/katecloseexceptplugin.mo share/locale/es/LC_MESSAGES/katecolorpickerplugin.mo share/locale/es/LC_MESSAGES/katecompilerexplorer.mo share/locale/es/LC_MESSAGES/kateexternaltoolsplugin.mo share/locale/es/LC_MESSAGES/katefilebrowserplugin.mo share/locale/es/LC_MESSAGES/katefiletree.mo share/locale/es/LC_MESSAGES/kategdbplugin.mo share/locale/es/LC_MESSAGES/kategitblameplugin.mo share/locale/es/LC_MESSAGES/katekeyboardmacros.mo share/locale/es/LC_MESSAGES/katekonsoleplugin.mo share/locale/es/LC_MESSAGES/kateproject.mo share/locale/es/LC_MESSAGES/katesearch.mo share/locale/es/LC_MESSAGES/katesnippetsplugin.mo share/locale/es/LC_MESSAGES/katesql.mo share/locale/es/LC_MESSAGES/katesymbolviewer.mo share/locale/es/LC_MESSAGES/katetextfilter.mo share/locale/es/LC_MESSAGES/katexmlcheck.mo share/locale/es/LC_MESSAGES/katexmltools.mo share/locale/es/LC_MESSAGES/ktexteditorpreviewplugin.mo share/locale/es/LC_MESSAGES/lspclient.mo share/locale/es/LC_MESSAGES/rainbowparens.mo share/locale/es/LC_MESSAGES/rbqlplugin.mo share/locale/es/LC_MESSAGES/tabswitcherplugin.mo share/locale/et/LC_MESSAGES/kate-ctags-plugin.mo share/locale/et/LC_MESSAGES/kate-replicode-plugin.mo share/locale/et/LC_MESSAGES/kate.mo share/locale/et/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/et/LC_MESSAGES/katebuild-plugin.mo share/locale/et/LC_MESSAGES/katecloseexceptplugin.mo share/locale/et/LC_MESSAGES/kateexternaltoolsplugin.mo share/locale/et/LC_MESSAGES/katefilebrowserplugin.mo share/locale/et/LC_MESSAGES/katefiletree.mo share/locale/et/LC_MESSAGES/kategdbplugin.mo share/locale/et/LC_MESSAGES/katekonsoleplugin.mo share/locale/et/LC_MESSAGES/kateproject.mo share/locale/et/LC_MESSAGES/katesearch.mo share/locale/et/LC_MESSAGES/katesnippetsplugin.mo share/locale/et/LC_MESSAGES/katesql.mo share/locale/et/LC_MESSAGES/katesymbolviewer.mo share/locale/et/LC_MESSAGES/katetextfilter.mo share/locale/et/LC_MESSAGES/katexmlcheck.mo share/locale/et/LC_MESSAGES/katexmltools.mo share/locale/et/LC_MESSAGES/ktexteditorpreviewplugin.mo share/locale/et/LC_MESSAGES/lspclient.mo share/locale/et/LC_MESSAGES/tabswitcherplugin.mo share/locale/eu/LC_MESSAGES/formatplugin.mo share/locale/eu/LC_MESSAGES/kate-ctags-plugin.mo share/locale/eu/LC_MESSAGES/kate-replicode-plugin.mo share/locale/eu/LC_MESSAGES/kate.mo share/locale/eu/LC_MESSAGES/katebacktracebrowserplugin.mo +share/locale/eu/LC_MESSAGES/katebookmarksplugin.mo share/locale/eu/LC_MESSAGES/katebuild-plugin.mo share/locale/eu/LC_MESSAGES/katecloseexceptplugin.mo share/locale/eu/LC_MESSAGES/katecolorpickerplugin.mo share/locale/eu/LC_MESSAGES/katecompilerexplorer.mo share/locale/eu/LC_MESSAGES/kateexternaltoolsplugin.mo share/locale/eu/LC_MESSAGES/katefilebrowserplugin.mo share/locale/eu/LC_MESSAGES/katefiletree.mo share/locale/eu/LC_MESSAGES/kategdbplugin.mo share/locale/eu/LC_MESSAGES/kategitblameplugin.mo share/locale/eu/LC_MESSAGES/katekeyboardmacros.mo share/locale/eu/LC_MESSAGES/katekonsoleplugin.mo share/locale/eu/LC_MESSAGES/kateproject.mo share/locale/eu/LC_MESSAGES/katesearch.mo share/locale/eu/LC_MESSAGES/katesnippetsplugin.mo share/locale/eu/LC_MESSAGES/katesql.mo share/locale/eu/LC_MESSAGES/katesymbolviewer.mo share/locale/eu/LC_MESSAGES/katetextfilter.mo share/locale/eu/LC_MESSAGES/katexmlcheck.mo share/locale/eu/LC_MESSAGES/katexmltools.mo share/locale/eu/LC_MESSAGES/ktexteditorpreviewplugin.mo share/locale/eu/LC_MESSAGES/lspclient.mo share/locale/eu/LC_MESSAGES/rainbowparens.mo share/locale/eu/LC_MESSAGES/rbqlplugin.mo share/locale/eu/LC_MESSAGES/tabswitcherplugin.mo share/locale/fa/LC_MESSAGES/kate-ctags-plugin.mo share/locale/fa/LC_MESSAGES/kate.mo share/locale/fa/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/fa/LC_MESSAGES/katebuild-plugin.mo share/locale/fa/LC_MESSAGES/katecloseexceptplugin.mo share/locale/fa/LC_MESSAGES/katefilebrowserplugin.mo share/locale/fa/LC_MESSAGES/kategdbplugin.mo share/locale/fa/LC_MESSAGES/katekonsoleplugin.mo share/locale/fa/LC_MESSAGES/katetextfilter.mo share/locale/fa/LC_MESSAGES/katexmltools.mo share/locale/fi/LC_MESSAGES/formatplugin.mo share/locale/fi/LC_MESSAGES/kate-ctags-plugin.mo share/locale/fi/LC_MESSAGES/kate-replicode-plugin.mo share/locale/fi/LC_MESSAGES/kate.mo share/locale/fi/LC_MESSAGES/katebacktracebrowserplugin.mo +share/locale/fi/LC_MESSAGES/katebookmarksplugin.mo share/locale/fi/LC_MESSAGES/katebuild-plugin.mo share/locale/fi/LC_MESSAGES/katecloseexceptplugin.mo share/locale/fi/LC_MESSAGES/katecolorpickerplugin.mo share/locale/fi/LC_MESSAGES/katecompilerexplorer.mo share/locale/fi/LC_MESSAGES/kateexternaltoolsplugin.mo share/locale/fi/LC_MESSAGES/katefilebrowserplugin.mo share/locale/fi/LC_MESSAGES/katefiletree.mo share/locale/fi/LC_MESSAGES/kategdbplugin.mo share/locale/fi/LC_MESSAGES/kategitblameplugin.mo share/locale/fi/LC_MESSAGES/katekeyboardmacros.mo share/locale/fi/LC_MESSAGES/katekonsoleplugin.mo share/locale/fi/LC_MESSAGES/kateproject.mo share/locale/fi/LC_MESSAGES/katesearch.mo share/locale/fi/LC_MESSAGES/katesnippetsplugin.mo share/locale/fi/LC_MESSAGES/katesql.mo share/locale/fi/LC_MESSAGES/katesymbolviewer.mo share/locale/fi/LC_MESSAGES/katetextfilter.mo share/locale/fi/LC_MESSAGES/katexmlcheck.mo share/locale/fi/LC_MESSAGES/katexmltools.mo share/locale/fi/LC_MESSAGES/ktexteditorpreviewplugin.mo share/locale/fi/LC_MESSAGES/lspclient.mo share/locale/fi/LC_MESSAGES/rainbowparens.mo share/locale/fi/LC_MESSAGES/rbqlplugin.mo share/locale/fi/LC_MESSAGES/tabswitcherplugin.mo share/locale/fr/LC_MESSAGES/formatplugin.mo share/locale/fr/LC_MESSAGES/kate-ctags-plugin.mo share/locale/fr/LC_MESSAGES/kate-replicode-plugin.mo share/locale/fr/LC_MESSAGES/kate.mo share/locale/fr/LC_MESSAGES/katebacktracebrowserplugin.mo +share/locale/fr/LC_MESSAGES/katebookmarksplugin.mo share/locale/fr/LC_MESSAGES/katebuild-plugin.mo share/locale/fr/LC_MESSAGES/katecloseexceptplugin.mo share/locale/fr/LC_MESSAGES/katecolorpickerplugin.mo share/locale/fr/LC_MESSAGES/katecompilerexplorer.mo share/locale/fr/LC_MESSAGES/kateexternaltoolsplugin.mo share/locale/fr/LC_MESSAGES/katefilebrowserplugin.mo share/locale/fr/LC_MESSAGES/katefiletree.mo share/locale/fr/LC_MESSAGES/kategdbplugin.mo share/locale/fr/LC_MESSAGES/kategitblameplugin.mo share/locale/fr/LC_MESSAGES/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/katebookmarksplugin.mo share/locale/he/LC_MESSAGES/katebuild-plugin.mo share/locale/he/LC_MESSAGES/katecloseexceptplugin.mo share/locale/he/LC_MESSAGES/katecolorpickerplugin.mo share/locale/he/LC_MESSAGES/katecompilerexplorer.mo share/locale/he/LC_MESSAGES/kateexternaltoolsplugin.mo share/locale/he/LC_MESSAGES/katefilebrowserplugin.mo share/locale/he/LC_MESSAGES/katefiletree.mo share/locale/he/LC_MESSAGES/kategdbplugin.mo share/locale/he/LC_MESSAGES/kategitblameplugin.mo share/locale/he/LC_MESSAGES/katekeyboardmacros.mo share/locale/he/LC_MESSAGES/katekonsoleplugin.mo share/locale/he/LC_MESSAGES/kateproject.mo share/locale/he/LC_MESSAGES/katesearch.mo share/locale/he/LC_MESSAGES/katesnippetsplugin.mo share/locale/he/LC_MESSAGES/katesql.mo share/locale/he/LC_MESSAGES/katesymbolviewer.mo share/locale/he/LC_MESSAGES/katetextfilter.mo share/locale/he/LC_MESSAGES/katexmlcheck.mo share/locale/he/LC_MESSAGES/katexmltools.mo share/locale/he/LC_MESSAGES/ktexteditorpreviewplugin.mo share/locale/he/LC_MESSAGES/lspclient.mo share/locale/he/LC_MESSAGES/rainbowparens.mo share/locale/he/LC_MESSAGES/rbqlplugin.mo share/locale/he/LC_MESSAGES/tabswitcherplugin.mo share/locale/hi/LC_MESSAGES/formatplugin.mo share/locale/hi/LC_MESSAGES/kate-ctags-plugin.mo share/locale/hi/LC_MESSAGES/kate-replicode-plugin.mo share/locale/hi/LC_MESSAGES/kate.mo share/locale/hi/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/hi/LC_MESSAGES/katebuild-plugin.mo share/locale/hi/LC_MESSAGES/katecloseexceptplugin.mo share/locale/hi/LC_MESSAGES/katecolorpickerplugin.mo share/locale/hi/LC_MESSAGES/katecompilerexplorer.mo share/locale/hi/LC_MESSAGES/kateexternaltoolsplugin.mo share/locale/hi/LC_MESSAGES/katefilebrowserplugin.mo share/locale/hi/LC_MESSAGES/katefiletree.mo share/locale/hi/LC_MESSAGES/kategdbplugin.mo share/locale/hi/LC_MESSAGES/kategitblameplugin.mo share/locale/hi/LC_MESSAGES/katekeyboardmacros.mo share/locale/hi/LC_MESSAGES/katekonsoleplugin.mo share/locale/hi/LC_MESSAGES/kateproject.mo share/locale/hi/LC_MESSAGES/katesearch.mo share/locale/hi/LC_MESSAGES/katesnippetsplugin.mo share/locale/hi/LC_MESSAGES/katesql.mo share/locale/hi/LC_MESSAGES/katesymbolviewer.mo share/locale/hi/LC_MESSAGES/katetextfilter.mo share/locale/hi/LC_MESSAGES/katexmlcheck.mo share/locale/hi/LC_MESSAGES/katexmltools.mo share/locale/hi/LC_MESSAGES/ktexteditorpreviewplugin.mo share/locale/hi/LC_MESSAGES/lspclient.mo share/locale/hi/LC_MESSAGES/rainbowparens.mo share/locale/hi/LC_MESSAGES/rbqlplugin.mo share/locale/hi/LC_MESSAGES/tabswitcherplugin.mo share/locale/hne/LC_MESSAGES/kate.mo share/locale/hne/LC_MESSAGES/katefilebrowserplugin.mo share/locale/hne/LC_MESSAGES/katekonsoleplugin.mo share/locale/hne/LC_MESSAGES/katesymbolviewer.mo share/locale/hne/LC_MESSAGES/katetextfilter.mo share/locale/hne/LC_MESSAGES/katexmltools.mo share/locale/hr/LC_MESSAGES/kate.mo share/locale/hr/LC_MESSAGES/katesymbolviewer.mo share/locale/hr/LC_MESSAGES/katetextfilter.mo share/locale/hr/LC_MESSAGES/katexmltools.mo share/locale/hsb/LC_MESSAGES/kate.mo share/locale/hu/LC_MESSAGES/formatplugin.mo share/locale/hu/LC_MESSAGES/kate-ctags-plugin.mo share/locale/hu/LC_MESSAGES/kate-replicode-plugin.mo share/locale/hu/LC_MESSAGES/kate.mo share/locale/hu/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/hu/LC_MESSAGES/katebuild-plugin.mo share/locale/hu/LC_MESSAGES/katecloseexceptplugin.mo share/locale/hu/LC_MESSAGES/katecolorpickerplugin.mo share/locale/hu/LC_MESSAGES/kateexternaltoolsplugin.mo share/locale/hu/LC_MESSAGES/katefilebrowserplugin.mo share/locale/hu/LC_MESSAGES/katefiletree.mo share/locale/hu/LC_MESSAGES/kategdbplugin.mo share/locale/hu/LC_MESSAGES/kategitblameplugin.mo share/locale/hu/LC_MESSAGES/katekonsoleplugin.mo share/locale/hu/LC_MESSAGES/kateproject.mo share/locale/hu/LC_MESSAGES/katesearch.mo share/locale/hu/LC_MESSAGES/katesnippetsplugin.mo share/locale/hu/LC_MESSAGES/katesql.mo share/locale/hu/LC_MESSAGES/katesymbolviewer.mo share/locale/hu/LC_MESSAGES/katetextfilter.mo share/locale/hu/LC_MESSAGES/katexmlcheck.mo share/locale/hu/LC_MESSAGES/katexmltools.mo share/locale/hu/LC_MESSAGES/ktexteditorpreviewplugin.mo share/locale/hu/LC_MESSAGES/lspclient.mo share/locale/hu/LC_MESSAGES/rainbowparens.mo share/locale/hu/LC_MESSAGES/tabswitcherplugin.mo share/locale/ia/LC_MESSAGES/formatplugin.mo share/locale/ia/LC_MESSAGES/kate-ctags-plugin.mo share/locale/ia/LC_MESSAGES/kate-replicode-plugin.mo share/locale/ia/LC_MESSAGES/kate.mo share/locale/ia/LC_MESSAGES/katebacktracebrowserplugin.mo +share/locale/ia/LC_MESSAGES/katebookmarksplugin.mo share/locale/ia/LC_MESSAGES/katebuild-plugin.mo share/locale/ia/LC_MESSAGES/katecloseexceptplugin.mo share/locale/ia/LC_MESSAGES/katecolorpickerplugin.mo share/locale/ia/LC_MESSAGES/katecompilerexplorer.mo share/locale/ia/LC_MESSAGES/kateexternaltoolsplugin.mo share/locale/ia/LC_MESSAGES/katefilebrowserplugin.mo share/locale/ia/LC_MESSAGES/katefiletree.mo share/locale/ia/LC_MESSAGES/kategdbplugin.mo share/locale/ia/LC_MESSAGES/kategitblameplugin.mo share/locale/ia/LC_MESSAGES/katekeyboardmacros.mo share/locale/ia/LC_MESSAGES/katekonsoleplugin.mo share/locale/ia/LC_MESSAGES/kateproject.mo share/locale/ia/LC_MESSAGES/katesearch.mo share/locale/ia/LC_MESSAGES/katesnippetsplugin.mo share/locale/ia/LC_MESSAGES/katesql.mo share/locale/ia/LC_MESSAGES/katesymbolviewer.mo share/locale/ia/LC_MESSAGES/katetextfilter.mo share/locale/ia/LC_MESSAGES/katexmlcheck.mo share/locale/ia/LC_MESSAGES/katexmltools.mo share/locale/ia/LC_MESSAGES/ktexteditorpreviewplugin.mo share/locale/ia/LC_MESSAGES/lspclient.mo share/locale/ia/LC_MESSAGES/rainbowparens.mo share/locale/ia/LC_MESSAGES/rbqlplugin.mo share/locale/ia/LC_MESSAGES/tabswitcherplugin.mo share/locale/id/LC_MESSAGES/kate-ctags-plugin.mo share/locale/id/LC_MESSAGES/kate-replicode-plugin.mo share/locale/id/LC_MESSAGES/kate.mo share/locale/id/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/id/LC_MESSAGES/katebuild-plugin.mo share/locale/id/LC_MESSAGES/katecloseexceptplugin.mo share/locale/id/LC_MESSAGES/katecolorpickerplugin.mo share/locale/id/LC_MESSAGES/kateexternaltoolsplugin.mo share/locale/id/LC_MESSAGES/katefilebrowserplugin.mo share/locale/id/LC_MESSAGES/katefiletree.mo share/locale/id/LC_MESSAGES/kategdbplugin.mo share/locale/id/LC_MESSAGES/kategitblameplugin.mo share/locale/id/LC_MESSAGES/katekeyboardmacros.mo share/locale/id/LC_MESSAGES/katekonsoleplugin.mo share/locale/id/LC_MESSAGES/kateproject.mo share/locale/id/LC_MESSAGES/katesearch.mo share/locale/id/LC_MESSAGES/katesnippetsplugin.mo share/locale/id/LC_MESSAGES/katesql.mo share/locale/id/LC_MESSAGES/katesymbolviewer.mo share/locale/id/LC_MESSAGES/katetextfilter.mo share/locale/id/LC_MESSAGES/katexmlcheck.mo share/locale/id/LC_MESSAGES/katexmltools.mo share/locale/id/LC_MESSAGES/ktexteditorpreviewplugin.mo share/locale/id/LC_MESSAGES/lspclient.mo share/locale/id/LC_MESSAGES/tabswitcherplugin.mo share/locale/ie/LC_MESSAGES/kate.mo share/locale/ie/LC_MESSAGES/katefiletree.mo share/locale/ie/LC_MESSAGES/kategitblameplugin.mo share/locale/ie/LC_MESSAGES/katesnippetsplugin.mo share/locale/ie/LC_MESSAGES/katesymbolviewer.mo share/locale/ie/LC_MESSAGES/katetextfilter.mo share/locale/ie/LC_MESSAGES/katexmlcheck.mo share/locale/ie/LC_MESSAGES/katexmltools.mo share/locale/is/LC_MESSAGES/formatplugin.mo share/locale/is/LC_MESSAGES/kate.mo share/locale/is/LC_MESSAGES/katefilebrowserplugin.mo share/locale/is/LC_MESSAGES/katekonsoleplugin.mo share/locale/is/LC_MESSAGES/katesearch.mo share/locale/is/LC_MESSAGES/katesymbolviewer.mo share/locale/is/LC_MESSAGES/katetextfilter.mo share/locale/is/LC_MESSAGES/katexmltools.mo share/locale/is/LC_MESSAGES/rainbowparens.mo share/locale/it/LC_MESSAGES/formatplugin.mo share/locale/it/LC_MESSAGES/kate-ctags-plugin.mo share/locale/it/LC_MESSAGES/kate-replicode-plugin.mo share/locale/it/LC_MESSAGES/kate.mo share/locale/it/LC_MESSAGES/katebacktracebrowserplugin.mo +share/locale/it/LC_MESSAGES/katebookmarksplugin.mo share/locale/it/LC_MESSAGES/katebuild-plugin.mo share/locale/it/LC_MESSAGES/katecloseexceptplugin.mo share/locale/it/LC_MESSAGES/katecolorpickerplugin.mo share/locale/it/LC_MESSAGES/katecompilerexplorer.mo share/locale/it/LC_MESSAGES/kateexternaltoolsplugin.mo share/locale/it/LC_MESSAGES/katefilebrowserplugin.mo share/locale/it/LC_MESSAGES/katefiletree.mo share/locale/it/LC_MESSAGES/kategdbplugin.mo share/locale/it/LC_MESSAGES/kategitblameplugin.mo share/locale/it/LC_MESSAGES/katekeyboardmacros.mo share/locale/it/LC_MESSAGES/katekonsoleplugin.mo share/locale/it/LC_MESSAGES/kateproject.mo share/locale/it/LC_MESSAGES/katesearch.mo share/locale/it/LC_MESSAGES/katesnippetsplugin.mo share/locale/it/LC_MESSAGES/katesql.mo share/locale/it/LC_MESSAGES/katesymbolviewer.mo share/locale/it/LC_MESSAGES/katetextfilter.mo share/locale/it/LC_MESSAGES/katexmlcheck.mo share/locale/it/LC_MESSAGES/katexmltools.mo share/locale/it/LC_MESSAGES/ktexteditorpreviewplugin.mo share/locale/it/LC_MESSAGES/lspclient.mo share/locale/it/LC_MESSAGES/rainbowparens.mo share/locale/it/LC_MESSAGES/rbqlplugin.mo share/locale/it/LC_MESSAGES/tabswitcherplugin.mo share/locale/ja/LC_MESSAGES/formatplugin.mo share/locale/ja/LC_MESSAGES/kate-ctags-plugin.mo share/locale/ja/LC_MESSAGES/kate-replicode-plugin.mo share/locale/ja/LC_MESSAGES/kate.mo share/locale/ja/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/ja/LC_MESSAGES/katebuild-plugin.mo share/locale/ja/LC_MESSAGES/katecloseexceptplugin.mo share/locale/ja/LC_MESSAGES/katecolorpickerplugin.mo share/locale/ja/LC_MESSAGES/kateexternaltoolsplugin.mo share/locale/ja/LC_MESSAGES/katefilebrowserplugin.mo share/locale/ja/LC_MESSAGES/katefiletree.mo share/locale/ja/LC_MESSAGES/kategdbplugin.mo share/locale/ja/LC_MESSAGES/kategitblameplugin.mo share/locale/ja/LC_MESSAGES/katekeyboardmacros.mo share/locale/ja/LC_MESSAGES/katekonsoleplugin.mo share/locale/ja/LC_MESSAGES/kateproject.mo share/locale/ja/LC_MESSAGES/katesearch.mo share/locale/ja/LC_MESSAGES/katesnippetsplugin.mo share/locale/ja/LC_MESSAGES/katesql.mo share/locale/ja/LC_MESSAGES/katesymbolviewer.mo share/locale/ja/LC_MESSAGES/katetextfilter.mo share/locale/ja/LC_MESSAGES/katexmlcheck.mo share/locale/ja/LC_MESSAGES/katexmltools.mo share/locale/ja/LC_MESSAGES/ktexteditorpreviewplugin.mo share/locale/ja/LC_MESSAGES/lspclient.mo share/locale/ja/LC_MESSAGES/rainbowparens.mo share/locale/ja/LC_MESSAGES/tabswitcherplugin.mo share/locale/ka/LC_MESSAGES/formatplugin.mo share/locale/ka/LC_MESSAGES/kate-ctags-plugin.mo share/locale/ka/LC_MESSAGES/kate-replicode-plugin.mo share/locale/ka/LC_MESSAGES/kate.mo share/locale/ka/LC_MESSAGES/katebacktracebrowserplugin.mo +share/locale/ka/LC_MESSAGES/katebookmarksplugin.mo share/locale/ka/LC_MESSAGES/katebuild-plugin.mo share/locale/ka/LC_MESSAGES/katecloseexceptplugin.mo share/locale/ka/LC_MESSAGES/katecolorpickerplugin.mo share/locale/ka/LC_MESSAGES/katecompilerexplorer.mo share/locale/ka/LC_MESSAGES/kateexternaltoolsplugin.mo share/locale/ka/LC_MESSAGES/katefilebrowserplugin.mo share/locale/ka/LC_MESSAGES/katefiletree.mo share/locale/ka/LC_MESSAGES/kategdbplugin.mo share/locale/ka/LC_MESSAGES/kategitblameplugin.mo share/locale/ka/LC_MESSAGES/katekeyboardmacros.mo share/locale/ka/LC_MESSAGES/katekonsoleplugin.mo share/locale/ka/LC_MESSAGES/kateproject.mo share/locale/ka/LC_MESSAGES/katesearch.mo share/locale/ka/LC_MESSAGES/katesnippetsplugin.mo share/locale/ka/LC_MESSAGES/katesql.mo share/locale/ka/LC_MESSAGES/katesymbolviewer.mo share/locale/ka/LC_MESSAGES/katetextfilter.mo share/locale/ka/LC_MESSAGES/katexmlcheck.mo share/locale/ka/LC_MESSAGES/katexmltools.mo share/locale/ka/LC_MESSAGES/ktexteditorpreviewplugin.mo share/locale/ka/LC_MESSAGES/lspclient.mo share/locale/ka/LC_MESSAGES/rainbowparens.mo share/locale/ka/LC_MESSAGES/rbqlplugin.mo share/locale/ka/LC_MESSAGES/tabswitcherplugin.mo share/locale/kk/LC_MESSAGES/kate-ctags-plugin.mo share/locale/kk/LC_MESSAGES/kate.mo share/locale/kk/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/kk/LC_MESSAGES/katebuild-plugin.mo share/locale/kk/LC_MESSAGES/katecloseexceptplugin.mo share/locale/kk/LC_MESSAGES/katefilebrowserplugin.mo share/locale/kk/LC_MESSAGES/kategdbplugin.mo share/locale/kk/LC_MESSAGES/katekonsoleplugin.mo share/locale/kk/LC_MESSAGES/kateproject.mo share/locale/kk/LC_MESSAGES/katesearch.mo share/locale/kk/LC_MESSAGES/katesnippetsplugin.mo share/locale/kk/LC_MESSAGES/katesql.mo share/locale/kk/LC_MESSAGES/katesymbolviewer.mo share/locale/kk/LC_MESSAGES/katetextfilter.mo share/locale/kk/LC_MESSAGES/katexmltools.mo share/locale/km/LC_MESSAGES/kate-ctags-plugin.mo share/locale/km/LC_MESSAGES/kate.mo share/locale/km/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/km/LC_MESSAGES/katebuild-plugin.mo share/locale/km/LC_MESSAGES/katefilebrowserplugin.mo share/locale/km/LC_MESSAGES/kategdbplugin.mo share/locale/km/LC_MESSAGES/katekonsoleplugin.mo share/locale/km/LC_MESSAGES/katesearch.mo share/locale/km/LC_MESSAGES/katesql.mo share/locale/km/LC_MESSAGES/katesymbolviewer.mo share/locale/km/LC_MESSAGES/katetextfilter.mo share/locale/km/LC_MESSAGES/katexmltools.mo share/locale/ko/LC_MESSAGES/formatplugin.mo share/locale/ko/LC_MESSAGES/kate-ctags-plugin.mo share/locale/ko/LC_MESSAGES/kate-replicode-plugin.mo share/locale/ko/LC_MESSAGES/kate.mo share/locale/ko/LC_MESSAGES/katebacktracebrowserplugin.mo +share/locale/ko/LC_MESSAGES/katebookmarksplugin.mo share/locale/ko/LC_MESSAGES/katebuild-plugin.mo share/locale/ko/LC_MESSAGES/katecloseexceptplugin.mo share/locale/ko/LC_MESSAGES/katecolorpickerplugin.mo share/locale/ko/LC_MESSAGES/katecompilerexplorer.mo share/locale/ko/LC_MESSAGES/kateexternaltoolsplugin.mo share/locale/ko/LC_MESSAGES/katefilebrowserplugin.mo share/locale/ko/LC_MESSAGES/katefiletree.mo share/locale/ko/LC_MESSAGES/kategdbplugin.mo share/locale/ko/LC_MESSAGES/kategitblameplugin.mo share/locale/ko/LC_MESSAGES/katekeyboardmacros.mo share/locale/ko/LC_MESSAGES/katekonsoleplugin.mo share/locale/ko/LC_MESSAGES/kateproject.mo share/locale/ko/LC_MESSAGES/katesearch.mo share/locale/ko/LC_MESSAGES/katesnippetsplugin.mo share/locale/ko/LC_MESSAGES/katesql.mo share/locale/ko/LC_MESSAGES/katesymbolviewer.mo share/locale/ko/LC_MESSAGES/katetextfilter.mo share/locale/ko/LC_MESSAGES/katexmlcheck.mo share/locale/ko/LC_MESSAGES/katexmltools.mo share/locale/ko/LC_MESSAGES/ktexteditorpreviewplugin.mo share/locale/ko/LC_MESSAGES/lspclient.mo share/locale/ko/LC_MESSAGES/rainbowparens.mo share/locale/ko/LC_MESSAGES/rbqlplugin.mo share/locale/ko/LC_MESSAGES/tabswitcherplugin.mo share/locale/ku/LC_MESSAGES/kate.mo share/locale/lt/LC_MESSAGES/formatplugin.mo share/locale/lt/LC_MESSAGES/kate-ctags-plugin.mo share/locale/lt/LC_MESSAGES/kate-replicode-plugin.mo share/locale/lt/LC_MESSAGES/kate.mo share/locale/lt/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/lt/LC_MESSAGES/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/katebookmarksplugin.mo share/locale/nl/LC_MESSAGES/katebuild-plugin.mo share/locale/nl/LC_MESSAGES/katecloseexceptplugin.mo share/locale/nl/LC_MESSAGES/katecolorpickerplugin.mo share/locale/nl/LC_MESSAGES/katecompilerexplorer.mo share/locale/nl/LC_MESSAGES/kateexternaltoolsplugin.mo share/locale/nl/LC_MESSAGES/katefilebrowserplugin.mo share/locale/nl/LC_MESSAGES/katefiletree.mo share/locale/nl/LC_MESSAGES/kategdbplugin.mo share/locale/nl/LC_MESSAGES/kategitblameplugin.mo share/locale/nl/LC_MESSAGES/katekeyboardmacros.mo share/locale/nl/LC_MESSAGES/katekonsoleplugin.mo share/locale/nl/LC_MESSAGES/kateproject.mo share/locale/nl/LC_MESSAGES/katesearch.mo share/locale/nl/LC_MESSAGES/katesnippetsplugin.mo share/locale/nl/LC_MESSAGES/katesql.mo share/locale/nl/LC_MESSAGES/katesymbolviewer.mo share/locale/nl/LC_MESSAGES/katetextfilter.mo share/locale/nl/LC_MESSAGES/katexmlcheck.mo share/locale/nl/LC_MESSAGES/katexmltools.mo share/locale/nl/LC_MESSAGES/ktexteditorpreviewplugin.mo share/locale/nl/LC_MESSAGES/lspclient.mo share/locale/nl/LC_MESSAGES/rainbowparens.mo share/locale/nl/LC_MESSAGES/rbqlplugin.mo share/locale/nl/LC_MESSAGES/tabswitcherplugin.mo share/locale/nn/LC_MESSAGES/kate-ctags-plugin.mo share/locale/nn/LC_MESSAGES/kate-replicode-plugin.mo share/locale/nn/LC_MESSAGES/kate.mo share/locale/nn/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/nn/LC_MESSAGES/katebuild-plugin.mo share/locale/nn/LC_MESSAGES/katecloseexceptplugin.mo share/locale/nn/LC_MESSAGES/katecolorpickerplugin.mo share/locale/nn/LC_MESSAGES/katecompilerexplorer.mo share/locale/nn/LC_MESSAGES/kateexternaltoolsplugin.mo share/locale/nn/LC_MESSAGES/katefilebrowserplugin.mo share/locale/nn/LC_MESSAGES/katefiletree.mo share/locale/nn/LC_MESSAGES/kategdbplugin.mo share/locale/nn/LC_MESSAGES/kategitblameplugin.mo share/locale/nn/LC_MESSAGES/katekeyboardmacros.mo share/locale/nn/LC_MESSAGES/katekonsoleplugin.mo share/locale/nn/LC_MESSAGES/kateproject.mo share/locale/nn/LC_MESSAGES/katesearch.mo share/locale/nn/LC_MESSAGES/katesnippetsplugin.mo share/locale/nn/LC_MESSAGES/katesql.mo share/locale/nn/LC_MESSAGES/katesymbolviewer.mo share/locale/nn/LC_MESSAGES/katetextfilter.mo share/locale/nn/LC_MESSAGES/katexmlcheck.mo share/locale/nn/LC_MESSAGES/katexmltools.mo share/locale/nn/LC_MESSAGES/ktexteditorpreviewplugin.mo share/locale/nn/LC_MESSAGES/lspclient.mo share/locale/nn/LC_MESSAGES/tabswitcherplugin.mo share/locale/oc/LC_MESSAGES/kate.mo share/locale/oc/LC_MESSAGES/katefilebrowserplugin.mo share/locale/oc/LC_MESSAGES/katekonsoleplugin.mo share/locale/oc/LC_MESSAGES/katesymbolviewer.mo share/locale/oc/LC_MESSAGES/katetextfilter.mo share/locale/oc/LC_MESSAGES/katexmltools.mo share/locale/pa/LC_MESSAGES/kate-ctags-plugin.mo share/locale/pa/LC_MESSAGES/kate.mo share/locale/pa/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/pa/LC_MESSAGES/katebuild-plugin.mo share/locale/pa/LC_MESSAGES/katecloseexceptplugin.mo share/locale/pa/LC_MESSAGES/katefilebrowserplugin.mo share/locale/pa/LC_MESSAGES/katefiletree.mo share/locale/pa/LC_MESSAGES/kategdbplugin.mo share/locale/pa/LC_MESSAGES/katekonsoleplugin.mo share/locale/pa/LC_MESSAGES/kateproject.mo share/locale/pa/LC_MESSAGES/katesearch.mo share/locale/pa/LC_MESSAGES/katesnippetsplugin.mo share/locale/pa/LC_MESSAGES/katesql.mo share/locale/pa/LC_MESSAGES/katesymbolviewer.mo share/locale/pa/LC_MESSAGES/katetextfilter.mo share/locale/pa/LC_MESSAGES/katexmltools.mo share/locale/pa/LC_MESSAGES/tabswitcherplugin.mo share/locale/pl/LC_MESSAGES/formatplugin.mo share/locale/pl/LC_MESSAGES/kate-ctags-plugin.mo share/locale/pl/LC_MESSAGES/kate-replicode-plugin.mo share/locale/pl/LC_MESSAGES/kate.mo share/locale/pl/LC_MESSAGES/katebacktracebrowserplugin.mo +share/locale/pl/LC_MESSAGES/katebookmarksplugin.mo share/locale/pl/LC_MESSAGES/katebuild-plugin.mo share/locale/pl/LC_MESSAGES/katecloseexceptplugin.mo share/locale/pl/LC_MESSAGES/katecolorpickerplugin.mo share/locale/pl/LC_MESSAGES/katecompilerexplorer.mo share/locale/pl/LC_MESSAGES/kateexternaltoolsplugin.mo share/locale/pl/LC_MESSAGES/katefilebrowserplugin.mo share/locale/pl/LC_MESSAGES/katefiletree.mo share/locale/pl/LC_MESSAGES/kategdbplugin.mo share/locale/pl/LC_MESSAGES/kategitblameplugin.mo share/locale/pl/LC_MESSAGES/katekeyboardmacros.mo share/locale/pl/LC_MESSAGES/katekonsoleplugin.mo share/locale/pl/LC_MESSAGES/kateproject.mo share/locale/pl/LC_MESSAGES/katesearch.mo share/locale/pl/LC_MESSAGES/katesnippetsplugin.mo share/locale/pl/LC_MESSAGES/katesql.mo share/locale/pl/LC_MESSAGES/katesymbolviewer.mo share/locale/pl/LC_MESSAGES/katetextfilter.mo share/locale/pl/LC_MESSAGES/katexmlcheck.mo share/locale/pl/LC_MESSAGES/katexmltools.mo share/locale/pl/LC_MESSAGES/ktexteditorpreviewplugin.mo share/locale/pl/LC_MESSAGES/lspclient.mo share/locale/pl/LC_MESSAGES/rainbowparens.mo share/locale/pl/LC_MESSAGES/rbqlplugin.mo share/locale/pl/LC_MESSAGES/tabswitcherplugin.mo share/locale/pt/LC_MESSAGES/kate-ctags-plugin.mo share/locale/pt/LC_MESSAGES/kate-replicode-plugin.mo share/locale/pt/LC_MESSAGES/kate.mo share/locale/pt/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/pt/LC_MESSAGES/katebuild-plugin.mo share/locale/pt/LC_MESSAGES/katecloseexceptplugin.mo share/locale/pt/LC_MESSAGES/katecolorpickerplugin.mo share/locale/pt/LC_MESSAGES/kateexternaltoolsplugin.mo share/locale/pt/LC_MESSAGES/katefilebrowserplugin.mo share/locale/pt/LC_MESSAGES/katefiletree.mo share/locale/pt/LC_MESSAGES/kategdbplugin.mo share/locale/pt/LC_MESSAGES/kategitblameplugin.mo share/locale/pt/LC_MESSAGES/katekeyboardmacros.mo share/locale/pt/LC_MESSAGES/katekonsoleplugin.mo share/locale/pt/LC_MESSAGES/kateproject.mo share/locale/pt/LC_MESSAGES/katesearch.mo share/locale/pt/LC_MESSAGES/katesnippetsplugin.mo share/locale/pt/LC_MESSAGES/katesql.mo share/locale/pt/LC_MESSAGES/katesymbolviewer.mo share/locale/pt/LC_MESSAGES/katetextfilter.mo share/locale/pt/LC_MESSAGES/katexmlcheck.mo share/locale/pt/LC_MESSAGES/katexmltools.mo share/locale/pt/LC_MESSAGES/ktexteditorpreviewplugin.mo share/locale/pt/LC_MESSAGES/lspclient.mo share/locale/pt/LC_MESSAGES/tabswitcherplugin.mo +share/locale/pt_BR/LC_MESSAGES/formatplugin.mo share/locale/pt_BR/LC_MESSAGES/kate-ctags-plugin.mo share/locale/pt_BR/LC_MESSAGES/kate-replicode-plugin.mo share/locale/pt_BR/LC_MESSAGES/kate.mo share/locale/pt_BR/LC_MESSAGES/katebacktracebrowserplugin.mo +share/locale/pt_BR/LC_MESSAGES/katebookmarksplugin.mo share/locale/pt_BR/LC_MESSAGES/katebuild-plugin.mo share/locale/pt_BR/LC_MESSAGES/katecloseexceptplugin.mo share/locale/pt_BR/LC_MESSAGES/katecolorpickerplugin.mo +share/locale/pt_BR/LC_MESSAGES/katecompilerexplorer.mo share/locale/pt_BR/LC_MESSAGES/kateexternaltoolsplugin.mo share/locale/pt_BR/LC_MESSAGES/katefilebrowserplugin.mo share/locale/pt_BR/LC_MESSAGES/katefiletree.mo share/locale/pt_BR/LC_MESSAGES/kategdbplugin.mo share/locale/pt_BR/LC_MESSAGES/kategitblameplugin.mo share/locale/pt_BR/LC_MESSAGES/katekeyboardmacros.mo share/locale/pt_BR/LC_MESSAGES/katekonsoleplugin.mo share/locale/pt_BR/LC_MESSAGES/kateproject.mo share/locale/pt_BR/LC_MESSAGES/katesearch.mo share/locale/pt_BR/LC_MESSAGES/katesnippetsplugin.mo share/locale/pt_BR/LC_MESSAGES/katesql.mo share/locale/pt_BR/LC_MESSAGES/katesymbolviewer.mo share/locale/pt_BR/LC_MESSAGES/katetextfilter.mo share/locale/pt_BR/LC_MESSAGES/katexmlcheck.mo share/locale/pt_BR/LC_MESSAGES/katexmltools.mo share/locale/pt_BR/LC_MESSAGES/ktexteditorpreviewplugin.mo share/locale/pt_BR/LC_MESSAGES/lspclient.mo share/locale/pt_BR/LC_MESSAGES/rainbowparens.mo share/locale/pt_BR/LC_MESSAGES/rbqlplugin.mo share/locale/pt_BR/LC_MESSAGES/tabswitcherplugin.mo share/locale/ro/LC_MESSAGES/kate-ctags-plugin.mo share/locale/ro/LC_MESSAGES/kate.mo share/locale/ro/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/ro/LC_MESSAGES/katebuild-plugin.mo share/locale/ro/LC_MESSAGES/katecloseexceptplugin.mo share/locale/ro/LC_MESSAGES/kateexternaltoolsplugin.mo share/locale/ro/LC_MESSAGES/katefilebrowserplugin.mo share/locale/ro/LC_MESSAGES/katefiletree.mo share/locale/ro/LC_MESSAGES/kategdbplugin.mo share/locale/ro/LC_MESSAGES/katekonsoleplugin.mo share/locale/ro/LC_MESSAGES/kateproject.mo share/locale/ro/LC_MESSAGES/katesearch.mo share/locale/ro/LC_MESSAGES/katesnippetsplugin.mo share/locale/ro/LC_MESSAGES/katesql.mo share/locale/ro/LC_MESSAGES/katesymbolviewer.mo share/locale/ro/LC_MESSAGES/katetextfilter.mo share/locale/ro/LC_MESSAGES/katexmlcheck.mo share/locale/ro/LC_MESSAGES/katexmltools.mo share/locale/ro/LC_MESSAGES/ktexteditorpreviewplugin.mo share/locale/ro/LC_MESSAGES/lspclient.mo share/locale/ro/LC_MESSAGES/tabswitcherplugin.mo share/locale/ru/LC_MESSAGES/formatplugin.mo share/locale/ru/LC_MESSAGES/kate-ctags-plugin.mo share/locale/ru/LC_MESSAGES/kate-replicode-plugin.mo share/locale/ru/LC_MESSAGES/kate.mo share/locale/ru/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/ru/LC_MESSAGES/katebuild-plugin.mo share/locale/ru/LC_MESSAGES/katecloseexceptplugin.mo share/locale/ru/LC_MESSAGES/katecolorpickerplugin.mo share/locale/ru/LC_MESSAGES/katecompilerexplorer.mo share/locale/ru/LC_MESSAGES/kateexternaltoolsplugin.mo share/locale/ru/LC_MESSAGES/katefilebrowserplugin.mo share/locale/ru/LC_MESSAGES/katefiletree.mo share/locale/ru/LC_MESSAGES/kategdbplugin.mo share/locale/ru/LC_MESSAGES/kategitblameplugin.mo share/locale/ru/LC_MESSAGES/katekeyboardmacros.mo share/locale/ru/LC_MESSAGES/katekonsoleplugin.mo share/locale/ru/LC_MESSAGES/kateproject.mo share/locale/ru/LC_MESSAGES/katesearch.mo share/locale/ru/LC_MESSAGES/katesnippetsplugin.mo share/locale/ru/LC_MESSAGES/katesql.mo share/locale/ru/LC_MESSAGES/katesymbolviewer.mo share/locale/ru/LC_MESSAGES/katetextfilter.mo share/locale/ru/LC_MESSAGES/katexmlcheck.mo share/locale/ru/LC_MESSAGES/katexmltools.mo share/locale/ru/LC_MESSAGES/ktexteditorpreviewplugin.mo share/locale/ru/LC_MESSAGES/lspclient.mo share/locale/ru/LC_MESSAGES/rainbowparens.mo share/locale/ru/LC_MESSAGES/rbqlplugin.mo share/locale/ru/LC_MESSAGES/tabswitcherplugin.mo share/locale/sa/LC_MESSAGES/formatplugin.mo share/locale/sa/LC_MESSAGES/kate-ctags-plugin.mo share/locale/sa/LC_MESSAGES/kate-replicode-plugin.mo share/locale/sa/LC_MESSAGES/kate.mo share/locale/sa/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/sa/LC_MESSAGES/katebuild-plugin.mo share/locale/sa/LC_MESSAGES/katecloseexceptplugin.mo share/locale/sa/LC_MESSAGES/katecolorpickerplugin.mo share/locale/sa/LC_MESSAGES/katecompilerexplorer.mo share/locale/sa/LC_MESSAGES/kateexternaltoolsplugin.mo share/locale/sa/LC_MESSAGES/katefilebrowserplugin.mo share/locale/sa/LC_MESSAGES/katefiletree.mo share/locale/sa/LC_MESSAGES/kategdbplugin.mo share/locale/sa/LC_MESSAGES/kategitblameplugin.mo share/locale/sa/LC_MESSAGES/katekeyboardmacros.mo share/locale/sa/LC_MESSAGES/katekonsoleplugin.mo share/locale/sa/LC_MESSAGES/kateproject.mo share/locale/sa/LC_MESSAGES/katesearch.mo share/locale/sa/LC_MESSAGES/katesnippetsplugin.mo share/locale/sa/LC_MESSAGES/katesql.mo share/locale/sa/LC_MESSAGES/katesymbolviewer.mo share/locale/sa/LC_MESSAGES/katetextfilter.mo share/locale/sa/LC_MESSAGES/katexmlcheck.mo share/locale/sa/LC_MESSAGES/katexmltools.mo share/locale/sa/LC_MESSAGES/ktexteditorpreviewplugin.mo share/locale/sa/LC_MESSAGES/lspclient.mo share/locale/sa/LC_MESSAGES/rainbowparens.mo share/locale/sa/LC_MESSAGES/rbqlplugin.mo share/locale/sa/LC_MESSAGES/tabswitcherplugin.mo share/locale/se/LC_MESSAGES/kate.mo share/locale/se/LC_MESSAGES/katefilebrowserplugin.mo share/locale/se/LC_MESSAGES/katefiletree.mo share/locale/se/LC_MESSAGES/katekonsoleplugin.mo share/locale/se/LC_MESSAGES/katesymbolviewer.mo share/locale/se/LC_MESSAGES/katetextfilter.mo share/locale/se/LC_MESSAGES/katexmltools.mo share/locale/si/LC_MESSAGES/kate.mo share/locale/si/LC_MESSAGES/katebuild-plugin.mo share/locale/si/LC_MESSAGES/katefilebrowserplugin.mo share/locale/si/LC_MESSAGES/katekonsoleplugin.mo share/locale/si/LC_MESSAGES/katesearch.mo share/locale/si/LC_MESSAGES/katesql.mo share/locale/si/LC_MESSAGES/katesymbolviewer.mo share/locale/si/LC_MESSAGES/katexmltools.mo share/locale/sk/LC_MESSAGES/formatplugin.mo share/locale/sk/LC_MESSAGES/kate-ctags-plugin.mo share/locale/sk/LC_MESSAGES/kate-replicode-plugin.mo share/locale/sk/LC_MESSAGES/kate.mo share/locale/sk/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/sk/LC_MESSAGES/katebuild-plugin.mo share/locale/sk/LC_MESSAGES/katecloseexceptplugin.mo share/locale/sk/LC_MESSAGES/katecolorpickerplugin.mo share/locale/sk/LC_MESSAGES/katecompilerexplorer.mo share/locale/sk/LC_MESSAGES/kateexternaltoolsplugin.mo share/locale/sk/LC_MESSAGES/katefilebrowserplugin.mo share/locale/sk/LC_MESSAGES/katefiletree.mo share/locale/sk/LC_MESSAGES/kategdbplugin.mo share/locale/sk/LC_MESSAGES/kategitblameplugin.mo share/locale/sk/LC_MESSAGES/katekeyboardmacros.mo share/locale/sk/LC_MESSAGES/katekonsoleplugin.mo share/locale/sk/LC_MESSAGES/kateproject.mo share/locale/sk/LC_MESSAGES/katesearch.mo share/locale/sk/LC_MESSAGES/katesnippetsplugin.mo share/locale/sk/LC_MESSAGES/katesql.mo share/locale/sk/LC_MESSAGES/katesymbolviewer.mo share/locale/sk/LC_MESSAGES/katetextfilter.mo share/locale/sk/LC_MESSAGES/katexmlcheck.mo share/locale/sk/LC_MESSAGES/katexmltools.mo share/locale/sk/LC_MESSAGES/ktexteditorpreviewplugin.mo share/locale/sk/LC_MESSAGES/lspclient.mo share/locale/sk/LC_MESSAGES/rainbowparens.mo share/locale/sk/LC_MESSAGES/rbqlplugin.mo share/locale/sk/LC_MESSAGES/tabswitcherplugin.mo share/locale/sl/LC_MESSAGES/formatplugin.mo share/locale/sl/LC_MESSAGES/kate-ctags-plugin.mo share/locale/sl/LC_MESSAGES/kate-replicode-plugin.mo share/locale/sl/LC_MESSAGES/kate.mo share/locale/sl/LC_MESSAGES/katebacktracebrowserplugin.mo +share/locale/sl/LC_MESSAGES/katebookmarksplugin.mo share/locale/sl/LC_MESSAGES/katebuild-plugin.mo share/locale/sl/LC_MESSAGES/katecloseexceptplugin.mo share/locale/sl/LC_MESSAGES/katecolorpickerplugin.mo share/locale/sl/LC_MESSAGES/katecompilerexplorer.mo share/locale/sl/LC_MESSAGES/kateexternaltoolsplugin.mo share/locale/sl/LC_MESSAGES/katefilebrowserplugin.mo share/locale/sl/LC_MESSAGES/katefiletree.mo share/locale/sl/LC_MESSAGES/kategdbplugin.mo share/locale/sl/LC_MESSAGES/kategitblameplugin.mo share/locale/sl/LC_MESSAGES/katekeyboardmacros.mo share/locale/sl/LC_MESSAGES/katekonsoleplugin.mo share/locale/sl/LC_MESSAGES/kateproject.mo share/locale/sl/LC_MESSAGES/katesearch.mo share/locale/sl/LC_MESSAGES/katesnippetsplugin.mo share/locale/sl/LC_MESSAGES/katesql.mo share/locale/sl/LC_MESSAGES/katesymbolviewer.mo share/locale/sl/LC_MESSAGES/katetextfilter.mo share/locale/sl/LC_MESSAGES/katexmlcheck.mo share/locale/sl/LC_MESSAGES/katexmltools.mo share/locale/sl/LC_MESSAGES/ktexteditorpreviewplugin.mo share/locale/sl/LC_MESSAGES/lspclient.mo share/locale/sl/LC_MESSAGES/rainbowparens.mo share/locale/sl/LC_MESSAGES/rbqlplugin.mo share/locale/sl/LC_MESSAGES/tabswitcherplugin.mo share/locale/sq/LC_MESSAGES/kate-ctags-plugin.mo share/locale/sq/LC_MESSAGES/kate.mo share/locale/sq/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/sq/LC_MESSAGES/katebuild-plugin.mo share/locale/sq/LC_MESSAGES/katefilebrowserplugin.mo share/locale/sq/LC_MESSAGES/katekonsoleplugin.mo share/locale/sq/LC_MESSAGES/katesymbolviewer.mo share/locale/sq/LC_MESSAGES/katetextfilter.mo share/locale/sq/LC_MESSAGES/katexmltools.mo share/locale/sr/LC_MESSAGES/kate-ctags-plugin.mo share/locale/sr/LC_MESSAGES/kate-replicode-plugin.mo share/locale/sr/LC_MESSAGES/kate.mo share/locale/sr/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/sr/LC_MESSAGES/katebuild-plugin.mo share/locale/sr/LC_MESSAGES/katecloseexceptplugin.mo share/locale/sr/LC_MESSAGES/katefilebrowserplugin.mo share/locale/sr/LC_MESSAGES/katefiletree.mo share/locale/sr/LC_MESSAGES/kategdbplugin.mo share/locale/sr/LC_MESSAGES/katekonsoleplugin.mo share/locale/sr/LC_MESSAGES/kateproject.mo share/locale/sr/LC_MESSAGES/katesearch.mo share/locale/sr/LC_MESSAGES/katesnippetsplugin.mo share/locale/sr/LC_MESSAGES/katesql.mo share/locale/sr/LC_MESSAGES/katesymbolviewer.mo share/locale/sr/LC_MESSAGES/katetextfilter.mo share/locale/sr/LC_MESSAGES/katexmlcheck.mo share/locale/sr/LC_MESSAGES/katexmltools.mo share/locale/sr/LC_MESSAGES/ktexteditorpreviewplugin.mo share/locale/sr/LC_MESSAGES/tabswitcherplugin.mo share/locale/sr@ijekavian/LC_MESSAGES/kate-ctags-plugin.mo share/locale/sr@ijekavian/LC_MESSAGES/kate-replicode-plugin.mo share/locale/sr@ijekavian/LC_MESSAGES/kate.mo share/locale/sr@ijekavian/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/sr@ijekavian/LC_MESSAGES/katebuild-plugin.mo share/locale/sr@ijekavian/LC_MESSAGES/katecloseexceptplugin.mo share/locale/sr@ijekavian/LC_MESSAGES/katefilebrowserplugin.mo share/locale/sr@ijekavian/LC_MESSAGES/katefiletree.mo share/locale/sr@ijekavian/LC_MESSAGES/kategdbplugin.mo share/locale/sr@ijekavian/LC_MESSAGES/katekonsoleplugin.mo share/locale/sr@ijekavian/LC_MESSAGES/kateproject.mo share/locale/sr@ijekavian/LC_MESSAGES/katesearch.mo share/locale/sr@ijekavian/LC_MESSAGES/katesnippetsplugin.mo share/locale/sr@ijekavian/LC_MESSAGES/katesql.mo share/locale/sr@ijekavian/LC_MESSAGES/katesymbolviewer.mo share/locale/sr@ijekavian/LC_MESSAGES/katetextfilter.mo share/locale/sr@ijekavian/LC_MESSAGES/katexmlcheck.mo share/locale/sr@ijekavian/LC_MESSAGES/katexmltools.mo share/locale/sr@ijekavian/LC_MESSAGES/ktexteditorpreviewplugin.mo share/locale/sr@ijekavian/LC_MESSAGES/tabswitcherplugin.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kate-ctags-plugin.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kate-replicode-plugin.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kate.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/katebuild-plugin.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/katecloseexceptplugin.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/katefilebrowserplugin.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/katefiletree.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kategdbplugin.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/katekonsoleplugin.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kateproject.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/katesearch.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/katesnippetsplugin.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/katesql.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/katesymbolviewer.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/katetextfilter.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/katexmlcheck.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/katexmltools.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/ktexteditorpreviewplugin.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/tabswitcherplugin.mo share/locale/sr@latin/LC_MESSAGES/kate-ctags-plugin.mo share/locale/sr@latin/LC_MESSAGES/kate-replicode-plugin.mo share/locale/sr@latin/LC_MESSAGES/kate.mo share/locale/sr@latin/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/sr@latin/LC_MESSAGES/katebuild-plugin.mo share/locale/sr@latin/LC_MESSAGES/katecloseexceptplugin.mo share/locale/sr@latin/LC_MESSAGES/katefilebrowserplugin.mo share/locale/sr@latin/LC_MESSAGES/katefiletree.mo share/locale/sr@latin/LC_MESSAGES/kategdbplugin.mo share/locale/sr@latin/LC_MESSAGES/katekonsoleplugin.mo share/locale/sr@latin/LC_MESSAGES/kateproject.mo share/locale/sr@latin/LC_MESSAGES/katesearch.mo share/locale/sr@latin/LC_MESSAGES/katesnippetsplugin.mo share/locale/sr@latin/LC_MESSAGES/katesql.mo share/locale/sr@latin/LC_MESSAGES/katesymbolviewer.mo share/locale/sr@latin/LC_MESSAGES/katetextfilter.mo share/locale/sr@latin/LC_MESSAGES/katexmlcheck.mo share/locale/sr@latin/LC_MESSAGES/katexmltools.mo share/locale/sr@latin/LC_MESSAGES/ktexteditorpreviewplugin.mo share/locale/sr@latin/LC_MESSAGES/tabswitcherplugin.mo share/locale/sv/LC_MESSAGES/formatplugin.mo share/locale/sv/LC_MESSAGES/kate-ctags-plugin.mo share/locale/sv/LC_MESSAGES/kate-replicode-plugin.mo share/locale/sv/LC_MESSAGES/kate.mo share/locale/sv/LC_MESSAGES/katebacktracebrowserplugin.mo +share/locale/sv/LC_MESSAGES/katebookmarksplugin.mo share/locale/sv/LC_MESSAGES/katebuild-plugin.mo share/locale/sv/LC_MESSAGES/katecloseexceptplugin.mo share/locale/sv/LC_MESSAGES/katecolorpickerplugin.mo share/locale/sv/LC_MESSAGES/katecompilerexplorer.mo share/locale/sv/LC_MESSAGES/kateexternaltoolsplugin.mo share/locale/sv/LC_MESSAGES/katefilebrowserplugin.mo share/locale/sv/LC_MESSAGES/katefiletree.mo share/locale/sv/LC_MESSAGES/kategdbplugin.mo share/locale/sv/LC_MESSAGES/kategitblameplugin.mo share/locale/sv/LC_MESSAGES/katekeyboardmacros.mo share/locale/sv/LC_MESSAGES/katekonsoleplugin.mo share/locale/sv/LC_MESSAGES/kateproject.mo share/locale/sv/LC_MESSAGES/katesearch.mo share/locale/sv/LC_MESSAGES/katesnippetsplugin.mo share/locale/sv/LC_MESSAGES/katesql.mo share/locale/sv/LC_MESSAGES/katesymbolviewer.mo share/locale/sv/LC_MESSAGES/katetextfilter.mo share/locale/sv/LC_MESSAGES/katexmlcheck.mo share/locale/sv/LC_MESSAGES/katexmltools.mo share/locale/sv/LC_MESSAGES/ktexteditorpreviewplugin.mo share/locale/sv/LC_MESSAGES/lspclient.mo share/locale/sv/LC_MESSAGES/rainbowparens.mo share/locale/sv/LC_MESSAGES/rbqlplugin.mo share/locale/sv/LC_MESSAGES/tabswitcherplugin.mo share/locale/ta/LC_MESSAGES/formatplugin.mo share/locale/ta/LC_MESSAGES/kate-ctags-plugin.mo share/locale/ta/LC_MESSAGES/kate-replicode-plugin.mo share/locale/ta/LC_MESSAGES/kate.mo share/locale/ta/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/ta/LC_MESSAGES/katebuild-plugin.mo share/locale/ta/LC_MESSAGES/katecloseexceptplugin.mo share/locale/ta/LC_MESSAGES/katecolorpickerplugin.mo share/locale/ta/LC_MESSAGES/kateexternaltoolsplugin.mo share/locale/ta/LC_MESSAGES/katefilebrowserplugin.mo share/locale/ta/LC_MESSAGES/katefiletree.mo share/locale/ta/LC_MESSAGES/kategdbplugin.mo share/locale/ta/LC_MESSAGES/kategitblameplugin.mo share/locale/ta/LC_MESSAGES/katekeyboardmacros.mo share/locale/ta/LC_MESSAGES/katekonsoleplugin.mo share/locale/ta/LC_MESSAGES/kateproject.mo share/locale/ta/LC_MESSAGES/katesearch.mo share/locale/ta/LC_MESSAGES/katesnippetsplugin.mo share/locale/ta/LC_MESSAGES/katesql.mo share/locale/ta/LC_MESSAGES/katesymbolviewer.mo share/locale/ta/LC_MESSAGES/katetextfilter.mo share/locale/ta/LC_MESSAGES/katexmlcheck.mo share/locale/ta/LC_MESSAGES/katexmltools.mo share/locale/ta/LC_MESSAGES/ktexteditorpreviewplugin.mo share/locale/ta/LC_MESSAGES/lspclient.mo share/locale/ta/LC_MESSAGES/rainbowparens.mo share/locale/ta/LC_MESSAGES/tabswitcherplugin.mo share/locale/te/LC_MESSAGES/kate.mo share/locale/tg/LC_MESSAGES/kate.mo share/locale/tg/LC_MESSAGES/katesymbolviewer.mo share/locale/tg/LC_MESSAGES/katetextfilter.mo share/locale/tg/LC_MESSAGES/katexmltools.mo share/locale/th/LC_MESSAGES/kate.mo share/locale/th/LC_MESSAGES/katebuild-plugin.mo share/locale/th/LC_MESSAGES/katefilebrowserplugin.mo share/locale/th/LC_MESSAGES/katekonsoleplugin.mo share/locale/tr/LC_MESSAGES/formatplugin.mo share/locale/tr/LC_MESSAGES/kate-ctags-plugin.mo share/locale/tr/LC_MESSAGES/kate-replicode-plugin.mo share/locale/tr/LC_MESSAGES/kate.mo share/locale/tr/LC_MESSAGES/katebacktracebrowserplugin.mo +share/locale/tr/LC_MESSAGES/katebookmarksplugin.mo share/locale/tr/LC_MESSAGES/katebuild-plugin.mo share/locale/tr/LC_MESSAGES/katecloseexceptplugin.mo share/locale/tr/LC_MESSAGES/katecolorpickerplugin.mo share/locale/tr/LC_MESSAGES/katecompilerexplorer.mo share/locale/tr/LC_MESSAGES/kateexternaltoolsplugin.mo share/locale/tr/LC_MESSAGES/katefilebrowserplugin.mo share/locale/tr/LC_MESSAGES/katefiletree.mo share/locale/tr/LC_MESSAGES/kategdbplugin.mo share/locale/tr/LC_MESSAGES/kategitblameplugin.mo share/locale/tr/LC_MESSAGES/katekeyboardmacros.mo share/locale/tr/LC_MESSAGES/katekonsoleplugin.mo share/locale/tr/LC_MESSAGES/kateproject.mo share/locale/tr/LC_MESSAGES/katesearch.mo share/locale/tr/LC_MESSAGES/katesnippetsplugin.mo share/locale/tr/LC_MESSAGES/katesql.mo share/locale/tr/LC_MESSAGES/katesymbolviewer.mo share/locale/tr/LC_MESSAGES/katetextfilter.mo share/locale/tr/LC_MESSAGES/katexmlcheck.mo share/locale/tr/LC_MESSAGES/katexmltools.mo share/locale/tr/LC_MESSAGES/ktexteditorpreviewplugin.mo share/locale/tr/LC_MESSAGES/lspclient.mo share/locale/tr/LC_MESSAGES/rainbowparens.mo share/locale/tr/LC_MESSAGES/rbqlplugin.mo share/locale/tr/LC_MESSAGES/tabswitcherplugin.mo share/locale/ug/LC_MESSAGES/kate-ctags-plugin.mo share/locale/ug/LC_MESSAGES/kate.mo share/locale/ug/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/ug/LC_MESSAGES/katebuild-plugin.mo share/locale/ug/LC_MESSAGES/katecloseexceptplugin.mo share/locale/ug/LC_MESSAGES/katefilebrowserplugin.mo share/locale/ug/LC_MESSAGES/kategdbplugin.mo share/locale/ug/LC_MESSAGES/katekonsoleplugin.mo share/locale/ug/LC_MESSAGES/kateproject.mo share/locale/ug/LC_MESSAGES/katesearch.mo share/locale/ug/LC_MESSAGES/katesnippetsplugin.mo share/locale/ug/LC_MESSAGES/katesql.mo share/locale/ug/LC_MESSAGES/katesymbolviewer.mo share/locale/ug/LC_MESSAGES/katetextfilter.mo share/locale/ug/LC_MESSAGES/katexmltools.mo share/locale/uk/LC_MESSAGES/formatplugin.mo share/locale/uk/LC_MESSAGES/kate-ctags-plugin.mo share/locale/uk/LC_MESSAGES/kate-replicode-plugin.mo share/locale/uk/LC_MESSAGES/kate.mo share/locale/uk/LC_MESSAGES/katebacktracebrowserplugin.mo +share/locale/uk/LC_MESSAGES/katebookmarksplugin.mo share/locale/uk/LC_MESSAGES/katebuild-plugin.mo share/locale/uk/LC_MESSAGES/katecloseexceptplugin.mo share/locale/uk/LC_MESSAGES/katecolorpickerplugin.mo share/locale/uk/LC_MESSAGES/katecompilerexplorer.mo share/locale/uk/LC_MESSAGES/kateexternaltoolsplugin.mo share/locale/uk/LC_MESSAGES/katefilebrowserplugin.mo share/locale/uk/LC_MESSAGES/katefiletree.mo share/locale/uk/LC_MESSAGES/kategdbplugin.mo share/locale/uk/LC_MESSAGES/kategitblameplugin.mo share/locale/uk/LC_MESSAGES/katekeyboardmacros.mo share/locale/uk/LC_MESSAGES/katekonsoleplugin.mo share/locale/uk/LC_MESSAGES/kateproject.mo share/locale/uk/LC_MESSAGES/katesearch.mo share/locale/uk/LC_MESSAGES/katesnippetsplugin.mo share/locale/uk/LC_MESSAGES/katesql.mo share/locale/uk/LC_MESSAGES/katesymbolviewer.mo share/locale/uk/LC_MESSAGES/katetextfilter.mo share/locale/uk/LC_MESSAGES/katexmlcheck.mo share/locale/uk/LC_MESSAGES/katexmltools.mo share/locale/uk/LC_MESSAGES/ktexteditorpreviewplugin.mo share/locale/uk/LC_MESSAGES/lspclient.mo share/locale/uk/LC_MESSAGES/rainbowparens.mo share/locale/uk/LC_MESSAGES/rbqlplugin.mo share/locale/uk/LC_MESSAGES/tabswitcherplugin.mo share/locale/uz/LC_MESSAGES/kate.mo share/locale/uz/LC_MESSAGES/katetextfilter.mo share/locale/uz@cyrillic/LC_MESSAGES/kate.mo share/locale/uz@cyrillic/LC_MESSAGES/katetextfilter.mo share/locale/vi/LC_MESSAGES/kate-ctags-plugin.mo share/locale/vi/LC_MESSAGES/kate-replicode-plugin.mo share/locale/vi/LC_MESSAGES/kate.mo share/locale/vi/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/vi/LC_MESSAGES/katebuild-plugin.mo share/locale/vi/LC_MESSAGES/katecloseexceptplugin.mo share/locale/vi/LC_MESSAGES/katecolorpickerplugin.mo share/locale/vi/LC_MESSAGES/kateexternaltoolsplugin.mo share/locale/vi/LC_MESSAGES/katefilebrowserplugin.mo share/locale/vi/LC_MESSAGES/katefiletree.mo share/locale/vi/LC_MESSAGES/kategdbplugin.mo share/locale/vi/LC_MESSAGES/kategitblameplugin.mo share/locale/vi/LC_MESSAGES/katekeyboardmacros.mo share/locale/vi/LC_MESSAGES/katekonsoleplugin.mo share/locale/vi/LC_MESSAGES/kateproject.mo share/locale/vi/LC_MESSAGES/katesearch.mo share/locale/vi/LC_MESSAGES/katesnippetsplugin.mo share/locale/vi/LC_MESSAGES/katesql.mo share/locale/vi/LC_MESSAGES/katesymbolviewer.mo share/locale/vi/LC_MESSAGES/katetextfilter.mo share/locale/vi/LC_MESSAGES/katexmlcheck.mo share/locale/vi/LC_MESSAGES/katexmltools.mo share/locale/vi/LC_MESSAGES/ktexteditorpreviewplugin.mo share/locale/vi/LC_MESSAGES/lspclient.mo share/locale/vi/LC_MESSAGES/tabswitcherplugin.mo share/locale/wa/LC_MESSAGES/kate.mo share/locale/wa/LC_MESSAGES/katekonsoleplugin.mo share/locale/xh/LC_MESSAGES/kate.mo share/locale/xh/LC_MESSAGES/katetextfilter.mo share/locale/xh/LC_MESSAGES/katexmltools.mo share/locale/zh_CN/LC_MESSAGES/formatplugin.mo share/locale/zh_CN/LC_MESSAGES/kate-ctags-plugin.mo share/locale/zh_CN/LC_MESSAGES/kate-replicode-plugin.mo share/locale/zh_CN/LC_MESSAGES/kate.mo share/locale/zh_CN/LC_MESSAGES/katebacktracebrowserplugin.mo +share/locale/zh_CN/LC_MESSAGES/katebookmarksplugin.mo share/locale/zh_CN/LC_MESSAGES/katebuild-plugin.mo share/locale/zh_CN/LC_MESSAGES/katecloseexceptplugin.mo share/locale/zh_CN/LC_MESSAGES/katecolorpickerplugin.mo share/locale/zh_CN/LC_MESSAGES/katecompilerexplorer.mo share/locale/zh_CN/LC_MESSAGES/kateexternaltoolsplugin.mo share/locale/zh_CN/LC_MESSAGES/katefilebrowserplugin.mo share/locale/zh_CN/LC_MESSAGES/katefiletree.mo share/locale/zh_CN/LC_MESSAGES/kategdbplugin.mo share/locale/zh_CN/LC_MESSAGES/kategitblameplugin.mo share/locale/zh_CN/LC_MESSAGES/katekeyboardmacros.mo share/locale/zh_CN/LC_MESSAGES/katekonsoleplugin.mo share/locale/zh_CN/LC_MESSAGES/kateproject.mo share/locale/zh_CN/LC_MESSAGES/katesearch.mo share/locale/zh_CN/LC_MESSAGES/katesnippetsplugin.mo share/locale/zh_CN/LC_MESSAGES/katesql.mo share/locale/zh_CN/LC_MESSAGES/katesymbolviewer.mo share/locale/zh_CN/LC_MESSAGES/katetextfilter.mo share/locale/zh_CN/LC_MESSAGES/katexmlcheck.mo share/locale/zh_CN/LC_MESSAGES/katexmltools.mo share/locale/zh_CN/LC_MESSAGES/ktexteditorpreviewplugin.mo share/locale/zh_CN/LC_MESSAGES/lspclient.mo share/locale/zh_CN/LC_MESSAGES/rainbowparens.mo share/locale/zh_CN/LC_MESSAGES/rbqlplugin.mo share/locale/zh_CN/LC_MESSAGES/tabswitcherplugin.mo share/locale/zh_TW/LC_MESSAGES/formatplugin.mo share/locale/zh_TW/LC_MESSAGES/kate-ctags-plugin.mo share/locale/zh_TW/LC_MESSAGES/kate-replicode-plugin.mo share/locale/zh_TW/LC_MESSAGES/kate.mo share/locale/zh_TW/LC_MESSAGES/katebacktracebrowserplugin.mo +share/locale/zh_TW/LC_MESSAGES/katebookmarksplugin.mo share/locale/zh_TW/LC_MESSAGES/katebuild-plugin.mo share/locale/zh_TW/LC_MESSAGES/katecloseexceptplugin.mo share/locale/zh_TW/LC_MESSAGES/katecolorpickerplugin.mo share/locale/zh_TW/LC_MESSAGES/katecompilerexplorer.mo share/locale/zh_TW/LC_MESSAGES/kateexternaltoolsplugin.mo share/locale/zh_TW/LC_MESSAGES/katefilebrowserplugin.mo share/locale/zh_TW/LC_MESSAGES/katefiletree.mo share/locale/zh_TW/LC_MESSAGES/kategdbplugin.mo share/locale/zh_TW/LC_MESSAGES/kategitblameplugin.mo share/locale/zh_TW/LC_MESSAGES/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 72d1164db3ee..86f99de9ef9e 100644 --- a/games/blinken/distinfo +++ b/games/blinken/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1751381336 -SHA256 (KDE/release-service/25.04.3/blinken-25.04.3.tar.xz) = 76aefdc0fa874a62bda655a50260d5b6d4e0873a3481e4862558c3179935bcb3 -SIZE (KDE/release-service/25.04.3/blinken-25.04.3.tar.xz) = 2715276 +TIMESTAMP = 1754646248 +SHA256 (KDE/release-service/25.08.0/blinken-25.08.0.tar.xz) = 659bc69e811c7247e801c0696066bfb8cc9f70e223f401a58b08bb6bd83d35a4 +SIZE (KDE/release-service/25.08.0/blinken-25.08.0.tar.xz) = 2715268 diff --git a/games/bomber/distinfo b/games/bomber/distinfo index 948a4532992c..c9e201716fb2 100644 --- a/games/bomber/distinfo +++ b/games/bomber/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1751381339 -SHA256 (KDE/release-service/25.04.3/bomber-25.04.3.tar.xz) = 2f0a37ac247d4447766d46313b42f640a060e2d35894c7fc9ab25fac4d202587 -SIZE (KDE/release-service/25.04.3/bomber-25.04.3.tar.xz) = 841072 +TIMESTAMP = 1754646251 +SHA256 (KDE/release-service/25.08.0/bomber-25.08.0.tar.xz) = 2f202b36ce307bac95cd34204baf465c5989787a081bdb10f029452dc08fb51d +SIZE (KDE/release-service/25.08.0/bomber-25.08.0.tar.xz) = 840952 diff --git a/games/bovo/distinfo b/games/bovo/distinfo index 227845015d91..ec035dc47988 100644 --- a/games/bovo/distinfo +++ b/games/bovo/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1751381341 -SHA256 (KDE/release-service/25.04.3/bovo-25.04.3.tar.xz) = c8ec6ad38dbe292a04c5bd768394165054a732a32782bb10a9195d482178e976 -SIZE (KDE/release-service/25.04.3/bovo-25.04.3.tar.xz) = 221640 +TIMESTAMP = 1754646253 +SHA256 (KDE/release-service/25.08.0/bovo-25.08.0.tar.xz) = 3d1c143cae6ece288de8ae42899a962c9a3d4c454056f74bc9228351d77acc26 +SIZE (KDE/release-service/25.08.0/bovo-25.08.0.tar.xz) = 221712 diff --git a/games/granatier/distinfo b/games/granatier/distinfo index d395c25e96ab..13117a1e26a8 100644 --- a/games/granatier/distinfo +++ b/games/granatier/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1751381344 -SHA256 (KDE/release-service/25.04.3/granatier-25.04.3.tar.xz) = 28edfa5c3d25693690ce60dd1da4368b6a836c8bec9b5b31a6287e256ff6ae82 -SIZE (KDE/release-service/25.04.3/granatier-25.04.3.tar.xz) = 2017108 +TIMESTAMP = 1754646255 +SHA256 (KDE/release-service/25.08.0/granatier-25.08.0.tar.xz) = b4d63b24e7932b5d0249296abacc6574865e5e05866d8ee8b63dc11d4fc6c0a3 +SIZE (KDE/release-service/25.08.0/granatier-25.08.0.tar.xz) = 2017328 diff --git a/games/kajongg/distinfo b/games/kajongg/distinfo index 5b8c429e2459..804d50590052 100644 --- a/games/kajongg/distinfo +++ b/games/kajongg/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1751381346 -SHA256 (KDE/release-service/25.04.3/kajongg-25.04.3.tar.xz) = d578ae9809ec5f9bfed948de12158edcb545793fb1859bd157501668064953ac -SIZE (KDE/release-service/25.04.3/kajongg-25.04.3.tar.xz) = 4637744 +TIMESTAMP = 1754646258 +SHA256 (KDE/release-service/25.08.0/kajongg-25.08.0.tar.xz) = 1cb6f955af0b5e8adab29677758838d028b2b702a7cff43dbd4b2275a7bc6cef +SIZE (KDE/release-service/25.08.0/kajongg-25.08.0.tar.xz) = 4637752 diff --git a/games/kanagram/distinfo b/games/kanagram/distinfo index c833014e7464..056aadede3b4 100644 --- a/games/kanagram/distinfo +++ b/games/kanagram/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1751381349 -SHA256 (KDE/release-service/25.04.3/kanagram-25.04.3.tar.xz) = a6e7ef103c40bb5237b0a5d3e80cc3680afe0ba901fc7269233df5c244dff3f8 -SIZE (KDE/release-service/25.04.3/kanagram-25.04.3.tar.xz) = 7786176 +TIMESTAMP = 1754646260 +SHA256 (KDE/release-service/25.08.0/kanagram-25.08.0.tar.xz) = a8086e3f8a8a8faf40878d439aa754641444d93c8b0d0c529047530abdf46406 +SIZE (KDE/release-service/25.08.0/kanagram-25.08.0.tar.xz) = 7786668 diff --git a/games/kapman/distinfo b/games/kapman/distinfo index 119e675240a9..e1fd1f8e0b65 100644 --- a/games/kapman/distinfo +++ b/games/kapman/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1751381351 -SHA256 (KDE/release-service/25.04.3/kapman-25.04.3.tar.xz) = 93f1bb31df4cafe88313e6ced6f86e1f4a7292bc9590893369939cef52fc88e7 -SIZE (KDE/release-service/25.04.3/kapman-25.04.3.tar.xz) = 2150092 +TIMESTAMP = 1754646263 +SHA256 (KDE/release-service/25.08.0/kapman-25.08.0.tar.xz) = 446d572dde99830778fb67eb8d178a54e48966446b30cda4accc8236428db290 +SIZE (KDE/release-service/25.08.0/kapman-25.08.0.tar.xz) = 2150084 diff --git a/games/katomic/distinfo b/games/katomic/distinfo index 70c3009cd29b..55e11c23bfb4 100644 --- a/games/katomic/distinfo +++ b/games/katomic/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1751381354 -SHA256 (KDE/release-service/25.04.3/katomic-25.04.3.tar.xz) = 76c9382babaaa14905ce8e3828012192b1cdb68657a4b646525987e91117bb8b -SIZE (KDE/release-service/25.04.3/katomic-25.04.3.tar.xz) = 1449348 +TIMESTAMP = 1754646265 +SHA256 (KDE/release-service/25.08.0/katomic-25.08.0.tar.xz) = d4894d6397e823551f87efad50a19624496c60e3d3e29becefaa27ac148c09a8 +SIZE (KDE/release-service/25.08.0/katomic-25.08.0.tar.xz) = 1450656 diff --git a/games/kblackbox/distinfo b/games/kblackbox/distinfo index f97f626b08f0..2a34765c71a3 100644 --- a/games/kblackbox/distinfo +++ b/games/kblackbox/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1751381356 -SHA256 (KDE/release-service/25.04.3/kblackbox-25.04.3.tar.xz) = a64c21410df3decbeaf1e8686a95d7e4a6ed194383a5e4f6713693dc531f2716 -SIZE (KDE/release-service/25.04.3/kblackbox-25.04.3.tar.xz) = 555952 +TIMESTAMP = 1754646268 +SHA256 (KDE/release-service/25.08.0/kblackbox-25.08.0.tar.xz) = 4bd7698493e6d5b5f0fe2ab5135e9128cab0e93bd13132f90826d46bcc86139c +SIZE (KDE/release-service/25.08.0/kblackbox-25.08.0.tar.xz) = 556080 diff --git a/games/kblocks/distinfo b/games/kblocks/distinfo index 575cd3d9cc0a..e53633036351 100644 --- a/games/kblocks/distinfo +++ b/games/kblocks/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1751381359 -SHA256 (KDE/release-service/25.04.3/kblocks-25.04.3.tar.xz) = 72b0f54cb09dd8f7c1b3260d7986a715f206448487d0bb40f85d9e917f3a2dda -SIZE (KDE/release-service/25.04.3/kblocks-25.04.3.tar.xz) = 2104276 +TIMESTAMP = 1754646270 +SHA256 (KDE/release-service/25.08.0/kblocks-25.08.0.tar.xz) = 1bd3865b6c612fc312a6930c76274541bf4e092bf44023513d214a159fce6c96 +SIZE (KDE/release-service/25.08.0/kblocks-25.08.0.tar.xz) = 2104676 diff --git a/games/kbounce/distinfo b/games/kbounce/distinfo index aeebcc549179..d208e2244ef5 100644 --- a/games/kbounce/distinfo +++ b/games/kbounce/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1751381361 -SHA256 (KDE/release-service/25.04.3/kbounce-25.04.3.tar.xz) = 7fbbc2c2b97a12e0ee9a1dbd525988e66d6056325b562fe1e4b4da3784fd9765 -SIZE (KDE/release-service/25.04.3/kbounce-25.04.3.tar.xz) = 3325088 +TIMESTAMP = 1754646273 +SHA256 (KDE/release-service/25.08.0/kbounce-25.08.0.tar.xz) = 05a3c78e59c1cf05cf59721c97f4c3745bfec1c23fa9b5a475113264d608a176 +SIZE (KDE/release-service/25.08.0/kbounce-25.08.0.tar.xz) = 3325080 diff --git a/games/kbreakout/distinfo b/games/kbreakout/distinfo index 8d5f4a85097f..a75a3c161eb5 100644 --- a/games/kbreakout/distinfo +++ b/games/kbreakout/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1751381364 -SHA256 (KDE/release-service/25.04.3/kbreakout-25.04.3.tar.xz) = 8af42969885651c22ccec84d115ccb41641608c8c7b96514ce0ffb643da95cd6 -SIZE (KDE/release-service/25.04.3/kbreakout-25.04.3.tar.xz) = 2558996 +TIMESTAMP = 1754646275 +SHA256 (KDE/release-service/25.08.0/kbreakout-25.08.0.tar.xz) = 23f0cf5d1814bfb8f396a4d02973c1391a0ed4fe7f45bd91bcbdf5718dbb6ca7 +SIZE (KDE/release-service/25.08.0/kbreakout-25.08.0.tar.xz) = 2559404 diff --git a/games/kdiamond/distinfo b/games/kdiamond/distinfo index 52ce982c0899..931b2122199a 100644 --- a/games/kdiamond/distinfo +++ b/games/kdiamond/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1751381366 -SHA256 (KDE/release-service/25.04.3/kdiamond-25.04.3.tar.xz) = ff6f80f8684671d24f2464dada3c6d21a3414f3403cc09700dde46acfad9a870 -SIZE (KDE/release-service/25.04.3/kdiamond-25.04.3.tar.xz) = 4674604 +TIMESTAMP = 1754646277 +SHA256 (KDE/release-service/25.08.0/kdiamond-25.08.0.tar.xz) = b74e0e900da60556576133dda9ef80f10a572be21c0ce5da1772a4452044e204 +SIZE (KDE/release-service/25.08.0/kdiamond-25.08.0.tar.xz) = 4674524 diff --git a/games/kfourinline/distinfo b/games/kfourinline/distinfo index b3638fb2931b..b4681b364939 100644 --- a/games/kfourinline/distinfo +++ b/games/kfourinline/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1751381369 -SHA256 (KDE/release-service/25.04.3/kfourinline-25.04.3.tar.xz) = ac6fa1ce6fb1cbc4c35454d7c2aeda92c81e9f2600f646bc73df35c377b1f669 -SIZE (KDE/release-service/25.04.3/kfourinline-25.04.3.tar.xz) = 749192 +TIMESTAMP = 1754646280 +SHA256 (KDE/release-service/25.08.0/kfourinline-25.08.0.tar.xz) = 9c613dc7bb2ed9b33ba996b7e7e18a60c944877ae1dc9472237248735c014521 +SIZE (KDE/release-service/25.08.0/kfourinline-25.08.0.tar.xz) = 749184 diff --git a/games/kgoldrunner/distinfo b/games/kgoldrunner/distinfo index 51ded8b005cb..275fb21dd2c6 100644 --- a/games/kgoldrunner/distinfo +++ b/games/kgoldrunner/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1751381371 -SHA256 (KDE/release-service/25.04.3/kgoldrunner-25.04.3.tar.xz) = 5d67848eb3385d59487ee2809f8bc44ef9fbd52db29978cb0487e5a9cdaf1e7d -SIZE (KDE/release-service/25.04.3/kgoldrunner-25.04.3.tar.xz) = 4419872 +TIMESTAMP = 1754646282 +SHA256 (KDE/release-service/25.08.0/kgoldrunner-25.08.0.tar.xz) = 95dcd86e97ab768fcecedd5aa2d0c2a86a9d0b079430539878e11e151f9d32a4 +SIZE (KDE/release-service/25.08.0/kgoldrunner-25.08.0.tar.xz) = 4427464 diff --git a/games/khangman/distinfo b/games/khangman/distinfo index fe2c9a579cbe..e7b969a5f49d 100644 --- a/games/khangman/distinfo +++ b/games/khangman/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1751381374 -SHA256 (KDE/release-service/25.04.3/khangman-25.04.3.tar.xz) = e9155943242f18bfedf01cebfe7bbc0798ea06777ea5da20672d2f4f28ee8d0d -SIZE (KDE/release-service/25.04.3/khangman-25.04.3.tar.xz) = 7027360 +TIMESTAMP = 1754646285 +SHA256 (KDE/release-service/25.08.0/khangman-25.08.0.tar.xz) = 6e0395602370083082525717485fa1030ae7b4e31ecb97ad2035aa3c4788a890 +SIZE (KDE/release-service/25.08.0/khangman-25.08.0.tar.xz) = 7029828 diff --git a/games/khangman/pkg-plist b/games/khangman/pkg-plist index c45889870d6d..43e03f059303 100644 --- a/games/khangman/pkg-plist +++ b/games/khangman/pkg-plist @@ -1,133 +1,134 @@ bin/khangman share/applications/org.kde.khangman.desktop share/config.kcfg/khangman.kcfg share/icons/hicolor/128x128/apps/khangman.png share/icons/hicolor/16x16/apps/khangman.png share/icons/hicolor/22x22/apps/khangman.png share/icons/hicolor/32x32/apps/khangman.png share/icons/hicolor/48x48/apps/khangman.png share/icons/hicolor/64x64/apps/khangman.png share/icons/hicolor/scalable/apps/khangman.svgz %%DATADIR%%/ca.txt %%DATADIR%%/cs.txt %%DATADIR%%/da.txt %%DATADIR%%/de.txt +%%DATADIR%%/el.txt %%DATADIR%%/eo.txt %%DATADIR%%/es.txt %%DATADIR%%/et.txt %%DATADIR%%/fi.txt %%DATADIR%%/fonts/Domestic_Manners.ttf %%DATADIR%%/fonts/Dustismo_Roman.ttf %%DATADIR%%/fr.txt %%DATADIR%%/ga.txt %%DATADIR%%/gl.txt %%DATADIR%%/hu.txt %%DATADIR%%/nb.txt %%DATADIR%%/nds.txt %%DATADIR%%/nn.txt %%DATADIR%%/pl.txt %%DATADIR%%/pt.txt %%DATADIR%%/pt_BR.txt %%DATADIR%%/ru.txt %%DATADIR%%/sk.txt %%DATADIR%%/sl.txt %%DATADIR%%/sr@ijekavianlatin.txt %%DATADIR%%/sr@latin.txt %%DATADIR%%/sv.txt %%DATADIR%%/tg.txt %%DATADIR%%/themes/khangman_bees.svg %%DATADIR%%/themes/khangman_desert.svg %%DATADIR%%/themes/khangman_notes.png %%DATADIR%%/themes/khangman_sea.svg %%DATADIR%%/themes/khangman_winter.svg %%DATADIR%%/themes/standardthemes.xml %%DATADIR%%/tr.txt %%DATADIR%%/uk.txt share/knsrcfiles/khangman.knsrc share/locale/af/LC_MESSAGES/khangman.mo share/locale/ar/LC_MESSAGES/khangman.mo share/locale/ast/LC_MESSAGES/khangman.mo share/locale/be/LC_MESSAGES/khangman.mo share/locale/bg/LC_MESSAGES/khangman.mo share/locale/bn/LC_MESSAGES/khangman.mo share/locale/br/LC_MESSAGES/khangman.mo share/locale/bs/LC_MESSAGES/khangman.mo share/locale/ca/LC_MESSAGES/khangman.mo share/locale/ca@valencia/LC_MESSAGES/khangman.mo share/locale/cs/LC_MESSAGES/khangman.mo share/locale/cy/LC_MESSAGES/khangman.mo share/locale/da/LC_MESSAGES/khangman.mo share/locale/de/LC_MESSAGES/khangman.mo share/locale/el/LC_MESSAGES/khangman.mo share/locale/en_GB/LC_MESSAGES/khangman.mo share/locale/eo/LC_MESSAGES/khangman.mo share/locale/es/LC_MESSAGES/khangman.mo share/locale/et/LC_MESSAGES/khangman.mo share/locale/eu/LC_MESSAGES/khangman.mo share/locale/fa/LC_MESSAGES/khangman.mo share/locale/fi/LC_MESSAGES/khangman.mo share/locale/fr/LC_MESSAGES/khangman.mo share/locale/ga/LC_MESSAGES/khangman.mo share/locale/gl/LC_MESSAGES/khangman.mo share/locale/gu/LC_MESSAGES/khangman.mo share/locale/he/LC_MESSAGES/khangman.mo share/locale/hi/LC_MESSAGES/khangman.mo share/locale/hne/LC_MESSAGES/khangman.mo share/locale/hr/LC_MESSAGES/khangman.mo share/locale/hu/LC_MESSAGES/khangman.mo share/locale/ia/LC_MESSAGES/khangman.mo share/locale/is/LC_MESSAGES/khangman.mo share/locale/it/LC_MESSAGES/khangman.mo share/locale/ja/LC_MESSAGES/khangman.mo share/locale/ka/LC_MESSAGES/khangman.mo share/locale/kk/LC_MESSAGES/khangman.mo share/locale/km/LC_MESSAGES/khangman.mo share/locale/ko/LC_MESSAGES/khangman.mo share/locale/lt/LC_MESSAGES/khangman.mo share/locale/lv/LC_MESSAGES/khangman.mo share/locale/mk/LC_MESSAGES/khangman.mo share/locale/ml/LC_MESSAGES/khangman.mo share/locale/mr/LC_MESSAGES/khangman.mo share/locale/ms/LC_MESSAGES/khangman.mo share/locale/nb/LC_MESSAGES/khangman.mo share/locale/nds/LC_MESSAGES/khangman.mo share/locale/ne/LC_MESSAGES/khangman.mo share/locale/nl/LC_MESSAGES/khangman.mo share/locale/nn/LC_MESSAGES/khangman.mo share/locale/oc/LC_MESSAGES/khangman.mo share/locale/pa/LC_MESSAGES/khangman.mo share/locale/pl/LC_MESSAGES/khangman.mo share/locale/pt/LC_MESSAGES/khangman.mo share/locale/pt_BR/LC_MESSAGES/khangman.mo share/locale/ro/LC_MESSAGES/khangman.mo share/locale/ru/LC_MESSAGES/khangman.mo share/locale/sa/LC_MESSAGES/khangman.mo share/locale/se/LC_MESSAGES/khangman.mo share/locale/si/LC_MESSAGES/khangman.mo share/locale/sk/LC_MESSAGES/khangman.mo share/locale/sl/LC_MESSAGES/khangman.mo share/locale/sq/LC_MESSAGES/khangman.mo share/locale/sv/LC_MESSAGES/khangman.mo share/locale/ta/LC_MESSAGES/khangman.mo share/locale/tg/LC_MESSAGES/khangman.mo share/locale/tr/LC_MESSAGES/khangman.mo share/locale/ug/LC_MESSAGES/khangman.mo share/locale/uk/LC_MESSAGES/khangman.mo share/locale/xh/LC_MESSAGES/khangman.mo share/locale/zh_CN/LC_MESSAGES/khangman.mo share/locale/zh_TW/LC_MESSAGES/khangman.mo share/man/ca/man6/khangman.6.gz share/man/de/man6/khangman.6.gz share/man/es/man6/khangman.6.gz share/man/et/man6/khangman.6.gz share/man/fr/man6/khangman.6.gz share/man/it/man6/khangman.6.gz share/man/man6/khangman.6.gz share/man/nl/man6/khangman.6.gz share/man/pt/man6/khangman.6.gz share/man/pt_BR/man6/khangman.6.gz share/man/ru/man6/khangman.6.gz share/man/sl/man6/khangman.6.gz share/man/sv/man6/khangman.6.gz share/man/uk/man6/khangman.6.gz share/metainfo/org.kde.khangman.appdata.xml diff --git a/games/kigo/distinfo b/games/kigo/distinfo index d46c129426b5..21a64848315a 100644 --- a/games/kigo/distinfo +++ b/games/kigo/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1751381376 -SHA256 (KDE/release-service/25.04.3/kigo-25.04.3.tar.xz) = e88ffc2d24a9e6a14bed88b24da699abcf80073d31429d295d522ff5085ef878 -SIZE (KDE/release-service/25.04.3/kigo-25.04.3.tar.xz) = 4837916 +TIMESTAMP = 1754646287 +SHA256 (KDE/release-service/25.08.0/kigo-25.08.0.tar.xz) = a249d9108baba48130f9364f7574bc77c60b8c1d5b6d5a4e177e05924f0ee61b +SIZE (KDE/release-service/25.08.0/kigo-25.08.0.tar.xz) = 4837828 diff --git a/games/killbots/distinfo b/games/killbots/distinfo index 3d003eba11f9..0fb654808c72 100644 --- a/games/killbots/distinfo +++ b/games/killbots/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1751381378 -SHA256 (KDE/release-service/25.04.3/killbots-25.04.3.tar.xz) = b5b5937364f6e744e04a9076a994551f8a0541b8fc9c09c852203f261c6c3686 -SIZE (KDE/release-service/25.04.3/killbots-25.04.3.tar.xz) = 1177620 +TIMESTAMP = 1754646290 +SHA256 (KDE/release-service/25.08.0/killbots-25.08.0.tar.xz) = 6eb10d09aeca3dd6fff4ddaaebe2c857a2b3b9187e1ad1f7a7b6d817d87c6d40 +SIZE (KDE/release-service/25.08.0/killbots-25.08.0.tar.xz) = 1178476 diff --git a/games/kiriki/distinfo b/games/kiriki/distinfo index 49c8220bca3d..df183f333051 100644 --- a/games/kiriki/distinfo +++ b/games/kiriki/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1751381381 -SHA256 (KDE/release-service/25.04.3/kiriki-25.04.3.tar.xz) = 1f4f33fb6f2a26998b222f7a670bd98f702d0f78d4c812810c280d18b2355bdb -SIZE (KDE/release-service/25.04.3/kiriki-25.04.3.tar.xz) = 376104 +TIMESTAMP = 1754646292 +SHA256 (KDE/release-service/25.08.0/kiriki-25.08.0.tar.xz) = 73bd414144aed83981c3cb9be5bc4fab51a5a6e2bf26e1d1e58898bf6a5f38cd +SIZE (KDE/release-service/25.08.0/kiriki-25.08.0.tar.xz) = 376256 diff --git a/games/kjumpingcube/distinfo b/games/kjumpingcube/distinfo index d1b21f1ad090..d2cce44b7d03 100644 --- a/games/kjumpingcube/distinfo +++ b/games/kjumpingcube/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1751381383 -SHA256 (KDE/release-service/25.04.3/kjumpingcube-25.04.3.tar.xz) = 2fa7771f7a38e42e4800feb93d987d633305b582d5eebbb2ab5403f0f67617c5 -SIZE (KDE/release-service/25.04.3/kjumpingcube-25.04.3.tar.xz) = 349948 +TIMESTAMP = 1754646294 +SHA256 (KDE/release-service/25.08.0/kjumpingcube-25.08.0.tar.xz) = 64a647d5643230c191152181edfaf71d77626305df5d557f0632dfc1140393db +SIZE (KDE/release-service/25.08.0/kjumpingcube-25.08.0.tar.xz) = 351356 diff --git a/games/klickety/distinfo b/games/klickety/distinfo index 6582db1315ff..6bb297a6a97d 100644 --- a/games/klickety/distinfo +++ b/games/klickety/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1751381386 -SHA256 (KDE/release-service/25.04.3/klickety-25.04.3.tar.xz) = 01e687cc83de5c6ea9a3152c8d815f1d6800363e1ce4c59026ed84538879459b -SIZE (KDE/release-service/25.04.3/klickety-25.04.3.tar.xz) = 1389912 +TIMESTAMP = 1754646297 +SHA256 (KDE/release-service/25.08.0/klickety-25.08.0.tar.xz) = 81183fb2f37e47fb68743194839cc2f6f3e4241296cc8dde786dc73a23982566 +SIZE (KDE/release-service/25.08.0/klickety-25.08.0.tar.xz) = 1390048 diff --git a/games/klines/distinfo b/games/klines/distinfo index 24edd5d4a63e..cc934a44930a 100644 --- a/games/klines/distinfo +++ b/games/klines/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1751381388 -SHA256 (KDE/release-service/25.04.3/klines-25.04.3.tar.xz) = bd1a3f7b568187e71745ec306e66498183f27aba9bff3b879f356cc69b600a04 -SIZE (KDE/release-service/25.04.3/klines-25.04.3.tar.xz) = 1675284 +TIMESTAMP = 1754646299 +SHA256 (KDE/release-service/25.08.0/klines-25.08.0.tar.xz) = b77b2459a5f4646439d0043e7d3b3d7cce41aeeffd567c86b9d8c325ba947420 +SIZE (KDE/release-service/25.08.0/klines-25.08.0.tar.xz) = 1674460 diff --git a/games/kmahjongg/distinfo b/games/kmahjongg/distinfo index 970c1c982d30..3bcc5a362cdb 100644 --- a/games/kmahjongg/distinfo +++ b/games/kmahjongg/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1751381391 -SHA256 (KDE/release-service/25.04.3/kmahjongg-25.04.3.tar.xz) = 6c67b56b0823facae97b0061db2613d8d901151d26f195e87e0833057b66b795 -SIZE (KDE/release-service/25.04.3/kmahjongg-25.04.3.tar.xz) = 3726268 +TIMESTAMP = 1754646302 +SHA256 (KDE/release-service/25.08.0/kmahjongg-25.08.0.tar.xz) = 525e90d62ff8db498131fc7b1ca4cbf8611adfe00a1433f2658bc943a45a2e5a +SIZE (KDE/release-service/25.08.0/kmahjongg-25.08.0.tar.xz) = 3726264 diff --git a/games/kmines/distinfo b/games/kmines/distinfo index 70bf9866d8d7..d5ece9a0e4bd 100644 --- a/games/kmines/distinfo +++ b/games/kmines/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1751381393 -SHA256 (KDE/release-service/25.04.3/kmines-25.04.3.tar.xz) = fd37c5d6d1a27e4841f5cd60e6763f793182100fc00b5c50f3c2b3e1aa9d9783 -SIZE (KDE/release-service/25.04.3/kmines-25.04.3.tar.xz) = 950204 +TIMESTAMP = 1754646304 +SHA256 (KDE/release-service/25.08.0/kmines-25.08.0.tar.xz) = 31968a4773da1004f335347b68f00ebb132dc9bd20f8f95c0d90dd94db7480f9 +SIZE (KDE/release-service/25.08.0/kmines-25.08.0.tar.xz) = 950524 diff --git a/games/knavalbattle/distinfo b/games/knavalbattle/distinfo index 74711207b388..3f557a219358 100644 --- a/games/knavalbattle/distinfo +++ b/games/knavalbattle/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1751381396 -SHA256 (KDE/release-service/25.04.3/knavalbattle-25.04.3.tar.xz) = 97b2d2b5632d000c3d6eddfb19c9d3cc4414300dc5c805322d6eb0bb241c5215 -SIZE (KDE/release-service/25.04.3/knavalbattle-25.04.3.tar.xz) = 1050884 +TIMESTAMP = 1754646306 +SHA256 (KDE/release-service/25.08.0/knavalbattle-25.08.0.tar.xz) = 1ea82f64368f5f93ca7ccad7986bb3f111096bbb194b72472f3a6a032ac48372 +SIZE (KDE/release-service/25.08.0/knavalbattle-25.08.0.tar.xz) = 1051000 diff --git a/games/knetwalk/distinfo b/games/knetwalk/distinfo index 058018aba748..4de7d3e5d482 100644 --- a/games/knetwalk/distinfo +++ b/games/knetwalk/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1751381398 -SHA256 (KDE/release-service/25.04.3/knetwalk-25.04.3.tar.xz) = 1787fc4556b98c509dabe6918a1f5221c5e922ba22b17c356acc1a3b9243e480 -SIZE (KDE/release-service/25.04.3/knetwalk-25.04.3.tar.xz) = 1012320 +TIMESTAMP = 1754646309 +SHA256 (KDE/release-service/25.08.0/knetwalk-25.08.0.tar.xz) = 4cb2a5108ed4aa0689744c790fbf73e3a69a5b31fc364b6d6edd6a390ae1d64e +SIZE (KDE/release-service/25.08.0/knetwalk-25.08.0.tar.xz) = 1012820 diff --git a/games/knights/distinfo b/games/knights/distinfo index bdb559342ac6..3a9fe7518eec 100644 --- a/games/knights/distinfo +++ b/games/knights/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1751381401 -SHA256 (KDE/release-service/25.04.3/knights-25.04.3.tar.xz) = dd2614334055837bb15a6b548025998bceea5aaf4244847f2a7f74e4ea5b6fce -SIZE (KDE/release-service/25.04.3/knights-25.04.3.tar.xz) = 2498200 +TIMESTAMP = 1754646311 +SHA256 (KDE/release-service/25.08.0/knights-25.08.0.tar.xz) = e587ee6e91a4ae803287e2b4c443cd63b04f5912a3c1ab14f4345c543bd7256e +SIZE (KDE/release-service/25.08.0/knights-25.08.0.tar.xz) = 2502164 diff --git a/games/kolf/distinfo b/games/kolf/distinfo index 7e7032d96c5a..076e1ceb12cf 100644 --- a/games/kolf/distinfo +++ b/games/kolf/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1751381403 -SHA256 (KDE/release-service/25.04.3/kolf-25.04.3.tar.xz) = 213fbb51cf6449c32e179ad015b2704d34582743c10e055853f6cae11c07699a -SIZE (KDE/release-service/25.04.3/kolf-25.04.3.tar.xz) = 1084080 +TIMESTAMP = 1754646314 +SHA256 (KDE/release-service/25.08.0/kolf-25.08.0.tar.xz) = 0693209077dbf052f44f0fb2013ce6fad7162b8732462367af34fc85cf41210a +SIZE (KDE/release-service/25.08.0/kolf-25.08.0.tar.xz) = 1085292 diff --git a/games/kollision/distinfo b/games/kollision/distinfo index 43c3c2a66e51..62cbc41441e3 100644 --- a/games/kollision/distinfo +++ b/games/kollision/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1751381406 -SHA256 (KDE/release-service/25.04.3/kollision-25.04.3.tar.xz) = 1877fed41d51a8d526b0cfa737a6514f73ab86bbf09721ae63e93c943d4159f8 -SIZE (KDE/release-service/25.04.3/kollision-25.04.3.tar.xz) = 313708 +TIMESTAMP = 1754646316 +SHA256 (KDE/release-service/25.08.0/kollision-25.08.0.tar.xz) = 11d90b551eb6bd03b0b80dc8af615efd8c149672fb7034a589803589d251d2d9 +SIZE (KDE/release-service/25.08.0/kollision-25.08.0.tar.xz) = 313728 diff --git a/games/konquest/distinfo b/games/konquest/distinfo index c7de4d2423a3..8f8680d29b0e 100644 --- a/games/konquest/distinfo +++ b/games/konquest/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1751381408 -SHA256 (KDE/release-service/25.04.3/konquest-25.04.3.tar.xz) = 2ec357632081136fc2a4a76771ef9e9c2132dbc16c8a13f4b2c51046fd32e153 -SIZE (KDE/release-service/25.04.3/konquest-25.04.3.tar.xz) = 863536 +TIMESTAMP = 1754646319 +SHA256 (KDE/release-service/25.08.0/konquest-25.08.0.tar.xz) = ac4b57d7e0ffa2b03c2a6794b4f4af7acfd284cbf3a8b38559cf8f48c8687184 +SIZE (KDE/release-service/25.08.0/konquest-25.08.0.tar.xz) = 863576 diff --git a/games/kpat/distinfo b/games/kpat/distinfo index 71240401d215..3594f67a0188 100644 --- a/games/kpat/distinfo +++ b/games/kpat/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1751381410 -SHA256 (KDE/release-service/25.04.3/kpat-25.04.3.tar.xz) = cdc217687de8debc22ef97ddd3d59980ba6f7f836b34c442b3c991e6e5a1548e -SIZE (KDE/release-service/25.04.3/kpat-25.04.3.tar.xz) = 3740208 +TIMESTAMP = 1754646321 +SHA256 (KDE/release-service/25.08.0/kpat-25.08.0.tar.xz) = 6f47a52f047532b75394e848d09d2f6b11f0706dddde8ec4be876d0e5678ba1a +SIZE (KDE/release-service/25.08.0/kpat-25.08.0.tar.xz) = 3742540 diff --git a/games/kreversi/distinfo b/games/kreversi/distinfo index 7ce75c81d969..1e4978e5d523 100644 --- a/games/kreversi/distinfo +++ b/games/kreversi/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1751381413 -SHA256 (KDE/release-service/25.04.3/kreversi-25.04.3.tar.xz) = c123e8c716aae3cd0d5f11e4bdc49e36c32f66ced0063e074fda730ea0e24c29 -SIZE (KDE/release-service/25.04.3/kreversi-25.04.3.tar.xz) = 1037400 +TIMESTAMP = 1754646323 +SHA256 (KDE/release-service/25.08.0/kreversi-25.08.0.tar.xz) = f5d03652a984b4c4fef8935330e1b3026f6f8279d94ef9a8c858fbace0a68171 +SIZE (KDE/release-service/25.08.0/kreversi-25.08.0.tar.xz) = 1037588 diff --git a/games/kshisen/distinfo b/games/kshisen/distinfo index a4976f7844bb..55a1e84bf18c 100644 --- a/games/kshisen/distinfo +++ b/games/kshisen/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1751381415 -SHA256 (KDE/release-service/25.04.3/kshisen-25.04.3.tar.xz) = 205a644745f1737c6dc633463b1080c4928a03bf37449beb8215f9d2ea4d667d -SIZE (KDE/release-service/25.04.3/kshisen-25.04.3.tar.xz) = 975832 +TIMESTAMP = 1754646326 +SHA256 (KDE/release-service/25.08.0/kshisen-25.08.0.tar.xz) = ad43776d590af70bcd0103b28e2d94e8e33f1930a44d91324119afde9219e491 +SIZE (KDE/release-service/25.08.0/kshisen-25.08.0.tar.xz) = 975880 diff --git a/games/ksirk/distinfo b/games/ksirk/distinfo index 7fe02fda7eff..0939548fedfb 100644 --- a/games/ksirk/distinfo +++ b/games/ksirk/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1751381418 -SHA256 (KDE/release-service/25.04.3/ksirk-25.04.3.tar.xz) = 6bd48b52b646713417ccc4bb912de400a6a5854e829b3b2a110ad5c0dab0aa4d -SIZE (KDE/release-service/25.04.3/ksirk-25.04.3.tar.xz) = 6713700 +TIMESTAMP = 1754646328 +SHA256 (KDE/release-service/25.08.0/ksirk-25.08.0.tar.xz) = 902121d1bc55796e99d02840058dec2a6133ac3f4a46339a4693494536043b4b +SIZE (KDE/release-service/25.08.0/ksirk-25.08.0.tar.xz) = 6716700 diff --git a/games/ksnakeduel/distinfo b/games/ksnakeduel/distinfo index 77d26627365f..6a53ced7b044 100644 --- a/games/ksnakeduel/distinfo +++ b/games/ksnakeduel/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1751381420 -SHA256 (KDE/release-service/25.04.3/ksnakeduel-25.04.3.tar.xz) = acf7148bac1fff733a7032ba26b28acb84f42b96d5172d3ba0a1f3475f113cb5 -SIZE (KDE/release-service/25.04.3/ksnakeduel-25.04.3.tar.xz) = 580516 +TIMESTAMP = 1754646331 +SHA256 (KDE/release-service/25.08.0/ksnakeduel-25.08.0.tar.xz) = 7aa2409cf69e29004910cf1a36bc6eb646a2b34e3f7a1b406b3f8b0442e41a1b +SIZE (KDE/release-service/25.08.0/ksnakeduel-25.08.0.tar.xz) = 580508 diff --git a/games/kspaceduel/distinfo b/games/kspaceduel/distinfo index ba08521d1573..7f22222682e7 100644 --- a/games/kspaceduel/distinfo +++ b/games/kspaceduel/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1751381423 -SHA256 (KDE/release-service/25.04.3/kspaceduel-25.04.3.tar.xz) = d550de36f719393ab53cc2cfbc659ee8f8a9573877eb1d3a780c323818fd8d8a -SIZE (KDE/release-service/25.04.3/kspaceduel-25.04.3.tar.xz) = 636924 +TIMESTAMP = 1754646333 +SHA256 (KDE/release-service/25.08.0/kspaceduel-25.08.0.tar.xz) = bc28dff096caae83e5b1322854da864bdfdd01089fcd5134d632194e4c06eed7 +SIZE (KDE/release-service/25.08.0/kspaceduel-25.08.0.tar.xz) = 636920 diff --git a/games/ksquares/distinfo b/games/ksquares/distinfo index f4d8fd2b1be0..f12d7ed77adc 100644 --- a/games/ksquares/distinfo +++ b/games/ksquares/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1751381425 -SHA256 (KDE/release-service/25.04.3/ksquares-25.04.3.tar.xz) = 7426b63421f8d121b0860cf8b136f9a02740713f8b1ec92cbb471e6adbbad48d -SIZE (KDE/release-service/25.04.3/ksquares-25.04.3.tar.xz) = 324412 +TIMESTAMP = 1754646336 +SHA256 (KDE/release-service/25.08.0/ksquares-25.08.0.tar.xz) = e4d5c9d956c3fcb77e3685b97d7e3766b5b323264b97d5b20fca2aaafd2693de +SIZE (KDE/release-service/25.08.0/ksquares-25.08.0.tar.xz) = 324520 diff --git a/games/ksudoku/distinfo b/games/ksudoku/distinfo index 607cfa698e1f..5d2e784013c2 100644 --- a/games/ksudoku/distinfo +++ b/games/ksudoku/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1751381428 -SHA256 (KDE/release-service/25.04.3/ksudoku-25.04.3.tar.xz) = c14d614880f49bd9c036bad231629821e22e313d56da0b28c01823f3d27282f6 -SIZE (KDE/release-service/25.04.3/ksudoku-25.04.3.tar.xz) = 1736624 +TIMESTAMP = 1754646338 +SHA256 (KDE/release-service/25.08.0/ksudoku-25.08.0.tar.xz) = 70cda244397083b54a9ccb2bda26dac929604fd11b4532ec646e63e0ef07a3ac +SIZE (KDE/release-service/25.08.0/ksudoku-25.08.0.tar.xz) = 1746400 diff --git a/games/ktuberling/distinfo b/games/ktuberling/distinfo index 3d1b3bd04955..859d65a30619 100644 --- a/games/ktuberling/distinfo +++ b/games/ktuberling/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1751381430 -SHA256 (KDE/release-service/25.04.3/ktuberling-25.04.3.tar.xz) = 51f5c51330e825ea7717d0b5e895669eb02e5a7a579e0a55926c9e4ed56d8d16 -SIZE (KDE/release-service/25.04.3/ktuberling-25.04.3.tar.xz) = 71554976 +TIMESTAMP = 1754646341 +SHA256 (KDE/release-service/25.08.0/ktuberling-25.08.0.tar.xz) = fc30d68a9b4168a751085b09252cdbd547c6305dd505d61f1adf6afadb38f996 +SIZE (KDE/release-service/25.08.0/ktuberling-25.08.0.tar.xz) = 71572556 diff --git a/games/kubrick/distinfo b/games/kubrick/distinfo index b7cf57e6f945..2a5695a146d4 100644 --- a/games/kubrick/distinfo +++ b/games/kubrick/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1751381433 -SHA256 (KDE/release-service/25.04.3/kubrick-25.04.3.tar.xz) = 41b16037448f4c4da75aa20b7035e0faaf6b8c280bb05fc1fc79a86f1ce2295c -SIZE (KDE/release-service/25.04.3/kubrick-25.04.3.tar.xz) = 381300 +TIMESTAMP = 1754646343 +SHA256 (KDE/release-service/25.08.0/kubrick-25.08.0.tar.xz) = 28641a46426db3eab4a7c8f1c319c41206a581586e3f6ed544638c4b7fbc7cf9 +SIZE (KDE/release-service/25.08.0/kubrick-25.08.0.tar.xz) = 381272 diff --git a/games/libkdegames/distinfo b/games/libkdegames/distinfo index 01764ab787af..7e7e5814e9f9 100644 --- a/games/libkdegames/distinfo +++ b/games/libkdegames/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1751381435 -SHA256 (KDE/release-service/25.04.3/libkdegames-25.04.3.tar.xz) = 63cd2b137e989a635994c48f93dc9ecf3b5aa6306d39bda5a7a38c9aa2a437a4 -SIZE (KDE/release-service/25.04.3/libkdegames-25.04.3.tar.xz) = 5979004 +TIMESTAMP = 1754646345 +SHA256 (KDE/release-service/25.08.0/libkdegames-25.08.0.tar.xz) = 15579343d5b06608115e8e95473b80bc91de8841b1a79584f5615a91fe57e2f7 +SIZE (KDE/release-service/25.08.0/libkdegames-25.08.0.tar.xz) = 5974808 diff --git a/games/libkmahjongg/distinfo b/games/libkmahjongg/distinfo index 3948984e6de2..6470e9357211 100644 --- a/games/libkmahjongg/distinfo +++ b/games/libkmahjongg/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1751381438 -SHA256 (KDE/release-service/25.04.3/libkmahjongg-25.04.3.tar.xz) = 6570b054d02b12f7c0b37d28dd8930c17cc6a4616437613448ab69cc4b08446c -SIZE (KDE/release-service/25.04.3/libkmahjongg-25.04.3.tar.xz) = 1694936 +TIMESTAMP = 1754646348 +SHA256 (KDE/release-service/25.08.0/libkmahjongg-25.08.0.tar.xz) = 9c4e7dd2f6ebb1ea3de63c2849fd305a6dbeb2cb9b229692a9ec5aabddf76880 +SIZE (KDE/release-service/25.08.0/libkmahjongg-25.08.0.tar.xz) = 1695208 diff --git a/games/lskat/distinfo b/games/lskat/distinfo index 507e2558089d..ad930ce71ee3 100644 --- a/games/lskat/distinfo +++ b/games/lskat/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1751381440 -SHA256 (KDE/release-service/25.04.3/lskat-25.04.3.tar.xz) = 97a1c20f801be165fe7e607213240341edf54d7fe26e5633f9658966ca0da50d -SIZE (KDE/release-service/25.04.3/lskat-25.04.3.tar.xz) = 1229416 +TIMESTAMP = 1754646350 +SHA256 (KDE/release-service/25.08.0/lskat-25.08.0.tar.xz) = 33e003193496e7ab17eb984b9655a14656263ca33f591c9ea3d1bf8f188af2e6 +SIZE (KDE/release-service/25.08.0/lskat-25.08.0.tar.xz) = 1229772 diff --git a/games/palapeli/distinfo b/games/palapeli/distinfo index 3ccebf7bcfab..f614b2158b79 100644 --- a/games/palapeli/distinfo +++ b/games/palapeli/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1751381443 -SHA256 (KDE/release-service/25.04.3/palapeli-25.04.3.tar.xz) = b1e2253aca27c8e690b1cd204fa2ac1fe39f18cf106be4a3ef96de93412bd84f -SIZE (KDE/release-service/25.04.3/palapeli-25.04.3.tar.xz) = 2129724 +TIMESTAMP = 1754646353 +SHA256 (KDE/release-service/25.08.0/palapeli-25.08.0.tar.xz) = a5d2252a90968dfbd262e3e57cbf5c3e432efcf6908dde149b04428bed986e61 +SIZE (KDE/release-service/25.08.0/palapeli-25.08.0.tar.xz) = 2129648 diff --git a/games/picmi/distinfo b/games/picmi/distinfo index 3d6c01e9d521..4cea97ba2d6a 100644 --- a/games/picmi/distinfo +++ b/games/picmi/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1751381445 -SHA256 (KDE/release-service/25.04.3/picmi-25.04.3.tar.xz) = c94f5a3fe8a4401b4001e21ff3e274cb421ee56f2ef7daeaff881da709a66aa5 -SIZE (KDE/release-service/25.04.3/picmi-25.04.3.tar.xz) = 1521940 +TIMESTAMP = 1754646355 +SHA256 (KDE/release-service/25.08.0/picmi-25.08.0.tar.xz) = c0edbe4da0fbc78223893a3fec1cba75840f0b1eb735a4a10be422f79bb959a3 +SIZE (KDE/release-service/25.08.0/picmi-25.08.0.tar.xz) = 1521852 diff --git a/games/skladnik/distinfo b/games/skladnik/distinfo index e4e48bfaddde..38415e788049 100644 --- a/games/skladnik/distinfo +++ b/games/skladnik/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1751381448 -SHA256 (KDE/release-service/25.04.3/skladnik-25.04.3.tar.xz) = 9dc7bc2e7148d9d0551a67bd56b6a8fac34fc17ccf11baf04075b8b39af27dfc -SIZE (KDE/release-service/25.04.3/skladnik-25.04.3.tar.xz) = 416848 +TIMESTAMP = 1754646358 +SHA256 (KDE/release-service/25.08.0/skladnik-25.08.0.tar.xz) = 530256e6e7c4fa65a21f1cbb367a2a638daef34ddcc2a51180de223fb1ba694d +SIZE (KDE/release-service/25.08.0/skladnik-25.08.0.tar.xz) = 416776 diff --git a/graphics/colord-kde/distinfo b/graphics/colord-kde/distinfo index d5adadbb20be..1d6fb37362d8 100644 --- a/graphics/colord-kde/distinfo +++ b/graphics/colord-kde/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1751381448 -SHA256 (KDE/release-service/25.04.3/colord-kde-25.04.3.tar.xz) = bcebe47737750d066e9c5560a7f9398bbe6327cf265714b3c708a4d1d6ea1803 -SIZE (KDE/release-service/25.04.3/colord-kde-25.04.3.tar.xz) = 120080 +TIMESTAMP = 1754646358 +SHA256 (KDE/release-service/25.08.0/colord-kde-25.08.0.tar.xz) = 73a619de531c76086973efce0ee1a1520bd385cff2e5708e2921123354c4552a +SIZE (KDE/release-service/25.08.0/colord-kde-25.08.0.tar.xz) = 120040 diff --git a/graphics/gwenview/distinfo b/graphics/gwenview/distinfo index 3496f59c7f19..2d90abbd041b 100644 --- a/graphics/gwenview/distinfo +++ b/graphics/gwenview/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1751381450 -SHA256 (KDE/release-service/25.04.3/gwenview-25.04.3.tar.xz) = 59bf9fc4a4be87260781ccb5872212484b697caa53fa0ee7e128bdb08eaf5e87 -SIZE (KDE/release-service/25.04.3/gwenview-25.04.3.tar.xz) = 6533552 +TIMESTAMP = 1754646360 +SHA256 (KDE/release-service/25.08.0/gwenview-25.08.0.tar.xz) = 5bf1bfccedef659f4df913adddd64a2c964d39b84cf1427104bb15dbaa86f08e +SIZE (KDE/release-service/25.08.0/gwenview-25.08.0.tar.xz) = 6533684 diff --git a/graphics/kamera/distinfo b/graphics/kamera/distinfo index 6bfbaf5bd4e6..f813b7a1efa6 100644 --- a/graphics/kamera/distinfo +++ b/graphics/kamera/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1751381453 -SHA256 (KDE/release-service/25.04.3/kamera-25.04.3.tar.xz) = 46b9caa4a9ef218342f57eeb0fdad30635fc5090f22f89dd1ced5856f060dd49 -SIZE (KDE/release-service/25.04.3/kamera-25.04.3.tar.xz) = 132972 +TIMESTAMP = 1754646363 +SHA256 (KDE/release-service/25.08.0/kamera-25.08.0.tar.xz) = 249af06f136ce6d69146954518fb4cc702135c673c4f34485cc92243febd1ac5 +SIZE (KDE/release-service/25.08.0/kamera-25.08.0.tar.xz) = 133132 diff --git a/graphics/kcolorchooser/distinfo b/graphics/kcolorchooser/distinfo index 80a24a48af0a..ff3812bfd25f 100644 --- a/graphics/kcolorchooser/distinfo +++ b/graphics/kcolorchooser/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1751381455 -SHA256 (KDE/release-service/25.04.3/kcolorchooser-25.04.3.tar.xz) = 08db027a1deb9e0a429abde8c8702b47e1401ac0085812f78ac10a7c610270f5 -SIZE (KDE/release-service/25.04.3/kcolorchooser-25.04.3.tar.xz) = 36396 +TIMESTAMP = 1754646365 +SHA256 (KDE/release-service/25.08.0/kcolorchooser-25.08.0.tar.xz) = a568316aebea88e2af4125a570f40c4c4d208bcda5c9f3256146edf3a27f51bd +SIZE (KDE/release-service/25.08.0/kcolorchooser-25.08.0.tar.xz) = 36404 diff --git a/graphics/kdegraphics-mobipocket/distinfo b/graphics/kdegraphics-mobipocket/distinfo index 0333dc54d9d2..32811192bb05 100644 --- a/graphics/kdegraphics-mobipocket/distinfo +++ b/graphics/kdegraphics-mobipocket/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1751381458 -SHA256 (KDE/release-service/25.04.3/kdegraphics-mobipocket-25.04.3.tar.xz) = 12f66c78d190867c1c994f650f1409c87bde0fd592911ad3a475b7502045f3d3 -SIZE (KDE/release-service/25.04.3/kdegraphics-mobipocket-25.04.3.tar.xz) = 13136 +TIMESTAMP = 1754646368 +SHA256 (KDE/release-service/25.08.0/kdegraphics-mobipocket-25.08.0.tar.xz) = d60c4eb4387d63036a8d734f77c5cbb75aea4c9dc8ecdfece46b227c007416fe +SIZE (KDE/release-service/25.08.0/kdegraphics-mobipocket-25.08.0.tar.xz) = 19804 diff --git a/graphics/kdegraphics-mobipocket/pkg-plist.qt5 b/graphics/kdegraphics-mobipocket/pkg-plist.qt5 index ddc051f14194..69700b5a90ac 100644 --- a/graphics/kdegraphics-mobipocket/pkg-plist.qt5 +++ b/graphics/kdegraphics-mobipocket/pkg-plist.qt5 @@ -1,11 +1,11 @@ include/QMobipocket/qmobipocket/mobipocket.h -include/QMobipocket/qmobipocket/qfilestream.h include/QMobipocket/qmobipocket/qmobipocket_export.h include/QMobipocket/qmobipocket_version.h lib/cmake/QMobipocket/QMobipocketConfig.cmake lib/cmake/QMobipocket/QMobipocketConfigVersion.cmake lib/cmake/QMobipocket/QMobipocketTargets-%%CMAKE_BUILD_TYPE%%.cmake lib/cmake/QMobipocket/QMobipocketTargets.cmake lib/libqmobipocket.so -lib/libqmobipocket.so.2 -lib/libqmobipocket.so.2.1.0 +lib/libqmobipocket.so.3 +lib/libqmobipocket.so.3.0.0 +share/qlogging-categories5/qmobipocket.categories diff --git a/graphics/kdegraphics-mobipocket/pkg-plist.qt6 b/graphics/kdegraphics-mobipocket/pkg-plist.qt6 index f0bf0302c573..dcb0fde86af0 100644 --- a/graphics/kdegraphics-mobipocket/pkg-plist.qt6 +++ b/graphics/kdegraphics-mobipocket/pkg-plist.qt6 @@ -1,11 +1,11 @@ include/QMobipocket6/qmobipocket/mobipocket.h -include/QMobipocket6/qmobipocket/qfilestream.h include/QMobipocket6/qmobipocket/qmobipocket_export.h include/QMobipocket6/qmobipocket_version.h lib/cmake/QMobipocket6/QMobipocket6Config.cmake lib/cmake/QMobipocket6/QMobipocket6ConfigVersion.cmake lib/cmake/QMobipocket6/QMobipocket6Targets-%%CMAKE_BUILD_TYPE%%.cmake lib/cmake/QMobipocket6/QMobipocket6Targets.cmake lib/libQMobipocket6.so -lib/libQMobipocket6.so.2 -lib/libQMobipocket6.so.2.1.0 +lib/libQMobipocket6.so.3 +lib/libQMobipocket6.so.3.0.0 +share/qlogging-categories6/qmobipocket.categories diff --git a/graphics/kdegraphics-svgpart/distinfo b/graphics/kdegraphics-svgpart/distinfo index 7d3ed5333176..c25ad0292e9d 100644 --- a/graphics/kdegraphics-svgpart/distinfo +++ b/graphics/kdegraphics-svgpart/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1751381460 -SHA256 (KDE/release-service/25.04.3/svgpart-25.04.3.tar.xz) = 193f852d7d1fba4ec7ad25dd59d567d58bb6533e436a50d80f54fe1b94202b24 -SIZE (KDE/release-service/25.04.3/svgpart-25.04.3.tar.xz) = 30252 +TIMESTAMP = 1754646370 +SHA256 (KDE/release-service/25.08.0/svgpart-25.08.0.tar.xz) = c836529f5a4014c4f9adad7d54fd857e4cb39da95ced710e704d4f80d3af0f30 +SIZE (KDE/release-service/25.08.0/svgpart-25.08.0.tar.xz) = 30280 diff --git a/graphics/kdegraphics-thumbnailers/distinfo b/graphics/kdegraphics-thumbnailers/distinfo index 8a67938b184f..490086c93049 100644 --- a/graphics/kdegraphics-thumbnailers/distinfo +++ b/graphics/kdegraphics-thumbnailers/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1751381463 -SHA256 (KDE/release-service/25.04.3/kdegraphics-thumbnailers-25.04.3.tar.xz) = 221b584c92c1c1570720caba97706de36dbe3ef4f6ee324b774513e37f446318 -SIZE (KDE/release-service/25.04.3/kdegraphics-thumbnailers-25.04.3.tar.xz) = 49160 +TIMESTAMP = 1754646372 +SHA256 (KDE/release-service/25.08.0/kdegraphics-thumbnailers-25.08.0.tar.xz) = b9f2b6ce162a245e3713305d8ca13f2b8ffa20596705ab6f94b49c40972858b9 +SIZE (KDE/release-service/25.08.0/kdegraphics-thumbnailers-25.08.0.tar.xz) = 55920 diff --git a/graphics/kgraphviewer/distinfo b/graphics/kgraphviewer/distinfo index 9548a599cdf1..492efc844aa5 100644 --- a/graphics/kgraphviewer/distinfo +++ b/graphics/kgraphviewer/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1751381465 -SHA256 (KDE/release-service/25.04.3/kgraphviewer-25.04.3.tar.xz) = 7b79dbccc43e13c26d76b2606b7ec6c2d87e857a116ca2c7150d3188dfdf870f -SIZE (KDE/release-service/25.04.3/kgraphviewer-25.04.3.tar.xz) = 1595568 +TIMESTAMP = 1754646375 +SHA256 (KDE/release-service/25.08.0/kgraphviewer-25.08.0.tar.xz) = f6222f3db0c66de88f5114e1ecd158ae5d33fd3fccce6e338085f5ff4b6500d5 +SIZE (KDE/release-service/25.08.0/kgraphviewer-25.08.0.tar.xz) = 1599596 diff --git a/graphics/kgraphviewer/pkg-plist b/graphics/kgraphviewer/pkg-plist index 17f798888de1..3532ef6c3d54 100644 --- a/graphics/kgraphviewer/pkg-plist +++ b/graphics/kgraphviewer/pkg-plist @@ -1,141 +1,142 @@ bin/kgraphviewer include/kgraphviewer/kgraphviewer_interface.h lib/cmake/KGraphViewerPart/KGraphViewerPartConfig.cmake lib/cmake/KGraphViewerPart/KGraphViewerPartConfigVersion.cmake lib/cmake/KGraphViewerPart/KGraphViewerPartTargets.cmake lib/libkgraphviewer.so lib/libkgraphviewer.so.0 lib/libkgraphviewer.so.%%SHLIB_VER_LONG%% %%QT_PLUGINDIR%%/kf6/parts/kgraphviewerpart.so share/applications/org.kde.kgraphviewer.desktop share/config.kcfg/kgraphviewer_partsettings.kcfg share/config.kcfg/kgraphviewersettings.kcfg share/doc/HTML/ca/kgraphviewer/index.cache.bz2 share/doc/HTML/ca/kgraphviewer/index.docbook share/doc/HTML/ca/kgraphviewer/kgraphviewer-snap-ask1.png share/doc/HTML/ca/kgraphviewer/kgraphviewer-snap-ask2.png share/doc/HTML/ca/kgraphviewer/kgraphviewer-snap-ask3.png share/doc/HTML/ca/kgraphviewer/kgraphviewer-snap-config-appearance.png share/doc/HTML/ca/kgraphviewer/kgraphviewer-snap-config-parsing.png share/doc/HTML/ca/kgraphviewer/kgraphviewer-snap-config1.png share/doc/HTML/ca/kgraphviewer/kgraphviewer-snap-config2.png share/doc/HTML/ca/kgraphviewer/kgraphviewer-snap-config3.png share/doc/HTML/ca/kgraphviewer/kgraphviewer-snap-init.png share/doc/HTML/ca/kgraphviewer/kgraphviewer-snap-main.png share/doc/HTML/ca/kgraphviewer/kgraphviewer-snap-pagesmarges.png share/doc/HTML/ca/kgraphviewer/kgraphviewer-snap-psetup1.png share/doc/HTML/en/kgraphviewer/index.cache.bz2 share/doc/HTML/en/kgraphviewer/index.docbook share/doc/HTML/en/kgraphviewer/kgraphviewer-but-layout.png share/doc/HTML/en/kgraphviewer/kgraphviewer-but-open.png share/doc/HTML/en/kgraphviewer/kgraphviewer-but-prev.png share/doc/HTML/en/kgraphviewer/kgraphviewer-but-preview.png share/doc/HTML/en/kgraphviewer/kgraphviewer-but-print.png share/doc/HTML/en/kgraphviewer/kgraphviewer-but-psetup.png share/doc/HTML/en/kgraphviewer/kgraphviewer-but-reload.png share/doc/HTML/en/kgraphviewer/kgraphviewer-but-whatsthis.png share/doc/HTML/en/kgraphviewer/kgraphviewer-but-zoomin.png share/doc/HTML/en/kgraphviewer/kgraphviewer-but-zoomout.png share/doc/HTML/en/kgraphviewer/kgraphviewer-snap-ask1.png share/doc/HTML/en/kgraphviewer/kgraphviewer-snap-ask2.png share/doc/HTML/en/kgraphviewer/kgraphviewer-snap-ask3.png share/doc/HTML/en/kgraphviewer/kgraphviewer-snap-config-appearance.png share/doc/HTML/en/kgraphviewer/kgraphviewer-snap-config-parsing.png share/doc/HTML/en/kgraphviewer/kgraphviewer-snap-config1.png share/doc/HTML/en/kgraphviewer/kgraphviewer-snap-config2.png share/doc/HTML/en/kgraphviewer/kgraphviewer-snap-config3.png share/doc/HTML/en/kgraphviewer/kgraphviewer-snap-init.png share/doc/HTML/en/kgraphviewer/kgraphviewer-snap-main.png share/doc/HTML/en/kgraphviewer/kgraphviewer-snap-pagesmarges.png share/doc/HTML/en/kgraphviewer/kgraphviewer-snap-ppview1.png share/doc/HTML/en/kgraphviewer/kgraphviewer-snap-ppview2.png share/doc/HTML/en/kgraphviewer/kgraphviewer-snap-ppview3.png share/doc/HTML/en/kgraphviewer/kgraphviewer-snap-psetup1.png share/doc/HTML/en/kgraphviewer/kgraphviewer-snap-zmax.png share/doc/HTML/en/kgraphviewer/kgraphviewer-snap-zmin.png share/doc/HTML/it/kgraphviewer/index.cache.bz2 share/doc/HTML/it/kgraphviewer/index.docbook share/doc/HTML/nl/kgraphviewer/index.cache.bz2 share/doc/HTML/nl/kgraphviewer/index.docbook share/doc/HTML/sl/kgraphviewer/index.cache.bz2 share/doc/HTML/sl/kgraphviewer/index.docbook share/doc/HTML/sv/kgraphviewer/index.cache.bz2 share/doc/HTML/sv/kgraphviewer/index.docbook share/doc/HTML/sv/kgraphviewer/kgraphviewer-snap-ask1.png share/doc/HTML/sv/kgraphviewer/kgraphviewer-snap-ask2.png share/doc/HTML/sv/kgraphviewer/kgraphviewer-snap-ask3.png share/doc/HTML/sv/kgraphviewer/kgraphviewer-snap-config1.png share/doc/HTML/sv/kgraphviewer/kgraphviewer-snap-config2.png share/doc/HTML/sv/kgraphviewer/kgraphviewer-snap-config3.png share/doc/HTML/sv/kgraphviewer/kgraphviewer-snap-init.png share/doc/HTML/sv/kgraphviewer/kgraphviewer-snap-main.png share/doc/HTML/sv/kgraphviewer/kgraphviewer-snap-pagesmarges.png share/doc/HTML/sv/kgraphviewer/kgraphviewer-snap-ppview1.png share/doc/HTML/sv/kgraphviewer/kgraphviewer-snap-ppview2.png share/doc/HTML/sv/kgraphviewer/kgraphviewer-snap-ppview3.png share/doc/HTML/sv/kgraphviewer/kgraphviewer-snap-psetup1.png share/doc/HTML/sv/kgraphviewer/kgraphviewer-snap-zmax.png share/doc/HTML/sv/kgraphviewer/kgraphviewer-snap-zmin.png share/doc/HTML/uk/kgraphviewer/index.cache.bz2 share/doc/HTML/uk/kgraphviewer/index.docbook share/icons/hicolor/16x16/apps/kgraphviewer.png share/icons/hicolor/32x32/apps/kgraphviewer.png share/locale/ar/LC_MESSAGES/kgraphviewer.mo share/locale/be/LC_MESSAGES/kgraphviewer.mo share/locale/bg/LC_MESSAGES/kgraphviewer.mo share/locale/bs/LC_MESSAGES/kgraphviewer.mo share/locale/ca/LC_MESSAGES/kgraphviewer.mo share/locale/ca@valencia/LC_MESSAGES/kgraphviewer.mo share/locale/cs/LC_MESSAGES/kgraphviewer.mo share/locale/da/LC_MESSAGES/kgraphviewer.mo share/locale/de/LC_MESSAGES/kgraphviewer.mo share/locale/el/LC_MESSAGES/kgraphviewer.mo share/locale/en_GB/LC_MESSAGES/kgraphviewer.mo share/locale/eo/LC_MESSAGES/kgraphviewer.mo share/locale/es/LC_MESSAGES/kgraphviewer.mo share/locale/et/LC_MESSAGES/kgraphviewer.mo share/locale/eu/LC_MESSAGES/kgraphviewer.mo share/locale/fi/LC_MESSAGES/kgraphviewer.mo share/locale/fr/LC_MESSAGES/kgraphviewer.mo share/locale/ga/LC_MESSAGES/kgraphviewer.mo share/locale/gl/LC_MESSAGES/kgraphviewer.mo share/locale/he/LC_MESSAGES/kgraphviewer.mo share/locale/hi/LC_MESSAGES/kgraphviewer.mo share/locale/hne/LC_MESSAGES/kgraphviewer.mo share/locale/hr/LC_MESSAGES/kgraphviewer.mo share/locale/hu/LC_MESSAGES/kgraphviewer.mo share/locale/ia/LC_MESSAGES/kgraphviewer.mo share/locale/is/LC_MESSAGES/kgraphviewer.mo share/locale/it/LC_MESSAGES/kgraphviewer.mo share/locale/ja/LC_MESSAGES/kgraphviewer.mo share/locale/ka/LC_MESSAGES/kgraphviewer.mo share/locale/km/LC_MESSAGES/kgraphviewer.mo share/locale/ko/LC_MESSAGES/kgraphviewer.mo share/locale/ku/LC_MESSAGES/kgraphviewer.mo share/locale/lt/LC_MESSAGES/kgraphviewer.mo +share/locale/lv/LC_MESSAGES/kgraphviewer.mo share/locale/mai/LC_MESSAGES/kgraphviewer.mo share/locale/mr/LC_MESSAGES/kgraphviewer.mo share/locale/nb/LC_MESSAGES/kgraphviewer.mo share/locale/nds/LC_MESSAGES/kgraphviewer.mo share/locale/nl/LC_MESSAGES/kgraphviewer.mo share/locale/nn/LC_MESSAGES/kgraphviewer.mo share/locale/pa/LC_MESSAGES/kgraphviewer.mo share/locale/pl/LC_MESSAGES/kgraphviewer.mo share/locale/pt/LC_MESSAGES/kgraphviewer.mo share/locale/pt_BR/LC_MESSAGES/kgraphviewer.mo share/locale/ro/LC_MESSAGES/kgraphviewer.mo share/locale/ru/LC_MESSAGES/kgraphviewer.mo share/locale/sa/LC_MESSAGES/kgraphviewer.mo share/locale/se/LC_MESSAGES/kgraphviewer.mo share/locale/sk/LC_MESSAGES/kgraphviewer.mo share/locale/sl/LC_MESSAGES/kgraphviewer.mo share/locale/sv/LC_MESSAGES/kgraphviewer.mo share/locale/th/LC_MESSAGES/kgraphviewer.mo share/locale/tr/LC_MESSAGES/kgraphviewer.mo share/locale/ug/LC_MESSAGES/kgraphviewer.mo share/locale/uk/LC_MESSAGES/kgraphviewer.mo share/locale/vi/LC_MESSAGES/kgraphviewer.mo share/locale/zh_CN/LC_MESSAGES/kgraphviewer.mo share/locale/zh_TW/LC_MESSAGES/kgraphviewer.mo share/metainfo/org.kde.kgraphviewer.appdata.xml share/qlogging-categories6/kgraphviewer.categories diff --git a/graphics/kimagemapeditor/distinfo b/graphics/kimagemapeditor/distinfo index e0e6233beacf..0da0e37b3a33 100644 --- a/graphics/kimagemapeditor/distinfo +++ b/graphics/kimagemapeditor/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1751381467 -SHA256 (KDE/release-service/25.04.3/kimagemapeditor-25.04.3.tar.xz) = 18a0117e8d55530e6a83a57845b142cfa4951f1ce33c870122077eb229089640 -SIZE (KDE/release-service/25.04.3/kimagemapeditor-25.04.3.tar.xz) = 1077212 +TIMESTAMP = 1754646377 +SHA256 (KDE/release-service/25.08.0/kimagemapeditor-25.08.0.tar.xz) = 2fb04770dad70bafa6d3ed55635e5f5652fbec5b62558d59196f60170a26cd17 +SIZE (KDE/release-service/25.08.0/kimagemapeditor-25.08.0.tar.xz) = 1077444 diff --git a/graphics/kolourpaint/distinfo b/graphics/kolourpaint/distinfo index e04df4d2be8c..2d6cd1efc4b3 100644 --- a/graphics/kolourpaint/distinfo +++ b/graphics/kolourpaint/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1751381470 -SHA256 (KDE/release-service/25.04.3/kolourpaint-25.04.3.tar.xz) = 819b9bad15d927b150b95ac71d398f04df392762b848bb6be619e3fda3357d1f -SIZE (KDE/release-service/25.04.3/kolourpaint-25.04.3.tar.xz) = 5314956 +TIMESTAMP = 1754646380 +SHA256 (KDE/release-service/25.08.0/kolourpaint-25.08.0.tar.xz) = 6c89b27490f8d8e6cf69114d056f9d96bb7bd7a8177086c74055fa875c123df6 +SIZE (KDE/release-service/25.08.0/kolourpaint-25.08.0.tar.xz) = 5317604 diff --git a/graphics/kolourpaint/pkg-plist b/graphics/kolourpaint/pkg-plist index ff897f76c5fd..8279feb849b1 100644 --- a/graphics/kolourpaint/pkg-plist +++ b/graphics/kolourpaint/pkg-plist @@ -1,175 +1,180 @@ bin/kolourpaint +etc/xdg/colors/40.colors +etc/xdg/colors/Oxygen.colors +etc/xdg/colors/Rainbow.colors +etc/xdg/colors/Royal.colors +etc/xdg/colors/Web.colors lib/libkolourpaint_lgpl.so lib/libkolourpaint_lgpl.so.5 share/applications/org.kde.kolourpaint.desktop share/icons/hicolor/128x128/apps/kolourpaint.png share/icons/hicolor/16x16/apps/kolourpaint.png share/icons/hicolor/22x22/apps/kolourpaint.png share/icons/hicolor/32x32/apps/kolourpaint.png share/icons/hicolor/48x48/apps/kolourpaint.png share/icons/hicolor/scalable/apps/kolourpaint.svgz %%DATADIR%%/icons/hicolor/16x16/actions/tool_brush.png %%DATADIR%%/icons/hicolor/16x16/actions/tool_color_eraser.png %%DATADIR%%/icons/hicolor/16x16/actions/tool_color_picker.png %%DATADIR%%/icons/hicolor/16x16/actions/tool_curve.png %%DATADIR%%/icons/hicolor/16x16/actions/tool_ellipse.png %%DATADIR%%/icons/hicolor/16x16/actions/tool_elliptical_selection.png %%DATADIR%%/icons/hicolor/16x16/actions/tool_eraser.png %%DATADIR%%/icons/hicolor/16x16/actions/tool_flood_fill.png %%DATADIR%%/icons/hicolor/16x16/actions/tool_free_form_selection.png %%DATADIR%%/icons/hicolor/16x16/actions/tool_line.png %%DATADIR%%/icons/hicolor/16x16/actions/tool_pen.png %%DATADIR%%/icons/hicolor/16x16/actions/tool_polygon.png %%DATADIR%%/icons/hicolor/16x16/actions/tool_polyline.png %%DATADIR%%/icons/hicolor/16x16/actions/tool_rect_selection.png %%DATADIR%%/icons/hicolor/16x16/actions/tool_rectangle.png %%DATADIR%%/icons/hicolor/16x16/actions/tool_rounded_rectangle.png %%DATADIR%%/icons/hicolor/16x16/actions/tool_spraycan.png %%DATADIR%%/icons/hicolor/16x16/actions/tool_text.png %%DATADIR%%/icons/hicolor/22x22/actions/tool_brush.png %%DATADIR%%/icons/hicolor/22x22/actions/tool_color_eraser.png %%DATADIR%%/icons/hicolor/22x22/actions/tool_color_picker.png %%DATADIR%%/icons/hicolor/22x22/actions/tool_curve.png %%DATADIR%%/icons/hicolor/22x22/actions/tool_ellipse.png %%DATADIR%%/icons/hicolor/22x22/actions/tool_elliptical_selection.png %%DATADIR%%/icons/hicolor/22x22/actions/tool_eraser.png %%DATADIR%%/icons/hicolor/22x22/actions/tool_flood_fill.png %%DATADIR%%/icons/hicolor/22x22/actions/tool_free_form_selection.png %%DATADIR%%/icons/hicolor/22x22/actions/tool_line.png %%DATADIR%%/icons/hicolor/22x22/actions/tool_pen.png %%DATADIR%%/icons/hicolor/22x22/actions/tool_polygon.png %%DATADIR%%/icons/hicolor/22x22/actions/tool_polyline.png %%DATADIR%%/icons/hicolor/22x22/actions/tool_rect_selection.png %%DATADIR%%/icons/hicolor/22x22/actions/tool_rectangle.png %%DATADIR%%/icons/hicolor/22x22/actions/tool_rounded_rectangle.png %%DATADIR%%/icons/hicolor/22x22/actions/tool_spraycan.png %%DATADIR%%/icons/hicolor/22x22/actions/tool_text.png %%DATADIR%%/icons/hicolor/32x32/actions/tool_brush.png %%DATADIR%%/icons/hicolor/32x32/actions/tool_color_eraser.png %%DATADIR%%/icons/hicolor/32x32/actions/tool_color_picker.png %%DATADIR%%/icons/hicolor/32x32/actions/tool_curve.png %%DATADIR%%/icons/hicolor/32x32/actions/tool_ellipse.png %%DATADIR%%/icons/hicolor/32x32/actions/tool_elliptical_selection.png %%DATADIR%%/icons/hicolor/32x32/actions/tool_eraser.png %%DATADIR%%/icons/hicolor/32x32/actions/tool_flood_fill.png %%DATADIR%%/icons/hicolor/32x32/actions/tool_free_form_selection.png %%DATADIR%%/icons/hicolor/32x32/actions/tool_line.png %%DATADIR%%/icons/hicolor/32x32/actions/tool_pen.png %%DATADIR%%/icons/hicolor/32x32/actions/tool_polygon.png %%DATADIR%%/icons/hicolor/32x32/actions/tool_polyline.png %%DATADIR%%/icons/hicolor/32x32/actions/tool_rect_selection.png %%DATADIR%%/icons/hicolor/32x32/actions/tool_rectangle.png %%DATADIR%%/icons/hicolor/32x32/actions/tool_rounded_rectangle.png %%DATADIR%%/icons/hicolor/32x32/actions/tool_spraycan.png %%DATADIR%%/icons/hicolor/32x32/actions/tool_text.png %%DATADIR%%/icons/hicolor/48x48/actions/tool_brush.png %%DATADIR%%/icons/hicolor/48x48/actions/tool_color_eraser.png %%DATADIR%%/icons/hicolor/48x48/actions/tool_color_picker.png %%DATADIR%%/icons/hicolor/48x48/actions/tool_curve.png %%DATADIR%%/icons/hicolor/48x48/actions/tool_ellipse.png %%DATADIR%%/icons/hicolor/48x48/actions/tool_elliptical_selection.png %%DATADIR%%/icons/hicolor/48x48/actions/tool_eraser.png %%DATADIR%%/icons/hicolor/48x48/actions/tool_flood_fill.png %%DATADIR%%/icons/hicolor/48x48/actions/tool_free_form_selection.png %%DATADIR%%/icons/hicolor/48x48/actions/tool_line.png %%DATADIR%%/icons/hicolor/48x48/actions/tool_pen.png %%DATADIR%%/icons/hicolor/48x48/actions/tool_polygon.png %%DATADIR%%/icons/hicolor/48x48/actions/tool_polyline.png %%DATADIR%%/icons/hicolor/48x48/actions/tool_rect_selection.png %%DATADIR%%/icons/hicolor/48x48/actions/tool_rectangle.png %%DATADIR%%/icons/hicolor/48x48/actions/tool_rounded_rectangle.png %%DATADIR%%/icons/hicolor/48x48/actions/tool_spraycan.png %%DATADIR%%/icons/hicolor/48x48/actions/tool_text.png %%DATADIR%%/icons/hicolor/scalable/actions/tool_brush.svgz %%DATADIR%%/icons/hicolor/scalable/actions/tool_color_eraser.svgz %%DATADIR%%/icons/hicolor/scalable/actions/tool_color_picker.svgz %%DATADIR%%/icons/hicolor/scalable/actions/tool_curve.svgz %%DATADIR%%/icons/hicolor/scalable/actions/tool_ellipse.svgz %%DATADIR%%/icons/hicolor/scalable/actions/tool_elliptical_selection.svgz %%DATADIR%%/icons/hicolor/scalable/actions/tool_eraser.svgz %%DATADIR%%/icons/hicolor/scalable/actions/tool_flood_fill.svgz %%DATADIR%%/icons/hicolor/scalable/actions/tool_free_form_selection.svgz %%DATADIR%%/icons/hicolor/scalable/actions/tool_line.svgz %%DATADIR%%/icons/hicolor/scalable/actions/tool_pen.svgz %%DATADIR%%/icons/hicolor/scalable/actions/tool_polygon.svgz %%DATADIR%%/icons/hicolor/scalable/actions/tool_polyline.svgz %%DATADIR%%/icons/hicolor/scalable/actions/tool_rect_selection.svgz %%DATADIR%%/icons/hicolor/scalable/actions/tool_rectangle.svgz %%DATADIR%%/icons/hicolor/scalable/actions/tool_rounded_rectangle.svgz %%DATADIR%%/icons/hicolor/scalable/actions/tool_spraycan.svgz %%DATADIR%%/icons/hicolor/scalable/actions/tool_text.svgz share/locale/ar/LC_MESSAGES/kolourpaint.mo share/locale/be/LC_MESSAGES/kolourpaint.mo share/locale/bg/LC_MESSAGES/kolourpaint.mo share/locale/br/LC_MESSAGES/kolourpaint.mo share/locale/bs/LC_MESSAGES/kolourpaint.mo share/locale/ca/LC_MESSAGES/kolourpaint.mo share/locale/ca@valencia/LC_MESSAGES/kolourpaint.mo share/locale/cs/LC_MESSAGES/kolourpaint.mo share/locale/cy/LC_MESSAGES/kolourpaint.mo share/locale/da/LC_MESSAGES/kolourpaint.mo share/locale/de/LC_MESSAGES/kolourpaint.mo share/locale/el/LC_MESSAGES/kolourpaint.mo share/locale/en_GB/LC_MESSAGES/kolourpaint.mo share/locale/eo/LC_MESSAGES/kolourpaint.mo share/locale/es/LC_MESSAGES/kolourpaint.mo share/locale/et/LC_MESSAGES/kolourpaint.mo share/locale/eu/LC_MESSAGES/kolourpaint.mo share/locale/fa/LC_MESSAGES/kolourpaint.mo share/locale/fi/LC_MESSAGES/kolourpaint.mo share/locale/fr/LC_MESSAGES/kolourpaint.mo share/locale/fy/LC_MESSAGES/kolourpaint.mo share/locale/ga/LC_MESSAGES/kolourpaint.mo share/locale/gl/LC_MESSAGES/kolourpaint.mo share/locale/he/LC_MESSAGES/kolourpaint.mo share/locale/hi/LC_MESSAGES/kolourpaint.mo share/locale/hne/LC_MESSAGES/kolourpaint.mo share/locale/hr/LC_MESSAGES/kolourpaint.mo share/locale/hu/LC_MESSAGES/kolourpaint.mo share/locale/ia/LC_MESSAGES/kolourpaint.mo share/locale/id/LC_MESSAGES/kolourpaint.mo share/locale/is/LC_MESSAGES/kolourpaint.mo share/locale/it/LC_MESSAGES/kolourpaint.mo share/locale/ja/LC_MESSAGES/kolourpaint.mo share/locale/ka/LC_MESSAGES/kolourpaint.mo share/locale/kk/LC_MESSAGES/kolourpaint.mo share/locale/km/LC_MESSAGES/kolourpaint.mo share/locale/ko/LC_MESSAGES/kolourpaint.mo share/locale/lt/LC_MESSAGES/kolourpaint.mo share/locale/lv/LC_MESSAGES/kolourpaint.mo share/locale/mk/LC_MESSAGES/kolourpaint.mo share/locale/ml/LC_MESSAGES/kolourpaint.mo share/locale/mr/LC_MESSAGES/kolourpaint.mo share/locale/ms/LC_MESSAGES/kolourpaint.mo share/locale/nb/LC_MESSAGES/kolourpaint.mo share/locale/nds/LC_MESSAGES/kolourpaint.mo share/locale/ne/LC_MESSAGES/kolourpaint.mo share/locale/nl/LC_MESSAGES/kolourpaint.mo share/locale/nn/LC_MESSAGES/kolourpaint.mo share/locale/oc/LC_MESSAGES/kolourpaint.mo share/locale/pa/LC_MESSAGES/kolourpaint.mo share/locale/pl/LC_MESSAGES/kolourpaint.mo share/locale/pt/LC_MESSAGES/kolourpaint.mo share/locale/pt_BR/LC_MESSAGES/kolourpaint.mo share/locale/ro/LC_MESSAGES/kolourpaint.mo share/locale/ru/LC_MESSAGES/kolourpaint.mo share/locale/sa/LC_MESSAGES/kolourpaint.mo share/locale/se/LC_MESSAGES/kolourpaint.mo share/locale/si/LC_MESSAGES/kolourpaint.mo share/locale/sk/LC_MESSAGES/kolourpaint.mo share/locale/sl/LC_MESSAGES/kolourpaint.mo share/locale/sq/LC_MESSAGES/kolourpaint.mo share/locale/sv/LC_MESSAGES/kolourpaint.mo share/locale/ta/LC_MESSAGES/kolourpaint.mo share/locale/tg/LC_MESSAGES/kolourpaint.mo share/locale/th/LC_MESSAGES/kolourpaint.mo share/locale/tok/LC_MESSAGES/kolourpaint.mo share/locale/tr/LC_MESSAGES/kolourpaint.mo share/locale/ug/LC_MESSAGES/kolourpaint.mo share/locale/uk/LC_MESSAGES/kolourpaint.mo share/locale/uz/LC_MESSAGES/kolourpaint.mo share/locale/uz@cyrillic/LC_MESSAGES/kolourpaint.mo share/locale/zh_CN/LC_MESSAGES/kolourpaint.mo share/locale/zh_HK/LC_MESSAGES/kolourpaint.mo share/locale/zh_TW/LC_MESSAGES/kolourpaint.mo share/metainfo/org.kde.kolourpaint.appdata.xml diff --git a/graphics/kontrast/Makefile b/graphics/kontrast/Makefile index c7ec79da66cf..fd4662cc1a03 100644 --- a/graphics/kontrast/Makefile +++ b/graphics/kontrast/Makefile @@ -1,20 +1,19 @@ PORTNAME= kontrast DISTVERSION= ${KDE_APPLICATIONS_VERSION} -PORTREVISION= 1 CATEGORIES= graphics accessibility kde kde-applications MAINTAINER= kde@FreeBSD.org COMMENT= Color contrast checker WWW= https://apps.kde.org/en/kontrast LIB_DEPENDS= libQCoro6Core.so:devel/qcoro \ libfuturesql6.so:databases/futuresql USES= cmake compiler:c++11-lang gettext kde:6 pkgconfig qt:6 tar:xz USE_KDE= coreaddons crash i18n kirigami-addons kirigami2 \ ecm:build USE_QT= base OPTIONS_DEFINE= DOCS .include diff --git a/graphics/kontrast/distinfo b/graphics/kontrast/distinfo index 12e4ccd689f5..5d2c427a5725 100644 --- a/graphics/kontrast/distinfo +++ b/graphics/kontrast/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1751381472 -SHA256 (KDE/release-service/25.04.3/kontrast-25.04.3.tar.xz) = 5cc134f4af4c6dabbae7df83c8945c3986cb9ae0455d0d315517fa96905eecf8 -SIZE (KDE/release-service/25.04.3/kontrast-25.04.3.tar.xz) = 219564 +TIMESTAMP = 1754646382 +SHA256 (KDE/release-service/25.08.0/kontrast-25.08.0.tar.xz) = 08e2a68bd6fbdc041c01a523be23b36175e171a902bd83c333bac6ee873b9d18 +SIZE (KDE/release-service/25.08.0/kontrast-25.08.0.tar.xz) = 219664 diff --git a/graphics/kqtquickcharts/Makefile b/graphics/kqtquickcharts/Makefile index 05d36d7b60e3..28993d92cb06 100644 --- a/graphics/kqtquickcharts/Makefile +++ b/graphics/kqtquickcharts/Makefile @@ -1,19 +1,16 @@ PORTNAME= kqtquickcharts DISTVERSION= ${KDE_APPLICATIONS_VERSION} CATEGORIES= graphics kde kde-applications MAINTAINER= kde@FreeBSD.org COMMENT= QtQuick plugin to render interactive charts WWW= https://invent.kde.org/libraries/kqtquickcharts LICENSE= LGPL21+ LICENSE_FILE= ${WRKSRC}/COPYING -USES= cmake compiler:c++11-lang kde:5 qt:5 tar:xz +USES= cmake compiler:c++17-lang kde:6 qt:6 tar:xz USE_KDE= ecm:build -USE_QT= core declarative gui network \ - buildtools:build qmake:build - -OPTIONS_DEFINE= DOCS +USE_QT= base declarative .include diff --git a/graphics/kqtquickcharts/distinfo b/graphics/kqtquickcharts/distinfo index d13c571db276..f4e06aa7a1d6 100644 --- a/graphics/kqtquickcharts/distinfo +++ b/graphics/kqtquickcharts/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1751381475 -SHA256 (KDE/release-service/25.04.3/kqtquickcharts-25.04.3.tar.xz) = 6df9523d905944957d227aec009cdf45f202b279296269dde8f63a02b549c028 -SIZE (KDE/release-service/25.04.3/kqtquickcharts-25.04.3.tar.xz) = 30856 +TIMESTAMP = 1754646385 +SHA256 (KDE/release-service/25.08.0/kqtquickcharts-25.08.0.tar.xz) = ac19517bd806746b3ed4f9c63ed219bb083bcfc614426400d0959c6a4638672c +SIZE (KDE/release-service/25.08.0/kqtquickcharts-25.08.0.tar.xz) = 30984 diff --git a/graphics/kqtquickcharts/pkg-plist b/graphics/kqtquickcharts/pkg-plist index f0f31c707d12..ad4b9ac1cd8a 100644 --- a/graphics/kqtquickcharts/pkg-plist +++ b/graphics/kqtquickcharts/pkg-plist @@ -1,11 +1,11 @@ -include/KF5/kqtquickcharts_version.h +include/KF6/kqtquickcharts_version.h lib/cmake/KQtQuickCharts/KQtQuickChartsConfig.cmake -lib/cmake/KQtQuickCharts/KQtQuickChartsVersion.cmake +lib/cmake/KQtQuickCharts/KQtQuickChartsConfigVersion.cmake %%QT_QMLDIR%%/org/kde/charts/BarChart.qml %%QT_QMLDIR%%/org/kde/charts/Label.qml %%QT_QMLDIR%%/org/kde/charts/LegendItem.qml %%QT_QMLDIR%%/org/kde/charts/LineChart.qml %%QT_QMLDIR%%/org/kde/charts/LineLabel.qml %%QT_QMLDIR%%/org/kde/charts/XYChart.qml %%QT_QMLDIR%%/org/kde/charts/libkqtquickcharts.so %%QT_QMLDIR%%/org/kde/charts/qmldir diff --git a/graphics/ksanecore/Makefile b/graphics/ksanecore/Makefile index 8d00b4ff1657..ba59b9a4eac5 100644 --- a/graphics/ksanecore/Makefile +++ b/graphics/ksanecore/Makefile @@ -1,17 +1,16 @@ PORTNAME= ksanecore DISTVERSION= ${KDE_APPLICATIONS_VERSION} -PORTREVISION= 1 CATEGORIES= graphics kde kde-applications MAINTAINER= kde@FreeBSD.org COMMENT= Library providing logic to interface scanners WWW= https://invent.kde.org/libraries/ksanecore LIB_DEPENDS= libsane.so:graphics/sane-backends USES= cmake compiler:c++11-lang gettext kde:6 qt:6 tar:xz USE_KDE= i18n ecm:build USE_QT= base USE_LDCONFIG= yes .include diff --git a/graphics/ksanecore/distinfo b/graphics/ksanecore/distinfo index 7bedb5fb8837..b9f37d03bfe9 100644 --- a/graphics/ksanecore/distinfo +++ b/graphics/ksanecore/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1751381477 -SHA256 (KDE/release-service/25.04.3/ksanecore-25.04.3.tar.xz) = e5a8fdda44d4a27f0c90c2b808e48a737999ec200fd0b70f75fabb33a9013302 -SIZE (KDE/release-service/25.04.3/ksanecore-25.04.3.tar.xz) = 53972 +TIMESTAMP = 1754646387 +SHA256 (KDE/release-service/25.08.0/ksanecore-25.08.0.tar.xz) = 92424bdaa2859ebe53722ea663d4a679484361dca0ab1489236a976efff2f1a9 +SIZE (KDE/release-service/25.08.0/ksanecore-25.08.0.tar.xz) = 56496 diff --git a/graphics/libkdcraw/distinfo b/graphics/libkdcraw/distinfo index e93e20f65214..743ff369f367 100644 --- a/graphics/libkdcraw/distinfo +++ b/graphics/libkdcraw/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1751381480 -SHA256 (KDE/release-service/25.04.3/libkdcraw-25.04.3.tar.xz) = 4ffd227cf0838c9a46be9f682d2431928e4663ad54de1f765bd8ae258eb110e8 -SIZE (KDE/release-service/25.04.3/libkdcraw-25.04.3.tar.xz) = 37344 +TIMESTAMP = 1754646389 +SHA256 (KDE/release-service/25.08.0/libkdcraw-25.08.0.tar.xz) = 4640d1740dbb85487e57a5f07a65aca90093ec107cdc32430fea88fbea0797be +SIZE (KDE/release-service/25.08.0/libkdcraw-25.08.0.tar.xz) = 37328 diff --git a/graphics/libkexiv2/distinfo b/graphics/libkexiv2/distinfo index e326d9a001db..ba2778e7f8f1 100644 --- a/graphics/libkexiv2/distinfo +++ b/graphics/libkexiv2/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1751381482 -SHA256 (KDE/release-service/25.04.3/libkexiv2-25.04.3.tar.xz) = d7b8d791e9db8facf16a95447daa597efaaa6b42d300fa7cbe9d1ff5b9e7b5a8 -SIZE (KDE/release-service/25.04.3/libkexiv2-25.04.3.tar.xz) = 60660 +TIMESTAMP = 1754646392 +SHA256 (KDE/release-service/25.08.0/libkexiv2-25.08.0.tar.xz) = 9bb4e5858f35d0dba813ade3c0ff6e7fe750b0930d60a7f4609b48c9563d45eb +SIZE (KDE/release-service/25.08.0/libkexiv2-25.08.0.tar.xz) = 60612 diff --git a/graphics/libksane/distinfo b/graphics/libksane/distinfo index 099188f8753f..240d831a1b69 100644 --- a/graphics/libksane/distinfo +++ b/graphics/libksane/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1751381485 -SHA256 (KDE/release-service/25.04.3/libksane-25.04.3.tar.xz) = eab97e319cd8e020e63c49ca3c18188898d326d3568c939a5640b42cdc1c265f -SIZE (KDE/release-service/25.04.3/libksane-25.04.3.tar.xz) = 155880 +TIMESTAMP = 1754646394 +SHA256 (KDE/release-service/25.08.0/libksane-25.08.0.tar.xz) = 99461b135bb55125ca987d4911a32a4c4bac33fdfbf710b6483551ac961fb63b +SIZE (KDE/release-service/25.08.0/libksane-25.08.0.tar.xz) = 156152 diff --git a/graphics/okular/distinfo b/graphics/okular/distinfo index 0d6feb22be2f..05163ec792c6 100644 --- a/graphics/okular/distinfo +++ b/graphics/okular/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1751381487 -SHA256 (KDE/release-service/25.04.3/okular-25.04.3.tar.xz) = d0b5bb0b0eeab46aa2367c8d81096185bd2261710701c84f1c6e2398e5058bfb -SIZE (KDE/release-service/25.04.3/okular-25.04.3.tar.xz) = 8190916 +TIMESTAMP = 1754646397 +SHA256 (KDE/release-service/25.08.0/okular-25.08.0.tar.xz) = 8c70c448e8aa8c55c3623024ee1d70930888672a503c40c60af2de702ffe64fc +SIZE (KDE/release-service/25.08.0/okular-25.08.0.tar.xz) = 8202348 diff --git a/graphics/okular/pkg-plist b/graphics/okular/pkg-plist index 0bfd7a68a79e..5c6b3ccced37 100644 --- a/graphics/okular/pkg-plist +++ b/graphics/okular/pkg-plist @@ -1,1212 +1,1212 @@ 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 +lib/libOkular6Core.so.4 +lib/libOkular6Core.so.4.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.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/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/sa/LC_MESSAGES/okular.mo share/locale/sa/LC_MESSAGES/okular_comicbook.mo share/locale/sa/LC_MESSAGES/okular_djvu.mo share/locale/sa/LC_MESSAGES/okular_dvi.mo share/locale/sa/LC_MESSAGES/okular_epub.mo share/locale/sa/LC_MESSAGES/okular_fax.mo share/locale/sa/LC_MESSAGES/okular_fictionbook.mo share/locale/sa/LC_MESSAGES/okular_ghostview.mo share/locale/sa/LC_MESSAGES/okular_kimgio.mo share/locale/sa/LC_MESSAGES/okular_markdown.mo share/locale/sa/LC_MESSAGES/okular_mobi.mo share/locale/sa/LC_MESSAGES/okular_poppler.mo share/locale/sa/LC_MESSAGES/okular_tiff.mo share/locale/sa/LC_MESSAGES/okular_txt.mo share/locale/sa/LC_MESSAGES/okular_xps.mo share/locale/sa/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 93c2515a057a..e7d9fd9ada03 100644 --- a/graphics/skanlite/distinfo +++ b/graphics/skanlite/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1751381490 -SHA256 (KDE/release-service/25.04.3/skanlite-25.04.3.tar.xz) = a6c16c530a2f9105302558d06a377a7bc076be7517a769077c94a6431727f468 -SIZE (KDE/release-service/25.04.3/skanlite-25.04.3.tar.xz) = 2392460 +TIMESTAMP = 1754646399 +SHA256 (KDE/release-service/25.08.0/skanlite-25.08.0.tar.xz) = 4d790b8cbaa0f2f193118a3bdddc8ecd89e8513eda4f9ae618862df9034ce0f8 +SIZE (KDE/release-service/25.08.0/skanlite-25.08.0.tar.xz) = 2392556 diff --git a/graphics/skanpage/distinfo b/graphics/skanpage/distinfo index 10af3a4870a4..6d4baaad0dff 100644 --- a/graphics/skanpage/distinfo +++ b/graphics/skanpage/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1751381492 -SHA256 (KDE/release-service/25.04.3/skanpage-25.04.3.tar.xz) = 6727ffd9bd576edbd0b4a0841625cff5d7370e6c8b667c66d5f5355cdb1a2e2d -SIZE (KDE/release-service/25.04.3/skanpage-25.04.3.tar.xz) = 1360364 +TIMESTAMP = 1754646401 +SHA256 (KDE/release-service/25.08.0/skanpage-25.08.0.tar.xz) = b7756010c98d507b62b8a5fa43dee50a585f2be78cf342996a4e805a78319d03 +SIZE (KDE/release-service/25.08.0/skanpage-25.08.0.tar.xz) = 1366944 diff --git a/irc/konversation/distinfo b/irc/konversation/distinfo index 9e01395d8251..d4d3ca58e5af 100644 --- a/irc/konversation/distinfo +++ b/irc/konversation/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1751381495 -SHA256 (KDE/release-service/25.04.3/konversation-25.04.3.tar.xz) = bb00a864d7d7f404f1cac6d4d2e415bd038c8bfe913645da9dda1aaf70d06c37 -SIZE (KDE/release-service/25.04.3/konversation-25.04.3.tar.xz) = 4449940 +TIMESTAMP = 1754646404 +SHA256 (KDE/release-service/25.08.0/konversation-25.08.0.tar.xz) = 7fb824266234c3ccbd5f4ed751b7f89688dbfc1bcba50a164d33eb3a27b9073f +SIZE (KDE/release-service/25.08.0/konversation-25.08.0.tar.xz) = 4470700 diff --git a/japanese/kiten/distinfo b/japanese/kiten/distinfo index aa0c8b9422eb..7e4af1f26e8a 100644 --- a/japanese/kiten/distinfo +++ b/japanese/kiten/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1751381497 -SHA256 (KDE/release-service/25.04.3/kiten-25.04.3.tar.xz) = 7c7fcba1707b3abdea8624922f55e181274a598213d50f222c62b03beaf6c0f4 -SIZE (KDE/release-service/25.04.3/kiten-25.04.3.tar.xz) = 11317416 +TIMESTAMP = 1754646406 +SHA256 (KDE/release-service/25.08.0/kiten-25.08.0.tar.xz) = a7961268808e303edc412cf1cd6e853511fd1e5724d717c3f92e8605f5b9dfb4 +SIZE (KDE/release-service/25.08.0/kiten-25.08.0.tar.xz) = 11317052 diff --git a/lang/kturtle/distinfo b/lang/kturtle/distinfo index bc6bee0157e3..725b8062669f 100644 --- a/lang/kturtle/distinfo +++ b/lang/kturtle/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1751381500 -SHA256 (KDE/release-service/25.04.3/kturtle-25.04.3.tar.xz) = 7e53baebb99264964ad047b24827596f9b998c698db589f0efb74fe16637ec08 -SIZE (KDE/release-service/25.04.3/kturtle-25.04.3.tar.xz) = 2102700 +TIMESTAMP = 1754646409 +SHA256 (KDE/release-service/25.08.0/kturtle-25.08.0.tar.xz) = 70383dd9c92ddb8a7573b6e8f86dab0ddde02a197ffd72c8923fc3a122135d53 +SIZE (KDE/release-service/25.08.0/kturtle-25.08.0.tar.xz) = 2102732 diff --git a/math/analitza/distinfo b/math/analitza/distinfo index 888559c99f9d..fa154d3036be 100644 --- a/math/analitza/distinfo +++ b/math/analitza/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1751381502 -SHA256 (KDE/release-service/25.04.3/analitza-25.04.3.tar.xz) = 5cd695fc83af74eedd3970725e35a6396120631e46866efc9094bce683ad626c -SIZE (KDE/release-service/25.04.3/analitza-25.04.3.tar.xz) = 368048 +TIMESTAMP = 1754646411 +SHA256 (KDE/release-service/25.08.0/analitza-25.08.0.tar.xz) = 8d477f0af14bb9f7c15033a9d78987a7067135affc47f19eddda82e76c36d34b +SIZE (KDE/release-service/25.08.0/analitza-25.08.0.tar.xz) = 368188 diff --git a/math/cantor/distinfo b/math/cantor/distinfo index d71f5f19caa6..be4faba02951 100644 --- a/math/cantor/distinfo +++ b/math/cantor/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1751381505 -SHA256 (KDE/release-service/25.04.3/cantor-25.04.3.tar.xz) = 1a7732a34bc703f2febeceb074fb2827f84adf913b86c115553d73a2eb67af05 -SIZE (KDE/release-service/25.04.3/cantor-25.04.3.tar.xz) = 10905944 +TIMESTAMP = 1754646414 +SHA256 (KDE/release-service/25.08.0/cantor-25.08.0.tar.xz) = 5c98fa36bac3500a57d07813a101be709c58aa0ab755d4c9c9fa2b3f8836238d +SIZE (KDE/release-service/25.08.0/cantor-25.08.0.tar.xz) = 10908548 diff --git a/math/kalgebra/distinfo b/math/kalgebra/distinfo index 37a59ce6ea75..27d770835361 100644 --- a/math/kalgebra/distinfo +++ b/math/kalgebra/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1751381507 -SHA256 (KDE/release-service/25.04.3/kalgebra-25.04.3.tar.xz) = bbe2675fa1cc70a0d9094fc89aa8cdd9c79c1315b97ead62da06704e2aba826b -SIZE (KDE/release-service/25.04.3/kalgebra-25.04.3.tar.xz) = 953104 +TIMESTAMP = 1754646416 +SHA256 (KDE/release-service/25.08.0/kalgebra-25.08.0.tar.xz) = 5626185a4eda526fdcf894dc99ff43796d59b0f4e1cc7a5287494896db0dad20 +SIZE (KDE/release-service/25.08.0/kalgebra-25.08.0.tar.xz) = 953244 diff --git a/math/kalk/distinfo b/math/kalk/distinfo index 621a57d43eda..8f0b8935603c 100644 --- a/math/kalk/distinfo +++ b/math/kalk/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1751381507 -SHA256 (KDE/release-service/25.04.3/kalk-25.04.3.tar.xz) = 33d3079d5a39716e544e86224eff997ece79da77f8247bb5f08ce6a88cf03ff0 -SIZE (KDE/release-service/25.04.3/kalk-25.04.3.tar.xz) = 78428 +TIMESTAMP = 1754646416 +SHA256 (KDE/release-service/25.08.0/kalk-25.08.0.tar.xz) = 20ecb2d6760d08c33fb5fd041f0202f7209c8714c1ced10ff5188206ea414b4e +SIZE (KDE/release-service/25.08.0/kalk-25.08.0.tar.xz) = 79188 diff --git a/math/kalk/pkg-plist b/math/kalk/pkg-plist index 20df76ace3f9..ec066c7b1286 100644 --- a/math/kalk/pkg-plist +++ b/math/kalk/pkg-plist @@ -1,45 +1,46 @@ bin/kalk share/applications/org.kde.kalk.desktop share/icons/hicolor/scalable/apps/org.kde.kalk.svg share/locale/ar/LC_MESSAGES/kalk.mo share/locale/ast/LC_MESSAGES/kalk.mo share/locale/az/LC_MESSAGES/kalk.mo share/locale/ca/LC_MESSAGES/kalk.mo share/locale/ca@valencia/LC_MESSAGES/kalk.mo share/locale/cs/LC_MESSAGES/kalk.mo share/locale/da/LC_MESSAGES/kalk.mo share/locale/de/LC_MESSAGES/kalk.mo share/locale/el/LC_MESSAGES/kalk.mo share/locale/en_GB/LC_MESSAGES/kalk.mo share/locale/eo/LC_MESSAGES/kalk.mo share/locale/es/LC_MESSAGES/kalk.mo share/locale/eu/LC_MESSAGES/kalk.mo +share/locale/fa/LC_MESSAGES/kalk.mo share/locale/fi/LC_MESSAGES/kalk.mo share/locale/fr/LC_MESSAGES/kalk.mo share/locale/gl/LC_MESSAGES/kalk.mo share/locale/he/LC_MESSAGES/kalk.mo share/locale/hi/LC_MESSAGES/kalk.mo share/locale/hu/LC_MESSAGES/kalk.mo share/locale/ia/LC_MESSAGES/kalk.mo share/locale/it/LC_MESSAGES/kalk.mo share/locale/ja/LC_MESSAGES/kalk.mo share/locale/ka/LC_MESSAGES/kalk.mo share/locale/ko/LC_MESSAGES/kalk.mo share/locale/lt/LC_MESSAGES/kalk.mo share/locale/lv/LC_MESSAGES/kalk.mo share/locale/nl/LC_MESSAGES/kalk.mo share/locale/nn/LC_MESSAGES/kalk.mo share/locale/pa/LC_MESSAGES/kalk.mo share/locale/pl/LC_MESSAGES/kalk.mo share/locale/pt/LC_MESSAGES/kalk.mo share/locale/pt_BR/LC_MESSAGES/kalk.mo share/locale/ru/LC_MESSAGES/kalk.mo share/locale/sa/LC_MESSAGES/kalk.mo share/locale/sk/LC_MESSAGES/kalk.mo share/locale/sl/LC_MESSAGES/kalk.mo share/locale/sv/LC_MESSAGES/kalk.mo share/locale/tr/LC_MESSAGES/kalk.mo share/locale/uk/LC_MESSAGES/kalk.mo share/locale/zh_CN/LC_MESSAGES/kalk.mo share/locale/zh_TW/LC_MESSAGES/kalk.mo share/metainfo/org.kde.kalk.appdata.xml diff --git a/math/kbruch/distinfo b/math/kbruch/distinfo index 2c17caa4a081..2303c27ce45d 100644 --- a/math/kbruch/distinfo +++ b/math/kbruch/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1751381510 -SHA256 (KDE/release-service/25.04.3/kbruch-25.04.3.tar.xz) = fe61f069882ecc60ebcb3c2d48f664e25db868162f5e49e1093e8e29fc85df50 -SIZE (KDE/release-service/25.04.3/kbruch-25.04.3.tar.xz) = 5163332 +TIMESTAMP = 1754646419 +SHA256 (KDE/release-service/25.08.0/kbruch-25.08.0.tar.xz) = 28ba55e51ce49b56ce30061667ae89f6965cf8d9186a985858647ab31a904e3d +SIZE (KDE/release-service/25.08.0/kbruch-25.08.0.tar.xz) = 5163460 diff --git a/math/kcalc/distinfo b/math/kcalc/distinfo index 533cc4a14cae..61be29f6080f 100644 --- a/math/kcalc/distinfo +++ b/math/kcalc/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1751381512 -SHA256 (KDE/release-service/25.04.3/kcalc-25.04.3.tar.xz) = 1b6f52ff6950a5c7f6754bb41fd036af4a016939227b2f4351f3836ba705348b -SIZE (KDE/release-service/25.04.3/kcalc-25.04.3.tar.xz) = 483656 +TIMESTAMP = 1754646421 +SHA256 (KDE/release-service/25.08.0/kcalc-25.08.0.tar.xz) = 449a0d8827c44735f34cdddbdca9c3e038b3debcc86c60a57bca3ed42512d5f9 +SIZE (KDE/release-service/25.08.0/kcalc-25.08.0.tar.xz) = 484460 diff --git a/math/kig/Makefile b/math/kig/Makefile index 78fe06b87144..ea18fb3b465c 100644 --- a/math/kig/Makefile +++ b/math/kig/Makefile @@ -1,31 +1,27 @@ PORTNAME= kig DISTVERSION= ${KDE_APPLICATIONS_VERSION} CATEGORIES= math education kde kde-applications MAINTAINER= kde@FreeBSD.org COMMENT= KDE interactive geometry application WWW= https://www.kde.org/applications/education/kig LIB_DEPENDS= ${PY_BOOST} -USES= cmake compiler:c++11-lib desktop-file-utils gettext kde:5 qt:5 \ +USES= cmake compiler:c++11-lib desktop-file-utils gettext kde:6 qt:6 \ shebangfix tar:xz xorg \ python:run -USE_KDE= archive auth codecs completion config configwidgets coreaddons \ - jobwidgets kdelibs4support kio parts service solid sonnet \ - syntaxhighlighting texteditor textwidgets widgetsaddons \ - windowsystem xmlgui \ - ecm:build -USE_QT= concurrent core dbus gui network printsupport svg widgets xml \ - xmlpatterns \ - buildtools:build qmake:build +USE_KDE= archive configwidgets coreaddons crash \ + i18n iconthemes parts texteditor xmlgui \ + doctools:build ecm:build +USE_QT= base svg USE_XORG= x11 SHEBANG_FILES= pykig/pykig.py OPTIONS_DEFINE= DOCS post-patch: - ${REINPLACE_CMD} '/Python_ADDITIONAL_VERSIONS/s|2.7|${PYTHON_VER};2.7|' \ + ${REINPLACE_CMD} '/Python_ADDITIONAL_VERSIONS/s|3.10|${PYTHON_VER};3.10|' \ ${WRKSRC}/cmake/modules/FindBoostPython.cmake .include diff --git a/math/kig/distinfo b/math/kig/distinfo index 1ec9078c8cc3..25f252ce716d 100644 --- a/math/kig/distinfo +++ b/math/kig/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1751381515 -SHA256 (KDE/release-service/25.04.3/kig-25.04.3.tar.xz) = 22df542700ba1be9cc1fd2efe8f6cbaa0251cb0aacd1a71b46d0c21b671bc5a3 -SIZE (KDE/release-service/25.04.3/kig-25.04.3.tar.xz) = 3252440 +TIMESTAMP = 1754646424 +SHA256 (KDE/release-service/25.08.0/kig-25.08.0.tar.xz) = 10f5c931723a34ea6e075df052711148c2912bcab2cc70d307f60e40311a3d97 +SIZE (KDE/release-service/25.08.0/kig-25.08.0.tar.xz) = 3259640 diff --git a/math/kig/pkg-plist b/math/kig/pkg-plist index d72dbd721db8..d7121d489a79 100644 --- a/math/kig/pkg-plist +++ b/math/kig/pkg-plist @@ -1,380 +1,380 @@ bin/kig bin/pykig.py -%%QT_PLUGINDIR%%/kf5/parts/kigpart.so +%%QT_PLUGINDIR%%/kf6/parts/kigpart.so share/applications/org.kde.kig.desktop share/icons/hicolor/128x128/apps/kig.png share/icons/hicolor/128x128/mimetypes/application-x-kig.png share/icons/hicolor/16x16/apps/kig.png share/icons/hicolor/16x16/mimetypes/application-x-kig.png share/icons/hicolor/22x22/apps/kig.png share/icons/hicolor/22x22/mimetypes/application-x-kig.png share/icons/hicolor/32x32/apps/kig.png share/icons/hicolor/32x32/mimetypes/application-x-kig.png share/icons/hicolor/48x48/apps/kig.png share/icons/hicolor/48x48/mimetypes/application-x-kig.png share/icons/hicolor/64x64/apps/kig.png share/icons/hicolor/64x64/mimetypes/application-x-kig.png share/icons/hicolor/scalable/apps/kig.svgz share/icons/hicolor/scalable/mimetypes/application-x-kig.svgz share/katepart5/syntax/python-kig.xml %%DATADIR%%/builtin-macros/circle_by_center_and_line.kigt %%DATADIR%%/builtin-macros/circle_by_point_and_diameter.kigt %%DATADIR%%/builtin-macros/equitriangle.kigt %%DATADIR%%/builtin-macros/evolute.kigt %%DATADIR%%/builtin-macros/osculating_circle.kigt %%DATADIR%%/builtin-macros/square.kigt %%DATADIR%%/builtin-macros/vector_difference.kigt %%DATADIR%%/icons/hicolor/16x16/actions/kig_xfig.png %%DATADIR%%/icons/hicolor/22x22/actions/angle.png %%DATADIR%%/icons/hicolor/22x22/actions/angle_bisector.png %%DATADIR%%/icons/hicolor/22x22/actions/angle_size.png %%DATADIR%%/icons/hicolor/22x22/actions/arc.png %%DATADIR%%/icons/hicolor/22x22/actions/arc_center.png %%DATADIR%%/icons/hicolor/22x22/actions/areaCircle.png %%DATADIR%%/icons/hicolor/22x22/actions/attacher.png %%DATADIR%%/icons/hicolor/22x22/actions/baseCircle.png %%DATADIR%%/icons/hicolor/22x22/actions/bezier3.png %%DATADIR%%/icons/hicolor/22x22/actions/bezier4.png %%DATADIR%%/icons/hicolor/22x22/actions/bezierN.png %%DATADIR%%/icons/hicolor/22x22/actions/beziercurves.png %%DATADIR%%/icons/hicolor/22x22/actions/bisection.png %%DATADIR%%/icons/hicolor/22x22/actions/centerofcurvature.png %%DATADIR%%/icons/hicolor/22x22/actions/centralsymmetry.png %%DATADIR%%/icons/hicolor/22x22/actions/circlebcl.png %%DATADIR%%/icons/hicolor/22x22/actions/circlebcp.png %%DATADIR%%/icons/hicolor/22x22/actions/circlebpd.png %%DATADIR%%/icons/hicolor/22x22/actions/circlebps.png %%DATADIR%%/icons/hicolor/22x22/actions/circlebtp.png %%DATADIR%%/icons/hicolor/22x22/actions/circlelineintersection.png %%DATADIR%%/icons/hicolor/22x22/actions/circumference.png %%DATADIR%%/icons/hicolor/22x22/actions/conicasymptotes.png %%DATADIR%%/icons/hicolor/22x22/actions/conicb5p.png %%DATADIR%%/icons/hicolor/22x22/actions/coniclineintersection.png %%DATADIR%%/icons/hicolor/22x22/actions/conicsradicalline.png %%DATADIR%%/icons/hicolor/22x22/actions/controlpolygon.png %%DATADIR%%/icons/hicolor/22x22/actions/convexhull.png %%DATADIR%%/icons/hicolor/22x22/actions/curvelineintersection.png %%DATADIR%%/icons/hicolor/22x22/actions/directrix.png %%DATADIR%%/icons/hicolor/22x22/actions/distance.png %%DATADIR%%/icons/hicolor/22x22/actions/ellipsebffp.png %%DATADIR%%/icons/hicolor/22x22/actions/en.png %%DATADIR%%/icons/hicolor/22x22/actions/equilateralhyperbolab4p.png %%DATADIR%%/icons/hicolor/22x22/actions/equitriangle.png %%DATADIR%%/icons/hicolor/22x22/actions/genericaffinity.png %%DATADIR%%/icons/hicolor/22x22/actions/genericprojectivity.png %%DATADIR%%/icons/hicolor/22x22/actions/halflinebyvector.png %%DATADIR%%/icons/hicolor/22x22/actions/harmonichomology.png %%DATADIR%%/icons/hicolor/22x22/actions/hexagonbcv.png %%DATADIR%%/icons/hicolor/22x22/actions/hyperbolabffp.png %%DATADIR%%/icons/hicolor/22x22/actions/intersection.png %%DATADIR%%/icons/hicolor/22x22/actions/inversion.png %%DATADIR%%/icons/hicolor/22x22/actions/kig_numericvalue.png %%DATADIR%%/icons/hicolor/22x22/actions/kig_polygon.png %%DATADIR%%/icons/hicolor/22x22/actions/kig_text.png %%DATADIR%%/icons/hicolor/22x22/actions/line.png %%DATADIR%%/icons/hicolor/22x22/actions/linebyvector.png %%DATADIR%%/icons/hicolor/22x22/actions/locus.png %%DATADIR%%/icons/hicolor/22x22/actions/mirrorpoint.png %%DATADIR%%/icons/hicolor/22x22/actions/openpolygon.png %%DATADIR%%/icons/hicolor/22x22/actions/paint.png %%DATADIR%%/icons/hicolor/22x22/actions/parabolabtp.png %%DATADIR%%/icons/hicolor/22x22/actions/parallel.png %%DATADIR%%/icons/hicolor/22x22/actions/perpendicular.png %%DATADIR%%/icons/hicolor/22x22/actions/point.png %%DATADIR%%/icons/hicolor/22x22/actions/pointOnLine.png %%DATADIR%%/icons/hicolor/22x22/actions/pointxy.png %%DATADIR%%/icons/hicolor/22x22/actions/polygonsides.png %%DATADIR%%/icons/hicolor/22x22/actions/polygonvertices.png %%DATADIR%%/icons/hicolor/22x22/actions/projection.png %%DATADIR%%/icons/hicolor/22x22/actions/python.png %%DATADIR%%/icons/hicolor/22x22/actions/radicalline.png %%DATADIR%%/icons/hicolor/22x22/actions/ray.png %%DATADIR%%/icons/hicolor/22x22/actions/rbezier3.png %%DATADIR%%/icons/hicolor/22x22/actions/rbezier4.png %%DATADIR%%/icons/hicolor/22x22/actions/rbezierN.png %%DATADIR%%/icons/hicolor/22x22/actions/rotation.png %%DATADIR%%/icons/hicolor/22x22/actions/scale.png %%DATADIR%%/icons/hicolor/22x22/actions/segment.png %%DATADIR%%/icons/hicolor/22x22/actions/segment_golden_point.png %%DATADIR%%/icons/hicolor/22x22/actions/segment_midpoint.png %%DATADIR%%/icons/hicolor/22x22/actions/segmentaxis.png %%DATADIR%%/icons/hicolor/22x22/actions/similitude.png %%DATADIR%%/icons/hicolor/22x22/actions/sizer.png %%DATADIR%%/icons/hicolor/22x22/actions/slope.png %%DATADIR%%/icons/hicolor/22x22/actions/square.png %%DATADIR%%/icons/hicolor/22x22/actions/stretch.png %%DATADIR%%/icons/hicolor/22x22/actions/tangent.png %%DATADIR%%/icons/hicolor/22x22/actions/test.png %%DATADIR%%/icons/hicolor/22x22/actions/testcollinear.png %%DATADIR%%/icons/hicolor/22x22/actions/testcontains.png %%DATADIR%%/icons/hicolor/22x22/actions/testdistance.png %%DATADIR%%/icons/hicolor/22x22/actions/testorthogonal.png %%DATADIR%%/icons/hicolor/22x22/actions/testparallel.png %%DATADIR%%/icons/hicolor/22x22/actions/translation.png %%DATADIR%%/icons/hicolor/22x22/actions/triangle.png %%DATADIR%%/icons/hicolor/22x22/actions/vector.png %%DATADIR%%/icons/hicolor/22x22/actions/vectordifference.png %%DATADIR%%/icons/hicolor/22x22/actions/vectorsum.png %%DATADIR%%/icons/hicolor/22x22/actions/view_fit_to_page.png %%DATADIR%%/icons/hicolor/22x22/actions/w.png %%DATADIR%%/icons/hicolor/32x32/actions/angle.png %%DATADIR%%/icons/hicolor/32x32/actions/angle_bisector.png %%DATADIR%%/icons/hicolor/32x32/actions/angle_size.png %%DATADIR%%/icons/hicolor/32x32/actions/arc.png %%DATADIR%%/icons/hicolor/32x32/actions/arc_center.png %%DATADIR%%/icons/hicolor/32x32/actions/areaCircle.png %%DATADIR%%/icons/hicolor/32x32/actions/attacher.png %%DATADIR%%/icons/hicolor/32x32/actions/baseCircle.png %%DATADIR%%/icons/hicolor/32x32/actions/bezier3.png %%DATADIR%%/icons/hicolor/32x32/actions/bezier4.png %%DATADIR%%/icons/hicolor/32x32/actions/bezierN.png %%DATADIR%%/icons/hicolor/32x32/actions/beziercurves.png %%DATADIR%%/icons/hicolor/32x32/actions/bisection.png %%DATADIR%%/icons/hicolor/32x32/actions/centerofcurvature.png %%DATADIR%%/icons/hicolor/32x32/actions/centralsymmetry.png %%DATADIR%%/icons/hicolor/32x32/actions/circlebcl.png %%DATADIR%%/icons/hicolor/32x32/actions/circlebcp.png %%DATADIR%%/icons/hicolor/32x32/actions/circlebpd.png %%DATADIR%%/icons/hicolor/32x32/actions/circlebps.png %%DATADIR%%/icons/hicolor/32x32/actions/circlebtp.png %%DATADIR%%/icons/hicolor/32x32/actions/circlelineintersection.png %%DATADIR%%/icons/hicolor/32x32/actions/circumference.png %%DATADIR%%/icons/hicolor/32x32/actions/conicasymptotes.png %%DATADIR%%/icons/hicolor/32x32/actions/conicb5p.png %%DATADIR%%/icons/hicolor/32x32/actions/coniclineintersection.png %%DATADIR%%/icons/hicolor/32x32/actions/conicsradicalline.png %%DATADIR%%/icons/hicolor/32x32/actions/controlpolygon.png %%DATADIR%%/icons/hicolor/32x32/actions/convexhull.png %%DATADIR%%/icons/hicolor/32x32/actions/curvelineintersection.png %%DATADIR%%/icons/hicolor/32x32/actions/directrix.png %%DATADIR%%/icons/hicolor/32x32/actions/distance.png %%DATADIR%%/icons/hicolor/32x32/actions/ellipsebffp.png %%DATADIR%%/icons/hicolor/32x32/actions/en.png %%DATADIR%%/icons/hicolor/32x32/actions/equilateralhyperbolab4p.png %%DATADIR%%/icons/hicolor/32x32/actions/equitriangle.png %%DATADIR%%/icons/hicolor/32x32/actions/genericaffinity.png %%DATADIR%%/icons/hicolor/32x32/actions/genericprojectivity.png %%DATADIR%%/icons/hicolor/32x32/actions/halflinebyvector.png %%DATADIR%%/icons/hicolor/32x32/actions/harmonichomology.png %%DATADIR%%/icons/hicolor/32x32/actions/hexagonbcv.png %%DATADIR%%/icons/hicolor/32x32/actions/hyperbolabffp.png %%DATADIR%%/icons/hicolor/32x32/actions/intersection.png %%DATADIR%%/icons/hicolor/32x32/actions/inversion.png %%DATADIR%%/icons/hicolor/32x32/actions/kig_numericvalue.png %%DATADIR%%/icons/hicolor/32x32/actions/kig_polygon.png %%DATADIR%%/icons/hicolor/32x32/actions/kig_text.png %%DATADIR%%/icons/hicolor/32x32/actions/line.png %%DATADIR%%/icons/hicolor/32x32/actions/linebyvector.png %%DATADIR%%/icons/hicolor/32x32/actions/locus.png %%DATADIR%%/icons/hicolor/32x32/actions/mirrorpoint.png %%DATADIR%%/icons/hicolor/32x32/actions/openpolygon.png %%DATADIR%%/icons/hicolor/32x32/actions/paint.png %%DATADIR%%/icons/hicolor/32x32/actions/parabolabtp.png %%DATADIR%%/icons/hicolor/32x32/actions/parallel.png %%DATADIR%%/icons/hicolor/32x32/actions/perpendicular.png %%DATADIR%%/icons/hicolor/32x32/actions/point.png %%DATADIR%%/icons/hicolor/32x32/actions/pointOnLine.png %%DATADIR%%/icons/hicolor/32x32/actions/pointxy.png %%DATADIR%%/icons/hicolor/32x32/actions/polygonsides.png %%DATADIR%%/icons/hicolor/32x32/actions/polygonvertices.png %%DATADIR%%/icons/hicolor/32x32/actions/projection.png %%DATADIR%%/icons/hicolor/32x32/actions/python.png %%DATADIR%%/icons/hicolor/32x32/actions/radicalline.png %%DATADIR%%/icons/hicolor/32x32/actions/ray.png %%DATADIR%%/icons/hicolor/32x32/actions/rbezier3.png %%DATADIR%%/icons/hicolor/32x32/actions/rbezier4.png %%DATADIR%%/icons/hicolor/32x32/actions/rbezierN.png %%DATADIR%%/icons/hicolor/32x32/actions/rotation.png %%DATADIR%%/icons/hicolor/32x32/actions/scale.png %%DATADIR%%/icons/hicolor/32x32/actions/segment.png %%DATADIR%%/icons/hicolor/32x32/actions/segment_golden_point.png %%DATADIR%%/icons/hicolor/32x32/actions/segment_midpoint.png %%DATADIR%%/icons/hicolor/32x32/actions/segmentaxis.png %%DATADIR%%/icons/hicolor/32x32/actions/similitude.png %%DATADIR%%/icons/hicolor/32x32/actions/sizer.png %%DATADIR%%/icons/hicolor/32x32/actions/slope.png %%DATADIR%%/icons/hicolor/32x32/actions/square.png %%DATADIR%%/icons/hicolor/32x32/actions/stretch.png %%DATADIR%%/icons/hicolor/32x32/actions/tangent.png %%DATADIR%%/icons/hicolor/32x32/actions/test.png %%DATADIR%%/icons/hicolor/32x32/actions/testcollinear.png %%DATADIR%%/icons/hicolor/32x32/actions/testcontains.png %%DATADIR%%/icons/hicolor/32x32/actions/testdistance.png %%DATADIR%%/icons/hicolor/32x32/actions/testorthogonal.png %%DATADIR%%/icons/hicolor/32x32/actions/testparallel.png %%DATADIR%%/icons/hicolor/32x32/actions/translation.png %%DATADIR%%/icons/hicolor/32x32/actions/triangle.png %%DATADIR%%/icons/hicolor/32x32/actions/vector.png %%DATADIR%%/icons/hicolor/32x32/actions/vectordifference.png %%DATADIR%%/icons/hicolor/32x32/actions/vectorsum.png %%DATADIR%%/icons/hicolor/32x32/actions/w.png %%DATADIR%%/icons/hicolor/scalable/actions/angle.svgz %%DATADIR%%/icons/hicolor/scalable/actions/angle_bisector.svgz %%DATADIR%%/icons/hicolor/scalable/actions/angle_size.svgz %%DATADIR%%/icons/hicolor/scalable/actions/arc.svgz %%DATADIR%%/icons/hicolor/scalable/actions/arc_center.svgz %%DATADIR%%/icons/hicolor/scalable/actions/areaCircle.svgz %%DATADIR%%/icons/hicolor/scalable/actions/attacher.svgz %%DATADIR%%/icons/hicolor/scalable/actions/baseCircle.svgz %%DATADIR%%/icons/hicolor/scalable/actions/bezier3.svgz %%DATADIR%%/icons/hicolor/scalable/actions/bezier4.svgz %%DATADIR%%/icons/hicolor/scalable/actions/bezierN.svgz %%DATADIR%%/icons/hicolor/scalable/actions/beziercurves.svgz %%DATADIR%%/icons/hicolor/scalable/actions/bisection.svgz %%DATADIR%%/icons/hicolor/scalable/actions/centerofcurvature.svgz %%DATADIR%%/icons/hicolor/scalable/actions/centralsymmetry.svgz %%DATADIR%%/icons/hicolor/scalable/actions/circlebcl.svgz %%DATADIR%%/icons/hicolor/scalable/actions/circlebcp.svgz %%DATADIR%%/icons/hicolor/scalable/actions/circlebpd.svgz %%DATADIR%%/icons/hicolor/scalable/actions/circlebps.svgz %%DATADIR%%/icons/hicolor/scalable/actions/circlebtp.svgz %%DATADIR%%/icons/hicolor/scalable/actions/circlelineintersection.svgz %%DATADIR%%/icons/hicolor/scalable/actions/circumference.svgz %%DATADIR%%/icons/hicolor/scalable/actions/conicasymptotes.svgz %%DATADIR%%/icons/hicolor/scalable/actions/conicb5p.svgz %%DATADIR%%/icons/hicolor/scalable/actions/coniclineintersection.svgz %%DATADIR%%/icons/hicolor/scalable/actions/conicsradicalline.svgz %%DATADIR%%/icons/hicolor/scalable/actions/controlpolygon.svgz %%DATADIR%%/icons/hicolor/scalable/actions/convexhull.svgz %%DATADIR%%/icons/hicolor/scalable/actions/curvelineintersection.svgz %%DATADIR%%/icons/hicolor/scalable/actions/directrix.svgz %%DATADIR%%/icons/hicolor/scalable/actions/distance.svgz %%DATADIR%%/icons/hicolor/scalable/actions/ellipsebffp.svgz %%DATADIR%%/icons/hicolor/scalable/actions/en.svgz %%DATADIR%%/icons/hicolor/scalable/actions/equilateralhyperbolab4p.svgz %%DATADIR%%/icons/hicolor/scalable/actions/equitriangle.svgz %%DATADIR%%/icons/hicolor/scalable/actions/genericaffinity.svgz %%DATADIR%%/icons/hicolor/scalable/actions/genericprojectivity.svgz %%DATADIR%%/icons/hicolor/scalable/actions/halflinebyvector.svgz %%DATADIR%%/icons/hicolor/scalable/actions/harmonichomology.svgz %%DATADIR%%/icons/hicolor/scalable/actions/hexagonbcv.svgz %%DATADIR%%/icons/hicolor/scalable/actions/hyperbolabffp.svgz %%DATADIR%%/icons/hicolor/scalable/actions/intersection.svgz %%DATADIR%%/icons/hicolor/scalable/actions/inversion.svgz %%DATADIR%%/icons/hicolor/scalable/actions/kig_numericvalue.svgz %%DATADIR%%/icons/hicolor/scalable/actions/kig_polygon.svgz %%DATADIR%%/icons/hicolor/scalable/actions/kig_text.svgz %%DATADIR%%/icons/hicolor/scalable/actions/line.svgz %%DATADIR%%/icons/hicolor/scalable/actions/linebyvector.svgz %%DATADIR%%/icons/hicolor/scalable/actions/locus.svgz %%DATADIR%%/icons/hicolor/scalable/actions/mirrorpoint.svgz %%DATADIR%%/icons/hicolor/scalable/actions/openpolygon.svgz %%DATADIR%%/icons/hicolor/scalable/actions/paint.svgz %%DATADIR%%/icons/hicolor/scalable/actions/parabolabtp.svgz %%DATADIR%%/icons/hicolor/scalable/actions/parallel.svgz %%DATADIR%%/icons/hicolor/scalable/actions/perpendicular.svgz %%DATADIR%%/icons/hicolor/scalable/actions/point.svgz %%DATADIR%%/icons/hicolor/scalable/actions/pointOnLine.svgz %%DATADIR%%/icons/hicolor/scalable/actions/pointxy.svgz %%DATADIR%%/icons/hicolor/scalable/actions/polygonsides.svgz %%DATADIR%%/icons/hicolor/scalable/actions/polygonvertices.svgz %%DATADIR%%/icons/hicolor/scalable/actions/projection.svgz %%DATADIR%%/icons/hicolor/scalable/actions/python.svgz %%DATADIR%%/icons/hicolor/scalable/actions/radicalline.svgz %%DATADIR%%/icons/hicolor/scalable/actions/ray.svgz %%DATADIR%%/icons/hicolor/scalable/actions/rbezier3.svgz %%DATADIR%%/icons/hicolor/scalable/actions/rbezier4.svgz %%DATADIR%%/icons/hicolor/scalable/actions/rbezierN.svgz %%DATADIR%%/icons/hicolor/scalable/actions/rotation.svgz %%DATADIR%%/icons/hicolor/scalable/actions/scale.svgz %%DATADIR%%/icons/hicolor/scalable/actions/segment.svgz %%DATADIR%%/icons/hicolor/scalable/actions/segment_golden_point.svgz %%DATADIR%%/icons/hicolor/scalable/actions/segment_midpoint.svgz %%DATADIR%%/icons/hicolor/scalable/actions/segmentaxis.svgz %%DATADIR%%/icons/hicolor/scalable/actions/similitude.svgz %%DATADIR%%/icons/hicolor/scalable/actions/sizer.svgz %%DATADIR%%/icons/hicolor/scalable/actions/slope.svgz %%DATADIR%%/icons/hicolor/scalable/actions/square.svgz %%DATADIR%%/icons/hicolor/scalable/actions/stretch.svgz %%DATADIR%%/icons/hicolor/scalable/actions/tangent.svgz %%DATADIR%%/icons/hicolor/scalable/actions/test.svgz %%DATADIR%%/icons/hicolor/scalable/actions/testcollinear.svgz %%DATADIR%%/icons/hicolor/scalable/actions/testcontains.svgz %%DATADIR%%/icons/hicolor/scalable/actions/testdistance.svgz %%DATADIR%%/icons/hicolor/scalable/actions/testorthogonal.svgz %%DATADIR%%/icons/hicolor/scalable/actions/testparallel.svgz %%DATADIR%%/icons/hicolor/scalable/actions/translation.svgz %%DATADIR%%/icons/hicolor/scalable/actions/triangle.svgz %%DATADIR%%/icons/hicolor/scalable/actions/vector.svgz %%DATADIR%%/icons/hicolor/scalable/actions/vectordifference.svgz %%DATADIR%%/icons/hicolor/scalable/actions/vectorsum.svgz %%DATADIR%%/icons/hicolor/scalable/actions/w.svgz share/locale/ar/LC_MESSAGES/kig.mo share/locale/be/LC_MESSAGES/kig.mo share/locale/bg/LC_MESSAGES/kig.mo share/locale/bn/LC_MESSAGES/kig.mo share/locale/br/LC_MESSAGES/kig.mo share/locale/bs/LC_MESSAGES/kig.mo share/locale/ca/LC_MESSAGES/kig.mo share/locale/ca@valencia/LC_MESSAGES/kig.mo share/locale/cs/LC_MESSAGES/kig.mo share/locale/cy/LC_MESSAGES/kig.mo share/locale/da/LC_MESSAGES/kig.mo share/locale/de/LC_MESSAGES/kig.mo share/locale/el/LC_MESSAGES/kig.mo share/locale/en_GB/LC_MESSAGES/kig.mo share/locale/eo/LC_MESSAGES/kig.mo share/locale/es/LC_MESSAGES/kig.mo share/locale/et/LC_MESSAGES/kig.mo share/locale/eu/LC_MESSAGES/kig.mo share/locale/fa/LC_MESSAGES/kig.mo share/locale/fi/LC_MESSAGES/kig.mo share/locale/fr/LC_MESSAGES/kig.mo share/locale/ga/LC_MESSAGES/kig.mo share/locale/gl/LC_MESSAGES/kig.mo share/locale/hi/LC_MESSAGES/kig.mo share/locale/hne/LC_MESSAGES/kig.mo share/locale/hr/LC_MESSAGES/kig.mo share/locale/hu/LC_MESSAGES/kig.mo share/locale/is/LC_MESSAGES/kig.mo share/locale/it/LC_MESSAGES/kig.mo share/locale/ja/LC_MESSAGES/kig.mo share/locale/ka/LC_MESSAGES/kig.mo share/locale/kk/LC_MESSAGES/kig.mo share/locale/km/LC_MESSAGES/kig.mo share/locale/lt/LC_MESSAGES/kig.mo share/locale/lv/LC_MESSAGES/kig.mo share/locale/mai/LC_MESSAGES/kig.mo share/locale/mk/LC_MESSAGES/kig.mo share/locale/ml/LC_MESSAGES/kig.mo share/locale/mr/LC_MESSAGES/kig.mo share/locale/ms/LC_MESSAGES/kig.mo share/locale/nb/LC_MESSAGES/kig.mo share/locale/nds/LC_MESSAGES/kig.mo share/locale/ne/LC_MESSAGES/kig.mo share/locale/nl/LC_MESSAGES/kig.mo share/locale/nn/LC_MESSAGES/kig.mo share/locale/oc/LC_MESSAGES/kig.mo share/locale/pa/LC_MESSAGES/kig.mo share/locale/pl/LC_MESSAGES/kig.mo share/locale/pt/LC_MESSAGES/kig.mo share/locale/pt_BR/LC_MESSAGES/kig.mo share/locale/ro/LC_MESSAGES/kig.mo share/locale/ru/LC_MESSAGES/kig.mo share/locale/se/LC_MESSAGES/kig.mo share/locale/si/LC_MESSAGES/kig.mo share/locale/sk/LC_MESSAGES/kig.mo share/locale/sl/LC_MESSAGES/kig.mo share/locale/sq/LC_MESSAGES/kig.mo share/locale/sv/LC_MESSAGES/kig.mo share/locale/ta/LC_MESSAGES/kig.mo share/locale/tg/LC_MESSAGES/kig.mo share/locale/tr/LC_MESSAGES/kig.mo share/locale/ug/LC_MESSAGES/kig.mo share/locale/uk/LC_MESSAGES/kig.mo share/locale/xh/LC_MESSAGES/kig.mo share/locale/zh_CN/LC_MESSAGES/kig.mo share/locale/zh_TW/LC_MESSAGES/kig.mo share/man/ca/man1/kig.1.gz share/man/de/man1/kig.1.gz share/man/es/man1/kig.1.gz share/man/et/man1/kig.1.gz share/man/fr/man1/kig.1.gz share/man/it/man1/kig.1.gz share/man/man1/kig.1.gz share/man/nl/man1/kig.1.gz share/man/pt_BR/man1/kig.1.gz share/man/ru/man1/kig.1.gz share/man/sv/man1/kig.1.gz share/man/uk/man1/kig.1.gz share/metainfo/org.kde.kig.metainfo.xml diff --git a/math/kmplot/distinfo b/math/kmplot/distinfo index 4baf643c3070..ec3d571f1166 100644 --- a/math/kmplot/distinfo +++ b/math/kmplot/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1751381517 -SHA256 (KDE/release-service/25.04.3/kmplot-25.04.3.tar.xz) = 87fb242a26ec28e33920d807d3cec8780e80ce5aa6c16cad7fc76d58637a33a2 -SIZE (KDE/release-service/25.04.3/kmplot-25.04.3.tar.xz) = 3029528 +TIMESTAMP = 1754646426 +SHA256 (KDE/release-service/25.08.0/kmplot-25.08.0.tar.xz) = b629366abffc691f8d6c20baf25b8cab311adbfff3365519c947e9f234b3f2a6 +SIZE (KDE/release-service/25.08.0/kmplot-25.08.0.tar.xz) = 3029692 diff --git a/math/rocs/distinfo b/math/rocs/distinfo index 342967a7faa9..63e4960ecd16 100644 --- a/math/rocs/distinfo +++ b/math/rocs/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1751381520 -SHA256 (KDE/release-service/25.04.3/rocs-25.04.3.tar.xz) = 7aa095b6605dbd9075250b070d388b78fc2d739f483b404a41182c7bfb705a99 -SIZE (KDE/release-service/25.04.3/rocs-25.04.3.tar.xz) = 1565452 +TIMESTAMP = 1754646429 +SHA256 (KDE/release-service/25.08.0/rocs-25.08.0.tar.xz) = b4e8e702303767269463473707cf4b24a3d99f5f9433cc7c2ce2e5e40df31c89 +SIZE (KDE/release-service/25.08.0/rocs-25.08.0.tar.xz) = 1565404 diff --git a/misc/artikulate/Makefile b/misc/artikulate/Makefile index b56542504d0f..1fc70a86333b 100644 --- a/misc/artikulate/Makefile +++ b/misc/artikulate/Makefile @@ -1,20 +1,18 @@ PORTNAME= artikulate DISTVERSION= ${KDE_APPLICATIONS_VERSION} CATEGORIES= misc education kde kde-applications MAINTAINER= kde@FreeBSD.org COMMENT= Pronunciation trainer for KDE WWW= https://edu.kde.org/ -USES= cmake compiler:c++11-lang gettext kde:5 qt:5 tar:xz -USE_KDE= archive attica auth codecs config configwidgets coreaddons \ - crash i18n kdeclarative newstuff service widgetsaddons xmlgui \ +USES= cmake compiler:c++11-lang gettext gnome kde:6 qt:6 tar:xz +USE_GNOME= libxml2 +USE_KDE= archive config crash i18n itemmodels kirigami2 newstuff \ doctools:build ecm:build -USE_QT= core dbus declarative gui multimedia network sql testlib \ - widgets xml xmlpatterns \ - buildtools:build qmake:build +USE_QT= base declarative multimedia USE_LDCONFIG= yes OPTIONS_DEFINE= DOCS .include diff --git a/misc/artikulate/distinfo b/misc/artikulate/distinfo index 7e2bdf042602..a1bac57f73f6 100644 --- a/misc/artikulate/distinfo +++ b/misc/artikulate/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1751381522 -SHA256 (KDE/release-service/25.04.3/artikulate-25.04.3.tar.xz) = 428ce49b04e8403ae952757dd883821b0e235170b9cfa0e7ba58b867bfaab404 -SIZE (KDE/release-service/25.04.3/artikulate-25.04.3.tar.xz) = 1054656 +TIMESTAMP = 1754646431 +SHA256 (KDE/release-service/25.08.0/artikulate-25.08.0.tar.xz) = 92703da756d380e2f8cb73c9192769fc18d92aea3f8db8e1c6e97b9b4c8bbda9 +SIZE (KDE/release-service/25.08.0/artikulate-25.08.0.tar.xz) = 1059736 diff --git a/misc/artikulate/pkg-plist b/misc/artikulate/pkg-plist index 28497ea19290..3dd1ffb82542 100644 --- a/misc/artikulate/pkg-plist +++ b/misc/artikulate/pkg-plist @@ -1,57 +1,58 @@ bin/artikulate bin/artikulate_editor lib/libartikulatecore.so.0 lib/libartikulatelearnerprofile.so.0 -lib/libartikulatesound.so.0 share/applications/org.kde.artikulate.desktop share/config.kcfg/artikulate.kcfg share/icons/hicolor/16x16/apps/artikulate.png share/icons/hicolor/32x32/apps/artikulate.png share/icons/hicolor/48x48/apps/artikulate.png share/icons/hicolor/64x64/apps/artikulate.png share/icons/hicolor/scalable/apps/artikulate.svg share/knsrcfiles/artikulate.knsrc share/locale/ar/LC_MESSAGES/artikulate.mo share/locale/az/LC_MESSAGES/artikulate.mo share/locale/bs/LC_MESSAGES/artikulate.mo share/locale/ca/LC_MESSAGES/artikulate.mo share/locale/ca@valencia/LC_MESSAGES/artikulate.mo share/locale/cs/LC_MESSAGES/artikulate.mo share/locale/da/LC_MESSAGES/artikulate.mo share/locale/de/LC_MESSAGES/artikulate.mo share/locale/el/LC_MESSAGES/artikulate.mo share/locale/en_GB/LC_MESSAGES/artikulate.mo share/locale/eo/LC_MESSAGES/artikulate.mo share/locale/es/LC_MESSAGES/artikulate.mo share/locale/et/LC_MESSAGES/artikulate.mo share/locale/eu/LC_MESSAGES/artikulate.mo share/locale/fi/LC_MESSAGES/artikulate.mo share/locale/fr/LC_MESSAGES/artikulate.mo share/locale/gl/LC_MESSAGES/artikulate.mo +share/locale/he/LC_MESSAGES/artikulate.mo share/locale/hi/LC_MESSAGES/artikulate.mo share/locale/hu/LC_MESSAGES/artikulate.mo share/locale/ia/LC_MESSAGES/artikulate.mo share/locale/it/LC_MESSAGES/artikulate.mo share/locale/ja/LC_MESSAGES/artikulate.mo share/locale/ka/LC_MESSAGES/artikulate.mo share/locale/ko/LC_MESSAGES/artikulate.mo share/locale/lt/LC_MESSAGES/artikulate.mo +share/locale/lv/LC_MESSAGES/artikulate.mo share/locale/ml/LC_MESSAGES/artikulate.mo share/locale/mr/LC_MESSAGES/artikulate.mo share/locale/nds/LC_MESSAGES/artikulate.mo share/locale/nl/LC_MESSAGES/artikulate.mo share/locale/nn/LC_MESSAGES/artikulate.mo share/locale/pl/LC_MESSAGES/artikulate.mo share/locale/pt/LC_MESSAGES/artikulate.mo share/locale/pt_BR/LC_MESSAGES/artikulate.mo share/locale/ro/LC_MESSAGES/artikulate.mo share/locale/ru/LC_MESSAGES/artikulate.mo share/locale/sk/LC_MESSAGES/artikulate.mo share/locale/sl/LC_MESSAGES/artikulate.mo share/locale/sv/LC_MESSAGES/artikulate.mo share/locale/tr/LC_MESSAGES/artikulate.mo share/locale/ug/LC_MESSAGES/artikulate.mo share/locale/uk/LC_MESSAGES/artikulate.mo share/locale/zh_CN/LC_MESSAGES/artikulate.mo share/locale/zh_TW/LC_MESSAGES/artikulate.mo share/metainfo/org.kde.artikulate.appdata.xml diff --git a/misc/kdeedu-data/Makefile b/misc/kdeedu-data/Makefile index c17da91eac90..afb6cb672c06 100644 --- a/misc/kdeedu-data/Makefile +++ b/misc/kdeedu-data/Makefile @@ -1,15 +1,15 @@ PORTNAME= kdeedu-data DISTVERSION= ${KDE_APPLICATIONS_VERSION} CATEGORIES= misc kde kde-applications MAINTAINER= kde@FreeBSD.org COMMENT= KDE edu data files -WWW= https://edu.kde.org/applications/all/parley +WWW= https://invent.kde.org/education/kdeedu-data USES= cmake kde:6 qt:6 tar:xz USE_KDE= ecm:build USE_QT= tools:build OPTIONS_DEFINE= DOCS .include diff --git a/misc/kdeedu-data/distinfo b/misc/kdeedu-data/distinfo index 6005148c1fe9..207ba54a044f 100644 --- a/misc/kdeedu-data/distinfo +++ b/misc/kdeedu-data/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1751381522 -SHA256 (KDE/release-service/25.04.3/kdeedu-data-25.04.3.tar.xz) = 623352e8f620b151282e27d29a4e89992b2a88c3da44c13d621bb8f8de18d077 -SIZE (KDE/release-service/25.04.3/kdeedu-data-25.04.3.tar.xz) = 338788 +TIMESTAMP = 1754646431 +SHA256 (KDE/release-service/25.08.0/kdeedu-data-25.08.0.tar.xz) = 5ef96eeeed941a5cebd9756c6cc1dde888a63c677a1c6250b6a2286070b92066 +SIZE (KDE/release-service/25.08.0/kdeedu-data-25.08.0.tar.xz) = 338748 diff --git a/misc/kdeedu-data/pkg-descr b/misc/kdeedu-data/pkg-descr index f07bdeb57099..9a47faefe62a 100644 --- a/misc/kdeedu-data/pkg-descr +++ b/misc/kdeedu-data/pkg-descr @@ -1 +1 @@ -KDE education data files. +Shared icons, artwork and data files for KDE educational applications. diff --git a/misc/kgeography/distinfo b/misc/kgeography/distinfo index f1263d9a974e..c5640bdb8db3 100644 --- a/misc/kgeography/distinfo +++ b/misc/kgeography/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1751381525 -SHA256 (KDE/release-service/25.04.3/kgeography-25.04.3.tar.xz) = 684a7e61934a7025484a3e25975bf0d50abd917b351a49d152a09a6ab2bfed39 -SIZE (KDE/release-service/25.04.3/kgeography-25.04.3.tar.xz) = 12488820 +TIMESTAMP = 1754646434 +SHA256 (KDE/release-service/25.08.0/kgeography-25.08.0.tar.xz) = 4aed07a1c6e69fa3986038f1d2186aed402b792cc024417c0c195871ec02c3ed +SIZE (KDE/release-service/25.08.0/kgeography-25.08.0.tar.xz) = 12492168 diff --git a/misc/klettres/distinfo b/misc/klettres/distinfo index d8d407a850d6..8daeac8cba49 100644 --- a/misc/klettres/distinfo +++ b/misc/klettres/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1751381528 -SHA256 (KDE/release-service/25.04.3/klettres-25.04.3.tar.xz) = e666b319cbe8984f12e5d0bf0d88261cb5108a867d55db46de26feaf5978ff54 -SIZE (KDE/release-service/25.04.3/klettres-25.04.3.tar.xz) = 47189952 +TIMESTAMP = 1754646436 +SHA256 (KDE/release-service/25.08.0/klettres-25.08.0.tar.xz) = cae11be755b3f6e5fd1b30d830e61e303ddaeedaaecc888980c610424bf832c7 +SIZE (KDE/release-service/25.08.0/klettres-25.08.0.tar.xz) = 47189208 diff --git a/misc/ktouch/Makefile b/misc/ktouch/Makefile index 1822498ebe78..cd5031873db8 100644 --- a/misc/ktouch/Makefile +++ b/misc/ktouch/Makefile @@ -1,24 +1,22 @@ PORTNAME= ktouch DISTVERSION= ${KDE_APPLICATIONS_VERSION} CATEGORIES= misc education kde kde-applications MAINTAINER= kde@FreeBSD.org COMMENT= Touch typing tutor for KDE WWW= https://www.kde.org/applications/education/ktouch RUN_DEPENDS= kqtquickcharts>=${KDE_APPLICATIONS_VERSION}:graphics/kqtquickcharts -USES= cmake compiler:c++11-lang gettext kde:5 qt:5 tar:xz xorg -USE_KDE= auth codecs completion config configwidgets coreaddons \ - doctools i18n iconthemes itemviews kcmutils kdeclarative kio \ - newstuff package parts service sonnet texteditor textwidgets \ +USES= cmake gettext gnome kde:6 qt:6 tar:xz xorg +USE_GNOME= libxml2 +USE_KDE= completion config configwidgets coreaddons \ + doctools i18n itemviews kcmutils textwidgets \ widgetsaddons windowsystem xmlgui \ ecm:build -USE_QT= core dbus declarative gui network quickcontrols2 script sql \ - testlib widgets x11extras xml xmlpatterns \ - buildtools:build qmake:build -USE_XORG= ice sm x11 xcb xext xkbfile +USE_QT= base declarative +USE_XORG= x11 xcb xext xkbfile OPTIONS_DEFINE= DOCS .include diff --git a/misc/ktouch/distinfo b/misc/ktouch/distinfo index d3b1c115561f..c9441b7f746a 100644 --- a/misc/ktouch/distinfo +++ b/misc/ktouch/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1751381530 -SHA256 (KDE/release-service/25.04.3/ktouch-25.04.3.tar.xz) = acc1cf7f43526a8fb569f96e63aca39ec3e6e2ac6807d27005650f870af59e90 -SIZE (KDE/release-service/25.04.3/ktouch-25.04.3.tar.xz) = 4787696 +TIMESTAMP = 1754646437 +SHA256 (KDE/release-service/25.08.0/ktouch-25.08.0.tar.xz) = d1ca5bf8760d19bfa0412875bcda5cdb9b4c0db9bbb39c43f1d7a4042b2d91d3 +SIZE (KDE/release-service/25.08.0/ktouch-25.08.0.tar.xz) = 4791796 diff --git a/misc/kwordquiz/distinfo b/misc/kwordquiz/distinfo index 56d179c83be1..5639562d8166 100644 --- a/misc/kwordquiz/distinfo +++ b/misc/kwordquiz/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1751381532 -SHA256 (KDE/release-service/25.04.3/kwordquiz-25.04.3.tar.xz) = 55aaad6ecb0aa7a8a9452efde78e5c7348786d9ff1967b3d82c7e8876ad47286 -SIZE (KDE/release-service/25.04.3/kwordquiz-25.04.3.tar.xz) = 3618732 +TIMESTAMP = 1754646439 +SHA256 (KDE/release-service/25.08.0/kwordquiz-25.08.0.tar.xz) = 0b3c71fc33526d060976db0e1d4d88b5e965a5bef144ad0be828c783e8f4167d +SIZE (KDE/release-service/25.08.0/kwordquiz-25.08.0.tar.xz) = 3619340 diff --git a/misc/libkeduvocdocument/distinfo b/misc/libkeduvocdocument/distinfo index 432253702e43..87290378d143 100644 --- a/misc/libkeduvocdocument/distinfo +++ b/misc/libkeduvocdocument/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1751381535 -SHA256 (KDE/release-service/25.04.3/libkeduvocdocument-25.04.3.tar.xz) = 7ecacdb4f313e69ca27aad2c02520c76d5ed5db3095f776a717526e15c17fbae -SIZE (KDE/release-service/25.04.3/libkeduvocdocument-25.04.3.tar.xz) = 229384 +TIMESTAMP = 1754646442 +SHA256 (KDE/release-service/25.08.0/libkeduvocdocument-25.08.0.tar.xz) = b6739f73e41c5df9ee312011985f75bd2e74200e78a7cba771958bb1f029517a +SIZE (KDE/release-service/25.08.0/libkeduvocdocument-25.08.0.tar.xz) = 229344 diff --git a/misc/minuet/distinfo b/misc/minuet/distinfo index 4ee0e14c8ae2..e5ad59051807 100644 --- a/misc/minuet/distinfo +++ b/misc/minuet/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1751381537 -SHA256 (KDE/release-service/25.04.3/minuet-25.04.3.tar.xz) = 8d8bd7e3891622432c52a9b9d0bf4bc1a93ace9fdd19fd434bb787239e117057 -SIZE (KDE/release-service/25.04.3/minuet-25.04.3.tar.xz) = 27689784 +TIMESTAMP = 1754646444 +SHA256 (KDE/release-service/25.08.0/minuet-25.08.0.tar.xz) = 838ad92f54058ac84b8cb3411922f3a848910e3b87f3b0faebeee2591ba97744 +SIZE (KDE/release-service/25.08.0/minuet-25.08.0.tar.xz) = 27695548 diff --git a/misc/minuet/pkg-plist b/misc/minuet/pkg-plist index 2c159b6f6f5a..99da2f777407 100644 --- a/misc/minuet/pkg-plist +++ b/misc/minuet/pkg-plist @@ -1,95 +1,96 @@ bin/minuet include/minuet/interfaces/icore.h include/minuet/interfaces/iexercisecontroller.h include/minuet/interfaces/iplugin.h include/minuet/interfaces/iplugincontroller.h include/minuet/interfaces/isoundcontroller.h include/minuet/interfaces/iuicontroller.h include/minuet/interfaces/minuetinterfacesexport.h lib/libminuetinterfaces.so lib/libminuetinterfaces.so.0.3.0 %%QT_PLUGINDIR%%/minuet/minuetfluidsynthsoundcontroller.so share/applications/org.kde.minuet.desktop share/icons/hicolor/128x128/apps/minuet.png share/icons/hicolor/128x128/apps/minuet.svg share/icons/hicolor/16x16/actions/minuet-chords.svg share/icons/hicolor/16x16/actions/minuet-intervals.svg share/icons/hicolor/16x16/actions/minuet-rhythms.svg share/icons/hicolor/16x16/actions/minuet-scales.svg share/icons/hicolor/16x16/apps/minuet.png share/icons/hicolor/16x16/apps/minuet.svg share/icons/hicolor/22x22/actions/minuet-chords.svg share/icons/hicolor/22x22/actions/minuet-intervals.svg share/icons/hicolor/22x22/actions/minuet-rhythms.svg share/icons/hicolor/22x22/actions/minuet-scales.svg share/icons/hicolor/22x22/apps/minuet.png share/icons/hicolor/22x22/apps/minuet.svg share/icons/hicolor/32x32/apps/minuet.png share/icons/hicolor/32x32/apps/minuet.svg share/icons/hicolor/48x48/apps/minuet.png share/icons/hicolor/48x48/apps/minuet.svg share/icons/hicolor/64x64/apps/minuet.png share/icons/hicolor/64x64/apps/minuet.svg share/icons/hicolor/scalable/apps/minuet.svgz share/locale/ar/LC_MESSAGES/minuet.mo share/locale/ca/LC_MESSAGES/minuet.mo share/locale/ca@valencia/LC_MESSAGES/minuet.mo share/locale/cs/LC_MESSAGES/minuet.mo share/locale/da/LC_MESSAGES/minuet.mo share/locale/de/LC_MESSAGES/minuet.mo share/locale/en_GB/LC_MESSAGES/minuet.mo share/locale/eo/LC_MESSAGES/minuet.mo share/locale/es/LC_MESSAGES/minuet.mo share/locale/et/LC_MESSAGES/minuet.mo share/locale/eu/LC_MESSAGES/minuet.mo share/locale/fi/LC_MESSAGES/minuet.mo share/locale/fr/LC_MESSAGES/minuet.mo share/locale/gl/LC_MESSAGES/minuet.mo +share/locale/he/LC_MESSAGES/minuet.mo share/locale/it/LC_MESSAGES/minuet.mo share/locale/ja/LC_MESSAGES/minuet.mo share/locale/ka/LC_MESSAGES/minuet.mo share/locale/ko/LC_MESSAGES/minuet.mo share/locale/lt/LC_MESSAGES/minuet.mo share/locale/ml/LC_MESSAGES/minuet.mo share/locale/nl/LC_MESSAGES/minuet.mo share/locale/nn/LC_MESSAGES/minuet.mo share/locale/pl/LC_MESSAGES/minuet.mo share/locale/pt/LC_MESSAGES/minuet.mo share/locale/pt_BR/LC_MESSAGES/minuet.mo share/locale/ru/LC_MESSAGES/minuet.mo share/locale/sk/LC_MESSAGES/minuet.mo share/locale/sl/LC_MESSAGES/minuet.mo share/locale/sv/LC_MESSAGES/minuet.mo share/locale/tr/LC_MESSAGES/minuet.mo share/locale/uk/LC_MESSAGES/minuet.mo share/locale/zh_CN/LC_MESSAGES/minuet.mo share/locale/zh_TW/LC_MESSAGES/minuet.mo share/metainfo/org.kde.minuet.metainfo.xml %%DATADIR%%/definitions/chords-extended-definitions.json %%DATADIR%%/definitions/chords-sevenths-definitions.json %%DATADIR%%/definitions/chords-three-notes-definitions.json %%DATADIR%%/definitions/intervals-ascending-melodic-harmonic-definitions.json %%DATADIR%%/definitions/intervals-descending-melodic-definitions.json %%DATADIR%%/definitions/rhythm-definitions.json %%DATADIR%%/definitions/scales-bebop-definitions.json %%DATADIR%%/definitions/scales-harmonic-major-and-its-modes-definitions.json %%DATADIR%%/definitions/scales-harmonic-minor-and-its-modes-definitions.json %%DATADIR%%/definitions/scales-major-and-its-modes-definitions.json %%DATADIR%%/definitions/scales-pentatonic-major-and-its-modes-definitions.json %%DATADIR%%/definitions/scales-simmetric-definitions.json %%DATADIR%%/exercises/chords-combined-exercises.json %%DATADIR%%/exercises/chords-extended-exercises.json %%DATADIR%%/exercises/chords-sevenths-exercises.json %%DATADIR%%/exercises/chords-three-notes-exercises.json %%DATADIR%%/exercises/intervals-ascending-melodic-exercises.json %%DATADIR%%/exercises/intervals-descending-melodic-exercises.json %%DATADIR%%/exercises/intervals-harmonic-exercises.json %%DATADIR%%/exercises/rhythm-easy.json %%DATADIR%%/exercises/rhythm-medium.json %%DATADIR%%/exercises/scales-bebop-exercises.json %%DATADIR%%/exercises/scales-harmonic-major-and-its-modes-exercises.json %%DATADIR%%/exercises/scales-harmonic-minor-and-its-modes-exercises.json %%DATADIR%%/exercises/scales-major-and-its-modes-exercises.json %%DATADIR%%/exercises/scales-pentatonic-major-and-its-modes-exercises.json %%DATADIR%%/exercises/scales-simmetric-exercises.json %%DATADIR%%/soundfonts/GeneralUser-v1.47.sf2 diff --git a/misc/parley/distinfo b/misc/parley/distinfo index be60ab83efab..76d58025b204 100644 --- a/misc/parley/distinfo +++ b/misc/parley/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1751381538 -SHA256 (KDE/release-service/25.04.3/parley-25.04.3.tar.xz) = 5e4a568809bab0c0b13f4cc74a238b36a7a67797ebba1e552745015a72e71006 -SIZE (KDE/release-service/25.04.3/parley-25.04.3.tar.xz) = 8448324 +TIMESTAMP = 1754646444 +SHA256 (KDE/release-service/25.08.0/parley-25.08.0.tar.xz) = ce502da4190c448873e25b9eef24d0670b8f5b3d39a3d2179c53dba09cca2cbb +SIZE (KDE/release-service/25.08.0/parley-25.08.0.tar.xz) = 8448236 diff --git a/multimedia/dragon/Makefile b/multimedia/dragon/Makefile index 8ea082ba1064..0e6c2fad7455 100644 --- a/multimedia/dragon/Makefile +++ b/multimedia/dragon/Makefile @@ -1,26 +1,25 @@ PORTNAME= dragon DISTVERSION= ${KDE_APPLICATIONS_VERSION} CATEGORIES= multimedia kde kde-applications PKGNAMESUFFIX= -player MAINTAINER= kde@FreeBSD.org COMMENT= KDE multimedia player with a focus on simplicity WWW= https://www.kde.org/applications/multimedia/dragonplayer/ LICENSE= GPLv2 -USES= cmake compiler:c++11-lang desktop-file-utils gettext kde:6 \ - qt:6 tar:xz xorg -USE_KDE= auth codecs completion config configwidgets coreaddons crash \ - dbusaddons doctools i18n iconthemes jobwidgets kio \ - notifications parts phonon service solid sonnet textwidgets \ - widgetsaddons windowsystem xmlgui \ - ecm:build -USE_QT= base +LIB_DEPENDS= libavcodec.so:multimedia/ffmpeg + +USES= cmake compiler:c++23-lang desktop-file-utils gettext kde:6 \ + pkgconfig qt:6 tar:xz xorg +USE_KDE= config coreaddons crash i18n kio kirigami2 windowsystem \ + doctools:build ecm:build +USE_QT= base multimedia USE_XORG= x11 CONFLICTS_INSTALL= dragon # bin/dragon OPTIONS_DEFINE= DOCS .include diff --git a/multimedia/dragon/distinfo b/multimedia/dragon/distinfo index 727a8ed83f4b..fa45354f0a83 100644 --- a/multimedia/dragon/distinfo +++ b/multimedia/dragon/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1751381540 -SHA256 (KDE/release-service/25.04.3/dragon-25.04.3.tar.xz) = 41b4bb755052147c5de8ed8ea6cd6c77b21e804c95d6be2143a9369ecc9f77c2 -SIZE (KDE/release-service/25.04.3/dragon-25.04.3.tar.xz) = 1773328 +TIMESTAMP = 1754646447 +SHA256 (KDE/release-service/25.08.0/dragon-25.08.0.tar.xz) = b72c06f1ce465dd3d7be47d69ec3a3588ddd464cc0f5d351a8d7ed47c85846a9 +SIZE (KDE/release-service/25.08.0/dragon-25.08.0.tar.xz) = 144312 diff --git a/multimedia/dragon/pkg-message b/multimedia/dragon/pkg-message deleted file mode 100644 index b0a552549d40..000000000000 --- a/multimedia/dragon/pkg-message +++ /dev/null @@ -1,11 +0,0 @@ -[ -{ type: install - message: < diff --git a/multimedia/kamoso/distinfo b/multimedia/kamoso/distinfo index 1bb0dc15efc9..f37b5b93fa3a 100644 --- a/multimedia/kamoso/distinfo +++ b/multimedia/kamoso/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1751381543 -SHA256 (KDE/release-service/25.04.3/kamoso-25.04.3.tar.xz) = 27cb36ac810434514e4f870c64d8ca851e868dd49fca1396dcb5be97a9727477 -SIZE (KDE/release-service/25.04.3/kamoso-25.04.3.tar.xz) = 235688 +TIMESTAMP = 1754646449 +SHA256 (KDE/release-service/25.08.0/kamoso-25.08.0.tar.xz) = 32dc14864fa4b634ce057bf29647cad7bfdac15a282ba2ca98f4230b28142160 +SIZE (KDE/release-service/25.08.0/kamoso-25.08.0.tar.xz) = 213616 diff --git a/multimedia/kamoso/pkg-plist b/multimedia/kamoso/pkg-plist index 2c16eaa6956d..d4b0a6eee3f8 100644 --- a/multimedia/kamoso/pkg-plist +++ b/multimedia/kamoso/pkg-plist @@ -1,64 +1,63 @@ bin/kamoso -lib/gstreamer-1.0/gstkamosoqt5videosink.so share/applications/org.kde.kamoso.desktop share/icons/hicolor/128x128/apps/kamoso.png share/icons/hicolor/16x16/apps/kamoso.png share/icons/hicolor/22x22/apps/kamoso.png share/icons/hicolor/32x32/apps/kamoso.png share/icons/hicolor/48x48/apps/kamoso.png share/icons/hicolor/64x64/apps/kamoso.png share/icons/hicolor/scalable/actions/burst.svgz share/icons/hicolor/scalable/apps/kamoso.svg -share/knotifications5/kamoso.notifyrc +share/knotifications6/kamoso.notifyrc share/locale/ar/LC_MESSAGES/kamoso.mo share/locale/bg/LC_MESSAGES/kamoso.mo share/locale/bs/LC_MESSAGES/kamoso.mo share/locale/ca/LC_MESSAGES/kamoso.mo share/locale/ca@valencia/LC_MESSAGES/kamoso.mo share/locale/cs/LC_MESSAGES/kamoso.mo share/locale/da/LC_MESSAGES/kamoso.mo share/locale/de/LC_MESSAGES/kamoso.mo share/locale/el/LC_MESSAGES/kamoso.mo share/locale/en_GB/LC_MESSAGES/kamoso.mo share/locale/eo/LC_MESSAGES/kamoso.mo share/locale/es/LC_MESSAGES/kamoso.mo share/locale/et/LC_MESSAGES/kamoso.mo share/locale/eu/LC_MESSAGES/kamoso.mo share/locale/fi/LC_MESSAGES/kamoso.mo share/locale/fr/LC_MESSAGES/kamoso.mo share/locale/ga/LC_MESSAGES/kamoso.mo share/locale/gl/LC_MESSAGES/kamoso.mo share/locale/he/LC_MESSAGES/kamoso.mo share/locale/hu/LC_MESSAGES/kamoso.mo share/locale/ia/LC_MESSAGES/kamoso.mo share/locale/id/LC_MESSAGES/kamoso.mo share/locale/ie/LC_MESSAGES/kamoso.mo share/locale/is/LC_MESSAGES/kamoso.mo share/locale/it/LC_MESSAGES/kamoso.mo share/locale/ja/LC_MESSAGES/kamoso.mo share/locale/ka/LC_MESSAGES/kamoso.mo share/locale/kk/LC_MESSAGES/kamoso.mo share/locale/ko/LC_MESSAGES/kamoso.mo share/locale/lt/LC_MESSAGES/kamoso.mo share/locale/lv/LC_MESSAGES/kamoso.mo share/locale/mai/LC_MESSAGES/kamoso.mo share/locale/mr/LC_MESSAGES/kamoso.mo share/locale/nb/LC_MESSAGES/kamoso.mo share/locale/nds/LC_MESSAGES/kamoso.mo share/locale/nl/LC_MESSAGES/kamoso.mo share/locale/nn/LC_MESSAGES/kamoso.mo share/locale/pa/LC_MESSAGES/kamoso.mo share/locale/pl/LC_MESSAGES/kamoso.mo share/locale/pt/LC_MESSAGES/kamoso.mo share/locale/pt_BR/LC_MESSAGES/kamoso.mo share/locale/ro/LC_MESSAGES/kamoso.mo share/locale/ru/LC_MESSAGES/kamoso.mo share/locale/sk/LC_MESSAGES/kamoso.mo share/locale/sl/LC_MESSAGES/kamoso.mo share/locale/sv/LC_MESSAGES/kamoso.mo share/locale/tr/LC_MESSAGES/kamoso.mo share/locale/ug/LC_MESSAGES/kamoso.mo share/locale/uk/LC_MESSAGES/kamoso.mo share/locale/zh_CN/LC_MESSAGES/kamoso.mo share/locale/zh_TW/LC_MESSAGES/kamoso.mo share/metainfo/org.kde.kamoso.appdata.xml diff --git a/multimedia/kasts/distinfo b/multimedia/kasts/distinfo index d14488815dd8..1a134d1624d0 100644 --- a/multimedia/kasts/distinfo +++ b/multimedia/kasts/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1751381543 -SHA256 (KDE/release-service/25.04.3/kasts-25.04.3.tar.xz) = 4c46103e0490ee8b38735be61f5c498c4651150118a9c914538190f0249f2f2f -SIZE (KDE/release-service/25.04.3/kasts-25.04.3.tar.xz) = 646124 +TIMESTAMP = 1754646449 +SHA256 (KDE/release-service/25.08.0/kasts-25.08.0.tar.xz) = c7cb5d3ce480d97b96402d8f9dcfc40c0465a4e1cfe3513fb7ccef78e5eb275c +SIZE (KDE/release-service/25.08.0/kasts-25.08.0.tar.xz) = 646508 diff --git a/multimedia/kdemultimedia-ffmpegthumbs/distinfo b/multimedia/kdemultimedia-ffmpegthumbs/distinfo index b435fb247c3c..a3c3ecb7def9 100644 --- a/multimedia/kdemultimedia-ffmpegthumbs/distinfo +++ b/multimedia/kdemultimedia-ffmpegthumbs/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1751381545 -SHA256 (KDE/release-service/25.04.3/ffmpegthumbs-25.04.3.tar.xz) = 78204751a7a57716971ed194a6636d559fb114113f24c193fd1cf798dfb2a994 -SIZE (KDE/release-service/25.04.3/ffmpegthumbs-25.04.3.tar.xz) = 33240 +TIMESTAMP = 1754646452 +SHA256 (KDE/release-service/25.08.0/ffmpegthumbs-25.08.0.tar.xz) = e9350f4599b060115c29416b5c71e23623e4dced544b0fa4fe657b612195621b +SIZE (KDE/release-service/25.08.0/ffmpegthumbs-25.08.0.tar.xz) = 33200 diff --git a/multimedia/kdenlive/distinfo b/multimedia/kdenlive/distinfo index 363cbc328dfb..e982e1865376 100644 --- a/multimedia/kdenlive/distinfo +++ b/multimedia/kdenlive/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1751381548 -SHA256 (KDE/release-service/25.04.3/kdenlive-25.04.3.tar.xz) = 36f8927e59ed997b1f9584b570bda5b5aa34dc1316b20e5d48f13181731abc89 -SIZE (KDE/release-service/25.04.3/kdenlive-25.04.3.tar.xz) = 14219668 +TIMESTAMP = 1754646454 +SHA256 (KDE/release-service/25.08.0/kdenlive-25.08.0.tar.xz) = f86206b9f86fe5693121723d0bb1750f96c295e9b6c7eb1fea2b408f56cc30d6 +SIZE (KDE/release-service/25.08.0/kdenlive-25.08.0.tar.xz) = 14506180 diff --git a/multimedia/kdenlive/pkg-plist b/multimedia/kdenlive/pkg-plist index 427de0aed549..462c2d0b87ef 100644 --- a/multimedia/kdenlive/pkg-plist +++ b/multimedia/kdenlive/pkg-plist @@ -1,598 +1,664 @@ bin/kdenlive bin/kdenlive_render +lib/libkdenliveLibplugin.a %%QT_PLUGINDIR%%/kf6/thumbcreator/mltpreview.so +%%QT_QMLDIR%%/org/kde/kdenlive/AssetMenu.qml +%%QT_QMLDIR%%/org/kde/kdenlive/AssetView.qml +%%QT_QMLDIR%%/org/kde/kdenlive/AudioLevels.qml +%%QT_QMLDIR%%/org/kde/kdenlive/Clip.qml +%%QT_QMLDIR%%/org/kde/kdenlive/ClipAudioThumbs.qml +%%QT_QMLDIR%%/org/kde/kdenlive/ClipMonitor.qml +%%QT_QMLDIR%%/org/kde/kdenlive/ClipThumbs.qml +%%QT_QMLDIR%%/org/kde/kdenlive/Composition.qml +%%QT_QMLDIR%%/org/kde/kdenlive/CornerSelectionShadow.qml +%%QT_QMLDIR%%/org/kde/kdenlive/Countdown.qml +%%QT_QMLDIR%%/org/kde/kdenlive/EffectToolBar.qml +%%QT_QMLDIR%%/org/kde/kdenlive/GuidesMenu.qml +%%QT_QMLDIR%%/org/kde/kdenlive/KeyframeView.qml +%%QT_QMLDIR%%/org/kde/kdenlive/MaskToolBar.qml +%%QT_QMLDIR%%/org/kde/kdenlive/MixShape.qml +%%QT_QMLDIR%%/org/kde/kdenlive/MonitorAutomask.qml +%%QT_QMLDIR%%/org/kde/kdenlive/MonitorCornerScene.qml +%%QT_QMLDIR%%/org/kde/kdenlive/MonitorGeometryScene.qml +%%QT_QMLDIR%%/org/kde/kdenlive/MonitorOverlay.qml +%%QT_QMLDIR%%/org/kde/kdenlive/MonitorRotoScene.qml +%%QT_QMLDIR%%/org/kde/kdenlive/MonitorRuler.qml +%%QT_QMLDIR%%/org/kde/kdenlive/MonitorSplit.qml +%%QT_QMLDIR%%/org/kde/kdenlive/MonitorSplitTracks.qml +%%QT_QMLDIR%%/org/kde/kdenlive/MonitorToolButton.qml +%%QT_QMLDIR%%/org/kde/kdenlive/MonitorTrimming.qml +%%QT_QMLDIR%%/org/kde/kdenlive/MultiScreenToolBar.qml +%%QT_QMLDIR%%/org/kde/kdenlive/OverlayCenter.qml +%%QT_QMLDIR%%/org/kde/kdenlive/OverlayCenterDiagonal.qml +%%QT_QMLDIR%%/org/kde/kdenlive/OverlayLabel.qml +%%QT_QMLDIR%%/org/kde/kdenlive/OverlayMinimal.qml +%%QT_QMLDIR%%/org/kde/kdenlive/OverlayStandard.qml +%%QT_QMLDIR%%/org/kde/kdenlive/OverlayThirds.qml +%%QT_QMLDIR%%/org/kde/kdenlive/ProjectMonitor.qml +%%QT_QMLDIR%%/org/kde/kdenlive/PulsingAnimation.qml +%%QT_QMLDIR%%/org/kde/kdenlive/ResizeHandle.qml +%%QT_QMLDIR%%/org/kde/kdenlive/ResizeLogic.js +%%QT_QMLDIR%%/org/kde/kdenlive/RotationHandle.qml +%%QT_QMLDIR%%/org/kde/kdenlive/Ruler.qml +%%QT_QMLDIR%%/org/kde/kdenlive/RulerZone.qml +%%QT_QMLDIR%%/org/kde/kdenlive/SceneToolBar.qml +%%QT_QMLDIR%%/org/kde/kdenlive/SnappingLogic.js +%%QT_QMLDIR%%/org/kde/kdenlive/SubTitle.qml +%%QT_QMLDIR%%/org/kde/kdenlive/SubtitleTrackHead.qml +%%QT_QMLDIR%%/org/kde/kdenlive/Timeline.qml +%%QT_QMLDIR%%/org/kde/kdenlive/TimelineLogic.js +%%QT_QMLDIR%%/org/kde/kdenlive/Track.qml +%%QT_QMLDIR%%/org/kde/kdenlive/TrackHead.qml +%%QT_QMLDIR%%/org/kde/kdenlive/ZoomBar.qml +%%QT_QMLDIR%%/org/kde/kdenlive/kde-qmlmodule.version +%%QT_QMLDIR%%/org/kde/kdenlive/kdenliveLib.qmltypes +%%QT_QMLDIR%%/org/kde/kdenlive/qmldir share/applications/org.kde.kdenlive.desktop share/config.kcfg/kdenlivesettings.kcfg %%PORTDOCS%%%%DOCSDIR%%/Kdenlive/AUTHORS %%PORTDOCS%%%%DOCSDIR%%/Kdenlive/LICENSES/Apache-2.0.txt %%PORTDOCS%%%%DOCSDIR%%/Kdenlive/LICENSES/BSD-2-Clause.txt %%PORTDOCS%%%%DOCSDIR%%/Kdenlive/LICENSES/BSD-3-Clause.txt %%PORTDOCS%%%%DOCSDIR%%/Kdenlive/LICENSES/BSL-1.0.txt %%PORTDOCS%%%%DOCSDIR%%/Kdenlive/LICENSES/CC-BY-SA-4.0.txt %%PORTDOCS%%%%DOCSDIR%%/Kdenlive/LICENSES/CC0-1.0.txt %%PORTDOCS%%%%DOCSDIR%%/Kdenlive/LICENSES/GPL-2.0-only.txt %%PORTDOCS%%%%DOCSDIR%%/Kdenlive/LICENSES/GPL-3.0-only.txt %%PORTDOCS%%%%DOCSDIR%%/Kdenlive/LICENSES/GPL-3.0-or-later.txt %%PORTDOCS%%%%DOCSDIR%%/Kdenlive/LICENSES/LGPL-3.0-only.txt %%PORTDOCS%%%%DOCSDIR%%/Kdenlive/LICENSES/LGPL-3.0-or-later.txt %%PORTDOCS%%%%DOCSDIR%%/Kdenlive/LICENSES/LicenseRef-KDE-Accepted-GPL.txt %%PORTDOCS%%%%DOCSDIR%%/Kdenlive/LICENSES/LicenseRef-KDE-Accepted-LGPL.txt %%PORTDOCS%%%%DOCSDIR%%/Kdenlive/LICENSES/MIT.txt %%PORTDOCS%%%%DOCSDIR%%/Kdenlive/README.md share/icons/hicolor/128x128/apps/kdenlive.png share/icons/hicolor/128x128/mimetypes/application-x-kdenlivetitle.png share/icons/hicolor/16x16/apps/kdenlive.png share/icons/hicolor/22x22/apps/kdenlive.png share/icons/hicolor/256x256/apps/kdenlive.png share/icons/hicolor/32x32/apps/kdenlive.png share/icons/hicolor/32x32/mimetypes/application-x-kdenlivetitle.png share/icons/hicolor/48x48/apps/kdenlive.png share/icons/hicolor/64x64/apps/kdenlive.png share/icons/hicolor/64x64/mimetypes/application-x-kdenlivetitle.png share/icons/hicolor/scalable/apps/kdenlive.svgz share/icons/hicolor/scalable/mimetypes/application-x-kdenlive.svgz share/icons/hicolor/scalable/mimetypes/application-x-kdenlivetitle.svgz share/icons/hicolor/scalable/mimetypes/video-mlt-playlist.svgz %%DATADIR%%/clipjobsettings.rc %%DATADIR%%/effect-templates/secondary_color_correction.xml %%DATADIR%%/effect-templates/secondary_color_correction_v2.xml %%DATADIR%%/effect-templates/shut_off.xml %%DATADIR%%/effects/acompressor.xml %%DATADIR%%/effects/aecho.xml %%DATADIR%%/effects/agate.xml %%DATADIR%%/effects/audiobalance.xml %%DATADIR%%/effects/audiolevelgraph.xml %%DATADIR%%/effects/audiomap.xml %%DATADIR%%/effects/audiopan.xml %%DATADIR%%/effects/audiospectrum.xml %%DATADIR%%/effects/audiowave.xml %%DATADIR%%/effects/audiowaveform.xml %%DATADIR%%/effects/avfilter_acontrast.xml %%DATADIR%%/effects/avfilter_acrusher.xml %%DATADIR%%/effects/avfilter_alimiter.xml %%DATADIR%%/effects/avfilter_allpass.xml %%DATADIR%%/effects/avfilter_aphaser.xml %%DATADIR%%/effects/avfilter_apulsator.xml %%DATADIR%%/effects/avfilter_atadenoise.xml %%DATADIR%%/effects/avfilter_avgblur.xml %%DATADIR%%/effects/avfilter_bandpass.xml %%DATADIR%%/effects/avfilter_bandreject.xml %%DATADIR%%/effects/avfilter_bass.xml %%DATADIR%%/effects/avfilter_bilateral.xml %%DATADIR%%/effects/avfilter_boxblur.xml %%DATADIR%%/effects/avfilter_bs2b.xml %%DATADIR%%/effects/avfilter_bwdif.xml %%DATADIR%%/effects/avfilter_cas.xml %%DATADIR%%/effects/avfilter_chromahold.xml %%DATADIR%%/effects/avfilter_chromanr.xml %%DATADIR%%/effects/avfilter_chromashift.xml +%%DATADIR%%/effects/avfilter_ciescope.xml %%DATADIR%%/effects/avfilter_colorbalance.xml %%DATADIR%%/effects/avfilter_colorchannelmixer.xml %%DATADIR%%/effects/avfilter_colorcontrast.xml %%DATADIR%%/effects/avfilter_colorcorrect.xml %%DATADIR%%/effects/avfilter_colorhold.xml %%DATADIR%%/effects/avfilter_colorize.xml %%DATADIR%%/effects/avfilter_colorlevels.xml %%DATADIR%%/effects/avfilter_colormatrix.xml %%DATADIR%%/effects/avfilter_colorspace.xml %%DATADIR%%/effects/avfilter_colortemperature.xml %%DATADIR%%/effects/avfilter_compand.xml %%DATADIR%%/effects/avfilter_compensationdelay.xml %%DATADIR%%/effects/avfilter_crossfeed.xml %%DATADIR%%/effects/avfilter_crystalizer.xml %%DATADIR%%/effects/avfilter_datascope.xml %%DATADIR%%/effects/avfilter_dblur.xml %%DATADIR%%/effects/avfilter_dcshift.xml %%DATADIR%%/effects/avfilter_dctdnoiz.xml %%DATADIR%%/effects/avfilter_deband.xml %%DATADIR%%/effects/avfilter_deblock.xml %%DATADIR%%/effects/avfilter_dedot.xml %%DATADIR%%/effects/avfilter_deesser.xml %%DATADIR%%/effects/avfilter_deflate.xml %%DATADIR%%/effects/avfilter_delogo.xml %%DATADIR%%/effects/avfilter_derain.xml %%DATADIR%%/effects/avfilter_despill.xml %%DATADIR%%/effects/avfilter_dilation.xml %%DATADIR%%/effects/avfilter_doubleweave.xml %%DATADIR%%/effects/avfilter_drawbox.xml %%DATADIR%%/effects/avfilter_drawgrid.xml %%DATADIR%%/effects/avfilter_edgedetect.xml %%DATADIR%%/effects/avfilter_elbg.xml %%DATADIR%%/effects/avfilter_epx.xml %%DATADIR%%/effects/avfilter_eq.xml %%DATADIR%%/effects/avfilter_equalizer.xml %%DATADIR%%/effects/avfilter_erosion.xml %%DATADIR%%/effects/avfilter_exposure.xml %%DATADIR%%/effects/avfilter_extrastereo.xml %%DATADIR%%/effects/avfilter_fftdnoiz.xml %%DATADIR%%/effects/avfilter_fftfilt.xml %%DATADIR%%/effects/avfilter_field.xml %%DATADIR%%/effects/avfilter_fieldorder.xml %%DATADIR%%/effects/avfilter_fillborders.xml %%DATADIR%%/effects/avfilter_flanger.xml %%DATADIR%%/effects/avfilter_framestep.xml %%DATADIR%%/effects/avfilter_fspp.xml %%DATADIR%%/effects/avfilter_gblur.xml %%DATADIR%%/effects/avfilter_gradfun.xml %%DATADIR%%/effects/avfilter_graphmonitor.xml %%DATADIR%%/effects/avfilter_haas.xml %%DATADIR%%/effects/avfilter_hflip.xml %%DATADIR%%/effects/avfilter_highpass.xml %%DATADIR%%/effects/avfilter_highshelf.xml %%DATADIR%%/effects/avfilter_histeq.xml %%DATADIR%%/effects/avfilter_histogram.xml %%DATADIR%%/effects/avfilter_hqdn3d.xml %%DATADIR%%/effects/avfilter_hqx.xml +%%DATADIR%%/effects/avfilter_hsvhold.xml +%%DATADIR%%/effects/avfilter_hsvkey.xml +%%DATADIR%%/effects/avfilter_huesaturation.xml %%DATADIR%%/effects/avfilter_il.xml %%DATADIR%%/effects/avfilter_inflate.xml %%DATADIR%%/effects/avfilter_kerneldeint.xml %%DATADIR%%/effects/avfilter_kirsch.xml %%DATADIR%%/effects/avfilter_lagfun.xml %%DATADIR%%/effects/avfilter_lenscorrection.xml %%DATADIR%%/effects/avfilter_limiter.xml %%DATADIR%%/effects/avfilter_loudnorm.xml %%DATADIR%%/effects/avfilter_lowpass.xml %%DATADIR%%/effects/avfilter_lowshelf.xml %%DATADIR%%/effects/avfilter_lut3d.xml %%DATADIR%%/effects/avfilter_mcdeint.xml %%DATADIR%%/effects/avfilter_median.xml %%DATADIR%%/effects/avfilter_monochrome.xml %%DATADIR%%/effects/avfilter_negate.xml %%DATADIR%%/effects/avfilter_noise.xml %%DATADIR%%/effects/avfilter_normalize.xml %%DATADIR%%/effects/avfilter_oscilloscope.xml %%DATADIR%%/effects/avfilter_phase.xml %%DATADIR%%/effects/avfilter_photosensitivity.xml %%DATADIR%%/effects/avfilter_pixelize.xml %%DATADIR%%/effects/avfilter_prewitt.xml %%DATADIR%%/effects/avfilter_random.xml %%DATADIR%%/effects/avfilter_removegrain.xml %%DATADIR%%/effects/avfilter_rgbashift.xml %%DATADIR%%/effects/avfilter_roberts.xml %%DATADIR%%/effects/avfilter_sab.xml %%DATADIR%%/effects/avfilter_scharr.xml %%DATADIR%%/effects/avfilter_scroll.xml %%DATADIR%%/effects/avfilter_selectivecolor.xml %%DATADIR%%/effects/avfilter_separatefields.xml %%DATADIR%%/effects/avfilter_setrange.xml %%DATADIR%%/effects/avfilter_shear.xml %%DATADIR%%/effects/avfilter_shuffleplanes.xml %%DATADIR%%/effects/avfilter_smartblur.xml %%DATADIR%%/effects/avfilter_sobel.xml %%DATADIR%%/effects/avfilter_sofalizer.xml %%DATADIR%%/effects/avfilter_sr.xml %%DATADIR%%/effects/avfilter_stereo3D.xml %%DATADIR%%/effects/avfilter_stereotools.xml %%DATADIR%%/effects/avfilter_stereowiden.xml %%DATADIR%%/effects/avfilter_tmix.xml %%DATADIR%%/effects/avfilter_transpose.xml %%DATADIR%%/effects/avfilter_unsharp.xml %%DATADIR%%/effects/avfilter_vaguedenoiser.xml %%DATADIR%%/effects/avfilter_vectorscope.xml %%DATADIR%%/effects/avfilter_vflip.xml %%DATADIR%%/effects/avfilter_vibrance.xml %%DATADIR%%/effects/avfilter_vibrato.xml %%DATADIR%%/effects/avfilter_w3fdif.xml %%DATADIR%%/effects/avfilter_waveform.xml %%DATADIR%%/effects/avfilter_weave.xml %%DATADIR%%/effects/avfilter_xbr.xml %%DATADIR%%/effects/avfilter_yadif.xml %%DATADIR%%/effects/avfilter_zoompan.xml %%DATADIR%%/effects/box_blur.xml %%DATADIR%%/effects/boxblur.xml %%DATADIR%%/effects/brightness.xml +%%DATADIR%%/effects/burningtv.xml %%DATADIR%%/effects/channelcopy.xml %%DATADIR%%/effects/charcoal.xml %%DATADIR%%/effects/chroma.xml %%DATADIR%%/effects/chroma_hold.xml %%DATADIR%%/effects/copychannelstostereo.xml %%DATADIR%%/effects/crop.xml %%DATADIR%%/effects/dance.xml %%DATADIR%%/effects/dropshadow.xml %%DATADIR%%/effects/dust.xml %%DATADIR%%/effects/dynamic_loudness.xml %%DATADIR%%/effects/dynamictext.xml %%DATADIR%%/effects/fade_from_black.xml %%DATADIR%%/effects/fade_to_black.xml %%DATADIR%%/effects/fadein.xml %%DATADIR%%/effects/fadeout.xml %%DATADIR%%/effects/freeze.xml %%DATADIR%%/effects/frei0r_B.xml %%DATADIR%%/effects/frei0r_G.xml %%DATADIR%%/effects/frei0r_R.xml %%DATADIR%%/effects/frei0r_aech0r.xml %%DATADIR%%/effects/frei0r_alpha0ps.xml %%DATADIR%%/effects/frei0r_alpha0ps_alpha0ps.xml %%DATADIR%%/effects/frei0r_alpha0ps_alphagrad.xml %%DATADIR%%/effects/frei0r_alpha0ps_alphaspot.xml %%DATADIR%%/effects/frei0r_alphagrad.xml %%DATADIR%%/effects/frei0r_alphaspot.xml %%DATADIR%%/effects/frei0r_balanc0r.xml %%DATADIR%%/effects/frei0r_baltan.xml %%DATADIR%%/effects/frei0r_bezier_curves.xml %%DATADIR%%/effects/frei0r_bgsubtract0r.xml %%DATADIR%%/effects/frei0r_bigsh0t_eq_cap.xml %%DATADIR%%/effects/frei0r_bigsh0t_eq_mask.xml %%DATADIR%%/effects/frei0r_bigsh0t_eq_to_rect.xml %%DATADIR%%/effects/frei0r_bigsh0t_eq_to_stereo.xml %%DATADIR%%/effects/frei0r_bigsh0t_eq_wrap.xml %%DATADIR%%/effects/frei0r_bigsh0t_hemi_to_eq.xml %%DATADIR%%/effects/frei0r_bigsh0t_rect_to_eq.xml %%DATADIR%%/effects/frei0r_bigsh0t_stabilize_360.xml %%DATADIR%%/effects/frei0r_bigsh0t_transform_360.xml +%%DATADIR%%/effects/frei0r_bluescreen0r.xml %%DATADIR%%/effects/frei0r_brightness.xml %%DATADIR%%/effects/frei0r_c0rners.xml %%DATADIR%%/effects/frei0r_cairogradient.xml %%DATADIR%%/effects/frei0r_cairoimagegrid.xml %%DATADIR%%/effects/frei0r_cartoon.xml %%DATADIR%%/effects/frei0r_cluster.xml %%DATADIR%%/effects/frei0r_colgate.xml %%DATADIR%%/effects/frei0r_coloradj_rgb.xml %%DATADIR%%/effects/frei0r_colordistance.xml %%DATADIR%%/effects/frei0r_colorize.xml %%DATADIR%%/effects/frei0r_colortap.xml %%DATADIR%%/effects/frei0r_contrast0r.xml %%DATADIR%%/effects/frei0r_curves.xml %%DATADIR%%/effects/frei0r_d90stairsteppingfix.xml %%DATADIR%%/effects/frei0r_defish0r.xml %%DATADIR%%/effects/frei0r_delay0r.xml %%DATADIR%%/effects/frei0r_delaygrab.xml +%%DATADIR%%/effects/frei0r_denoise_hqdn3d.xml %%DATADIR%%/effects/frei0r_distort0r.xml %%DATADIR%%/effects/frei0r_dither.xml %%DATADIR%%/effects/frei0r_edgeglow.xml +%%DATADIR%%/effects/frei0r_elastic_scale.xml %%DATADIR%%/effects/frei0r_emboss.xml %%DATADIR%%/effects/frei0r_equaliz0r.xml %%DATADIR%%/effects/frei0r_facebl0r.xml %%DATADIR%%/effects/frei0r_facedetect.xml %%DATADIR%%/effects/frei0r_filmgrain.xml %%DATADIR%%/effects/frei0r_flippo.xml %%DATADIR%%/effects/frei0r_glitch0r.xml %%DATADIR%%/effects/frei0r_glow.xml %%DATADIR%%/effects/frei0r_hqdn3d.xml %%DATADIR%%/effects/frei0r_hueshift0r.xml %%DATADIR%%/effects/frei0r_iirblur.xml %%DATADIR%%/effects/frei0r_kaleid0sc0pe.xml %%DATADIR%%/effects/frei0r_keyspillm0pup.xml %%DATADIR%%/effects/frei0r_lenscorrection.xml %%DATADIR%%/effects/frei0r_letterb0xed.xml %%DATADIR%%/effects/frei0r_levels.xml %%DATADIR%%/effects/frei0r_lightgraffiti.xml %%DATADIR%%/effects/frei0r_luminance.xml %%DATADIR%%/effects/frei0r_mask0mate.xml +%%DATADIR%%/effects/frei0r_measure_pr0be.xml +%%DATADIR%%/effects/frei0r_measure_pr0file.xml %%DATADIR%%/effects/frei0r_medians.xml %%DATADIR%%/effects/frei0r_nervous.xml %%DATADIR%%/effects/frei0r_normaliz0r.xml %%DATADIR%%/effects/frei0r_nosync0r.xml %%DATADIR%%/effects/frei0r_pixeliz0r.xml %%DATADIR%%/effects/frei0r_pixs0r.xml %%DATADIR%%/effects/frei0r_posterize.xml %%DATADIR%%/effects/frei0r_pr0be.xml %%DATADIR%%/effects/frei0r_pr0file.xml %%DATADIR%%/effects/frei0r_primaries.xml %%DATADIR%%/effects/frei0r_rgbnoise.xml %%DATADIR%%/effects/frei0r_rgbparade.xml %%DATADIR%%/effects/frei0r_rgbsplit0r.xml %%DATADIR%%/effects/frei0r_saturat0r.xml %%DATADIR%%/effects/frei0r_scale0tilt.xml %%DATADIR%%/effects/frei0r_scanline0r.xml %%DATADIR%%/effects/frei0r_select0r.xml %%DATADIR%%/effects/frei0r_sharpness.xml %%DATADIR%%/effects/frei0r_sigmoidaltransfer.xml %%DATADIR%%/effects/frei0r_sobel.xml %%DATADIR%%/effects/frei0r_softglow.xml %%DATADIR%%/effects/frei0r_sopsat.xml %%DATADIR%%/effects/frei0r_squareblur.xml %%DATADIR%%/effects/frei0r_tehroxx0r.xml %%DATADIR%%/effects/frei0r_three_point_balance.xml %%DATADIR%%/effects/frei0r_threelay0r.xml %%DATADIR%%/effects/frei0r_threshold0r.xml %%DATADIR%%/effects/frei0r_timeout.xml %%DATADIR%%/effects/frei0r_tint0r.xml %%DATADIR%%/effects/frei0r_transparency.xml %%DATADIR%%/effects/frei0r_twolay0r.xml %%DATADIR%%/effects/frei0r_vectorscope.xml %%DATADIR%%/effects/frei0r_vertigo.xml %%DATADIR%%/effects/frei0r_vignette.xml %%DATADIR%%/effects/gain.xml %%DATADIR%%/effects/gamma.xml %%DATADIR%%/effects/gpsgraphic.xml %%DATADIR%%/effects/gpstext.xml +%%DATADIR%%/effects/gradientmap.xml %%DATADIR%%/effects/grain.xml +%%DATADIR%%/effects/greyedge.xml %%DATADIR%%/effects/greyscale.xml %%DATADIR%%/effects/hsl_primaries.xml %%DATADIR%%/effects/hsl_range.xml %%DATADIR%%/effects/invert.xml %%DATADIR%%/effects/ladspa_declipper.xml %%DATADIR%%/effects/ladspa_equalizer.xml %%DATADIR%%/effects/ladspa_equalizer_15.xml %%DATADIR%%/effects/ladspa_librnnoise.xml %%DATADIR%%/effects/ladspa_limiter.xml %%DATADIR%%/effects/ladspa_phaser.xml %%DATADIR%%/effects/ladspa_pitch.xml %%DATADIR%%/effects/ladspa_pitch_scale.xml %%DATADIR%%/effects/ladspa_rate_scale.xml %%DATADIR%%/effects/ladspa_reverb.xml %%DATADIR%%/effects/ladspa_room_reverb.xml %%DATADIR%%/effects/ladspa_vinyl.xml %%DATADIR%%/effects/lift_gamma_gain.xml %%DATADIR%%/effects/lightshow.xml %%DATADIR%%/effects/loudness.xml %%DATADIR%%/effects/luma.xml %%DATADIR%%/effects/lumaliftgaingamma.xml %%DATADIR%%/effects/mask_apply.xml %%DATADIR%%/effects/mask_start.xml %%DATADIR%%/effects/mask_start_frei0r_alphaspot.xml %%DATADIR%%/effects/mask_start_frei0r_select0r.xml %%DATADIR%%/effects/mask_start_rotoscoping.xml %%DATADIR%%/effects/mask_start_shape.xml %%DATADIR%%/effects/mirror.xml %%DATADIR%%/effects/mono.xml %%DATADIR%%/effects/movit_blur.xml %%DATADIR%%/effects/movit_deconvolution_sharpen.xml %%DATADIR%%/effects/movit_diffusion.xml %%DATADIR%%/effects/movit_flip.xml %%DATADIR%%/effects/movit_glow.xml %%DATADIR%%/effects/movit_lift_gamma_gain.xml %%DATADIR%%/effects/movit_mirror.xml %%DATADIR%%/effects/movit_opacity.xml %%DATADIR%%/effects/movit_rect.xml %%DATADIR%%/effects/movit_saturation.xml %%DATADIR%%/effects/movit_unsharp_mask.xml %%DATADIR%%/effects/movit_vignette.xml %%DATADIR%%/effects/movit_white_balance.xml %%DATADIR%%/effects/mute.xml %%DATADIR%%/effects/normalise.xml %%DATADIR%%/effects/obscure.xml %%DATADIR%%/effects/oldfilm.xml %%DATADIR%%/effects/pan_zoom.xml %%DATADIR%%/effects/pillar_echo.xml %%DATADIR%%/effects/qtblend.xml %%DATADIR%%/effects/qtcrop.xml %%DATADIR%%/effects/rboctaveshift.xml %%DATADIR%%/effects/rbpitchscale.xml %%DATADIR%%/effects/rotate-3-way.xml %%DATADIR%%/effects/rotation.xml %%DATADIR%%/effects/rotation_keyframable.xml %%DATADIR%%/effects/rotoscoping.xml %%DATADIR%%/effects/scratchlines.xml %%DATADIR%%/effects/sepia.xml %%DATADIR%%/effects/shape.xml %%DATADIR%%/effects/shear.xml %%DATADIR%%/effects/sox_band.xml %%DATADIR%%/effects/sox_bass.xml %%DATADIR%%/effects/sox_echo.xml %%DATADIR%%/effects/sox_flanger.xml %%DATADIR%%/effects/sox_gain.xml %%DATADIR%%/effects/sox_phaser.xml %%DATADIR%%/effects/sox_stretch.xml %%DATADIR%%/effects/speed.xml %%DATADIR%%/effects/spot_remover.xml %%DATADIR%%/effects/strobe.xml %%DATADIR%%/effects/subtitles.xml %%DATADIR%%/effects/swapchannels.xml %%DATADIR%%/effects/tcolor.xml %%DATADIR%%/effects/threshold.xml %%DATADIR%%/effects/timer.xml %%DATADIR%%/effects/tracker.xml %%DATADIR%%/effects/typewriter.xml %%DATADIR%%/effects/update/frei0r.balanc0r.js %%DATADIR%%/effects/update/frei0r.cartoon.js %%DATADIR%%/effects/update/frei0r.curves.js %%DATADIR%%/effects/update/frei0r.levels.js %%DATADIR%%/effects/update/frei0r.lightgraffiti.js %%DATADIR%%/effects/update/frei0r.select0r.js %%DATADIR%%/effects/update/frei0r.sopsat.js %%DATADIR%%/effects/update/frei0r.vertigo.js %%DATADIR%%/effects/vidstab.xml %%DATADIR%%/effects/vignette.xml %%DATADIR%%/effects/volume.xml %%DATADIR%%/effects/wave.xml %%DATADIR%%/encodingprofiles.rc %%DATADIR%%/export/profiles.xml %%DATADIR%%/externalproxies.rc %%DATADIR%%/generators/count.xml %%DATADIR%%/generators/frei0r_test_pat_b.xml %%DATADIR%%/generators/noise.xml %%DATADIR%%/kdenlivedefaultlayouts.rc %%DATADIR%%/kdenliveeffectscategory.rc %%DATADIR%%/kdenlivetranscodingrc %%DATADIR%%/lumas/HD/bi-linear_x.pgm %%DATADIR%%/lumas/HD/bi-linear_y.pgm %%DATADIR%%/lumas/HD/burst.pgm %%DATADIR%%/lumas/HD/checkerboard_small.pgm %%DATADIR%%/lumas/HD/clock.pgm %%DATADIR%%/lumas/HD/cloud.pgm %%DATADIR%%/lumas/HD/curtain.pgm %%DATADIR%%/lumas/HD/horizontal_blinds.pgm %%DATADIR%%/lumas/HD/linear_x.pgm %%DATADIR%%/lumas/HD/linear_y.pgm %%DATADIR%%/lumas/HD/radial-bars.pgm %%DATADIR%%/lumas/HD/radial.pgm %%DATADIR%%/lumas/HD/spiral.pgm %%DATADIR%%/lumas/HD/spiral2.pgm %%DATADIR%%/lumas/HD/square.pgm %%DATADIR%%/lumas/HD/square2-bars.pgm %%DATADIR%%/lumas/HD/square2.pgm %%DATADIR%%/lumas/HD/symmetric_clock.pgm %%DATADIR%%/lumas/PAL/bi-linear_x.pgm %%DATADIR%%/lumas/PAL/bi-linear_y.pgm %%DATADIR%%/lumas/PAL/burst.pgm %%DATADIR%%/lumas/PAL/checkerboard_small.pgm %%DATADIR%%/lumas/PAL/clock.pgm %%DATADIR%%/lumas/PAL/cloud.pgm %%DATADIR%%/lumas/PAL/curtain.pgm %%DATADIR%%/lumas/PAL/horizontal_blinds.pgm %%DATADIR%%/lumas/PAL/linear_x.pgm %%DATADIR%%/lumas/PAL/linear_y.pgm %%DATADIR%%/lumas/PAL/radial-bars.pgm %%DATADIR%%/lumas/PAL/radial.pgm %%DATADIR%%/lumas/PAL/spiral.pgm %%DATADIR%%/lumas/PAL/spiral2.pgm %%DATADIR%%/lumas/PAL/square.pgm %%DATADIR%%/lumas/PAL/square2-bars.pgm %%DATADIR%%/lumas/PAL/square2.pgm %%DATADIR%%/lumas/PAL/symmetric_clock.pgm %%DATADIR%%/luts/BLUE_TINT.cube %%DATADIR%%/luts/CINEMATIC.cube %%DATADIR%%/luts/GREEN_TINT.cube %%DATADIR%%/luts/TEAL_ORANGE.cube %%DATADIR%%/meta_magiclantern.png %%DATADIR%%/profiles/dci_2160p_2398 %%DATADIR%%/profiles/dci_2160p_24 %%DATADIR%%/profiles/dci_2160p_25 %%DATADIR%%/profiles/dci_2160p_2997 %%DATADIR%%/profiles/dci_2160p_30 %%DATADIR%%/profiles/dci_2160p_50 %%DATADIR%%/profiles/dci_2160p_5994 %%DATADIR%%/profiles/dci_2160p_60 %%DATADIR%%/resourceproviders/archiveorg.json %%DATADIR%%/resourceproviders/freesound.json %%DATADIR%%/resourceproviders/pexels_photo.json %%DATADIR%%/resourceproviders/pexels_video.json %%DATADIR%%/resourceproviders/pixabay_photo.json %%DATADIR%%/resourceproviders/pixabay_videos.json %%DATADIR%%/sammodelsinfo.rc %%DATADIR%%/scripts/automask/kdenlive_build_sam.py %%DATADIR%%/scripts/automask/kdenlive_sam2_video_predictor.py %%DATADIR%%/scripts/automask/requirements-cuda118.txt %%DATADIR%%/scripts/automask/requirements-cuda124.txt %%DATADIR%%/scripts/automask/requirements-cuda126.txt +%%DATADIR%%/scripts/automask/requirements-cuda128.txt %%DATADIR%%/scripts/automask/requirements-sam.txt %%DATADIR%%/scripts/automask/sam-objectmask.py %%DATADIR%%/scripts/checkgpu.py %%DATADIR%%/scripts/checkpackages.py %%DATADIR%%/scripts/otiointerface.py %%DATADIR%%/scripts/vosk/speech.py %%DATADIR%%/scripts/vosk/speechtotext.py %%DATADIR%%/scripts/whisper/requirements-cuda118.txt %%DATADIR%%/scripts/whisper/requirements-cuda124.txt %%DATADIR%%/scripts/whisper/requirements-cuda126.txt +%%DATADIR%%/scripts/whisper/requirements-cuda128.txt %%DATADIR%%/scripts/whisper/requirements-seamless.txt -%%DATADIR%%/scripts/whisper/requirements-whisper-windows.txt %%DATADIR%%/scripts/whisper/requirements-whisper.txt %%DATADIR%%/scripts/whisper/seamlessquery.py %%DATADIR%%/scripts/whisper/whisperquery.py %%DATADIR%%/scripts/whisper/whispertosrt.py %%DATADIR%%/scripts/whisper/whispertotext.py %%DATADIR%%/shortcuts/Premiere %%DATADIR%%/slideanimations.rc %%DATADIR%%/titles/simple-scroll.kdenlivetitle %%DATADIR%%/titles/simple-with-date.kdenlivetitle %%DATADIR%%/titles/simple.kdenlivetitle %%DATADIR%%/transitions/affine.xml %%DATADIR%%/transitions/composite.xml %%DATADIR%%/transitions/dissolve.xml %%DATADIR%%/transitions/frei0r_addition.xml %%DATADIR%%/transitions/frei0r_addition_alpha.xml %%DATADIR%%/transitions/frei0r_alphaatop.xml %%DATADIR%%/transitions/frei0r_alphain.xml %%DATADIR%%/transitions/frei0r_alphaout.xml %%DATADIR%%/transitions/frei0r_alphaover.xml %%DATADIR%%/transitions/frei0r_alphaxor.xml %%DATADIR%%/transitions/frei0r_burn.xml %%DATADIR%%/transitions/frei0r_cairoaffineblend.xml %%DATADIR%%/transitions/frei0r_cairoblend.xml %%DATADIR%%/transitions/frei0r_color_only.xml %%DATADIR%%/transitions/frei0r_darken.xml %%DATADIR%%/transitions/frei0r_difference.xml %%DATADIR%%/transitions/frei0r_divide.xml %%DATADIR%%/transitions/frei0r_dodge.xml %%DATADIR%%/transitions/frei0r_grain_extract.xml %%DATADIR%%/transitions/frei0r_grain_merge.xml %%DATADIR%%/transitions/frei0r_hardlight.xml %%DATADIR%%/transitions/frei0r_hue.xml %%DATADIR%%/transitions/frei0r_lighten.xml %%DATADIR%%/transitions/frei0r_multiply.xml %%DATADIR%%/transitions/frei0r_overlay.xml %%DATADIR%%/transitions/frei0r_push-down.xml %%DATADIR%%/transitions/frei0r_push-left.xml %%DATADIR%%/transitions/frei0r_push-right.xml %%DATADIR%%/transitions/frei0r_push-up.xml %%DATADIR%%/transitions/frei0r_saturation.xml %%DATADIR%%/transitions/frei0r_screen.xml %%DATADIR%%/transitions/frei0r_slide-down.xml %%DATADIR%%/transitions/frei0r_slide-left.xml %%DATADIR%%/transitions/frei0r_slide-right.xml %%DATADIR%%/transitions/frei0r_slide-up.xml %%DATADIR%%/transitions/frei0r_softlight.xml %%DATADIR%%/transitions/frei0r_subtract.xml %%DATADIR%%/transitions/frei0r_uvmap.xml %%DATADIR%%/transitions/frei0r_value.xml %%DATADIR%%/transitions/frei0r_wipe-barn-door-h.xml %%DATADIR%%/transitions/frei0r_wipe-barn-door-v.xml %%DATADIR%%/transitions/frei0r_wipe-circle.xml %%DATADIR%%/transitions/frei0r_wipe-down.xml %%DATADIR%%/transitions/frei0r_wipe-left.xml %%DATADIR%%/transitions/frei0r_wipe-rect.xml %%DATADIR%%/transitions/frei0r_wipe-right.xml %%DATADIR%%/transitions/frei0r_wipe-up.xml %%DATADIR%%/transitions/luma.xml %%DATADIR%%/transitions/matte.xml %%DATADIR%%/transitions/mix.xml %%DATADIR%%/transitions/qtblend.xml %%DATADIR%%/transitions/region.xml %%DATADIR%%/transitions/slide.xml %%DATADIR%%/transitions/vqm.xml %%DATADIR%%/transitions/wipe.xml share/knotifications6/kdenlive.notifyrc share/knsrcfiles/kdenlive_effects.knsrc share/knsrcfiles/kdenlive_keyboardschemes.knsrc share/knsrcfiles/kdenlive_luts.knsrc share/knsrcfiles/kdenlive_renderprofiles.knsrc share/knsrcfiles/kdenlive_titles.knsrc share/knsrcfiles/kdenlive_wipes.knsrc share/locale/ar/LC_MESSAGES/kdenlive.mo share/locale/ast/LC_MESSAGES/kdenlive.mo share/locale/az/LC_MESSAGES/kdenlive.mo share/locale/bs/LC_MESSAGES/kdenlive.mo share/locale/ca/LC_MESSAGES/kdenlive.mo share/locale/ca@valencia/LC_MESSAGES/kdenlive.mo share/locale/cs/LC_MESSAGES/kdenlive.mo share/locale/da/LC_MESSAGES/kdenlive.mo share/locale/de/LC_MESSAGES/kdenlive.mo share/locale/el/LC_MESSAGES/kdenlive.mo share/locale/en_GB/LC_MESSAGES/kdenlive.mo share/locale/eo/LC_MESSAGES/kdenlive.mo share/locale/es/LC_MESSAGES/kdenlive.mo share/locale/et/LC_MESSAGES/kdenlive.mo share/locale/eu/LC_MESSAGES/kdenlive.mo share/locale/fi/LC_MESSAGES/kdenlive.mo share/locale/fr/LC_MESSAGES/kdenlive.mo share/locale/ga/LC_MESSAGES/kdenlive.mo share/locale/gl/LC_MESSAGES/kdenlive.mo share/locale/he/LC_MESSAGES/kdenlive.mo share/locale/hi/LC_MESSAGES/kdenlive.mo share/locale/hr/LC_MESSAGES/kdenlive.mo share/locale/hu/LC_MESSAGES/kdenlive.mo share/locale/id/LC_MESSAGES/kdenlive.mo share/locale/it/LC_MESSAGES/kdenlive.mo share/locale/ja/LC_MESSAGES/kdenlive.mo share/locale/ka/LC_MESSAGES/kdenlive.mo share/locale/ko/LC_MESSAGES/kdenlive.mo share/locale/lt/LC_MESSAGES/kdenlive.mo share/locale/lv/LC_MESSAGES/kdenlive.mo share/locale/mr/LC_MESSAGES/kdenlive.mo share/locale/nb/LC_MESSAGES/kdenlive.mo share/locale/nds/LC_MESSAGES/kdenlive.mo share/locale/nl/LC_MESSAGES/kdenlive.mo share/locale/pl/LC_MESSAGES/kdenlive.mo share/locale/pt/LC_MESSAGES/kdenlive.mo share/locale/pt_BR/LC_MESSAGES/kdenlive.mo share/locale/ro/LC_MESSAGES/kdenlive.mo share/locale/ru/LC_MESSAGES/kdenlive.mo share/locale/sa/LC_MESSAGES/kdenlive.mo share/locale/sk/LC_MESSAGES/kdenlive.mo share/locale/sl/LC_MESSAGES/kdenlive.mo share/locale/sv/LC_MESSAGES/kdenlive.mo share/locale/tok/LC_MESSAGES/kdenlive.mo share/locale/tr/LC_MESSAGES/kdenlive.mo share/locale/ug/LC_MESSAGES/kdenlive.mo share/locale/uk/LC_MESSAGES/kdenlive.mo share/locale/zh_CN/LC_MESSAGES/kdenlive.mo share/locale/zh_TW/LC_MESSAGES/kdenlive.mo share/man/man1/kdenlive.1.gz share/man/man1/kdenlive_render.1.gz share/metainfo/org.kde.kdenlive.appdata.xml share/mime/packages/org.kde.kdenlive.xml share/mime/packages/westley.xml share/qlogging-categories6/kdenlive.categories +share/qlogging-categories6/kdenlive.renamecategories diff --git a/multimedia/plasmatube/distinfo b/multimedia/plasmatube/distinfo index d834cccbe874..32d3a9656b2d 100644 --- a/multimedia/plasmatube/distinfo +++ b/multimedia/plasmatube/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1751381548 -SHA256 (KDE/release-service/25.04.3/plasmatube-25.04.3.tar.xz) = bd05e3b4ca3be87d05c232df92683bfbd58bb6239d18ad601abe4b4e9cf9b0fb -SIZE (KDE/release-service/25.04.3/plasmatube-25.04.3.tar.xz) = 224128 +TIMESTAMP = 1754646455 +SHA256 (KDE/release-service/25.08.0/plasmatube-25.08.0.tar.xz) = e5b8c6e239ed483e0e7495e3b311385e1555ffa5531a831dbedb8d8e95db65f2 +SIZE (KDE/release-service/25.08.0/plasmatube-25.08.0.tar.xz) = 224460 diff --git a/net-im/kaccounts-integration/Makefile b/net-im/kaccounts-integration/Makefile index 11c55b5df16a..f59759887a85 100644 --- a/net-im/kaccounts-integration/Makefile +++ b/net-im/kaccounts-integration/Makefile @@ -1,28 +1,27 @@ PORTNAME= kaccounts-integration DISTVERSION= ${KDE_APPLICATIONS_VERSION} -PORTREVISION= 1 CATEGORIES= net-im kde kde-applications MAINTAINER= kde@FreeBSD.org COMMENT= System to administer web accounts for the KDE desktop WWW= https://projects.kde.org/projects/kdereview/kaccounts-integration LIB_DEPENDS= libQCoro6Core.so:devel/qcoro \ libaccounts-qt6.so:net-im/libaccounts-qt@qt6 \ libsignon-qt6.so:sysutils/signond@qt6 USES= cmake compiler:c++11-lang gettext-tools kde:6 pkgconfig qt:6 \ tar:xz USE_KDE= config coreaddons dbusaddons i18n kcmutils kdeclarative kio \ service wallet \ ecm:build package:build \ iconthemes:run USE_QT= base declarative .include .if ${ARCH:Mpowerpc*} && ${OSVERSION} < 1400092 USES+= llvm:min=16 .endif .include diff --git a/net-im/kaccounts-integration/distinfo b/net-im/kaccounts-integration/distinfo index b94e25609dc2..c6ad3c17cb70 100644 --- a/net-im/kaccounts-integration/distinfo +++ b/net-im/kaccounts-integration/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1751381551 -SHA256 (KDE/release-service/25.04.3/kaccounts-integration-25.04.3.tar.xz) = 71a0475a2274fa4e9f332d8903518b26b5d025614f7e79c747a35ba126e2988c -SIZE (KDE/release-service/25.04.3/kaccounts-integration-25.04.3.tar.xz) = 94512 +TIMESTAMP = 1754646457 +SHA256 (KDE/release-service/25.08.0/kaccounts-integration-25.08.0.tar.xz) = 7147947e4a236760ced2e65f9e4b7daffdad3e4e865a142f491a69fbaad5a6ea +SIZE (KDE/release-service/25.08.0/kaccounts-integration-25.08.0.tar.xz) = 95292 diff --git a/net-im/kaccounts-providers/distinfo b/net-im/kaccounts-providers/distinfo index 3a1c1a8a05c0..a20156e1e8ce 100644 --- a/net-im/kaccounts-providers/distinfo +++ b/net-im/kaccounts-providers/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1751381553 -SHA256 (KDE/release-service/25.04.3/kaccounts-providers-25.04.3.tar.xz) = a8d8245157f4b867190671432acf15a0f3f658654992f69ab3b9e0f7666177b3 -SIZE (KDE/release-service/25.04.3/kaccounts-providers-25.04.3.tar.xz) = 68616 +TIMESTAMP = 1754646459 +SHA256 (KDE/release-service/25.08.0/kaccounts-providers-25.08.0.tar.xz) = 3f1434e7381635f2d0e31b7d81099fcd326aebb90fc9e01e513c865c05ed1c47 +SIZE (KDE/release-service/25.08.0/kaccounts-providers-25.08.0.tar.xz) = 68648 diff --git a/net-im/neochat/Makefile b/net-im/neochat/Makefile index 9074f22784ea..a338dcfec889 100644 --- a/net-im/neochat/Makefile +++ b/net-im/neochat/Makefile @@ -1,42 +1,42 @@ PORTNAME= neochat DISTVERSION= ${KDE_APPLICATIONS_VERSION} -PORTREVISION= 1 CATEGORIES= net-im deskutils kde kde-applications MAINTAINER= kde@FreeBSD.org COMMENT= Glossy Matrix IM client based on KDE technologies WWW= https://invent.kde.org/network/neochat LICENSE= GPLv3 LICENSE_FILE= ${WRKSRC}/LICENSES/GPL-3.0-only.txt # Quotient is a static lib, doesn't need to be in RUN_DEPENDS BUILD_DEPENDS= libquotient>=0.9.3:net-im/libquotient \ kquickimageeditor-qt6>=0.2.0:graphics/kquickimageeditor -LIB_DEPENDS= libQCoro6Core.so:devel/qcoro \ +LIB_DEPENDS= libKUnifiedPush.so:devel/kunifiedpush \ + libQCoro6Core.so:devel/qcoro \ libcmark.so:textproc/cmark \ libqt6keychain.so:security/qtkeychain@qt6 \ libdbus-1.so:devel/dbus \ libolm.so:security/olm RUN_DEPENDS= kquickimageeditor-qt6>=0.2.0:graphics/kquickimageeditor USES= cmake compiler:c++20-lang desktop-file-utils gettext kde:6 \ pkgconfig qt:6 tar:xz xorg -USE_QT= base multimedia webview \ +USE_QT= base multimedia speech 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 a0bf5b5c67ec..659f139fc698 100644 --- a/net-im/neochat/distinfo +++ b/net-im/neochat/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1751381556 -SHA256 (KDE/release-service/25.04.3/neochat-25.04.3.tar.xz) = ad44385ffdd78f813443fac8702003ee16d36afeded0bdf02fd4c928c487c53c -SIZE (KDE/release-service/25.04.3/neochat-25.04.3.tar.xz) = 1151680 +TIMESTAMP = 1754646462 +SHA256 (KDE/release-service/25.08.0/neochat-25.08.0.tar.xz) = 960f05a676cbed9a063bf9cdf53f63f4d817f07a0acf52edd40185320d3248e6 +SIZE (KDE/release-service/25.08.0/neochat-25.08.0.tar.xz) = 1203504 diff --git a/net-im/neochat/pkg-plist b/net-im/neochat/pkg-plist index 4dea64462add..25941e204851 100644 --- a/net-im/neochat/pkg-plist +++ b/net-im/neochat/pkg-plist @@ -1,63 +1,65 @@ bin/neochat %%QT_PLUGINDIR%%/kf6/purpose/neochatshareplugin.so share/applications/org.kde.neochat.desktop +share/dbus-1/services/org.kde.neochat.service share/icons/hicolor/scalable/apps/org.kde.neochat.svg share/icons/hicolor/scalable/apps/org.kde.neochat.tray.svg share/knotifications6/neochat.notifyrc share/krunner/dbusplugins/plasma-runner-neochat.desktop share/locale/ar/LC_MESSAGES/neochat.mo share/locale/ast/LC_MESSAGES/neochat.mo share/locale/az/LC_MESSAGES/neochat.mo share/locale/ca/LC_MESSAGES/neochat.mo share/locale/ca@valencia/LC_MESSAGES/neochat.mo share/locale/cs/LC_MESSAGES/neochat.mo share/locale/da/LC_MESSAGES/neochat.mo share/locale/de/LC_MESSAGES/neochat.mo share/locale/el/LC_MESSAGES/neochat.mo share/locale/en_GB/LC_MESSAGES/neochat.mo share/locale/eo/LC_MESSAGES/neochat.mo share/locale/es/LC_MESSAGES/neochat.mo share/locale/eu/LC_MESSAGES/neochat.mo share/locale/fi/LC_MESSAGES/neochat.mo share/locale/fr/LC_MESSAGES/neochat.mo share/locale/gl/LC_MESSAGES/neochat.mo share/locale/he/LC_MESSAGES/neochat.mo share/locale/hi/LC_MESSAGES/neochat.mo share/locale/hu/LC_MESSAGES/neochat.mo share/locale/ia/LC_MESSAGES/neochat.mo share/locale/id/LC_MESSAGES/neochat.mo share/locale/ie/LC_MESSAGES/neochat.mo share/locale/it/LC_MESSAGES/neochat.mo share/locale/ja/LC_MESSAGES/neochat.mo share/locale/ka/LC_MESSAGES/neochat.mo share/locale/ko/LC_MESSAGES/neochat.mo share/locale/lt/LC_MESSAGES/neochat.mo share/locale/lv/LC_MESSAGES/neochat.mo share/locale/nl/LC_MESSAGES/neochat.mo share/locale/nn/LC_MESSAGES/neochat.mo share/locale/pa/LC_MESSAGES/neochat.mo share/locale/pl/LC_MESSAGES/neochat.mo share/locale/pt/LC_MESSAGES/neochat.mo share/locale/pt_BR/LC_MESSAGES/neochat.mo share/locale/ru/LC_MESSAGES/neochat.mo share/locale/sa/LC_MESSAGES/neochat.mo share/locale/sk/LC_MESSAGES/neochat.mo share/locale/sl/LC_MESSAGES/neochat.mo share/locale/sv/LC_MESSAGES/neochat.mo share/locale/ta/LC_MESSAGES/neochat.mo share/locale/tok/LC_MESSAGES/neochat.mo share/locale/tr/LC_MESSAGES/neochat.mo share/locale/uk/LC_MESSAGES/neochat.mo share/locale/zh_CN/LC_MESSAGES/neochat.mo share/locale/zh_TW/LC_MESSAGES/neochat.mo share/man/ca/man1/neochat.1.gz share/man/es/man1/neochat.1.gz share/man/it/man1/neochat.1.gz share/man/man1/neochat.1.gz share/man/nl/man1/neochat.1.gz +share/man/ru/man1/neochat.1.gz share/man/sl/man1/neochat.1.gz share/man/sv/man1/neochat.1.gz share/man/tr/man1/neochat.1.gz share/man/uk/man1/neochat.1.gz share/metainfo/org.kde.neochat.appdata.xml share/qlogging-categories6/neochat.categories diff --git a/net-im/tokodon/distinfo b/net-im/tokodon/distinfo index 8cc531e32a82..e0db4bd8a34d 100644 --- a/net-im/tokodon/distinfo +++ b/net-im/tokodon/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1751381556 -SHA256 (KDE/release-service/25.04.3/tokodon-25.04.3.tar.xz) = 7effbc67ecc2f6c013898b4e391924674f411892e513c7e8f5bde56a545e3317 -SIZE (KDE/release-service/25.04.3/tokodon-25.04.3.tar.xz) = 790856 +TIMESTAMP = 1754646462 +SHA256 (KDE/release-service/25.08.0/tokodon-25.08.0.tar.xz) = 8cf3458f07def1cbcddb3e42707cec1da28034cacef0dbc179a77a2e35c6ae6a +SIZE (KDE/release-service/25.08.0/tokodon-25.08.0.tar.xz) = 813632 diff --git a/net-p2p/ktorrent/distinfo b/net-p2p/ktorrent/distinfo index 35b5224f559c..100929d952f2 100644 --- a/net-p2p/ktorrent/distinfo +++ b/net-p2p/ktorrent/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1751381558 -SHA256 (KDE/release-service/25.04.3/ktorrent-25.04.3.tar.xz) = 00a0262aa30eb53673993288b1ffae7e2f924b69260f87bea762715a5ce0f7e7 -SIZE (KDE/release-service/25.04.3/ktorrent-25.04.3.tar.xz) = 2229616 +TIMESTAMP = 1754646465 +SHA256 (KDE/release-service/25.08.0/ktorrent-25.08.0.tar.xz) = 4d69eb05ebbcbeea5abea2b4561bdaaa9ab323252281386af080013d0d35e35e +SIZE (KDE/release-service/25.08.0/ktorrent-25.08.0.tar.xz) = 2236464 diff --git a/net-p2p/libktorrent/distinfo b/net-p2p/libktorrent/distinfo index a556d3988eab..ae723aa37316 100644 --- a/net-p2p/libktorrent/distinfo +++ b/net-p2p/libktorrent/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1751381561 -SHA256 (KDE/release-service/25.04.3/libktorrent-25.04.3.tar.xz) = 137a6b14bbdd5121c7afca8e6dad0e52ff7dee80a6e5b54638657f13c06873a8 -SIZE (KDE/release-service/25.04.3/libktorrent-25.04.3.tar.xz) = 606316 +TIMESTAMP = 1754646467 +SHA256 (KDE/release-service/25.08.0/libktorrent-25.08.0.tar.xz) = e422bc87e3d14e8643a397f3b4f7d1baa3c0b9d9f6db2086ef43488752ba1657 +SIZE (KDE/release-service/25.08.0/libktorrent-25.08.0.tar.xz) = 607140 diff --git a/net/akonadi-calendar/distinfo b/net/akonadi-calendar/distinfo index 9781a96338fe..e30cb38bd9e1 100644 --- a/net/akonadi-calendar/distinfo +++ b/net/akonadi-calendar/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1751381563 -SHA256 (KDE/release-service/25.04.3/akonadi-calendar-25.04.3.tar.xz) = 9433cec8f629f5dd1aadb7af39d4b62d6047624b1d1be5282eef5e460f486e5c -SIZE (KDE/release-service/25.04.3/akonadi-calendar-25.04.3.tar.xz) = 539576 +TIMESTAMP = 1754646469 +SHA256 (KDE/release-service/25.08.0/akonadi-calendar-25.08.0.tar.xz) = 551d70a0528a1d651a87b61ec288825b1340d527f9d721dd95f8ca8b03f495db +SIZE (KDE/release-service/25.08.0/akonadi-calendar-25.08.0.tar.xz) = 542584 diff --git a/net/akonadi-calendar/pkg-plist b/net/akonadi-calendar/pkg-plist index 34b0fafb83be..f94cb8130e19 100644 --- a/net/akonadi-calendar/pkg-plist +++ b/net/akonadi-calendar/pkg-plist @@ -1,220 +1,231 @@ bin/kalendarac etc/xdg/autostart/org.kde.kalendarac.desktop include/KPim6/AkonadiCalendar/Akonadi/BlockAlarmsAttribute include/KPim6/AkonadiCalendar/Akonadi/CalFilterPartStatusProxyModel include/KPim6/AkonadiCalendar/Akonadi/CalFilterProxyModel include/KPim6/AkonadiCalendar/Akonadi/CalendarBase include/KPim6/AkonadiCalendar/Akonadi/CalendarClipboard include/KPim6/AkonadiCalendar/Akonadi/CalendarUtils include/KPim6/AkonadiCalendar/Akonadi/CollectionCalendar include/KPim6/AkonadiCalendar/Akonadi/ETMCalendar include/KPim6/AkonadiCalendar/Akonadi/FetchJobCalendar include/KPim6/AkonadiCalendar/Akonadi/FreeBusyManager -include/KPim6/AkonadiCalendar/Akonadi/FreeBusyProviderBase include/KPim6/AkonadiCalendar/Akonadi/History include/KPim6/AkonadiCalendar/Akonadi/ICalImporter include/KPim6/AkonadiCalendar/Akonadi/ITIPHandler include/KPim6/AkonadiCalendar/Akonadi/IncidenceChanger include/KPim6/AkonadiCalendar/Akonadi/IncidenceTreeModel include/KPim6/AkonadiCalendar/Akonadi/PublishDialog include/KPim6/AkonadiCalendar/Akonadi/SearchCollectionHelper +include/KPim6/AkonadiCalendar/Akonadi/SelectCollection include/KPim6/AkonadiCalendar/Akonadi/StandardCalendarActionManager include/KPim6/AkonadiCalendar/Akonadi/TodoModel include/KPim6/AkonadiCalendar/Akonadi/TodoPurger include/KPim6/AkonadiCalendar/akonadi-calendar_version.h include/KPim6/AkonadiCalendar/akonadi/akonadi-calendar_export.h include/KPim6/AkonadiCalendar/akonadi/blockalarmsattribute.h include/KPim6/AkonadiCalendar/akonadi/calendarbase.h include/KPim6/AkonadiCalendar/akonadi/calendarclipboard.h include/KPim6/AkonadiCalendar/akonadi/calendarsettings.h include/KPim6/AkonadiCalendar/akonadi/calendarutils.h include/KPim6/AkonadiCalendar/akonadi/calfilterpartstatusproxymodel.h include/KPim6/AkonadiCalendar/akonadi/calfilterproxymodel.h include/KPim6/AkonadiCalendar/akonadi/collectioncalendar.h include/KPim6/AkonadiCalendar/akonadi/etmcalendar.h include/KPim6/AkonadiCalendar/akonadi/fetchjobcalendar.h include/KPim6/AkonadiCalendar/akonadi/freebusymanager.h -include/KPim6/AkonadiCalendar/akonadi/freebusyproviderbase.h include/KPim6/AkonadiCalendar/akonadi/history.h include/KPim6/AkonadiCalendar/akonadi/icalimporter.h include/KPim6/AkonadiCalendar/akonadi/incidencechanger.h include/KPim6/AkonadiCalendar/akonadi/incidencetreemodel.h include/KPim6/AkonadiCalendar/akonadi/itiphandler.h include/KPim6/AkonadiCalendar/akonadi/publishdialog.h include/KPim6/AkonadiCalendar/akonadi/searchcollectionhelper.h +include/KPim6/AkonadiCalendar/akonadi/selectcollection.h include/KPim6/AkonadiCalendar/akonadi/standardcalendaractionmanager.h include/KPim6/AkonadiCalendar/akonadi/todomodel.h include/KPim6/AkonadiCalendar/akonadi/todopurger.h +include/KPim6/AkonadiCalendarCore/Akonadi/FreeBusyProviderBase +include/KPim6/AkonadiCalendarCore/akonadi-calendar-core_version.h +include/KPim6/AkonadiCalendarCore/akonadi/akonadi-calendar-core_export.h +include/KPim6/AkonadiCalendarCore/akonadi/freebusyproviderbase.h lib/cmake/KPim6AkonadiCalendar/KPim6AkonadiCalendarConfig.cmake lib/cmake/KPim6AkonadiCalendar/KPim6AkonadiCalendarConfigVersion.cmake lib/cmake/KPim6AkonadiCalendar/KPim6AkonadiCalendarTargets-%%CMAKE_BUILD_TYPE%%.cmake lib/cmake/KPim6AkonadiCalendar/KPim6AkonadiCalendarTargets.cmake +lib/cmake/KPim6AkonadiCalendarCore/KPim6AkonadiCalendarCoreConfig.cmake +lib/cmake/KPim6AkonadiCalendarCore/KPim6AkonadiCalendarCoreConfigVersion.cmake +lib/cmake/KPim6AkonadiCalendarCore/KPim6AkonadiCalendarCoreTargets-%%CMAKE_BUILD_TYPE%%.cmake +lib/cmake/KPim6AkonadiCalendarCore/KPim6AkonadiCalendarCoreTargets.cmake lib/libKPim6AkonadiCalendar.so lib/libKPim6AkonadiCalendar.so.6 lib/libKPim6AkonadiCalendar.so.%%KDE_APPLICATIONS_SHLIB_VER%% +lib/libKPim6AkonadiCalendarCore.so +lib/libKPim6AkonadiCalendarCore.so.6 +lib/libKPim6AkonadiCalendarCore.so.%%KDE_APPLICATIONS_SHLIB_VER%% %%QT_PLUGINDIR%%/akonadi_serializer_kcalcore.so %%QT_PLUGINDIR%%/kf6/org.kde.kcalendarcore.calendars/libakonadicalendarplugin.so share/akonadi/plugins/serializer/akonadi_serializer_kcalcore.desktop share/dbus-1/services/org.kde.kalendarac.service share/knotifications6/kalendarac.notifyrc share/locale/ar/LC_MESSAGES/kalendarac.mo share/locale/ar/LC_MESSAGES/libakonadi-calendar6-serializer.mo share/locale/ar/LC_MESSAGES/libakonadi-calendar6.mo share/locale/ast/LC_MESSAGES/kalendarac.mo share/locale/ast/LC_MESSAGES/libakonadi-calendar6-serializer.mo share/locale/ast/LC_MESSAGES/libakonadi-calendar6.mo share/locale/az/LC_MESSAGES/kalendarac.mo share/locale/az/LC_MESSAGES/libakonadi-calendar6-serializer.mo share/locale/az/LC_MESSAGES/libakonadi-calendar6.mo share/locale/bg/LC_MESSAGES/kalendarac.mo share/locale/bg/LC_MESSAGES/libakonadi-calendar6-serializer.mo share/locale/bg/LC_MESSAGES/libakonadi-calendar6.mo share/locale/bs/LC_MESSAGES/libakonadi-calendar6-serializer.mo share/locale/bs/LC_MESSAGES/libakonadi-calendar6.mo share/locale/ca/LC_MESSAGES/kalendarac.mo share/locale/ca/LC_MESSAGES/libakonadi-calendar6-serializer.mo share/locale/ca/LC_MESSAGES/libakonadi-calendar6.mo share/locale/ca@valencia/LC_MESSAGES/kalendarac.mo share/locale/ca@valencia/LC_MESSAGES/libakonadi-calendar6-serializer.mo share/locale/ca@valencia/LC_MESSAGES/libakonadi-calendar6.mo share/locale/cs/LC_MESSAGES/kalendarac.mo share/locale/cs/LC_MESSAGES/libakonadi-calendar6-serializer.mo share/locale/cs/LC_MESSAGES/libakonadi-calendar6.mo share/locale/da/LC_MESSAGES/kalendarac.mo share/locale/da/LC_MESSAGES/libakonadi-calendar6-serializer.mo share/locale/da/LC_MESSAGES/libakonadi-calendar6.mo share/locale/de/LC_MESSAGES/kalendarac.mo share/locale/de/LC_MESSAGES/libakonadi-calendar6-serializer.mo share/locale/de/LC_MESSAGES/libakonadi-calendar6.mo share/locale/el/LC_MESSAGES/kalendarac.mo share/locale/el/LC_MESSAGES/libakonadi-calendar6-serializer.mo share/locale/el/LC_MESSAGES/libakonadi-calendar6.mo share/locale/en_GB/LC_MESSAGES/kalendarac.mo share/locale/en_GB/LC_MESSAGES/libakonadi-calendar6-serializer.mo share/locale/en_GB/LC_MESSAGES/libakonadi-calendar6.mo share/locale/eo/LC_MESSAGES/kalendarac.mo share/locale/eo/LC_MESSAGES/libakonadi-calendar6-serializer.mo share/locale/eo/LC_MESSAGES/libakonadi-calendar6.mo share/locale/es/LC_MESSAGES/kalendarac.mo share/locale/es/LC_MESSAGES/libakonadi-calendar6-serializer.mo share/locale/es/LC_MESSAGES/libakonadi-calendar6.mo share/locale/et/LC_MESSAGES/libakonadi-calendar6-serializer.mo share/locale/et/LC_MESSAGES/libakonadi-calendar6.mo share/locale/eu/LC_MESSAGES/kalendarac.mo share/locale/eu/LC_MESSAGES/libakonadi-calendar6-serializer.mo share/locale/eu/LC_MESSAGES/libakonadi-calendar6.mo share/locale/fi/LC_MESSAGES/kalendarac.mo share/locale/fi/LC_MESSAGES/libakonadi-calendar6-serializer.mo share/locale/fi/LC_MESSAGES/libakonadi-calendar6.mo share/locale/fr/LC_MESSAGES/kalendarac.mo share/locale/fr/LC_MESSAGES/libakonadi-calendar6-serializer.mo share/locale/fr/LC_MESSAGES/libakonadi-calendar6.mo share/locale/ga/LC_MESSAGES/libakonadi-calendar6-serializer.mo share/locale/ga/LC_MESSAGES/libakonadi-calendar6.mo share/locale/gl/LC_MESSAGES/kalendarac.mo share/locale/gl/LC_MESSAGES/libakonadi-calendar6-serializer.mo share/locale/gl/LC_MESSAGES/libakonadi-calendar6.mo share/locale/he/LC_MESSAGES/kalendarac.mo share/locale/he/LC_MESSAGES/libakonadi-calendar6-serializer.mo share/locale/he/LC_MESSAGES/libakonadi-calendar6.mo share/locale/hi/LC_MESSAGES/kalendarac.mo share/locale/hi/LC_MESSAGES/libakonadi-calendar6-serializer.mo share/locale/hi/LC_MESSAGES/libakonadi-calendar6.mo share/locale/hu/LC_MESSAGES/kalendarac.mo share/locale/hu/LC_MESSAGES/libakonadi-calendar6-serializer.mo share/locale/hu/LC_MESSAGES/libakonadi-calendar6.mo share/locale/ia/LC_MESSAGES/kalendarac.mo share/locale/ia/LC_MESSAGES/libakonadi-calendar6-serializer.mo share/locale/ia/LC_MESSAGES/libakonadi-calendar6.mo share/locale/id/LC_MESSAGES/kalendarac.mo share/locale/id/LC_MESSAGES/libakonadi-calendar6-serializer.mo share/locale/id/LC_MESSAGES/libakonadi-calendar6.mo share/locale/is/LC_MESSAGES/kalendarac.mo share/locale/is/LC_MESSAGES/libakonadi-calendar6-serializer.mo share/locale/it/LC_MESSAGES/kalendarac.mo share/locale/it/LC_MESSAGES/libakonadi-calendar6-serializer.mo share/locale/it/LC_MESSAGES/libakonadi-calendar6.mo share/locale/ja/LC_MESSAGES/kalendarac.mo share/locale/ja/LC_MESSAGES/libakonadi-calendar6-serializer.mo share/locale/ja/LC_MESSAGES/libakonadi-calendar6.mo share/locale/ka/LC_MESSAGES/kalendarac.mo share/locale/ka/LC_MESSAGES/libakonadi-calendar6-serializer.mo share/locale/ka/LC_MESSAGES/libakonadi-calendar6.mo share/locale/kk/LC_MESSAGES/libakonadi-calendar6-serializer.mo share/locale/kk/LC_MESSAGES/libakonadi-calendar6.mo share/locale/km/LC_MESSAGES/libakonadi-calendar6-serializer.mo share/locale/km/LC_MESSAGES/libakonadi-calendar6.mo share/locale/ko/LC_MESSAGES/kalendarac.mo share/locale/ko/LC_MESSAGES/libakonadi-calendar6-serializer.mo share/locale/ko/LC_MESSAGES/libakonadi-calendar6.mo share/locale/lt/LC_MESSAGES/kalendarac.mo share/locale/lt/LC_MESSAGES/libakonadi-calendar6-serializer.mo share/locale/lt/LC_MESSAGES/libakonadi-calendar6.mo share/locale/lv/LC_MESSAGES/kalendarac.mo share/locale/lv/LC_MESSAGES/libakonadi-calendar6-serializer.mo share/locale/lv/LC_MESSAGES/libakonadi-calendar6.mo share/locale/mai/LC_MESSAGES/libakonadi-calendar6.mo share/locale/mr/LC_MESSAGES/libakonadi-calendar6-serializer.mo share/locale/mr/LC_MESSAGES/libakonadi-calendar6.mo share/locale/nb/LC_MESSAGES/libakonadi-calendar6-serializer.mo share/locale/nb/LC_MESSAGES/libakonadi-calendar6.mo share/locale/nds/LC_MESSAGES/libakonadi-calendar6-serializer.mo share/locale/nds/LC_MESSAGES/libakonadi-calendar6.mo share/locale/nl/LC_MESSAGES/kalendarac.mo share/locale/nl/LC_MESSAGES/libakonadi-calendar6-serializer.mo share/locale/nl/LC_MESSAGES/libakonadi-calendar6.mo share/locale/pa/LC_MESSAGES/libakonadi-calendar6-serializer.mo share/locale/pl/LC_MESSAGES/kalendarac.mo share/locale/pl/LC_MESSAGES/libakonadi-calendar6-serializer.mo share/locale/pl/LC_MESSAGES/libakonadi-calendar6.mo share/locale/pt/LC_MESSAGES/kalendarac.mo share/locale/pt/LC_MESSAGES/libakonadi-calendar6-serializer.mo share/locale/pt/LC_MESSAGES/libakonadi-calendar6.mo share/locale/pt_BR/LC_MESSAGES/kalendarac.mo share/locale/pt_BR/LC_MESSAGES/libakonadi-calendar6-serializer.mo share/locale/pt_BR/LC_MESSAGES/libakonadi-calendar6.mo share/locale/ro/LC_MESSAGES/libakonadi-calendar6-serializer.mo share/locale/ro/LC_MESSAGES/libakonadi-calendar6.mo share/locale/ru/LC_MESSAGES/kalendarac.mo share/locale/ru/LC_MESSAGES/libakonadi-calendar6-serializer.mo share/locale/ru/LC_MESSAGES/libakonadi-calendar6.mo share/locale/sa/LC_MESSAGES/kalendarac.mo share/locale/sa/LC_MESSAGES/libakonadi-calendar6-serializer.mo share/locale/sa/LC_MESSAGES/libakonadi-calendar6.mo share/locale/sk/LC_MESSAGES/kalendarac.mo share/locale/sk/LC_MESSAGES/libakonadi-calendar6-serializer.mo share/locale/sk/LC_MESSAGES/libakonadi-calendar6.mo share/locale/sl/LC_MESSAGES/kalendarac.mo share/locale/sl/LC_MESSAGES/libakonadi-calendar6-serializer.mo share/locale/sl/LC_MESSAGES/libakonadi-calendar6.mo share/locale/sr/LC_MESSAGES/libakonadi-calendar6-serializer.mo share/locale/sr/LC_MESSAGES/libakonadi-calendar6.mo share/locale/sr@ijekavian/LC_MESSAGES/libakonadi-calendar6-serializer.mo share/locale/sr@ijekavian/LC_MESSAGES/libakonadi-calendar6.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/libakonadi-calendar6-serializer.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/libakonadi-calendar6.mo share/locale/sr@latin/LC_MESSAGES/libakonadi-calendar6-serializer.mo share/locale/sr@latin/LC_MESSAGES/libakonadi-calendar6.mo share/locale/sv/LC_MESSAGES/kalendarac.mo share/locale/sv/LC_MESSAGES/libakonadi-calendar6-serializer.mo share/locale/sv/LC_MESSAGES/libakonadi-calendar6.mo share/locale/ta/LC_MESSAGES/kalendarac.mo share/locale/ta/LC_MESSAGES/libakonadi-calendar6-serializer.mo share/locale/ta/LC_MESSAGES/libakonadi-calendar6.mo share/locale/tr/LC_MESSAGES/kalendarac.mo share/locale/tr/LC_MESSAGES/libakonadi-calendar6-serializer.mo share/locale/tr/LC_MESSAGES/libakonadi-calendar6.mo share/locale/ug/LC_MESSAGES/libakonadi-calendar6-serializer.mo share/locale/ug/LC_MESSAGES/libakonadi-calendar6.mo share/locale/uk/LC_MESSAGES/kalendarac.mo share/locale/uk/LC_MESSAGES/libakonadi-calendar6-serializer.mo share/locale/uk/LC_MESSAGES/libakonadi-calendar6.mo share/locale/zh_CN/LC_MESSAGES/kalendarac.mo share/locale/zh_CN/LC_MESSAGES/libakonadi-calendar6-serializer.mo share/locale/zh_CN/LC_MESSAGES/libakonadi-calendar6.mo share/locale/zh_TW/LC_MESSAGES/kalendarac.mo share/locale/zh_TW/LC_MESSAGES/libakonadi-calendar6-serializer.mo share/locale/zh_TW/LC_MESSAGES/libakonadi-calendar6.mo share/qlogging-categories6/akonadi-calendar.categories share/qlogging-categories6/akonadi-calendar.renamecategories share/qlogging-categories6/org_kde_kalendarac.categories diff --git a/net/akonadi-contacts/distinfo b/net/akonadi-contacts/distinfo index 71760896833e..2573836818b9 100644 --- a/net/akonadi-contacts/distinfo +++ b/net/akonadi-contacts/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1751381566 -SHA256 (KDE/release-service/25.04.3/akonadi-contacts-25.04.3.tar.xz) = 6443bb3c86997f42d7fcda559a7a88973ff02eb0f17976d622fbb150b4d85c46 -SIZE (KDE/release-service/25.04.3/akonadi-contacts-25.04.3.tar.xz) = 439380 +TIMESTAMP = 1754646472 +SHA256 (KDE/release-service/25.08.0/akonadi-contacts-25.08.0.tar.xz) = 4c590c72de567e0b6b6755f9e05b78d5f2ff0ebde826540ace384f9d253d8bd3 +SIZE (KDE/release-service/25.08.0/akonadi-contacts-25.08.0.tar.xz) = 445608 diff --git a/net/akonadi-contacts/pkg-plist b/net/akonadi-contacts/pkg-plist index eb3598adc4f0..20b987d53373 100644 --- a/net/akonadi-contacts/pkg-plist +++ b/net/akonadi-contacts/pkg-plist @@ -1,217 +1,219 @@ include/KPim6/AkonadiContactCore/Akonadi/AbstractContactFormatter include/KPim6/AkonadiContactCore/Akonadi/AbstractContactGroupFormatter include/KPim6/AkonadiContactCore/Akonadi/ContactGrantleeWrapper include/KPim6/AkonadiContactCore/Akonadi/ContactGroupExpandJob include/KPim6/AkonadiContactCore/Akonadi/ContactGroupSearchJob include/KPim6/AkonadiContactCore/Akonadi/ContactParts include/KPim6/AkonadiContactCore/Akonadi/ContactSearchJob include/KPim6/AkonadiContactCore/Akonadi/ContactsFilterProxyModel include/KPim6/AkonadiContactCore/Akonadi/ContactsTreeModel include/KPim6/AkonadiContactCore/Akonadi/EmailAddressSelection include/KPim6/AkonadiContactCore/Akonadi/EmailAddressSelectionModel include/KPim6/AkonadiContactCore/Akonadi/GrantleeContactFormatter include/KPim6/AkonadiContactCore/Akonadi/GrantleeContactGroupFormatter include/KPim6/AkonadiContactCore/Akonadi/GrantleePrint include/KPim6/AkonadiContactCore/Akonadi/StandardContactFormatter include/KPim6/AkonadiContactCore/Akonadi/StandardContactGroupFormatter include/KPim6/AkonadiContactCore/akonadi-contact_core_version.h include/KPim6/AkonadiContactCore/akonadi/abstractcontactformatter.h include/KPim6/AkonadiContactCore/akonadi/abstractcontactgroupformatter.h include/KPim6/AkonadiContactCore/akonadi/akonadi-contact-core_export.h include/KPim6/AkonadiContactCore/akonadi/contactgrantleewrapper.h include/KPim6/AkonadiContactCore/akonadi/contactgroupexpandjob.h include/KPim6/AkonadiContactCore/akonadi/contactgroupsearchjob.h include/KPim6/AkonadiContactCore/akonadi/contactparts.h include/KPim6/AkonadiContactCore/akonadi/contactsearchjob.h include/KPim6/AkonadiContactCore/akonadi/contactsfilterproxymodel.h include/KPim6/AkonadiContactCore/akonadi/contactstreemodel.h include/KPim6/AkonadiContactCore/akonadi/emailaddressselection.h include/KPim6/AkonadiContactCore/akonadi/emailaddressselectionmodel.h include/KPim6/AkonadiContactCore/akonadi/grantleecontactformatter.h include/KPim6/AkonadiContactCore/akonadi/grantleecontactgroupformatter.h include/KPim6/AkonadiContactCore/akonadi/grantleeprint.h include/KPim6/AkonadiContactCore/akonadi/standardcontactformatter.h include/KPim6/AkonadiContactCore/akonadi/standardcontactgroupformatter.h include/KPim6/AkonadiContactWidgets/Akonadi/AbstractEmailAddressSelectionDialog include/KPim6/AkonadiContactWidgets/Akonadi/AddContactJob include/KPim6/AkonadiContactWidgets/Akonadi/AddEmailAddressJob include/KPim6/AkonadiContactWidgets/Akonadi/AddEmailDisplayJob include/KPim6/AkonadiContactWidgets/Akonadi/ContactEditor include/KPim6/AkonadiContactWidgets/Akonadi/ContactEditorDialog include/KPim6/AkonadiContactWidgets/Akonadi/ContactEditorPagePlugin include/KPim6/AkonadiContactWidgets/Akonadi/ContactGroupEditor include/KPim6/AkonadiContactWidgets/Akonadi/ContactGroupEditorDialog include/KPim6/AkonadiContactWidgets/Akonadi/ContactGroupViewer include/KPim6/AkonadiContactWidgets/Akonadi/ContactViewer include/KPim6/AkonadiContactWidgets/Akonadi/ContactViewerDialog include/KPim6/AkonadiContactWidgets/Akonadi/EmailAddressRequester include/KPim6/AkonadiContactWidgets/Akonadi/EmailAddressSelectionDialog include/KPim6/AkonadiContactWidgets/Akonadi/EmailAddressSelectionWidget include/KPim6/AkonadiContactWidgets/Akonadi/GrantleeContactViewer include/KPim6/AkonadiContactWidgets/Akonadi/OpenEmailAddressJob include/KPim6/AkonadiContactWidgets/Akonadi/RecipientsEditorManager include/KPim6/AkonadiContactWidgets/Akonadi/RecipientsPickerWidget include/KPim6/AkonadiContactWidgets/Akonadi/SelectAddressBookDialog include/KPim6/AkonadiContactWidgets/Akonadi/StandardContactActionManager include/KPim6/AkonadiContactWidgets/akonadi-contacts-widgets_version.h include/KPim6/AkonadiContactWidgets/akonadi/abstractemailaddressselectiondialog.h include/KPim6/AkonadiContactWidgets/akonadi/addcontactjob.h include/KPim6/AkonadiContactWidgets/akonadi/addemailaddressjob.h include/KPim6/AkonadiContactWidgets/akonadi/addemaildisplayjob.h include/KPim6/AkonadiContactWidgets/akonadi/akonadi-contact-widgets_export.h include/KPim6/AkonadiContactWidgets/akonadi/contacteditor.h include/KPim6/AkonadiContactWidgets/akonadi/contacteditordialog.h include/KPim6/AkonadiContactWidgets/akonadi/contacteditorpageplugin.h include/KPim6/AkonadiContactWidgets/akonadi/contactgroupeditor.h include/KPim6/AkonadiContactWidgets/akonadi/contactgroupeditordialog.h include/KPim6/AkonadiContactWidgets/akonadi/contactgroupviewer.h include/KPim6/AkonadiContactWidgets/akonadi/contactviewer.h include/KPim6/AkonadiContactWidgets/akonadi/contactviewerdialog.h include/KPim6/AkonadiContactWidgets/akonadi/emailaddressrequester.h include/KPim6/AkonadiContactWidgets/akonadi/emailaddressselectiondialog.h include/KPim6/AkonadiContactWidgets/akonadi/emailaddressselectionwidget.h include/KPim6/AkonadiContactWidgets/akonadi/grantleecontactviewer.h include/KPim6/AkonadiContactWidgets/akonadi/openemailaddressjob.h include/KPim6/AkonadiContactWidgets/akonadi/recipientseditormanager.h include/KPim6/AkonadiContactWidgets/akonadi/recipientspickerwidget.h include/KPim6/AkonadiContactWidgets/akonadi/selectaddressbookdialog.h include/KPim6/AkonadiContactWidgets/akonadi/standardcontactactionmanager.h lib/cmake/KPim6AkonadiContactCore/KPim6AkonadiContactCoreConfig.cmake lib/cmake/KPim6AkonadiContactCore/KPim6AkonadiContactCoreConfigVersion.cmake lib/cmake/KPim6AkonadiContactCore/KPim6AkonadiContactCoreTargets-%%CMAKE_BUILD_TYPE%%.cmake lib/cmake/KPim6AkonadiContactCore/KPim6AkonadiContactCoreTargets.cmake lib/cmake/KPim6AkonadiContactWidgets/KPim6AkonadiContactWidgetsConfig.cmake lib/cmake/KPim6AkonadiContactWidgets/KPim6AkonadiContactWidgetsConfigVersion.cmake lib/cmake/KPim6AkonadiContactWidgets/KPim6AkonadiContactWidgetsTargets-%%CMAKE_BUILD_TYPE%%.cmake lib/cmake/KPim6AkonadiContactWidgets/KPim6AkonadiContactWidgetsTargets.cmake lib/libKPim6AkonadiContactCore.so lib/libKPim6AkonadiContactCore.so.6 lib/libKPim6AkonadiContactCore.so.%%KDE_APPLICATIONS_SHLIB_VER%% lib/libKPim6AkonadiContactWidgets.so lib/libKPim6AkonadiContactWidgets.so.6 lib/libKPim6AkonadiContactWidgets.so.%%KDE_APPLICATIONS_SHLIB_VER%% %%QT_PLUGINDIR%%/akonadi_serializer_addressee.so %%QT_PLUGINDIR%%/akonadi_serializer_contactgroup.so share/akonadi/plugins/serializer/akonadi_serializer_addressee.desktop share/akonadi/plugins/serializer/akonadi_serializer_contactgroup.desktop share/kf6/akonadi/contact/data/zone.tab share/kf6/akonadi/contact/pics/world.jpg share/locale/ar/LC_MESSAGES/akonadicontact6-serializer.mo share/locale/ar/LC_MESSAGES/akonadicontact6.mo share/locale/ast/LC_MESSAGES/akonadicontact6-serializer.mo share/locale/ast/LC_MESSAGES/akonadicontact6.mo share/locale/az/LC_MESSAGES/akonadicontact6-serializer.mo share/locale/az/LC_MESSAGES/akonadicontact6.mo share/locale/bg/LC_MESSAGES/akonadicontact6-serializer.mo share/locale/bg/LC_MESSAGES/akonadicontact6.mo share/locale/bs/LC_MESSAGES/akonadicontact6-serializer.mo share/locale/bs/LC_MESSAGES/akonadicontact6.mo share/locale/ca/LC_MESSAGES/akonadicontact6-serializer.mo share/locale/ca/LC_MESSAGES/akonadicontact6.mo share/locale/ca@valencia/LC_MESSAGES/akonadicontact6-serializer.mo share/locale/ca@valencia/LC_MESSAGES/akonadicontact6.mo share/locale/cs/LC_MESSAGES/akonadicontact6-serializer.mo share/locale/cs/LC_MESSAGES/akonadicontact6.mo share/locale/da/LC_MESSAGES/akonadicontact6-serializer.mo share/locale/da/LC_MESSAGES/akonadicontact6.mo share/locale/de/LC_MESSAGES/akonadicontact6-serializer.mo share/locale/de/LC_MESSAGES/akonadicontact6.mo share/locale/el/LC_MESSAGES/akonadicontact6-serializer.mo share/locale/el/LC_MESSAGES/akonadicontact6.mo share/locale/en_GB/LC_MESSAGES/akonadicontact6-serializer.mo share/locale/en_GB/LC_MESSAGES/akonadicontact6.mo share/locale/eo/LC_MESSAGES/akonadicontact6-serializer.mo share/locale/eo/LC_MESSAGES/akonadicontact6.mo share/locale/es/LC_MESSAGES/akonadicontact6-serializer.mo share/locale/es/LC_MESSAGES/akonadicontact6.mo share/locale/et/LC_MESSAGES/akonadicontact6-serializer.mo share/locale/et/LC_MESSAGES/akonadicontact6.mo share/locale/eu/LC_MESSAGES/akonadicontact6-serializer.mo share/locale/eu/LC_MESSAGES/akonadicontact6.mo share/locale/fi/LC_MESSAGES/akonadicontact6-serializer.mo share/locale/fi/LC_MESSAGES/akonadicontact6.mo share/locale/fr/LC_MESSAGES/akonadicontact6-serializer.mo share/locale/fr/LC_MESSAGES/akonadicontact6.mo share/locale/ga/LC_MESSAGES/akonadicontact6-serializer.mo share/locale/ga/LC_MESSAGES/akonadicontact6.mo share/locale/gl/LC_MESSAGES/akonadicontact6-serializer.mo share/locale/gl/LC_MESSAGES/akonadicontact6.mo share/locale/he/LC_MESSAGES/akonadicontact6-serializer.mo share/locale/he/LC_MESSAGES/akonadicontact6.mo share/locale/hi/LC_MESSAGES/akonadicontact6-serializer.mo share/locale/hi/LC_MESSAGES/akonadicontact6.mo share/locale/hr/LC_MESSAGES/akonadicontact6.mo share/locale/hu/LC_MESSAGES/akonadicontact6-serializer.mo share/locale/hu/LC_MESSAGES/akonadicontact6.mo share/locale/ia/LC_MESSAGES/akonadicontact6-serializer.mo share/locale/ia/LC_MESSAGES/akonadicontact6.mo share/locale/id/LC_MESSAGES/akonadicontact6-serializer.mo share/locale/id/LC_MESSAGES/akonadicontact6.mo +share/locale/is/LC_MESSAGES/akonadicontact6-serializer.mo +share/locale/is/LC_MESSAGES/akonadicontact6.mo share/locale/it/LC_MESSAGES/akonadicontact6-serializer.mo share/locale/it/LC_MESSAGES/akonadicontact6.mo share/locale/ja/LC_MESSAGES/akonadicontact6-serializer.mo share/locale/ja/LC_MESSAGES/akonadicontact6.mo share/locale/ka/LC_MESSAGES/akonadicontact6-serializer.mo share/locale/ka/LC_MESSAGES/akonadicontact6.mo share/locale/kk/LC_MESSAGES/akonadicontact6-serializer.mo share/locale/kk/LC_MESSAGES/akonadicontact6.mo share/locale/km/LC_MESSAGES/akonadicontact6-serializer.mo share/locale/km/LC_MESSAGES/akonadicontact6.mo share/locale/ko/LC_MESSAGES/akonadicontact6-serializer.mo share/locale/ko/LC_MESSAGES/akonadicontact6.mo share/locale/lt/LC_MESSAGES/akonadicontact6-serializer.mo share/locale/lt/LC_MESSAGES/akonadicontact6.mo share/locale/lv/LC_MESSAGES/akonadicontact6-serializer.mo share/locale/lv/LC_MESSAGES/akonadicontact6.mo share/locale/mai/LC_MESSAGES/akonadicontact6.mo share/locale/mr/LC_MESSAGES/akonadicontact6-serializer.mo share/locale/mr/LC_MESSAGES/akonadicontact6.mo share/locale/nb/LC_MESSAGES/akonadicontact6-serializer.mo share/locale/nb/LC_MESSAGES/akonadicontact6.mo share/locale/nds/LC_MESSAGES/akonadicontact6-serializer.mo share/locale/nds/LC_MESSAGES/akonadicontact6.mo share/locale/nl/LC_MESSAGES/akonadicontact6-serializer.mo share/locale/nl/LC_MESSAGES/akonadicontact6.mo share/locale/nn/LC_MESSAGES/akonadicontact6.mo share/locale/pa/LC_MESSAGES/akonadicontact6-serializer.mo share/locale/pa/LC_MESSAGES/akonadicontact6.mo share/locale/pl/LC_MESSAGES/akonadicontact6-serializer.mo share/locale/pl/LC_MESSAGES/akonadicontact6.mo share/locale/pt/LC_MESSAGES/akonadicontact6-serializer.mo share/locale/pt/LC_MESSAGES/akonadicontact6.mo share/locale/pt_BR/LC_MESSAGES/akonadicontact6-serializer.mo share/locale/pt_BR/LC_MESSAGES/akonadicontact6.mo share/locale/ro/LC_MESSAGES/akonadicontact6-serializer.mo share/locale/ro/LC_MESSAGES/akonadicontact6.mo share/locale/ru/LC_MESSAGES/akonadicontact6-serializer.mo share/locale/ru/LC_MESSAGES/akonadicontact6.mo share/locale/sa/LC_MESSAGES/akonadicontact6-serializer.mo share/locale/sa/LC_MESSAGES/akonadicontact6.mo share/locale/sk/LC_MESSAGES/akonadicontact6-serializer.mo share/locale/sk/LC_MESSAGES/akonadicontact6.mo share/locale/sl/LC_MESSAGES/akonadicontact6-serializer.mo share/locale/sl/LC_MESSAGES/akonadicontact6.mo share/locale/sr/LC_MESSAGES/akonadicontact6-serializer.mo share/locale/sr/LC_MESSAGES/akonadicontact6.mo share/locale/sr@ijekavian/LC_MESSAGES/akonadicontact6-serializer.mo share/locale/sr@ijekavian/LC_MESSAGES/akonadicontact6.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/akonadicontact6-serializer.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/akonadicontact6.mo share/locale/sr@latin/LC_MESSAGES/akonadicontact6-serializer.mo share/locale/sr@latin/LC_MESSAGES/akonadicontact6.mo share/locale/sv/LC_MESSAGES/akonadicontact6-serializer.mo share/locale/sv/LC_MESSAGES/akonadicontact6.mo share/locale/ta/LC_MESSAGES/akonadicontact6-serializer.mo share/locale/ta/LC_MESSAGES/akonadicontact6.mo share/locale/tr/LC_MESSAGES/akonadicontact6-serializer.mo share/locale/tr/LC_MESSAGES/akonadicontact6.mo share/locale/ug/LC_MESSAGES/akonadicontact6-serializer.mo share/locale/ug/LC_MESSAGES/akonadicontact6.mo share/locale/uk/LC_MESSAGES/akonadicontact6-serializer.mo share/locale/uk/LC_MESSAGES/akonadicontact6.mo share/locale/zh_CN/LC_MESSAGES/akonadicontact6-serializer.mo share/locale/zh_CN/LC_MESSAGES/akonadicontact6.mo share/locale/zh_TW/LC_MESSAGES/akonadicontact6-serializer.mo share/locale/zh_TW/LC_MESSAGES/akonadicontact6.mo share/qlogging-categories6/akonadi-contacts.categories share/qlogging-categories6/akonadi-contacts.renamecategories diff --git a/net/akonadi-mime/distinfo b/net/akonadi-mime/distinfo index eb4563cd7657..3c7875c2c560 100644 --- a/net/akonadi-mime/distinfo +++ b/net/akonadi-mime/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1751381568 -SHA256 (KDE/release-service/25.04.3/akonadi-mime-25.04.3.tar.xz) = 29588a629e6f961ee48b2825c980840311f1207f7ea1d62d454addadf195c6be -SIZE (KDE/release-service/25.04.3/akonadi-mime-25.04.3.tar.xz) = 179772 +TIMESTAMP = 1754646474 +SHA256 (KDE/release-service/25.08.0/akonadi-mime-25.08.0.tar.xz) = f6806cadac6e6a3269b9c31e5ee7aa6b8631af0b9edd48f23d6b2909e5cb25f1 +SIZE (KDE/release-service/25.08.0/akonadi-mime-25.08.0.tar.xz) = 181988 diff --git a/net/akonadi-search/distinfo b/net/akonadi-search/distinfo index c1b359273ef6..940db636123d 100644 --- a/net/akonadi-search/distinfo +++ b/net/akonadi-search/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1751381571 -SHA256 (KDE/release-service/25.04.3/akonadi-search-25.04.3.tar.xz) = 5c4af0b6a58993900618c9e9f1291b3cd12a7097c7a700e00e578a500fcc601a -SIZE (KDE/release-service/25.04.3/akonadi-search-25.04.3.tar.xz) = 113824 +TIMESTAMP = 1754646477 +SHA256 (KDE/release-service/25.08.0/akonadi-search-25.08.0.tar.xz) = f63ee1636f91bcef6d3c836c2b5cc87ec0c183f5d69b3736e80e2c690b9d75c2 +SIZE (KDE/release-service/25.08.0/akonadi-search-25.08.0.tar.xz) = 116080 diff --git a/net/alligator/distinfo b/net/alligator/distinfo index a2d7ccc1e6a3..8a9bed1f9e95 100644 --- a/net/alligator/distinfo +++ b/net/alligator/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1751381571 -SHA256 (KDE/release-service/25.04.3/alligator-25.04.3.tar.xz) = 7d382f407732a61c4980213e2512f997ab51e03819baab1824a3e20f6fbf3d2e -SIZE (KDE/release-service/25.04.3/alligator-25.04.3.tar.xz) = 241152 +TIMESTAMP = 1754646477 +SHA256 (KDE/release-service/25.08.0/alligator-25.08.0.tar.xz) = bb39c244f7e26d06d342515a8e69888fbe7a5ea3b7c224ff1f0a0c2718a32d8c +SIZE (KDE/release-service/25.08.0/alligator-25.08.0.tar.xz) = 241120 diff --git a/net/calendarsupport/distinfo b/net/calendarsupport/distinfo index 28a5b916b2a5..b6de91228087 100644 --- a/net/calendarsupport/distinfo +++ b/net/calendarsupport/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1751381573 -SHA256 (KDE/release-service/25.04.3/calendarsupport-25.04.3.tar.xz) = c3265468eecd4271d1d0276999a16d15971c8ad5de4ebe2f16a95de0d24a5b0d -SIZE (KDE/release-service/25.04.3/calendarsupport-25.04.3.tar.xz) = 1005292 +TIMESTAMP = 1754646479 +SHA256 (KDE/release-service/25.08.0/calendarsupport-25.08.0.tar.xz) = 386ca71663f41e13139e53847cbaf47d2280fe8d29907e8d9989dfec2baab397 +SIZE (KDE/release-service/25.08.0/calendarsupport-25.08.0.tar.xz) = 990712 diff --git a/net/eventviews/distinfo b/net/eventviews/distinfo index bcf7a3dadffa..77347dfd7a0e 100644 --- a/net/eventviews/distinfo +++ b/net/eventviews/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1751381576 -SHA256 (KDE/release-service/25.04.3/eventviews-25.04.3.tar.xz) = 90dd3b6c9915a782c162653e9027335e6e393b13c584cfdb61b4dd31ef4126b8 -SIZE (KDE/release-service/25.04.3/eventviews-25.04.3.tar.xz) = 510692 +TIMESTAMP = 1754646482 +SHA256 (KDE/release-service/25.08.0/eventviews-25.08.0.tar.xz) = 6681dd967b278bb4a930d69f26a042ef97a03dcf98dcec3722f6887df5916fc1 +SIZE (KDE/release-service/25.08.0/eventviews-25.08.0.tar.xz) = 523768 diff --git a/net/incidenceeditor/distinfo b/net/incidenceeditor/distinfo index 73e33b2b4309..2d1dae621f1c 100644 --- a/net/incidenceeditor/distinfo +++ b/net/incidenceeditor/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1751381578 -SHA256 (KDE/release-service/25.04.3/incidenceeditor-25.04.3.tar.xz) = 79624825fe0fced136d1aa7d27a340fbd54cadda7005b0268678c6e0dac6c08c -SIZE (KDE/release-service/25.04.3/incidenceeditor-25.04.3.tar.xz) = 603368 +TIMESTAMP = 1754646484 +SHA256 (KDE/release-service/25.08.0/incidenceeditor-25.08.0.tar.xz) = b2bd46fa8138da29d61810f4e283ff9a436c96e7e87acf52491112486d328b25 +SIZE (KDE/release-service/25.08.0/incidenceeditor-25.08.0.tar.xz) = 606772 diff --git a/net/kcalutils/distinfo b/net/kcalutils/distinfo index bbbffb44022c..39f4e4f3a51a 100644 --- a/net/kcalutils/distinfo +++ b/net/kcalutils/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1751381581 -SHA256 (KDE/release-service/25.04.3/kcalutils-25.04.3.tar.xz) = 3a0e29a35ddbc68b546ac94ff5afc9381c4af4c5f6cc855876ae4a2c5219454d -SIZE (KDE/release-service/25.04.3/kcalutils-25.04.3.tar.xz) = 365508 +TIMESTAMP = 1754646487 +SHA256 (KDE/release-service/25.08.0/kcalutils-25.08.0.tar.xz) = 6db2f66d0ed5817152330aa1e61aba350dbdbcb0ef935597cebafc3f69ac15ca +SIZE (KDE/release-service/25.08.0/kcalutils-25.08.0.tar.xz) = 371240 diff --git a/net/kcalutils/pkg-plist b/net/kcalutils/pkg-plist index 469996539fd4..419d2098790d 100644 --- a/net/kcalutils/pkg-plist +++ b/net/kcalutils/pkg-plist @@ -1,82 +1,83 @@ include/KPim6/KCalUtils/KCalUtils/DndFactory include/KPim6/KCalUtils/KCalUtils/ICalDrag include/KPim6/KCalUtils/KCalUtils/IncidenceFormatter include/KPim6/KCalUtils/KCalUtils/RecurrenceActions include/KPim6/KCalUtils/KCalUtils/Stringify include/KPim6/KCalUtils/KCalUtils/VCalDrag include/KPim6/KCalUtils/kcalutils/dndfactory.h include/KPim6/KCalUtils/kcalutils/icaldrag.h include/KPim6/KCalUtils/kcalutils/incidenceformatter.h include/KPim6/KCalUtils/kcalutils/kcalutils_export.h include/KPim6/KCalUtils/kcalutils/recurrenceactions.h include/KPim6/KCalUtils/kcalutils/stringify.h include/KPim6/KCalUtils/kcalutils/vcaldrag.h include/KPim6/KCalUtils/kcalutils_version.h lib/cmake/KPim6CalendarUtils/KPim6CalendarUtilsConfig.cmake lib/cmake/KPim6CalendarUtils/KPim6CalendarUtilsConfigVersion.cmake lib/cmake/KPim6CalendarUtils/KPim6CalendarUtilsTargets-%%CMAKE_BUILD_TYPE%%.cmake lib/cmake/KPim6CalendarUtils/KPim6CalendarUtilsTargets.cmake lib/libKPim6CalendarUtils.so lib/libKPim6CalendarUtils.so.6 lib/libKPim6CalendarUtils.so.%%KDE_APPLICATIONS_SHLIB_VER%% %%QT_PLUGINDIR%%/kf6/ktexttemplate/kcalendar_grantlee_plugin.so share/locale/ar/LC_MESSAGES/libkcalutils6.mo share/locale/ast/LC_MESSAGES/libkcalutils6.mo share/locale/az/LC_MESSAGES/libkcalutils6.mo share/locale/bg/LC_MESSAGES/libkcalutils6.mo share/locale/bs/LC_MESSAGES/libkcalutils6.mo share/locale/ca/LC_MESSAGES/libkcalutils6.mo share/locale/ca@valencia/LC_MESSAGES/libkcalutils6.mo share/locale/cs/LC_MESSAGES/libkcalutils6.mo share/locale/da/LC_MESSAGES/libkcalutils6.mo share/locale/de/LC_MESSAGES/libkcalutils6.mo share/locale/el/LC_MESSAGES/libkcalutils6.mo share/locale/en_GB/LC_MESSAGES/libkcalutils6.mo share/locale/eo/LC_MESSAGES/libkcalutils6.mo share/locale/es/LC_MESSAGES/libkcalutils6.mo share/locale/et/LC_MESSAGES/libkcalutils6.mo share/locale/eu/LC_MESSAGES/libkcalutils6.mo share/locale/fi/LC_MESSAGES/libkcalutils6.mo share/locale/fr/LC_MESSAGES/libkcalutils6.mo share/locale/ga/LC_MESSAGES/libkcalutils6.mo share/locale/gl/LC_MESSAGES/libkcalutils6.mo +share/locale/he/LC_MESSAGES/libkcalutils6.mo share/locale/hi/LC_MESSAGES/libkcalutils6.mo share/locale/hr/LC_MESSAGES/libkcalutils6.mo share/locale/hu/LC_MESSAGES/libkcalutils6.mo share/locale/ia/LC_MESSAGES/libkcalutils6.mo share/locale/it/LC_MESSAGES/libkcalutils6.mo share/locale/ja/LC_MESSAGES/libkcalutils6.mo share/locale/ka/LC_MESSAGES/libkcalutils6.mo share/locale/kk/LC_MESSAGES/libkcalutils6.mo share/locale/km/LC_MESSAGES/libkcalutils6.mo share/locale/ko/LC_MESSAGES/libkcalutils6.mo share/locale/lt/LC_MESSAGES/libkcalutils6.mo share/locale/mai/LC_MESSAGES/libkcalutils6.mo share/locale/mr/LC_MESSAGES/libkcalutils6.mo share/locale/nb/LC_MESSAGES/libkcalutils6.mo share/locale/nds/LC_MESSAGES/libkcalutils6.mo share/locale/nl/LC_MESSAGES/libkcalutils6.mo share/locale/nn/LC_MESSAGES/libkcalutils6.mo share/locale/pa/LC_MESSAGES/libkcalutils6.mo share/locale/pl/LC_MESSAGES/libkcalutils6.mo share/locale/pt/LC_MESSAGES/libkcalutils6.mo share/locale/pt_BR/LC_MESSAGES/libkcalutils6.mo share/locale/ro/LC_MESSAGES/libkcalutils6.mo share/locale/ru/LC_MESSAGES/libkcalutils6.mo share/locale/sa/LC_MESSAGES/libkcalutils6.mo share/locale/se/LC_MESSAGES/libkcalutils6.mo share/locale/sk/LC_MESSAGES/libkcalutils6.mo share/locale/sl/LC_MESSAGES/libkcalutils6.mo share/locale/sr/LC_MESSAGES/libkcalutils6.mo share/locale/sr@ijekavian/LC_MESSAGES/libkcalutils6.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/libkcalutils6.mo share/locale/sr@latin/LC_MESSAGES/libkcalutils6.mo share/locale/sv/LC_MESSAGES/libkcalutils6.mo share/locale/ta/LC_MESSAGES/libkcalutils6.mo share/locale/tr/LC_MESSAGES/libkcalutils6.mo share/locale/ug/LC_MESSAGES/libkcalutils6.mo share/locale/uk/LC_MESSAGES/libkcalutils6.mo share/locale/zh_CN/LC_MESSAGES/libkcalutils6.mo share/locale/zh_TW/LC_MESSAGES/libkcalutils6.mo share/qlogging-categories6/kcalutils.categories share/qlogging-categories6/kcalutils.renamecategories diff --git a/net/kdenetwork-filesharing/Makefile b/net/kdenetwork-filesharing/Makefile index ed9547caf530..c490368124e6 100644 --- a/net/kdenetwork-filesharing/Makefile +++ b/net/kdenetwork-filesharing/Makefile @@ -1,27 +1,26 @@ PORTNAME= kdenetwork-filesharing DISTVERSION= ${KDE_APPLICATIONS_VERSION} -PORTREVISION= 1 CATEGORIES= net kde kde-applications MAINTAINER= kde@FreeBSD.org COMMENT= KDE Filesharing via Samba BUILD_DEPENDS= ${LOCALBASE}/include/qcoro6/qcoro/qcoro.h:devel/qcoro USES= cmake compiler:c++11-lang gettext-tools kde:6 qt:6 tar:xz xorg USE_KDE= auth completion config coreaddons doctools i18n jobwidgets kio \ service solid widgetsaddons windowsystem \ ecm:build USE_QT= base USE_XORG= x11 OPTIONS_DEFINE= DOCS .include .if ${ARCH:Mpowerpc*} && ${OSVERSION} < 1400092 CXX= clang++${LLVM_VERSION} USES+= llvm:min=16 .endif .include diff --git a/net/kdenetwork-filesharing/distinfo b/net/kdenetwork-filesharing/distinfo index d50a2353f3b5..0c0e77d83e31 100644 --- a/net/kdenetwork-filesharing/distinfo +++ b/net/kdenetwork-filesharing/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1751381583 -SHA256 (KDE/release-service/25.04.3/kdenetwork-filesharing-25.04.3.tar.xz) = 9f2c05f396c3cd8f48a596d9a97312e88a13d7679a41fe71e0a27c79efcc1a30 -SIZE (KDE/release-service/25.04.3/kdenetwork-filesharing-25.04.3.tar.xz) = 509860 +TIMESTAMP = 1754646489 +SHA256 (KDE/release-service/25.08.0/kdenetwork-filesharing-25.08.0.tar.xz) = 8609f1aaf957db01c1352e5bfa2898770c2b08b0a52d739308713b09c8743e68 +SIZE (KDE/release-service/25.08.0/kdenetwork-filesharing-25.08.0.tar.xz) = 510332 diff --git a/net/kget/Makefile b/net/kget/Makefile index 4130bd76c34b..acca55b82a74 100644 --- a/net/kget/Makefile +++ b/net/kget/Makefile @@ -1,48 +1,44 @@ PORTNAME= kget DISTVERSION= ${KDE_APPLICATIONS_VERSION} CATEGORIES= net kde kde-applications -PATCH_SITES= https://invent.kde.org/network/kget/-/commit/ -PATCHFILES+= 6254c0cefa17fe82f44842bc21f5e5c241f66aec.patch:-p1 # Prep for Qgpgme 2.0.0 -PATCHFILES+= a9aa30e58ca3281285a3ba64d1da6c22fe0ab31a.patch:-p1 # Prep for Qgpgme 2.0.0 - MAINTAINER= kde@FreeBSD.org COMMENT= KDE download manager BUILD_DEPENDS= ${LOCALBASE}/include/boost/concept_check.hpp:devel/boost-libs LIB_DEPENDS= libKTorrent6.so:net-p2p/libktorrent \ libassuan.so:security/libassuan \ libgcrypt.so:security/libgcrypt \ libgmp.so:math/gmp \ libgpg-error.so:security/libgpg-error \ libgpgme.so:security/gpgme \ libgpgmepp.so:security/gpgmepp \ libqca-qt6.so:devel/qca@qt6 \ libqgpgmeqt6.so:security/qgpgme@qt6 USES= cmake compiler:c++11-lang desktop-file-utils gettext kde:6 \ qt:6 shebangfix sqlite tar:xz xorg USE_KDE= archive auth bookmarks codecs completion config configwidgets \ coreaddons crash dbusaddons guiaddons i18n iconthemes \ itemmodels itemviews jobwidgets kcmutils kio notifications \ notifyconfig parts service solid sonnet statusnotifieritem \ textwidgets unitconversion wallet widgetsaddons windowsystem \ xmlgui \ ecm:build USE_QT= base USE_XORG= x11 USE_LDCONFIG= yes MAKE_ENV= XDG_CONFIG_HOME=/dev/null CONFIGURE_ENV= XDG_CONFIG_HOME=/dev/null CONFLICTS_INSTALL= sra-tools # bin/kget OPTIONS_DEFINE= DOCS WORKSPACE OPTIONS_DEFAULT= WORKSPACE WORKSPACE_USE= KDE=plasma-workspace WORKSPACE_DESC= Shutdown on completion support WORKSPACE_CMAKE_BOOL_OFF= CMAKE_DISABLE_FIND_PACKAGE_LibKWorkspace .include diff --git a/net/kget/distinfo b/net/kget/distinfo index 9a787e037af6..9b1ada823f85 100644 --- a/net/kget/distinfo +++ b/net/kget/distinfo @@ -1,7 +1,3 @@ -TIMESTAMP = 1751381586 -SHA256 (KDE/release-service/25.04.3/kget-25.04.3.tar.xz) = 4b74aaecfd730208488f480bc75f977e8b489cc1fe5737627f26c486e2909544 -SIZE (KDE/release-service/25.04.3/kget-25.04.3.tar.xz) = 4853416 -SHA256 (KDE/release-service/25.04.3/6254c0cefa17fe82f44842bc21f5e5c241f66aec.patch) = 76dc24ccdc5c62024165aa00967480bc0640714bca00b86bf634b4b375cdb610 -SIZE (KDE/release-service/25.04.3/6254c0cefa17fe82f44842bc21f5e5c241f66aec.patch) = 1221 -SHA256 (KDE/release-service/25.04.3/a9aa30e58ca3281285a3ba64d1da6c22fe0ab31a.patch) = 186b2bc25e6fbfe5eb86c8b0c13a518539f94232726dc262cfbc81479149fa74 -SIZE (KDE/release-service/25.04.3/a9aa30e58ca3281285a3ba64d1da6c22fe0ab31a.patch) = 1483 +TIMESTAMP = 1754646491 +SHA256 (KDE/release-service/25.08.0/kget-25.08.0.tar.xz) = 153e2fc21af6188f2f2b0b9763496192966d1694382f536625e1c820779e4a2c +SIZE (KDE/release-service/25.08.0/kget-25.08.0.tar.xz) = 4854212 diff --git a/net/kidentitymanagement/distinfo b/net/kidentitymanagement/distinfo index bd62b7d01a26..0654c8eac48f 100644 --- a/net/kidentitymanagement/distinfo +++ b/net/kidentitymanagement/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1751381589 -SHA256 (KDE/release-service/25.04.3/kidentitymanagement-25.04.3.tar.xz) = 13a022e5ea845b4b65982c533d705888282805e0ce44517eccd6e24b8d5e3e7f -SIZE (KDE/release-service/25.04.3/kidentitymanagement-25.04.3.tar.xz) = 198068 +TIMESTAMP = 1754646494 +SHA256 (KDE/release-service/25.08.0/kidentitymanagement-25.08.0.tar.xz) = b8c655e7687a88f55b9da08e7a4c5af137471430669d2ed06b8d197145f69f8e +SIZE (KDE/release-service/25.08.0/kidentitymanagement-25.08.0.tar.xz) = 200644 diff --git a/net/kimap/distinfo b/net/kimap/distinfo index f4d53a0301eb..a1b22daf6d54 100644 --- a/net/kimap/distinfo +++ b/net/kimap/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1751381591 -SHA256 (KDE/release-service/25.04.3/kimap-25.04.3.tar.xz) = 2adc1a8928d0705f31afd6050dc2840690ae0b6250f55b1bc952579f440331ee -SIZE (KDE/release-service/25.04.3/kimap-25.04.3.tar.xz) = 133928 +TIMESTAMP = 1754646496 +SHA256 (KDE/release-service/25.08.0/kimap-25.08.0.tar.xz) = 480e8aabfc11d65ca3be8abd714b848a847f99b7805e7b6ab21dd56a2f0a2379 +SIZE (KDE/release-service/25.08.0/kimap-25.08.0.tar.xz) = 136200 diff --git a/net/kio-gdrive/distinfo b/net/kio-gdrive/distinfo index 1faa08e68ed5..0f4d36bcd3b7 100644 --- a/net/kio-gdrive/distinfo +++ b/net/kio-gdrive/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1751381591 -SHA256 (KDE/release-service/25.04.3/kio-gdrive-25.04.3.tar.xz) = a927c8e98907e6e83e0d6761b26cdd5c25ce48605fcc3a5cbc2c1a8b3bfa1b22 -SIZE (KDE/release-service/25.04.3/kio-gdrive-25.04.3.tar.xz) = 82416 +TIMESTAMP = 1754646497 +SHA256 (KDE/release-service/25.08.0/kio-gdrive-25.08.0.tar.xz) = 8ddc32d39f79bbb607a6d134ac5aa1e08627fee7523339d2dc9eee2b81e5a7d4 +SIZE (KDE/release-service/25.08.0/kio-gdrive-25.08.0.tar.xz) = 83092 diff --git a/net/kio-gdrive/pkg-plist b/net/kio-gdrive/pkg-plist index e98584b5ca57..f4fff5d7222a 100644 --- a/net/kio-gdrive/pkg-plist +++ b/net/kio-gdrive/pkg-plist @@ -1,55 +1,56 @@ %%QT_PLUGINDIR%%/kaccounts/daemonplugins/gdrive.so %%QT_PLUGINDIR%%/kf6/kfileitemaction/gdrivecontextmenuaction.so %%QT_PLUGINDIR%%/kf6/kio/gdrive.so %%QT_PLUGINDIR%%/kf6/propertiesdialog/gdrivepropertiesplugin.so %%QT_PLUGINDIR%%/kf6/purpose/purpose_gdrive.so share/accounts/services/kde/google-drive.service share/knotifications6/gdrive.notifyrc share/locale/ar/LC_MESSAGES/kio6_gdrive.mo share/locale/az/LC_MESSAGES/kio6_gdrive.mo share/locale/be/LC_MESSAGES/kio6_gdrive.mo share/locale/ca/LC_MESSAGES/kio6_gdrive.mo share/locale/ca@valencia/LC_MESSAGES/kio6_gdrive.mo share/locale/cs/LC_MESSAGES/kio6_gdrive.mo share/locale/da/LC_MESSAGES/kio6_gdrive.mo share/locale/de/LC_MESSAGES/kio6_gdrive.mo share/locale/el/LC_MESSAGES/kio6_gdrive.mo share/locale/en_GB/LC_MESSAGES/kio6_gdrive.mo share/locale/eo/LC_MESSAGES/kio6_gdrive.mo share/locale/es/LC_MESSAGES/kio6_gdrive.mo share/locale/et/LC_MESSAGES/kio6_gdrive.mo share/locale/eu/LC_MESSAGES/kio6_gdrive.mo share/locale/fi/LC_MESSAGES/kio6_gdrive.mo share/locale/fr/LC_MESSAGES/kio6_gdrive.mo share/locale/gl/LC_MESSAGES/kio6_gdrive.mo share/locale/he/LC_MESSAGES/kio6_gdrive.mo share/locale/hi/LC_MESSAGES/kio6_gdrive.mo share/locale/hu/LC_MESSAGES/kio6_gdrive.mo share/locale/ia/LC_MESSAGES/kio6_gdrive.mo share/locale/id/LC_MESSAGES/kio6_gdrive.mo share/locale/ie/LC_MESSAGES/kio6_gdrive.mo +share/locale/is/LC_MESSAGES/kio6_gdrive.mo share/locale/it/LC_MESSAGES/kio6_gdrive.mo share/locale/ja/LC_MESSAGES/kio6_gdrive.mo share/locale/ka/LC_MESSAGES/kio6_gdrive.mo share/locale/ko/LC_MESSAGES/kio6_gdrive.mo share/locale/lt/LC_MESSAGES/kio6_gdrive.mo share/locale/lv/LC_MESSAGES/kio6_gdrive.mo share/locale/nl/LC_MESSAGES/kio6_gdrive.mo share/locale/nn/LC_MESSAGES/kio6_gdrive.mo share/locale/pl/LC_MESSAGES/kio6_gdrive.mo share/locale/pt/LC_MESSAGES/kio6_gdrive.mo share/locale/pt_BR/LC_MESSAGES/kio6_gdrive.mo share/locale/ro/LC_MESSAGES/kio6_gdrive.mo share/locale/ru/LC_MESSAGES/kio6_gdrive.mo share/locale/sa/LC_MESSAGES/kio6_gdrive.mo share/locale/sk/LC_MESSAGES/kio6_gdrive.mo share/locale/sl/LC_MESSAGES/kio6_gdrive.mo share/locale/sv/LC_MESSAGES/kio6_gdrive.mo share/locale/ta/LC_MESSAGES/kio6_gdrive.mo share/locale/tr/LC_MESSAGES/kio6_gdrive.mo share/locale/uk/LC_MESSAGES/kio6_gdrive.mo share/locale/zh_CN/LC_MESSAGES/kio6_gdrive.mo share/locale/zh_TW/LC_MESSAGES/kio6_gdrive.mo share/metainfo/org.kde.kio_gdrive.metainfo.xml share/purpose/purpose_gdrive_config.qml share/remoteview/gdrive-network.desktop diff --git a/net/kio-zeroconf/distinfo b/net/kio-zeroconf/distinfo index 00716b3d823b..90ac0c405a14 100644 --- a/net/kio-zeroconf/distinfo +++ b/net/kio-zeroconf/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1751381594 -SHA256 (KDE/release-service/25.04.3/kio-zeroconf-25.04.3.tar.xz) = d651046859c84bc3591a2d88dafad0e47ad6489e25655aee23c1cf41667feac5 -SIZE (KDE/release-service/25.04.3/kio-zeroconf-25.04.3.tar.xz) = 44968 +TIMESTAMP = 1754646499 +SHA256 (KDE/release-service/25.08.0/kio-zeroconf-25.08.0.tar.xz) = 23590d1773a80bf6156aebb1f9680a122df4edac14877c2b9697b4c3aad913b0 +SIZE (KDE/release-service/25.08.0/kio-zeroconf-25.08.0.tar.xz) = 44928 diff --git a/net/kitinerary/distinfo b/net/kitinerary/distinfo index 5012f22647c0..172abf4388be 100644 --- a/net/kitinerary/distinfo +++ b/net/kitinerary/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1751381596 -SHA256 (KDE/release-service/25.04.3/kitinerary-25.04.3.tar.xz) = ca93a086feccf0f36d4ca56a9f5ccf51943d7e1945b392daf211e42f128139d4 -SIZE (KDE/release-service/25.04.3/kitinerary-25.04.3.tar.xz) = 2076496 +TIMESTAMP = 1754646501 +SHA256 (KDE/release-service/25.08.0/kitinerary-25.08.0.tar.xz) = 635530c31d67fc35f5f5bcdf43f06d896e47b423d02df6546ef3c5fea1d212c6 +SIZE (KDE/release-service/25.08.0/kitinerary-25.08.0.tar.xz) = 2120520 diff --git a/net/kldap/distinfo b/net/kldap/distinfo index 9f5da8cbb097..5fa93eef49e3 100644 --- a/net/kldap/distinfo +++ b/net/kldap/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1751381599 -SHA256 (KDE/release-service/25.04.3/kldap-25.04.3.tar.xz) = f08f4a72efe1bcd197b3e63323aa4fa7a09272d408b8a07db4b61c4792e20b7f -SIZE (KDE/release-service/25.04.3/kldap-25.04.3.tar.xz) = 191648 +TIMESTAMP = 1754646504 +SHA256 (KDE/release-service/25.08.0/kldap-25.08.0.tar.xz) = 10f9f491c50121936bb05b616fc1df12628b0703c650c6ed7c2c73185a4b54b4 +SIZE (KDE/release-service/25.08.0/kldap-25.08.0.tar.xz) = 193784 diff --git a/net/kmailtransport/distinfo b/net/kmailtransport/distinfo index 14bc4d1a6bda..3c569ace8548 100644 --- a/net/kmailtransport/distinfo +++ b/net/kmailtransport/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1751381602 -SHA256 (KDE/release-service/25.04.3/kmailtransport-25.04.3.tar.xz) = 364e4e7068be53efb994539a273dcc0e17a45d60a63164307a45cdb3e2df5879 -SIZE (KDE/release-service/25.04.3/kmailtransport-25.04.3.tar.xz) = 191712 +TIMESTAMP = 1754646506 +SHA256 (KDE/release-service/25.08.0/kmailtransport-25.08.0.tar.xz) = 2093a9e764b0d54d4fc0645433ba9fc5e3a2bf36c89e7d232b8d370bfb56ccb6 +SIZE (KDE/release-service/25.08.0/kmailtransport-25.08.0.tar.xz) = 194148 diff --git a/net/kmbox/distinfo b/net/kmbox/distinfo index ac260a547141..614645d614a9 100644 --- a/net/kmbox/distinfo +++ b/net/kmbox/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1751381604 -SHA256 (KDE/release-service/25.04.3/kmbox-25.04.3.tar.xz) = 8f604bdc87587b3bc4d944ad82c17587c8db1930d6435fdbc4e5f8fb17f6727e -SIZE (KDE/release-service/25.04.3/kmbox-25.04.3.tar.xz) = 29236 +TIMESTAMP = 1754646509 +SHA256 (KDE/release-service/25.08.0/kmbox-25.08.0.tar.xz) = d290145bc7cd1146eb10b8d395848bfcda51e7b5dbd95f0337681aa6ab6c4ad0 +SIZE (KDE/release-service/25.08.0/kmbox-25.08.0.tar.xz) = 31600 diff --git a/net/kmime/distinfo b/net/kmime/distinfo index 0c43b08d5630..accb831cca16 100644 --- a/net/kmime/distinfo +++ b/net/kmime/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1751381607 -SHA256 (KDE/release-service/25.04.3/kmime-25.04.3.tar.xz) = 23ece71d839261024b861ca4b956ea0787ee59db883d17bea83236aaf8bda1ea -SIZE (KDE/release-service/25.04.3/kmime-25.04.3.tar.xz) = 164760 +TIMESTAMP = 1754646511 +SHA256 (KDE/release-service/25.08.0/kmime-25.08.0.tar.xz) = 846e6ecd519d99a282f5079c9c153fbbc3d9e6f8698e5a9b31f8dccfe988d1f3 +SIZE (KDE/release-service/25.08.0/kmime-25.08.0.tar.xz) = 163240 diff --git a/net/kontactinterface/distinfo b/net/kontactinterface/distinfo index 743a5a9e90ea..16d06ee40d43 100644 --- a/net/kontactinterface/distinfo +++ b/net/kontactinterface/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1751381609 -SHA256 (KDE/release-service/25.04.3/kontactinterface-25.04.3.tar.xz) = 5a7ab4c18f3c753782b5d3b9ac63213651f4268ffb698b0c6206cff323614131 -SIZE (KDE/release-service/25.04.3/kontactinterface-25.04.3.tar.xz) = 41024 +TIMESTAMP = 1754646513 +SHA256 (KDE/release-service/25.08.0/kontactinterface-25.08.0.tar.xz) = bee3a6e38a36190d494581bddc9fff9441e43c31e3c99a9bb9b9bcad6ffbca47 +SIZE (KDE/release-service/25.08.0/kontactinterface-25.08.0.tar.xz) = 43176 diff --git a/net/kpimtextedit/distinfo b/net/kpimtextedit/distinfo index 0546085a70fa..3c83bc09ca52 100644 --- a/net/kpimtextedit/distinfo +++ b/net/kpimtextedit/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1751381612 -SHA256 (KDE/release-service/25.04.3/kpimtextedit-25.04.3.tar.xz) = 4a107ca02a4535fdc08f7b65886cc99cdf9da642a67363bcbab4cba338bc6c32 -SIZE (KDE/release-service/25.04.3/kpimtextedit-25.04.3.tar.xz) = 181200 +TIMESTAMP = 1754646516 +SHA256 (KDE/release-service/25.08.0/kpimtextedit-25.08.0.tar.xz) = 9dc08e3251b371cb6c1b8980d2dc0cbc0dab9fc115d0844894bf8dbd0f4d1437 +SIZE (KDE/release-service/25.08.0/kpimtextedit-25.08.0.tar.xz) = 183516 diff --git a/net/krdc/distinfo b/net/krdc/distinfo index e46d8229284e..519bf1134e73 100644 --- a/net/krdc/distinfo +++ b/net/krdc/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1751381614 -SHA256 (KDE/release-service/25.04.3/krdc-25.04.3.tar.xz) = 4fbf23713ce25f465db13dae2b95ad246945cb2ae5126e17a10bb52c61834eca -SIZE (KDE/release-service/25.04.3/krdc-25.04.3.tar.xz) = 1590088 +TIMESTAMP = 1754646518 +SHA256 (KDE/release-service/25.08.0/krdc-25.08.0.tar.xz) = 27b50fa82f665cf8ec5f1f3573df3ceb14fe0602e30288f1b4f8a9407eb2d6ec +SIZE (KDE/release-service/25.08.0/krdc-25.08.0.tar.xz) = 1598520 diff --git a/net/krdc/pkg-plist b/net/krdc/pkg-plist index d33e28f23b6b..9ca5c1f5ebda 100644 --- a/net/krdc/pkg-plist +++ b/net/krdc/pkg-plist @@ -1,95 +1,96 @@ bin/krdc include/krdc/hostpreferences.h include/krdc/remoteview.h include/krdc/remoteviewfactory.h include/krdccore_export.h lib/libkrdccore.so lib/libkrdccore.so.%%KDE_APPLICATIONS_VERSION%% lib/libkrdccore.so.5 %%FREERDP%%%%QT_PLUGINDIR%%/krdc/kcms/libkcm_krdc_rdpplugin.so %%QT_PLUGINDIR%%/krdc/kcms/libkcm_krdc_vncplugin.so %%QT_PLUGINDIR%%/krdc/krdc_testplugin.so %%QT_PLUGINDIR%%/krdc/krdc_vncplugin.so %%FREERDP%%%%QT_PLUGINDIR%%/krdc/krdc_rdpplugin.so share/applications/org.kde.krdc.desktop share/config.kcfg/krdc.kcfg share/icons/hicolor/scalable/apps/krdc.svg share/locale/af/LC_MESSAGES/krdc.mo share/locale/ar/LC_MESSAGES/krdc.mo +share/locale/az/LC_MESSAGES/krdc.mo share/locale/be/LC_MESSAGES/krdc.mo share/locale/bg/LC_MESSAGES/krdc.mo share/locale/br/LC_MESSAGES/krdc.mo share/locale/bs/LC_MESSAGES/krdc.mo share/locale/ca/LC_MESSAGES/krdc.mo share/locale/ca@valencia/LC_MESSAGES/krdc.mo share/locale/cs/LC_MESSAGES/krdc.mo share/locale/cy/LC_MESSAGES/krdc.mo share/locale/da/LC_MESSAGES/krdc.mo share/locale/de/LC_MESSAGES/krdc.mo share/locale/el/LC_MESSAGES/krdc.mo share/locale/en_GB/LC_MESSAGES/krdc.mo share/locale/eo/LC_MESSAGES/krdc.mo share/locale/es/LC_MESSAGES/krdc.mo share/locale/et/LC_MESSAGES/krdc.mo share/locale/eu/LC_MESSAGES/krdc.mo share/locale/fa/LC_MESSAGES/krdc.mo share/locale/fi/LC_MESSAGES/krdc.mo share/locale/fr/LC_MESSAGES/krdc.mo share/locale/ga/LC_MESSAGES/krdc.mo share/locale/gl/LC_MESSAGES/krdc.mo share/locale/he/LC_MESSAGES/krdc.mo share/locale/hi/LC_MESSAGES/krdc.mo share/locale/hne/LC_MESSAGES/krdc.mo share/locale/hr/LC_MESSAGES/krdc.mo share/locale/hsb/LC_MESSAGES/krdc.mo share/locale/hu/LC_MESSAGES/krdc.mo share/locale/ia/LC_MESSAGES/krdc.mo share/locale/is/LC_MESSAGES/krdc.mo share/locale/it/LC_MESSAGES/krdc.mo share/locale/ja/LC_MESSAGES/krdc.mo share/locale/ka/LC_MESSAGES/krdc.mo share/locale/kk/LC_MESSAGES/krdc.mo share/locale/km/LC_MESSAGES/krdc.mo share/locale/ko/LC_MESSAGES/krdc.mo share/locale/lt/LC_MESSAGES/krdc.mo share/locale/lv/LC_MESSAGES/krdc.mo share/locale/mai/LC_MESSAGES/krdc.mo share/locale/mk/LC_MESSAGES/krdc.mo share/locale/mr/LC_MESSAGES/krdc.mo share/locale/ms/LC_MESSAGES/krdc.mo share/locale/nb/LC_MESSAGES/krdc.mo share/locale/nds/LC_MESSAGES/krdc.mo share/locale/ne/LC_MESSAGES/krdc.mo share/locale/nl/LC_MESSAGES/krdc.mo share/locale/nn/LC_MESSAGES/krdc.mo share/locale/oc/LC_MESSAGES/krdc.mo share/locale/pa/LC_MESSAGES/krdc.mo share/locale/pl/LC_MESSAGES/krdc.mo share/locale/pt/LC_MESSAGES/krdc.mo share/locale/pt_BR/LC_MESSAGES/krdc.mo share/locale/ro/LC_MESSAGES/krdc.mo share/locale/ru/LC_MESSAGES/krdc.mo share/locale/sa/LC_MESSAGES/krdc.mo share/locale/se/LC_MESSAGES/krdc.mo share/locale/sk/LC_MESSAGES/krdc.mo share/locale/sl/LC_MESSAGES/krdc.mo share/locale/sq/LC_MESSAGES/krdc.mo share/locale/sr/LC_MESSAGES/krdc.mo share/locale/sr@ijekavian/LC_MESSAGES/krdc.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/krdc.mo share/locale/sr@latin/LC_MESSAGES/krdc.mo share/locale/sv/LC_MESSAGES/krdc.mo share/locale/ta/LC_MESSAGES/krdc.mo share/locale/tg/LC_MESSAGES/krdc.mo share/locale/th/LC_MESSAGES/krdc.mo share/locale/tr/LC_MESSAGES/krdc.mo share/locale/ug/LC_MESSAGES/krdc.mo share/locale/uk/LC_MESSAGES/krdc.mo share/locale/vi/LC_MESSAGES/krdc.mo share/locale/xh/LC_MESSAGES/krdc.mo share/locale/zh_CN/LC_MESSAGES/krdc.mo share/locale/zh_HK/LC_MESSAGES/krdc.mo share/locale/zh_TW/LC_MESSAGES/krdc.mo share/metainfo/org.kde.krdc.appdata.xml share/mime/packages/org.kde.krdc-mime.xml share/qlogging-categories6/krdc.categories diff --git a/net/krfb/distinfo b/net/krfb/distinfo index b6f3a2725279..f5133670a94d 100644 --- a/net/krfb/distinfo +++ b/net/krfb/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1751381616 -SHA256 (KDE/release-service/25.04.3/krfb-25.04.3.tar.xz) = f6db99cf945a2073336ed6dd8dd03101a815742a0cecc560a357fe39b3760707 -SIZE (KDE/release-service/25.04.3/krfb-25.04.3.tar.xz) = 1220888 +TIMESTAMP = 1754646521 +SHA256 (KDE/release-service/25.08.0/krfb-25.08.0.tar.xz) = f353c6603046fe97fd0808497d47a3eb18bbd7811e43d08c965414214496845a +SIZE (KDE/release-service/25.08.0/krfb-25.08.0.tar.xz) = 1220716 diff --git a/net/ksmtp/distinfo b/net/ksmtp/distinfo index 9c3bf074167c..612a4b68c9c6 100644 --- a/net/ksmtp/distinfo +++ b/net/ksmtp/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1751381619 -SHA256 (KDE/release-service/25.04.3/ksmtp-25.04.3.tar.xz) = 18944f9804328c09cc82b1c30f9d7c5812555c45c44199bb9caa37dbd83f4c86 -SIZE (KDE/release-service/25.04.3/ksmtp-25.04.3.tar.xz) = 53208 +TIMESTAMP = 1754646523 +SHA256 (KDE/release-service/25.08.0/ksmtp-25.08.0.tar.xz) = 8f265a059e0d7a37bff3419474022f0a3ca952b2189eb5f3acfb45dcaf33cad2 +SIZE (KDE/release-service/25.08.0/ksmtp-25.08.0.tar.xz) = 55424 diff --git a/net/ktnef/distinfo b/net/ktnef/distinfo index 9e0d2cf6b664..4f67d64eb800 100644 --- a/net/ktnef/distinfo +++ b/net/ktnef/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1751381621 -SHA256 (KDE/release-service/25.04.3/ktnef-25.04.3.tar.xz) = 5119f03d17cc1f567c0d429af6506335a1e8c0bd43b539b1b6444ecc3bd6b36a -SIZE (KDE/release-service/25.04.3/ktnef-25.04.3.tar.xz) = 314888 +TIMESTAMP = 1754646526 +SHA256 (KDE/release-service/25.08.0/ktnef-25.08.0.tar.xz) = 12bc67c619792a7c4de8f6252f8614ca33ac3a494c22bbf50a8f779094d4e72d +SIZE (KDE/release-service/25.08.0/ktnef-25.08.0.tar.xz) = 316956 diff --git a/net/libgravatar/distinfo b/net/libgravatar/distinfo index 5ccf5439f56f..7daae6c5de2b 100644 --- a/net/libgravatar/distinfo +++ b/net/libgravatar/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1751381624 -SHA256 (KDE/release-service/25.04.3/libgravatar-25.04.3.tar.xz) = 24e8be07bb69aae682c30e2c6fc056664f97d74c0ef5b3c6f2ebe25f16d00647 -SIZE (KDE/release-service/25.04.3/libgravatar-25.04.3.tar.xz) = 38688 +TIMESTAMP = 1754646528 +SHA256 (KDE/release-service/25.08.0/libgravatar-25.08.0.tar.xz) = d061023c8b320d6e82b5e61aee06ee7ac10fe12437a70ebde05c752b7ab9b710 +SIZE (KDE/release-service/25.08.0/libgravatar-25.08.0.tar.xz) = 40968 diff --git a/net/libkgapi/distinfo b/net/libkgapi/distinfo index dfcce337f440..6ae0a339c46e 100644 --- a/net/libkgapi/distinfo +++ b/net/libkgapi/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1751381626 -SHA256 (KDE/release-service/25.04.3/libkgapi-25.04.3.tar.xz) = cf895f01d1967c029c15239c53e39ab11613b7700ed1afa8e61c6278bd8fbcf8 -SIZE (KDE/release-service/25.04.3/libkgapi-25.04.3.tar.xz) = 341404 +TIMESTAMP = 1754646530 +SHA256 (KDE/release-service/25.08.0/libkgapi-25.08.0.tar.xz) = 52bf23215ebfcb92efa95633cd6e38da8c65387771b427e893b51727256039b1 +SIZE (KDE/release-service/25.08.0/libkgapi-25.08.0.tar.xz) = 341436 diff --git a/net/libksieve/distinfo b/net/libksieve/distinfo index ff4246ec5b4b..a62dfd272ec1 100644 --- a/net/libksieve/distinfo +++ b/net/libksieve/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1751381629 -SHA256 (KDE/release-service/25.04.3/libksieve-25.04.3.tar.xz) = 07f6d97362e408dabcfb191b0bfd728edfd5996ee37a84074e928cb2e9c13a9d -SIZE (KDE/release-service/25.04.3/libksieve-25.04.3.tar.xz) = 614876 +TIMESTAMP = 1754646533 +SHA256 (KDE/release-service/25.08.0/libksieve-25.08.0.tar.xz) = a7e6e6f52377dc07750bdcef835d9fcc63088577b30fdff07ff710600cb1fe76 +SIZE (KDE/release-service/25.08.0/libksieve-25.08.0.tar.xz) = 617944 diff --git a/net/mailcommon/distinfo b/net/mailcommon/distinfo index 4377b695849e..092e6ab1a0f7 100644 --- a/net/mailcommon/distinfo +++ b/net/mailcommon/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1751381631 -SHA256 (KDE/release-service/25.04.3/mailcommon-25.04.3.tar.xz) = 2525aa778a922f6735f571a32a896fdfafa1aadfcc4aebd6619306a98f213521 -SIZE (KDE/release-service/25.04.3/mailcommon-25.04.3.tar.xz) = 813192 +TIMESTAMP = 1754646535 +SHA256 (KDE/release-service/25.08.0/mailcommon-25.08.0.tar.xz) = 69d7f099a1212b3253a5ead6140dcfac49750f79fc6ab4c4737af987e065ba9f +SIZE (KDE/release-service/25.08.0/mailcommon-25.08.0.tar.xz) = 815728 diff --git a/net/mailimporter/distinfo b/net/mailimporter/distinfo index 159429230754..df6271b95b9c 100644 --- a/net/mailimporter/distinfo +++ b/net/mailimporter/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1751381634 -SHA256 (KDE/release-service/25.04.3/mailimporter-25.04.3.tar.xz) = 7e026f46b6a974b5ad82cd74b44fff6026228b28d8ba89e4af9eaa08fe0b367e -SIZE (KDE/release-service/25.04.3/mailimporter-25.04.3.tar.xz) = 601196 +TIMESTAMP = 1754646538 +SHA256 (KDE/release-service/25.08.0/mailimporter-25.08.0.tar.xz) = 5c5d2fbbe2942f2a7b1b660db55bc6cdac49db4d1dd7ee0062ec0bb59ffc2552 +SIZE (KDE/release-service/25.08.0/mailimporter-25.08.0.tar.xz) = 603432 diff --git a/net/messagelib/distinfo b/net/messagelib/distinfo index 70cadac28239..0869d2a7fa45 100644 --- a/net/messagelib/distinfo +++ b/net/messagelib/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1751381636 -SHA256 (KDE/release-service/25.04.3/messagelib-25.04.3.tar.xz) = 87048febcbad9827b8ec1d894aa73996d5c48d7840273a04dafb7de00991c0eb -SIZE (KDE/release-service/25.04.3/messagelib-25.04.3.tar.xz) = 7409496 +TIMESTAMP = 1754646540 +SHA256 (KDE/release-service/25.08.0/messagelib-25.08.0.tar.xz) = 5df60b5fa46a7be227a3e55e9e3b9a12f660994818dc254ceb763dc7e0b5bb44 +SIZE (KDE/release-service/25.08.0/messagelib-25.08.0.tar.xz) = 7426380 diff --git a/net/mimetreeparser/distinfo b/net/mimetreeparser/distinfo index f73bd2592568..bbb44de53989 100644 --- a/net/mimetreeparser/distinfo +++ b/net/mimetreeparser/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1751381639 -SHA256 (KDE/release-service/25.04.3/mimetreeparser-25.04.3.tar.xz) = 26a4440d50ca62db1f154794557d5a216acc44ae96347e072200255a267c4ac4 -SIZE (KDE/release-service/25.04.3/mimetreeparser-25.04.3.tar.xz) = 652444 +TIMESTAMP = 1754646543 +SHA256 (KDE/release-service/25.08.0/mimetreeparser-25.08.0.tar.xz) = 606333eccf752e6ee47260e427596649695425d85ed7e5e12d332c75882f96ca +SIZE (KDE/release-service/25.08.0/mimetreeparser-25.08.0.tar.xz) = 653444 diff --git a/net/pimcommon/distinfo b/net/pimcommon/distinfo index 20340e7c5159..c48012e802ef 100644 --- a/net/pimcommon/distinfo +++ b/net/pimcommon/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1751381641 -SHA256 (KDE/release-service/25.04.3/pimcommon-25.04.3.tar.xz) = 7e6cb554ce25450f2d9b98805d6404e8d610fda411003eb4a61726c710444855 -SIZE (KDE/release-service/25.04.3/pimcommon-25.04.3.tar.xz) = 381488 +TIMESTAMP = 1754646545 +SHA256 (KDE/release-service/25.08.0/pimcommon-25.08.0.tar.xz) = a959fbdf63ec035ddc023fc1de5b9b63cc90bf0574cd8936242cb04f2e953f14 +SIZE (KDE/release-service/25.08.0/pimcommon-25.08.0.tar.xz) = 379432 diff --git a/net/pimcommon/pkg-plist b/net/pimcommon/pkg-plist index 070bfe309bd6..4bc8bd5cc34e 100644 --- a/net/pimcommon/pkg-plist +++ b/net/pimcommon/pkg-plist @@ -1,206 +1,204 @@ include/KPim6/PimCommon/PimCommon/AbstractGenericPlugin include/KPim6/PimCommon/PimCommon/AbstractGenericPluginInterface include/KPim6/PimCommon/PimCommon/BroadcastStatus include/KPim6/PimCommon/PimCommon/ConfigureImmutableWidgetUtils include/KPim6/PimCommon/PimCommon/ConfigurePluginDialog include/KPim6/PimCommon/PimCommon/ConfigurePluginsListWidget include/KPim6/PimCommon/PimCommon/ConfigurePluginsTreeWidgetDelegate include/KPim6/PimCommon/PimCommon/ConfigurePluginsWidget include/KPim6/PimCommon/PimCommon/CustomLogWidget include/KPim6/PimCommon/PimCommon/CustomToolsPlugin include/KPim6/PimCommon/PimCommon/CustomToolsPluginManager include/KPim6/PimCommon/PimCommon/CustomToolsViewInterface include/KPim6/PimCommon/PimCommon/CustomToolsWidgetng include/KPim6/PimCommon/PimCommon/CustomTreeView include/KPim6/PimCommon/PimCommon/GenericPlugin include/KPim6/PimCommon/PimCommon/GenericPluginManager include/KPim6/PimCommon/PimCommon/KActionMenuChangeCase include/KPim6/PimCommon/PimCommon/LineEditWithAutoCorrection include/KPim6/PimCommon/PimCommon/LineEditWithCompleterNg include/KPim6/PimCommon/PimCommon/NeedUpdateCheckExistingNewVersionJob include/KPim6/PimCommon/PimCommon/NeedUpdateParseHtmlJob include/KPim6/PimCommon/PimCommon/NeedUpdateParseHtmlUtil include/KPim6/PimCommon/PimCommon/NeedUpdateVersionUtils include/KPim6/PimCommon/PimCommon/NeedUpdateVersionWidget include/KPim6/PimCommon/PimCommon/NetworkManager include/KPim6/PimCommon/PimCommon/PimUtil include/KPim6/PimCommon/PimCommon/PluginUtil include/KPim6/PimCommon/PimCommon/PurposeMenuMessageWidget include/KPim6/PimCommon/PimCommon/PurposeMenuWidget include/KPim6/PimCommon/PimCommon/RenameFileDialog include/KPim6/PimCommon/PimCommon/ShareServiceUrlManager include/KPim6/PimCommon/PimCommon/SimpleStringListEditor include/KPim6/PimCommon/PimCommon/SpellCheckLineEdit include/KPim6/PimCommon/PimCommon/TemplateListWidget include/KPim6/PimCommon/PimCommon/TemplateManager include/KPim6/PimCommon/PimCommon/VerifyNewVersionWidget include/KPim6/PimCommon/PimCommon/WhatsNewComboBoxWidget include/KPim6/PimCommon/PimCommon/WhatsNewDialog include/KPim6/PimCommon/PimCommon/WhatsNewInfo include/KPim6/PimCommon/PimCommon/WhatsNewMessageWidget include/KPim6/PimCommon/PimCommon/WhatsNewTranslationsBase include/KPim6/PimCommon/pimcommon/abstractgenericplugin.h include/KPim6/PimCommon/pimcommon/abstractgenericplugininterface.h include/KPim6/PimCommon/pimcommon/broadcaststatus.h include/KPim6/PimCommon/pimcommon/configureimmutablewidgetutils.h include/KPim6/PimCommon/pimcommon/configureplugindialog.h include/KPim6/PimCommon/pimcommon/configurepluginslistwidget.h include/KPim6/PimCommon/pimcommon/configurepluginstreewidgetdelegate.h include/KPim6/PimCommon/pimcommon/configurepluginswidget.h include/KPim6/PimCommon/pimcommon/customlogwidget.h include/KPim6/PimCommon/pimcommon/customtoolsplugin.h include/KPim6/PimCommon/pimcommon/customtoolspluginmanager.h include/KPim6/PimCommon/pimcommon/customtoolsviewinterface.h include/KPim6/PimCommon/pimcommon/customtoolswidgetng.h include/KPim6/PimCommon/pimcommon/customtreeview.h include/KPim6/PimCommon/pimcommon/genericplugin.h include/KPim6/PimCommon/pimcommon/genericpluginmanager.h include/KPim6/PimCommon/pimcommon/imapresourcesettings.h include/KPim6/PimCommon/pimcommon/kactionmenuchangecase.h include/KPim6/PimCommon/pimcommon/lineeditwithautocorrection.h include/KPim6/PimCommon/pimcommon/lineeditwithcompleterng.h include/KPim6/PimCommon/pimcommon/needupdatecheckexistingnewversionjob.h include/KPim6/PimCommon/pimcommon/needupdateparsehtmljob.h include/KPim6/PimCommon/pimcommon/needupdateparsehtmlutil.h include/KPim6/PimCommon/pimcommon/needupdateversionutils.h include/KPim6/PimCommon/pimcommon/needupdateversionwidget.h include/KPim6/PimCommon/pimcommon/networkmanager.h include/KPim6/PimCommon/pimcommon/pimcommon_export.h include/KPim6/PimCommon/pimcommon/pimutil.h include/KPim6/PimCommon/pimcommon/pluginutil.h include/KPim6/PimCommon/pimcommon/purposemenumessagewidget.h include/KPim6/PimCommon/pimcommon/purposemenuwidget.h include/KPim6/PimCommon/pimcommon/renamefiledialog.h include/KPim6/PimCommon/pimcommon/shareserviceurlmanager.h include/KPim6/PimCommon/pimcommon/simplestringlisteditor.h include/KPim6/PimCommon/pimcommon/spellchecklineedit.h include/KPim6/PimCommon/pimcommon/templatelistwidget.h include/KPim6/PimCommon/pimcommon/templatemanager.h include/KPim6/PimCommon/pimcommon/verifynewversionwidget.h include/KPim6/PimCommon/pimcommon/whatsnewcomboboxwidget.h include/KPim6/PimCommon/pimcommon/whatsnewdialog.h include/KPim6/PimCommon/pimcommon/whatsnewinfo.h include/KPim6/PimCommon/pimcommon/whatsnewmessagewidget.h include/KPim6/PimCommon/pimcommon/whatsnewtranslationsbase.h include/KPim6/PimCommon/pimcommon_version.h include/KPim6/PimCommonActivities/PimCommonActivities/ActivitiesBaseManager include/KPim6/PimCommonActivities/PimCommonActivities/ConfigureActivitiesWidget include/KPim6/PimCommonActivities/pimcommonactivities/activitiesbasemanager.h include/KPim6/PimCommonActivities/pimcommonactivities/configureactivitieswidget.h include/KPim6/PimCommonActivities/pimcommonactivities/pimcommonactivities_export.h include/KPim6/PimCommonActivities/pimcommonactivities_version.h include/KPim6/PimCommonAkonadi/PimCommonAkonadi/AddresseeLineEdit include/KPim6/PimCommonAkonadi/PimCommonAkonadi/CheckedCollectionWidget include/KPim6/PimCommonAkonadi/PimCommonAkonadi/CollectionAclPage include/KPim6/PimCommonAkonadi/PimCommonAkonadi/CollectionTypeUtil include/KPim6/PimCommonAkonadi/PimCommonAkonadi/CompletionConfigureDialog include/KPim6/PimCommonAkonadi/PimCommonAkonadi/ContentTypeWidget include/KPim6/PimCommonAkonadi/PimCommonAkonadi/CreateResource include/KPim6/PimCommonAkonadi/PimCommonAkonadi/GenericPluginInterface include/KPim6/PimCommonAkonadi/PimCommonAkonadi/ImapAclAttribute include/KPim6/PimCommonAkonadi/PimCommonAkonadi/ImapResourceCapabilitiesManager include/KPim6/PimCommonAkonadi/PimCommonAkonadi/IncidencesForWidget include/KPim6/PimCommonAkonadi/PimCommonAkonadi/LdapSearchDialog include/KPim6/PimCommonAkonadi/PimCommonAkonadi/MailUtil -include/KPim6/PimCommonAkonadi/PimCommonAkonadi/ManageServerSideSubscriptionJob include/KPim6/PimCommonAkonadi/PimCommonAkonadi/PluginInterface include/KPim6/PimCommonAkonadi/PimCommonAkonadi/ProgressManagerAkonadi include/KPim6/PimCommonAkonadi/PimCommonAkonadi/RecentAddresses include/KPim6/PimCommonAkonadi/PimCommonAkonadi/SelectMultiCollectionDialog include/KPim6/PimCommonAkonadi/pimcommonakonadi/addresseelineedit.h include/KPim6/PimCommonAkonadi/pimcommonakonadi/checkedcollectionwidget.h include/KPim6/PimCommonAkonadi/pimcommonakonadi/collectionaclpage.h include/KPim6/PimCommonAkonadi/pimcommonakonadi/collectiontypeutil.h include/KPim6/PimCommonAkonadi/pimcommonakonadi/completionconfiguredialog.h include/KPim6/PimCommonAkonadi/pimcommonakonadi/contenttypewidget.h include/KPim6/PimCommonAkonadi/pimcommonakonadi/createresource.h include/KPim6/PimCommonAkonadi/pimcommonakonadi/genericplugininterface.h include/KPim6/PimCommonAkonadi/pimcommonakonadi/imapaclattribute.h include/KPim6/PimCommonAkonadi/pimcommonakonadi/imapresourcecapabilitiesmanager.h include/KPim6/PimCommonAkonadi/pimcommonakonadi/incidencesforwidget.h include/KPim6/PimCommonAkonadi/pimcommonakonadi/ldapsearchdialog.h include/KPim6/PimCommonAkonadi/pimcommonakonadi/mailutil.h -include/KPim6/PimCommonAkonadi/pimcommonakonadi/manageserversidesubscriptionjob.h include/KPim6/PimCommonAkonadi/pimcommonakonadi/pimcommonakonadi_export.h include/KPim6/PimCommonAkonadi/pimcommonakonadi/plugininterface.h include/KPim6/PimCommonAkonadi/pimcommonakonadi/progressmanagerakonadi.h include/KPim6/PimCommonAkonadi/pimcommonakonadi/recentaddresses.h include/KPim6/PimCommonAkonadi/pimcommonakonadi/selectmulticollectiondialog.h include/KPim6/PimCommonAkonadi/pimcommonakonadi_version.h lib/cmake/KPim6PimCommon/KPim6PimCommonConfig.cmake lib/cmake/KPim6PimCommon/KPim6PimCommonConfigVersion.cmake lib/cmake/KPim6PimCommon/KPim6PimCommonTargets-%%CMAKE_BUILD_TYPE%%.cmake lib/cmake/KPim6PimCommon/KPim6PimCommonTargets.cmake lib/cmake/KPim6PimCommonActivities/KPim6PimCommonActivitiesConfig.cmake lib/cmake/KPim6PimCommonActivities/KPim6PimCommonActivitiesConfigVersion.cmake lib/cmake/KPim6PimCommonActivities/KPim6PimCommonActivitiesTargets-%%CMAKE_BUILD_TYPE%%.cmake lib/cmake/KPim6PimCommonActivities/KPim6PimCommonActivitiesTargets.cmake lib/cmake/KPim6PimCommonAkonadi/KPim6PimCommonAkonadiConfig.cmake lib/cmake/KPim6PimCommonAkonadi/KPim6PimCommonAkonadiConfigVersion.cmake lib/cmake/KPim6PimCommonAkonadi/KPim6PimCommonAkonadiTargets-%%CMAKE_BUILD_TYPE%%.cmake lib/cmake/KPim6PimCommonAkonadi/KPim6PimCommonAkonadiTargets.cmake lib/libKPim6PimCommon.so lib/libKPim6PimCommon.so.6 lib/libKPim6PimCommon.so.%%KDE_APPLICATIONS_SHLIB_VER%% lib/libKPim6PimCommonActivities.so lib/libKPim6PimCommonActivities.so.6 lib/libKPim6PimCommonActivities.so.%%KDE_APPLICATIONS_SHLIB_VER%% lib/libKPim6PimCommonAkonadi.so lib/libKPim6PimCommonAkonadi.so.6 lib/libKPim6PimCommonAkonadi.so.%%KDE_APPLICATIONS_SHLIB_VER%% %%QT_PLUGINDIR%%/designer/pimcommon6akonadiwidgets.so %%QT_PLUGINDIR%%/designer/pimcommon6widgets.so share/locale/ar/LC_MESSAGES/libpimcommon6.mo share/locale/ast/LC_MESSAGES/libpimcommon6.mo share/locale/bs/LC_MESSAGES/libpimcommon6.mo share/locale/ca/LC_MESSAGES/libpimcommon6.mo share/locale/ca@valencia/LC_MESSAGES/libpimcommon6.mo share/locale/cs/LC_MESSAGES/libpimcommon6.mo share/locale/da/LC_MESSAGES/libpimcommon6.mo share/locale/de/LC_MESSAGES/libpimcommon6.mo share/locale/el/LC_MESSAGES/libpimcommon6.mo share/locale/en_GB/LC_MESSAGES/libpimcommon6.mo share/locale/eo/LC_MESSAGES/libpimcommon6.mo share/locale/es/LC_MESSAGES/libpimcommon6.mo share/locale/et/LC_MESSAGES/libpimcommon6.mo share/locale/eu/LC_MESSAGES/libpimcommon6.mo share/locale/fi/LC_MESSAGES/libpimcommon6.mo share/locale/fr/LC_MESSAGES/libpimcommon6.mo share/locale/ga/LC_MESSAGES/libpimcommon6.mo share/locale/gl/LC_MESSAGES/libpimcommon6.mo share/locale/he/LC_MESSAGES/libpimcommon6.mo share/locale/hi/LC_MESSAGES/libpimcommon6.mo share/locale/hu/LC_MESSAGES/libpimcommon6.mo share/locale/ia/LC_MESSAGES/libpimcommon6.mo share/locale/it/LC_MESSAGES/libpimcommon6.mo share/locale/ja/LC_MESSAGES/libpimcommon6.mo share/locale/ka/LC_MESSAGES/libpimcommon6.mo share/locale/kk/LC_MESSAGES/libpimcommon6.mo share/locale/ko/LC_MESSAGES/libpimcommon6.mo share/locale/lt/LC_MESSAGES/libpimcommon6.mo share/locale/lv/LC_MESSAGES/libpimcommon6.mo share/locale/mr/LC_MESSAGES/libpimcommon6.mo share/locale/nb/LC_MESSAGES/libpimcommon6.mo share/locale/nds/LC_MESSAGES/libpimcommon6.mo share/locale/nl/LC_MESSAGES/libpimcommon6.mo share/locale/pl/LC_MESSAGES/libpimcommon6.mo share/locale/pt/LC_MESSAGES/libpimcommon6.mo share/locale/pt_BR/LC_MESSAGES/libpimcommon6.mo share/locale/ro/LC_MESSAGES/libpimcommon6.mo share/locale/ru/LC_MESSAGES/libpimcommon6.mo share/locale/sa/LC_MESSAGES/libpimcommon6.mo share/locale/sk/LC_MESSAGES/libpimcommon6.mo share/locale/sl/LC_MESSAGES/libpimcommon6.mo share/locale/sr/LC_MESSAGES/libpimcommon6.mo share/locale/sr@ijekavian/LC_MESSAGES/libpimcommon6.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/libpimcommon6.mo share/locale/sr@latin/LC_MESSAGES/libpimcommon6.mo share/locale/sv/LC_MESSAGES/libpimcommon6.mo share/locale/ta/LC_MESSAGES/libpimcommon6.mo share/locale/tr/LC_MESSAGES/libpimcommon6.mo share/locale/ug/LC_MESSAGES/libpimcommon6.mo share/locale/uk/LC_MESSAGES/libpimcommon6.mo share/locale/zh_CN/LC_MESSAGES/libpimcommon6.mo share/locale/zh_TW/LC_MESSAGES/libpimcommon6.mo share/qlogging-categories6/pimcommon.categories share/qlogging-categories6/pimcommon.renamecategories diff --git a/science/kalzium/distinfo b/science/kalzium/distinfo index 55a8ed08734d..dc9bdf4527dc 100644 --- a/science/kalzium/distinfo +++ b/science/kalzium/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1751381644 -SHA256 (KDE/release-service/25.04.3/kalzium-25.04.3.tar.xz) = d8d76ae3d123d93fe0ddf33992d7c85292ec5560b76a634f9bf2d731c2fccada -SIZE (KDE/release-service/25.04.3/kalzium-25.04.3.tar.xz) = 22660296 +TIMESTAMP = 1754646547 +SHA256 (KDE/release-service/25.08.0/kalzium-25.08.0.tar.xz) = 8765737e7baeb7fb0d0c16112ce11694ddb90a102e8e6b3e723dae9d595b8529 +SIZE (KDE/release-service/25.08.0/kalzium-25.08.0.tar.xz) = 22650880 diff --git a/science/kalzium/pkg-plist b/science/kalzium/pkg-plist index 6d96ce611615..08dc853471f9 100644 --- a/science/kalzium/pkg-plist +++ b/science/kalzium/pkg-plist @@ -1,429 +1,449 @@ bin/kalzium include/libkdeedu/chemicaldataobject.h include/libkdeedu/element.h include/libkdeedu/elementparser.h include/libkdeedu/isotope.h include/libkdeedu/isotopeparser.h include/libkdeedu/moleculeparser.h include/libkdeedu/parser.h include/libkdeedu/psetables.h include/libkdeedu/science_export.h include/libkdeedu/spectrum.h include/libkdeedu/spectrumparser.h +lib/libcompoundviewer.so +lib/libcompoundviewer.so.5 +lib/libcompoundviewer.so.5.0.0 lib/libscience.so lib/libscience.so.5 lib/libscience.so.5.0.0 share/applications/org.kde.kalzium.desktop share/applications/org.kde.kalzium_cml.desktop share/config.kcfg/kalzium.kcfg share/icons/hicolor/128x128/apps/kalzium.png share/icons/hicolor/16x16/apps/kalzium.png share/icons/hicolor/22x22/apps/kalzium.png share/icons/hicolor/32x32/apps/kalzium.png share/icons/hicolor/48x48/apps/kalzium.png share/icons/hicolor/64x64/apps/kalzium.png share/icons/hicolor/scalable/apps/kalzium.svgz %%DATADIR%%/data/bg.jpg %%DATADIR%%/data/hazardsymbols/hazard_C.png %%DATADIR%%/data/hazardsymbols/hazard_E.png %%DATADIR%%/data/hazardsymbols/hazard_F.png %%DATADIR%%/data/hazardsymbols/hazard_N.png %%DATADIR%%/data/hazardsymbols/hazard_O.png %%DATADIR%%/data/hazardsymbols/hazard_T.png %%DATADIR%%/data/hazardsymbols/hazard_X.png %%DATADIR%%/data/htmlview/abundance.png %%DATADIR%%/data/htmlview/boilingpoint.png %%DATADIR%%/data/htmlview/book.png %%DATADIR%%/data/htmlview/discovery.png %%DATADIR%%/data/htmlview/electronaffinity.png %%DATADIR%%/data/htmlview/icons.svg %%DATADIR%%/data/htmlview/ionization.png %%DATADIR%%/data/htmlview/mass.png %%DATADIR%%/data/htmlview/meltingpoint.png %%DATADIR%%/data/htmlview/radius.png %%DATADIR%%/data/htmlview/structure.png %%DATADIR%%/data/iconsets/school/1.svg %%DATADIR%%/data/iconsets/school/10.svg %%DATADIR%%/data/iconsets/school/100.svg %%DATADIR%%/data/iconsets/school/101.svg %%DATADIR%%/data/iconsets/school/102.svg %%DATADIR%%/data/iconsets/school/103.svg %%DATADIR%%/data/iconsets/school/104.svg %%DATADIR%%/data/iconsets/school/105.svg %%DATADIR%%/data/iconsets/school/106.svg %%DATADIR%%/data/iconsets/school/107.svg %%DATADIR%%/data/iconsets/school/108.svg %%DATADIR%%/data/iconsets/school/109.svg %%DATADIR%%/data/iconsets/school/11.svg %%DATADIR%%/data/iconsets/school/110.svg %%DATADIR%%/data/iconsets/school/111.svg %%DATADIR%%/data/iconsets/school/112.svg %%DATADIR%%/data/iconsets/school/113.svg %%DATADIR%%/data/iconsets/school/114.svg %%DATADIR%%/data/iconsets/school/115.svg %%DATADIR%%/data/iconsets/school/116.svg %%DATADIR%%/data/iconsets/school/117.svg %%DATADIR%%/data/iconsets/school/118.svg %%DATADIR%%/data/iconsets/school/12.svg %%DATADIR%%/data/iconsets/school/13.svg %%DATADIR%%/data/iconsets/school/14.svg %%DATADIR%%/data/iconsets/school/15.svg %%DATADIR%%/data/iconsets/school/16.svg %%DATADIR%%/data/iconsets/school/17.svg %%DATADIR%%/data/iconsets/school/18.svg %%DATADIR%%/data/iconsets/school/19.svg %%DATADIR%%/data/iconsets/school/2.svg %%DATADIR%%/data/iconsets/school/20.svg %%DATADIR%%/data/iconsets/school/21.svg %%DATADIR%%/data/iconsets/school/22.svg %%DATADIR%%/data/iconsets/school/23.svg %%DATADIR%%/data/iconsets/school/24.svg %%DATADIR%%/data/iconsets/school/25.svg %%DATADIR%%/data/iconsets/school/26.svg %%DATADIR%%/data/iconsets/school/27.svg %%DATADIR%%/data/iconsets/school/28.svg %%DATADIR%%/data/iconsets/school/29.svg %%DATADIR%%/data/iconsets/school/3.svg %%DATADIR%%/data/iconsets/school/30.svg %%DATADIR%%/data/iconsets/school/31.svg %%DATADIR%%/data/iconsets/school/32.svg %%DATADIR%%/data/iconsets/school/33.svg %%DATADIR%%/data/iconsets/school/34.svg %%DATADIR%%/data/iconsets/school/35.svg %%DATADIR%%/data/iconsets/school/36.svg %%DATADIR%%/data/iconsets/school/37.svg %%DATADIR%%/data/iconsets/school/38.svg %%DATADIR%%/data/iconsets/school/39.svg %%DATADIR%%/data/iconsets/school/4.svg %%DATADIR%%/data/iconsets/school/40.svg %%DATADIR%%/data/iconsets/school/41.svg %%DATADIR%%/data/iconsets/school/42.svg %%DATADIR%%/data/iconsets/school/43.svg %%DATADIR%%/data/iconsets/school/44.svg %%DATADIR%%/data/iconsets/school/45.svg %%DATADIR%%/data/iconsets/school/46.svg %%DATADIR%%/data/iconsets/school/47.svg %%DATADIR%%/data/iconsets/school/48.svg %%DATADIR%%/data/iconsets/school/49.svg %%DATADIR%%/data/iconsets/school/5.svg %%DATADIR%%/data/iconsets/school/50.svg %%DATADIR%%/data/iconsets/school/51.svg %%DATADIR%%/data/iconsets/school/52.svg %%DATADIR%%/data/iconsets/school/53.svg %%DATADIR%%/data/iconsets/school/54.svg %%DATADIR%%/data/iconsets/school/55.svg %%DATADIR%%/data/iconsets/school/56.svg %%DATADIR%%/data/iconsets/school/57.svg %%DATADIR%%/data/iconsets/school/58.svg %%DATADIR%%/data/iconsets/school/59.svg %%DATADIR%%/data/iconsets/school/6.svg %%DATADIR%%/data/iconsets/school/60.svg %%DATADIR%%/data/iconsets/school/61.svg %%DATADIR%%/data/iconsets/school/62.svg %%DATADIR%%/data/iconsets/school/63.svg %%DATADIR%%/data/iconsets/school/64.svg %%DATADIR%%/data/iconsets/school/65.svg %%DATADIR%%/data/iconsets/school/66.svg %%DATADIR%%/data/iconsets/school/67.svg %%DATADIR%%/data/iconsets/school/68.svg %%DATADIR%%/data/iconsets/school/69.svg %%DATADIR%%/data/iconsets/school/7.svg %%DATADIR%%/data/iconsets/school/70.svg %%DATADIR%%/data/iconsets/school/71.svg %%DATADIR%%/data/iconsets/school/72.svg %%DATADIR%%/data/iconsets/school/73.svg %%DATADIR%%/data/iconsets/school/74.svg %%DATADIR%%/data/iconsets/school/75.svg %%DATADIR%%/data/iconsets/school/76.svg %%DATADIR%%/data/iconsets/school/77.svg %%DATADIR%%/data/iconsets/school/78.svg %%DATADIR%%/data/iconsets/school/79.svg %%DATADIR%%/data/iconsets/school/8.svg %%DATADIR%%/data/iconsets/school/80.svg %%DATADIR%%/data/iconsets/school/81.svg %%DATADIR%%/data/iconsets/school/82.svg %%DATADIR%%/data/iconsets/school/83.svg %%DATADIR%%/data/iconsets/school/84.svg %%DATADIR%%/data/iconsets/school/85.svg %%DATADIR%%/data/iconsets/school/86.svg %%DATADIR%%/data/iconsets/school/87.svg %%DATADIR%%/data/iconsets/school/88.svg %%DATADIR%%/data/iconsets/school/89.svg %%DATADIR%%/data/iconsets/school/9.svg %%DATADIR%%/data/iconsets/school/90.svg %%DATADIR%%/data/iconsets/school/91.svg %%DATADIR%%/data/iconsets/school/92.svg %%DATADIR%%/data/iconsets/school/93.svg %%DATADIR%%/data/iconsets/school/94.svg %%DATADIR%%/data/iconsets/school/95.svg %%DATADIR%%/data/iconsets/school/96.svg %%DATADIR%%/data/iconsets/school/97.svg %%DATADIR%%/data/iconsets/school/98.svg %%DATADIR%%/data/iconsets/school/99.svg %%DATADIR%%/data/iconsets/school/iconinformation.txt %%DATADIR%%/data/knowledge.xml %%DATADIR%%/data/latticeicons/cf.svgz %%DATADIR%%/data/latticeicons/ci.svgz %%DATADIR%%/data/latticeicons/cp.svgz %%DATADIR%%/data/latticeicons/hp.svgz %%DATADIR%%/data/latticeicons/hr.svgz %%DATADIR%%/data/latticeicons/mp.svgz %%DATADIR%%/data/latticeicons/op.svgz %%DATADIR%%/data/latticeicons/tp.svgz %%DATADIR%%/data/maps/de.png %%DATADIR%%/data/maps/dk.png %%DATADIR%%/data/maps/es.png %%DATADIR%%/data/maps/fi.png %%DATADIR%%/data/maps/fr.png %%DATADIR%%/data/maps/it.png %%DATADIR%%/data/maps/ru.png %%DATADIR%%/data/maps/ruus.png %%DATADIR%%/data/maps/se.png %%DATADIR%%/data/maps/uk.png %%DATADIR%%/data/maps/ukfr.png %%DATADIR%%/data/maps/ukse.png %%DATADIR%%/data/maps/us.png %%DATADIR%%/data/molecules/2-aminoethanol.cml %%DATADIR%%/data/molecules/2-thioethanol.cml %%DATADIR%%/data/molecules/2_2_2-trifluoroethanol.cml %%DATADIR%%/data/molecules/but-2-yne-1_4-diol.cml %%DATADIR%%/data/molecules/butane.cml %%DATADIR%%/data/molecules/carbon_dioxide.cml %%DATADIR%%/data/molecules/carbon_monoxide.cml %%DATADIR%%/data/molecules/ethane-1_2-diol.cml %%DATADIR%%/data/molecules/ethane.cml %%DATADIR%%/data/molecules/ethanol.cml %%DATADIR%%/data/molecules/methane.cml %%DATADIR%%/data/molecules/methanol.cml %%DATADIR%%/data/molecules/porphyrin.cml %%DATADIR%%/data/molecules/propan-1-ol.cml %%DATADIR%%/data/molecules/propan-2-ol.cml %%DATADIR%%/data/molecules/propane.cml %%DATADIR%%/data/molecules/thiophene.cml %%DATADIR%%/data/molecules/water.cml %%DATADIR%%/data/toolpics/abzug.jpg %%DATADIR%%/data/toolpics/becherglas.jpg %%DATADIR%%/data/toolpics/brechungsmesser.jpg %%DATADIR%%/data/toolpics/brenner.jpg %%DATADIR%%/data/toolpics/destillierbruecke.jpg %%DATADIR%%/data/toolpics/dsc.jpg %%DATADIR%%/data/toolpics/erlenmeyerkolben.jpg %%DATADIR%%/data/toolpics/exikator.jpg %%DATADIR%%/data/toolpics/halter.jpg %%DATADIR%%/data/toolpics/heizplatte.jpg %%DATADIR%%/data/toolpics/hplc.jpg %%DATADIR%%/data/toolpics/kolbenprober.png %%DATADIR%%/data/toolpics/korkring.jpg %%DATADIR%%/data/toolpics/messzylinder.jpg %%DATADIR%%/data/toolpics/moerser.jpg %%DATADIR%%/data/toolpics/phpapier.jpg %%DATADIR%%/data/toolpics/pileusball.jpg %%DATADIR%%/data/toolpics/pipette.jpg %%DATADIR%%/data/toolpics/rg-halter.jpg %%DATADIR%%/data/toolpics/rg-staender.jpg %%DATADIR%%/data/toolpics/rg.jpg %%DATADIR%%/data/toolpics/rotationsverdampfer.jpg %%DATADIR%%/data/toolpics/rueckflusskuehler.jpg %%DATADIR%%/data/toolpics/ruehrfisch.jpg %%DATADIR%%/data/toolpics/rundkolben.jpg %%DATADIR%%/data/toolpics/scheidetrichter.jpg %%DATADIR%%/data/toolpics/schutzbrille.jpg %%DATADIR%%/data/toolpics/spatel.jpg %%DATADIR%%/data/toolpics/spritzflasche.jpg %%DATADIR%%/data/toolpics/thermometer.jpg %%DATADIR%%/data/toolpics/thermometer2.jpg %%DATADIR%%/data/toolpics/tonschale.jpg %%DATADIR%%/data/toolpics/trichter.jpg %%DATADIR%%/data/toolpics/trockenrohr.jpg %%DATADIR%%/data/toolpics/tropftrichter.jpg %%DATADIR%%/data/toolpics/uhrglas.jpg %%DATADIR%%/data/toolpics/verteiler.jpg %%DATADIR%%/data/toolpics/vollpipette.jpg %%DATADIR%%/data/toolpics/waage.jpg %%DATADIR%%/data/toolpics/wasserstrahlpumpe.jpg %%DATADIR%%/data/tools.xml %%DATADIR%%/icons/hicolor/16x16/actions/calculate.png %%DATADIR%%/icons/hicolor/16x16/actions/chemical.png %%DATADIR%%/icons/hicolor/16x16/actions/elempic.png %%DATADIR%%/icons/hicolor/16x16/actions/energies.png %%DATADIR%%/icons/hicolor/16x16/actions/eqchem.png %%DATADIR%%/icons/hicolor/16x16/actions/glossary.png %%DATADIR%%/icons/hicolor/16x16/actions/isotopemap.png %%DATADIR%%/icons/hicolor/16x16/actions/kalzium_molviewer.png %%DATADIR%%/icons/hicolor/16x16/actions/kalzium_rs.png %%DATADIR%%/icons/hicolor/16x16/actions/kalzium_tables.png %%DATADIR%%/icons/hicolor/16x16/actions/legend.png %%DATADIR%%/icons/hicolor/16x16/actions/misc.png %%DATADIR%%/icons/hicolor/16x16/actions/numbers.png %%DATADIR%%/icons/hicolor/16x16/actions/orbits.png %%DATADIR%%/icons/hicolor/16x16/actions/overview.png %%DATADIR%%/icons/hicolor/16x16/actions/plot.png %%DATADIR%%/icons/hicolor/16x16/actions/sidebar.png %%DATADIR%%/icons/hicolor/16x16/actions/spectrum.png %%DATADIR%%/icons/hicolor/16x16/actions/statematter.png %%DATADIR%%/icons/hicolor/16x16/actions/timeline.png %%DATADIR%%/icons/hicolor/16x16/actions/tooltip.png %%DATADIR%%/icons/hicolor/22x22/actions/calculate.png %%DATADIR%%/icons/hicolor/22x22/actions/chemical.png %%DATADIR%%/icons/hicolor/22x22/actions/elempic.png %%DATADIR%%/icons/hicolor/22x22/actions/energies.png %%DATADIR%%/icons/hicolor/22x22/actions/eqchem.png %%DATADIR%%/icons/hicolor/22x22/actions/glossary.png %%DATADIR%%/icons/hicolor/22x22/actions/isotopemap.png %%DATADIR%%/icons/hicolor/22x22/actions/kalzium_molviewer.png %%DATADIR%%/icons/hicolor/22x22/actions/kalzium_rs.png %%DATADIR%%/icons/hicolor/22x22/actions/kalzium_tables.png %%DATADIR%%/icons/hicolor/22x22/actions/legend.png %%DATADIR%%/icons/hicolor/22x22/actions/numbers.png %%DATADIR%%/icons/hicolor/22x22/actions/orbits.png %%DATADIR%%/icons/hicolor/22x22/actions/overview.png %%DATADIR%%/icons/hicolor/22x22/actions/plot.png %%DATADIR%%/icons/hicolor/22x22/actions/sidebar.png %%DATADIR%%/icons/hicolor/22x22/actions/spectrum.png %%DATADIR%%/icons/hicolor/22x22/actions/statematter.png %%DATADIR%%/icons/hicolor/22x22/actions/timeline.png %%DATADIR%%/icons/hicolor/22x22/actions/tooltip.png %%DATADIR%%/icons/hicolor/32x32/actions/calculate.png %%DATADIR%%/icons/hicolor/32x32/actions/chemical.png %%DATADIR%%/icons/hicolor/32x32/actions/elempic.png %%DATADIR%%/icons/hicolor/32x32/actions/energies.png %%DATADIR%%/icons/hicolor/32x32/actions/eqchem.png %%DATADIR%%/icons/hicolor/32x32/actions/glossary.png %%DATADIR%%/icons/hicolor/32x32/actions/isotopemap.png %%DATADIR%%/icons/hicolor/32x32/actions/kalzium_molviewer.png %%DATADIR%%/icons/hicolor/32x32/actions/kalzium_rs.png %%DATADIR%%/icons/hicolor/32x32/actions/kalzium_tables.png %%DATADIR%%/icons/hicolor/32x32/actions/legend.png %%DATADIR%%/icons/hicolor/32x32/actions/misc.png %%DATADIR%%/icons/hicolor/32x32/actions/numbers.png %%DATADIR%%/icons/hicolor/32x32/actions/orbits.png %%DATADIR%%/icons/hicolor/32x32/actions/overview.png %%DATADIR%%/icons/hicolor/32x32/actions/plot.png %%DATADIR%%/icons/hicolor/32x32/actions/sidebar.png %%DATADIR%%/icons/hicolor/32x32/actions/spectrum.png %%DATADIR%%/icons/hicolor/32x32/actions/statematter.png %%DATADIR%%/icons/hicolor/32x32/actions/timeline.png %%DATADIR%%/icons/hicolor/32x32/actions/tooltip.png %%DATADIR%%/icons/hicolor/48x48/actions/calculate.png %%DATADIR%%/icons/hicolor/48x48/actions/chemical.png %%DATADIR%%/icons/hicolor/48x48/actions/energies.png %%DATADIR%%/icons/hicolor/48x48/actions/eqchem.png %%DATADIR%%/icons/hicolor/48x48/actions/glossary.png %%DATADIR%%/icons/hicolor/48x48/actions/isotopemap.png %%DATADIR%%/icons/hicolor/48x48/actions/kalzium_molviewer.png %%DATADIR%%/icons/hicolor/48x48/actions/kalzium_rs.png %%DATADIR%%/icons/hicolor/48x48/actions/kalzium_tables.png %%DATADIR%%/icons/hicolor/48x48/actions/legend.png %%DATADIR%%/icons/hicolor/48x48/actions/misc.png %%DATADIR%%/icons/hicolor/48x48/actions/numbers.png %%DATADIR%%/icons/hicolor/48x48/actions/orbits.png %%DATADIR%%/icons/hicolor/48x48/actions/overview.png %%DATADIR%%/icons/hicolor/48x48/actions/plot.png %%DATADIR%%/icons/hicolor/48x48/actions/sidebar.png %%DATADIR%%/icons/hicolor/48x48/actions/spectrum.png %%DATADIR%%/icons/hicolor/48x48/actions/statematter.png %%DATADIR%%/icons/hicolor/48x48/actions/timeline.png %%DATADIR%%/icons/hicolor/48x48/actions/tooltip.png %%DATADIR%%/icons/hicolor/64x64/actions/kalzium_molviewer.png %%DATADIR%%/icons/hicolor/64x64/actions/kalzium_rs.png %%DATADIR%%/icons/hicolor/64x64/actions/kalzium_tables.png %%DATADIR%%/icons/hicolor/64x64/actions/numbers.png %%DATADIR%%/icons/hicolor/scalable/actions/calculate.svgz %%DATADIR%%/icons/hicolor/scalable/actions/chemical.svgz %%DATADIR%%/icons/hicolor/scalable/actions/elempic.svgz %%DATADIR%%/icons/hicolor/scalable/actions/energies.svgz %%DATADIR%%/icons/hicolor/scalable/actions/eqchem.svgz %%DATADIR%%/icons/hicolor/scalable/actions/glossary.svgz %%DATADIR%%/icons/hicolor/scalable/actions/isotopemap.svgz %%DATADIR%%/icons/hicolor/scalable/actions/kalzium_molviewer.svgz %%DATADIR%%/icons/hicolor/scalable/actions/kalzium_rs.svgz %%DATADIR%%/icons/hicolor/scalable/actions/kalzium_tables.svgz %%DATADIR%%/icons/hicolor/scalable/actions/misc.svgz %%DATADIR%%/icons/hicolor/scalable/actions/numbers.svgz %%DATADIR%%/icons/hicolor/scalable/actions/orbits.svgz %%DATADIR%%/icons/hicolor/scalable/actions/overview.svgz %%DATADIR%%/icons/hicolor/scalable/actions/plot.svgz %%DATADIR%%/icons/hicolor/scalable/actions/sidebar.svgz %%DATADIR%%/icons/hicolor/scalable/actions/spectrum.svgz %%DATADIR%%/icons/hicolor/scalable/actions/statematter.svgz %%DATADIR%%/icons/hicolor/scalable/actions/timeline.svgz %%DATADIR%%/icons/hicolor/scalable/actions/tooltip.svgz +share/knsrcfiles/kalzium.knsrc share/libkdeedu/data/elements.xml share/libkdeedu/data/isotopes.xml share/libkdeedu/data/spectra.xml share/libkdeedu/data/symbols.csv share/libkdeedu/data/symbols2.csv share/locale/af/LC_MESSAGES/kalzium.mo share/locale/ar/LC_MESSAGES/kalzium.mo share/locale/be/LC_MESSAGES/kalzium.mo share/locale/bg/LC_MESSAGES/kalzium.mo share/locale/bn/LC_MESSAGES/kalzium.mo share/locale/br/LC_MESSAGES/kalzium.mo share/locale/bs/LC_MESSAGES/kalzium.mo share/locale/ca/LC_MESSAGES/kalzium.mo share/locale/ca@valencia/LC_MESSAGES/kalzium.mo share/locale/cs/LC_MESSAGES/kalzium.mo share/locale/cy/LC_MESSAGES/kalzium.mo share/locale/da/LC_MESSAGES/kalzium.mo share/locale/de/LC_MESSAGES/kalzium.mo share/locale/el/LC_MESSAGES/kalzium.mo share/locale/en_GB/LC_MESSAGES/kalzium.mo share/locale/eo/LC_MESSAGES/kalzium.mo share/locale/es/LC_MESSAGES/kalzium.mo share/locale/et/LC_MESSAGES/kalzium.mo share/locale/eu/LC_MESSAGES/kalzium.mo share/locale/fa/LC_MESSAGES/kalzium.mo share/locale/fi/LC_MESSAGES/kalzium.mo share/locale/fr/LC_MESSAGES/kalzium.mo share/locale/ga/LC_MESSAGES/kalzium.mo share/locale/gl/LC_MESSAGES/kalzium.mo share/locale/gu/LC_MESSAGES/kalzium.mo share/locale/he/LC_MESSAGES/kalzium.mo share/locale/hi/LC_MESSAGES/kalzium.mo share/locale/hne/LC_MESSAGES/kalzium.mo share/locale/hr/LC_MESSAGES/kalzium.mo share/locale/hu/LC_MESSAGES/kalzium.mo +share/locale/ia/LC_MESSAGES/kalzium.mo share/locale/is/LC_MESSAGES/kalzium.mo share/locale/it/LC_MESSAGES/kalzium.mo share/locale/ja/LC_MESSAGES/kalzium.mo share/locale/ka/LC_MESSAGES/kalzium.mo share/locale/kk/LC_MESSAGES/kalzium.mo share/locale/km/LC_MESSAGES/kalzium.mo share/locale/ko/LC_MESSAGES/kalzium.mo share/locale/lt/LC_MESSAGES/kalzium.mo share/locale/lv/LC_MESSAGES/kalzium.mo share/locale/mai/LC_MESSAGES/kalzium.mo share/locale/mk/LC_MESSAGES/kalzium.mo share/locale/ml/LC_MESSAGES/kalzium.mo share/locale/mr/LC_MESSAGES/kalzium.mo share/locale/ms/LC_MESSAGES/kalzium.mo share/locale/nb/LC_MESSAGES/kalzium.mo share/locale/nds/LC_MESSAGES/kalzium.mo share/locale/ne/LC_MESSAGES/kalzium.mo share/locale/nl/LC_MESSAGES/kalzium.mo share/locale/nn/LC_MESSAGES/kalzium.mo share/locale/oc/LC_MESSAGES/kalzium.mo share/locale/pa/LC_MESSAGES/kalzium.mo share/locale/pl/LC_MESSAGES/kalzium.mo share/locale/pt/LC_MESSAGES/kalzium.mo share/locale/pt_BR/LC_MESSAGES/kalzium.mo share/locale/ro/LC_MESSAGES/kalzium.mo share/locale/ru/LC_MESSAGES/kalzium.mo share/locale/se/LC_MESSAGES/kalzium.mo share/locale/si/LC_MESSAGES/kalzium.mo share/locale/sk/LC_MESSAGES/kalzium.mo share/locale/sl/LC_MESSAGES/kalzium.mo share/locale/sq/LC_MESSAGES/kalzium.mo share/locale/sv/LC_MESSAGES/kalzium.mo share/locale/ta/LC_MESSAGES/kalzium.mo share/locale/tg/LC_MESSAGES/kalzium.mo share/locale/th/LC_MESSAGES/kalzium.mo share/locale/tr/LC_MESSAGES/kalzium.mo share/locale/ug/LC_MESSAGES/kalzium.mo share/locale/uk/LC_MESSAGES/kalzium.mo share/locale/xh/LC_MESSAGES/kalzium.mo share/locale/zh_CN/LC_MESSAGES/kalzium.mo share/locale/zh_TW/LC_MESSAGES/kalzium.mo +share/man/ca/man1/kalzium.1.gz +share/man/da/man1/kalzium.1.gz +share/man/de/man1/kalzium.1.gz +share/man/es/man1/kalzium.1.gz +share/man/et/man1/kalzium.1.gz +share/man/fr/man1/kalzium.1.gz +share/man/gl/man1/kalzium.1.gz +share/man/it/man1/kalzium.1.gz share/man/man1/kalzium.1.gz +share/man/nl/man1/kalzium.1.gz +share/man/pl/man1/kalzium.1.gz +share/man/pt/man1/kalzium.1.gz +share/man/pt_BR/man1/kalzium.1.gz +share/man/ru/man1/kalzium.1.gz +share/man/sv/man1/kalzium.1.gz +share/man/uk/man1/kalzium.1.gz share/metainfo/org.kde.kalzium.appdata.xml share/qlogging-categories6/kalzium.categories diff --git a/science/step/distinfo b/science/step/distinfo index d0003f376b70..b2a6ad4575c2 100644 --- a/science/step/distinfo +++ b/science/step/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1751381646 -SHA256 (KDE/release-service/25.04.3/step-25.04.3.tar.xz) = 0aa86e2dd0bebbd9da8b8b77d0da3cd924e25be7084accaf11850d51857fba3e -SIZE (KDE/release-service/25.04.3/step-25.04.3.tar.xz) = 987244 +TIMESTAMP = 1754646550 +SHA256 (KDE/release-service/25.08.0/step-25.08.0.tar.xz) = 994bab4d0750cfdeb3af1f92d6453ee173cd483e392ad170bf5250b23b4ddf3a +SIZE (KDE/release-service/25.08.0/step-25.08.0.tar.xz) = 1004072 diff --git a/science/step/pkg-plist b/science/step/pkg-plist index f0365a2c6bf1..4186212eb37b 100644 --- a/science/step/pkg-plist +++ b/science/step/pkg-plist @@ -1,1627 +1,1670 @@ bin/step share/applications/org.kde.step.desktop share/config.kcfg/step.kcfg share/icons/hicolor/128x128/apps/step.png share/icons/hicolor/16x16/apps/step.png share/icons/hicolor/22x22/actions/pointer.png share/icons/hicolor/22x22/actions/step_object_Anchor.png share/icons/hicolor/22x22/actions/step_object_Box.png share/icons/hicolor/22x22/actions/step_object_ChargedParticle.png share/icons/hicolor/22x22/actions/step_object_CircularMotor.png share/icons/hicolor/22x22/actions/step_object_Controller.png share/icons/hicolor/22x22/actions/step_object_CoulombForce.png share/icons/hicolor/22x22/actions/step_object_Disk.png share/icons/hicolor/22x22/actions/step_object_Gas.png share/icons/hicolor/22x22/actions/step_object_GasParticle.png share/icons/hicolor/22x22/actions/step_object_Graph.png share/icons/hicolor/22x22/actions/step_object_GravitationForce.png share/icons/hicolor/22x22/actions/step_object_LinearMotor.png share/icons/hicolor/22x22/actions/step_object_Meter.png share/icons/hicolor/22x22/actions/step_object_Note.png share/icons/hicolor/22x22/actions/step_object_Particle.png share/icons/hicolor/22x22/actions/step_object_Pin.png share/icons/hicolor/22x22/actions/step_object_Polygon.png share/icons/hicolor/22x22/actions/step_object_Rope.png share/icons/hicolor/22x22/actions/step_object_SoftBody.png share/icons/hicolor/22x22/actions/step_object_Spring.png share/icons/hicolor/22x22/actions/step_object_Stick.png share/icons/hicolor/22x22/actions/step_object_Tracer.png share/icons/hicolor/22x22/actions/step_object_WeightForce.png share/icons/hicolor/22x22/apps/step.png share/icons/hicolor/32x32/apps/step.png share/icons/hicolor/48x48/apps/step.png share/icons/hicolor/64x64/apps/step.png share/knsrcfiles/step.knsrc share/locale/ar/LC_MESSAGES/step.mo share/locale/ar/LC_MESSAGES/step_qt.qm share/locale/be/LC_MESSAGES/step.mo share/locale/be/LC_MESSAGES/step_qt.qm share/locale/bg/LC_MESSAGES/step.mo share/locale/bg/LC_MESSAGES/step_example_files.mo share/locale/bg/LC_MESSAGES/step_objinfo_files.mo share/locale/bg/LC_MESSAGES/step_qt.qm share/locale/bs/LC_MESSAGES/step.mo share/locale/bs/LC_MESSAGES/step_qt.qm share/locale/ca/LC_MESSAGES/step.mo share/locale/ca/LC_MESSAGES/step_example_files.mo share/locale/ca/LC_MESSAGES/step_objinfo_files.mo share/locale/ca/LC_MESSAGES/step_qt.qm share/locale/ca@valencia/LC_MESSAGES/step.mo share/locale/ca@valencia/LC_MESSAGES/step_example_files.mo share/locale/ca@valencia/LC_MESSAGES/step_objinfo_files.mo share/locale/ca@valencia/LC_MESSAGES/step_qt.qm share/locale/cs/LC_MESSAGES/step.mo share/locale/cs/LC_MESSAGES/step_example_files.mo share/locale/cs/LC_MESSAGES/step_objinfo_files.mo share/locale/cs/LC_MESSAGES/step_qt.qm share/locale/da/LC_MESSAGES/step.mo share/locale/da/LC_MESSAGES/step_example_files.mo share/locale/da/LC_MESSAGES/step_objinfo_files.mo share/locale/da/LC_MESSAGES/step_qt.qm share/locale/de/LC_MESSAGES/step.mo share/locale/de/LC_MESSAGES/step_example_files.mo share/locale/de/LC_MESSAGES/step_objinfo_files.mo share/locale/de/LC_MESSAGES/step_qt.qm share/locale/el/LC_MESSAGES/step.mo share/locale/el/LC_MESSAGES/step_example_files.mo share/locale/el/LC_MESSAGES/step_objinfo_files.mo share/locale/el/LC_MESSAGES/step_qt.qm share/locale/en_GB/LC_MESSAGES/step.mo share/locale/en_GB/LC_MESSAGES/step_example_files.mo share/locale/en_GB/LC_MESSAGES/step_objinfo_files.mo share/locale/en_GB/LC_MESSAGES/step_qt.qm share/locale/eo/LC_MESSAGES/step.mo share/locale/eo/LC_MESSAGES/step_example_files.mo share/locale/eo/LC_MESSAGES/step_objinfo_files.mo share/locale/eo/LC_MESSAGES/step_qt.qm share/locale/es/LC_MESSAGES/step.mo share/locale/es/LC_MESSAGES/step_example_files.mo share/locale/es/LC_MESSAGES/step_objinfo_files.mo share/locale/es/LC_MESSAGES/step_qt.qm share/locale/et/LC_MESSAGES/step.mo share/locale/et/LC_MESSAGES/step_example_files.mo share/locale/et/LC_MESSAGES/step_objinfo_files.mo share/locale/et/LC_MESSAGES/step_qt.qm share/locale/eu/LC_MESSAGES/step.mo share/locale/eu/LC_MESSAGES/step_example_files.mo share/locale/eu/LC_MESSAGES/step_objinfo_files.mo share/locale/eu/LC_MESSAGES/step_qt.qm share/locale/fi/LC_MESSAGES/step.mo share/locale/fi/LC_MESSAGES/step_example_files.mo share/locale/fi/LC_MESSAGES/step_objinfo_files.mo share/locale/fi/LC_MESSAGES/step_qt.qm share/locale/fr/LC_MESSAGES/step.mo share/locale/fr/LC_MESSAGES/step_example_files.mo share/locale/fr/LC_MESSAGES/step_objinfo_files.mo share/locale/fr/LC_MESSAGES/step_qt.qm share/locale/ga/LC_MESSAGES/step.mo share/locale/ga/LC_MESSAGES/step_qt.qm share/locale/gl/LC_MESSAGES/step.mo share/locale/gl/LC_MESSAGES/step_example_files.mo share/locale/gl/LC_MESSAGES/step_objinfo_files.mo share/locale/gl/LC_MESSAGES/step_qt.qm share/locale/gu/LC_MESSAGES/step.mo share/locale/gu/LC_MESSAGES/step_qt.qm share/locale/hr/LC_MESSAGES/step.mo share/locale/hr/LC_MESSAGES/step_qt.qm share/locale/hu/LC_MESSAGES/step.mo share/locale/hu/LC_MESSAGES/step_qt.qm share/locale/ia/LC_MESSAGES/step.mo share/locale/ia/LC_MESSAGES/step_example_files.mo share/locale/ia/LC_MESSAGES/step_objinfo_files.mo share/locale/ia/LC_MESSAGES/step_qt.qm share/locale/it/LC_MESSAGES/step.mo share/locale/it/LC_MESSAGES/step_example_files.mo share/locale/it/LC_MESSAGES/step_objinfo_files.mo share/locale/it/LC_MESSAGES/step_qt.qm share/locale/ja/LC_MESSAGES/step.mo share/locale/ja/LC_MESSAGES/step_example_files.mo share/locale/ja/LC_MESSAGES/step_objinfo_files.mo share/locale/ja/LC_MESSAGES/step_qt.qm share/locale/ka/LC_MESSAGES/step.mo share/locale/ka/LC_MESSAGES/step_example_files.mo share/locale/ka/LC_MESSAGES/step_objinfo_files.mo share/locale/ka/LC_MESSAGES/step_qt.qm share/locale/kk/LC_MESSAGES/step.mo share/locale/kk/LC_MESSAGES/step_qt.qm share/locale/km/LC_MESSAGES/step.mo share/locale/km/LC_MESSAGES/step_qt.qm share/locale/ko/LC_MESSAGES/step.mo share/locale/ko/LC_MESSAGES/step_objinfo_files.mo share/locale/lt/LC_MESSAGES/step.mo share/locale/lt/LC_MESSAGES/step_example_files.mo share/locale/lt/LC_MESSAGES/step_objinfo_files.mo share/locale/lt/LC_MESSAGES/step_qt.qm share/locale/lv/LC_MESSAGES/step.mo +share/locale/lv/LC_MESSAGES/step_example_files.mo +share/locale/lv/LC_MESSAGES/step_objinfo_files.mo share/locale/lv/LC_MESSAGES/step_qt.qm share/locale/mai/LC_MESSAGES/step_qt.qm share/locale/ml/LC_MESSAGES/step.mo share/locale/ml/LC_MESSAGES/step_example_files.mo share/locale/ml/LC_MESSAGES/step_objinfo_files.mo share/locale/ml/LC_MESSAGES/step_qt.qm share/locale/mr/LC_MESSAGES/step.mo share/locale/mr/LC_MESSAGES/step_qt.qm share/locale/nb/LC_MESSAGES/step.mo share/locale/nb/LC_MESSAGES/step_qt.qm share/locale/nds/LC_MESSAGES/step.mo share/locale/nds/LC_MESSAGES/step_qt.qm share/locale/nl/LC_MESSAGES/step.mo share/locale/nl/LC_MESSAGES/step_example_files.mo share/locale/nl/LC_MESSAGES/step_objinfo_files.mo share/locale/nl/LC_MESSAGES/step_qt.qm share/locale/nn/LC_MESSAGES/step.mo share/locale/nn/LC_MESSAGES/step_qt.qm share/locale/nn/LC_SCRIPTS/step/step.js share/locale/oc/LC_MESSAGES/step.mo share/locale/oc/LC_MESSAGES/step_qt.qm share/locale/pa/LC_MESSAGES/step.mo share/locale/pa/LC_MESSAGES/step_qt.qm share/locale/pl/LC_MESSAGES/step.mo share/locale/pl/LC_MESSAGES/step_example_files.mo share/locale/pl/LC_MESSAGES/step_objinfo_files.mo share/locale/pl/LC_MESSAGES/step_qt.qm share/locale/pt/LC_MESSAGES/step.mo share/locale/pt/LC_MESSAGES/step_example_files.mo share/locale/pt/LC_MESSAGES/step_objinfo_files.mo share/locale/pt/LC_MESSAGES/step_qt.qm share/locale/pt_BR/LC_MESSAGES/step.mo share/locale/pt_BR/LC_MESSAGES/step_example_files.mo share/locale/pt_BR/LC_MESSAGES/step_objinfo_files.mo share/locale/pt_BR/LC_MESSAGES/step_qt.qm share/locale/ro/LC_MESSAGES/step.mo share/locale/ro/LC_MESSAGES/step_qt.qm share/locale/ru/LC_MESSAGES/step.mo share/locale/ru/LC_MESSAGES/step_example_files.mo share/locale/ru/LC_MESSAGES/step_objinfo_files.mo share/locale/ru/LC_MESSAGES/step_qt.qm share/locale/si/LC_MESSAGES/step.mo share/locale/si/LC_MESSAGES/step_qt.qm share/locale/sk/LC_MESSAGES/step.mo share/locale/sk/LC_MESSAGES/step_example_files.mo share/locale/sk/LC_MESSAGES/step_objinfo_files.mo share/locale/sk/LC_MESSAGES/step_qt.qm share/locale/sl/LC_MESSAGES/step.mo share/locale/sl/LC_MESSAGES/step_example_files.mo share/locale/sl/LC_MESSAGES/step_objinfo_files.mo share/locale/sl/LC_MESSAGES/step_qt.qm share/locale/sq/LC_MESSAGES/step.mo share/locale/sq/LC_MESSAGES/step_qt.qm share/locale/sv/LC_MESSAGES/step.mo share/locale/sv/LC_MESSAGES/step_example_files.mo share/locale/sv/LC_MESSAGES/step_objinfo_files.mo share/locale/sv/LC_MESSAGES/step_qt.qm share/locale/th/LC_MESSAGES/step.mo share/locale/th/LC_MESSAGES/step_qt.qm share/locale/tr/LC_MESSAGES/step.mo share/locale/tr/LC_MESSAGES/step_example_files.mo share/locale/tr/LC_MESSAGES/step_objinfo_files.mo share/locale/tr/LC_MESSAGES/step_qt.qm share/locale/ug/LC_MESSAGES/step.mo share/locale/ug/LC_MESSAGES/step_qt.qm share/locale/uk/LC_MESSAGES/step.mo share/locale/uk/LC_MESSAGES/step_example_files.mo share/locale/uk/LC_MESSAGES/step_objinfo_files.mo share/locale/uk/LC_MESSAGES/step_qt.qm share/locale/zh_CN/LC_MESSAGES/step.mo share/locale/zh_CN/LC_MESSAGES/step_example_files.mo share/locale/zh_CN/LC_MESSAGES/step_objinfo_files.mo share/locale/zh_CN/LC_MESSAGES/step_qt.qm share/locale/zh_TW/LC_MESSAGES/step.mo share/locale/zh_TW/LC_MESSAGES/step_example_files.mo share/locale/zh_TW/LC_MESSAGES/step_objinfo_files.mo share/locale/zh_TW/LC_MESSAGES/step_qt.qm share/metainfo/org.kde.step.appdata.xml share/mime/packages/org.kde.step.xml %%DATADIR%%/examples/bg/brownian.step %%DATADIR%%/examples/bg/doublependulum.step %%DATADIR%%/examples/bg/eightpendula.step %%DATADIR%%/examples/bg/first.step %%DATADIR%%/examples/bg/fourpendula.step %%DATADIR%%/examples/bg/gas.step %%DATADIR%%/examples/bg/graph.step %%DATADIR%%/examples/bg/liquid.step %%DATADIR%%/examples/bg/lissajous.step %%DATADIR%%/examples/bg/motor.step %%DATADIR%%/examples/bg/motor1.step %%DATADIR%%/examples/bg/note.step %%DATADIR%%/examples/bg/resonance.step %%DATADIR%%/examples/bg/softbody.step %%DATADIR%%/examples/bg/solar.step %%DATADIR%%/examples/bg/springs.step %%DATADIR%%/examples/bg/wave.step %%DATADIR%%/examples/brownian.step %%DATADIR%%/examples/ca/brownian.step %%DATADIR%%/examples/ca/doublependulum.step %%DATADIR%%/examples/ca/eightpendula.step %%DATADIR%%/examples/ca/first.step %%DATADIR%%/examples/ca/fourpendula.step %%DATADIR%%/examples/ca/gas.step %%DATADIR%%/examples/ca/graph.step %%DATADIR%%/examples/ca/liquid.step %%DATADIR%%/examples/ca/lissajous.step %%DATADIR%%/examples/ca/motor.step %%DATADIR%%/examples/ca/motor1.step %%DATADIR%%/examples/ca/note.step %%DATADIR%%/examples/ca/resonance.step %%DATADIR%%/examples/ca/softbody.step %%DATADIR%%/examples/ca/solar.step %%DATADIR%%/examples/ca/springs.step %%DATADIR%%/examples/ca/wave.step %%DATADIR%%/examples/ca@valencia/brownian.step %%DATADIR%%/examples/ca@valencia/doublependulum.step %%DATADIR%%/examples/ca@valencia/eightpendula.step %%DATADIR%%/examples/ca@valencia/first.step %%DATADIR%%/examples/ca@valencia/fourpendula.step %%DATADIR%%/examples/ca@valencia/gas.step %%DATADIR%%/examples/ca@valencia/graph.step %%DATADIR%%/examples/ca@valencia/liquid.step %%DATADIR%%/examples/ca@valencia/lissajous.step %%DATADIR%%/examples/ca@valencia/motor.step %%DATADIR%%/examples/ca@valencia/motor1.step %%DATADIR%%/examples/ca@valencia/note.step %%DATADIR%%/examples/ca@valencia/resonance.step %%DATADIR%%/examples/ca@valencia/softbody.step %%DATADIR%%/examples/ca@valencia/solar.step %%DATADIR%%/examples/ca@valencia/springs.step %%DATADIR%%/examples/ca@valencia/wave.step %%DATADIR%%/examples/cs/brownian.step %%DATADIR%%/examples/cs/doublependulum.step %%DATADIR%%/examples/cs/eightpendula.step %%DATADIR%%/examples/cs/first.step %%DATADIR%%/examples/cs/fourpendula.step %%DATADIR%%/examples/cs/gas.step %%DATADIR%%/examples/cs/graph.step %%DATADIR%%/examples/cs/liquid.step %%DATADIR%%/examples/cs/lissajous.step %%DATADIR%%/examples/cs/motor.step %%DATADIR%%/examples/cs/motor1.step %%DATADIR%%/examples/cs/note.step %%DATADIR%%/examples/cs/resonance.step %%DATADIR%%/examples/cs/softbody.step %%DATADIR%%/examples/cs/solar.step %%DATADIR%%/examples/cs/springs.step %%DATADIR%%/examples/cs/wave.step %%DATADIR%%/examples/da/brownian.step %%DATADIR%%/examples/da/doublependulum.step %%DATADIR%%/examples/da/eightpendula.step %%DATADIR%%/examples/da/first.step %%DATADIR%%/examples/da/fourpendula.step %%DATADIR%%/examples/da/gas.step %%DATADIR%%/examples/da/graph.step %%DATADIR%%/examples/da/liquid.step %%DATADIR%%/examples/da/lissajous.step %%DATADIR%%/examples/da/motor.step %%DATADIR%%/examples/da/motor1.step %%DATADIR%%/examples/da/note.step %%DATADIR%%/examples/da/resonance.step %%DATADIR%%/examples/da/softbody.step %%DATADIR%%/examples/da/solar.step %%DATADIR%%/examples/da/springs.step %%DATADIR%%/examples/da/wave.step %%DATADIR%%/examples/de/brownian.step %%DATADIR%%/examples/de/doublependulum.step %%DATADIR%%/examples/de/eightpendula.step %%DATADIR%%/examples/de/first.step %%DATADIR%%/examples/de/fourpendula.step %%DATADIR%%/examples/de/gas.step %%DATADIR%%/examples/de/graph.step %%DATADIR%%/examples/de/liquid.step %%DATADIR%%/examples/de/lissajous.step %%DATADIR%%/examples/de/motor.step %%DATADIR%%/examples/de/motor1.step %%DATADIR%%/examples/de/note.step %%DATADIR%%/examples/de/resonance.step %%DATADIR%%/examples/de/softbody.step %%DATADIR%%/examples/de/solar.step %%DATADIR%%/examples/de/springs.step %%DATADIR%%/examples/de/wave.step %%DATADIR%%/examples/doublependulum.step %%DATADIR%%/examples/eightpendula.step %%DATADIR%%/examples/el/brownian.step %%DATADIR%%/examples/el/doublependulum.step %%DATADIR%%/examples/el/eightpendula.step %%DATADIR%%/examples/el/first.step %%DATADIR%%/examples/el/fourpendula.step %%DATADIR%%/examples/el/gas.step %%DATADIR%%/examples/el/graph.step %%DATADIR%%/examples/el/liquid.step %%DATADIR%%/examples/el/lissajous.step %%DATADIR%%/examples/el/motor.step %%DATADIR%%/examples/el/motor1.step %%DATADIR%%/examples/el/note.step %%DATADIR%%/examples/el/resonance.step %%DATADIR%%/examples/el/softbody.step %%DATADIR%%/examples/el/solar.step %%DATADIR%%/examples/el/springs.step %%DATADIR%%/examples/el/wave.step %%DATADIR%%/examples/en_GB/brownian.step %%DATADIR%%/examples/en_GB/doublependulum.step %%DATADIR%%/examples/en_GB/eightpendula.step %%DATADIR%%/examples/en_GB/first.step %%DATADIR%%/examples/en_GB/fourpendula.step %%DATADIR%%/examples/en_GB/gas.step %%DATADIR%%/examples/en_GB/graph.step %%DATADIR%%/examples/en_GB/liquid.step %%DATADIR%%/examples/en_GB/lissajous.step %%DATADIR%%/examples/en_GB/motor.step %%DATADIR%%/examples/en_GB/motor1.step %%DATADIR%%/examples/en_GB/note.step %%DATADIR%%/examples/en_GB/resonance.step %%DATADIR%%/examples/en_GB/softbody.step %%DATADIR%%/examples/en_GB/solar.step %%DATADIR%%/examples/en_GB/springs.step %%DATADIR%%/examples/en_GB/wave.step %%DATADIR%%/examples/eo/brownian.step %%DATADIR%%/examples/eo/doublependulum.step %%DATADIR%%/examples/eo/eightpendula.step %%DATADIR%%/examples/eo/first.step %%DATADIR%%/examples/eo/fourpendula.step %%DATADIR%%/examples/eo/gas.step %%DATADIR%%/examples/eo/graph.step %%DATADIR%%/examples/eo/liquid.step %%DATADIR%%/examples/eo/lissajous.step %%DATADIR%%/examples/eo/motor.step %%DATADIR%%/examples/eo/motor1.step %%DATADIR%%/examples/eo/note.step %%DATADIR%%/examples/eo/resonance.step %%DATADIR%%/examples/eo/softbody.step %%DATADIR%%/examples/eo/solar.step %%DATADIR%%/examples/eo/springs.step %%DATADIR%%/examples/eo/wave.step %%DATADIR%%/examples/es/brownian.step %%DATADIR%%/examples/es/doublependulum.step %%DATADIR%%/examples/es/eightpendula.step %%DATADIR%%/examples/es/first.step %%DATADIR%%/examples/es/fourpendula.step %%DATADIR%%/examples/es/gas.step %%DATADIR%%/examples/es/graph.step %%DATADIR%%/examples/es/liquid.step %%DATADIR%%/examples/es/lissajous.step %%DATADIR%%/examples/es/motor.step %%DATADIR%%/examples/es/motor1.step %%DATADIR%%/examples/es/note.step %%DATADIR%%/examples/es/resonance.step %%DATADIR%%/examples/es/softbody.step %%DATADIR%%/examples/es/solar.step %%DATADIR%%/examples/es/springs.step %%DATADIR%%/examples/es/wave.step %%DATADIR%%/examples/et/brownian.step %%DATADIR%%/examples/et/doublependulum.step %%DATADIR%%/examples/et/eightpendula.step %%DATADIR%%/examples/et/first.step %%DATADIR%%/examples/et/fourpendula.step %%DATADIR%%/examples/et/gas.step %%DATADIR%%/examples/et/graph.step %%DATADIR%%/examples/et/liquid.step %%DATADIR%%/examples/et/lissajous.step %%DATADIR%%/examples/et/motor.step %%DATADIR%%/examples/et/motor1.step %%DATADIR%%/examples/et/note.step %%DATADIR%%/examples/et/resonance.step %%DATADIR%%/examples/et/softbody.step %%DATADIR%%/examples/et/solar.step %%DATADIR%%/examples/et/springs.step %%DATADIR%%/examples/et/wave.step %%DATADIR%%/examples/eu/brownian.step %%DATADIR%%/examples/eu/doublependulum.step %%DATADIR%%/examples/eu/eightpendula.step %%DATADIR%%/examples/eu/first.step %%DATADIR%%/examples/eu/fourpendula.step %%DATADIR%%/examples/eu/gas.step %%DATADIR%%/examples/eu/graph.step %%DATADIR%%/examples/eu/liquid.step %%DATADIR%%/examples/eu/lissajous.step %%DATADIR%%/examples/eu/motor.step %%DATADIR%%/examples/eu/motor1.step %%DATADIR%%/examples/eu/note.step %%DATADIR%%/examples/eu/resonance.step %%DATADIR%%/examples/eu/softbody.step %%DATADIR%%/examples/eu/solar.step %%DATADIR%%/examples/eu/springs.step %%DATADIR%%/examples/eu/wave.step %%DATADIR%%/examples/fi/brownian.step %%DATADIR%%/examples/fi/doublependulum.step %%DATADIR%%/examples/fi/eightpendula.step %%DATADIR%%/examples/fi/first.step %%DATADIR%%/examples/fi/fourpendula.step %%DATADIR%%/examples/fi/gas.step %%DATADIR%%/examples/fi/graph.step %%DATADIR%%/examples/fi/liquid.step %%DATADIR%%/examples/fi/lissajous.step %%DATADIR%%/examples/fi/motor.step %%DATADIR%%/examples/fi/motor1.step %%DATADIR%%/examples/fi/note.step %%DATADIR%%/examples/fi/resonance.step %%DATADIR%%/examples/fi/softbody.step %%DATADIR%%/examples/fi/solar.step %%DATADIR%%/examples/fi/springs.step %%DATADIR%%/examples/fi/wave.step %%DATADIR%%/examples/first.step %%DATADIR%%/examples/fourpendula.step %%DATADIR%%/examples/fr/brownian.step %%DATADIR%%/examples/fr/doublependulum.step %%DATADIR%%/examples/fr/eightpendula.step %%DATADIR%%/examples/fr/first.step %%DATADIR%%/examples/fr/fourpendula.step %%DATADIR%%/examples/fr/gas.step %%DATADIR%%/examples/fr/graph.step %%DATADIR%%/examples/fr/liquid.step %%DATADIR%%/examples/fr/lissajous.step %%DATADIR%%/examples/fr/motor.step %%DATADIR%%/examples/fr/motor1.step %%DATADIR%%/examples/fr/note.step %%DATADIR%%/examples/fr/resonance.step %%DATADIR%%/examples/fr/softbody.step %%DATADIR%%/examples/fr/solar.step %%DATADIR%%/examples/fr/springs.step %%DATADIR%%/examples/fr/wave.step %%DATADIR%%/examples/gas.step %%DATADIR%%/examples/gl/brownian.step %%DATADIR%%/examples/gl/doublependulum.step %%DATADIR%%/examples/gl/eightpendula.step %%DATADIR%%/examples/gl/first.step %%DATADIR%%/examples/gl/fourpendula.step %%DATADIR%%/examples/gl/gas.step %%DATADIR%%/examples/gl/graph.step %%DATADIR%%/examples/gl/liquid.step %%DATADIR%%/examples/gl/lissajous.step %%DATADIR%%/examples/gl/motor.step %%DATADIR%%/examples/gl/motor1.step %%DATADIR%%/examples/gl/note.step %%DATADIR%%/examples/gl/resonance.step %%DATADIR%%/examples/gl/softbody.step %%DATADIR%%/examples/gl/solar.step %%DATADIR%%/examples/gl/springs.step %%DATADIR%%/examples/gl/wave.step %%DATADIR%%/examples/graph.step %%DATADIR%%/examples/ia/brownian.step %%DATADIR%%/examples/ia/doublependulum.step %%DATADIR%%/examples/ia/eightpendula.step %%DATADIR%%/examples/ia/first.step %%DATADIR%%/examples/ia/fourpendula.step %%DATADIR%%/examples/ia/gas.step %%DATADIR%%/examples/ia/graph.step %%DATADIR%%/examples/ia/liquid.step %%DATADIR%%/examples/ia/lissajous.step %%DATADIR%%/examples/ia/motor.step %%DATADIR%%/examples/ia/motor1.step %%DATADIR%%/examples/ia/note.step %%DATADIR%%/examples/ia/resonance.step %%DATADIR%%/examples/ia/softbody.step %%DATADIR%%/examples/ia/solar.step %%DATADIR%%/examples/ia/springs.step %%DATADIR%%/examples/ia/wave.step %%DATADIR%%/examples/it/brownian.step %%DATADIR%%/examples/it/doublependulum.step %%DATADIR%%/examples/it/eightpendula.step %%DATADIR%%/examples/it/first.step %%DATADIR%%/examples/it/fourpendula.step %%DATADIR%%/examples/it/gas.step %%DATADIR%%/examples/it/graph.step %%DATADIR%%/examples/it/liquid.step %%DATADIR%%/examples/it/lissajous.step %%DATADIR%%/examples/it/motor.step %%DATADIR%%/examples/it/motor1.step %%DATADIR%%/examples/it/note.step %%DATADIR%%/examples/it/resonance.step %%DATADIR%%/examples/it/softbody.step %%DATADIR%%/examples/it/solar.step %%DATADIR%%/examples/it/springs.step %%DATADIR%%/examples/it/wave.step %%DATADIR%%/examples/ja/brownian.step %%DATADIR%%/examples/ja/doublependulum.step %%DATADIR%%/examples/ja/eightpendula.step %%DATADIR%%/examples/ja/first.step %%DATADIR%%/examples/ja/fourpendula.step %%DATADIR%%/examples/ja/gas.step %%DATADIR%%/examples/ja/graph.step %%DATADIR%%/examples/ja/liquid.step %%DATADIR%%/examples/ja/lissajous.step %%DATADIR%%/examples/ja/motor.step %%DATADIR%%/examples/ja/motor1.step %%DATADIR%%/examples/ja/note.step %%DATADIR%%/examples/ja/resonance.step %%DATADIR%%/examples/ja/softbody.step %%DATADIR%%/examples/ja/solar.step %%DATADIR%%/examples/ja/springs.step %%DATADIR%%/examples/ja/wave.step %%DATADIR%%/examples/ka/brownian.step %%DATADIR%%/examples/ka/doublependulum.step %%DATADIR%%/examples/ka/eightpendula.step %%DATADIR%%/examples/ka/first.step %%DATADIR%%/examples/ka/fourpendula.step %%DATADIR%%/examples/ka/gas.step %%DATADIR%%/examples/ka/graph.step %%DATADIR%%/examples/ka/liquid.step %%DATADIR%%/examples/ka/lissajous.step %%DATADIR%%/examples/ka/motor.step %%DATADIR%%/examples/ka/motor1.step %%DATADIR%%/examples/ka/note.step %%DATADIR%%/examples/ka/resonance.step %%DATADIR%%/examples/ka/softbody.step %%DATADIR%%/examples/ka/solar.step %%DATADIR%%/examples/ka/springs.step %%DATADIR%%/examples/ka/wave.step %%DATADIR%%/examples/liquid.step %%DATADIR%%/examples/lissajous.step %%DATADIR%%/examples/lt/brownian.step %%DATADIR%%/examples/lt/doublependulum.step %%DATADIR%%/examples/lt/eightpendula.step %%DATADIR%%/examples/lt/first.step %%DATADIR%%/examples/lt/fourpendula.step %%DATADIR%%/examples/lt/gas.step %%DATADIR%%/examples/lt/graph.step %%DATADIR%%/examples/lt/liquid.step %%DATADIR%%/examples/lt/lissajous.step %%DATADIR%%/examples/lt/motor.step %%DATADIR%%/examples/lt/motor1.step %%DATADIR%%/examples/lt/note.step %%DATADIR%%/examples/lt/resonance.step %%DATADIR%%/examples/lt/softbody.step %%DATADIR%%/examples/lt/solar.step %%DATADIR%%/examples/lt/springs.step %%DATADIR%%/examples/lt/wave.step +%%DATADIR%%/examples/lv/brownian.step +%%DATADIR%%/examples/lv/doublependulum.step +%%DATADIR%%/examples/lv/eightpendula.step +%%DATADIR%%/examples/lv/first.step +%%DATADIR%%/examples/lv/fourpendula.step +%%DATADIR%%/examples/lv/gas.step +%%DATADIR%%/examples/lv/graph.step +%%DATADIR%%/examples/lv/liquid.step +%%DATADIR%%/examples/lv/lissajous.step +%%DATADIR%%/examples/lv/motor.step +%%DATADIR%%/examples/lv/motor1.step +%%DATADIR%%/examples/lv/note.step +%%DATADIR%%/examples/lv/resonance.step +%%DATADIR%%/examples/lv/softbody.step +%%DATADIR%%/examples/lv/solar.step +%%DATADIR%%/examples/lv/springs.step +%%DATADIR%%/examples/lv/wave.step %%DATADIR%%/examples/ml/brownian.step %%DATADIR%%/examples/ml/doublependulum.step %%DATADIR%%/examples/ml/eightpendula.step %%DATADIR%%/examples/ml/first.step %%DATADIR%%/examples/ml/fourpendula.step %%DATADIR%%/examples/ml/gas.step %%DATADIR%%/examples/ml/graph.step %%DATADIR%%/examples/ml/liquid.step %%DATADIR%%/examples/ml/lissajous.step %%DATADIR%%/examples/ml/motor.step %%DATADIR%%/examples/ml/motor1.step %%DATADIR%%/examples/ml/note.step %%DATADIR%%/examples/ml/resonance.step %%DATADIR%%/examples/ml/softbody.step %%DATADIR%%/examples/ml/solar.step %%DATADIR%%/examples/ml/springs.step %%DATADIR%%/examples/ml/wave.step %%DATADIR%%/examples/motor.step %%DATADIR%%/examples/motor1.step %%DATADIR%%/examples/nl/brownian.step %%DATADIR%%/examples/nl/doublependulum.step %%DATADIR%%/examples/nl/eightpendula.step %%DATADIR%%/examples/nl/first.step %%DATADIR%%/examples/nl/fourpendula.step %%DATADIR%%/examples/nl/gas.step %%DATADIR%%/examples/nl/graph.step %%DATADIR%%/examples/nl/liquid.step %%DATADIR%%/examples/nl/lissajous.step %%DATADIR%%/examples/nl/motor.step %%DATADIR%%/examples/nl/motor1.step %%DATADIR%%/examples/nl/note.step %%DATADIR%%/examples/nl/resonance.step %%DATADIR%%/examples/nl/softbody.step %%DATADIR%%/examples/nl/solar.step %%DATADIR%%/examples/nl/springs.step %%DATADIR%%/examples/nl/wave.step %%DATADIR%%/examples/note.step %%DATADIR%%/examples/pl/brownian.step %%DATADIR%%/examples/pl/doublependulum.step %%DATADIR%%/examples/pl/eightpendula.step %%DATADIR%%/examples/pl/first.step %%DATADIR%%/examples/pl/fourpendula.step %%DATADIR%%/examples/pl/gas.step %%DATADIR%%/examples/pl/graph.step %%DATADIR%%/examples/pl/liquid.step %%DATADIR%%/examples/pl/lissajous.step %%DATADIR%%/examples/pl/motor.step %%DATADIR%%/examples/pl/motor1.step %%DATADIR%%/examples/pl/note.step %%DATADIR%%/examples/pl/resonance.step %%DATADIR%%/examples/pl/softbody.step %%DATADIR%%/examples/pl/solar.step %%DATADIR%%/examples/pl/springs.step %%DATADIR%%/examples/pl/wave.step %%DATADIR%%/examples/pt/brownian.step %%DATADIR%%/examples/pt/doublependulum.step %%DATADIR%%/examples/pt/eightpendula.step %%DATADIR%%/examples/pt/first.step %%DATADIR%%/examples/pt/fourpendula.step %%DATADIR%%/examples/pt/gas.step %%DATADIR%%/examples/pt/graph.step %%DATADIR%%/examples/pt/liquid.step %%DATADIR%%/examples/pt/lissajous.step %%DATADIR%%/examples/pt/motor.step %%DATADIR%%/examples/pt/motor1.step %%DATADIR%%/examples/pt/note.step %%DATADIR%%/examples/pt/resonance.step %%DATADIR%%/examples/pt/softbody.step %%DATADIR%%/examples/pt/solar.step %%DATADIR%%/examples/pt/springs.step %%DATADIR%%/examples/pt/wave.step %%DATADIR%%/examples/pt_BR/brownian.step %%DATADIR%%/examples/pt_BR/doublependulum.step %%DATADIR%%/examples/pt_BR/eightpendula.step %%DATADIR%%/examples/pt_BR/first.step %%DATADIR%%/examples/pt_BR/fourpendula.step %%DATADIR%%/examples/pt_BR/gas.step %%DATADIR%%/examples/pt_BR/graph.step %%DATADIR%%/examples/pt_BR/liquid.step %%DATADIR%%/examples/pt_BR/lissajous.step %%DATADIR%%/examples/pt_BR/motor.step %%DATADIR%%/examples/pt_BR/motor1.step %%DATADIR%%/examples/pt_BR/note.step %%DATADIR%%/examples/pt_BR/resonance.step %%DATADIR%%/examples/pt_BR/softbody.step %%DATADIR%%/examples/pt_BR/solar.step %%DATADIR%%/examples/pt_BR/springs.step %%DATADIR%%/examples/pt_BR/wave.step %%DATADIR%%/examples/resonance.step %%DATADIR%%/examples/ru/brownian.step %%DATADIR%%/examples/ru/doublependulum.step %%DATADIR%%/examples/ru/eightpendula.step %%DATADIR%%/examples/ru/first.step %%DATADIR%%/examples/ru/fourpendula.step %%DATADIR%%/examples/ru/gas.step %%DATADIR%%/examples/ru/graph.step %%DATADIR%%/examples/ru/liquid.step %%DATADIR%%/examples/ru/lissajous.step %%DATADIR%%/examples/ru/motor.step %%DATADIR%%/examples/ru/motor1.step %%DATADIR%%/examples/ru/note.step %%DATADIR%%/examples/ru/resonance.step %%DATADIR%%/examples/ru/softbody.step %%DATADIR%%/examples/ru/solar.step %%DATADIR%%/examples/ru/springs.step %%DATADIR%%/examples/ru/wave.step %%DATADIR%%/examples/sk/brownian.step %%DATADIR%%/examples/sk/doublependulum.step %%DATADIR%%/examples/sk/eightpendula.step %%DATADIR%%/examples/sk/first.step %%DATADIR%%/examples/sk/fourpendula.step %%DATADIR%%/examples/sk/gas.step %%DATADIR%%/examples/sk/graph.step %%DATADIR%%/examples/sk/liquid.step %%DATADIR%%/examples/sk/lissajous.step %%DATADIR%%/examples/sk/motor.step %%DATADIR%%/examples/sk/motor1.step %%DATADIR%%/examples/sk/note.step %%DATADIR%%/examples/sk/resonance.step %%DATADIR%%/examples/sk/softbody.step %%DATADIR%%/examples/sk/solar.step %%DATADIR%%/examples/sk/springs.step %%DATADIR%%/examples/sk/wave.step %%DATADIR%%/examples/sl/brownian.step %%DATADIR%%/examples/sl/doublependulum.step %%DATADIR%%/examples/sl/eightpendula.step %%DATADIR%%/examples/sl/first.step %%DATADIR%%/examples/sl/fourpendula.step %%DATADIR%%/examples/sl/gas.step %%DATADIR%%/examples/sl/graph.step %%DATADIR%%/examples/sl/liquid.step %%DATADIR%%/examples/sl/lissajous.step %%DATADIR%%/examples/sl/motor.step %%DATADIR%%/examples/sl/motor1.step %%DATADIR%%/examples/sl/note.step %%DATADIR%%/examples/sl/resonance.step %%DATADIR%%/examples/sl/softbody.step %%DATADIR%%/examples/sl/solar.step %%DATADIR%%/examples/sl/springs.step %%DATADIR%%/examples/sl/wave.step %%DATADIR%%/examples/softbody.step %%DATADIR%%/examples/solar.step %%DATADIR%%/examples/springs.step %%DATADIR%%/examples/sv/brownian.step %%DATADIR%%/examples/sv/doublependulum.step %%DATADIR%%/examples/sv/eightpendula.step %%DATADIR%%/examples/sv/first.step %%DATADIR%%/examples/sv/fourpendula.step %%DATADIR%%/examples/sv/gas.step %%DATADIR%%/examples/sv/graph.step %%DATADIR%%/examples/sv/liquid.step %%DATADIR%%/examples/sv/lissajous.step %%DATADIR%%/examples/sv/motor.step %%DATADIR%%/examples/sv/motor1.step %%DATADIR%%/examples/sv/note.step %%DATADIR%%/examples/sv/resonance.step %%DATADIR%%/examples/sv/softbody.step %%DATADIR%%/examples/sv/solar.step %%DATADIR%%/examples/sv/springs.step %%DATADIR%%/examples/sv/wave.step %%DATADIR%%/examples/tr/brownian.step %%DATADIR%%/examples/tr/doublependulum.step %%DATADIR%%/examples/tr/eightpendula.step %%DATADIR%%/examples/tr/first.step %%DATADIR%%/examples/tr/fourpendula.step %%DATADIR%%/examples/tr/gas.step %%DATADIR%%/examples/tr/graph.step %%DATADIR%%/examples/tr/liquid.step %%DATADIR%%/examples/tr/lissajous.step %%DATADIR%%/examples/tr/motor.step %%DATADIR%%/examples/tr/motor1.step %%DATADIR%%/examples/tr/note.step %%DATADIR%%/examples/tr/resonance.step %%DATADIR%%/examples/tr/softbody.step %%DATADIR%%/examples/tr/solar.step %%DATADIR%%/examples/tr/springs.step %%DATADIR%%/examples/tr/wave.step %%DATADIR%%/examples/uk/brownian.step %%DATADIR%%/examples/uk/doublependulum.step %%DATADIR%%/examples/uk/eightpendula.step %%DATADIR%%/examples/uk/first.step %%DATADIR%%/examples/uk/fourpendula.step %%DATADIR%%/examples/uk/gas.step %%DATADIR%%/examples/uk/graph.step %%DATADIR%%/examples/uk/liquid.step %%DATADIR%%/examples/uk/lissajous.step %%DATADIR%%/examples/uk/motor.step %%DATADIR%%/examples/uk/motor1.step %%DATADIR%%/examples/uk/note.step %%DATADIR%%/examples/uk/resonance.step %%DATADIR%%/examples/uk/softbody.step %%DATADIR%%/examples/uk/solar.step %%DATADIR%%/examples/uk/springs.step %%DATADIR%%/examples/uk/wave.step %%DATADIR%%/examples/wave.step %%DATADIR%%/examples/zh_CN/brownian.step %%DATADIR%%/examples/zh_CN/doublependulum.step %%DATADIR%%/examples/zh_CN/eightpendula.step %%DATADIR%%/examples/zh_CN/first.step %%DATADIR%%/examples/zh_CN/fourpendula.step %%DATADIR%%/examples/zh_CN/gas.step %%DATADIR%%/examples/zh_CN/graph.step %%DATADIR%%/examples/zh_CN/liquid.step %%DATADIR%%/examples/zh_CN/lissajous.step %%DATADIR%%/examples/zh_CN/motor.step %%DATADIR%%/examples/zh_CN/motor1.step %%DATADIR%%/examples/zh_CN/note.step %%DATADIR%%/examples/zh_CN/resonance.step %%DATADIR%%/examples/zh_CN/softbody.step %%DATADIR%%/examples/zh_CN/solar.step %%DATADIR%%/examples/zh_CN/springs.step %%DATADIR%%/examples/zh_CN/wave.step %%DATADIR%%/examples/zh_TW/brownian.step %%DATADIR%%/examples/zh_TW/doublependulum.step %%DATADIR%%/examples/zh_TW/eightpendula.step %%DATADIR%%/examples/zh_TW/first.step %%DATADIR%%/examples/zh_TW/fourpendula.step %%DATADIR%%/examples/zh_TW/gas.step %%DATADIR%%/examples/zh_TW/graph.step %%DATADIR%%/examples/zh_TW/liquid.step %%DATADIR%%/examples/zh_TW/lissajous.step %%DATADIR%%/examples/zh_TW/motor.step %%DATADIR%%/examples/zh_TW/motor1.step %%DATADIR%%/examples/zh_TW/note.step %%DATADIR%%/examples/zh_TW/resonance.step %%DATADIR%%/examples/zh_TW/softbody.step %%DATADIR%%/examples/zh_TW/solar.step %%DATADIR%%/examples/zh_TW/springs.step %%DATADIR%%/examples/zh_TW/wave.step %%DATADIR%%/objinfo/anchor.html %%DATADIR%%/objinfo/box.html %%DATADIR%%/objinfo/chargedparticle.html %%DATADIR%%/objinfo/coulombforce.html %%DATADIR%%/objinfo/disk.html %%DATADIR%%/objinfo/gas.html %%DATADIR%%/objinfo/gasljforce.html %%DATADIR%%/objinfo/gasparticle.html %%DATADIR%%/objinfo/gravitationforce.html %%DATADIR%%/objinfo/l10n/bg/anchor.html %%DATADIR%%/objinfo/l10n/bg/box.html %%DATADIR%%/objinfo/l10n/bg/chargedparticle.html %%DATADIR%%/objinfo/l10n/bg/coulombforce.html %%DATADIR%%/objinfo/l10n/bg/disk.html %%DATADIR%%/objinfo/l10n/bg/gas.html %%DATADIR%%/objinfo/l10n/bg/gasljforce.html %%DATADIR%%/objinfo/l10n/bg/gasparticle.html %%DATADIR%%/objinfo/l10n/bg/gravitationforce.html %%DATADIR%%/objinfo/l10n/bg/linearmotor.html %%DATADIR%%/objinfo/l10n/bg/meter.html %%DATADIR%%/objinfo/l10n/bg/note.html %%DATADIR%%/objinfo/l10n/bg/particle.html %%DATADIR%%/objinfo/l10n/bg/pin.html %%DATADIR%%/objinfo/l10n/bg/polygon.html %%DATADIR%%/objinfo/l10n/bg/softbody.html %%DATADIR%%/objinfo/l10n/bg/spring.html %%DATADIR%%/objinfo/l10n/bg/weightforce.html %%DATADIR%%/objinfo/l10n/bg/world.html %%DATADIR%%/objinfo/l10n/ca/anchor.html %%DATADIR%%/objinfo/l10n/ca/box.html %%DATADIR%%/objinfo/l10n/ca/chargedparticle.html %%DATADIR%%/objinfo/l10n/ca/coulombforce.html %%DATADIR%%/objinfo/l10n/ca/disk.html %%DATADIR%%/objinfo/l10n/ca/gas.html %%DATADIR%%/objinfo/l10n/ca/gasljforce.html %%DATADIR%%/objinfo/l10n/ca/gasparticle.html %%DATADIR%%/objinfo/l10n/ca/gravitationforce.html %%DATADIR%%/objinfo/l10n/ca/linearmotor.html %%DATADIR%%/objinfo/l10n/ca/meter.html %%DATADIR%%/objinfo/l10n/ca/note.html %%DATADIR%%/objinfo/l10n/ca/particle.html %%DATADIR%%/objinfo/l10n/ca/pin.html %%DATADIR%%/objinfo/l10n/ca/polygon.html %%DATADIR%%/objinfo/l10n/ca/softbody.html %%DATADIR%%/objinfo/l10n/ca/spring.html %%DATADIR%%/objinfo/l10n/ca/weightforce.html %%DATADIR%%/objinfo/l10n/ca/world.html %%DATADIR%%/objinfo/l10n/ca@valencia/anchor.html %%DATADIR%%/objinfo/l10n/ca@valencia/box.html %%DATADIR%%/objinfo/l10n/ca@valencia/chargedparticle.html %%DATADIR%%/objinfo/l10n/ca@valencia/coulombforce.html %%DATADIR%%/objinfo/l10n/ca@valencia/disk.html %%DATADIR%%/objinfo/l10n/ca@valencia/gas.html %%DATADIR%%/objinfo/l10n/ca@valencia/gasljforce.html %%DATADIR%%/objinfo/l10n/ca@valencia/gasparticle.html %%DATADIR%%/objinfo/l10n/ca@valencia/gravitationforce.html %%DATADIR%%/objinfo/l10n/ca@valencia/linearmotor.html %%DATADIR%%/objinfo/l10n/ca@valencia/meter.html %%DATADIR%%/objinfo/l10n/ca@valencia/note.html %%DATADIR%%/objinfo/l10n/ca@valencia/particle.html %%DATADIR%%/objinfo/l10n/ca@valencia/pin.html %%DATADIR%%/objinfo/l10n/ca@valencia/polygon.html %%DATADIR%%/objinfo/l10n/ca@valencia/softbody.html %%DATADIR%%/objinfo/l10n/ca@valencia/spring.html %%DATADIR%%/objinfo/l10n/ca@valencia/weightforce.html %%DATADIR%%/objinfo/l10n/ca@valencia/world.html %%DATADIR%%/objinfo/l10n/cs/anchor.html %%DATADIR%%/objinfo/l10n/cs/box.html %%DATADIR%%/objinfo/l10n/cs/chargedparticle.html %%DATADIR%%/objinfo/l10n/cs/coulombforce.html %%DATADIR%%/objinfo/l10n/cs/disk.html %%DATADIR%%/objinfo/l10n/cs/gas.html %%DATADIR%%/objinfo/l10n/cs/gasljforce.html %%DATADIR%%/objinfo/l10n/cs/gasparticle.html %%DATADIR%%/objinfo/l10n/cs/gravitationforce.html %%DATADIR%%/objinfo/l10n/cs/linearmotor.html %%DATADIR%%/objinfo/l10n/cs/meter.html %%DATADIR%%/objinfo/l10n/cs/note.html %%DATADIR%%/objinfo/l10n/cs/particle.html %%DATADIR%%/objinfo/l10n/cs/pin.html %%DATADIR%%/objinfo/l10n/cs/polygon.html %%DATADIR%%/objinfo/l10n/cs/softbody.html %%DATADIR%%/objinfo/l10n/cs/spring.html %%DATADIR%%/objinfo/l10n/cs/weightforce.html %%DATADIR%%/objinfo/l10n/cs/world.html %%DATADIR%%/objinfo/l10n/da/anchor.html %%DATADIR%%/objinfo/l10n/da/box.html %%DATADIR%%/objinfo/l10n/da/chargedparticle.html %%DATADIR%%/objinfo/l10n/da/coulombforce.html %%DATADIR%%/objinfo/l10n/da/disk.html %%DATADIR%%/objinfo/l10n/da/gas.html %%DATADIR%%/objinfo/l10n/da/gasljforce.html %%DATADIR%%/objinfo/l10n/da/gasparticle.html %%DATADIR%%/objinfo/l10n/da/gravitationforce.html %%DATADIR%%/objinfo/l10n/da/linearmotor.html %%DATADIR%%/objinfo/l10n/da/meter.html %%DATADIR%%/objinfo/l10n/da/note.html %%DATADIR%%/objinfo/l10n/da/particle.html %%DATADIR%%/objinfo/l10n/da/pin.html %%DATADIR%%/objinfo/l10n/da/polygon.html %%DATADIR%%/objinfo/l10n/da/softbody.html %%DATADIR%%/objinfo/l10n/da/spring.html %%DATADIR%%/objinfo/l10n/da/weightforce.html %%DATADIR%%/objinfo/l10n/da/world.html %%DATADIR%%/objinfo/l10n/de/anchor.html %%DATADIR%%/objinfo/l10n/de/box.html %%DATADIR%%/objinfo/l10n/de/chargedparticle.html %%DATADIR%%/objinfo/l10n/de/coulombforce.html %%DATADIR%%/objinfo/l10n/de/disk.html %%DATADIR%%/objinfo/l10n/de/gas.html %%DATADIR%%/objinfo/l10n/de/gasljforce.html %%DATADIR%%/objinfo/l10n/de/gasparticle.html %%DATADIR%%/objinfo/l10n/de/gravitationforce.html %%DATADIR%%/objinfo/l10n/de/linearmotor.html %%DATADIR%%/objinfo/l10n/de/meter.html %%DATADIR%%/objinfo/l10n/de/note.html %%DATADIR%%/objinfo/l10n/de/particle.html %%DATADIR%%/objinfo/l10n/de/pin.html %%DATADIR%%/objinfo/l10n/de/polygon.html %%DATADIR%%/objinfo/l10n/de/softbody.html %%DATADIR%%/objinfo/l10n/de/spring.html %%DATADIR%%/objinfo/l10n/de/weightforce.html %%DATADIR%%/objinfo/l10n/de/world.html %%DATADIR%%/objinfo/l10n/el/anchor.html %%DATADIR%%/objinfo/l10n/el/box.html %%DATADIR%%/objinfo/l10n/el/chargedparticle.html %%DATADIR%%/objinfo/l10n/el/coulombforce.html %%DATADIR%%/objinfo/l10n/el/disk.html %%DATADIR%%/objinfo/l10n/el/gas.html %%DATADIR%%/objinfo/l10n/el/gasljforce.html %%DATADIR%%/objinfo/l10n/el/gasparticle.html %%DATADIR%%/objinfo/l10n/el/gravitationforce.html %%DATADIR%%/objinfo/l10n/el/linearmotor.html %%DATADIR%%/objinfo/l10n/el/meter.html %%DATADIR%%/objinfo/l10n/el/note.html %%DATADIR%%/objinfo/l10n/el/particle.html %%DATADIR%%/objinfo/l10n/el/pin.html %%DATADIR%%/objinfo/l10n/el/polygon.html %%DATADIR%%/objinfo/l10n/el/softbody.html %%DATADIR%%/objinfo/l10n/el/spring.html %%DATADIR%%/objinfo/l10n/el/weightforce.html %%DATADIR%%/objinfo/l10n/el/world.html %%DATADIR%%/objinfo/l10n/en_GB/anchor.html %%DATADIR%%/objinfo/l10n/en_GB/box.html %%DATADIR%%/objinfo/l10n/en_GB/chargedparticle.html %%DATADIR%%/objinfo/l10n/en_GB/coulombforce.html %%DATADIR%%/objinfo/l10n/en_GB/disk.html %%DATADIR%%/objinfo/l10n/en_GB/gas.html %%DATADIR%%/objinfo/l10n/en_GB/gasljforce.html %%DATADIR%%/objinfo/l10n/en_GB/gasparticle.html %%DATADIR%%/objinfo/l10n/en_GB/gravitationforce.html %%DATADIR%%/objinfo/l10n/en_GB/linearmotor.html %%DATADIR%%/objinfo/l10n/en_GB/meter.html %%DATADIR%%/objinfo/l10n/en_GB/note.html %%DATADIR%%/objinfo/l10n/en_GB/particle.html %%DATADIR%%/objinfo/l10n/en_GB/pin.html %%DATADIR%%/objinfo/l10n/en_GB/polygon.html %%DATADIR%%/objinfo/l10n/en_GB/softbody.html %%DATADIR%%/objinfo/l10n/en_GB/spring.html %%DATADIR%%/objinfo/l10n/en_GB/weightforce.html %%DATADIR%%/objinfo/l10n/en_GB/world.html %%DATADIR%%/objinfo/l10n/eo/anchor.html %%DATADIR%%/objinfo/l10n/eo/box.html %%DATADIR%%/objinfo/l10n/eo/chargedparticle.html %%DATADIR%%/objinfo/l10n/eo/coulombforce.html %%DATADIR%%/objinfo/l10n/eo/disk.html %%DATADIR%%/objinfo/l10n/eo/gas.html %%DATADIR%%/objinfo/l10n/eo/gasljforce.html %%DATADIR%%/objinfo/l10n/eo/gasparticle.html %%DATADIR%%/objinfo/l10n/eo/gravitationforce.html %%DATADIR%%/objinfo/l10n/eo/linearmotor.html %%DATADIR%%/objinfo/l10n/eo/meter.html %%DATADIR%%/objinfo/l10n/eo/note.html %%DATADIR%%/objinfo/l10n/eo/particle.html %%DATADIR%%/objinfo/l10n/eo/pin.html %%DATADIR%%/objinfo/l10n/eo/polygon.html %%DATADIR%%/objinfo/l10n/eo/softbody.html %%DATADIR%%/objinfo/l10n/eo/spring.html %%DATADIR%%/objinfo/l10n/eo/weightforce.html %%DATADIR%%/objinfo/l10n/eo/world.html %%DATADIR%%/objinfo/l10n/es/anchor.html %%DATADIR%%/objinfo/l10n/es/box.html %%DATADIR%%/objinfo/l10n/es/chargedparticle.html %%DATADIR%%/objinfo/l10n/es/coulombforce.html %%DATADIR%%/objinfo/l10n/es/disk.html %%DATADIR%%/objinfo/l10n/es/gas.html %%DATADIR%%/objinfo/l10n/es/gasljforce.html %%DATADIR%%/objinfo/l10n/es/gasparticle.html %%DATADIR%%/objinfo/l10n/es/gravitationforce.html %%DATADIR%%/objinfo/l10n/es/linearmotor.html %%DATADIR%%/objinfo/l10n/es/meter.html %%DATADIR%%/objinfo/l10n/es/note.html %%DATADIR%%/objinfo/l10n/es/particle.html %%DATADIR%%/objinfo/l10n/es/pin.html %%DATADIR%%/objinfo/l10n/es/polygon.html %%DATADIR%%/objinfo/l10n/es/softbody.html %%DATADIR%%/objinfo/l10n/es/spring.html %%DATADIR%%/objinfo/l10n/es/weightforce.html %%DATADIR%%/objinfo/l10n/es/world.html %%DATADIR%%/objinfo/l10n/et/anchor.html %%DATADIR%%/objinfo/l10n/et/box.html %%DATADIR%%/objinfo/l10n/et/chargedparticle.html %%DATADIR%%/objinfo/l10n/et/coulombforce.html %%DATADIR%%/objinfo/l10n/et/disk.html %%DATADIR%%/objinfo/l10n/et/gas.html %%DATADIR%%/objinfo/l10n/et/gasljforce.html %%DATADIR%%/objinfo/l10n/et/gasparticle.html %%DATADIR%%/objinfo/l10n/et/gravitationforce.html %%DATADIR%%/objinfo/l10n/et/linearmotor.html %%DATADIR%%/objinfo/l10n/et/meter.html %%DATADIR%%/objinfo/l10n/et/note.html %%DATADIR%%/objinfo/l10n/et/particle.html %%DATADIR%%/objinfo/l10n/et/pin.html %%DATADIR%%/objinfo/l10n/et/polygon.html %%DATADIR%%/objinfo/l10n/et/softbody.html %%DATADIR%%/objinfo/l10n/et/spring.html %%DATADIR%%/objinfo/l10n/et/weightforce.html %%DATADIR%%/objinfo/l10n/et/world.html %%DATADIR%%/objinfo/l10n/eu/anchor.html %%DATADIR%%/objinfo/l10n/eu/box.html %%DATADIR%%/objinfo/l10n/eu/chargedparticle.html %%DATADIR%%/objinfo/l10n/eu/coulombforce.html %%DATADIR%%/objinfo/l10n/eu/disk.html %%DATADIR%%/objinfo/l10n/eu/gas.html %%DATADIR%%/objinfo/l10n/eu/gasljforce.html %%DATADIR%%/objinfo/l10n/eu/gasparticle.html %%DATADIR%%/objinfo/l10n/eu/gravitationforce.html %%DATADIR%%/objinfo/l10n/eu/linearmotor.html %%DATADIR%%/objinfo/l10n/eu/meter.html %%DATADIR%%/objinfo/l10n/eu/note.html %%DATADIR%%/objinfo/l10n/eu/particle.html %%DATADIR%%/objinfo/l10n/eu/pin.html %%DATADIR%%/objinfo/l10n/eu/polygon.html %%DATADIR%%/objinfo/l10n/eu/softbody.html %%DATADIR%%/objinfo/l10n/eu/spring.html %%DATADIR%%/objinfo/l10n/eu/weightforce.html %%DATADIR%%/objinfo/l10n/eu/world.html %%DATADIR%%/objinfo/l10n/fi/anchor.html %%DATADIR%%/objinfo/l10n/fi/box.html %%DATADIR%%/objinfo/l10n/fi/chargedparticle.html %%DATADIR%%/objinfo/l10n/fi/coulombforce.html %%DATADIR%%/objinfo/l10n/fi/disk.html %%DATADIR%%/objinfo/l10n/fi/gas.html %%DATADIR%%/objinfo/l10n/fi/gasljforce.html %%DATADIR%%/objinfo/l10n/fi/gasparticle.html %%DATADIR%%/objinfo/l10n/fi/gravitationforce.html %%DATADIR%%/objinfo/l10n/fi/linearmotor.html %%DATADIR%%/objinfo/l10n/fi/meter.html %%DATADIR%%/objinfo/l10n/fi/note.html %%DATADIR%%/objinfo/l10n/fi/particle.html %%DATADIR%%/objinfo/l10n/fi/pin.html %%DATADIR%%/objinfo/l10n/fi/polygon.html %%DATADIR%%/objinfo/l10n/fi/softbody.html %%DATADIR%%/objinfo/l10n/fi/spring.html %%DATADIR%%/objinfo/l10n/fi/weightforce.html %%DATADIR%%/objinfo/l10n/fi/world.html %%DATADIR%%/objinfo/l10n/fr/anchor.html %%DATADIR%%/objinfo/l10n/fr/box.html %%DATADIR%%/objinfo/l10n/fr/chargedparticle.html %%DATADIR%%/objinfo/l10n/fr/coulombforce.html %%DATADIR%%/objinfo/l10n/fr/disk.html %%DATADIR%%/objinfo/l10n/fr/gas.html %%DATADIR%%/objinfo/l10n/fr/gasljforce.html %%DATADIR%%/objinfo/l10n/fr/gasparticle.html %%DATADIR%%/objinfo/l10n/fr/gravitationforce.html %%DATADIR%%/objinfo/l10n/fr/linearmotor.html %%DATADIR%%/objinfo/l10n/fr/meter.html %%DATADIR%%/objinfo/l10n/fr/note.html %%DATADIR%%/objinfo/l10n/fr/particle.html %%DATADIR%%/objinfo/l10n/fr/pin.html %%DATADIR%%/objinfo/l10n/fr/polygon.html %%DATADIR%%/objinfo/l10n/fr/softbody.html %%DATADIR%%/objinfo/l10n/fr/spring.html %%DATADIR%%/objinfo/l10n/fr/weightforce.html %%DATADIR%%/objinfo/l10n/fr/world.html %%DATADIR%%/objinfo/l10n/gl/anchor.html %%DATADIR%%/objinfo/l10n/gl/box.html %%DATADIR%%/objinfo/l10n/gl/chargedparticle.html %%DATADIR%%/objinfo/l10n/gl/coulombforce.html %%DATADIR%%/objinfo/l10n/gl/disk.html %%DATADIR%%/objinfo/l10n/gl/gas.html %%DATADIR%%/objinfo/l10n/gl/gasljforce.html %%DATADIR%%/objinfo/l10n/gl/gasparticle.html %%DATADIR%%/objinfo/l10n/gl/gravitationforce.html %%DATADIR%%/objinfo/l10n/gl/linearmotor.html %%DATADIR%%/objinfo/l10n/gl/meter.html %%DATADIR%%/objinfo/l10n/gl/note.html %%DATADIR%%/objinfo/l10n/gl/particle.html %%DATADIR%%/objinfo/l10n/gl/pin.html %%DATADIR%%/objinfo/l10n/gl/polygon.html %%DATADIR%%/objinfo/l10n/gl/softbody.html %%DATADIR%%/objinfo/l10n/gl/spring.html %%DATADIR%%/objinfo/l10n/gl/weightforce.html %%DATADIR%%/objinfo/l10n/gl/world.html %%DATADIR%%/objinfo/l10n/ia/anchor.html %%DATADIR%%/objinfo/l10n/ia/box.html %%DATADIR%%/objinfo/l10n/ia/chargedparticle.html %%DATADIR%%/objinfo/l10n/ia/coulombforce.html %%DATADIR%%/objinfo/l10n/ia/disk.html %%DATADIR%%/objinfo/l10n/ia/gas.html %%DATADIR%%/objinfo/l10n/ia/gasljforce.html %%DATADIR%%/objinfo/l10n/ia/gasparticle.html %%DATADIR%%/objinfo/l10n/ia/gravitationforce.html %%DATADIR%%/objinfo/l10n/ia/linearmotor.html %%DATADIR%%/objinfo/l10n/ia/meter.html %%DATADIR%%/objinfo/l10n/ia/note.html %%DATADIR%%/objinfo/l10n/ia/particle.html %%DATADIR%%/objinfo/l10n/ia/pin.html %%DATADIR%%/objinfo/l10n/ia/polygon.html %%DATADIR%%/objinfo/l10n/ia/softbody.html %%DATADIR%%/objinfo/l10n/ia/spring.html %%DATADIR%%/objinfo/l10n/ia/weightforce.html %%DATADIR%%/objinfo/l10n/ia/world.html %%DATADIR%%/objinfo/l10n/it/anchor.html %%DATADIR%%/objinfo/l10n/it/box.html %%DATADIR%%/objinfo/l10n/it/chargedparticle.html %%DATADIR%%/objinfo/l10n/it/coulombforce.html %%DATADIR%%/objinfo/l10n/it/disk.html %%DATADIR%%/objinfo/l10n/it/gas.html %%DATADIR%%/objinfo/l10n/it/gasljforce.html %%DATADIR%%/objinfo/l10n/it/gasparticle.html %%DATADIR%%/objinfo/l10n/it/gravitationforce.html %%DATADIR%%/objinfo/l10n/it/linearmotor.html %%DATADIR%%/objinfo/l10n/it/meter.html %%DATADIR%%/objinfo/l10n/it/note.html %%DATADIR%%/objinfo/l10n/it/particle.html %%DATADIR%%/objinfo/l10n/it/pin.html %%DATADIR%%/objinfo/l10n/it/polygon.html %%DATADIR%%/objinfo/l10n/it/softbody.html %%DATADIR%%/objinfo/l10n/it/spring.html %%DATADIR%%/objinfo/l10n/it/weightforce.html %%DATADIR%%/objinfo/l10n/it/world.html %%DATADIR%%/objinfo/l10n/ja/anchor.html %%DATADIR%%/objinfo/l10n/ja/box.html %%DATADIR%%/objinfo/l10n/ja/chargedparticle.html %%DATADIR%%/objinfo/l10n/ja/coulombforce.html %%DATADIR%%/objinfo/l10n/ja/disk.html %%DATADIR%%/objinfo/l10n/ja/gas.html %%DATADIR%%/objinfo/l10n/ja/gasljforce.html %%DATADIR%%/objinfo/l10n/ja/gasparticle.html %%DATADIR%%/objinfo/l10n/ja/gravitationforce.html %%DATADIR%%/objinfo/l10n/ja/linearmotor.html %%DATADIR%%/objinfo/l10n/ja/meter.html %%DATADIR%%/objinfo/l10n/ja/note.html %%DATADIR%%/objinfo/l10n/ja/particle.html %%DATADIR%%/objinfo/l10n/ja/pin.html %%DATADIR%%/objinfo/l10n/ja/polygon.html %%DATADIR%%/objinfo/l10n/ja/softbody.html %%DATADIR%%/objinfo/l10n/ja/spring.html %%DATADIR%%/objinfo/l10n/ja/weightforce.html %%DATADIR%%/objinfo/l10n/ja/world.html %%DATADIR%%/objinfo/l10n/ka/anchor.html %%DATADIR%%/objinfo/l10n/ka/box.html %%DATADIR%%/objinfo/l10n/ka/chargedparticle.html %%DATADIR%%/objinfo/l10n/ka/coulombforce.html %%DATADIR%%/objinfo/l10n/ka/disk.html %%DATADIR%%/objinfo/l10n/ka/gas.html %%DATADIR%%/objinfo/l10n/ka/gasljforce.html %%DATADIR%%/objinfo/l10n/ka/gasparticle.html %%DATADIR%%/objinfo/l10n/ka/gravitationforce.html %%DATADIR%%/objinfo/l10n/ka/linearmotor.html %%DATADIR%%/objinfo/l10n/ka/meter.html %%DATADIR%%/objinfo/l10n/ka/note.html %%DATADIR%%/objinfo/l10n/ka/particle.html %%DATADIR%%/objinfo/l10n/ka/pin.html %%DATADIR%%/objinfo/l10n/ka/polygon.html %%DATADIR%%/objinfo/l10n/ka/softbody.html %%DATADIR%%/objinfo/l10n/ka/spring.html %%DATADIR%%/objinfo/l10n/ka/weightforce.html %%DATADIR%%/objinfo/l10n/ka/world.html %%DATADIR%%/objinfo/l10n/ko/anchor.html %%DATADIR%%/objinfo/l10n/ko/box.html %%DATADIR%%/objinfo/l10n/ko/chargedparticle.html %%DATADIR%%/objinfo/l10n/ko/coulombforce.html %%DATADIR%%/objinfo/l10n/ko/disk.html %%DATADIR%%/objinfo/l10n/ko/gas.html %%DATADIR%%/objinfo/l10n/ko/gasljforce.html %%DATADIR%%/objinfo/l10n/ko/gasparticle.html %%DATADIR%%/objinfo/l10n/ko/gravitationforce.html %%DATADIR%%/objinfo/l10n/ko/linearmotor.html %%DATADIR%%/objinfo/l10n/ko/meter.html %%DATADIR%%/objinfo/l10n/ko/note.html %%DATADIR%%/objinfo/l10n/ko/particle.html %%DATADIR%%/objinfo/l10n/ko/pin.html %%DATADIR%%/objinfo/l10n/ko/polygon.html %%DATADIR%%/objinfo/l10n/ko/softbody.html %%DATADIR%%/objinfo/l10n/ko/spring.html %%DATADIR%%/objinfo/l10n/ko/weightforce.html %%DATADIR%%/objinfo/l10n/ko/world.html %%DATADIR%%/objinfo/l10n/lt/anchor.html %%DATADIR%%/objinfo/l10n/lt/box.html %%DATADIR%%/objinfo/l10n/lt/chargedparticle.html %%DATADIR%%/objinfo/l10n/lt/coulombforce.html %%DATADIR%%/objinfo/l10n/lt/disk.html %%DATADIR%%/objinfo/l10n/lt/gas.html %%DATADIR%%/objinfo/l10n/lt/gasljforce.html %%DATADIR%%/objinfo/l10n/lt/gasparticle.html %%DATADIR%%/objinfo/l10n/lt/gravitationforce.html %%DATADIR%%/objinfo/l10n/lt/linearmotor.html %%DATADIR%%/objinfo/l10n/lt/meter.html %%DATADIR%%/objinfo/l10n/lt/note.html %%DATADIR%%/objinfo/l10n/lt/particle.html %%DATADIR%%/objinfo/l10n/lt/pin.html %%DATADIR%%/objinfo/l10n/lt/polygon.html %%DATADIR%%/objinfo/l10n/lt/softbody.html %%DATADIR%%/objinfo/l10n/lt/spring.html %%DATADIR%%/objinfo/l10n/lt/weightforce.html %%DATADIR%%/objinfo/l10n/lt/world.html +%%DATADIR%%/objinfo/l10n/lv/anchor.html +%%DATADIR%%/objinfo/l10n/lv/box.html +%%DATADIR%%/objinfo/l10n/lv/chargedparticle.html +%%DATADIR%%/objinfo/l10n/lv/coulombforce.html +%%DATADIR%%/objinfo/l10n/lv/disk.html +%%DATADIR%%/objinfo/l10n/lv/gas.html +%%DATADIR%%/objinfo/l10n/lv/gasljforce.html +%%DATADIR%%/objinfo/l10n/lv/gasparticle.html +%%DATADIR%%/objinfo/l10n/lv/gravitationforce.html +%%DATADIR%%/objinfo/l10n/lv/linearmotor.html +%%DATADIR%%/objinfo/l10n/lv/meter.html +%%DATADIR%%/objinfo/l10n/lv/note.html +%%DATADIR%%/objinfo/l10n/lv/particle.html +%%DATADIR%%/objinfo/l10n/lv/pin.html +%%DATADIR%%/objinfo/l10n/lv/polygon.html +%%DATADIR%%/objinfo/l10n/lv/softbody.html +%%DATADIR%%/objinfo/l10n/lv/spring.html +%%DATADIR%%/objinfo/l10n/lv/weightforce.html +%%DATADIR%%/objinfo/l10n/lv/world.html %%DATADIR%%/objinfo/l10n/ml/anchor.html %%DATADIR%%/objinfo/l10n/ml/box.html %%DATADIR%%/objinfo/l10n/ml/chargedparticle.html %%DATADIR%%/objinfo/l10n/ml/coulombforce.html %%DATADIR%%/objinfo/l10n/ml/disk.html %%DATADIR%%/objinfo/l10n/ml/gas.html %%DATADIR%%/objinfo/l10n/ml/gasljforce.html %%DATADIR%%/objinfo/l10n/ml/gasparticle.html %%DATADIR%%/objinfo/l10n/ml/gravitationforce.html %%DATADIR%%/objinfo/l10n/ml/linearmotor.html %%DATADIR%%/objinfo/l10n/ml/meter.html %%DATADIR%%/objinfo/l10n/ml/note.html %%DATADIR%%/objinfo/l10n/ml/particle.html %%DATADIR%%/objinfo/l10n/ml/pin.html %%DATADIR%%/objinfo/l10n/ml/polygon.html %%DATADIR%%/objinfo/l10n/ml/softbody.html %%DATADIR%%/objinfo/l10n/ml/spring.html %%DATADIR%%/objinfo/l10n/ml/weightforce.html %%DATADIR%%/objinfo/l10n/ml/world.html %%DATADIR%%/objinfo/l10n/nl/anchor.html %%DATADIR%%/objinfo/l10n/nl/box.html %%DATADIR%%/objinfo/l10n/nl/chargedparticle.html %%DATADIR%%/objinfo/l10n/nl/coulombforce.html %%DATADIR%%/objinfo/l10n/nl/disk.html %%DATADIR%%/objinfo/l10n/nl/gas.html %%DATADIR%%/objinfo/l10n/nl/gasljforce.html %%DATADIR%%/objinfo/l10n/nl/gasparticle.html %%DATADIR%%/objinfo/l10n/nl/gravitationforce.html %%DATADIR%%/objinfo/l10n/nl/linearmotor.html %%DATADIR%%/objinfo/l10n/nl/meter.html %%DATADIR%%/objinfo/l10n/nl/note.html %%DATADIR%%/objinfo/l10n/nl/particle.html %%DATADIR%%/objinfo/l10n/nl/pin.html %%DATADIR%%/objinfo/l10n/nl/polygon.html %%DATADIR%%/objinfo/l10n/nl/softbody.html %%DATADIR%%/objinfo/l10n/nl/spring.html %%DATADIR%%/objinfo/l10n/nl/weightforce.html %%DATADIR%%/objinfo/l10n/nl/world.html %%DATADIR%%/objinfo/l10n/pl/anchor.html %%DATADIR%%/objinfo/l10n/pl/box.html %%DATADIR%%/objinfo/l10n/pl/chargedparticle.html %%DATADIR%%/objinfo/l10n/pl/coulombforce.html %%DATADIR%%/objinfo/l10n/pl/disk.html %%DATADIR%%/objinfo/l10n/pl/gas.html %%DATADIR%%/objinfo/l10n/pl/gasljforce.html %%DATADIR%%/objinfo/l10n/pl/gasparticle.html %%DATADIR%%/objinfo/l10n/pl/gravitationforce.html %%DATADIR%%/objinfo/l10n/pl/linearmotor.html %%DATADIR%%/objinfo/l10n/pl/meter.html %%DATADIR%%/objinfo/l10n/pl/note.html %%DATADIR%%/objinfo/l10n/pl/particle.html %%DATADIR%%/objinfo/l10n/pl/pin.html %%DATADIR%%/objinfo/l10n/pl/polygon.html %%DATADIR%%/objinfo/l10n/pl/softbody.html %%DATADIR%%/objinfo/l10n/pl/spring.html %%DATADIR%%/objinfo/l10n/pl/weightforce.html %%DATADIR%%/objinfo/l10n/pl/world.html %%DATADIR%%/objinfo/l10n/pt/anchor.html %%DATADIR%%/objinfo/l10n/pt/box.html %%DATADIR%%/objinfo/l10n/pt/chargedparticle.html %%DATADIR%%/objinfo/l10n/pt/coulombforce.html %%DATADIR%%/objinfo/l10n/pt/disk.html %%DATADIR%%/objinfo/l10n/pt/gas.html %%DATADIR%%/objinfo/l10n/pt/gasljforce.html %%DATADIR%%/objinfo/l10n/pt/gasparticle.html %%DATADIR%%/objinfo/l10n/pt/gravitationforce.html %%DATADIR%%/objinfo/l10n/pt/linearmotor.html %%DATADIR%%/objinfo/l10n/pt/meter.html %%DATADIR%%/objinfo/l10n/pt/note.html %%DATADIR%%/objinfo/l10n/pt/particle.html %%DATADIR%%/objinfo/l10n/pt/pin.html %%DATADIR%%/objinfo/l10n/pt/polygon.html %%DATADIR%%/objinfo/l10n/pt/softbody.html %%DATADIR%%/objinfo/l10n/pt/spring.html %%DATADIR%%/objinfo/l10n/pt/weightforce.html %%DATADIR%%/objinfo/l10n/pt/world.html %%DATADIR%%/objinfo/l10n/pt_BR/anchor.html %%DATADIR%%/objinfo/l10n/pt_BR/box.html %%DATADIR%%/objinfo/l10n/pt_BR/chargedparticle.html %%DATADIR%%/objinfo/l10n/pt_BR/coulombforce.html %%DATADIR%%/objinfo/l10n/pt_BR/disk.html %%DATADIR%%/objinfo/l10n/pt_BR/gas.html %%DATADIR%%/objinfo/l10n/pt_BR/gasljforce.html %%DATADIR%%/objinfo/l10n/pt_BR/gasparticle.html %%DATADIR%%/objinfo/l10n/pt_BR/gravitationforce.html %%DATADIR%%/objinfo/l10n/pt_BR/linearmotor.html %%DATADIR%%/objinfo/l10n/pt_BR/meter.html %%DATADIR%%/objinfo/l10n/pt_BR/note.html %%DATADIR%%/objinfo/l10n/pt_BR/particle.html %%DATADIR%%/objinfo/l10n/pt_BR/pin.html %%DATADIR%%/objinfo/l10n/pt_BR/polygon.html %%DATADIR%%/objinfo/l10n/pt_BR/softbody.html %%DATADIR%%/objinfo/l10n/pt_BR/spring.html %%DATADIR%%/objinfo/l10n/pt_BR/weightforce.html %%DATADIR%%/objinfo/l10n/pt_BR/world.html %%DATADIR%%/objinfo/l10n/ru/anchor.html %%DATADIR%%/objinfo/l10n/ru/box.html %%DATADIR%%/objinfo/l10n/ru/chargedparticle.html %%DATADIR%%/objinfo/l10n/ru/coulombforce.html %%DATADIR%%/objinfo/l10n/ru/disk.html %%DATADIR%%/objinfo/l10n/ru/gas.html %%DATADIR%%/objinfo/l10n/ru/gasljforce.html %%DATADIR%%/objinfo/l10n/ru/gasparticle.html %%DATADIR%%/objinfo/l10n/ru/gravitationforce.html %%DATADIR%%/objinfo/l10n/ru/linearmotor.html %%DATADIR%%/objinfo/l10n/ru/meter.html %%DATADIR%%/objinfo/l10n/ru/note.html %%DATADIR%%/objinfo/l10n/ru/particle.html %%DATADIR%%/objinfo/l10n/ru/pin.html %%DATADIR%%/objinfo/l10n/ru/polygon.html %%DATADIR%%/objinfo/l10n/ru/softbody.html %%DATADIR%%/objinfo/l10n/ru/spring.html %%DATADIR%%/objinfo/l10n/ru/weightforce.html %%DATADIR%%/objinfo/l10n/ru/world.html %%DATADIR%%/objinfo/l10n/sk/anchor.html %%DATADIR%%/objinfo/l10n/sk/box.html %%DATADIR%%/objinfo/l10n/sk/chargedparticle.html %%DATADIR%%/objinfo/l10n/sk/coulombforce.html %%DATADIR%%/objinfo/l10n/sk/disk.html %%DATADIR%%/objinfo/l10n/sk/gas.html %%DATADIR%%/objinfo/l10n/sk/gasljforce.html %%DATADIR%%/objinfo/l10n/sk/gasparticle.html %%DATADIR%%/objinfo/l10n/sk/gravitationforce.html %%DATADIR%%/objinfo/l10n/sk/linearmotor.html %%DATADIR%%/objinfo/l10n/sk/meter.html %%DATADIR%%/objinfo/l10n/sk/note.html %%DATADIR%%/objinfo/l10n/sk/particle.html %%DATADIR%%/objinfo/l10n/sk/pin.html %%DATADIR%%/objinfo/l10n/sk/polygon.html %%DATADIR%%/objinfo/l10n/sk/softbody.html %%DATADIR%%/objinfo/l10n/sk/spring.html %%DATADIR%%/objinfo/l10n/sk/weightforce.html %%DATADIR%%/objinfo/l10n/sk/world.html %%DATADIR%%/objinfo/l10n/sl/anchor.html %%DATADIR%%/objinfo/l10n/sl/box.html %%DATADIR%%/objinfo/l10n/sl/chargedparticle.html %%DATADIR%%/objinfo/l10n/sl/coulombforce.html %%DATADIR%%/objinfo/l10n/sl/disk.html %%DATADIR%%/objinfo/l10n/sl/gas.html %%DATADIR%%/objinfo/l10n/sl/gasljforce.html %%DATADIR%%/objinfo/l10n/sl/gasparticle.html %%DATADIR%%/objinfo/l10n/sl/gravitationforce.html %%DATADIR%%/objinfo/l10n/sl/linearmotor.html %%DATADIR%%/objinfo/l10n/sl/meter.html %%DATADIR%%/objinfo/l10n/sl/note.html %%DATADIR%%/objinfo/l10n/sl/particle.html %%DATADIR%%/objinfo/l10n/sl/pin.html %%DATADIR%%/objinfo/l10n/sl/polygon.html %%DATADIR%%/objinfo/l10n/sl/softbody.html %%DATADIR%%/objinfo/l10n/sl/spring.html %%DATADIR%%/objinfo/l10n/sl/weightforce.html %%DATADIR%%/objinfo/l10n/sl/world.html %%DATADIR%%/objinfo/l10n/sv/anchor.html %%DATADIR%%/objinfo/l10n/sv/box.html %%DATADIR%%/objinfo/l10n/sv/chargedparticle.html %%DATADIR%%/objinfo/l10n/sv/coulombforce.html %%DATADIR%%/objinfo/l10n/sv/disk.html %%DATADIR%%/objinfo/l10n/sv/gas.html %%DATADIR%%/objinfo/l10n/sv/gasljforce.html %%DATADIR%%/objinfo/l10n/sv/gasparticle.html %%DATADIR%%/objinfo/l10n/sv/gravitationforce.html %%DATADIR%%/objinfo/l10n/sv/linearmotor.html %%DATADIR%%/objinfo/l10n/sv/meter.html %%DATADIR%%/objinfo/l10n/sv/note.html %%DATADIR%%/objinfo/l10n/sv/particle.html %%DATADIR%%/objinfo/l10n/sv/pin.html %%DATADIR%%/objinfo/l10n/sv/polygon.html %%DATADIR%%/objinfo/l10n/sv/softbody.html %%DATADIR%%/objinfo/l10n/sv/spring.html %%DATADIR%%/objinfo/l10n/sv/weightforce.html %%DATADIR%%/objinfo/l10n/sv/world.html %%DATADIR%%/objinfo/l10n/tr/anchor.html %%DATADIR%%/objinfo/l10n/tr/box.html %%DATADIR%%/objinfo/l10n/tr/chargedparticle.html %%DATADIR%%/objinfo/l10n/tr/coulombforce.html %%DATADIR%%/objinfo/l10n/tr/disk.html %%DATADIR%%/objinfo/l10n/tr/gas.html %%DATADIR%%/objinfo/l10n/tr/gasljforce.html %%DATADIR%%/objinfo/l10n/tr/gasparticle.html %%DATADIR%%/objinfo/l10n/tr/gravitationforce.html %%DATADIR%%/objinfo/l10n/tr/linearmotor.html %%DATADIR%%/objinfo/l10n/tr/meter.html %%DATADIR%%/objinfo/l10n/tr/note.html %%DATADIR%%/objinfo/l10n/tr/particle.html %%DATADIR%%/objinfo/l10n/tr/pin.html %%DATADIR%%/objinfo/l10n/tr/polygon.html %%DATADIR%%/objinfo/l10n/tr/softbody.html %%DATADIR%%/objinfo/l10n/tr/spring.html %%DATADIR%%/objinfo/l10n/tr/weightforce.html %%DATADIR%%/objinfo/l10n/tr/world.html %%DATADIR%%/objinfo/l10n/uk/anchor.html %%DATADIR%%/objinfo/l10n/uk/box.html %%DATADIR%%/objinfo/l10n/uk/chargedparticle.html %%DATADIR%%/objinfo/l10n/uk/coulombforce.html %%DATADIR%%/objinfo/l10n/uk/disk.html %%DATADIR%%/objinfo/l10n/uk/gas.html %%DATADIR%%/objinfo/l10n/uk/gasljforce.html %%DATADIR%%/objinfo/l10n/uk/gasparticle.html %%DATADIR%%/objinfo/l10n/uk/gravitationforce.html %%DATADIR%%/objinfo/l10n/uk/linearmotor.html %%DATADIR%%/objinfo/l10n/uk/meter.html %%DATADIR%%/objinfo/l10n/uk/note.html %%DATADIR%%/objinfo/l10n/uk/particle.html %%DATADIR%%/objinfo/l10n/uk/pin.html %%DATADIR%%/objinfo/l10n/uk/polygon.html %%DATADIR%%/objinfo/l10n/uk/softbody.html %%DATADIR%%/objinfo/l10n/uk/spring.html %%DATADIR%%/objinfo/l10n/uk/weightforce.html %%DATADIR%%/objinfo/l10n/uk/world.html %%DATADIR%%/objinfo/l10n/zh_CN/anchor.html %%DATADIR%%/objinfo/l10n/zh_CN/box.html %%DATADIR%%/objinfo/l10n/zh_CN/chargedparticle.html %%DATADIR%%/objinfo/l10n/zh_CN/coulombforce.html %%DATADIR%%/objinfo/l10n/zh_CN/disk.html %%DATADIR%%/objinfo/l10n/zh_CN/gas.html %%DATADIR%%/objinfo/l10n/zh_CN/gasljforce.html %%DATADIR%%/objinfo/l10n/zh_CN/gasparticle.html %%DATADIR%%/objinfo/l10n/zh_CN/gravitationforce.html %%DATADIR%%/objinfo/l10n/zh_CN/linearmotor.html %%DATADIR%%/objinfo/l10n/zh_CN/meter.html %%DATADIR%%/objinfo/l10n/zh_CN/note.html %%DATADIR%%/objinfo/l10n/zh_CN/particle.html %%DATADIR%%/objinfo/l10n/zh_CN/pin.html %%DATADIR%%/objinfo/l10n/zh_CN/polygon.html %%DATADIR%%/objinfo/l10n/zh_CN/softbody.html %%DATADIR%%/objinfo/l10n/zh_CN/spring.html %%DATADIR%%/objinfo/l10n/zh_CN/weightforce.html %%DATADIR%%/objinfo/l10n/zh_CN/world.html %%DATADIR%%/objinfo/l10n/zh_TW/anchor.html %%DATADIR%%/objinfo/l10n/zh_TW/box.html %%DATADIR%%/objinfo/l10n/zh_TW/chargedparticle.html %%DATADIR%%/objinfo/l10n/zh_TW/coulombforce.html %%DATADIR%%/objinfo/l10n/zh_TW/disk.html %%DATADIR%%/objinfo/l10n/zh_TW/gas.html %%DATADIR%%/objinfo/l10n/zh_TW/gasljforce.html %%DATADIR%%/objinfo/l10n/zh_TW/gasparticle.html %%DATADIR%%/objinfo/l10n/zh_TW/gravitationforce.html %%DATADIR%%/objinfo/l10n/zh_TW/linearmotor.html %%DATADIR%%/objinfo/l10n/zh_TW/meter.html %%DATADIR%%/objinfo/l10n/zh_TW/note.html %%DATADIR%%/objinfo/l10n/zh_TW/particle.html %%DATADIR%%/objinfo/l10n/zh_TW/pin.html %%DATADIR%%/objinfo/l10n/zh_TW/polygon.html %%DATADIR%%/objinfo/l10n/zh_TW/softbody.html %%DATADIR%%/objinfo/l10n/zh_TW/spring.html %%DATADIR%%/objinfo/l10n/zh_TW/weightforce.html %%DATADIR%%/objinfo/l10n/zh_TW/world.html %%DATADIR%%/objinfo/linearmotor.html %%DATADIR%%/objinfo/meter.html %%DATADIR%%/objinfo/note.html %%DATADIR%%/objinfo/particle.html %%DATADIR%%/objinfo/pin.html %%DATADIR%%/objinfo/polygon.html %%DATADIR%%/objinfo/softbody.html %%DATADIR%%/objinfo/spring.html %%DATADIR%%/objinfo/weightforce.html %%DATADIR%%/objinfo/world.html %%DATADIR%%/tutorials/bg/tutorial1.step %%DATADIR%%/tutorials/bg/tutorial2.step %%DATADIR%%/tutorials/bg/tutorial3.step %%DATADIR%%/tutorials/bg/tutorial4.step %%DATADIR%%/tutorials/bg/tutorial5.step %%DATADIR%%/tutorials/ca/tutorial1.step %%DATADIR%%/tutorials/ca/tutorial2.step %%DATADIR%%/tutorials/ca/tutorial3.step %%DATADIR%%/tutorials/ca/tutorial4.step %%DATADIR%%/tutorials/ca/tutorial5.step %%DATADIR%%/tutorials/ca@valencia/tutorial1.step %%DATADIR%%/tutorials/ca@valencia/tutorial2.step %%DATADIR%%/tutorials/ca@valencia/tutorial3.step %%DATADIR%%/tutorials/ca@valencia/tutorial4.step %%DATADIR%%/tutorials/ca@valencia/tutorial5.step %%DATADIR%%/tutorials/cs/tutorial1.step %%DATADIR%%/tutorials/cs/tutorial2.step %%DATADIR%%/tutorials/cs/tutorial3.step %%DATADIR%%/tutorials/cs/tutorial4.step %%DATADIR%%/tutorials/cs/tutorial5.step %%DATADIR%%/tutorials/da/tutorial1.step %%DATADIR%%/tutorials/da/tutorial2.step %%DATADIR%%/tutorials/da/tutorial3.step %%DATADIR%%/tutorials/da/tutorial4.step %%DATADIR%%/tutorials/da/tutorial5.step %%DATADIR%%/tutorials/de/tutorial1.step %%DATADIR%%/tutorials/de/tutorial2.step %%DATADIR%%/tutorials/de/tutorial3.step %%DATADIR%%/tutorials/de/tutorial4.step %%DATADIR%%/tutorials/de/tutorial5.step %%DATADIR%%/tutorials/el/tutorial1.step %%DATADIR%%/tutorials/el/tutorial2.step %%DATADIR%%/tutorials/el/tutorial3.step %%DATADIR%%/tutorials/el/tutorial4.step %%DATADIR%%/tutorials/el/tutorial5.step %%DATADIR%%/tutorials/en_GB/tutorial1.step %%DATADIR%%/tutorials/en_GB/tutorial2.step %%DATADIR%%/tutorials/en_GB/tutorial3.step %%DATADIR%%/tutorials/en_GB/tutorial4.step %%DATADIR%%/tutorials/en_GB/tutorial5.step %%DATADIR%%/tutorials/eo/tutorial1.step %%DATADIR%%/tutorials/eo/tutorial2.step %%DATADIR%%/tutorials/eo/tutorial3.step %%DATADIR%%/tutorials/eo/tutorial4.step %%DATADIR%%/tutorials/eo/tutorial5.step %%DATADIR%%/tutorials/es/tutorial1.step %%DATADIR%%/tutorials/es/tutorial2.step %%DATADIR%%/tutorials/es/tutorial3.step %%DATADIR%%/tutorials/es/tutorial4.step %%DATADIR%%/tutorials/es/tutorial5.step %%DATADIR%%/tutorials/et/tutorial1.step %%DATADIR%%/tutorials/et/tutorial2.step %%DATADIR%%/tutorials/et/tutorial3.step %%DATADIR%%/tutorials/et/tutorial4.step %%DATADIR%%/tutorials/et/tutorial5.step %%DATADIR%%/tutorials/eu/tutorial1.step %%DATADIR%%/tutorials/eu/tutorial2.step %%DATADIR%%/tutorials/eu/tutorial3.step %%DATADIR%%/tutorials/eu/tutorial4.step %%DATADIR%%/tutorials/eu/tutorial5.step %%DATADIR%%/tutorials/fi/tutorial1.step %%DATADIR%%/tutorials/fi/tutorial2.step %%DATADIR%%/tutorials/fi/tutorial3.step %%DATADIR%%/tutorials/fi/tutorial4.step %%DATADIR%%/tutorials/fi/tutorial5.step %%DATADIR%%/tutorials/fr/tutorial1.step %%DATADIR%%/tutorials/fr/tutorial2.step %%DATADIR%%/tutorials/fr/tutorial3.step %%DATADIR%%/tutorials/fr/tutorial4.step %%DATADIR%%/tutorials/fr/tutorial5.step %%DATADIR%%/tutorials/gl/tutorial1.step %%DATADIR%%/tutorials/gl/tutorial2.step %%DATADIR%%/tutorials/gl/tutorial3.step %%DATADIR%%/tutorials/gl/tutorial4.step %%DATADIR%%/tutorials/gl/tutorial5.step %%DATADIR%%/tutorials/ia/tutorial1.step %%DATADIR%%/tutorials/ia/tutorial2.step %%DATADIR%%/tutorials/ia/tutorial3.step %%DATADIR%%/tutorials/ia/tutorial4.step %%DATADIR%%/tutorials/ia/tutorial5.step %%DATADIR%%/tutorials/it/tutorial1.step %%DATADIR%%/tutorials/it/tutorial2.step %%DATADIR%%/tutorials/it/tutorial3.step %%DATADIR%%/tutorials/it/tutorial4.step %%DATADIR%%/tutorials/it/tutorial5.step %%DATADIR%%/tutorials/ja/tutorial1.step %%DATADIR%%/tutorials/ja/tutorial2.step %%DATADIR%%/tutorials/ja/tutorial3.step %%DATADIR%%/tutorials/ja/tutorial4.step %%DATADIR%%/tutorials/ja/tutorial5.step %%DATADIR%%/tutorials/ka/tutorial1.step %%DATADIR%%/tutorials/ka/tutorial2.step %%DATADIR%%/tutorials/ka/tutorial3.step %%DATADIR%%/tutorials/ka/tutorial4.step %%DATADIR%%/tutorials/ka/tutorial5.step %%DATADIR%%/tutorials/lt/tutorial1.step %%DATADIR%%/tutorials/lt/tutorial2.step %%DATADIR%%/tutorials/lt/tutorial3.step %%DATADIR%%/tutorials/lt/tutorial4.step %%DATADIR%%/tutorials/lt/tutorial5.step +%%DATADIR%%/tutorials/lv/tutorial1.step +%%DATADIR%%/tutorials/lv/tutorial2.step +%%DATADIR%%/tutorials/lv/tutorial3.step +%%DATADIR%%/tutorials/lv/tutorial4.step +%%DATADIR%%/tutorials/lv/tutorial5.step %%DATADIR%%/tutorials/ml/tutorial1.step %%DATADIR%%/tutorials/ml/tutorial2.step %%DATADIR%%/tutorials/ml/tutorial3.step %%DATADIR%%/tutorials/ml/tutorial4.step %%DATADIR%%/tutorials/ml/tutorial5.step %%DATADIR%%/tutorials/nl/tutorial1.step %%DATADIR%%/tutorials/nl/tutorial2.step %%DATADIR%%/tutorials/nl/tutorial3.step %%DATADIR%%/tutorials/nl/tutorial4.step %%DATADIR%%/tutorials/nl/tutorial5.step %%DATADIR%%/tutorials/pl/tutorial1.step %%DATADIR%%/tutorials/pl/tutorial2.step %%DATADIR%%/tutorials/pl/tutorial3.step %%DATADIR%%/tutorials/pl/tutorial4.step %%DATADIR%%/tutorials/pl/tutorial5.step %%DATADIR%%/tutorials/pt/tutorial1.step %%DATADIR%%/tutorials/pt/tutorial2.step %%DATADIR%%/tutorials/pt/tutorial3.step %%DATADIR%%/tutorials/pt/tutorial4.step %%DATADIR%%/tutorials/pt/tutorial5.step %%DATADIR%%/tutorials/pt_BR/tutorial1.step %%DATADIR%%/tutorials/pt_BR/tutorial2.step %%DATADIR%%/tutorials/pt_BR/tutorial3.step %%DATADIR%%/tutorials/pt_BR/tutorial4.step %%DATADIR%%/tutorials/pt_BR/tutorial5.step %%DATADIR%%/tutorials/ru/tutorial1.step %%DATADIR%%/tutorials/ru/tutorial2.step %%DATADIR%%/tutorials/ru/tutorial3.step %%DATADIR%%/tutorials/ru/tutorial4.step %%DATADIR%%/tutorials/ru/tutorial5.step %%DATADIR%%/tutorials/sk/tutorial1.step %%DATADIR%%/tutorials/sk/tutorial2.step %%DATADIR%%/tutorials/sk/tutorial3.step %%DATADIR%%/tutorials/sk/tutorial4.step %%DATADIR%%/tutorials/sk/tutorial5.step %%DATADIR%%/tutorials/sl/tutorial1.step %%DATADIR%%/tutorials/sl/tutorial2.step %%DATADIR%%/tutorials/sl/tutorial3.step %%DATADIR%%/tutorials/sl/tutorial4.step %%DATADIR%%/tutorials/sl/tutorial5.step %%DATADIR%%/tutorials/sv/tutorial1.step %%DATADIR%%/tutorials/sv/tutorial2.step %%DATADIR%%/tutorials/sv/tutorial3.step %%DATADIR%%/tutorials/sv/tutorial4.step %%DATADIR%%/tutorials/sv/tutorial5.step %%DATADIR%%/tutorials/tr/tutorial1.step %%DATADIR%%/tutorials/tr/tutorial2.step %%DATADIR%%/tutorials/tr/tutorial3.step %%DATADIR%%/tutorials/tr/tutorial4.step %%DATADIR%%/tutorials/tr/tutorial5.step %%DATADIR%%/tutorials/tutorial1.step %%DATADIR%%/tutorials/tutorial2.step %%DATADIR%%/tutorials/tutorial3.step %%DATADIR%%/tutorials/tutorial4.step %%DATADIR%%/tutorials/tutorial5.step %%DATADIR%%/tutorials/uk/tutorial1.step %%DATADIR%%/tutorials/uk/tutorial2.step %%DATADIR%%/tutorials/uk/tutorial3.step %%DATADIR%%/tutorials/uk/tutorial4.step %%DATADIR%%/tutorials/uk/tutorial5.step %%DATADIR%%/tutorials/zh_CN/tutorial1.step %%DATADIR%%/tutorials/zh_CN/tutorial2.step %%DATADIR%%/tutorials/zh_CN/tutorial3.step %%DATADIR%%/tutorials/zh_CN/tutorial4.step %%DATADIR%%/tutorials/zh_CN/tutorial5.step %%DATADIR%%/tutorials/zh_TW/tutorial1.step %%DATADIR%%/tutorials/zh_TW/tutorial2.step %%DATADIR%%/tutorials/zh_TW/tutorial3.step %%DATADIR%%/tutorials/zh_TW/tutorial4.step %%DATADIR%%/tutorials/zh_TW/tutorial5.step diff --git a/security/keysmith/distinfo b/security/keysmith/distinfo index 32a474b7923f..35f288229720 100644 --- a/security/keysmith/distinfo +++ b/security/keysmith/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1751381646 -SHA256 (KDE/release-service/25.04.3/keysmith-25.04.3.tar.xz) = 7c823ac8a6f7d70dfb0d2b8a5c4bbca5c0bfa43959671776d0178c4e5969ae90 -SIZE (KDE/release-service/25.04.3/keysmith-25.04.3.tar.xz) = 237392 +TIMESTAMP = 1754646550 +SHA256 (KDE/release-service/25.08.0/keysmith-25.08.0.tar.xz) = 0e5f21ebffb21856e22dfd2fa961f5d14c5c565a88002a32ce1f4117bad60987 +SIZE (KDE/release-service/25.08.0/keysmith-25.08.0.tar.xz) = 237728 diff --git a/security/kgpg/distinfo b/security/kgpg/distinfo index d651c8c80ffd..e639670f58dd 100644 --- a/security/kgpg/distinfo +++ b/security/kgpg/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1751381649 -SHA256 (KDE/release-service/25.04.3/kgpg-25.04.3.tar.xz) = 3f2ec6dc5b1221908730066274bd0d2f6efe5c04c2a79b720cb25dce547e0e4e -SIZE (KDE/release-service/25.04.3/kgpg-25.04.3.tar.xz) = 3048996 +TIMESTAMP = 1754646553 +SHA256 (KDE/release-service/25.08.0/kgpg-25.08.0.tar.xz) = c343f27b1d024a9497d6df81439fdfc5a6d13016725a225d7a1d195fdb002427 +SIZE (KDE/release-service/25.08.0/kgpg-25.08.0.tar.xz) = 3049812 diff --git a/security/kleopatra/Makefile b/security/kleopatra/Makefile index afa65c5857a7..82203c6914d6 100644 --- a/security/kleopatra/Makefile +++ b/security/kleopatra/Makefile @@ -1,41 +1,36 @@ PORTNAME= kleopatra DISTVERSION= ${KDE_APPLICATIONS_VERSION} CATEGORIES= security kde kde-applications -PATCH_SITES= https://invent.kde.org/pim/kleopatra/-/commit/ -PATCHFILES+= 10b618703d74618c09b5e2b16e2db9d829aed93b.patch:-p1 # Prep for Qgpgme 2.0.0 -PATCHFILES+= b1f3736de7ed3c2d4f58aa454064a4cd0f423250.patch:-p1 # Prep for Qgpgme 2.0.0 -PATCHFILES+= d4f777ffa137148302ca39d5a2238c01c896605d.patch:-p1 # Prep for Qgpgme 2.0.0 - MAINTAINER= kde@FreeBSD.org COMMENT= Certificate manager for KDE WWW= https://www.kde.org/applications/utilities/kleopatra/ LIB_DEPENDS= libassuan.so:security/libassuan \ libboost_thread.so:devel/boost-libs \ libgpgme.so:security/gpgme \ libgpg-error.so:security/libgpg-error \ libgpgmepp.so:security/gpgmepp \ libqgpgmeqt6.so:security/qgpgme@qt6 USES= cmake compiler:c++11-lang desktop-file-utils gettext kde:6 \ qt:6 shared-mime-info tar:xz xorg USE_KDE= colorscheme config coreaddons crash dbusaddons \ doctools i18n iconthemes itemmodels kio \ notifications widgetsaddons windowsystem xmlgui \ ecm:build # KDE Pim USE_KDE+= akonadimime identitymanagement libkleo mailtransport \ mime mimetreeparser USE_QT= base USE_XORG= x11 OPTIONS_DEFINE= DOCS .include .if ${COMPILER_TYPE} == clang CXXFLAGS+= -Wno-error=enum-constexpr-conversion .endif .include diff --git a/security/kleopatra/distinfo b/security/kleopatra/distinfo index 3462d27fed3b..4264a1a02270 100644 --- a/security/kleopatra/distinfo +++ b/security/kleopatra/distinfo @@ -1,9 +1,3 @@ -TIMESTAMP = 1751381652 -SHA256 (KDE/release-service/25.04.3/kleopatra-25.04.3.tar.xz) = 7c9ad9d10cd368d58cdadd41f78b8a41853b8cd2b15eb55472f3b5ce707ad1c2 -SIZE (KDE/release-service/25.04.3/kleopatra-25.04.3.tar.xz) = 2850224 -SHA256 (KDE/release-service/25.04.3/10b618703d74618c09b5e2b16e2db9d829aed93b.patch) = 75f5c94d85eadad74dcef21f66c019946217a051a9e8b90803d5eceaadb3fcd4 -SIZE (KDE/release-service/25.04.3/10b618703d74618c09b5e2b16e2db9d829aed93b.patch) = 1241 -SHA256 (KDE/release-service/25.04.3/b1f3736de7ed3c2d4f58aa454064a4cd0f423250.patch) = c2796b58683b07eabeae48a517192460c474a1722d7022e796b94df6553d933d -SIZE (KDE/release-service/25.04.3/b1f3736de7ed3c2d4f58aa454064a4cd0f423250.patch) = 1585 -SHA256 (KDE/release-service/25.04.3/d4f777ffa137148302ca39d5a2238c01c896605d.patch) = 0120d812f9a57cbd4a5a2718fbbc9acef090841701cb2c6b4f11a596986840e6 -SIZE (KDE/release-service/25.04.3/d4f777ffa137148302ca39d5a2238c01c896605d.patch) = 1573 +TIMESTAMP = 1754646555 +SHA256 (KDE/release-service/25.08.0/kleopatra-25.08.0.tar.xz) = f3cba816041732ed915e4941f728f04ef9cb3129f31d845bfe8df3f4e0f0b3db +SIZE (KDE/release-service/25.08.0/kleopatra-25.08.0.tar.xz) = 2861400 diff --git a/security/kpkpass/distinfo b/security/kpkpass/distinfo index 0a1d98b0270a..ee3a7ed3c2ea 100644 --- a/security/kpkpass/distinfo +++ b/security/kpkpass/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1751381655 -SHA256 (KDE/release-service/25.04.3/kpkpass-25.04.3.tar.xz) = 68a9a069cd2ed7c911b6c4a515feec75a88507a445294d5a5391bbb8030081de -SIZE (KDE/release-service/25.04.3/kpkpass-25.04.3.tar.xz) = 29684 +TIMESTAMP = 1754646557 +SHA256 (KDE/release-service/25.08.0/kpkpass-25.08.0.tar.xz) = 2ee2a25ff90f23026dd687e2b62ac1a908c1c55fdf685a42583d67472a1badbb +SIZE (KDE/release-service/25.08.0/kpkpass-25.08.0.tar.xz) = 31868 diff --git a/security/kwalletmanager/distinfo b/security/kwalletmanager/distinfo index 0f541d8d4a38..84d27d4eab2b 100644 --- a/security/kwalletmanager/distinfo +++ b/security/kwalletmanager/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1751381657 -SHA256 (KDE/release-service/25.04.3/kwalletmanager-25.04.3.tar.xz) = 25b66d8e3da9548ecb0236fd0cfc50d6e98a385ca2092d6565f75a753f3229ea -SIZE (KDE/release-service/25.04.3/kwalletmanager-25.04.3.tar.xz) = 1053004 +TIMESTAMP = 1754646560 +SHA256 (KDE/release-service/25.08.0/kwalletmanager-25.08.0.tar.xz) = 0110bbc55733392f49d2de333082d29c1929a1073af27799f6c277289c8359a3 +SIZE (KDE/release-service/25.08.0/kwalletmanager-25.08.0.tar.xz) = 1052868 diff --git a/security/libkleo/distinfo b/security/libkleo/distinfo index 7d0f179e2181..e75aa8c676d4 100644 --- a/security/libkleo/distinfo +++ b/security/libkleo/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1751381660 -SHA256 (KDE/release-service/25.04.3/libkleo-25.04.3.tar.xz) = 7c9b334b226c990d5193b2e66a3ce8de1c5ea6c2afc9175280e6f44d02a7caa8 -SIZE (KDE/release-service/25.04.3/libkleo-25.04.3.tar.xz) = 655108 +TIMESTAMP = 1754646562 +SHA256 (KDE/release-service/25.08.0/libkleo-25.08.0.tar.xz) = 20c9553c7652f8bc59949cf4b92711c7b0e5a486fc4b10d851346439056d2bd4 +SIZE (KDE/release-service/25.08.0/libkleo-25.08.0.tar.xz) = 663320 diff --git a/security/libkleo/pkg-plist b/security/libkleo/pkg-plist index a896f4faa23f..25a2223e34e3 100644 --- a/security/libkleo/pkg-plist +++ b/security/libkleo/pkg-plist @@ -1,242 +1,245 @@ etc/xdg/libkleopatrarc include/KPim6/Libkleo/Libkleo/Algorithm +include/KPim6/Libkleo/Libkleo/ApplicationPaletteWatcher include/KPim6/Libkleo/Libkleo/Assuan include/KPim6/Libkleo/Libkleo/AuditLogEntry include/KPim6/Libkleo/Libkleo/AuditLogViewer include/KPim6/Libkleo/Libkleo/ChecksumDefinition include/KPim6/Libkleo/Libkleo/Chrono include/KPim6/Libkleo/Libkleo/Classify include/KPim6/Libkleo/Libkleo/Compat include/KPim6/Libkleo/Libkleo/Compliance include/KPim6/Libkleo/Libkleo/CryptoConfig include/KPim6/Libkleo/Libkleo/CryptoConfigModule include/KPim6/Libkleo/Libkleo/DNAttributeOrderConfigWidget include/KPim6/Libkleo/Libkleo/Debug include/KPim6/Libkleo/Libkleo/DefaultKeyFilter include/KPim6/Libkleo/Libkleo/DefaultKeyGenerationJob include/KPim6/Libkleo/Libkleo/DirectoryServicesWidget include/KPim6/Libkleo/Libkleo/Dn +include/KPim6/Libkleo/Libkleo/DnAttributes include/KPim6/Libkleo/Libkleo/DocAction include/KPim6/Libkleo/Libkleo/EditDirectoryServiceDialog include/KPim6/Libkleo/Libkleo/Enum include/KPim6/Libkleo/Libkleo/ErrorLabel include/KPim6/Libkleo/Libkleo/Expiration include/KPim6/Libkleo/Libkleo/ExpiryChecker include/KPim6/Libkleo/Libkleo/ExpiryCheckerConfig include/KPim6/Libkleo/Libkleo/ExpiryCheckerSettings include/KPim6/Libkleo/Libkleo/FileNameRequester include/KPim6/Libkleo/Libkleo/FileSystemWatcher include/KPim6/Libkleo/Libkleo/Formatting include/KPim6/Libkleo/Libkleo/GnuPG include/KPim6/Libkleo/Libkleo/Hex include/KPim6/Libkleo/Libkleo/KConfigBasedKeyFilter include/KPim6/Libkleo/Libkleo/KeyApprovalDialog include/KPim6/Libkleo/Libkleo/KeyCache include/KPim6/Libkleo/Libkleo/KeyFilter include/KPim6/Libkleo/Libkleo/KeyFilterManager include/KPim6/Libkleo/Libkleo/KeyGroup include/KPim6/Libkleo/Libkleo/KeyGroupConfig include/KPim6/Libkleo/Libkleo/KeyGroupImportExport include/KPim6/Libkleo/Libkleo/KeyHelpers include/KPim6/Libkleo/Libkleo/KeyList include/KPim6/Libkleo/Libkleo/KeyListModel include/KPim6/Libkleo/Libkleo/KeyListModelInterface include/KPim6/Libkleo/Libkleo/KeyListSortFilterProxyModel include/KPim6/Libkleo/Libkleo/KeyListView include/KPim6/Libkleo/Libkleo/KeyParameters include/KPim6/Libkleo/Libkleo/KeyRearrangeColumnsProxyModel include/KPim6/Libkleo/Libkleo/KeyRequester include/KPim6/Libkleo/Libkleo/KeyResolver include/KPim6/Libkleo/Libkleo/KeyResolverCore include/KPim6/Libkleo/Libkleo/KeySelectionCombo include/KPim6/Libkleo/Libkleo/KeySelectionDialog include/KPim6/Libkleo/Libkleo/KeyUsage include/KPim6/Libkleo/Libkleo/KeyserverConfig include/KPim6/Libkleo/Libkleo/KleoException include/KPim6/Libkleo/Libkleo/MessageBox include/KPim6/Libkleo/Libkleo/NameAndEmailWidget include/KPim6/Libkleo/Libkleo/NewKeyApprovalDialog include/KPim6/Libkleo/Libkleo/OidMap include/KPim6/Libkleo/Libkleo/OpenPGPCertificateCreationDialog include/KPim6/Libkleo/Libkleo/Predicates include/KPim6/Libkleo/Libkleo/ProgressDialog include/KPim6/Libkleo/Libkleo/QtStlHelpers include/KPim6/Libkleo/Libkleo/ReaderPortSelection include/KPim6/Libkleo/Libkleo/SCDaemon include/KPim6/Libkleo/Libkleo/Stl_Util include/KPim6/Libkleo/Libkleo/StringUtils include/KPim6/Libkleo/Libkleo/SubkeyListModel include/KPim6/Libkleo/Libkleo/SystemInfo include/KPim6/Libkleo/Libkleo/Test include/KPim6/Libkleo/Libkleo/TreeView include/KPim6/Libkleo/Libkleo/TreeWidget -include/KPim6/Libkleo/Libkleo/UniqueLock include/KPim6/Libkleo/Libkleo/UserIDListModel include/KPim6/Libkleo/Libkleo/UserIDListProxyModel include/KPim6/Libkleo/Libkleo/UserIDProxyModel include/KPim6/Libkleo/Libkleo/UserIDSelectionCombo include/KPim6/Libkleo/Libkleo/Validation include/KPim6/Libkleo/libkleo/algorithm.h +include/KPim6/Libkleo/libkleo/applicationpalettewatcher.h include/KPim6/Libkleo/libkleo/assuan.h include/KPim6/Libkleo/libkleo/auditlogentry.h include/KPim6/Libkleo/libkleo/auditlogviewer.h include/KPim6/Libkleo/libkleo/checksumdefinition.h include/KPim6/Libkleo/libkleo/chrono.h include/KPim6/Libkleo/libkleo/classify.h include/KPim6/Libkleo/libkleo/classifyconfig.h include/KPim6/Libkleo/libkleo/compat.h include/KPim6/Libkleo/libkleo/compliance.h include/KPim6/Libkleo/libkleo/cryptoconfig.h include/KPim6/Libkleo/libkleo/cryptoconfigmodule.h include/KPim6/Libkleo/libkleo/debug.h include/KPim6/Libkleo/libkleo/defaultkeyfilter.h include/KPim6/Libkleo/libkleo/defaultkeygenerationjob.h include/KPim6/Libkleo/libkleo/directoryserviceswidget.h include/KPim6/Libkleo/libkleo/dn.h include/KPim6/Libkleo/libkleo/dnattributeorderconfigwidget.h +include/KPim6/Libkleo/libkleo/dnattributes.h include/KPim6/Libkleo/libkleo/docaction.h include/KPim6/Libkleo/libkleo/editdirectoryservicedialog.h include/KPim6/Libkleo/libkleo/enum.h include/KPim6/Libkleo/libkleo/errorlabel.h include/KPim6/Libkleo/libkleo/expiration.h include/KPim6/Libkleo/libkleo/expirychecker.h include/KPim6/Libkleo/libkleo/expirycheckerconfig.h include/KPim6/Libkleo/libkleo/expirycheckerconfigbase.h include/KPim6/Libkleo/libkleo/expirycheckersettings.h include/KPim6/Libkleo/libkleo/filenamerequester.h include/KPim6/Libkleo/libkleo/filesystemwatcher.h include/KPim6/Libkleo/libkleo/formatting.h include/KPim6/Libkleo/libkleo/gnupg.h include/KPim6/Libkleo/libkleo/hex.h include/KPim6/Libkleo/libkleo/kconfigbasedkeyfilter.h include/KPim6/Libkleo/libkleo/keyapprovaldialog.h include/KPim6/Libkleo/libkleo/keycache.h include/KPim6/Libkleo/libkleo/keyfilter.h include/KPim6/Libkleo/libkleo/keyfiltermanager.h include/KPim6/Libkleo/libkleo/keygroup.h include/KPim6/Libkleo/libkleo/keygroupconfig.h include/KPim6/Libkleo/libkleo/keygroupimportexport.h include/KPim6/Libkleo/libkleo/keyhelpers.h include/KPim6/Libkleo/libkleo/keylist.h include/KPim6/Libkleo/libkleo/keylistmodel.h include/KPim6/Libkleo/libkleo/keylistmodelinterface.h include/KPim6/Libkleo/libkleo/keylistsortfilterproxymodel.h include/KPim6/Libkleo/libkleo/keylistview.h include/KPim6/Libkleo/libkleo/keyparameters.h include/KPim6/Libkleo/libkleo/keyrearrangecolumnsproxymodel.h include/KPim6/Libkleo/libkleo/keyrequester.h include/KPim6/Libkleo/libkleo/keyresolver.h include/KPim6/Libkleo/libkleo/keyresolvercore.h include/KPim6/Libkleo/libkleo/keyselectioncombo.h include/KPim6/Libkleo/libkleo/keyselectiondialog.h include/KPim6/Libkleo/libkleo/keyserverconfig.h include/KPim6/Libkleo/libkleo/keyusage.h include/KPim6/Libkleo/libkleo/kleo_export.h include/KPim6/Libkleo/libkleo/kleoexception.h include/KPim6/Libkleo/libkleo/messagebox.h include/KPim6/Libkleo/libkleo/nameandemailwidget.h include/KPim6/Libkleo/libkleo/newkeyapprovaldialog.h include/KPim6/Libkleo/libkleo/oidmap.h include/KPim6/Libkleo/libkleo/openpgpcertificatecreationdialog.h include/KPim6/Libkleo/libkleo/predicates.h include/KPim6/Libkleo/libkleo/progressdialog.h include/KPim6/Libkleo/libkleo/qtstlhelpers.h include/KPim6/Libkleo/libkleo/readerportselection.h include/KPim6/Libkleo/libkleo/scdaemon.h include/KPim6/Libkleo/libkleo/stl_util.h include/KPim6/Libkleo/libkleo/stringutils.h include/KPim6/Libkleo/libkleo/subkeylistmodel.h include/KPim6/Libkleo/libkleo/systeminfo.h include/KPim6/Libkleo/libkleo/test.h include/KPim6/Libkleo/libkleo/treeview.h include/KPim6/Libkleo/libkleo/treewidget.h -include/KPim6/Libkleo/libkleo/uniquelock.h include/KPim6/Libkleo/libkleo/useridlistmodel.h include/KPim6/Libkleo/libkleo/useridlistproxymodel.h include/KPim6/Libkleo/libkleo/useridproxymodel.h include/KPim6/Libkleo/libkleo/useridselectioncombo.h include/KPim6/Libkleo/libkleo/validation.h include/KPim6/Libkleo/libkleo_version.h lib/cmake/KPim6Libkleo/KPim6LibkleoConfig.cmake lib/cmake/KPim6Libkleo/KPim6LibkleoConfigVersion.cmake lib/cmake/KPim6Libkleo/KPim6LibkleoTargets-%%CMAKE_BUILD_TYPE%%.cmake lib/cmake/KPim6Libkleo/KPim6LibkleoTargets.cmake lib/libKPim6Libkleo.so lib/libKPim6Libkleo.so.6 lib/libKPim6Libkleo.so.%%KDE_APPLICATIONS_SHLIB_VER%% share/KPim6Libkleo/find-modules/FindLibAssuan.cmake share/KPim6Libkleo/find-modules/FindLibGpgError.cmake %%DATADIR%%patra/pics/smartcard.xpm share/locale/ar/LC_MESSAGES/libkleopatra6.mo share/locale/ast/LC_MESSAGES/libkleopatra6.mo share/locale/be/LC_MESSAGES/libkleopatra6.mo share/locale/bg/LC_MESSAGES/libkleopatra6.mo share/locale/br/LC_MESSAGES/libkleopatra6.mo share/locale/bs/LC_MESSAGES/libkleopatra6.mo share/locale/ca/LC_MESSAGES/libkleopatra6.mo share/locale/ca@valencia/LC_MESSAGES/libkleopatra6.mo share/locale/cs/LC_MESSAGES/libkleopatra6.mo share/locale/cy/LC_MESSAGES/libkleopatra6.mo share/locale/da/LC_MESSAGES/libkleopatra6.mo share/locale/de/LC_MESSAGES/libkleopatra6.mo share/locale/el/LC_MESSAGES/libkleopatra6.mo share/locale/en_GB/LC_MESSAGES/libkleopatra6.mo share/locale/eo/LC_MESSAGES/libkleopatra6.mo share/locale/es/LC_MESSAGES/libkleopatra6.mo share/locale/et/LC_MESSAGES/libkleopatra6.mo share/locale/eu/LC_MESSAGES/libkleopatra6.mo share/locale/fa/LC_MESSAGES/libkleopatra6.mo share/locale/fi/LC_MESSAGES/libkleopatra6.mo share/locale/fr/LC_MESSAGES/libkleopatra6.mo share/locale/fy/LC_MESSAGES/libkleopatra6.mo share/locale/ga/LC_MESSAGES/libkleopatra6.mo share/locale/gl/LC_MESSAGES/libkleopatra6.mo +share/locale/he/LC_MESSAGES/libkleopatra6.mo share/locale/hi/LC_MESSAGES/libkleopatra6.mo share/locale/hne/LC_MESSAGES/libkleopatra6.mo share/locale/hr/LC_MESSAGES/libkleopatra6.mo share/locale/hu/LC_MESSAGES/libkleopatra6.mo share/locale/ia/LC_MESSAGES/libkleopatra6.mo share/locale/ie/LC_MESSAGES/libkleopatra6.mo share/locale/is/LC_MESSAGES/libkleopatra6.mo share/locale/it/LC_MESSAGES/libkleopatra6.mo share/locale/ja/LC_MESSAGES/libkleopatra6.mo share/locale/ka/LC_MESSAGES/libkleopatra6.mo share/locale/kk/LC_MESSAGES/libkleopatra6.mo share/locale/km/LC_MESSAGES/libkleopatra6.mo share/locale/ko/LC_MESSAGES/libkleopatra6.mo share/locale/lt/LC_MESSAGES/libkleopatra6.mo share/locale/lv/LC_MESSAGES/libkleopatra6.mo share/locale/mai/LC_MESSAGES/libkleopatra6.mo share/locale/mk/LC_MESSAGES/libkleopatra6.mo share/locale/mr/LC_MESSAGES/libkleopatra6.mo share/locale/ms/LC_MESSAGES/libkleopatra6.mo share/locale/nb/LC_MESSAGES/libkleopatra6.mo share/locale/nds/LC_MESSAGES/libkleopatra6.mo share/locale/ne/LC_MESSAGES/libkleopatra6.mo share/locale/nl/LC_MESSAGES/libkleopatra6.mo share/locale/nn/LC_MESSAGES/libkleopatra6.mo share/locale/pa/LC_MESSAGES/libkleopatra6.mo share/locale/pl/LC_MESSAGES/libkleopatra6.mo share/locale/pt/LC_MESSAGES/libkleopatra6.mo share/locale/pt_BR/LC_MESSAGES/libkleopatra6.mo share/locale/ro/LC_MESSAGES/libkleopatra6.mo share/locale/ru/LC_MESSAGES/libkleopatra6.mo share/locale/sa/LC_MESSAGES/libkleopatra6.mo share/locale/se/LC_MESSAGES/libkleopatra6.mo share/locale/sk/LC_MESSAGES/libkleopatra6.mo share/locale/sl/LC_MESSAGES/libkleopatra6.mo share/locale/sq/LC_MESSAGES/libkleopatra6.mo share/locale/sr/LC_MESSAGES/libkleopatra6.mo share/locale/sr@ijekavian/LC_MESSAGES/libkleopatra6.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/libkleopatra6.mo share/locale/sr@latin/LC_MESSAGES/libkleopatra6.mo share/locale/sv/LC_MESSAGES/libkleopatra6.mo share/locale/ta/LC_MESSAGES/libkleopatra6.mo share/locale/tg/LC_MESSAGES/libkleopatra6.mo share/locale/tr/LC_MESSAGES/libkleopatra6.mo share/locale/ug/LC_MESSAGES/libkleopatra6.mo share/locale/uk/LC_MESSAGES/libkleopatra6.mo share/locale/zh_CN/LC_MESSAGES/libkleopatra6.mo share/locale/zh_TW/LC_MESSAGES/libkleopatra6.mo share/qlogging-categories6/libkleo.categories share/qlogging-categories6/libkleo.renamecategories diff --git a/sysutils/baloo-widgets/distinfo b/sysutils/baloo-widgets/distinfo index 479e0ffe9884..ed2fc6b6bc90 100644 --- a/sysutils/baloo-widgets/distinfo +++ b/sysutils/baloo-widgets/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1751381662 -SHA256 (KDE/release-service/25.04.3/baloo-widgets-25.04.3.tar.xz) = 62bf1d167d0e17474d8b47d49036296a891009f0fb5aeff21293c7977f6e9166 -SIZE (KDE/release-service/25.04.3/baloo-widgets-25.04.3.tar.xz) = 276732 +TIMESTAMP = 1754646565 +SHA256 (KDE/release-service/25.08.0/baloo-widgets-25.08.0.tar.xz) = c77e3a761db3cfc13c96a1436bf6d733965142bad30e89001c979119bb8ebb24 +SIZE (KDE/release-service/25.08.0/baloo-widgets-25.08.0.tar.xz) = 276748 diff --git a/sysutils/filelight/distinfo b/sysutils/filelight/distinfo index 8f25c625248c..e4d6730f001a 100644 --- a/sysutils/filelight/distinfo +++ b/sysutils/filelight/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1751381665 -SHA256 (KDE/release-service/25.04.3/filelight-25.04.3.tar.xz) = 0f6d96addcdcc6a4ed6a19539547a8a80bdc098fffb768885a3464e441a91acd -SIZE (KDE/release-service/25.04.3/filelight-25.04.3.tar.xz) = 688736 +TIMESTAMP = 1754646567 +SHA256 (KDE/release-service/25.08.0/filelight-25.08.0.tar.xz) = 6080649ed7621178a7aeff1d3070629caa3d91da4978bcc5b568c75bedf53185 +SIZE (KDE/release-service/25.08.0/filelight-25.08.0.tar.xz) = 690388 diff --git a/sysutils/filelight/pkg-plist b/sysutils/filelight/pkg-plist index cc6bec25c246..07d786928a77 100644 --- a/sysutils/filelight/pkg-plist +++ b/sysutils/filelight/pkg-plist @@ -1,70 +1,71 @@ bin/filelight etc/xdg/filelightrc share/applications/org.kde.filelight.desktop share/icons/hicolor/128x128/apps/filelight.png share/icons/hicolor/16x16/apps/filelight.png share/icons/hicolor/22x22/apps/filelight.png share/icons/hicolor/32x32/apps/filelight.png share/icons/hicolor/48x48/apps/filelight.png share/icons/hicolor/64x64/apps/filelight.png +share/kio/servicemenus/filelight.desktop share/locale/ar/LC_MESSAGES/filelight.mo share/locale/ast/LC_MESSAGES/filelight.mo share/locale/az/LC_MESSAGES/filelight.mo share/locale/bg/LC_MESSAGES/filelight.mo share/locale/bs/LC_MESSAGES/filelight.mo share/locale/ca/LC_MESSAGES/filelight.mo share/locale/ca@valencia/LC_MESSAGES/filelight.mo share/locale/cs/LC_MESSAGES/filelight.mo share/locale/da/LC_MESSAGES/filelight.mo share/locale/de/LC_MESSAGES/filelight.mo share/locale/el/LC_MESSAGES/filelight.mo share/locale/en_GB/LC_MESSAGES/filelight.mo share/locale/eo/LC_MESSAGES/filelight.mo share/locale/es/LC_MESSAGES/filelight.mo share/locale/et/LC_MESSAGES/filelight.mo share/locale/eu/LC_MESSAGES/filelight.mo share/locale/fi/LC_MESSAGES/filelight.mo share/locale/fr/LC_MESSAGES/filelight.mo share/locale/ga/LC_MESSAGES/filelight.mo share/locale/gl/LC_MESSAGES/filelight.mo share/locale/he/LC_MESSAGES/filelight.mo share/locale/hi/LC_MESSAGES/filelight.mo share/locale/hu/LC_MESSAGES/filelight.mo share/locale/ia/LC_MESSAGES/filelight.mo share/locale/id/LC_MESSAGES/filelight.mo share/locale/ie/LC_MESSAGES/filelight.mo share/locale/is/LC_MESSAGES/filelight.mo share/locale/it/LC_MESSAGES/filelight.mo share/locale/ja/LC_MESSAGES/filelight.mo share/locale/ka/LC_MESSAGES/filelight.mo share/locale/kk/LC_MESSAGES/filelight.mo share/locale/ko/LC_MESSAGES/filelight.mo share/locale/lt/LC_MESSAGES/filelight.mo share/locale/lv/LC_MESSAGES/filelight.mo share/locale/mr/LC_MESSAGES/filelight.mo share/locale/nb/LC_MESSAGES/filelight.mo share/locale/nds/LC_MESSAGES/filelight.mo share/locale/nl/LC_MESSAGES/filelight.mo share/locale/nn/LC_MESSAGES/filelight.mo share/locale/pa/LC_MESSAGES/filelight.mo share/locale/pl/LC_MESSAGES/filelight.mo share/locale/pt/LC_MESSAGES/filelight.mo share/locale/pt_BR/LC_MESSAGES/filelight.mo share/locale/ro/LC_MESSAGES/filelight.mo share/locale/ru/LC_MESSAGES/filelight.mo share/locale/sa/LC_MESSAGES/filelight.mo share/locale/sk/LC_MESSAGES/filelight.mo share/locale/sl/LC_MESSAGES/filelight.mo share/locale/sr/LC_MESSAGES/filelight.mo share/locale/sr@ijekavian/LC_MESSAGES/filelight.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/filelight.mo share/locale/sr@latin/LC_MESSAGES/filelight.mo share/locale/sv/LC_MESSAGES/filelight.mo share/locale/ta/LC_MESSAGES/filelight.mo share/locale/tr/LC_MESSAGES/filelight.mo share/locale/ug/LC_MESSAGES/filelight.mo share/locale/uk/LC_MESSAGES/filelight.mo share/locale/zh_CN/LC_MESSAGES/filelight.mo share/locale/zh_TW/LC_MESSAGES/filelight.mo share/metainfo/org.kde.filelight.appdata.xml share/qlogging-categories6/filelight.categories diff --git a/sysutils/k3b/distinfo b/sysutils/k3b/distinfo index 5151e8ee5470..a6501349ca1a 100644 --- a/sysutils/k3b/distinfo +++ b/sysutils/k3b/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1751381667 -SHA256 (KDE/release-service/25.04.3/k3b-25.04.3.tar.xz) = a24b72a42bde0eb4f0501fee66030fe728636afaceeb5c8acdb224bb8eb7a3b5 -SIZE (KDE/release-service/25.04.3/k3b-25.04.3.tar.xz) = 10756508 +TIMESTAMP = 1754646570 +SHA256 (KDE/release-service/25.08.0/k3b-25.08.0.tar.xz) = ebe967543a9256ef07cfdef03766b10ba39cb43fc0bc05cd53fc0d8d8bb3fb7b +SIZE (KDE/release-service/25.08.0/k3b-25.08.0.tar.xz) = 10757140 diff --git a/sysutils/kbackup/distinfo b/sysutils/kbackup/distinfo index c5773c1a9ee5..eca8d6b91034 100644 --- a/sysutils/kbackup/distinfo +++ b/sysutils/kbackup/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1751381669 -SHA256 (KDE/release-service/25.04.3/kbackup-25.04.3.tar.xz) = 610957f2f41e7bf23d8b80ad336c7535291935b5190d371c7f948a192d63efcf -SIZE (KDE/release-service/25.04.3/kbackup-25.04.3.tar.xz) = 394788 +TIMESTAMP = 1754646572 +SHA256 (KDE/release-service/25.08.0/kbackup-25.08.0.tar.xz) = 7ffa564b62c860dd8127231ac50a8aba659a7515e1d4270d53caae817c57e4ee +SIZE (KDE/release-service/25.08.0/kbackup-25.08.0.tar.xz) = 394852 diff --git a/sysutils/kcron/distinfo b/sysutils/kcron/distinfo index 9c12eda39f2b..a061b9f59dfb 100644 --- a/sysutils/kcron/distinfo +++ b/sysutils/kcron/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1751381672 -SHA256 (KDE/release-service/25.04.3/kcron-25.04.3.tar.xz) = bf463a561c4512fae6baf4d1746d96045c717a46acb66ae44969885ea0b6cd03 -SIZE (KDE/release-service/25.04.3/kcron-25.04.3.tar.xz) = 899880 +TIMESTAMP = 1754646574 +SHA256 (KDE/release-service/25.08.0/kcron-25.08.0.tar.xz) = f70ead6ee251759395c1f6415370d5c70f8572520df119db85ca494b751babfb +SIZE (KDE/release-service/25.08.0/kcron-25.08.0.tar.xz) = 900448 diff --git a/sysutils/kcron/pkg-plist b/sysutils/kcron/pkg-plist index df1a3948f39f..43453e56966f 100644 --- a/sysutils/kcron/pkg-plist +++ b/sysutils/kcron/pkg-plist @@ -1,85 +1,85 @@ lib/libexec/kf6/kauth/kcron_helper %%QT_PLUGINDIR%%/plasma/kcms/systemsettings/kcm_cron.so share/applications/kcm_cron.desktop share/dbus-1/system-services/local.kcron.crontab.service share/dbus-1/system.d/local.kcron.crontab.conf -share/locale/af/LC_MESSAGES/kcron.mo -share/locale/ar/LC_MESSAGES/kcron.mo -share/locale/ast/LC_MESSAGES/kcron.mo -share/locale/be/LC_MESSAGES/kcron.mo -share/locale/bg/LC_MESSAGES/kcron.mo -share/locale/br/LC_MESSAGES/kcron.mo -share/locale/bs/LC_MESSAGES/kcron.mo -share/locale/ca/LC_MESSAGES/kcron.mo -share/locale/ca@valencia/LC_MESSAGES/kcron.mo -share/locale/cs/LC_MESSAGES/kcron.mo -share/locale/cy/LC_MESSAGES/kcron.mo -share/locale/da/LC_MESSAGES/kcron.mo -share/locale/de/LC_MESSAGES/kcron.mo -share/locale/el/LC_MESSAGES/kcron.mo -share/locale/en_GB/LC_MESSAGES/kcron.mo -share/locale/eo/LC_MESSAGES/kcron.mo -share/locale/es/LC_MESSAGES/kcron.mo -share/locale/et/LC_MESSAGES/kcron.mo -share/locale/eu/LC_MESSAGES/kcron.mo -share/locale/fa/LC_MESSAGES/kcron.mo -share/locale/fi/LC_MESSAGES/kcron.mo -share/locale/fr/LC_MESSAGES/kcron.mo -share/locale/ga/LC_MESSAGES/kcron.mo -share/locale/gl/LC_MESSAGES/kcron.mo -share/locale/he/LC_MESSAGES/kcron.mo -share/locale/hi/LC_MESSAGES/kcron.mo -share/locale/hne/LC_MESSAGES/kcron.mo -share/locale/hr/LC_MESSAGES/kcron.mo -share/locale/hu/LC_MESSAGES/kcron.mo -share/locale/ia/LC_MESSAGES/kcron.mo -share/locale/is/LC_MESSAGES/kcron.mo -share/locale/it/LC_MESSAGES/kcron.mo -share/locale/ja/LC_MESSAGES/kcron.mo -share/locale/ka/LC_MESSAGES/kcron.mo -share/locale/kk/LC_MESSAGES/kcron.mo -share/locale/km/LC_MESSAGES/kcron.mo -share/locale/ko/LC_MESSAGES/kcron.mo -share/locale/ku/LC_MESSAGES/kcron.mo -share/locale/lt/LC_MESSAGES/kcron.mo -share/locale/lv/LC_MESSAGES/kcron.mo -share/locale/mk/LC_MESSAGES/kcron.mo -share/locale/mr/LC_MESSAGES/kcron.mo -share/locale/ms/LC_MESSAGES/kcron.mo -share/locale/nb/LC_MESSAGES/kcron.mo -share/locale/nds/LC_MESSAGES/kcron.mo -share/locale/ne/LC_MESSAGES/kcron.mo -share/locale/nl/LC_MESSAGES/kcron.mo -share/locale/nn/LC_MESSAGES/kcron.mo -share/locale/oc/LC_MESSAGES/kcron.mo -share/locale/pa/LC_MESSAGES/kcron.mo -share/locale/pl/LC_MESSAGES/kcron.mo -share/locale/pt/LC_MESSAGES/kcron.mo -share/locale/pt_BR/LC_MESSAGES/kcron.mo -share/locale/ro/LC_MESSAGES/kcron.mo -share/locale/ru/LC_MESSAGES/kcron.mo -share/locale/sa/LC_MESSAGES/kcron.mo -share/locale/se/LC_MESSAGES/kcron.mo -share/locale/sk/LC_MESSAGES/kcron.mo -share/locale/sl/LC_MESSAGES/kcron.mo -share/locale/sq/LC_MESSAGES/kcron.mo -share/locale/sr/LC_MESSAGES/kcron.mo -share/locale/sr@ijekavian/LC_MESSAGES/kcron.mo -share/locale/sr@ijekavianlatin/LC_MESSAGES/kcron.mo -share/locale/sr@latin/LC_MESSAGES/kcron.mo -share/locale/sv/LC_MESSAGES/kcron.mo -share/locale/ta/LC_MESSAGES/kcron.mo -share/locale/tg/LC_MESSAGES/kcron.mo -share/locale/th/LC_MESSAGES/kcron.mo -share/locale/tr/LC_MESSAGES/kcron.mo -share/locale/ug/LC_MESSAGES/kcron.mo -share/locale/uk/LC_MESSAGES/kcron.mo -share/locale/vi/LC_MESSAGES/kcron.mo -share/locale/wa/LC_MESSAGES/kcron.mo -share/locale/xh/LC_MESSAGES/kcron.mo -share/locale/zh_CN/LC_MESSAGES/kcron.mo -share/locale/zh_HK/LC_MESSAGES/kcron.mo -share/locale/zh_TW/LC_MESSAGES/kcron.mo +share/locale/af/LC_MESSAGES/kcm_kcron.mo +share/locale/ar/LC_MESSAGES/kcm_kcron.mo +share/locale/ast/LC_MESSAGES/kcm_kcron.mo +share/locale/be/LC_MESSAGES/kcm_kcron.mo +share/locale/bg/LC_MESSAGES/kcm_kcron.mo +share/locale/br/LC_MESSAGES/kcm_kcron.mo +share/locale/bs/LC_MESSAGES/kcm_kcron.mo +share/locale/ca/LC_MESSAGES/kcm_kcron.mo +share/locale/ca@valencia/LC_MESSAGES/kcm_kcron.mo +share/locale/cs/LC_MESSAGES/kcm_kcron.mo +share/locale/cy/LC_MESSAGES/kcm_kcron.mo +share/locale/da/LC_MESSAGES/kcm_kcron.mo +share/locale/de/LC_MESSAGES/kcm_kcron.mo +share/locale/el/LC_MESSAGES/kcm_kcron.mo +share/locale/en_GB/LC_MESSAGES/kcm_kcron.mo +share/locale/eo/LC_MESSAGES/kcm_kcron.mo +share/locale/es/LC_MESSAGES/kcm_kcron.mo +share/locale/et/LC_MESSAGES/kcm_kcron.mo +share/locale/eu/LC_MESSAGES/kcm_kcron.mo +share/locale/fa/LC_MESSAGES/kcm_kcron.mo +share/locale/fi/LC_MESSAGES/kcm_kcron.mo +share/locale/fr/LC_MESSAGES/kcm_kcron.mo +share/locale/ga/LC_MESSAGES/kcm_kcron.mo +share/locale/gl/LC_MESSAGES/kcm_kcron.mo +share/locale/he/LC_MESSAGES/kcm_kcron.mo +share/locale/hi/LC_MESSAGES/kcm_kcron.mo +share/locale/hne/LC_MESSAGES/kcm_kcron.mo +share/locale/hr/LC_MESSAGES/kcm_kcron.mo +share/locale/hu/LC_MESSAGES/kcm_kcron.mo +share/locale/ia/LC_MESSAGES/kcm_kcron.mo +share/locale/is/LC_MESSAGES/kcm_kcron.mo +share/locale/it/LC_MESSAGES/kcm_kcron.mo +share/locale/ja/LC_MESSAGES/kcm_kcron.mo +share/locale/ka/LC_MESSAGES/kcm_kcron.mo +share/locale/kk/LC_MESSAGES/kcm_kcron.mo +share/locale/km/LC_MESSAGES/kcm_kcron.mo +share/locale/ko/LC_MESSAGES/kcm_kcron.mo +share/locale/ku/LC_MESSAGES/kcm_kcron.mo +share/locale/lt/LC_MESSAGES/kcm_kcron.mo +share/locale/lv/LC_MESSAGES/kcm_kcron.mo +share/locale/mk/LC_MESSAGES/kcm_kcron.mo +share/locale/mr/LC_MESSAGES/kcm_kcron.mo +share/locale/ms/LC_MESSAGES/kcm_kcron.mo +share/locale/nb/LC_MESSAGES/kcm_kcron.mo +share/locale/nds/LC_MESSAGES/kcm_kcron.mo +share/locale/ne/LC_MESSAGES/kcm_kcron.mo +share/locale/nl/LC_MESSAGES/kcm_kcron.mo +share/locale/nn/LC_MESSAGES/kcm_kcron.mo +share/locale/oc/LC_MESSAGES/kcm_kcron.mo +share/locale/pa/LC_MESSAGES/kcm_kcron.mo +share/locale/pl/LC_MESSAGES/kcm_kcron.mo +share/locale/pt/LC_MESSAGES/kcm_kcron.mo +share/locale/pt_BR/LC_MESSAGES/kcm_kcron.mo +share/locale/ro/LC_MESSAGES/kcm_kcron.mo +share/locale/ru/LC_MESSAGES/kcm_kcron.mo +share/locale/sa/LC_MESSAGES/kcm_kcron.mo +share/locale/se/LC_MESSAGES/kcm_kcron.mo +share/locale/sk/LC_MESSAGES/kcm_kcron.mo +share/locale/sl/LC_MESSAGES/kcm_kcron.mo +share/locale/sq/LC_MESSAGES/kcm_kcron.mo +share/locale/sr/LC_MESSAGES/kcm_kcron.mo +share/locale/sr@ijekavian/LC_MESSAGES/kcm_kcron.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/kcm_kcron.mo +share/locale/sr@latin/LC_MESSAGES/kcm_kcron.mo +share/locale/sv/LC_MESSAGES/kcm_kcron.mo +share/locale/ta/LC_MESSAGES/kcm_kcron.mo +share/locale/tg/LC_MESSAGES/kcm_kcron.mo +share/locale/th/LC_MESSAGES/kcm_kcron.mo +share/locale/tr/LC_MESSAGES/kcm_kcron.mo +share/locale/ug/LC_MESSAGES/kcm_kcron.mo +share/locale/uk/LC_MESSAGES/kcm_kcron.mo +share/locale/vi/LC_MESSAGES/kcm_kcron.mo +share/locale/wa/LC_MESSAGES/kcm_kcron.mo +share/locale/xh/LC_MESSAGES/kcm_kcron.mo +share/locale/zh_CN/LC_MESSAGES/kcm_kcron.mo +share/locale/zh_HK/LC_MESSAGES/kcm_kcron.mo +share/locale/zh_TW/LC_MESSAGES/kcm_kcron.mo share/metainfo/org.kde.kcron.metainfo.xml share/polkit-1/actions/local.kcron.crontab.policy share/qlogging-categories6/kcron.categories diff --git a/sysutils/kdebugsettings/distinfo b/sysutils/kdebugsettings/distinfo index 5c71e241d08b..ae9c2f8b9ee8 100644 --- a/sysutils/kdebugsettings/distinfo +++ b/sysutils/kdebugsettings/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1751381674 -SHA256 (KDE/release-service/25.04.3/kdebugsettings-25.04.3.tar.xz) = 5861db6582ded4ac112b0a43baef2192d51f3b0609270441e05aa6c550d2e8c8 -SIZE (KDE/release-service/25.04.3/kdebugsettings-25.04.3.tar.xz) = 121304 +TIMESTAMP = 1754646577 +SHA256 (KDE/release-service/25.08.0/kdebugsettings-25.08.0.tar.xz) = bedd634252ff85621c2246b26d61ab1a05ed9ab18bebbf8d658f4638af5f695e +SIZE (KDE/release-service/25.08.0/kdebugsettings-25.08.0.tar.xz) = 123456 diff --git a/sysutils/kdf/distinfo b/sysutils/kdf/distinfo index 56ae949ad66c..2ec042221f20 100644 --- a/sysutils/kdf/distinfo +++ b/sysutils/kdf/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1751381677 -SHA256 (KDE/release-service/25.04.3/kdf-25.04.3.tar.xz) = b36e510cea034fd2ce08fbbfb26d203a1d8e245d4426d4eb964d1c947964d165 -SIZE (KDE/release-service/25.04.3/kdf-25.04.3.tar.xz) = 481708 +TIMESTAMP = 1754646579 +SHA256 (KDE/release-service/25.08.0/kdf-25.08.0.tar.xz) = 775ff2a6b929d0bee9f28b49e03ac07b640beb78fc64b392c72ca5ffa8cf730b +SIZE (KDE/release-service/25.08.0/kdf-25.08.0.tar.xz) = 481680 diff --git a/sysutils/kdialog/distinfo b/sysutils/kdialog/distinfo index 3cfe515b1b4e..193ed4392dfe 100644 --- a/sysutils/kdialog/distinfo +++ b/sysutils/kdialog/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1751381679 -SHA256 (KDE/release-service/25.04.3/kdialog-25.04.3.tar.xz) = df97d1ab7930161536ec41184e43cd00de7e46b686729ef03a292524e144fae3 -SIZE (KDE/release-service/25.04.3/kdialog-25.04.3.tar.xz) = 149396 +TIMESTAMP = 1754646582 +SHA256 (KDE/release-service/25.08.0/kdialog-25.08.0.tar.xz) = 7772cdfe2acccfda420c627a8b1f4cf35acc1906f5155fc2166ee482e10755a3 +SIZE (KDE/release-service/25.08.0/kdialog-25.08.0.tar.xz) = 149388 diff --git a/sysutils/khelpcenter/distinfo b/sysutils/khelpcenter/distinfo index c8898f14f859..571db4d5fc02 100644 --- a/sysutils/khelpcenter/distinfo +++ b/sysutils/khelpcenter/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1751381682 -SHA256 (KDE/release-service/25.04.3/khelpcenter-25.04.3.tar.xz) = 49140b3f31fe82ab0993724500ff1bef9c8041c7234a3b831cc9adeb71114111 -SIZE (KDE/release-service/25.04.3/khelpcenter-25.04.3.tar.xz) = 4248848 +TIMESTAMP = 1754646584 +SHA256 (KDE/release-service/25.08.0/khelpcenter-25.08.0.tar.xz) = d84ab8c1d932489421461d6cd5560b295584135b16898150466053353011069a +SIZE (KDE/release-service/25.08.0/khelpcenter-25.08.0.tar.xz) = 4248920 diff --git a/sysutils/kpmcore/distinfo b/sysutils/kpmcore/distinfo index aa1536d79d68..6f8a46f694f5 100644 --- a/sysutils/kpmcore/distinfo +++ b/sysutils/kpmcore/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1751381684 -SHA256 (KDE/release-service/25.04.3/kpmcore-25.04.3.tar.xz) = 6c22e9068fa1e7a4a4a64def7636bb3498b977cf77752d126f1b4e1143f48c95 -SIZE (KDE/release-service/25.04.3/kpmcore-25.04.3.tar.xz) = 665512 +TIMESTAMP = 1754646587 +SHA256 (KDE/release-service/25.08.0/kpmcore-25.08.0.tar.xz) = a40ece939182770665eb1a963e962c1e896d0639d7e04fe7780b44c44f903569 +SIZE (KDE/release-service/25.08.0/kpmcore-25.08.0.tar.xz) = 670060 diff --git a/sysutils/kpmcore/pkg-plist b/sysutils/kpmcore/pkg-plist index df6e0c466b8e..eb3b84c3ac17 100644 --- a/sysutils/kpmcore/pkg-plist +++ b/sysutils/kpmcore/pkg-plist @@ -1,191 +1,193 @@ 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/freebsdswap.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/ops/setpartlabeloperation.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.13 lib/libkpmcore.so.%%KDE_APPLICATIONS_VERSION%% %%QT_PLUGINDIR%%/kpmcore/pmdummybackendplugin.so +%%QT_PLUGINDIR%%/kpmcore/pmgeombackendplugin.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/hi/LC_MESSAGES/kpmcore._policy_.mo share/locale/hi/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/sa/LC_MESSAGES/kpmcore._policy_.mo share/locale/sa/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 b1c0bbfa9468..e873f4969dc1 100644 --- a/sysutils/ksystemlog/distinfo +++ b/sysutils/ksystemlog/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1751381687 -SHA256 (KDE/release-service/25.04.3/ksystemlog-25.04.3.tar.xz) = cbac290076ee16d35816015a8c99fe297a9093898d0beac29c734bc9e0226afe -SIZE (KDE/release-service/25.04.3/ksystemlog-25.04.3.tar.xz) = 1872256 +TIMESTAMP = 1754646589 +SHA256 (KDE/release-service/25.08.0/ksystemlog-25.08.0.tar.xz) = 3083a32e43c257e4b0d91b2465c0acdf4936d31b5214de1d207b13de063ed869 +SIZE (KDE/release-service/25.08.0/ksystemlog-25.08.0.tar.xz) = 1885584 diff --git a/sysutils/ksystemlog/pkg-plist b/sysutils/ksystemlog/pkg-plist index 89c4126036b1..59b2b1b194ee 100644 --- a/sysutils/ksystemlog/pkg-plist +++ b/sysutils/ksystemlog/pkg-plist @@ -1,66 +1,67 @@ bin/ksystemlog share/applications/org.kde.ksystemlog.desktop share/locale/ar/LC_MESSAGES/ksystemlog.mo share/locale/ast/LC_MESSAGES/ksystemlog.mo share/locale/az/LC_MESSAGES/ksystemlog.mo share/locale/be/LC_MESSAGES/ksystemlog.mo share/locale/bg/LC_MESSAGES/ksystemlog.mo share/locale/br/LC_MESSAGES/ksystemlog.mo share/locale/bs/LC_MESSAGES/ksystemlog.mo share/locale/ca/LC_MESSAGES/ksystemlog.mo share/locale/ca@valencia/LC_MESSAGES/ksystemlog.mo share/locale/cs/LC_MESSAGES/ksystemlog.mo share/locale/cy/LC_MESSAGES/ksystemlog.mo share/locale/da/LC_MESSAGES/ksystemlog.mo share/locale/de/LC_MESSAGES/ksystemlog.mo share/locale/el/LC_MESSAGES/ksystemlog.mo share/locale/en_GB/LC_MESSAGES/ksystemlog.mo share/locale/eo/LC_MESSAGES/ksystemlog.mo share/locale/es/LC_MESSAGES/ksystemlog.mo share/locale/et/LC_MESSAGES/ksystemlog.mo share/locale/eu/LC_MESSAGES/ksystemlog.mo share/locale/fi/LC_MESSAGES/ksystemlog.mo share/locale/fr/LC_MESSAGES/ksystemlog.mo share/locale/ga/LC_MESSAGES/ksystemlog.mo share/locale/gl/LC_MESSAGES/ksystemlog.mo +share/locale/he/LC_MESSAGES/ksystemlog.mo share/locale/hi/LC_MESSAGES/ksystemlog.mo share/locale/hr/LC_MESSAGES/ksystemlog.mo share/locale/hu/LC_MESSAGES/ksystemlog.mo share/locale/ia/LC_MESSAGES/ksystemlog.mo share/locale/is/LC_MESSAGES/ksystemlog.mo share/locale/it/LC_MESSAGES/ksystemlog.mo share/locale/ja/LC_MESSAGES/ksystemlog.mo share/locale/ka/LC_MESSAGES/ksystemlog.mo share/locale/kk/LC_MESSAGES/ksystemlog.mo share/locale/km/LC_MESSAGES/ksystemlog.mo share/locale/ko/LC_MESSAGES/ksystemlog.mo share/locale/lt/LC_MESSAGES/ksystemlog.mo share/locale/lv/LC_MESSAGES/ksystemlog.mo share/locale/mr/LC_MESSAGES/ksystemlog.mo share/locale/nb/LC_MESSAGES/ksystemlog.mo share/locale/nds/LC_MESSAGES/ksystemlog.mo share/locale/nl/LC_MESSAGES/ksystemlog.mo share/locale/nn/LC_MESSAGES/ksystemlog.mo share/locale/oc/LC_MESSAGES/ksystemlog.mo share/locale/pa/LC_MESSAGES/ksystemlog.mo share/locale/pl/LC_MESSAGES/ksystemlog.mo share/locale/pt/LC_MESSAGES/ksystemlog.mo share/locale/pt_BR/LC_MESSAGES/ksystemlog.mo share/locale/ro/LC_MESSAGES/ksystemlog.mo share/locale/ru/LC_MESSAGES/ksystemlog.mo share/locale/sa/LC_MESSAGES/ksystemlog.mo share/locale/sk/LC_MESSAGES/ksystemlog.mo share/locale/sl/LC_MESSAGES/ksystemlog.mo share/locale/sr/LC_MESSAGES/ksystemlog.mo share/locale/sr@ijekavian/LC_MESSAGES/ksystemlog.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/ksystemlog.mo share/locale/sr@latin/LC_MESSAGES/ksystemlog.mo share/locale/sv/LC_MESSAGES/ksystemlog.mo share/locale/th/LC_MESSAGES/ksystemlog.mo share/locale/tr/LC_MESSAGES/ksystemlog.mo share/locale/ug/LC_MESSAGES/ksystemlog.mo share/locale/uk/LC_MESSAGES/ksystemlog.mo share/locale/zh_CN/LC_MESSAGES/ksystemlog.mo share/locale/zh_TW/LC_MESSAGES/ksystemlog.mo share/metainfo/org.kde.ksystemlog.appdata.xml share/qlogging-categories6/ksystemlog.categories diff --git a/sysutils/signon-kwallet-extension/distinfo b/sysutils/signon-kwallet-extension/distinfo index 085967899506..fa7186a4fba9 100644 --- a/sysutils/signon-kwallet-extension/distinfo +++ b/sysutils/signon-kwallet-extension/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1751381689 -SHA256 (KDE/release-service/25.04.3/signon-kwallet-extension-25.04.3.tar.xz) = 759188b4dc613ef775032c65380a8dfc0f35b8933ebf5365eabca77db67de5d0 -SIZE (KDE/release-service/25.04.3/signon-kwallet-extension-25.04.3.tar.xz) = 11308 +TIMESTAMP = 1754646591 +SHA256 (KDE/release-service/25.08.0/signon-kwallet-extension-25.08.0.tar.xz) = 982899a8567ecdbe47530b53fd35c119a6cec8eacf749b6598a1d96bb49c8cfc +SIZE (KDE/release-service/25.08.0/signon-kwallet-extension-25.08.0.tar.xz) = 11304 diff --git a/sysutils/sweeper/distinfo b/sysutils/sweeper/distinfo index 8a58cc00bc88..f4dae78aedfe 100644 --- a/sysutils/sweeper/distinfo +++ b/sysutils/sweeper/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1751381692 -SHA256 (KDE/release-service/25.04.3/sweeper-25.04.3.tar.xz) = ca29d71cba164900c5342833bf2fc774c924390302cc08db914698c070ec07f3 -SIZE (KDE/release-service/25.04.3/sweeper-25.04.3.tar.xz) = 387432 +TIMESTAMP = 1754646594 +SHA256 (KDE/release-service/25.08.0/sweeper-25.08.0.tar.xz) = 62823c38cabd8fbb7c9a4401464edd3c33f8a4f80740334601bf5a484b2d4dcc +SIZE (KDE/release-service/25.08.0/sweeper-25.08.0.tar.xz) = 387828 diff --git a/textproc/arianna/distinfo b/textproc/arianna/distinfo index ed1e8902adb7..d88dcfc1d8ae 100644 --- a/textproc/arianna/distinfo +++ b/textproc/arianna/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1751381692 -SHA256 (KDE/release-service/25.04.3/arianna-25.04.3.tar.xz) = 55b34e630fd7833f566ae3949850a54e6055781523a29dac6ce146d281415b87 -SIZE (KDE/release-service/25.04.3/arianna-25.04.3.tar.xz) = 1168060 +TIMESTAMP = 1754646594 +SHA256 (KDE/release-service/25.08.0/arianna-25.08.0.tar.xz) = d32b5090bbe7293c6a1c51c04abdb969480f5b6bfebe41e8689ccd1c8e6bba0e +SIZE (KDE/release-service/25.08.0/arianna-25.08.0.tar.xz) = 1183620 diff --git a/textproc/kompare/distinfo b/textproc/kompare/distinfo index 663703004e97..62e418e4926a 100644 --- a/textproc/kompare/distinfo +++ b/textproc/kompare/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1751381694 -SHA256 (KDE/release-service/25.04.3/kompare-25.04.3.tar.xz) = e3bf9c9e84dbcee0fc39f78261149f93bf8cdd6494abe2c6708bce62de51cc92 -SIZE (KDE/release-service/25.04.3/kompare-25.04.3.tar.xz) = 964196 +TIMESTAMP = 1754646597 +SHA256 (KDE/release-service/25.08.0/kompare-25.08.0.tar.xz) = 2b2f67eb9a31093b1d1e295724f0f0b0cd13275cacdfb864590d5fcce8b4c872 +SIZE (KDE/release-service/25.08.0/kompare-25.08.0.tar.xz) = 964148 diff --git a/textproc/libkomparediff2/distinfo b/textproc/libkomparediff2/distinfo index eeb8f0234333..a3db9b2b6338 100644 --- a/textproc/libkomparediff2/distinfo +++ b/textproc/libkomparediff2/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1751381697 -SHA256 (KDE/release-service/25.04.3/libkomparediff2-25.04.3.tar.xz) = ab1779f34edaa51375c6a48c916723f332d87a9d23218ec6c0446c6112aa564c -SIZE (KDE/release-service/25.04.3/libkomparediff2-25.04.3.tar.xz) = 186400 +TIMESTAMP = 1754646599 +SHA256 (KDE/release-service/25.08.0/libkomparediff2-25.08.0.tar.xz) = 5c787cdf33b60f6da4f2954238349826607c0073f4f9b30a6ace65800c9a25c0 +SIZE (KDE/release-service/25.08.0/libkomparediff2-25.08.0.tar.xz) = 186372 diff --git a/textproc/markdownpart/distinfo b/textproc/markdownpart/distinfo index ab99f8cd8ece..a43af3e185cb 100644 --- a/textproc/markdownpart/distinfo +++ b/textproc/markdownpart/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1751381699 -SHA256 (KDE/release-service/25.04.3/markdownpart-25.04.3.tar.xz) = 4d7b99cee45ed340535c244378f7141ac47d70d75b7c289d93a51516b660c3c1 -SIZE (KDE/release-service/25.04.3/markdownpart-25.04.3.tar.xz) = 34344 +TIMESTAMP = 1754646601 +SHA256 (KDE/release-service/25.08.0/markdownpart-25.08.0.tar.xz) = b110d069a71bab5e54018b1c951963985609b979445f68f4d4818fdd0f6af6fd +SIZE (KDE/release-service/25.08.0/markdownpart-25.08.0.tar.xz) = 34652 diff --git a/textproc/markdownpart/pkg-plist b/textproc/markdownpart/pkg-plist index 410c1ed1f63f..29bce15c31ac 100644 --- a/textproc/markdownpart/pkg-plist +++ b/textproc/markdownpart/pkg-plist @@ -1,44 +1,45 @@ %%QT_PLUGINDIR%%/kf6/parts/markdownpart.so share/locale/ar/LC_MESSAGES/markdownpart.mo share/locale/ast/LC_MESSAGES/markdownpart.mo share/locale/ca/LC_MESSAGES/markdownpart.mo share/locale/ca@valencia/LC_MESSAGES/markdownpart.mo share/locale/cs/LC_MESSAGES/markdownpart.mo share/locale/de/LC_MESSAGES/markdownpart.mo share/locale/el/LC_MESSAGES/markdownpart.mo share/locale/en_GB/LC_MESSAGES/markdownpart.mo share/locale/eo/LC_MESSAGES/markdownpart.mo share/locale/es/LC_MESSAGES/markdownpart.mo share/locale/et/LC_MESSAGES/markdownpart.mo share/locale/eu/LC_MESSAGES/markdownpart.mo share/locale/fi/LC_MESSAGES/markdownpart.mo share/locale/fr/LC_MESSAGES/markdownpart.mo share/locale/gl/LC_MESSAGES/markdownpart.mo share/locale/he/LC_MESSAGES/markdownpart.mo share/locale/hi/LC_MESSAGES/markdownpart.mo share/locale/hu/LC_MESSAGES/markdownpart.mo share/locale/ia/LC_MESSAGES/markdownpart.mo share/locale/ie/LC_MESSAGES/markdownpart.mo +share/locale/is/LC_MESSAGES/markdownpart.mo share/locale/it/LC_MESSAGES/markdownpart.mo share/locale/ja/LC_MESSAGES/markdownpart.mo share/locale/ka/LC_MESSAGES/markdownpart.mo share/locale/ko/LC_MESSAGES/markdownpart.mo share/locale/lt/LC_MESSAGES/markdownpart.mo share/locale/lv/LC_MESSAGES/markdownpart.mo share/locale/nl/LC_MESSAGES/markdownpart.mo share/locale/nn/LC_MESSAGES/markdownpart.mo share/locale/pl/LC_MESSAGES/markdownpart.mo share/locale/pt/LC_MESSAGES/markdownpart.mo share/locale/pt_BR/LC_MESSAGES/markdownpart.mo share/locale/ro/LC_MESSAGES/markdownpart.mo share/locale/ru/LC_MESSAGES/markdownpart.mo share/locale/sa/LC_MESSAGES/markdownpart.mo share/locale/sk/LC_MESSAGES/markdownpart.mo share/locale/sl/LC_MESSAGES/markdownpart.mo share/locale/sv/LC_MESSAGES/markdownpart.mo share/locale/tr/LC_MESSAGES/markdownpart.mo share/locale/uk/LC_MESSAGES/markdownpart.mo share/locale/vi/LC_MESSAGES/markdownpart.mo share/locale/zh_CN/LC_MESSAGES/markdownpart.mo share/locale/zh_TW/LC_MESSAGES/markdownpart.mo share/metainfo/org.kde.markdownpart.metainfo.xml diff --git a/www/falkon/distinfo b/www/falkon/distinfo index 517b30304bd7..a2461b6f0d55 100644 --- a/www/falkon/distinfo +++ b/www/falkon/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1751381700 -SHA256 (KDE/release-service/25.04.3/falkon-25.04.3.tar.xz) = 935049060c50b3dd5ede88f882b484bfd8183f9432ef47ae2ad0591b15305454 -SIZE (KDE/release-service/25.04.3/falkon-25.04.3.tar.xz) = 2706120 +TIMESTAMP = 1754646602 +SHA256 (KDE/release-service/25.08.0/falkon-25.08.0.tar.xz) = 5cd8023ae4b667fa775b109a94c4e2ceaa9f5bf531ad9656673088d1c69a8667 +SIZE (KDE/release-service/25.08.0/falkon-25.08.0.tar.xz) = 2698532 diff --git a/www/falkon/pkg-plist b/www/falkon/pkg-plist index ac1acea5656d..3c804ed909e6 100644 --- a/www/falkon/pkg-plist +++ b/www/falkon/pkg-plist @@ -1,953 +1,953 @@ bin/falkon lib/libFalkonPrivate.so.%%KDE_APPLICATIONS_VERSION%% lib/libFalkonPrivate.so.3 %%QT_PLUGINDIR%%/falkon/AutoScroll.so %%QT_PLUGINDIR%%/falkon/FlashCookieManager.so %%GNOMEKEYRING%%%%QT_PLUGINDIR%%/falkon/GnomeKeyringPasswords.so %%QT_PLUGINDIR%%/falkon/GreaseMonkey.so %%KDEINTEGRATION%%%%QT_PLUGINDIR%%/falkon/KDEFrameworksIntegration.so %%QT_PLUGINDIR%%/falkon/MouseGestures.so %%QT_PLUGINDIR%%/falkon/PIM.so %%QT_PLUGINDIR%%/falkon/StatusBarIcons.so %%QT_PLUGINDIR%%/falkon/TabManager.so %%QT_PLUGINDIR%%/falkon/VerticalTabs.so share/applications/org.kde.falkon.desktop share/bash-completion/completions/falkon %%DATADIR%%/themes/chrome/images/gotoaddress.png %%DATADIR%%/themes/chrome/images/key.png %%DATADIR%%/themes/chrome/images/library-bg.png %%DATADIR%%/themes/chrome/images/lineedit-bg.png %%DATADIR%%/themes/chrome/images/navigation-addtab.png %%DATADIR%%/themes/chrome/images/navigation-back.png %%DATADIR%%/themes/chrome/images/navigation-downloads.png %%DATADIR%%/themes/chrome/images/navigation-dropdown.png %%DATADIR%%/themes/chrome/images/navigation-exit-fullscreen.png %%DATADIR%%/themes/chrome/images/navigation-forward.png %%DATADIR%%/themes/chrome/images/navigation-home.png %%DATADIR%%/themes/chrome/images/navigation-reload.png %%DATADIR%%/themes/chrome/images/navigation-stop.png %%DATADIR%%/themes/chrome/images/navigation-supermenu.png %%DATADIR%%/themes/chrome/images/navigation-tools-rtl.png %%DATADIR%%/themes/chrome/images/navigation-tools.png %%DATADIR%%/themes/chrome/images/search-icon.png %%DATADIR%%/themes/chrome/images/searchbar-provider-bg.png %%DATADIR%%/themes/chrome/images/semi-transp.png %%DATADIR%%/themes/chrome/images/siteicon-bg.png %%DATADIR%%/themes/chrome/images/siteicon-secure-bg.png %%DATADIR%%/themes/chrome/images/star-a.png %%DATADIR%%/themes/chrome/images/star.png %%DATADIR%%/themes/chrome/images/tab-left-arrow.png %%DATADIR%%/themes/chrome/images/tab-right-arrow.png %%DATADIR%%/themes/chrome/images/tabbar-addtab.png %%DATADIR%%/themes/chrome/images/tabs-bg.png %%DATADIR%%/themes/chrome/images/tabs-closed-button.png %%DATADIR%%/themes/chrome/images/tabs-list-button.png %%DATADIR%%/themes/chrome/images/toolbar-bg.png %%DATADIR%%/themes/chrome/images/toolbutton-a.png %%DATADIR%%/themes/chrome/images/toolbutton-h.png %%DATADIR%%/themes/chrome/images/toolbutton.png %%DATADIR%%/themes/chrome/license.txt %%DATADIR%%/themes/chrome/linux.css %%DATADIR%%/themes/chrome/main.css %%DATADIR%%/themes/chrome/metadata.desktop %%DATADIR%%/themes/chrome/rtl.css %%DATADIR%%/themes/chrome/theme.png %%DATADIR%%/themes/chrome/windows.css %%DATADIR%%/themes/linux/images/arrow-down.svg %%DATADIR%%/themes/linux/images/exit-fullscreen.svg %%DATADIR%%/themes/linux/images/goto.svg %%DATADIR%%/themes/linux/images/library-bg.png %%DATADIR%%/themes/linux/images/menu.svg %%DATADIR%%/themes/linux/images/semi-transp.png %%DATADIR%%/themes/linux/images/star-a.svg %%DATADIR%%/themes/linux/images/star.svg %%DATADIR%%/themes/linux/images/tab-left-arrow.svg %%DATADIR%%/themes/linux/images/tab-right-arrow.svg %%DATADIR%%/themes/linux/images/tools-rtl.svg %%DATADIR%%/themes/linux/images/tools.svg %%DATADIR%%/themes/linux/images/transp.png %%DATADIR%%/themes/linux/images/user.svg %%DATADIR%%/themes/linux/main.css %%DATADIR%%/themes/linux/metadata.desktop %%DATADIR%%/themes/linux/rtl.css %%DATADIR%%/themes/linux/theme.png %%DATADIR%%/themes/mac/images/gotoaddress.png %%DATADIR%%/themes/mac/images/key.png %%DATADIR%%/themes/mac/images/library-bg.png %%DATADIR%%/themes/mac/images/lineedit-bg.png %%DATADIR%%/themes/mac/images/navigation-addtab.png %%DATADIR%%/themes/mac/images/navigation-back.png %%DATADIR%%/themes/mac/images/navigation-downloads.png %%DATADIR%%/themes/mac/images/navigation-dropdown.png %%DATADIR%%/themes/mac/images/navigation-exit-fullscreen.png %%DATADIR%%/themes/mac/images/navigation-forward.png %%DATADIR%%/themes/mac/images/navigation-home.png %%DATADIR%%/themes/mac/images/navigation-reload.png %%DATADIR%%/themes/mac/images/navigation-stop.png %%DATADIR%%/themes/mac/images/navigation-supermenu.png %%DATADIR%%/themes/mac/images/navigation-tools-rtl.png %%DATADIR%%/themes/mac/images/navigation-tools.png %%DATADIR%%/themes/mac/images/search-icon.png %%DATADIR%%/themes/mac/images/searchbar-provider-bg.png %%DATADIR%%/themes/mac/images/semi-transp.png %%DATADIR%%/themes/mac/images/siteicon-bg.png %%DATADIR%%/themes/mac/images/siteicon-secure-bg.png %%DATADIR%%/themes/mac/images/splitter.png %%DATADIR%%/themes/mac/images/star-a.png %%DATADIR%%/themes/mac/images/star.png %%DATADIR%%/themes/mac/images/tab-left-arrow.png %%DATADIR%%/themes/mac/images/tab-right-arrow.png %%DATADIR%%/themes/mac/images/tabbar-addtab.png %%DATADIR%%/themes/mac/images/tabs-bg.png %%DATADIR%%/themes/mac/images/tabs-closed-button-rtl.png %%DATADIR%%/themes/mac/images/tabs-closed-button.png %%DATADIR%%/themes/mac/images/tabs-list-button.png %%DATADIR%%/themes/mac/images/tabs-list-button_rtl.png %%DATADIR%%/themes/mac/images/toolbar-bg.png %%DATADIR%%/themes/mac/images/toolbutton-a.png %%DATADIR%%/themes/mac/images/toolbutton-h.png %%DATADIR%%/themes/mac/images/toolbutton.png %%DATADIR%%/themes/mac/images/transp.png %%DATADIR%%/themes/mac/license.txt %%DATADIR%%/themes/mac/linux.css %%DATADIR%%/themes/mac/main.css %%DATADIR%%/themes/mac/metadata.desktop %%DATADIR%%/themes/mac/rtl.css %%DATADIR%%/themes/mac/theme.png %%DATADIR%%/themes/mac/windows.css %%DATADIR%%/themes/windows/images/exit-fullscreen.svg %%DATADIR%%/themes/windows/images/goto.svg %%DATADIR%%/themes/windows/images/library-bg.png %%DATADIR%%/themes/windows/images/menu.svg %%DATADIR%%/themes/windows/images/semi-transp.png %%DATADIR%%/themes/windows/images/star-a.svg %%DATADIR%%/themes/windows/images/star.svg %%DATADIR%%/themes/windows/images/tab-close-a.svg %%DATADIR%%/themes/windows/images/tab-close-h.svg %%DATADIR%%/themes/windows/images/tab-close.svg %%DATADIR%%/themes/windows/images/tab-left-arrow.svg %%DATADIR%%/themes/windows/images/tab-right-arrow.svg %%DATADIR%%/themes/windows/images/tools-rtl.svg %%DATADIR%%/themes/windows/images/tools.svg %%DATADIR%%/themes/windows/images/transp.png %%DATADIR%%/themes/windows/images/user.svg %%DATADIR%%/themes/windows/main.css %%DATADIR%%/themes/windows/metadata.desktop %%DATADIR%%/themes/windows/rtl.css %%DATADIR%%/themes/windows/theme.png share/icons/hicolor/128x128/apps/falkon.png share/icons/hicolor/16x16/apps/falkon.png share/icons/hicolor/256x256/apps/falkon.png share/icons/hicolor/32x32/apps/falkon.png share/icons/hicolor/48x48/apps/falkon.png share/icons/hicolor/64x64/apps/falkon.png share/icons/hicolor/scalable/apps/falkon.svg share/locale/ar/LC_MESSAGES/falkon_autoscroll_qt.qm share/locale/ar/LC_MESSAGES/falkon_flashcookiemanager_qt.qm share/locale/ar/LC_MESSAGES/falkon_gnomekeyringpasswords_qt.qm share/locale/ar/LC_MESSAGES/falkon_greasemonkey_qt.qm share/locale/ar/LC_MESSAGES/falkon_hellopython.mo share/locale/ar/LC_MESSAGES/falkon_helloqml.mo share/locale/ar/LC_MESSAGES/falkon_kdeframeworksintegration_qt.qm share/locale/ar/LC_MESSAGES/falkon_middleclickloader.mo share/locale/ar/LC_MESSAGES/falkon_mousegestures_qt.qm share/locale/ar/LC_MESSAGES/falkon_pim_qt.qm share/locale/ar/LC_MESSAGES/falkon_qt.qm share/locale/ar/LC_MESSAGES/falkon_runaction.mo share/locale/ar/LC_MESSAGES/falkon_sitesettingsview_qt.qm share/locale/ar/LC_MESSAGES/falkon_statusbaricons_qt.qm share/locale/ar/LC_MESSAGES/falkon_tabmanager_qt.qm share/locale/ar/LC_MESSAGES/falkon_testplugin_qt.qm share/locale/ar/LC_MESSAGES/falkon_verticaltabs_qt.qm share/locale/ast/LC_MESSAGES/falkon_autoscroll_qt.qm share/locale/ast/LC_MESSAGES/falkon_flashcookiemanager_qt.qm share/locale/ast/LC_MESSAGES/falkon_gnomekeyringpasswords_qt.qm share/locale/ast/LC_MESSAGES/falkon_greasemonkey_qt.qm share/locale/ast/LC_MESSAGES/falkon_hellopython.mo share/locale/ast/LC_MESSAGES/falkon_helloqml.mo share/locale/ast/LC_MESSAGES/falkon_kdeframeworksintegration_qt.qm share/locale/ast/LC_MESSAGES/falkon_middleclickloader.mo share/locale/ast/LC_MESSAGES/falkon_mousegestures_qt.qm share/locale/ast/LC_MESSAGES/falkon_pim_qt.qm share/locale/ast/LC_MESSAGES/falkon_qt.qm share/locale/ast/LC_MESSAGES/falkon_runaction.mo share/locale/ast/LC_MESSAGES/falkon_statusbaricons_qt.qm share/locale/ast/LC_MESSAGES/falkon_tabmanager_qt.qm share/locale/ast/LC_MESSAGES/falkon_testplugin_qt.qm share/locale/ast/LC_MESSAGES/falkon_verticaltabs_qt.qm share/locale/az/LC_MESSAGES/falkon_autoscroll_qt.qm share/locale/az/LC_MESSAGES/falkon_flashcookiemanager_qt.qm share/locale/az/LC_MESSAGES/falkon_gnomekeyringpasswords_qt.qm share/locale/az/LC_MESSAGES/falkon_greasemonkey_qt.qm share/locale/az/LC_MESSAGES/falkon_hellopython.mo share/locale/az/LC_MESSAGES/falkon_helloqml.mo share/locale/az/LC_MESSAGES/falkon_kdeframeworksintegration_qt.qm share/locale/az/LC_MESSAGES/falkon_middleclickloader.mo share/locale/az/LC_MESSAGES/falkon_mousegestures_qt.qm share/locale/az/LC_MESSAGES/falkon_pim_qt.qm share/locale/az/LC_MESSAGES/falkon_qt.qm share/locale/az/LC_MESSAGES/falkon_runaction.mo share/locale/az/LC_MESSAGES/falkon_sitesettingsview_qt.qm share/locale/az/LC_MESSAGES/falkon_statusbaricons_qt.qm share/locale/az/LC_MESSAGES/falkon_tabmanager_qt.qm share/locale/az/LC_MESSAGES/falkon_testplugin_qt.qm share/locale/az/LC_MESSAGES/falkon_verticaltabs_qt.qm share/locale/bg/LC_MESSAGES/falkon_autoscroll_qt.qm share/locale/bg/LC_MESSAGES/falkon_flashcookiemanager_qt.qm share/locale/bg/LC_MESSAGES/falkon_gnomekeyringpasswords_qt.qm share/locale/bg/LC_MESSAGES/falkon_greasemonkey_qt.qm share/locale/bg/LC_MESSAGES/falkon_hellopython.mo share/locale/bg/LC_MESSAGES/falkon_helloqml.mo share/locale/bg/LC_MESSAGES/falkon_kdeframeworksintegration_qt.qm share/locale/bg/LC_MESSAGES/falkon_middleclickloader.mo share/locale/bg/LC_MESSAGES/falkon_mousegestures_qt.qm share/locale/bg/LC_MESSAGES/falkon_pim_qt.qm share/locale/bg/LC_MESSAGES/falkon_qt.qm share/locale/bg/LC_MESSAGES/falkon_runaction.mo share/locale/bg/LC_MESSAGES/falkon_sitesettingsview_qt.qm share/locale/bg/LC_MESSAGES/falkon_statusbaricons_qt.qm share/locale/bg/LC_MESSAGES/falkon_tabmanager_qt.qm share/locale/bg/LC_MESSAGES/falkon_testplugin_qt.qm share/locale/bg/LC_MESSAGES/falkon_verticaltabs_qt.qm share/locale/ca/LC_MESSAGES/falkon_autoscroll_qt.qm share/locale/ca/LC_MESSAGES/falkon_flashcookiemanager_qt.qm share/locale/ca/LC_MESSAGES/falkon_gnomekeyringpasswords_qt.qm share/locale/ca/LC_MESSAGES/falkon_greasemonkey_qt.qm share/locale/ca/LC_MESSAGES/falkon_hellopython.mo share/locale/ca/LC_MESSAGES/falkon_helloqml.mo share/locale/ca/LC_MESSAGES/falkon_kdeframeworksintegration_qt.qm share/locale/ca/LC_MESSAGES/falkon_middleclickloader.mo share/locale/ca/LC_MESSAGES/falkon_mousegestures_qt.qm share/locale/ca/LC_MESSAGES/falkon_pim_qt.qm share/locale/ca/LC_MESSAGES/falkon_qt.qm share/locale/ca/LC_MESSAGES/falkon_runaction.mo share/locale/ca/LC_MESSAGES/falkon_sitesettingsview_qt.qm share/locale/ca/LC_MESSAGES/falkon_statusbaricons_qt.qm share/locale/ca/LC_MESSAGES/falkon_tabmanager_qt.qm share/locale/ca/LC_MESSAGES/falkon_testplugin_qt.qm share/locale/ca/LC_MESSAGES/falkon_verticaltabs_qt.qm share/locale/ca@valencia/LC_MESSAGES/falkon_autoscroll_qt.qm share/locale/ca@valencia/LC_MESSAGES/falkon_flashcookiemanager_qt.qm share/locale/ca@valencia/LC_MESSAGES/falkon_gnomekeyringpasswords_qt.qm share/locale/ca@valencia/LC_MESSAGES/falkon_greasemonkey_qt.qm share/locale/ca@valencia/LC_MESSAGES/falkon_hellopython.mo share/locale/ca@valencia/LC_MESSAGES/falkon_helloqml.mo share/locale/ca@valencia/LC_MESSAGES/falkon_kdeframeworksintegration_qt.qm share/locale/ca@valencia/LC_MESSAGES/falkon_middleclickloader.mo share/locale/ca@valencia/LC_MESSAGES/falkon_mousegestures_qt.qm share/locale/ca@valencia/LC_MESSAGES/falkon_pim_qt.qm share/locale/ca@valencia/LC_MESSAGES/falkon_qt.qm share/locale/ca@valencia/LC_MESSAGES/falkon_runaction.mo share/locale/ca@valencia/LC_MESSAGES/falkon_sitesettingsview_qt.qm share/locale/ca@valencia/LC_MESSAGES/falkon_statusbaricons_qt.qm share/locale/ca@valencia/LC_MESSAGES/falkon_tabmanager_qt.qm share/locale/ca@valencia/LC_MESSAGES/falkon_testplugin_qt.qm share/locale/ca@valencia/LC_MESSAGES/falkon_verticaltabs_qt.qm share/locale/cs/LC_MESSAGES/falkon_autoscroll_qt.qm share/locale/cs/LC_MESSAGES/falkon_flashcookiemanager_qt.qm share/locale/cs/LC_MESSAGES/falkon_gnomekeyringpasswords_qt.qm share/locale/cs/LC_MESSAGES/falkon_greasemonkey_qt.qm share/locale/cs/LC_MESSAGES/falkon_hellopython.mo share/locale/cs/LC_MESSAGES/falkon_helloqml.mo share/locale/cs/LC_MESSAGES/falkon_kdeframeworksintegration_qt.qm share/locale/cs/LC_MESSAGES/falkon_middleclickloader.mo share/locale/cs/LC_MESSAGES/falkon_mousegestures_qt.qm share/locale/cs/LC_MESSAGES/falkon_pim_qt.qm share/locale/cs/LC_MESSAGES/falkon_qt.qm share/locale/cs/LC_MESSAGES/falkon_runaction.mo share/locale/cs/LC_MESSAGES/falkon_sitesettingsview_qt.qm share/locale/cs/LC_MESSAGES/falkon_statusbaricons_qt.qm share/locale/cs/LC_MESSAGES/falkon_tabmanager_qt.qm share/locale/cs/LC_MESSAGES/falkon_testplugin_qt.qm share/locale/cs/LC_MESSAGES/falkon_verticaltabs_qt.qm share/locale/da/LC_MESSAGES/falkon_autoscroll_qt.qm share/locale/da/LC_MESSAGES/falkon_flashcookiemanager_qt.qm share/locale/da/LC_MESSAGES/falkon_greasemonkey_qt.qm share/locale/da/LC_MESSAGES/falkon_hellopython.mo share/locale/da/LC_MESSAGES/falkon_helloqml.mo share/locale/da/LC_MESSAGES/falkon_kdeframeworksintegration_qt.qm share/locale/da/LC_MESSAGES/falkon_middleclickloader.mo share/locale/da/LC_MESSAGES/falkon_mousegestures_qt.qm share/locale/da/LC_MESSAGES/falkon_pim_qt.qm share/locale/da/LC_MESSAGES/falkon_qt.qm share/locale/da/LC_MESSAGES/falkon_runaction.mo share/locale/da/LC_MESSAGES/falkon_statusbaricons_qt.qm share/locale/da/LC_MESSAGES/falkon_tabmanager_qt.qm share/locale/da/LC_MESSAGES/falkon_testplugin_qt.qm share/locale/da/LC_MESSAGES/falkon_verticaltabs_qt.qm share/locale/de/LC_MESSAGES/falkon_autoscroll_qt.qm share/locale/de/LC_MESSAGES/falkon_flashcookiemanager_qt.qm share/locale/de/LC_MESSAGES/falkon_gnomekeyringpasswords_qt.qm share/locale/de/LC_MESSAGES/falkon_greasemonkey_qt.qm share/locale/de/LC_MESSAGES/falkon_hellopython.mo share/locale/de/LC_MESSAGES/falkon_helloqml.mo share/locale/de/LC_MESSAGES/falkon_kdeframeworksintegration_qt.qm share/locale/de/LC_MESSAGES/falkon_middleclickloader.mo share/locale/de/LC_MESSAGES/falkon_mousegestures_qt.qm share/locale/de/LC_MESSAGES/falkon_pim_qt.qm share/locale/de/LC_MESSAGES/falkon_qt.qm share/locale/de/LC_MESSAGES/falkon_runaction.mo share/locale/de/LC_MESSAGES/falkon_sitesettingsview_qt.qm share/locale/de/LC_MESSAGES/falkon_statusbaricons_qt.qm share/locale/de/LC_MESSAGES/falkon_tabmanager_qt.qm share/locale/de/LC_MESSAGES/falkon_testplugin_qt.qm share/locale/de/LC_MESSAGES/falkon_verticaltabs_qt.qm share/locale/el/LC_MESSAGES/falkon_autoscroll_qt.qm share/locale/el/LC_MESSAGES/falkon_flashcookiemanager_qt.qm share/locale/el/LC_MESSAGES/falkon_gnomekeyringpasswords_qt.qm share/locale/el/LC_MESSAGES/falkon_greasemonkey_qt.qm share/locale/el/LC_MESSAGES/falkon_hellopython.mo share/locale/el/LC_MESSAGES/falkon_helloqml.mo share/locale/el/LC_MESSAGES/falkon_kdeframeworksintegration_qt.qm share/locale/el/LC_MESSAGES/falkon_middleclickloader.mo share/locale/el/LC_MESSAGES/falkon_mousegestures_qt.qm share/locale/el/LC_MESSAGES/falkon_pim_qt.qm share/locale/el/LC_MESSAGES/falkon_qt.qm share/locale/el/LC_MESSAGES/falkon_runaction.mo share/locale/el/LC_MESSAGES/falkon_statusbaricons_qt.qm share/locale/el/LC_MESSAGES/falkon_tabmanager_qt.qm share/locale/el/LC_MESSAGES/falkon_testplugin_qt.qm share/locale/el/LC_MESSAGES/falkon_verticaltabs_qt.qm share/locale/en/LC_MESSAGES/falkon_qt.qm share/locale/en_GB/LC_MESSAGES/falkon_autoscroll_qt.qm share/locale/en_GB/LC_MESSAGES/falkon_flashcookiemanager_qt.qm share/locale/en_GB/LC_MESSAGES/falkon_gnomekeyringpasswords_qt.qm share/locale/en_GB/LC_MESSAGES/falkon_greasemonkey_qt.qm share/locale/en_GB/LC_MESSAGES/falkon_hellopython.mo share/locale/en_GB/LC_MESSAGES/falkon_helloqml.mo share/locale/en_GB/LC_MESSAGES/falkon_kdeframeworksintegration_qt.qm share/locale/en_GB/LC_MESSAGES/falkon_middleclickloader.mo share/locale/en_GB/LC_MESSAGES/falkon_mousegestures_qt.qm share/locale/en_GB/LC_MESSAGES/falkon_pim_qt.qm share/locale/en_GB/LC_MESSAGES/falkon_qt.qm share/locale/en_GB/LC_MESSAGES/falkon_runaction.mo share/locale/en_GB/LC_MESSAGES/falkon_sitesettingsview_qt.qm share/locale/en_GB/LC_MESSAGES/falkon_statusbaricons_qt.qm share/locale/en_GB/LC_MESSAGES/falkon_tabmanager_qt.qm share/locale/en_GB/LC_MESSAGES/falkon_testplugin_qt.qm share/locale/en_GB/LC_MESSAGES/falkon_verticaltabs_qt.qm share/locale/eo/LC_MESSAGES/falkon_autoscroll_qt.qm share/locale/eo/LC_MESSAGES/falkon_flashcookiemanager_qt.qm share/locale/eo/LC_MESSAGES/falkon_gnomekeyringpasswords_qt.qm share/locale/eo/LC_MESSAGES/falkon_greasemonkey_qt.qm share/locale/eo/LC_MESSAGES/falkon_hellopython.mo share/locale/eo/LC_MESSAGES/falkon_helloqml.mo share/locale/eo/LC_MESSAGES/falkon_kdeframeworksintegration_qt.qm share/locale/eo/LC_MESSAGES/falkon_middleclickloader.mo share/locale/eo/LC_MESSAGES/falkon_mousegestures_qt.qm share/locale/eo/LC_MESSAGES/falkon_pim_qt.qm share/locale/eo/LC_MESSAGES/falkon_qt.qm share/locale/eo/LC_MESSAGES/falkon_runaction.mo share/locale/eo/LC_MESSAGES/falkon_sitesettingsview_qt.qm share/locale/eo/LC_MESSAGES/falkon_statusbaricons_qt.qm share/locale/eo/LC_MESSAGES/falkon_tabmanager_qt.qm share/locale/eo/LC_MESSAGES/falkon_testplugin_qt.qm share/locale/eo/LC_MESSAGES/falkon_verticaltabs_qt.qm share/locale/es/LC_MESSAGES/falkon_autoscroll_qt.qm share/locale/es/LC_MESSAGES/falkon_flashcookiemanager_qt.qm share/locale/es/LC_MESSAGES/falkon_gnomekeyringpasswords_qt.qm share/locale/es/LC_MESSAGES/falkon_greasemonkey_qt.qm share/locale/es/LC_MESSAGES/falkon_hellopython.mo share/locale/es/LC_MESSAGES/falkon_helloqml.mo share/locale/es/LC_MESSAGES/falkon_kdeframeworksintegration_qt.qm share/locale/es/LC_MESSAGES/falkon_middleclickloader.mo share/locale/es/LC_MESSAGES/falkon_mousegestures_qt.qm share/locale/es/LC_MESSAGES/falkon_pim_qt.qm share/locale/es/LC_MESSAGES/falkon_qt.qm share/locale/es/LC_MESSAGES/falkon_runaction.mo share/locale/es/LC_MESSAGES/falkon_sitesettingsview_qt.qm share/locale/es/LC_MESSAGES/falkon_statusbaricons_qt.qm share/locale/es/LC_MESSAGES/falkon_tabmanager_qt.qm share/locale/es/LC_MESSAGES/falkon_testplugin_qt.qm share/locale/es/LC_MESSAGES/falkon_verticaltabs_qt.qm share/locale/et/LC_MESSAGES/falkon_autoscroll_qt.qm share/locale/et/LC_MESSAGES/falkon_flashcookiemanager_qt.qm share/locale/et/LC_MESSAGES/falkon_greasemonkey_qt.qm share/locale/et/LC_MESSAGES/falkon_hellopython.mo share/locale/et/LC_MESSAGES/falkon_helloqml.mo share/locale/et/LC_MESSAGES/falkon_kdeframeworksintegration_qt.qm share/locale/et/LC_MESSAGES/falkon_middleclickloader.mo share/locale/et/LC_MESSAGES/falkon_mousegestures_qt.qm share/locale/et/LC_MESSAGES/falkon_pim_qt.qm share/locale/et/LC_MESSAGES/falkon_qt.qm share/locale/et/LC_MESSAGES/falkon_runaction.mo share/locale/et/LC_MESSAGES/falkon_statusbaricons_qt.qm share/locale/et/LC_MESSAGES/falkon_tabmanager_qt.qm share/locale/et/LC_MESSAGES/falkon_testplugin_qt.qm share/locale/et/LC_MESSAGES/falkon_verticaltabs_qt.qm share/locale/eu/LC_MESSAGES/falkon_autoscroll_qt.qm share/locale/eu/LC_MESSAGES/falkon_flashcookiemanager_qt.qm share/locale/eu/LC_MESSAGES/falkon_gnomekeyringpasswords_qt.qm share/locale/eu/LC_MESSAGES/falkon_greasemonkey_qt.qm share/locale/eu/LC_MESSAGES/falkon_hellopython.mo share/locale/eu/LC_MESSAGES/falkon_helloqml.mo share/locale/eu/LC_MESSAGES/falkon_kdeframeworksintegration_qt.qm share/locale/eu/LC_MESSAGES/falkon_middleclickloader.mo share/locale/eu/LC_MESSAGES/falkon_mousegestures_qt.qm share/locale/eu/LC_MESSAGES/falkon_pim_qt.qm share/locale/eu/LC_MESSAGES/falkon_qt.qm share/locale/eu/LC_MESSAGES/falkon_runaction.mo share/locale/eu/LC_MESSAGES/falkon_sitesettingsview_qt.qm share/locale/eu/LC_MESSAGES/falkon_statusbaricons_qt.qm share/locale/eu/LC_MESSAGES/falkon_tabmanager_qt.qm share/locale/eu/LC_MESSAGES/falkon_testplugin_qt.qm share/locale/eu/LC_MESSAGES/falkon_verticaltabs_qt.qm share/locale/fa/LC_MESSAGES/falkon_flashcookiemanager_qt.qm share/locale/fa/LC_MESSAGES/falkon_greasemonkey_qt.qm share/locale/fa/LC_MESSAGES/falkon_kdeframeworksintegration_qt.qm share/locale/fa/LC_MESSAGES/falkon_mousegestures_qt.qm share/locale/fa/LC_MESSAGES/falkon_pim_qt.qm share/locale/fa/LC_MESSAGES/falkon_qt.qm share/locale/fa/LC_MESSAGES/falkon_statusbaricons_qt.qm share/locale/fa/LC_MESSAGES/falkon_tabmanager_qt.qm share/locale/fa/LC_MESSAGES/falkon_testplugin_qt.qm share/locale/fi/LC_MESSAGES/falkon_autoscroll_qt.qm share/locale/fi/LC_MESSAGES/falkon_flashcookiemanager_qt.qm share/locale/fi/LC_MESSAGES/falkon_gnomekeyringpasswords_qt.qm share/locale/fi/LC_MESSAGES/falkon_greasemonkey_qt.qm share/locale/fi/LC_MESSAGES/falkon_hellopython.mo share/locale/fi/LC_MESSAGES/falkon_helloqml.mo share/locale/fi/LC_MESSAGES/falkon_kdeframeworksintegration_qt.qm share/locale/fi/LC_MESSAGES/falkon_middleclickloader.mo share/locale/fi/LC_MESSAGES/falkon_mousegestures_qt.qm share/locale/fi/LC_MESSAGES/falkon_pim_qt.qm share/locale/fi/LC_MESSAGES/falkon_qt.qm share/locale/fi/LC_MESSAGES/falkon_runaction.mo share/locale/fi/LC_MESSAGES/falkon_sitesettingsview_qt.qm share/locale/fi/LC_MESSAGES/falkon_statusbaricons_qt.qm share/locale/fi/LC_MESSAGES/falkon_tabmanager_qt.qm share/locale/fi/LC_MESSAGES/falkon_testplugin_qt.qm share/locale/fi/LC_MESSAGES/falkon_verticaltabs_qt.qm share/locale/fr/LC_MESSAGES/falkon_autoscroll_qt.qm share/locale/fr/LC_MESSAGES/falkon_flashcookiemanager_qt.qm share/locale/fr/LC_MESSAGES/falkon_gnomekeyringpasswords_qt.qm share/locale/fr/LC_MESSAGES/falkon_greasemonkey_qt.qm share/locale/fr/LC_MESSAGES/falkon_hellopython.mo share/locale/fr/LC_MESSAGES/falkon_helloqml.mo share/locale/fr/LC_MESSAGES/falkon_kdeframeworksintegration_qt.qm share/locale/fr/LC_MESSAGES/falkon_middleclickloader.mo share/locale/fr/LC_MESSAGES/falkon_mousegestures_qt.qm share/locale/fr/LC_MESSAGES/falkon_pim_qt.qm share/locale/fr/LC_MESSAGES/falkon_qt.qm share/locale/fr/LC_MESSAGES/falkon_runaction.mo share/locale/fr/LC_MESSAGES/falkon_sitesettingsview_qt.qm share/locale/fr/LC_MESSAGES/falkon_statusbaricons_qt.qm share/locale/fr/LC_MESSAGES/falkon_tabmanager_qt.qm share/locale/fr/LC_MESSAGES/falkon_testplugin_qt.qm share/locale/fr/LC_MESSAGES/falkon_verticaltabs_qt.qm share/locale/gl/LC_MESSAGES/falkon_autoscroll_qt.qm share/locale/gl/LC_MESSAGES/falkon_flashcookiemanager_qt.qm share/locale/gl/LC_MESSAGES/falkon_gnomekeyringpasswords_qt.qm share/locale/gl/LC_MESSAGES/falkon_greasemonkey_qt.qm share/locale/gl/LC_MESSAGES/falkon_hellopython.mo share/locale/gl/LC_MESSAGES/falkon_helloqml.mo share/locale/gl/LC_MESSAGES/falkon_kdeframeworksintegration_qt.qm share/locale/gl/LC_MESSAGES/falkon_middleclickloader.mo share/locale/gl/LC_MESSAGES/falkon_mousegestures_qt.qm share/locale/gl/LC_MESSAGES/falkon_pim_qt.qm share/locale/gl/LC_MESSAGES/falkon_qt.qm share/locale/gl/LC_MESSAGES/falkon_runaction.mo share/locale/gl/LC_MESSAGES/falkon_sitesettingsview_qt.qm share/locale/gl/LC_MESSAGES/falkon_statusbaricons_qt.qm share/locale/gl/LC_MESSAGES/falkon_tabmanager_qt.qm share/locale/gl/LC_MESSAGES/falkon_testplugin_qt.qm share/locale/gl/LC_MESSAGES/falkon_verticaltabs_qt.qm share/locale/he/LC_MESSAGES/falkon_autoscroll_qt.qm share/locale/he/LC_MESSAGES/falkon_flashcookiemanager_qt.qm share/locale/he/LC_MESSAGES/falkon_gnomekeyringpasswords_qt.qm share/locale/he/LC_MESSAGES/falkon_greasemonkey_qt.qm share/locale/he/LC_MESSAGES/falkon_hellopython.mo share/locale/he/LC_MESSAGES/falkon_helloqml.mo share/locale/he/LC_MESSAGES/falkon_kdeframeworksintegration_qt.qm share/locale/he/LC_MESSAGES/falkon_middleclickloader.mo share/locale/he/LC_MESSAGES/falkon_mousegestures_qt.qm share/locale/he/LC_MESSAGES/falkon_pim_qt.qm share/locale/he/LC_MESSAGES/falkon_qt.qm share/locale/he/LC_MESSAGES/falkon_runaction.mo share/locale/he/LC_MESSAGES/falkon_sitesettingsview_qt.qm share/locale/he/LC_MESSAGES/falkon_statusbaricons_qt.qm share/locale/he/LC_MESSAGES/falkon_tabmanager_qt.qm share/locale/he/LC_MESSAGES/falkon_testplugin_qt.qm share/locale/he/LC_MESSAGES/falkon_verticaltabs_qt.qm share/locale/hi/LC_MESSAGES/falkon_autoscroll_qt.qm share/locale/hi/LC_MESSAGES/falkon_flashcookiemanager_qt.qm share/locale/hi/LC_MESSAGES/falkon_gnomekeyringpasswords_qt.qm share/locale/hi/LC_MESSAGES/falkon_greasemonkey_qt.qm share/locale/hi/LC_MESSAGES/falkon_hellopython.mo share/locale/hi/LC_MESSAGES/falkon_helloqml.mo share/locale/hi/LC_MESSAGES/falkon_kdeframeworksintegration_qt.qm share/locale/hi/LC_MESSAGES/falkon_middleclickloader.mo share/locale/hi/LC_MESSAGES/falkon_mousegestures_qt.qm share/locale/hi/LC_MESSAGES/falkon_pim_qt.qm share/locale/hi/LC_MESSAGES/falkon_qt.qm share/locale/hi/LC_MESSAGES/falkon_runaction.mo share/locale/hi/LC_MESSAGES/falkon_sitesettingsview_qt.qm share/locale/hi/LC_MESSAGES/falkon_statusbaricons_qt.qm share/locale/hi/LC_MESSAGES/falkon_tabmanager_qt.qm share/locale/hi/LC_MESSAGES/falkon_testplugin_qt.qm share/locale/hi/LC_MESSAGES/falkon_verticaltabs_qt.qm share/locale/hu/LC_MESSAGES/falkon_autoscroll_qt.qm share/locale/hu/LC_MESSAGES/falkon_flashcookiemanager_qt.qm share/locale/hu/LC_MESSAGES/falkon_gnomekeyringpasswords_qt.qm share/locale/hu/LC_MESSAGES/falkon_greasemonkey_qt.qm share/locale/hu/LC_MESSAGES/falkon_hellopython.mo share/locale/hu/LC_MESSAGES/falkon_helloqml.mo share/locale/hu/LC_MESSAGES/falkon_kdeframeworksintegration_qt.qm share/locale/hu/LC_MESSAGES/falkon_middleclickloader.mo share/locale/hu/LC_MESSAGES/falkon_mousegestures_qt.qm share/locale/hu/LC_MESSAGES/falkon_pim_qt.qm share/locale/hu/LC_MESSAGES/falkon_qt.qm share/locale/hu/LC_MESSAGES/falkon_runaction.mo share/locale/hu/LC_MESSAGES/falkon_sitesettingsview_qt.qm share/locale/hu/LC_MESSAGES/falkon_statusbaricons_qt.qm share/locale/hu/LC_MESSAGES/falkon_tabmanager_qt.qm share/locale/hu/LC_MESSAGES/falkon_testplugin_qt.qm share/locale/hu/LC_MESSAGES/falkon_verticaltabs_qt.qm share/locale/ia/LC_MESSAGES/falkon_autoscroll_qt.qm share/locale/ia/LC_MESSAGES/falkon_flashcookiemanager_qt.qm share/locale/ia/LC_MESSAGES/falkon_gnomekeyringpasswords_qt.qm share/locale/ia/LC_MESSAGES/falkon_greasemonkey_qt.qm share/locale/ia/LC_MESSAGES/falkon_hellopython.mo share/locale/ia/LC_MESSAGES/falkon_helloqml.mo share/locale/ia/LC_MESSAGES/falkon_kdeframeworksintegration_qt.qm share/locale/ia/LC_MESSAGES/falkon_middleclickloader.mo share/locale/ia/LC_MESSAGES/falkon_mousegestures_qt.qm share/locale/ia/LC_MESSAGES/falkon_pim_qt.qm share/locale/ia/LC_MESSAGES/falkon_qt.qm share/locale/ia/LC_MESSAGES/falkon_runaction.mo share/locale/ia/LC_MESSAGES/falkon_sitesettingsview_qt.qm share/locale/ia/LC_MESSAGES/falkon_statusbaricons_qt.qm share/locale/ia/LC_MESSAGES/falkon_tabmanager_qt.qm share/locale/ia/LC_MESSAGES/falkon_testplugin_qt.qm share/locale/ia/LC_MESSAGES/falkon_verticaltabs_qt.qm share/locale/id/LC_MESSAGES/falkon_autoscroll_qt.qm share/locale/id/LC_MESSAGES/falkon_flashcookiemanager_qt.qm share/locale/id/LC_MESSAGES/falkon_greasemonkey_qt.qm share/locale/id/LC_MESSAGES/falkon_hellopython.mo share/locale/id/LC_MESSAGES/falkon_helloqml.mo share/locale/id/LC_MESSAGES/falkon_kdeframeworksintegration_qt.qm share/locale/id/LC_MESSAGES/falkon_middleclickloader.mo share/locale/id/LC_MESSAGES/falkon_mousegestures_qt.qm share/locale/id/LC_MESSAGES/falkon_pim_qt.qm share/locale/id/LC_MESSAGES/falkon_qt.qm share/locale/id/LC_MESSAGES/falkon_runaction.mo share/locale/id/LC_MESSAGES/falkon_statusbaricons_qt.qm share/locale/id/LC_MESSAGES/falkon_tabmanager_qt.qm share/locale/id/LC_MESSAGES/falkon_testplugin_qt.qm share/locale/id/LC_MESSAGES/falkon_verticaltabs_qt.qm share/locale/is/LC_MESSAGES/falkon_autoscroll_qt.qm share/locale/is/LC_MESSAGES/falkon_flashcookiemanager_qt.qm share/locale/is/LC_MESSAGES/falkon_gnomekeyringpasswords_qt.qm share/locale/is/LC_MESSAGES/falkon_greasemonkey_qt.qm share/locale/is/LC_MESSAGES/falkon_hellopython.mo share/locale/is/LC_MESSAGES/falkon_helloqml.mo share/locale/is/LC_MESSAGES/falkon_kdeframeworksintegration_qt.qm share/locale/is/LC_MESSAGES/falkon_middleclickloader.mo share/locale/is/LC_MESSAGES/falkon_mousegestures_qt.qm share/locale/is/LC_MESSAGES/falkon_pim_qt.qm share/locale/is/LC_MESSAGES/falkon_qt.qm share/locale/is/LC_MESSAGES/falkon_runaction.mo -share/locale/is/LC_MESSAGES/falkon_sitesettingsview_qt.qm share/locale/is/LC_MESSAGES/falkon_statusbaricons_qt.qm share/locale/is/LC_MESSAGES/falkon_tabmanager_qt.qm share/locale/is/LC_MESSAGES/falkon_testplugin_qt.qm share/locale/is/LC_MESSAGES/falkon_verticaltabs_qt.qm share/locale/it/LC_MESSAGES/falkon_autoscroll_qt.qm share/locale/it/LC_MESSAGES/falkon_flashcookiemanager_qt.qm share/locale/it/LC_MESSAGES/falkon_gnomekeyringpasswords_qt.qm share/locale/it/LC_MESSAGES/falkon_greasemonkey_qt.qm share/locale/it/LC_MESSAGES/falkon_hellopython.mo share/locale/it/LC_MESSAGES/falkon_helloqml.mo share/locale/it/LC_MESSAGES/falkon_kdeframeworksintegration_qt.qm share/locale/it/LC_MESSAGES/falkon_middleclickloader.mo share/locale/it/LC_MESSAGES/falkon_mousegestures_qt.qm share/locale/it/LC_MESSAGES/falkon_pim_qt.qm share/locale/it/LC_MESSAGES/falkon_qt.qm share/locale/it/LC_MESSAGES/falkon_runaction.mo share/locale/it/LC_MESSAGES/falkon_sitesettingsview_qt.qm share/locale/it/LC_MESSAGES/falkon_statusbaricons_qt.qm share/locale/it/LC_MESSAGES/falkon_tabmanager_qt.qm share/locale/it/LC_MESSAGES/falkon_testplugin_qt.qm share/locale/it/LC_MESSAGES/falkon_verticaltabs_qt.qm share/locale/ja/LC_MESSAGES/falkon_autoscroll_qt.qm share/locale/ja/LC_MESSAGES/falkon_flashcookiemanager_qt.qm share/locale/ja/LC_MESSAGES/falkon_gnomekeyringpasswords_qt.qm share/locale/ja/LC_MESSAGES/falkon_greasemonkey_qt.qm share/locale/ja/LC_MESSAGES/falkon_hellopython.mo share/locale/ja/LC_MESSAGES/falkon_helloqml.mo share/locale/ja/LC_MESSAGES/falkon_kdeframeworksintegration_qt.qm share/locale/ja/LC_MESSAGES/falkon_middleclickloader.mo share/locale/ja/LC_MESSAGES/falkon_mousegestures_qt.qm share/locale/ja/LC_MESSAGES/falkon_pim_qt.qm share/locale/ja/LC_MESSAGES/falkon_qt.qm share/locale/ja/LC_MESSAGES/falkon_runaction.mo share/locale/ja/LC_MESSAGES/falkon_statusbaricons_qt.qm share/locale/ja/LC_MESSAGES/falkon_tabmanager_qt.qm share/locale/ja/LC_MESSAGES/falkon_testplugin_qt.qm share/locale/ja/LC_MESSAGES/falkon_verticaltabs_qt.qm share/locale/ka/LC_MESSAGES/falkon_autoscroll_qt.qm share/locale/ka/LC_MESSAGES/falkon_flashcookiemanager_qt.qm share/locale/ka/LC_MESSAGES/falkon_gnomekeyringpasswords_qt.qm share/locale/ka/LC_MESSAGES/falkon_greasemonkey_qt.qm share/locale/ka/LC_MESSAGES/falkon_hellopython.mo share/locale/ka/LC_MESSAGES/falkon_helloqml.mo share/locale/ka/LC_MESSAGES/falkon_kdeframeworksintegration_qt.qm share/locale/ka/LC_MESSAGES/falkon_middleclickloader.mo share/locale/ka/LC_MESSAGES/falkon_mousegestures_qt.qm share/locale/ka/LC_MESSAGES/falkon_pim_qt.qm share/locale/ka/LC_MESSAGES/falkon_qt.qm share/locale/ka/LC_MESSAGES/falkon_runaction.mo share/locale/ka/LC_MESSAGES/falkon_sitesettingsview_qt.qm share/locale/ka/LC_MESSAGES/falkon_statusbaricons_qt.qm share/locale/ka/LC_MESSAGES/falkon_tabmanager_qt.qm share/locale/ka/LC_MESSAGES/falkon_testplugin_qt.qm share/locale/ka/LC_MESSAGES/falkon_verticaltabs_qt.qm share/locale/ko/LC_MESSAGES/falkon_autoscroll_qt.qm share/locale/ko/LC_MESSAGES/falkon_flashcookiemanager_qt.qm share/locale/ko/LC_MESSAGES/falkon_gnomekeyringpasswords_qt.qm share/locale/ko/LC_MESSAGES/falkon_greasemonkey_qt.qm share/locale/ko/LC_MESSAGES/falkon_hellopython.mo share/locale/ko/LC_MESSAGES/falkon_helloqml.mo share/locale/ko/LC_MESSAGES/falkon_kdeframeworksintegration_qt.qm share/locale/ko/LC_MESSAGES/falkon_middleclickloader.mo share/locale/ko/LC_MESSAGES/falkon_mousegestures_qt.qm share/locale/ko/LC_MESSAGES/falkon_pim_qt.qm share/locale/ko/LC_MESSAGES/falkon_qt.qm share/locale/ko/LC_MESSAGES/falkon_runaction.mo share/locale/ko/LC_MESSAGES/falkon_sitesettingsview_qt.qm share/locale/ko/LC_MESSAGES/falkon_statusbaricons_qt.qm share/locale/ko/LC_MESSAGES/falkon_tabmanager_qt.qm share/locale/ko/LC_MESSAGES/falkon_testplugin_qt.qm share/locale/ko/LC_MESSAGES/falkon_verticaltabs_qt.qm share/locale/lt/LC_MESSAGES/falkon_autoscroll_qt.qm share/locale/lt/LC_MESSAGES/falkon_flashcookiemanager_qt.qm share/locale/lt/LC_MESSAGES/falkon_gnomekeyringpasswords_qt.qm share/locale/lt/LC_MESSAGES/falkon_greasemonkey_qt.qm share/locale/lt/LC_MESSAGES/falkon_hellopython.mo share/locale/lt/LC_MESSAGES/falkon_helloqml.mo share/locale/lt/LC_MESSAGES/falkon_kdeframeworksintegration_qt.qm share/locale/lt/LC_MESSAGES/falkon_middleclickloader.mo share/locale/lt/LC_MESSAGES/falkon_mousegestures_qt.qm share/locale/lt/LC_MESSAGES/falkon_pim_qt.qm share/locale/lt/LC_MESSAGES/falkon_qt.qm share/locale/lt/LC_MESSAGES/falkon_runaction.mo share/locale/lt/LC_MESSAGES/falkon_statusbaricons_qt.qm share/locale/lt/LC_MESSAGES/falkon_tabmanager_qt.qm share/locale/lt/LC_MESSAGES/falkon_testplugin_qt.qm share/locale/lt/LC_MESSAGES/falkon_verticaltabs_qt.qm share/locale/lv/LC_MESSAGES/falkon_autoscroll_qt.qm share/locale/lv/LC_MESSAGES/falkon_flashcookiemanager_qt.qm share/locale/lv/LC_MESSAGES/falkon_gnomekeyringpasswords_qt.qm share/locale/lv/LC_MESSAGES/falkon_greasemonkey_qt.qm share/locale/lv/LC_MESSAGES/falkon_hellopython.mo share/locale/lv/LC_MESSAGES/falkon_helloqml.mo share/locale/lv/LC_MESSAGES/falkon_kdeframeworksintegration_qt.qm share/locale/lv/LC_MESSAGES/falkon_middleclickloader.mo share/locale/lv/LC_MESSAGES/falkon_mousegestures_qt.qm share/locale/lv/LC_MESSAGES/falkon_pim_qt.qm share/locale/lv/LC_MESSAGES/falkon_qt.qm share/locale/lv/LC_MESSAGES/falkon_runaction.mo share/locale/lv/LC_MESSAGES/falkon_sitesettingsview_qt.qm share/locale/lv/LC_MESSAGES/falkon_statusbaricons_qt.qm share/locale/lv/LC_MESSAGES/falkon_tabmanager_qt.qm share/locale/lv/LC_MESSAGES/falkon_testplugin_qt.qm share/locale/lv/LC_MESSAGES/falkon_verticaltabs_qt.qm share/locale/nb/LC_MESSAGES/falkon_autoscroll_qt.qm share/locale/nb/LC_MESSAGES/falkon_flashcookiemanager_qt.qm share/locale/nb/LC_MESSAGES/falkon_gnomekeyringpasswords_qt.qm share/locale/nb/LC_MESSAGES/falkon_greasemonkey_qt.qm share/locale/nb/LC_MESSAGES/falkon_kdeframeworksintegration_qt.qm share/locale/nb/LC_MESSAGES/falkon_mousegestures_qt.qm share/locale/nb/LC_MESSAGES/falkon_pim_qt.qm share/locale/nb/LC_MESSAGES/falkon_qt.qm share/locale/nb/LC_MESSAGES/falkon_statusbaricons_qt.qm share/locale/nb/LC_MESSAGES/falkon_tabmanager_qt.qm share/locale/nb/LC_MESSAGES/falkon_testplugin_qt.qm share/locale/nl/LC_MESSAGES/falkon_autoscroll_qt.qm share/locale/nl/LC_MESSAGES/falkon_flashcookiemanager_qt.qm share/locale/nl/LC_MESSAGES/falkon_gnomekeyringpasswords_qt.qm share/locale/nl/LC_MESSAGES/falkon_greasemonkey_qt.qm share/locale/nl/LC_MESSAGES/falkon_hellopython.mo share/locale/nl/LC_MESSAGES/falkon_helloqml.mo share/locale/nl/LC_MESSAGES/falkon_kdeframeworksintegration_qt.qm share/locale/nl/LC_MESSAGES/falkon_middleclickloader.mo share/locale/nl/LC_MESSAGES/falkon_mousegestures_qt.qm share/locale/nl/LC_MESSAGES/falkon_pim_qt.qm share/locale/nl/LC_MESSAGES/falkon_qt.qm share/locale/nl/LC_MESSAGES/falkon_runaction.mo share/locale/nl/LC_MESSAGES/falkon_sitesettingsview_qt.qm share/locale/nl/LC_MESSAGES/falkon_statusbaricons_qt.qm share/locale/nl/LC_MESSAGES/falkon_tabmanager_qt.qm share/locale/nl/LC_MESSAGES/falkon_testplugin_qt.qm share/locale/nl/LC_MESSAGES/falkon_verticaltabs_qt.qm share/locale/nn/LC_MESSAGES/falkon_autoscroll_qt.qm share/locale/nn/LC_MESSAGES/falkon_flashcookiemanager_qt.qm share/locale/nn/LC_MESSAGES/falkon_gnomekeyringpasswords_qt.qm share/locale/nn/LC_MESSAGES/falkon_greasemonkey_qt.qm share/locale/nn/LC_MESSAGES/falkon_hellopython.mo share/locale/nn/LC_MESSAGES/falkon_helloqml.mo share/locale/nn/LC_MESSAGES/falkon_kdeframeworksintegration_qt.qm share/locale/nn/LC_MESSAGES/falkon_middleclickloader.mo share/locale/nn/LC_MESSAGES/falkon_mousegestures_qt.qm share/locale/nn/LC_MESSAGES/falkon_pim_qt.qm share/locale/nn/LC_MESSAGES/falkon_qt.qm share/locale/nn/LC_MESSAGES/falkon_runaction.mo share/locale/nn/LC_MESSAGES/falkon_statusbaricons_qt.qm share/locale/nn/LC_MESSAGES/falkon_tabmanager_qt.qm share/locale/nn/LC_MESSAGES/falkon_testplugin_qt.qm share/locale/nn/LC_MESSAGES/falkon_verticaltabs_qt.qm share/locale/pa/LC_MESSAGES/falkon_qt.qm share/locale/pl/LC_MESSAGES/falkon_autoscroll_qt.qm share/locale/pl/LC_MESSAGES/falkon_flashcookiemanager_qt.qm share/locale/pl/LC_MESSAGES/falkon_gnomekeyringpasswords_qt.qm share/locale/pl/LC_MESSAGES/falkon_greasemonkey_qt.qm share/locale/pl/LC_MESSAGES/falkon_hellopython.mo share/locale/pl/LC_MESSAGES/falkon_helloqml.mo share/locale/pl/LC_MESSAGES/falkon_kdeframeworksintegration_qt.qm share/locale/pl/LC_MESSAGES/falkon_middleclickloader.mo share/locale/pl/LC_MESSAGES/falkon_mousegestures_qt.qm share/locale/pl/LC_MESSAGES/falkon_pim_qt.qm share/locale/pl/LC_MESSAGES/falkon_qt.qm share/locale/pl/LC_MESSAGES/falkon_runaction.mo share/locale/pl/LC_MESSAGES/falkon_sitesettingsview_qt.qm share/locale/pl/LC_MESSAGES/falkon_statusbaricons_qt.qm share/locale/pl/LC_MESSAGES/falkon_tabmanager_qt.qm share/locale/pl/LC_MESSAGES/falkon_testplugin_qt.qm share/locale/pl/LC_MESSAGES/falkon_verticaltabs_qt.qm share/locale/pt/LC_MESSAGES/falkon_autoscroll_qt.qm share/locale/pt/LC_MESSAGES/falkon_flashcookiemanager_qt.qm share/locale/pt/LC_MESSAGES/falkon_gnomekeyringpasswords_qt.qm share/locale/pt/LC_MESSAGES/falkon_greasemonkey_qt.qm share/locale/pt/LC_MESSAGES/falkon_hellopython.mo share/locale/pt/LC_MESSAGES/falkon_helloqml.mo share/locale/pt/LC_MESSAGES/falkon_kdeframeworksintegration_qt.qm share/locale/pt/LC_MESSAGES/falkon_middleclickloader.mo share/locale/pt/LC_MESSAGES/falkon_mousegestures_qt.qm share/locale/pt/LC_MESSAGES/falkon_pim_qt.qm share/locale/pt/LC_MESSAGES/falkon_qt.qm share/locale/pt/LC_MESSAGES/falkon_runaction.mo share/locale/pt/LC_MESSAGES/falkon_statusbaricons_qt.qm share/locale/pt/LC_MESSAGES/falkon_tabmanager_qt.qm share/locale/pt/LC_MESSAGES/falkon_testplugin_qt.qm share/locale/pt/LC_MESSAGES/falkon_verticaltabs_qt.qm share/locale/pt_BR/LC_MESSAGES/falkon_autoscroll_qt.qm share/locale/pt_BR/LC_MESSAGES/falkon_flashcookiemanager_qt.qm share/locale/pt_BR/LC_MESSAGES/falkon_gnomekeyringpasswords_qt.qm share/locale/pt_BR/LC_MESSAGES/falkon_greasemonkey_qt.qm share/locale/pt_BR/LC_MESSAGES/falkon_hellopython.mo share/locale/pt_BR/LC_MESSAGES/falkon_helloqml.mo share/locale/pt_BR/LC_MESSAGES/falkon_kdeframeworksintegration_qt.qm share/locale/pt_BR/LC_MESSAGES/falkon_middleclickloader.mo share/locale/pt_BR/LC_MESSAGES/falkon_mousegestures_qt.qm share/locale/pt_BR/LC_MESSAGES/falkon_pim_qt.qm share/locale/pt_BR/LC_MESSAGES/falkon_qt.qm share/locale/pt_BR/LC_MESSAGES/falkon_runaction.mo +share/locale/pt_BR/LC_MESSAGES/falkon_sitesettingsview_qt.qm share/locale/pt_BR/LC_MESSAGES/falkon_statusbaricons_qt.qm share/locale/pt_BR/LC_MESSAGES/falkon_tabmanager_qt.qm share/locale/pt_BR/LC_MESSAGES/falkon_testplugin_qt.qm share/locale/pt_BR/LC_MESSAGES/falkon_verticaltabs_qt.qm share/locale/ru/LC_MESSAGES/falkon_autoscroll_qt.qm share/locale/ru/LC_MESSAGES/falkon_flashcookiemanager_qt.qm share/locale/ru/LC_MESSAGES/falkon_gnomekeyringpasswords_qt.qm share/locale/ru/LC_MESSAGES/falkon_greasemonkey_qt.qm share/locale/ru/LC_MESSAGES/falkon_hellopython.mo share/locale/ru/LC_MESSAGES/falkon_helloqml.mo share/locale/ru/LC_MESSAGES/falkon_kdeframeworksintegration_qt.qm share/locale/ru/LC_MESSAGES/falkon_middleclickloader.mo share/locale/ru/LC_MESSAGES/falkon_mousegestures_qt.qm share/locale/ru/LC_MESSAGES/falkon_pim_qt.qm share/locale/ru/LC_MESSAGES/falkon_qt.qm share/locale/ru/LC_MESSAGES/falkon_runaction.mo share/locale/ru/LC_MESSAGES/falkon_sitesettingsview_qt.qm share/locale/ru/LC_MESSAGES/falkon_statusbaricons_qt.qm share/locale/ru/LC_MESSAGES/falkon_tabmanager_qt.qm share/locale/ru/LC_MESSAGES/falkon_testplugin_qt.qm share/locale/ru/LC_MESSAGES/falkon_verticaltabs_qt.qm share/locale/sa/LC_MESSAGES/falkon_autoscroll_qt.qm share/locale/sa/LC_MESSAGES/falkon_flashcookiemanager_qt.qm share/locale/sa/LC_MESSAGES/falkon_gnomekeyringpasswords_qt.qm share/locale/sa/LC_MESSAGES/falkon_greasemonkey_qt.qm share/locale/sa/LC_MESSAGES/falkon_hellopython.mo share/locale/sa/LC_MESSAGES/falkon_helloqml.mo share/locale/sa/LC_MESSAGES/falkon_kdeframeworksintegration_qt.qm share/locale/sa/LC_MESSAGES/falkon_middleclickloader.mo share/locale/sa/LC_MESSAGES/falkon_mousegestures_qt.qm share/locale/sa/LC_MESSAGES/falkon_pim_qt.qm share/locale/sa/LC_MESSAGES/falkon_qt.qm share/locale/sa/LC_MESSAGES/falkon_runaction.mo share/locale/sa/LC_MESSAGES/falkon_sitesettingsview_qt.qm share/locale/sa/LC_MESSAGES/falkon_statusbaricons_qt.qm share/locale/sa/LC_MESSAGES/falkon_tabmanager_qt.qm share/locale/sa/LC_MESSAGES/falkon_testplugin_qt.qm share/locale/sa/LC_MESSAGES/falkon_verticaltabs_qt.qm share/locale/sk/LC_MESSAGES/falkon_autoscroll_qt.qm share/locale/sk/LC_MESSAGES/falkon_flashcookiemanager_qt.qm share/locale/sk/LC_MESSAGES/falkon_gnomekeyringpasswords_qt.qm share/locale/sk/LC_MESSAGES/falkon_greasemonkey_qt.qm share/locale/sk/LC_MESSAGES/falkon_hellopython.mo share/locale/sk/LC_MESSAGES/falkon_helloqml.mo share/locale/sk/LC_MESSAGES/falkon_kdeframeworksintegration_qt.qm share/locale/sk/LC_MESSAGES/falkon_middleclickloader.mo share/locale/sk/LC_MESSAGES/falkon_mousegestures_qt.qm share/locale/sk/LC_MESSAGES/falkon_pim_qt.qm share/locale/sk/LC_MESSAGES/falkon_qt.qm share/locale/sk/LC_MESSAGES/falkon_runaction.mo share/locale/sk/LC_MESSAGES/falkon_sitesettingsview_qt.qm share/locale/sk/LC_MESSAGES/falkon_statusbaricons_qt.qm share/locale/sk/LC_MESSAGES/falkon_tabmanager_qt.qm share/locale/sk/LC_MESSAGES/falkon_testplugin_qt.qm share/locale/sk/LC_MESSAGES/falkon_verticaltabs_qt.qm share/locale/sl/LC_MESSAGES/falkon_autoscroll_qt.qm share/locale/sl/LC_MESSAGES/falkon_flashcookiemanager_qt.qm share/locale/sl/LC_MESSAGES/falkon_gnomekeyringpasswords_qt.qm share/locale/sl/LC_MESSAGES/falkon_greasemonkey_qt.qm share/locale/sl/LC_MESSAGES/falkon_hellopython.mo share/locale/sl/LC_MESSAGES/falkon_helloqml.mo share/locale/sl/LC_MESSAGES/falkon_kdeframeworksintegration_qt.qm share/locale/sl/LC_MESSAGES/falkon_middleclickloader.mo share/locale/sl/LC_MESSAGES/falkon_mousegestures_qt.qm share/locale/sl/LC_MESSAGES/falkon_pim_qt.qm share/locale/sl/LC_MESSAGES/falkon_qt.qm share/locale/sl/LC_MESSAGES/falkon_runaction.mo share/locale/sl/LC_MESSAGES/falkon_sitesettingsview_qt.qm share/locale/sl/LC_MESSAGES/falkon_statusbaricons_qt.qm share/locale/sl/LC_MESSAGES/falkon_tabmanager_qt.qm share/locale/sl/LC_MESSAGES/falkon_testplugin_qt.qm share/locale/sl/LC_MESSAGES/falkon_verticaltabs_qt.qm share/locale/sr/LC_MESSAGES/falkon_autoscroll_qt.qm share/locale/sr/LC_MESSAGES/falkon_flashcookiemanager_qt.qm share/locale/sr/LC_MESSAGES/falkon_greasemonkey_qt.qm share/locale/sr/LC_MESSAGES/falkon_kdeframeworksintegration_qt.qm share/locale/sr/LC_MESSAGES/falkon_mousegestures_qt.qm share/locale/sr/LC_MESSAGES/falkon_pim_qt.qm share/locale/sr/LC_MESSAGES/falkon_qt.qm share/locale/sr/LC_MESSAGES/falkon_statusbaricons_qt.qm share/locale/sr/LC_MESSAGES/falkon_tabmanager_qt.qm share/locale/sr/LC_MESSAGES/falkon_testplugin_qt.qm share/locale/sr@ijekavian/LC_MESSAGES/falkon_autoscroll_qt.qm share/locale/sr@ijekavian/LC_MESSAGES/falkon_flashcookiemanager_qt.qm share/locale/sr@ijekavian/LC_MESSAGES/falkon_greasemonkey_qt.qm share/locale/sr@ijekavian/LC_MESSAGES/falkon_kdeframeworksintegration_qt.qm share/locale/sr@ijekavian/LC_MESSAGES/falkon_mousegestures_qt.qm share/locale/sr@ijekavian/LC_MESSAGES/falkon_pim_qt.qm share/locale/sr@ijekavian/LC_MESSAGES/falkon_qt.qm share/locale/sr@ijekavian/LC_MESSAGES/falkon_statusbaricons_qt.qm share/locale/sr@ijekavian/LC_MESSAGES/falkon_tabmanager_qt.qm share/locale/sr@ijekavian/LC_MESSAGES/falkon_testplugin_qt.qm share/locale/sr@ijekavianlatin/LC_MESSAGES/falkon_autoscroll_qt.qm share/locale/sr@ijekavianlatin/LC_MESSAGES/falkon_flashcookiemanager_qt.qm share/locale/sr@ijekavianlatin/LC_MESSAGES/falkon_greasemonkey_qt.qm share/locale/sr@ijekavianlatin/LC_MESSAGES/falkon_kdeframeworksintegration_qt.qm share/locale/sr@ijekavianlatin/LC_MESSAGES/falkon_mousegestures_qt.qm share/locale/sr@ijekavianlatin/LC_MESSAGES/falkon_pim_qt.qm share/locale/sr@ijekavianlatin/LC_MESSAGES/falkon_qt.qm share/locale/sr@ijekavianlatin/LC_MESSAGES/falkon_statusbaricons_qt.qm share/locale/sr@ijekavianlatin/LC_MESSAGES/falkon_tabmanager_qt.qm share/locale/sr@ijekavianlatin/LC_MESSAGES/falkon_testplugin_qt.qm share/locale/sr@latin/LC_MESSAGES/falkon_autoscroll_qt.qm share/locale/sr@latin/LC_MESSAGES/falkon_flashcookiemanager_qt.qm share/locale/sr@latin/LC_MESSAGES/falkon_greasemonkey_qt.qm share/locale/sr@latin/LC_MESSAGES/falkon_kdeframeworksintegration_qt.qm share/locale/sr@latin/LC_MESSAGES/falkon_mousegestures_qt.qm share/locale/sr@latin/LC_MESSAGES/falkon_pim_qt.qm share/locale/sr@latin/LC_MESSAGES/falkon_qt.qm share/locale/sr@latin/LC_MESSAGES/falkon_statusbaricons_qt.qm share/locale/sr@latin/LC_MESSAGES/falkon_tabmanager_qt.qm share/locale/sr@latin/LC_MESSAGES/falkon_testplugin_qt.qm share/locale/sv/LC_MESSAGES/falkon_autoscroll_qt.qm share/locale/sv/LC_MESSAGES/falkon_flashcookiemanager_qt.qm share/locale/sv/LC_MESSAGES/falkon_gnomekeyringpasswords_qt.qm share/locale/sv/LC_MESSAGES/falkon_greasemonkey_qt.qm share/locale/sv/LC_MESSAGES/falkon_hellopython.mo share/locale/sv/LC_MESSAGES/falkon_helloqml.mo share/locale/sv/LC_MESSAGES/falkon_kdeframeworksintegration_qt.qm share/locale/sv/LC_MESSAGES/falkon_middleclickloader.mo share/locale/sv/LC_MESSAGES/falkon_mousegestures_qt.qm share/locale/sv/LC_MESSAGES/falkon_pim_qt.qm share/locale/sv/LC_MESSAGES/falkon_qt.qm share/locale/sv/LC_MESSAGES/falkon_runaction.mo share/locale/sv/LC_MESSAGES/falkon_sitesettingsview_qt.qm share/locale/sv/LC_MESSAGES/falkon_statusbaricons_qt.qm share/locale/sv/LC_MESSAGES/falkon_tabmanager_qt.qm share/locale/sv/LC_MESSAGES/falkon_testplugin_qt.qm share/locale/sv/LC_MESSAGES/falkon_verticaltabs_qt.qm share/locale/ta/LC_MESSAGES/falkon_qt.qm share/locale/tr/LC_MESSAGES/falkon_autoscroll_qt.qm share/locale/tr/LC_MESSAGES/falkon_flashcookiemanager_qt.qm share/locale/tr/LC_MESSAGES/falkon_gnomekeyringpasswords_qt.qm share/locale/tr/LC_MESSAGES/falkon_greasemonkey_qt.qm share/locale/tr/LC_MESSAGES/falkon_hellopython.mo share/locale/tr/LC_MESSAGES/falkon_helloqml.mo share/locale/tr/LC_MESSAGES/falkon_kdeframeworksintegration_qt.qm share/locale/tr/LC_MESSAGES/falkon_middleclickloader.mo share/locale/tr/LC_MESSAGES/falkon_mousegestures_qt.qm share/locale/tr/LC_MESSAGES/falkon_pim_qt.qm share/locale/tr/LC_MESSAGES/falkon_qt.qm share/locale/tr/LC_MESSAGES/falkon_runaction.mo share/locale/tr/LC_MESSAGES/falkon_sitesettingsview_qt.qm share/locale/tr/LC_MESSAGES/falkon_statusbaricons_qt.qm share/locale/tr/LC_MESSAGES/falkon_tabmanager_qt.qm share/locale/tr/LC_MESSAGES/falkon_testplugin_qt.qm share/locale/tr/LC_MESSAGES/falkon_verticaltabs_qt.qm share/locale/uk/LC_MESSAGES/falkon_autoscroll_qt.qm share/locale/uk/LC_MESSAGES/falkon_flashcookiemanager_qt.qm share/locale/uk/LC_MESSAGES/falkon_gnomekeyringpasswords_qt.qm share/locale/uk/LC_MESSAGES/falkon_greasemonkey_qt.qm share/locale/uk/LC_MESSAGES/falkon_hellopython.mo share/locale/uk/LC_MESSAGES/falkon_helloqml.mo share/locale/uk/LC_MESSAGES/falkon_kdeframeworksintegration_qt.qm share/locale/uk/LC_MESSAGES/falkon_middleclickloader.mo share/locale/uk/LC_MESSAGES/falkon_mousegestures_qt.qm share/locale/uk/LC_MESSAGES/falkon_pim_qt.qm share/locale/uk/LC_MESSAGES/falkon_qt.qm share/locale/uk/LC_MESSAGES/falkon_runaction.mo share/locale/uk/LC_MESSAGES/falkon_sitesettingsview_qt.qm share/locale/uk/LC_MESSAGES/falkon_statusbaricons_qt.qm share/locale/uk/LC_MESSAGES/falkon_tabmanager_qt.qm share/locale/uk/LC_MESSAGES/falkon_testplugin_qt.qm share/locale/uk/LC_MESSAGES/falkon_verticaltabs_qt.qm share/locale/zh_CN/LC_MESSAGES/falkon_autoscroll_qt.qm share/locale/zh_CN/LC_MESSAGES/falkon_flashcookiemanager_qt.qm share/locale/zh_CN/LC_MESSAGES/falkon_gnomekeyringpasswords_qt.qm share/locale/zh_CN/LC_MESSAGES/falkon_greasemonkey_qt.qm share/locale/zh_CN/LC_MESSAGES/falkon_hellopython.mo share/locale/zh_CN/LC_MESSAGES/falkon_helloqml.mo share/locale/zh_CN/LC_MESSAGES/falkon_kdeframeworksintegration_qt.qm share/locale/zh_CN/LC_MESSAGES/falkon_middleclickloader.mo share/locale/zh_CN/LC_MESSAGES/falkon_mousegestures_qt.qm share/locale/zh_CN/LC_MESSAGES/falkon_pim_qt.qm share/locale/zh_CN/LC_MESSAGES/falkon_qt.qm share/locale/zh_CN/LC_MESSAGES/falkon_runaction.mo share/locale/zh_CN/LC_MESSAGES/falkon_sitesettingsview_qt.qm share/locale/zh_CN/LC_MESSAGES/falkon_statusbaricons_qt.qm share/locale/zh_CN/LC_MESSAGES/falkon_tabmanager_qt.qm share/locale/zh_CN/LC_MESSAGES/falkon_testplugin_qt.qm share/locale/zh_CN/LC_MESSAGES/falkon_verticaltabs_qt.qm share/locale/zh_HK/LC_MESSAGES/falkon_autoscroll_qt.qm share/locale/zh_HK/LC_MESSAGES/falkon_flashcookiemanager_qt.qm share/locale/zh_HK/LC_MESSAGES/falkon_greasemonkey_qt.qm share/locale/zh_HK/LC_MESSAGES/falkon_kdeframeworksintegration_qt.qm share/locale/zh_HK/LC_MESSAGES/falkon_mousegestures_qt.qm share/locale/zh_HK/LC_MESSAGES/falkon_pim_qt.qm share/locale/zh_HK/LC_MESSAGES/falkon_qt.qm share/locale/zh_HK/LC_MESSAGES/falkon_statusbaricons_qt.qm share/locale/zh_HK/LC_MESSAGES/falkon_tabmanager_qt.qm share/locale/zh_HK/LC_MESSAGES/falkon_testplugin_qt.qm share/locale/zh_TW/LC_MESSAGES/falkon_autoscroll_qt.qm share/locale/zh_TW/LC_MESSAGES/falkon_flashcookiemanager_qt.qm share/locale/zh_TW/LC_MESSAGES/falkon_gnomekeyringpasswords_qt.qm share/locale/zh_TW/LC_MESSAGES/falkon_greasemonkey_qt.qm share/locale/zh_TW/LC_MESSAGES/falkon_hellopython.mo share/locale/zh_TW/LC_MESSAGES/falkon_helloqml.mo share/locale/zh_TW/LC_MESSAGES/falkon_kdeframeworksintegration_qt.qm share/locale/zh_TW/LC_MESSAGES/falkon_middleclickloader.mo share/locale/zh_TW/LC_MESSAGES/falkon_mousegestures_qt.qm share/locale/zh_TW/LC_MESSAGES/falkon_pim_qt.qm share/locale/zh_TW/LC_MESSAGES/falkon_qt.qm share/locale/zh_TW/LC_MESSAGES/falkon_runaction.mo share/locale/zh_TW/LC_MESSAGES/falkon_sitesettingsview_qt.qm share/locale/zh_TW/LC_MESSAGES/falkon_statusbaricons_qt.qm share/locale/zh_TW/LC_MESSAGES/falkon_tabmanager_qt.qm share/locale/zh_TW/LC_MESSAGES/falkon_testplugin_qt.qm share/locale/zh_TW/LC_MESSAGES/falkon_verticaltabs_qt.qm share/metainfo/org.kde.falkon.appdata.xml diff --git a/x11-clocks/kteatime/Makefile b/x11-clocks/kteatime/Makefile index 02f7daa2947b..745767e0aa08 100644 --- a/x11-clocks/kteatime/Makefile +++ b/x11-clocks/kteatime/Makefile @@ -1,18 +1,18 @@ PORTNAME= kteatime DISTVERSION= ${KDE_APPLICATIONS_VERSION} CATEGORIES= x11-clocks kde kde-applications MAINTAINER= kde@FreeBSD.org COMMENT= Handy timer for steeping tea WWW= https://www.kde.org/ USES= cmake compiler:c++11-lang gettext kde:6 qt:6 tar:xz -USE_KDE= auth codecs config configwidgets coreaddons crash doctools \ - i18n iconthemes notifications notifyconfig sonnet textwidgets \ - widgetsaddons xmlgui \ +USE_KDE= config coreaddons crash doctools guiaddons \ + i18n iconthemes notifications notifyconfig \ + statusnotifieritem textwidgets xmlgui \ ecm:build USE_QT= base OPTIONS_DEFINE= DOCS .include diff --git a/x11-clocks/kteatime/distinfo b/x11-clocks/kteatime/distinfo index b9d28e72026c..ed860012b144 100644 --- a/x11-clocks/kteatime/distinfo +++ b/x11-clocks/kteatime/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1751381702 -SHA256 (KDE/release-service/25.04.3/kteatime-25.04.3.tar.xz) = 6129cab14e22483620179c4bd18bcc57efe81833616b60453261b549582b916c -SIZE (KDE/release-service/25.04.3/kteatime-25.04.3.tar.xz) = 311688 +TIMESTAMP = 1754646604 +SHA256 (KDE/release-service/25.08.0/kteatime-25.08.0.tar.xz) = 081a892d78b230e45ff5604ec91a25a166bf98259644ee0ad15af0316da5e34a +SIZE (KDE/release-service/25.08.0/kteatime-25.08.0.tar.xz) = 311796 diff --git a/x11-clocks/ktimer/distinfo b/x11-clocks/ktimer/distinfo index 8148af24cf96..43a333d43197 100644 --- a/x11-clocks/ktimer/distinfo +++ b/x11-clocks/ktimer/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1751381705 -SHA256 (KDE/release-service/25.04.3/ktimer-25.04.3.tar.xz) = f582b442a956284b56d15b8139da248e76701e0caa725e6e65175cd92dd45d94 -SIZE (KDE/release-service/25.04.3/ktimer-25.04.3.tar.xz) = 454584 +TIMESTAMP = 1754646606 +SHA256 (KDE/release-service/25.08.0/ktimer-25.08.0.tar.xz) = 232ef83aba74706ba34f96b3cd5bb00dd15ce18690365da24eabbeebddb3e41b +SIZE (KDE/release-service/25.08.0/ktimer-25.08.0.tar.xz) = 454628 diff --git a/x11-fm/dolphin/distinfo b/x11-fm/dolphin/distinfo index 4802fc95b18c..aecb96439cd4 100644 --- a/x11-fm/dolphin/distinfo +++ b/x11-fm/dolphin/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1751381707 -SHA256 (KDE/release-service/25.04.3/dolphin-25.04.3.tar.xz) = e822faf02d3d727faf14789eacd331288cb8a74bb9b9881f1e7cd1789752c3f1 -SIZE (KDE/release-service/25.04.3/dolphin-25.04.3.tar.xz) = 5741148 +TIMESTAMP = 1754646609 +SHA256 (KDE/release-service/25.08.0/dolphin-25.08.0.tar.xz) = ddd5e5622594792490695999188c6215c3a0821787c71dfb57dbfdd08e1ce935 +SIZE (KDE/release-service/25.08.0/dolphin-25.08.0.tar.xz) = 5812908 diff --git a/x11-fm/dolphin/pkg-plist b/x11-fm/dolphin/pkg-plist index e1e11e8c48d0..1c3a789e07a9 100644 --- a/x11-fm/dolphin/pkg-plist +++ b/x11-fm/dolphin/pkg-plist @@ -1,188 +1,189 @@ bin/dolphin bin/servicemenuinstaller include/Dolphin/KVersionControlPlugin include/Dolphin/dolphinvcs_version.h include/Dolphin/kversioncontrolplugin.h include/dolphin_export.h include/dolphinvcs_export.h lib/cmake/DolphinVcs/DolphinVcsConfig.cmake lib/cmake/DolphinVcs/DolphinVcsConfigVersion.cmake lib/cmake/DolphinVcs/DolphinVcsTargets-%%CMAKE_BUILD_TYPE%%.cmake lib/cmake/DolphinVcs/DolphinVcsTargets.cmake lib/kconf_update_bin/dolphin_25.04_update_statusandlocationbarssettings lib/libdolphinprivate.so.%%KDE_APPLICATIONS_VERSION%% lib/libdolphinprivate.so.%%SHLIB_SHVER%% lib/libdolphinvcs.so lib/libdolphinvcs.so.%%KDE_APPLICATIONS_VERSION%% lib/libdolphinvcs.so.%%SHLIB_SHVER%% %%QT_PLUGINDIR%%/dolphin/kcms/kcm_dolphingeneral.so %%QT_PLUGINDIR%%/dolphin/kcms/kcm_dolphinviewmodes.so +%%QT_PLUGINDIR%%/kf%%SHLIB_SHVER%%/kfileitemaction/setfoldericonitemaction.so %%QT_PLUGINDIR%%/kf6/kfileitemaction/movetonewfolderitemaction.so %%QT_PLUGINDIR%%/kf6/parts/dolphinpart.so lib/systemd/user/plasma-dolphin.service share/applications/org.kde.dolphin.desktop share/config.kcfg/dolphin_compactmodesettings.kcfg share/config.kcfg/dolphin_contentdisplaysettings.kcfg share/config.kcfg/dolphin_contextmenusettings.kcfg share/config.kcfg/dolphin_detailsmodesettings.kcfg share/config.kcfg/dolphin_directoryviewpropertysettings.kcfg share/config.kcfg/dolphin_generalsettings.kcfg share/config.kcfg/dolphin_iconsmodesettings.kcfg share/config.kcfg/dolphin_versioncontrolsettings.kcfg share/dbus-1/interfaces/org.freedesktop.FileManager1.xml share/dbus-1/services/org.kde.dolphin.FileManager1.service %%DATADIR%%/dolphinpartactions.desktop share/icons/hicolor/scalable/apps/org.kde.dolphin.svg share/kconf_update/dolphin_detailsmodesettings.upd -share/kconf_update/dolphin_directorysizemode.py -share/kconf_update/dolphin_directorysizemode.upd +share/kconf_update/dolphin_replace_view_mode_with_view_settings_in_toolbar.py +share/kconf_update/dolphin_replace_view_mode_with_view_settings_in_toolbar.upd share/kconf_update/dolphin_statusandlocationbarssettings.upd share/kglobalaccel/org.kde.dolphin.desktop share/knsrcfiles/servicemenu.knsrc share/locale/ar/LC_MESSAGES/dolphin.mo share/locale/ar/LC_MESSAGES/dolphin_servicemenuinstaller.mo share/locale/ast/LC_MESSAGES/dolphin.mo share/locale/ast/LC_MESSAGES/dolphin_servicemenuinstaller.mo share/locale/az/LC_MESSAGES/dolphin.mo share/locale/az/LC_MESSAGES/dolphin_servicemenuinstaller.mo share/locale/be/LC_MESSAGES/dolphin.mo share/locale/be/LC_MESSAGES/dolphin_servicemenuinstaller.mo share/locale/be@latin/LC_MESSAGES/dolphin.mo share/locale/bg/LC_MESSAGES/dolphin.mo share/locale/bg/LC_MESSAGES/dolphin_servicemenuinstaller.mo share/locale/bn/LC_MESSAGES/dolphin.mo share/locale/bn_IN/LC_MESSAGES/dolphin.mo share/locale/bs/LC_MESSAGES/dolphin.mo share/locale/ca/LC_MESSAGES/dolphin.mo share/locale/ca/LC_MESSAGES/dolphin_servicemenuinstaller.mo share/locale/ca@valencia/LC_MESSAGES/dolphin.mo share/locale/ca@valencia/LC_MESSAGES/dolphin_servicemenuinstaller.mo share/locale/cs/LC_MESSAGES/dolphin.mo share/locale/cs/LC_MESSAGES/dolphin_servicemenuinstaller.mo share/locale/csb/LC_MESSAGES/dolphin.mo share/locale/da/LC_MESSAGES/dolphin.mo share/locale/da/LC_MESSAGES/dolphin_servicemenuinstaller.mo share/locale/de/LC_MESSAGES/dolphin.mo share/locale/de/LC_MESSAGES/dolphin_servicemenuinstaller.mo share/locale/el/LC_MESSAGES/dolphin.mo share/locale/el/LC_MESSAGES/dolphin_servicemenuinstaller.mo share/locale/en_GB/LC_MESSAGES/dolphin.mo share/locale/en_GB/LC_MESSAGES/dolphin_servicemenuinstaller.mo share/locale/eo/LC_MESSAGES/dolphin.mo share/locale/eo/LC_MESSAGES/dolphin_servicemenuinstaller.mo share/locale/es/LC_MESSAGES/dolphin.mo share/locale/es/LC_MESSAGES/dolphin_servicemenuinstaller.mo share/locale/et/LC_MESSAGES/dolphin.mo share/locale/et/LC_MESSAGES/dolphin_servicemenuinstaller.mo share/locale/eu/LC_MESSAGES/dolphin.mo share/locale/eu/LC_MESSAGES/dolphin_servicemenuinstaller.mo share/locale/fa/LC_MESSAGES/dolphin.mo share/locale/fi/LC_MESSAGES/dolphin.mo share/locale/fi/LC_MESSAGES/dolphin_servicemenuinstaller.mo share/locale/fr/LC_MESSAGES/dolphin.mo share/locale/fr/LC_MESSAGES/dolphin_servicemenuinstaller.mo share/locale/fy/LC_MESSAGES/dolphin.mo share/locale/ga/LC_MESSAGES/dolphin.mo share/locale/gl/LC_MESSAGES/dolphin.mo share/locale/gl/LC_MESSAGES/dolphin_servicemenuinstaller.mo share/locale/gu/LC_MESSAGES/dolphin.mo share/locale/he/LC_MESSAGES/dolphin.mo share/locale/he/LC_MESSAGES/dolphin_servicemenuinstaller.mo share/locale/hi/LC_MESSAGES/dolphin.mo share/locale/hi/LC_MESSAGES/dolphin_servicemenuinstaller.mo share/locale/hne/LC_MESSAGES/dolphin.mo share/locale/hr/LC_MESSAGES/dolphin.mo share/locale/hsb/LC_MESSAGES/dolphin.mo share/locale/hu/LC_MESSAGES/dolphin.mo share/locale/hu/LC_MESSAGES/dolphin_servicemenuinstaller.mo share/locale/ia/LC_MESSAGES/dolphin.mo share/locale/ia/LC_MESSAGES/dolphin_servicemenuinstaller.mo share/locale/id/LC_MESSAGES/dolphin.mo share/locale/id/LC_MESSAGES/dolphin_servicemenuinstaller.mo share/locale/ie/LC_MESSAGES/dolphin.mo share/locale/ie/LC_MESSAGES/dolphin_servicemenuinstaller.mo share/locale/is/LC_MESSAGES/dolphin.mo share/locale/is/LC_MESSAGES/dolphin_servicemenuinstaller.mo share/locale/it/LC_MESSAGES/dolphin.mo share/locale/it/LC_MESSAGES/dolphin_servicemenuinstaller.mo share/locale/ja/LC_MESSAGES/dolphin.mo share/locale/ja/LC_MESSAGES/dolphin_servicemenuinstaller.mo share/locale/ka/LC_MESSAGES/dolphin.mo share/locale/ka/LC_MESSAGES/dolphin_servicemenuinstaller.mo share/locale/kk/LC_MESSAGES/dolphin.mo share/locale/km/LC_MESSAGES/dolphin.mo share/locale/kn/LC_MESSAGES/dolphin.mo share/locale/ko/LC_MESSAGES/dolphin.mo share/locale/ko/LC_MESSAGES/dolphin_servicemenuinstaller.mo share/locale/ku/LC_MESSAGES/dolphin.mo share/locale/lt/LC_MESSAGES/dolphin.mo share/locale/lt/LC_MESSAGES/dolphin_servicemenuinstaller.mo share/locale/lv/LC_MESSAGES/dolphin.mo share/locale/lv/LC_MESSAGES/dolphin_servicemenuinstaller.mo share/locale/mai/LC_MESSAGES/dolphin.mo share/locale/mk/LC_MESSAGES/dolphin.mo share/locale/ml/LC_MESSAGES/dolphin.mo share/locale/ml/LC_MESSAGES/dolphin_servicemenuinstaller.mo share/locale/mr/LC_MESSAGES/dolphin.mo share/locale/ms/LC_MESSAGES/dolphin.mo share/locale/my/LC_MESSAGES/dolphin.mo share/locale/my/LC_MESSAGES/dolphin_servicemenuinstaller.mo share/locale/nb/LC_MESSAGES/dolphin.mo share/locale/nb/LC_MESSAGES/dolphin_servicemenuinstaller.mo share/locale/nds/LC_MESSAGES/dolphin.mo share/locale/ne/LC_MESSAGES/dolphin.mo share/locale/nl/LC_MESSAGES/dolphin.mo share/locale/nl/LC_MESSAGES/dolphin_servicemenuinstaller.mo share/locale/nn/LC_MESSAGES/dolphin.mo share/locale/nn/LC_MESSAGES/dolphin_servicemenuinstaller.mo share/locale/oc/LC_MESSAGES/dolphin.mo share/locale/or/LC_MESSAGES/dolphin.mo share/locale/pa/LC_MESSAGES/dolphin.mo share/locale/pa/LC_MESSAGES/dolphin_servicemenuinstaller.mo share/locale/pl/LC_MESSAGES/dolphin.mo share/locale/pl/LC_MESSAGES/dolphin_servicemenuinstaller.mo share/locale/pt/LC_MESSAGES/dolphin.mo share/locale/pt/LC_MESSAGES/dolphin_servicemenuinstaller.mo share/locale/pt_BR/LC_MESSAGES/dolphin.mo share/locale/pt_BR/LC_MESSAGES/dolphin_servicemenuinstaller.mo share/locale/ro/LC_MESSAGES/dolphin.mo share/locale/ro/LC_MESSAGES/dolphin_servicemenuinstaller.mo share/locale/ru/LC_MESSAGES/dolphin.mo share/locale/ru/LC_MESSAGES/dolphin_servicemenuinstaller.mo share/locale/sa/LC_MESSAGES/dolphin.mo share/locale/sa/LC_MESSAGES/dolphin_servicemenuinstaller.mo share/locale/se/LC_MESSAGES/dolphin.mo share/locale/si/LC_MESSAGES/dolphin.mo share/locale/sk/LC_MESSAGES/dolphin.mo share/locale/sk/LC_MESSAGES/dolphin_servicemenuinstaller.mo share/locale/sl/LC_MESSAGES/dolphin.mo share/locale/sl/LC_MESSAGES/dolphin_servicemenuinstaller.mo share/locale/sq/LC_MESSAGES/dolphin.mo share/locale/sr/LC_MESSAGES/dolphin.mo share/locale/sr@ijekavian/LC_MESSAGES/dolphin.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/dolphin.mo share/locale/sr@latin/LC_MESSAGES/dolphin.mo share/locale/sv/LC_MESSAGES/dolphin.mo share/locale/sv/LC_MESSAGES/dolphin_servicemenuinstaller.mo share/locale/ta/LC_MESSAGES/dolphin.mo share/locale/ta/LC_MESSAGES/dolphin_servicemenuinstaller.mo share/locale/te/LC_MESSAGES/dolphin.mo share/locale/tg/LC_MESSAGES/dolphin.mo share/locale/th/LC_MESSAGES/dolphin.mo share/locale/tr/LC_MESSAGES/dolphin.mo share/locale/tr/LC_MESSAGES/dolphin_servicemenuinstaller.mo share/locale/ug/LC_MESSAGES/dolphin.mo share/locale/uk/LC_MESSAGES/dolphin.mo share/locale/uk/LC_MESSAGES/dolphin_servicemenuinstaller.mo share/locale/uz/LC_MESSAGES/dolphin.mo share/locale/uz@cyrillic/LC_MESSAGES/dolphin.mo share/locale/vi/LC_MESSAGES/dolphin.mo share/locale/vi/LC_MESSAGES/dolphin_servicemenuinstaller.mo share/locale/wa/LC_MESSAGES/dolphin.mo share/locale/zh_CN/LC_MESSAGES/dolphin.mo share/locale/zh_CN/LC_MESSAGES/dolphin_servicemenuinstaller.mo share/locale/zh_TW/LC_MESSAGES/dolphin.mo share/locale/zh_TW/LC_MESSAGES/dolphin_servicemenuinstaller.mo share/metainfo/org.kde.dolphin.appdata.xml share/qlogging-categories6/dolphin.categories share/zsh/site-functions/_dolphin diff --git a/x11-fm/konqueror/distinfo b/x11-fm/konqueror/distinfo index 1fb8fb88c1cf..146036297ec3 100644 --- a/x11-fm/konqueror/distinfo +++ b/x11-fm/konqueror/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1751381710 -SHA256 (KDE/release-service/25.04.3/konqueror-25.04.3.tar.xz) = 27daae200ecb441669d0cfd269372256e183b28401ca9b4986b6e862dc2a6ad0 -SIZE (KDE/release-service/25.04.3/konqueror-25.04.3.tar.xz) = 9812936 +TIMESTAMP = 1754646611 +SHA256 (KDE/release-service/25.08.0/konqueror-25.08.0.tar.xz) = 290a6be8a2ebe538ac3005e76d7951e9fb95bf2245fb0cbc007aa3cc8eca22c0 +SIZE (KDE/release-service/25.08.0/konqueror-25.08.0.tar.xz) = 9833388 diff --git a/x11-fm/konqueror/pkg-plist b/x11-fm/konqueror/pkg-plist index 0d369c2509fe..c70469eae99c 100644 --- a/x11-fm/konqueror/pkg-plist +++ b/x11-fm/konqueror/pkg-plist @@ -1,2069 +1,2071 @@ bin/fsview bin/kcreatewebarchive bin/kfmclient bin/konqueror etc/xdg/autostart/konqy_preload.desktop etc/xdg/konqautofiltersrc etc/xdg/konqsidebartngrc etc/xdg/translaterc etc/xdg/useragenttemplatesrc include/KF6/konq_events.h include/KF6/konq_historyentry.h include/KF6/konq_historyprovider.h include/KF6/konq_kpart_plugin.h include/KF6/konq_popupmenu.h include/KF6/konq_version.h include/KF6/konqsettings.h include/KF6/konqsettings_version.h include/KF6/konqsidebarplugin.h include/KF6/libkonq_export.h include/KF6/libkonqsettings_export.h include/KF6/selectorinterface.h lib/cmake/KF6Konq/KF6KonqConfig.cmake lib/cmake/KF6Konq/KF6KonqConfigVersion.cmake lib/cmake/KF6Konq/KF6KonqSettingsConfig.cmake lib/cmake/KF6Konq/KF6KonqSettingsConfigVersion.cmake lib/cmake/KF6Konq/KF6KonqSettingsTargets-%%CMAKE_BUILD_TYPE%%.cmake lib/cmake/KF6Konq/KF6KonqSettingsTargets.cmake lib/cmake/KF6Konq/KF6KonqTargets-%%CMAKE_BUILD_TYPE%%.cmake lib/cmake/KF6Konq/KF6KonqTargets.cmake lib/libKF6Konq.so lib/libKF6Konq.so.5.97.0 lib/libKF6Konq.so.7 lib/libKF6KonqSettings.so lib/libKF6KonqSettings.so.5.97.0 lib/libKF6KonqSettings.so.7 lib/libkonqsidebarplugin.so lib/libkonqsidebarplugin.so.%%KDE_APPLICATIONS_VERSION%% lib/libkonqsidebarplugin.so.6 lib/libkonquerorprivate.so.%%KDE_APPLICATIONS_VERSION%% lib/libkonquerorprivate.so.5 lib/libkwebenginepart.so %%QT_PLUGINDIR%%/akregatorkonqfeedicon.so %%QT_PLUGINDIR%%/autorefresh.so %%QT_PLUGINDIR%%/babelfishplugin.so %%QT_PLUGINDIR%%/dolphinpart/kpartplugins/dirfilterplugin.so %%QT_PLUGINDIR%%/dolphinpart/kpartplugins/kimgallery.so %%QT_PLUGINDIR%%/dolphinpart/kpartplugins/konq_shellcmdplugin.so %%QT_PLUGINDIR%%/kf6/kfileitemaction/akregatorplugin.so %%QT_PLUGINDIR%%/kf6/kio/bookmarks.so %%QT_PLUGINDIR%%/kf6/parts/fsviewpart.so %%QT_PLUGINDIR%%/kf6/parts/konq_sidebar.so %%QT_PLUGINDIR%%/kf6/parts/webenginepart.so %%QT_PLUGINDIR%%/kf6/thumbcreator/webarchivethumbnail.so %%QT_PLUGINDIR%%/khtml/kpartplugins/akregatorkonqfeediconkhtml_kpartplugins.so %%QT_PLUGINDIR%%/khtml/kpartplugins/autorefreshkhtml_kpartplugins.so %%QT_PLUGINDIR%%/khtml/kpartplugins/babelfishpluginkhtml_kpartplugins.so %%QT_PLUGINDIR%%/khtml/kpartplugins/khtmlsettingspluginkhtml_kpartplugins.so %%QT_PLUGINDIR%%/khtml/kpartplugins/konqueror_kget_browser_integrationkhtml_kpartplugins.so %%QT_PLUGINDIR%%/khtml/kpartplugins/temporarysavedirkhtml_kpartplugins.so %%QT_PLUGINDIR%%/khtml/kpartplugins/uachangerpluginkhtml_kpartplugins.so %%QT_PLUGINDIR%%/khtml/kpartplugins/webarchiverpluginkhtml_kpartplugins.so %%QT_PLUGINDIR%%/khtmlsettingsplugin.so %%QT_PLUGINDIR%%/konqueror/kpartplugins/searchbarplugin.so %%QT_PLUGINDIR%%/konqueror/sidebar/konqsidebar_bookmarks.so %%QT_PLUGINDIR%%/konqueror/sidebar/konqsidebar_history.so %%QT_PLUGINDIR%%/konqueror/sidebar/konqsidebar_places.so %%QT_PLUGINDIR%%/konqueror/sidebar/konqsidebar_tree.so %%QT_PLUGINDIR%%/konqueror/sidebar/konqsidebar_verticaltabbar.so %%QT_PLUGINDIR%%/konqueror_kcms/kcm_bookmarks.so %%QT_PLUGINDIR%%/konqueror_kcms/kcm_history.so %%QT_PLUGINDIR%%/konqueror_kcms/kcm_konq.so %%QT_PLUGINDIR%%/konqueror_kcms/kcm_performance.so %%QT_PLUGINDIR%%/konqueror_kcms/khtml_appearance.so %%QT_PLUGINDIR%%/konqueror_kcms/khtml_behavior.so %%QT_PLUGINDIR%%/konqueror_kcms/khtml_cache.so %%QT_PLUGINDIR%%/konqueror_kcms/khtml_cookies.so %%QT_PLUGINDIR%%/konqueror_kcms/khtml_filter.so %%QT_PLUGINDIR%%/konqueror_kcms/khtml_general.so %%QT_PLUGINDIR%%/konqueror_kcms/khtml_java_js.so %%QT_PLUGINDIR%%/konqueror_kcms/khtml_tabs.so %%QT_PLUGINDIR%%/konqueror_kcms/khtml_useragent.so %%QT_PLUGINDIR%%/konqueror_kget_browser_integration.so %%QT_PLUGINDIR%%/kwebkitpart/kpartplugins/akregatorkonqfeediconkwebkitpart_kpartplugins.so %%QT_PLUGINDIR%%/kwebkitpart/kpartplugins/autorefreshkwebkitpart_kpartplugins.so %%QT_PLUGINDIR%%/kwebkitpart/kpartplugins/babelfishpluginkwebkitpart_kpartplugins.so %%QT_PLUGINDIR%%/kwebkitpart/kpartplugins/khtmlsettingspluginkwebkitpart_kpartplugins.so %%QT_PLUGINDIR%%/kwebkitpart/kpartplugins/konqueror_kget_browser_integrationkwebkitpart_kpartplugins.so %%QT_PLUGINDIR%%/kwebkitpart/kpartplugins/temporarysavedirkwebkitpart_kpartplugins.so %%QT_PLUGINDIR%%/kwebkitpart/kpartplugins/uachangerpluginkwebkitpart_kpartplugins.so %%QT_PLUGINDIR%%/kwebkitpart/kpartplugins/webarchiverpluginkwebkitpart_kpartplugins.so %%QT_PLUGINDIR%%/temporarysavedir.so %%QT_PLUGINDIR%%/uachangerplugin.so %%QT_PLUGINDIR%%/webarchiverplugin.so %%QT_PLUGINDIR%%/webenginepart/kpartplugins/akregatorkonqfeediconwebenginepart_kpartplugins.so %%QT_PLUGINDIR%%/webenginepart/kpartplugins/autorefreshwebenginepart_kpartplugins.so %%QT_PLUGINDIR%%/webenginepart/kpartplugins/babelfishpluginwebenginepart_kpartplugins.so %%QT_PLUGINDIR%%/webenginepart/kpartplugins/khtmlsettingspluginwebenginepart_kpartplugins.so %%QT_PLUGINDIR%%/webenginepart/kpartplugins/konqueror_kget_browser_integrationwebenginepart_kpartplugins.so %%QT_PLUGINDIR%%/webenginepart/kpartplugins/temporarysavedirwebenginepart_kpartplugins.so %%QT_PLUGINDIR%%/webenginepart/kpartplugins/uachangerpluginwebenginepart_kpartplugins.so %%QT_PLUGINDIR%%/webenginepart/kpartplugins/webarchiverpluginwebenginepart_kpartplugins.so share/akregator/pics/feed.png share/applications/bookmarks.desktop share/applications/kcm_bookmarks.desktop share/applications/kfmclient.desktop share/applications/kfmclient_dir.desktop share/applications/kfmclient_html.desktop share/applications/kfmclient_war.desktop share/applications/konqbrowser.desktop share/applications/org.kde.konqueror.desktop share/config.kcfg/kcreatewebarchive.kcfg share/config.kcfg/konqueror.kcfg share/dbus-1/interfaces/org.kde.Konqueror.Main.xml share/dbus-1/interfaces/org.kde.Konqueror.MainWindow.xml share/icons/hicolor/128x128/apps/konqueror.png share/icons/hicolor/128x128/apps/webengine.png share/icons/hicolor/16x16/actions/babelfish.png share/icons/hicolor/16x16/actions/imagegallery.png share/icons/hicolor/16x16/actions/webarchiver.png share/icons/hicolor/16x16/apps/konqueror.png share/icons/hicolor/16x16/apps/webengine.png share/icons/hicolor/22x22/actions/babelfish.png share/icons/hicolor/22x22/actions/imagegallery.png share/icons/hicolor/22x22/actions/webarchiver.png share/icons/hicolor/22x22/apps/fsview.png share/icons/hicolor/22x22/apps/konqueror.png share/icons/hicolor/22x22/apps/webengine.png share/icons/hicolor/32x32/apps/fsview.png share/icons/hicolor/32x32/apps/konqueror.png share/icons/hicolor/32x32/apps/webengine.png share/icons/hicolor/48x48/apps/konqueror.png share/icons/hicolor/48x48/apps/webengine.png share/icons/hicolor/64x64/apps/konqueror.png share/icons/hicolor/64x64/apps/webengine.png share/kcmcss/template.css share/kconf_update/webenginepart.upd share/kcontrol/pics/onlyone.png share/kcontrol/pics/overlapping.png share/kf6/kbookmark/directory_bookmarkbar.desktop share/kio_bookmarks/kio_bookmarks.css share/konqsidebartng/entries/bookmarks.desktop share/konqsidebartng/entries/fonts.desktop share/konqsidebartng/entries/history.desktop share/konqsidebartng/entries/home.desktop share/konqsidebartng/entries/places.desktop share/konqsidebartng/entries/remote.desktop share/konqsidebartng/entries/root.desktop share/konqsidebartng/entries/services.desktop %%DATADIR%%/about/body-background.png %%DATADIR%%/about/box-bottom-left.png %%DATADIR%%/about/box-bottom-middle.png %%DATADIR%%/about/box-bottom-right.png %%DATADIR%%/about/box-center.png %%DATADIR%%/about/box-middle-left.png %%DATADIR%%/about/box-middle-right.png %%DATADIR%%/about/box-top-left.png %%DATADIR%%/about/box-top-middle.png %%DATADIR%%/about/box-top-right.png %%DATADIR%%/about/intro.html %%DATADIR%%/about/kde_infopage.css %%DATADIR%%/about/kde_infopage_rtl.css %%DATADIR%%/about/konq.css %%DATADIR%%/about/launch.html %%DATADIR%%/about/plugins.html %%DATADIR%%/about/plugins_rtl.html %%DATADIR%%/about/tips.html %%DATADIR%%/about/top-left-konqueror.png %%DATADIR%%/about/top-middle.png %%DATADIR%%/icons/hicolor/16x16/actions/google.png %%DATADIR%%/icons/hicolor/22x22/actions/google.png %%DATADIR%%/icons/hicolor/32x32/actions/google.png %%DATADIR%%/icons/hicolor/48x48/actions/google.png %%DATADIR%%/icons/hicolor/64x64/actions/google.png %%DATADIR%%/icons/hicolor/scalable/actions/google.svgz %%DATADIR%%/partsrcfiles/akregatorkonqfeedicon.rc %%DATADIR%%/partsrcfiles/autorefresh.rc %%DATADIR%%/partsrcfiles/babelfishplugin.rc %%DATADIR%%/partsrcfiles/dirfilterplugin.rc %%DATADIR%%/partsrcfiles/khtmlsettingsplugin.rc %%DATADIR%%/partsrcfiles/kimgallery.rc %%DATADIR%%/partsrcfiles/konq_shellcmdplugin.rc %%DATADIR%%/partsrcfiles/konqueror_kget_browser_integration.rc %%DATADIR%%/partsrcfiles/searchbarplugin.rc %%DATADIR%%/partsrcfiles/temporarysavedir.rc %%DATADIR%%/partsrcfiles/uachangerplugin.rc %%DATADIR%%/partsrcfiles/webarchiverplugin.rc %%DATADIR%%/pics/indicator_connect.png %%DATADIR%%/pics/indicator_empty.png %%DATADIR%%/pics/indicator_noconnect.png %%DATADIR%%/pics/indicator_viewactive.png share/locale/af/LC_MESSAGES/babelfish.mo share/locale/af/LC_MESSAGES/dirfilterplugin.mo share/locale/af/LC_MESSAGES/imgalleryplugin.mo share/locale/af/LC_MESSAGES/kcmbookmarks.mo share/locale/af/LC_MESSAGES/kcmkonq.mo share/locale/af/LC_MESSAGES/kcmkonqhtml.mo share/locale/af/LC_MESSAGES/kcmperformance.mo share/locale/af/LC_MESSAGES/kfmclient.mo share/locale/af/LC_MESSAGES/kgetplugin.mo share/locale/af/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/af/LC_MESSAGES/khtmltts.mo share/locale/af/LC_MESSAGES/konqueror.mo share/locale/af/LC_MESSAGES/kshellcmdplugin.mo share/locale/af/LC_MESSAGES/libkonq.mo share/locale/af/LC_MESSAGES/uachangerplugin.mo share/locale/ar/LC_MESSAGES/akregator_konqplugin.mo share/locale/ar/LC_MESSAGES/autorefresh.mo share/locale/ar/LC_MESSAGES/babelfish.mo share/locale/ar/LC_MESSAGES/dirfilterplugin.mo share/locale/ar/LC_MESSAGES/fsview.mo share/locale/ar/LC_MESSAGES/imgalleryplugin.mo share/locale/ar/LC_MESSAGES/kcmbookmarks.mo share/locale/ar/LC_MESSAGES/kcmkonq.mo share/locale/ar/LC_MESSAGES/kcmkonqhtml.mo share/locale/ar/LC_MESSAGES/kcmperformance.mo share/locale/ar/LC_MESSAGES/kfmclient.mo share/locale/ar/LC_MESSAGES/kgetplugin.mo share/locale/ar/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/ar/LC_MESSAGES/khtmltts.mo share/locale/ar/LC_MESSAGES/kio6_bookmarks.mo share/locale/ar/LC_MESSAGES/konqsidebar.mo share/locale/ar/LC_MESSAGES/konqueror.mo share/locale/ar/LC_MESSAGES/kshellcmdplugin.mo share/locale/ar/LC_MESSAGES/libkonq.mo share/locale/ar/LC_MESSAGES/searchbarplugin.mo share/locale/ar/LC_MESSAGES/temporarysavedir.mo share/locale/ar/LC_MESSAGES/uachangerplugin.mo share/locale/ar/LC_MESSAGES/webarchiver.mo share/locale/ar/LC_MESSAGES/webenginepart.mo share/locale/ast/LC_MESSAGES/akregator_konqplugin.mo share/locale/ast/LC_MESSAGES/autorefresh.mo share/locale/ast/LC_MESSAGES/babelfish.mo share/locale/ast/LC_MESSAGES/dirfilterplugin.mo share/locale/ast/LC_MESSAGES/fsview.mo share/locale/ast/LC_MESSAGES/imgalleryplugin.mo share/locale/ast/LC_MESSAGES/kcmbookmarks.mo share/locale/ast/LC_MESSAGES/kcmkonq.mo share/locale/ast/LC_MESSAGES/kcmkonqhtml.mo share/locale/ast/LC_MESSAGES/kcmperformance.mo share/locale/ast/LC_MESSAGES/kfmclient.mo share/locale/ast/LC_MESSAGES/kgetplugin.mo share/locale/ast/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/ast/LC_MESSAGES/khtmltts.mo share/locale/ast/LC_MESSAGES/kio6_bookmarks.mo share/locale/ast/LC_MESSAGES/konqueror.mo share/locale/ast/LC_MESSAGES/kshellcmdplugin.mo share/locale/ast/LC_MESSAGES/libkonq.mo share/locale/ast/LC_MESSAGES/searchbarplugin.mo share/locale/ast/LC_MESSAGES/uachangerplugin.mo share/locale/ast/LC_MESSAGES/webarchiver.mo share/locale/ast/LC_MESSAGES/webenginepart.mo share/locale/be/LC_MESSAGES/akregator_konqplugin.mo share/locale/be/LC_MESSAGES/autorefresh.mo share/locale/be/LC_MESSAGES/babelfish.mo share/locale/be/LC_MESSAGES/dirfilterplugin.mo share/locale/be/LC_MESSAGES/fsview.mo share/locale/be/LC_MESSAGES/imgalleryplugin.mo share/locale/be/LC_MESSAGES/kcmbookmarks.mo share/locale/be/LC_MESSAGES/kcmkonq.mo share/locale/be/LC_MESSAGES/kcmkonqhtml.mo share/locale/be/LC_MESSAGES/kcmperformance.mo share/locale/be/LC_MESSAGES/kfmclient.mo share/locale/be/LC_MESSAGES/kgetplugin.mo share/locale/be/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/be/LC_MESSAGES/khtmltts.mo share/locale/be/LC_MESSAGES/kio6_bookmarks.mo share/locale/be/LC_MESSAGES/konqueror.mo share/locale/be/LC_MESSAGES/kshellcmdplugin.mo share/locale/be/LC_MESSAGES/libkonq.mo share/locale/be/LC_MESSAGES/searchbarplugin.mo share/locale/be/LC_MESSAGES/uachangerplugin.mo share/locale/be@latin/LC_MESSAGES/kcmkonq.mo share/locale/be@latin/LC_MESSAGES/kfmclient.mo share/locale/be@latin/LC_MESSAGES/khtmltts.mo share/locale/be@latin/LC_MESSAGES/kio6_bookmarks.mo share/locale/be@latin/LC_MESSAGES/konqueror.mo share/locale/be@latin/LC_MESSAGES/kshellcmdplugin.mo share/locale/be@latin/LC_MESSAGES/libkonq.mo share/locale/bg/LC_MESSAGES/akregator_konqplugin.mo share/locale/bg/LC_MESSAGES/autorefresh.mo share/locale/bg/LC_MESSAGES/babelfish.mo share/locale/bg/LC_MESSAGES/dirfilterplugin.mo share/locale/bg/LC_MESSAGES/fsview.mo share/locale/bg/LC_MESSAGES/imgalleryplugin.mo share/locale/bg/LC_MESSAGES/kcmbookmarks.mo share/locale/bg/LC_MESSAGES/kcmkonq.mo share/locale/bg/LC_MESSAGES/kcmkonqhtml.mo share/locale/bg/LC_MESSAGES/kcmperformance.mo share/locale/bg/LC_MESSAGES/kfmclient.mo share/locale/bg/LC_MESSAGES/kgetplugin.mo share/locale/bg/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/bg/LC_MESSAGES/khtmltts.mo share/locale/bg/LC_MESSAGES/kio6_bookmarks.mo share/locale/bg/LC_MESSAGES/konqsidebar.mo share/locale/bg/LC_MESSAGES/konqueror.mo share/locale/bg/LC_MESSAGES/kshellcmdplugin.mo share/locale/bg/LC_MESSAGES/libkonq.mo share/locale/bg/LC_MESSAGES/searchbarplugin.mo share/locale/bg/LC_MESSAGES/temporarysavedir.mo share/locale/bg/LC_MESSAGES/uachangerplugin.mo share/locale/bg/LC_MESSAGES/webarchiver.mo share/locale/bg/LC_MESSAGES/webenginepart.mo share/locale/bn/LC_MESSAGES/babelfish.mo share/locale/bn/LC_MESSAGES/kcmbookmarks.mo share/locale/bn/LC_MESSAGES/kcmkonq.mo share/locale/bn/LC_MESSAGES/kcmkonqhtml.mo share/locale/bn/LC_MESSAGES/kfmclient.mo share/locale/bn/LC_MESSAGES/konqueror.mo share/locale/bn/LC_MESSAGES/kshellcmdplugin.mo share/locale/bn/LC_MESSAGES/libkonq.mo share/locale/bn_IN/LC_MESSAGES/kcmbookmarks.mo share/locale/bn_IN/LC_MESSAGES/kcmkonq.mo share/locale/bn_IN/LC_MESSAGES/kcmkonqhtml.mo share/locale/bn_IN/LC_MESSAGES/kfmclient.mo share/locale/bn_IN/LC_MESSAGES/khtmltts.mo share/locale/bn_IN/LC_MESSAGES/kio6_bookmarks.mo share/locale/bn_IN/LC_MESSAGES/konqueror.mo share/locale/bn_IN/LC_MESSAGES/kshellcmdplugin.mo share/locale/bn_IN/LC_MESSAGES/libkonq.mo share/locale/br/LC_MESSAGES/autorefresh.mo share/locale/br/LC_MESSAGES/babelfish.mo share/locale/br/LC_MESSAGES/dirfilterplugin.mo share/locale/br/LC_MESSAGES/fsview.mo share/locale/br/LC_MESSAGES/imgalleryplugin.mo share/locale/br/LC_MESSAGES/kcmbookmarks.mo share/locale/br/LC_MESSAGES/kcmkonq.mo share/locale/br/LC_MESSAGES/kcmkonqhtml.mo share/locale/br/LC_MESSAGES/kcmperformance.mo share/locale/br/LC_MESSAGES/kfmclient.mo share/locale/br/LC_MESSAGES/kgetplugin.mo share/locale/br/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/br/LC_MESSAGES/khtmltts.mo share/locale/br/LC_MESSAGES/konqueror.mo share/locale/br/LC_MESSAGES/kshellcmdplugin.mo share/locale/br/LC_MESSAGES/libkonq.mo share/locale/br/LC_MESSAGES/searchbarplugin.mo share/locale/br/LC_MESSAGES/uachangerplugin.mo share/locale/bs/LC_MESSAGES/akregator_konqplugin.mo share/locale/bs/LC_MESSAGES/autorefresh.mo share/locale/bs/LC_MESSAGES/babelfish.mo share/locale/bs/LC_MESSAGES/dirfilterplugin.mo share/locale/bs/LC_MESSAGES/fsview.mo share/locale/bs/LC_MESSAGES/imgalleryplugin.mo share/locale/bs/LC_MESSAGES/kcmbookmarks.mo share/locale/bs/LC_MESSAGES/kcmkonq.mo share/locale/bs/LC_MESSAGES/kcmkonqhtml.mo share/locale/bs/LC_MESSAGES/kcmperformance.mo share/locale/bs/LC_MESSAGES/kfmclient.mo share/locale/bs/LC_MESSAGES/kgetplugin.mo share/locale/bs/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/bs/LC_MESSAGES/khtmltts.mo share/locale/bs/LC_MESSAGES/kio6_bookmarks.mo share/locale/bs/LC_MESSAGES/konqueror.mo share/locale/bs/LC_MESSAGES/kshellcmdplugin.mo share/locale/bs/LC_MESSAGES/libkonq.mo share/locale/bs/LC_MESSAGES/searchbarplugin.mo share/locale/bs/LC_MESSAGES/uachangerplugin.mo share/locale/bs/LC_MESSAGES/webenginepart.mo share/locale/ca/LC_MESSAGES/akregator_konqplugin.mo share/locale/ca/LC_MESSAGES/autorefresh.mo share/locale/ca/LC_MESSAGES/babelfish.mo share/locale/ca/LC_MESSAGES/dirfilterplugin.mo share/locale/ca/LC_MESSAGES/fsview.mo share/locale/ca/LC_MESSAGES/imgalleryplugin.mo share/locale/ca/LC_MESSAGES/kcmbookmarks.mo share/locale/ca/LC_MESSAGES/kcmkonq.mo share/locale/ca/LC_MESSAGES/kcmkonqhtml.mo share/locale/ca/LC_MESSAGES/kcmperformance.mo share/locale/ca/LC_MESSAGES/kfmclient.mo share/locale/ca/LC_MESSAGES/kgetplugin.mo share/locale/ca/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/ca/LC_MESSAGES/khtmltts.mo share/locale/ca/LC_MESSAGES/kio6_bookmarks.mo share/locale/ca/LC_MESSAGES/konqsidebar.mo share/locale/ca/LC_MESSAGES/konqueror.mo share/locale/ca/LC_MESSAGES/kshellcmdplugin.mo share/locale/ca/LC_MESSAGES/libkonq.mo share/locale/ca/LC_MESSAGES/searchbarplugin.mo share/locale/ca/LC_MESSAGES/temporarysavedir.mo share/locale/ca/LC_MESSAGES/uachangerplugin.mo share/locale/ca/LC_MESSAGES/webarchiver.mo share/locale/ca/LC_MESSAGES/webenginepart.mo share/locale/ca@valencia/LC_MESSAGES/akregator_konqplugin.mo share/locale/ca@valencia/LC_MESSAGES/autorefresh.mo share/locale/ca@valencia/LC_MESSAGES/babelfish.mo share/locale/ca@valencia/LC_MESSAGES/dirfilterplugin.mo share/locale/ca@valencia/LC_MESSAGES/fsview.mo share/locale/ca@valencia/LC_MESSAGES/imgalleryplugin.mo share/locale/ca@valencia/LC_MESSAGES/kcmbookmarks.mo share/locale/ca@valencia/LC_MESSAGES/kcmkonq.mo share/locale/ca@valencia/LC_MESSAGES/kcmkonqhtml.mo share/locale/ca@valencia/LC_MESSAGES/kcmperformance.mo share/locale/ca@valencia/LC_MESSAGES/kfmclient.mo share/locale/ca@valencia/LC_MESSAGES/kgetplugin.mo share/locale/ca@valencia/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/ca@valencia/LC_MESSAGES/khtmltts.mo share/locale/ca@valencia/LC_MESSAGES/kio6_bookmarks.mo share/locale/ca@valencia/LC_MESSAGES/konqsidebar.mo share/locale/ca@valencia/LC_MESSAGES/konqueror.mo share/locale/ca@valencia/LC_MESSAGES/kshellcmdplugin.mo share/locale/ca@valencia/LC_MESSAGES/libkonq.mo share/locale/ca@valencia/LC_MESSAGES/searchbarplugin.mo share/locale/ca@valencia/LC_MESSAGES/temporarysavedir.mo share/locale/ca@valencia/LC_MESSAGES/uachangerplugin.mo share/locale/ca@valencia/LC_MESSAGES/webarchiver.mo share/locale/ca@valencia/LC_MESSAGES/webenginepart.mo share/locale/cs/LC_MESSAGES/akregator_konqplugin.mo share/locale/cs/LC_MESSAGES/autorefresh.mo share/locale/cs/LC_MESSAGES/babelfish.mo share/locale/cs/LC_MESSAGES/dirfilterplugin.mo share/locale/cs/LC_MESSAGES/fsview.mo share/locale/cs/LC_MESSAGES/imgalleryplugin.mo share/locale/cs/LC_MESSAGES/kcmbookmarks.mo share/locale/cs/LC_MESSAGES/kcmkonq.mo share/locale/cs/LC_MESSAGES/kcmkonqhtml.mo share/locale/cs/LC_MESSAGES/kcmperformance.mo share/locale/cs/LC_MESSAGES/kfmclient.mo share/locale/cs/LC_MESSAGES/kgetplugin.mo share/locale/cs/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/cs/LC_MESSAGES/khtmltts.mo share/locale/cs/LC_MESSAGES/kio6_bookmarks.mo share/locale/cs/LC_MESSAGES/konqueror.mo share/locale/cs/LC_MESSAGES/kshellcmdplugin.mo share/locale/cs/LC_MESSAGES/libkonq.mo share/locale/cs/LC_MESSAGES/searchbarplugin.mo share/locale/cs/LC_MESSAGES/uachangerplugin.mo share/locale/cs/LC_MESSAGES/webarchiver.mo share/locale/cs/LC_MESSAGES/webenginepart.mo share/locale/csb/LC_MESSAGES/kcmbookmarks.mo share/locale/csb/LC_MESSAGES/kcmkonqhtml.mo share/locale/csb/LC_MESSAGES/kcmperformance.mo share/locale/csb/LC_MESSAGES/kfmclient.mo share/locale/csb/LC_MESSAGES/khtmltts.mo share/locale/csb/LC_MESSAGES/konqueror.mo share/locale/csb/LC_MESSAGES/kshellcmdplugin.mo share/locale/csb/LC_MESSAGES/libkonq.mo share/locale/cy/LC_MESSAGES/autorefresh.mo share/locale/cy/LC_MESSAGES/babelfish.mo share/locale/cy/LC_MESSAGES/dirfilterplugin.mo share/locale/cy/LC_MESSAGES/fsview.mo share/locale/cy/LC_MESSAGES/imgalleryplugin.mo share/locale/cy/LC_MESSAGES/kcmbookmarks.mo share/locale/cy/LC_MESSAGES/kcmkonq.mo share/locale/cy/LC_MESSAGES/kcmkonqhtml.mo share/locale/cy/LC_MESSAGES/kcmperformance.mo share/locale/cy/LC_MESSAGES/kfmclient.mo share/locale/cy/LC_MESSAGES/kgetplugin.mo share/locale/cy/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/cy/LC_MESSAGES/khtmltts.mo share/locale/cy/LC_MESSAGES/konqueror.mo share/locale/cy/LC_MESSAGES/kshellcmdplugin.mo share/locale/cy/LC_MESSAGES/libkonq.mo share/locale/cy/LC_MESSAGES/searchbarplugin.mo share/locale/cy/LC_MESSAGES/uachangerplugin.mo share/locale/da/LC_MESSAGES/akregator_konqplugin.mo share/locale/da/LC_MESSAGES/autorefresh.mo share/locale/da/LC_MESSAGES/babelfish.mo share/locale/da/LC_MESSAGES/dirfilterplugin.mo share/locale/da/LC_MESSAGES/fsview.mo share/locale/da/LC_MESSAGES/imgalleryplugin.mo share/locale/da/LC_MESSAGES/kcmbookmarks.mo share/locale/da/LC_MESSAGES/kcmkonq.mo share/locale/da/LC_MESSAGES/kcmkonqhtml.mo share/locale/da/LC_MESSAGES/kcmperformance.mo share/locale/da/LC_MESSAGES/kfmclient.mo share/locale/da/LC_MESSAGES/kgetplugin.mo share/locale/da/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/da/LC_MESSAGES/khtmltts.mo share/locale/da/LC_MESSAGES/kio6_bookmarks.mo share/locale/da/LC_MESSAGES/konqueror.mo share/locale/da/LC_MESSAGES/kshellcmdplugin.mo share/locale/da/LC_MESSAGES/libkonq.mo share/locale/da/LC_MESSAGES/searchbarplugin.mo share/locale/da/LC_MESSAGES/uachangerplugin.mo share/locale/da/LC_MESSAGES/webenginepart.mo share/locale/de/LC_MESSAGES/akregator_konqplugin.mo share/locale/de/LC_MESSAGES/autorefresh.mo share/locale/de/LC_MESSAGES/babelfish.mo share/locale/de/LC_MESSAGES/dirfilterplugin.mo share/locale/de/LC_MESSAGES/fsview.mo share/locale/de/LC_MESSAGES/imgalleryplugin.mo share/locale/de/LC_MESSAGES/kcmbookmarks.mo share/locale/de/LC_MESSAGES/kcmkonq.mo share/locale/de/LC_MESSAGES/kcmkonqhtml.mo share/locale/de/LC_MESSAGES/kcmperformance.mo share/locale/de/LC_MESSAGES/kfmclient.mo share/locale/de/LC_MESSAGES/kgetplugin.mo share/locale/de/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/de/LC_MESSAGES/khtmltts.mo share/locale/de/LC_MESSAGES/kio6_bookmarks.mo share/locale/de/LC_MESSAGES/konqsidebar.mo share/locale/de/LC_MESSAGES/konqueror.mo share/locale/de/LC_MESSAGES/kshellcmdplugin.mo share/locale/de/LC_MESSAGES/libkonq.mo share/locale/de/LC_MESSAGES/searchbarplugin.mo share/locale/de/LC_MESSAGES/temporarysavedir.mo share/locale/de/LC_MESSAGES/uachangerplugin.mo share/locale/de/LC_MESSAGES/webarchiver.mo share/locale/de/LC_MESSAGES/webenginepart.mo share/locale/el/LC_MESSAGES/akregator_konqplugin.mo share/locale/el/LC_MESSAGES/autorefresh.mo share/locale/el/LC_MESSAGES/babelfish.mo share/locale/el/LC_MESSAGES/dirfilterplugin.mo share/locale/el/LC_MESSAGES/fsview.mo share/locale/el/LC_MESSAGES/imgalleryplugin.mo share/locale/el/LC_MESSAGES/kcmbookmarks.mo share/locale/el/LC_MESSAGES/kcmkonq.mo share/locale/el/LC_MESSAGES/kcmkonqhtml.mo share/locale/el/LC_MESSAGES/kcmperformance.mo share/locale/el/LC_MESSAGES/kfmclient.mo share/locale/el/LC_MESSAGES/kgetplugin.mo share/locale/el/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/el/LC_MESSAGES/khtmltts.mo share/locale/el/LC_MESSAGES/kio6_bookmarks.mo share/locale/el/LC_MESSAGES/konqueror.mo share/locale/el/LC_MESSAGES/kshellcmdplugin.mo share/locale/el/LC_MESSAGES/libkonq.mo share/locale/el/LC_MESSAGES/searchbarplugin.mo share/locale/el/LC_MESSAGES/uachangerplugin.mo share/locale/el/LC_MESSAGES/webarchiver.mo share/locale/el/LC_MESSAGES/webenginepart.mo share/locale/en_GB/LC_MESSAGES/akregator_konqplugin.mo share/locale/en_GB/LC_MESSAGES/autorefresh.mo share/locale/en_GB/LC_MESSAGES/babelfish.mo share/locale/en_GB/LC_MESSAGES/dirfilterplugin.mo share/locale/en_GB/LC_MESSAGES/fsview.mo share/locale/en_GB/LC_MESSAGES/imgalleryplugin.mo share/locale/en_GB/LC_MESSAGES/kcmbookmarks.mo share/locale/en_GB/LC_MESSAGES/kcmkonq.mo share/locale/en_GB/LC_MESSAGES/kcmkonqhtml.mo share/locale/en_GB/LC_MESSAGES/kcmperformance.mo share/locale/en_GB/LC_MESSAGES/kfmclient.mo share/locale/en_GB/LC_MESSAGES/kgetplugin.mo share/locale/en_GB/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/en_GB/LC_MESSAGES/khtmltts.mo share/locale/en_GB/LC_MESSAGES/kio6_bookmarks.mo share/locale/en_GB/LC_MESSAGES/konqueror.mo share/locale/en_GB/LC_MESSAGES/kshellcmdplugin.mo share/locale/en_GB/LC_MESSAGES/libkonq.mo share/locale/en_GB/LC_MESSAGES/searchbarplugin.mo share/locale/en_GB/LC_MESSAGES/uachangerplugin.mo share/locale/en_GB/LC_MESSAGES/webarchiver.mo share/locale/en_GB/LC_MESSAGES/webenginepart.mo share/locale/eo/LC_MESSAGES/akregator_konqplugin.mo share/locale/eo/LC_MESSAGES/autorefresh.mo share/locale/eo/LC_MESSAGES/babelfish.mo share/locale/eo/LC_MESSAGES/dirfilterplugin.mo share/locale/eo/LC_MESSAGES/fsview.mo share/locale/eo/LC_MESSAGES/imgalleryplugin.mo share/locale/eo/LC_MESSAGES/kcmbookmarks.mo share/locale/eo/LC_MESSAGES/kcmkonq.mo share/locale/eo/LC_MESSAGES/kcmkonqhtml.mo share/locale/eo/LC_MESSAGES/kcmperformance.mo share/locale/eo/LC_MESSAGES/kfmclient.mo share/locale/eo/LC_MESSAGES/kgetplugin.mo share/locale/eo/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/eo/LC_MESSAGES/khtmltts.mo share/locale/eo/LC_MESSAGES/kio6_bookmarks.mo share/locale/eo/LC_MESSAGES/konqueror.mo share/locale/eo/LC_MESSAGES/kshellcmdplugin.mo share/locale/eo/LC_MESSAGES/libkonq.mo share/locale/eo/LC_MESSAGES/searchbarplugin.mo share/locale/eo/LC_MESSAGES/uachangerplugin.mo share/locale/eo/LC_MESSAGES/webarchiver.mo share/locale/eo/LC_MESSAGES/webenginepart.mo share/locale/es/LC_MESSAGES/akregator_konqplugin.mo share/locale/es/LC_MESSAGES/autorefresh.mo share/locale/es/LC_MESSAGES/babelfish.mo share/locale/es/LC_MESSAGES/dirfilterplugin.mo share/locale/es/LC_MESSAGES/fsview.mo share/locale/es/LC_MESSAGES/imgalleryplugin.mo share/locale/es/LC_MESSAGES/kcmbookmarks.mo share/locale/es/LC_MESSAGES/kcmkonq.mo share/locale/es/LC_MESSAGES/kcmkonqhtml.mo share/locale/es/LC_MESSAGES/kcmperformance.mo share/locale/es/LC_MESSAGES/kfmclient.mo share/locale/es/LC_MESSAGES/kgetplugin.mo share/locale/es/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/es/LC_MESSAGES/khtmltts.mo share/locale/es/LC_MESSAGES/kio6_bookmarks.mo share/locale/es/LC_MESSAGES/konqsidebar.mo share/locale/es/LC_MESSAGES/konqueror.mo share/locale/es/LC_MESSAGES/kshellcmdplugin.mo share/locale/es/LC_MESSAGES/libkonq.mo share/locale/es/LC_MESSAGES/searchbarplugin.mo share/locale/es/LC_MESSAGES/temporarysavedir.mo share/locale/es/LC_MESSAGES/uachangerplugin.mo share/locale/es/LC_MESSAGES/webarchiver.mo share/locale/es/LC_MESSAGES/webenginepart.mo share/locale/et/LC_MESSAGES/akregator_konqplugin.mo share/locale/et/LC_MESSAGES/autorefresh.mo share/locale/et/LC_MESSAGES/babelfish.mo share/locale/et/LC_MESSAGES/dirfilterplugin.mo share/locale/et/LC_MESSAGES/fsview.mo share/locale/et/LC_MESSAGES/imgalleryplugin.mo share/locale/et/LC_MESSAGES/kcmbookmarks.mo share/locale/et/LC_MESSAGES/kcmkonq.mo share/locale/et/LC_MESSAGES/kcmkonqhtml.mo share/locale/et/LC_MESSAGES/kcmperformance.mo share/locale/et/LC_MESSAGES/kfmclient.mo share/locale/et/LC_MESSAGES/kgetplugin.mo share/locale/et/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/et/LC_MESSAGES/khtmltts.mo share/locale/et/LC_MESSAGES/kio6_bookmarks.mo share/locale/et/LC_MESSAGES/konqueror.mo share/locale/et/LC_MESSAGES/kshellcmdplugin.mo share/locale/et/LC_MESSAGES/libkonq.mo share/locale/et/LC_MESSAGES/searchbarplugin.mo share/locale/et/LC_MESSAGES/uachangerplugin.mo share/locale/et/LC_MESSAGES/webenginepart.mo share/locale/eu/LC_MESSAGES/akregator_konqplugin.mo share/locale/eu/LC_MESSAGES/autorefresh.mo share/locale/eu/LC_MESSAGES/babelfish.mo share/locale/eu/LC_MESSAGES/dirfilterplugin.mo share/locale/eu/LC_MESSAGES/fsview.mo share/locale/eu/LC_MESSAGES/imgalleryplugin.mo share/locale/eu/LC_MESSAGES/kcmbookmarks.mo share/locale/eu/LC_MESSAGES/kcmkonq.mo share/locale/eu/LC_MESSAGES/kcmkonqhtml.mo share/locale/eu/LC_MESSAGES/kcmperformance.mo share/locale/eu/LC_MESSAGES/kfmclient.mo share/locale/eu/LC_MESSAGES/kgetplugin.mo share/locale/eu/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/eu/LC_MESSAGES/khtmltts.mo share/locale/eu/LC_MESSAGES/kio6_bookmarks.mo share/locale/eu/LC_MESSAGES/konqsidebar.mo share/locale/eu/LC_MESSAGES/konqueror.mo share/locale/eu/LC_MESSAGES/kshellcmdplugin.mo share/locale/eu/LC_MESSAGES/libkonq.mo share/locale/eu/LC_MESSAGES/searchbarplugin.mo share/locale/eu/LC_MESSAGES/temporarysavedir.mo share/locale/eu/LC_MESSAGES/uachangerplugin.mo share/locale/eu/LC_MESSAGES/webarchiver.mo share/locale/eu/LC_MESSAGES/webenginepart.mo share/locale/fa/LC_MESSAGES/akregator_konqplugin.mo share/locale/fa/LC_MESSAGES/autorefresh.mo share/locale/fa/LC_MESSAGES/babelfish.mo share/locale/fa/LC_MESSAGES/dirfilterplugin.mo share/locale/fa/LC_MESSAGES/fsview.mo share/locale/fa/LC_MESSAGES/imgalleryplugin.mo share/locale/fa/LC_MESSAGES/kcmbookmarks.mo share/locale/fa/LC_MESSAGES/kcmkonq.mo share/locale/fa/LC_MESSAGES/kcmkonqhtml.mo share/locale/fa/LC_MESSAGES/kcmperformance.mo share/locale/fa/LC_MESSAGES/kfmclient.mo share/locale/fa/LC_MESSAGES/kgetplugin.mo share/locale/fa/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/fa/LC_MESSAGES/khtmltts.mo share/locale/fa/LC_MESSAGES/kio6_bookmarks.mo share/locale/fa/LC_MESSAGES/konqueror.mo share/locale/fa/LC_MESSAGES/kshellcmdplugin.mo share/locale/fa/LC_MESSAGES/libkonq.mo share/locale/fa/LC_MESSAGES/searchbarplugin.mo share/locale/fa/LC_MESSAGES/uachangerplugin.mo share/locale/fa/LC_MESSAGES/webenginepart.mo share/locale/fi/LC_MESSAGES/akregator_konqplugin.mo share/locale/fi/LC_MESSAGES/autorefresh.mo share/locale/fi/LC_MESSAGES/babelfish.mo share/locale/fi/LC_MESSAGES/dirfilterplugin.mo share/locale/fi/LC_MESSAGES/fsview.mo share/locale/fi/LC_MESSAGES/imgalleryplugin.mo share/locale/fi/LC_MESSAGES/kcmbookmarks.mo share/locale/fi/LC_MESSAGES/kcmkonq.mo share/locale/fi/LC_MESSAGES/kcmkonqhtml.mo share/locale/fi/LC_MESSAGES/kcmperformance.mo share/locale/fi/LC_MESSAGES/kfmclient.mo share/locale/fi/LC_MESSAGES/kgetplugin.mo share/locale/fi/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/fi/LC_MESSAGES/khtmltts.mo share/locale/fi/LC_MESSAGES/kio6_bookmarks.mo share/locale/fi/LC_MESSAGES/konqsidebar.mo share/locale/fi/LC_MESSAGES/konqueror.mo share/locale/fi/LC_MESSAGES/kshellcmdplugin.mo share/locale/fi/LC_MESSAGES/libkonq.mo share/locale/fi/LC_MESSAGES/searchbarplugin.mo share/locale/fi/LC_MESSAGES/temporarysavedir.mo share/locale/fi/LC_MESSAGES/uachangerplugin.mo share/locale/fi/LC_MESSAGES/webarchiver.mo share/locale/fi/LC_MESSAGES/webenginepart.mo share/locale/fr/LC_MESSAGES/akregator_konqplugin.mo share/locale/fr/LC_MESSAGES/autorefresh.mo share/locale/fr/LC_MESSAGES/babelfish.mo share/locale/fr/LC_MESSAGES/dirfilterplugin.mo share/locale/fr/LC_MESSAGES/fsview.mo share/locale/fr/LC_MESSAGES/imgalleryplugin.mo share/locale/fr/LC_MESSAGES/kcmbookmarks.mo share/locale/fr/LC_MESSAGES/kcmkonq.mo share/locale/fr/LC_MESSAGES/kcmkonqhtml.mo share/locale/fr/LC_MESSAGES/kcmperformance.mo share/locale/fr/LC_MESSAGES/kfmclient.mo share/locale/fr/LC_MESSAGES/kgetplugin.mo share/locale/fr/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/fr/LC_MESSAGES/khtmltts.mo share/locale/fr/LC_MESSAGES/kio6_bookmarks.mo share/locale/fr/LC_MESSAGES/konqsidebar.mo share/locale/fr/LC_MESSAGES/konqueror.mo share/locale/fr/LC_MESSAGES/kshellcmdplugin.mo share/locale/fr/LC_MESSAGES/libkonq.mo share/locale/fr/LC_MESSAGES/searchbarplugin.mo share/locale/fr/LC_MESSAGES/temporarysavedir.mo share/locale/fr/LC_MESSAGES/uachangerplugin.mo share/locale/fr/LC_MESSAGES/webarchiver.mo share/locale/fr/LC_MESSAGES/webenginepart.mo share/locale/fy/LC_MESSAGES/akregator_konqplugin.mo share/locale/fy/LC_MESSAGES/autorefresh.mo share/locale/fy/LC_MESSAGES/babelfish.mo share/locale/fy/LC_MESSAGES/dirfilterplugin.mo share/locale/fy/LC_MESSAGES/fsview.mo share/locale/fy/LC_MESSAGES/imgalleryplugin.mo share/locale/fy/LC_MESSAGES/kcmbookmarks.mo share/locale/fy/LC_MESSAGES/kcmkonq.mo share/locale/fy/LC_MESSAGES/kcmkonqhtml.mo share/locale/fy/LC_MESSAGES/kcmperformance.mo share/locale/fy/LC_MESSAGES/kfmclient.mo share/locale/fy/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/fy/LC_MESSAGES/khtmltts.mo share/locale/fy/LC_MESSAGES/kio6_bookmarks.mo share/locale/fy/LC_MESSAGES/konqueror.mo share/locale/fy/LC_MESSAGES/kshellcmdplugin.mo share/locale/fy/LC_MESSAGES/libkonq.mo share/locale/fy/LC_MESSAGES/searchbarplugin.mo share/locale/fy/LC_MESSAGES/uachangerplugin.mo share/locale/ga/LC_MESSAGES/akregator_konqplugin.mo share/locale/ga/LC_MESSAGES/autorefresh.mo share/locale/ga/LC_MESSAGES/babelfish.mo share/locale/ga/LC_MESSAGES/dirfilterplugin.mo share/locale/ga/LC_MESSAGES/fsview.mo share/locale/ga/LC_MESSAGES/imgalleryplugin.mo share/locale/ga/LC_MESSAGES/kcmbookmarks.mo share/locale/ga/LC_MESSAGES/kcmkonq.mo share/locale/ga/LC_MESSAGES/kcmkonqhtml.mo share/locale/ga/LC_MESSAGES/kcmperformance.mo share/locale/ga/LC_MESSAGES/kfmclient.mo share/locale/ga/LC_MESSAGES/kgetplugin.mo share/locale/ga/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/ga/LC_MESSAGES/khtmltts.mo share/locale/ga/LC_MESSAGES/kio6_bookmarks.mo share/locale/ga/LC_MESSAGES/konqueror.mo share/locale/ga/LC_MESSAGES/kshellcmdplugin.mo share/locale/ga/LC_MESSAGES/libkonq.mo share/locale/ga/LC_MESSAGES/searchbarplugin.mo share/locale/ga/LC_MESSAGES/uachangerplugin.mo share/locale/ga/LC_MESSAGES/webenginepart.mo share/locale/gl/LC_MESSAGES/akregator_konqplugin.mo share/locale/gl/LC_MESSAGES/autorefresh.mo share/locale/gl/LC_MESSAGES/babelfish.mo share/locale/gl/LC_MESSAGES/dirfilterplugin.mo share/locale/gl/LC_MESSAGES/fsview.mo share/locale/gl/LC_MESSAGES/imgalleryplugin.mo share/locale/gl/LC_MESSAGES/kcmbookmarks.mo share/locale/gl/LC_MESSAGES/kcmkonq.mo share/locale/gl/LC_MESSAGES/kcmkonqhtml.mo share/locale/gl/LC_MESSAGES/kcmperformance.mo share/locale/gl/LC_MESSAGES/kfmclient.mo share/locale/gl/LC_MESSAGES/kgetplugin.mo share/locale/gl/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/gl/LC_MESSAGES/khtmltts.mo share/locale/gl/LC_MESSAGES/kio6_bookmarks.mo share/locale/gl/LC_MESSAGES/konqsidebar.mo share/locale/gl/LC_MESSAGES/konqueror.mo share/locale/gl/LC_MESSAGES/kshellcmdplugin.mo share/locale/gl/LC_MESSAGES/libkonq.mo share/locale/gl/LC_MESSAGES/searchbarplugin.mo share/locale/gl/LC_MESSAGES/temporarysavedir.mo share/locale/gl/LC_MESSAGES/uachangerplugin.mo share/locale/gl/LC_MESSAGES/webarchiver.mo share/locale/gl/LC_MESSAGES/webenginepart.mo share/locale/gu/LC_MESSAGES/kcmbookmarks.mo share/locale/gu/LC_MESSAGES/kcmkonq.mo share/locale/gu/LC_MESSAGES/kcmkonqhtml.mo share/locale/gu/LC_MESSAGES/kcmperformance.mo share/locale/gu/LC_MESSAGES/kfmclient.mo share/locale/gu/LC_MESSAGES/khtmltts.mo share/locale/gu/LC_MESSAGES/kio6_bookmarks.mo share/locale/gu/LC_MESSAGES/konqueror.mo share/locale/gu/LC_MESSAGES/kshellcmdplugin.mo share/locale/gu/LC_MESSAGES/libkonq.mo share/locale/he/LC_MESSAGES/akregator_konqplugin.mo share/locale/he/LC_MESSAGES/autorefresh.mo share/locale/he/LC_MESSAGES/babelfish.mo share/locale/he/LC_MESSAGES/dirfilterplugin.mo share/locale/he/LC_MESSAGES/fsview.mo share/locale/he/LC_MESSAGES/imgalleryplugin.mo share/locale/he/LC_MESSAGES/kcmbookmarks.mo share/locale/he/LC_MESSAGES/kcmkonq.mo share/locale/he/LC_MESSAGES/kcmkonqhtml.mo share/locale/he/LC_MESSAGES/kcmperformance.mo share/locale/he/LC_MESSAGES/kfmclient.mo share/locale/he/LC_MESSAGES/kgetplugin.mo share/locale/he/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/he/LC_MESSAGES/khtmltts.mo share/locale/he/LC_MESSAGES/kio6_bookmarks.mo share/locale/he/LC_MESSAGES/konqsidebar.mo share/locale/he/LC_MESSAGES/konqueror.mo share/locale/he/LC_MESSAGES/kshellcmdplugin.mo share/locale/he/LC_MESSAGES/libkonq.mo share/locale/he/LC_MESSAGES/searchbarplugin.mo share/locale/he/LC_MESSAGES/temporarysavedir.mo share/locale/he/LC_MESSAGES/uachangerplugin.mo share/locale/he/LC_MESSAGES/webarchiver.mo share/locale/he/LC_MESSAGES/webenginepart.mo share/locale/hi/LC_MESSAGES/akregator_konqplugin.mo share/locale/hi/LC_MESSAGES/autorefresh.mo share/locale/hi/LC_MESSAGES/babelfish.mo share/locale/hi/LC_MESSAGES/dirfilterplugin.mo share/locale/hi/LC_MESSAGES/fsview.mo share/locale/hi/LC_MESSAGES/imgalleryplugin.mo share/locale/hi/LC_MESSAGES/kcmbookmarks.mo share/locale/hi/LC_MESSAGES/kcmkonq.mo share/locale/hi/LC_MESSAGES/kcmkonqhtml.mo share/locale/hi/LC_MESSAGES/kcmperformance.mo share/locale/hi/LC_MESSAGES/kfmclient.mo share/locale/hi/LC_MESSAGES/kgetplugin.mo share/locale/hi/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/hi/LC_MESSAGES/khtmltts.mo share/locale/hi/LC_MESSAGES/kio6_bookmarks.mo share/locale/hi/LC_MESSAGES/konqueror.mo share/locale/hi/LC_MESSAGES/kshellcmdplugin.mo share/locale/hi/LC_MESSAGES/libkonq.mo share/locale/hi/LC_MESSAGES/searchbarplugin.mo share/locale/hi/LC_MESSAGES/uachangerplugin.mo share/locale/hi/LC_MESSAGES/webarchiver.mo share/locale/hi/LC_MESSAGES/webenginepart.mo share/locale/hne/LC_MESSAGES/akregator_konqplugin.mo share/locale/hne/LC_MESSAGES/autorefresh.mo share/locale/hne/LC_MESSAGES/babelfish.mo share/locale/hne/LC_MESSAGES/dirfilterplugin.mo share/locale/hne/LC_MESSAGES/fsview.mo share/locale/hne/LC_MESSAGES/imgalleryplugin.mo share/locale/hne/LC_MESSAGES/kcmbookmarks.mo share/locale/hne/LC_MESSAGES/kcmkonq.mo share/locale/hne/LC_MESSAGES/kcmkonqhtml.mo share/locale/hne/LC_MESSAGES/kcmperformance.mo share/locale/hne/LC_MESSAGES/kfmclient.mo share/locale/hne/LC_MESSAGES/kgetplugin.mo share/locale/hne/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/hne/LC_MESSAGES/khtmltts.mo share/locale/hne/LC_MESSAGES/konqueror.mo share/locale/hne/LC_MESSAGES/kshellcmdplugin.mo share/locale/hne/LC_MESSAGES/libkonq.mo share/locale/hne/LC_MESSAGES/searchbarplugin.mo share/locale/hne/LC_MESSAGES/uachangerplugin.mo share/locale/hr/LC_MESSAGES/akregator_konqplugin.mo share/locale/hr/LC_MESSAGES/autorefresh.mo share/locale/hr/LC_MESSAGES/babelfish.mo share/locale/hr/LC_MESSAGES/dirfilterplugin.mo share/locale/hr/LC_MESSAGES/fsview.mo share/locale/hr/LC_MESSAGES/imgalleryplugin.mo share/locale/hr/LC_MESSAGES/kcmbookmarks.mo share/locale/hr/LC_MESSAGES/kcmkonq.mo share/locale/hr/LC_MESSAGES/kcmkonqhtml.mo share/locale/hr/LC_MESSAGES/kcmperformance.mo share/locale/hr/LC_MESSAGES/kfmclient.mo share/locale/hr/LC_MESSAGES/kgetplugin.mo share/locale/hr/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/hr/LC_MESSAGES/khtmltts.mo share/locale/hr/LC_MESSAGES/kio6_bookmarks.mo share/locale/hr/LC_MESSAGES/konqueror.mo share/locale/hr/LC_MESSAGES/kshellcmdplugin.mo share/locale/hr/LC_MESSAGES/libkonq.mo share/locale/hr/LC_MESSAGES/searchbarplugin.mo share/locale/hr/LC_MESSAGES/uachangerplugin.mo share/locale/hsb/LC_MESSAGES/kcmbookmarks.mo share/locale/hsb/LC_MESSAGES/kcmkonq.mo share/locale/hsb/LC_MESSAGES/kcmkonqhtml.mo share/locale/hsb/LC_MESSAGES/kcmperformance.mo share/locale/hsb/LC_MESSAGES/kfmclient.mo share/locale/hsb/LC_MESSAGES/kgetplugin.mo share/locale/hsb/LC_MESSAGES/khtmltts.mo share/locale/hsb/LC_MESSAGES/kio6_bookmarks.mo share/locale/hsb/LC_MESSAGES/konqueror.mo share/locale/hsb/LC_MESSAGES/kshellcmdplugin.mo share/locale/hsb/LC_MESSAGES/libkonq.mo share/locale/hsb/LC_MESSAGES/webenginepart.mo share/locale/hu/LC_MESSAGES/akregator_konqplugin.mo share/locale/hu/LC_MESSAGES/autorefresh.mo share/locale/hu/LC_MESSAGES/babelfish.mo share/locale/hu/LC_MESSAGES/dirfilterplugin.mo share/locale/hu/LC_MESSAGES/fsview.mo share/locale/hu/LC_MESSAGES/imgalleryplugin.mo share/locale/hu/LC_MESSAGES/kcmbookmarks.mo share/locale/hu/LC_MESSAGES/kcmkonq.mo share/locale/hu/LC_MESSAGES/kcmkonqhtml.mo share/locale/hu/LC_MESSAGES/kcmperformance.mo share/locale/hu/LC_MESSAGES/kfmclient.mo share/locale/hu/LC_MESSAGES/kgetplugin.mo share/locale/hu/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/hu/LC_MESSAGES/khtmltts.mo share/locale/hu/LC_MESSAGES/kio6_bookmarks.mo share/locale/hu/LC_MESSAGES/konqueror.mo share/locale/hu/LC_MESSAGES/kshellcmdplugin.mo share/locale/hu/LC_MESSAGES/libkonq.mo share/locale/hu/LC_MESSAGES/searchbarplugin.mo share/locale/hu/LC_MESSAGES/uachangerplugin.mo share/locale/hu/LC_MESSAGES/webenginepart.mo share/locale/ia/LC_MESSAGES/akregator_konqplugin.mo share/locale/ia/LC_MESSAGES/autorefresh.mo share/locale/ia/LC_MESSAGES/babelfish.mo share/locale/ia/LC_MESSAGES/dirfilterplugin.mo share/locale/ia/LC_MESSAGES/fsview.mo share/locale/ia/LC_MESSAGES/imgalleryplugin.mo share/locale/ia/LC_MESSAGES/kcmbookmarks.mo share/locale/ia/LC_MESSAGES/kcmkonq.mo share/locale/ia/LC_MESSAGES/kcmkonqhtml.mo share/locale/ia/LC_MESSAGES/kcmperformance.mo share/locale/ia/LC_MESSAGES/kfmclient.mo share/locale/ia/LC_MESSAGES/kgetplugin.mo share/locale/ia/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/ia/LC_MESSAGES/khtmltts.mo share/locale/ia/LC_MESSAGES/kio6_bookmarks.mo share/locale/ia/LC_MESSAGES/konqsidebar.mo share/locale/ia/LC_MESSAGES/konqueror.mo share/locale/ia/LC_MESSAGES/kshellcmdplugin.mo share/locale/ia/LC_MESSAGES/libkonq.mo share/locale/ia/LC_MESSAGES/searchbarplugin.mo share/locale/ia/LC_MESSAGES/temporarysavedir.mo share/locale/ia/LC_MESSAGES/uachangerplugin.mo share/locale/ia/LC_MESSAGES/webarchiver.mo share/locale/ia/LC_MESSAGES/webenginepart.mo share/locale/id/LC_MESSAGES/akregator_konqplugin.mo share/locale/id/LC_MESSAGES/autorefresh.mo share/locale/id/LC_MESSAGES/babelfish.mo share/locale/id/LC_MESSAGES/dirfilterplugin.mo share/locale/id/LC_MESSAGES/fsview.mo share/locale/id/LC_MESSAGES/imgalleryplugin.mo share/locale/id/LC_MESSAGES/kcmbookmarks.mo share/locale/id/LC_MESSAGES/kcmkonq.mo share/locale/id/LC_MESSAGES/kcmkonqhtml.mo share/locale/id/LC_MESSAGES/kcmperformance.mo share/locale/id/LC_MESSAGES/kfmclient.mo share/locale/id/LC_MESSAGES/kgetplugin.mo share/locale/id/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/id/LC_MESSAGES/khtmltts.mo share/locale/id/LC_MESSAGES/kio6_bookmarks.mo share/locale/id/LC_MESSAGES/konqueror.mo share/locale/id/LC_MESSAGES/kshellcmdplugin.mo share/locale/id/LC_MESSAGES/libkonq.mo share/locale/id/LC_MESSAGES/searchbarplugin.mo share/locale/id/LC_MESSAGES/uachangerplugin.mo share/locale/id/LC_MESSAGES/webarchiver.mo share/locale/id/LC_MESSAGES/webenginepart.mo share/locale/is/LC_MESSAGES/akregator_konqplugin.mo share/locale/is/LC_MESSAGES/autorefresh.mo share/locale/is/LC_MESSAGES/babelfish.mo share/locale/is/LC_MESSAGES/dirfilterplugin.mo share/locale/is/LC_MESSAGES/fsview.mo share/locale/is/LC_MESSAGES/imgalleryplugin.mo share/locale/is/LC_MESSAGES/kcmbookmarks.mo share/locale/is/LC_MESSAGES/kcmkonq.mo share/locale/is/LC_MESSAGES/kcmkonqhtml.mo share/locale/is/LC_MESSAGES/kcmperformance.mo share/locale/is/LC_MESSAGES/kfmclient.mo share/locale/is/LC_MESSAGES/kgetplugin.mo share/locale/is/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/is/LC_MESSAGES/khtmltts.mo share/locale/is/LC_MESSAGES/kio6_bookmarks.mo share/locale/is/LC_MESSAGES/konqueror.mo share/locale/is/LC_MESSAGES/kshellcmdplugin.mo share/locale/is/LC_MESSAGES/libkonq.mo share/locale/is/LC_MESSAGES/searchbarplugin.mo share/locale/is/LC_MESSAGES/uachangerplugin.mo share/locale/it/LC_MESSAGES/akregator_konqplugin.mo share/locale/it/LC_MESSAGES/autorefresh.mo share/locale/it/LC_MESSAGES/babelfish.mo share/locale/it/LC_MESSAGES/dirfilterplugin.mo share/locale/it/LC_MESSAGES/fsview.mo share/locale/it/LC_MESSAGES/imgalleryplugin.mo share/locale/it/LC_MESSAGES/kcmbookmarks.mo share/locale/it/LC_MESSAGES/kcmkonq.mo share/locale/it/LC_MESSAGES/kcmkonqhtml.mo share/locale/it/LC_MESSAGES/kcmperformance.mo share/locale/it/LC_MESSAGES/kfmclient.mo share/locale/it/LC_MESSAGES/kgetplugin.mo share/locale/it/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/it/LC_MESSAGES/khtmltts.mo share/locale/it/LC_MESSAGES/kio6_bookmarks.mo share/locale/it/LC_MESSAGES/konqsidebar.mo share/locale/it/LC_MESSAGES/konqueror.mo share/locale/it/LC_MESSAGES/kshellcmdplugin.mo share/locale/it/LC_MESSAGES/libkonq.mo share/locale/it/LC_MESSAGES/searchbarplugin.mo share/locale/it/LC_MESSAGES/temporarysavedir.mo share/locale/it/LC_MESSAGES/uachangerplugin.mo share/locale/it/LC_MESSAGES/webarchiver.mo share/locale/it/LC_MESSAGES/webenginepart.mo share/locale/ja/LC_MESSAGES/akregator_konqplugin.mo share/locale/ja/LC_MESSAGES/autorefresh.mo share/locale/ja/LC_MESSAGES/babelfish.mo share/locale/ja/LC_MESSAGES/dirfilterplugin.mo share/locale/ja/LC_MESSAGES/fsview.mo share/locale/ja/LC_MESSAGES/imgalleryplugin.mo share/locale/ja/LC_MESSAGES/kcmbookmarks.mo share/locale/ja/LC_MESSAGES/kcmkonq.mo share/locale/ja/LC_MESSAGES/kcmkonqhtml.mo share/locale/ja/LC_MESSAGES/kcmperformance.mo share/locale/ja/LC_MESSAGES/kfmclient.mo share/locale/ja/LC_MESSAGES/kgetplugin.mo share/locale/ja/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/ja/LC_MESSAGES/khtmltts.mo share/locale/ja/LC_MESSAGES/kio6_bookmarks.mo share/locale/ja/LC_MESSAGES/konqueror.mo share/locale/ja/LC_MESSAGES/kshellcmdplugin.mo share/locale/ja/LC_MESSAGES/libkonq.mo share/locale/ja/LC_MESSAGES/searchbarplugin.mo share/locale/ja/LC_MESSAGES/uachangerplugin.mo share/locale/ja/LC_MESSAGES/webarchiver.mo share/locale/ja/LC_MESSAGES/webenginepart.mo share/locale/ka/LC_MESSAGES/akregator_konqplugin.mo share/locale/ka/LC_MESSAGES/autorefresh.mo share/locale/ka/LC_MESSAGES/babelfish.mo share/locale/ka/LC_MESSAGES/dirfilterplugin.mo share/locale/ka/LC_MESSAGES/fsview.mo share/locale/ka/LC_MESSAGES/imgalleryplugin.mo share/locale/ka/LC_MESSAGES/kcmbookmarks.mo share/locale/ka/LC_MESSAGES/kcmkonq.mo share/locale/ka/LC_MESSAGES/kcmkonqhtml.mo share/locale/ka/LC_MESSAGES/kcmperformance.mo share/locale/ka/LC_MESSAGES/kfmclient.mo share/locale/ka/LC_MESSAGES/kgetplugin.mo share/locale/ka/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/ka/LC_MESSAGES/khtmltts.mo share/locale/ka/LC_MESSAGES/kio6_bookmarks.mo share/locale/ka/LC_MESSAGES/konqsidebar.mo share/locale/ka/LC_MESSAGES/konqueror.mo share/locale/ka/LC_MESSAGES/kshellcmdplugin.mo share/locale/ka/LC_MESSAGES/libkonq.mo share/locale/ka/LC_MESSAGES/searchbarplugin.mo share/locale/ka/LC_MESSAGES/temporarysavedir.mo share/locale/ka/LC_MESSAGES/uachangerplugin.mo share/locale/ka/LC_MESSAGES/webarchiver.mo share/locale/ka/LC_MESSAGES/webenginepart.mo share/locale/kk/LC_MESSAGES/akregator_konqplugin.mo share/locale/kk/LC_MESSAGES/autorefresh.mo share/locale/kk/LC_MESSAGES/babelfish.mo share/locale/kk/LC_MESSAGES/dirfilterplugin.mo share/locale/kk/LC_MESSAGES/fsview.mo share/locale/kk/LC_MESSAGES/imgalleryplugin.mo share/locale/kk/LC_MESSAGES/kcmbookmarks.mo share/locale/kk/LC_MESSAGES/kcmkonq.mo share/locale/kk/LC_MESSAGES/kcmkonqhtml.mo share/locale/kk/LC_MESSAGES/kcmperformance.mo share/locale/kk/LC_MESSAGES/kfmclient.mo share/locale/kk/LC_MESSAGES/kgetplugin.mo share/locale/kk/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/kk/LC_MESSAGES/khtmltts.mo share/locale/kk/LC_MESSAGES/kio6_bookmarks.mo share/locale/kk/LC_MESSAGES/konqueror.mo share/locale/kk/LC_MESSAGES/kshellcmdplugin.mo share/locale/kk/LC_MESSAGES/libkonq.mo share/locale/kk/LC_MESSAGES/searchbarplugin.mo share/locale/kk/LC_MESSAGES/uachangerplugin.mo share/locale/kk/LC_MESSAGES/webenginepart.mo share/locale/km/LC_MESSAGES/akregator_konqplugin.mo share/locale/km/LC_MESSAGES/autorefresh.mo share/locale/km/LC_MESSAGES/babelfish.mo share/locale/km/LC_MESSAGES/dirfilterplugin.mo share/locale/km/LC_MESSAGES/fsview.mo share/locale/km/LC_MESSAGES/imgalleryplugin.mo share/locale/km/LC_MESSAGES/kcmbookmarks.mo share/locale/km/LC_MESSAGES/kcmkonq.mo share/locale/km/LC_MESSAGES/kcmkonqhtml.mo share/locale/km/LC_MESSAGES/kcmperformance.mo share/locale/km/LC_MESSAGES/kfmclient.mo share/locale/km/LC_MESSAGES/kgetplugin.mo share/locale/km/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/km/LC_MESSAGES/khtmltts.mo share/locale/km/LC_MESSAGES/kio6_bookmarks.mo share/locale/km/LC_MESSAGES/konqueror.mo share/locale/km/LC_MESSAGES/kshellcmdplugin.mo share/locale/km/LC_MESSAGES/libkonq.mo share/locale/km/LC_MESSAGES/searchbarplugin.mo share/locale/km/LC_MESSAGES/uachangerplugin.mo share/locale/km/LC_MESSAGES/webenginepart.mo share/locale/kn/LC_MESSAGES/kcmbookmarks.mo share/locale/kn/LC_MESSAGES/kcmkonq.mo share/locale/kn/LC_MESSAGES/kcmkonqhtml.mo share/locale/kn/LC_MESSAGES/kcmperformance.mo share/locale/kn/LC_MESSAGES/khtmltts.mo share/locale/kn/LC_MESSAGES/kio6_bookmarks.mo share/locale/kn/LC_MESSAGES/konqueror.mo share/locale/kn/LC_MESSAGES/kshellcmdplugin.mo share/locale/kn/LC_MESSAGES/libkonq.mo share/locale/ko/LC_MESSAGES/akregator_konqplugin.mo share/locale/ko/LC_MESSAGES/autorefresh.mo share/locale/ko/LC_MESSAGES/babelfish.mo share/locale/ko/LC_MESSAGES/dirfilterplugin.mo share/locale/ko/LC_MESSAGES/fsview.mo share/locale/ko/LC_MESSAGES/imgalleryplugin.mo share/locale/ko/LC_MESSAGES/kcmbookmarks.mo share/locale/ko/LC_MESSAGES/kcmkonq.mo share/locale/ko/LC_MESSAGES/kcmkonqhtml.mo share/locale/ko/LC_MESSAGES/kcmperformance.mo share/locale/ko/LC_MESSAGES/kfmclient.mo share/locale/ko/LC_MESSAGES/kgetplugin.mo share/locale/ko/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/ko/LC_MESSAGES/khtmltts.mo share/locale/ko/LC_MESSAGES/kio6_bookmarks.mo share/locale/ko/LC_MESSAGES/konqsidebar.mo share/locale/ko/LC_MESSAGES/konqueror.mo share/locale/ko/LC_MESSAGES/kshellcmdplugin.mo share/locale/ko/LC_MESSAGES/libkonq.mo share/locale/ko/LC_MESSAGES/searchbarplugin.mo share/locale/ko/LC_MESSAGES/temporarysavedir.mo share/locale/ko/LC_MESSAGES/uachangerplugin.mo share/locale/ko/LC_MESSAGES/webarchiver.mo share/locale/ko/LC_MESSAGES/webenginepart.mo share/locale/ku/LC_MESSAGES/akregator_konqplugin.mo share/locale/ku/LC_MESSAGES/autorefresh.mo share/locale/ku/LC_MESSAGES/babelfish.mo share/locale/ku/LC_MESSAGES/dirfilterplugin.mo share/locale/ku/LC_MESSAGES/fsview.mo share/locale/ku/LC_MESSAGES/imgalleryplugin.mo share/locale/ku/LC_MESSAGES/kcmbookmarks.mo share/locale/ku/LC_MESSAGES/kcmkonq.mo share/locale/ku/LC_MESSAGES/kcmkonqhtml.mo share/locale/ku/LC_MESSAGES/kcmperformance.mo share/locale/ku/LC_MESSAGES/kfmclient.mo share/locale/ku/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/ku/LC_MESSAGES/khtmltts.mo share/locale/ku/LC_MESSAGES/kio6_bookmarks.mo share/locale/ku/LC_MESSAGES/konqueror.mo share/locale/ku/LC_MESSAGES/kshellcmdplugin.mo share/locale/ku/LC_MESSAGES/libkonq.mo share/locale/ku/LC_MESSAGES/searchbarplugin.mo share/locale/ku/LC_MESSAGES/uachangerplugin.mo share/locale/lt/LC_MESSAGES/akregator_konqplugin.mo share/locale/lt/LC_MESSAGES/autorefresh.mo share/locale/lt/LC_MESSAGES/babelfish.mo share/locale/lt/LC_MESSAGES/dirfilterplugin.mo share/locale/lt/LC_MESSAGES/fsview.mo share/locale/lt/LC_MESSAGES/imgalleryplugin.mo share/locale/lt/LC_MESSAGES/kcmbookmarks.mo share/locale/lt/LC_MESSAGES/kcmkonq.mo share/locale/lt/LC_MESSAGES/kcmkonqhtml.mo share/locale/lt/LC_MESSAGES/kcmperformance.mo share/locale/lt/LC_MESSAGES/kfmclient.mo share/locale/lt/LC_MESSAGES/kgetplugin.mo share/locale/lt/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/lt/LC_MESSAGES/khtmltts.mo share/locale/lt/LC_MESSAGES/kio6_bookmarks.mo share/locale/lt/LC_MESSAGES/konqueror.mo share/locale/lt/LC_MESSAGES/kshellcmdplugin.mo share/locale/lt/LC_MESSAGES/libkonq.mo share/locale/lt/LC_MESSAGES/searchbarplugin.mo share/locale/lt/LC_MESSAGES/uachangerplugin.mo share/locale/lt/LC_MESSAGES/webarchiver.mo share/locale/lt/LC_MESSAGES/webenginepart.mo share/locale/lv/LC_MESSAGES/akregator_konqplugin.mo share/locale/lv/LC_MESSAGES/autorefresh.mo share/locale/lv/LC_MESSAGES/babelfish.mo share/locale/lv/LC_MESSAGES/dirfilterplugin.mo share/locale/lv/LC_MESSAGES/fsview.mo share/locale/lv/LC_MESSAGES/imgalleryplugin.mo share/locale/lv/LC_MESSAGES/kcmbookmarks.mo share/locale/lv/LC_MESSAGES/kcmkonq.mo share/locale/lv/LC_MESSAGES/kcmkonqhtml.mo share/locale/lv/LC_MESSAGES/kcmperformance.mo share/locale/lv/LC_MESSAGES/kfmclient.mo share/locale/lv/LC_MESSAGES/kgetplugin.mo share/locale/lv/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/lv/LC_MESSAGES/khtmltts.mo share/locale/lv/LC_MESSAGES/kio6_bookmarks.mo share/locale/lv/LC_MESSAGES/konqsidebar.mo share/locale/lv/LC_MESSAGES/konqueror.mo share/locale/lv/LC_MESSAGES/kshellcmdplugin.mo share/locale/lv/LC_MESSAGES/libkonq.mo share/locale/lv/LC_MESSAGES/searchbarplugin.mo share/locale/lv/LC_MESSAGES/temporarysavedir.mo share/locale/lv/LC_MESSAGES/uachangerplugin.mo share/locale/lv/LC_MESSAGES/webarchiver.mo share/locale/lv/LC_MESSAGES/webenginepart.mo share/locale/mai/LC_MESSAGES/akregator_konqplugin.mo share/locale/mai/LC_MESSAGES/autorefresh.mo share/locale/mai/LC_MESSAGES/babelfish.mo share/locale/mai/LC_MESSAGES/dirfilterplugin.mo share/locale/mai/LC_MESSAGES/fsview.mo share/locale/mai/LC_MESSAGES/imgalleryplugin.mo share/locale/mai/LC_MESSAGES/kcmbookmarks.mo share/locale/mai/LC_MESSAGES/kcmkonq.mo share/locale/mai/LC_MESSAGES/kcmkonqhtml.mo share/locale/mai/LC_MESSAGES/kcmperformance.mo share/locale/mai/LC_MESSAGES/kfmclient.mo share/locale/mai/LC_MESSAGES/kgetplugin.mo share/locale/mai/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/mai/LC_MESSAGES/khtmltts.mo share/locale/mai/LC_MESSAGES/kio6_bookmarks.mo share/locale/mai/LC_MESSAGES/konqueror.mo share/locale/mai/LC_MESSAGES/kshellcmdplugin.mo share/locale/mai/LC_MESSAGES/libkonq.mo share/locale/mai/LC_MESSAGES/searchbarplugin.mo share/locale/mai/LC_MESSAGES/uachangerplugin.mo share/locale/mai/LC_MESSAGES/webenginepart.mo share/locale/mk/LC_MESSAGES/akregator_konqplugin.mo share/locale/mk/LC_MESSAGES/autorefresh.mo share/locale/mk/LC_MESSAGES/babelfish.mo share/locale/mk/LC_MESSAGES/dirfilterplugin.mo share/locale/mk/LC_MESSAGES/fsview.mo share/locale/mk/LC_MESSAGES/imgalleryplugin.mo share/locale/mk/LC_MESSAGES/kcmbookmarks.mo share/locale/mk/LC_MESSAGES/kcmkonq.mo share/locale/mk/LC_MESSAGES/kcmkonqhtml.mo share/locale/mk/LC_MESSAGES/kcmperformance.mo share/locale/mk/LC_MESSAGES/kfmclient.mo share/locale/mk/LC_MESSAGES/kgetplugin.mo share/locale/mk/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/mk/LC_MESSAGES/khtmltts.mo share/locale/mk/LC_MESSAGES/kio6_bookmarks.mo share/locale/mk/LC_MESSAGES/konqueror.mo share/locale/mk/LC_MESSAGES/kshellcmdplugin.mo share/locale/mk/LC_MESSAGES/libkonq.mo share/locale/mk/LC_MESSAGES/searchbarplugin.mo share/locale/mk/LC_MESSAGES/uachangerplugin.mo share/locale/ml/LC_MESSAGES/akregator_konqplugin.mo share/locale/ml/LC_MESSAGES/autorefresh.mo share/locale/ml/LC_MESSAGES/babelfish.mo share/locale/ml/LC_MESSAGES/dirfilterplugin.mo share/locale/ml/LC_MESSAGES/fsview.mo share/locale/ml/LC_MESSAGES/imgalleryplugin.mo share/locale/ml/LC_MESSAGES/kcmbookmarks.mo share/locale/ml/LC_MESSAGES/kcmkonq.mo share/locale/ml/LC_MESSAGES/kcmkonqhtml.mo share/locale/ml/LC_MESSAGES/kcmperformance.mo share/locale/ml/LC_MESSAGES/kfmclient.mo share/locale/ml/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/ml/LC_MESSAGES/khtmltts.mo share/locale/ml/LC_MESSAGES/kio6_bookmarks.mo share/locale/ml/LC_MESSAGES/konqueror.mo share/locale/ml/LC_MESSAGES/kshellcmdplugin.mo share/locale/ml/LC_MESSAGES/libkonq.mo share/locale/ml/LC_MESSAGES/searchbarplugin.mo share/locale/ml/LC_MESSAGES/uachangerplugin.mo share/locale/ml/LC_MESSAGES/webenginepart.mo share/locale/mr/LC_MESSAGES/akregator_konqplugin.mo share/locale/mr/LC_MESSAGES/autorefresh.mo share/locale/mr/LC_MESSAGES/babelfish.mo share/locale/mr/LC_MESSAGES/dirfilterplugin.mo share/locale/mr/LC_MESSAGES/fsview.mo share/locale/mr/LC_MESSAGES/imgalleryplugin.mo share/locale/mr/LC_MESSAGES/kcmbookmarks.mo share/locale/mr/LC_MESSAGES/kcmkonq.mo share/locale/mr/LC_MESSAGES/kcmkonqhtml.mo share/locale/mr/LC_MESSAGES/kcmperformance.mo share/locale/mr/LC_MESSAGES/kfmclient.mo share/locale/mr/LC_MESSAGES/kgetplugin.mo share/locale/mr/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/mr/LC_MESSAGES/khtmltts.mo share/locale/mr/LC_MESSAGES/kio6_bookmarks.mo share/locale/mr/LC_MESSAGES/konqueror.mo share/locale/mr/LC_MESSAGES/kshellcmdplugin.mo share/locale/mr/LC_MESSAGES/libkonq.mo share/locale/mr/LC_MESSAGES/searchbarplugin.mo share/locale/mr/LC_MESSAGES/uachangerplugin.mo share/locale/mr/LC_MESSAGES/webenginepart.mo share/locale/ms/LC_MESSAGES/akregator_konqplugin.mo share/locale/ms/LC_MESSAGES/autorefresh.mo share/locale/ms/LC_MESSAGES/babelfish.mo share/locale/ms/LC_MESSAGES/dirfilterplugin.mo share/locale/ms/LC_MESSAGES/fsview.mo share/locale/ms/LC_MESSAGES/imgalleryplugin.mo share/locale/ms/LC_MESSAGES/kcmbookmarks.mo share/locale/ms/LC_MESSAGES/kcmkonq.mo share/locale/ms/LC_MESSAGES/kcmkonqhtml.mo share/locale/ms/LC_MESSAGES/kcmperformance.mo share/locale/ms/LC_MESSAGES/kfmclient.mo share/locale/ms/LC_MESSAGES/kgetplugin.mo share/locale/ms/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/ms/LC_MESSAGES/khtmltts.mo share/locale/ms/LC_MESSAGES/kio6_bookmarks.mo share/locale/ms/LC_MESSAGES/konqueror.mo share/locale/ms/LC_MESSAGES/kshellcmdplugin.mo share/locale/ms/LC_MESSAGES/libkonq.mo share/locale/ms/LC_MESSAGES/searchbarplugin.mo share/locale/ms/LC_MESSAGES/uachangerplugin.mo share/locale/ms/LC_MESSAGES/webenginepart.mo share/locale/my/LC_MESSAGES/akregator_konqplugin.mo share/locale/my/LC_MESSAGES/autorefresh.mo share/locale/my/LC_MESSAGES/babelfish.mo share/locale/my/LC_MESSAGES/dirfilterplugin.mo share/locale/my/LC_MESSAGES/fsview.mo share/locale/my/LC_MESSAGES/imgalleryplugin.mo share/locale/my/LC_MESSAGES/kcmbookmarks.mo share/locale/my/LC_MESSAGES/kcmkonq.mo share/locale/my/LC_MESSAGES/kcmkonqhtml.mo share/locale/my/LC_MESSAGES/kcmperformance.mo share/locale/my/LC_MESSAGES/kfmclient.mo share/locale/my/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/my/LC_MESSAGES/khtmltts.mo share/locale/my/LC_MESSAGES/konqueror.mo share/locale/my/LC_MESSAGES/kshellcmdplugin.mo share/locale/my/LC_MESSAGES/libkonq.mo share/locale/my/LC_MESSAGES/searchbarplugin.mo share/locale/my/LC_MESSAGES/uachangerplugin.mo share/locale/my/LC_MESSAGES/webarchiver.mo share/locale/my/LC_MESSAGES/webenginepart.mo share/locale/nb/LC_MESSAGES/akregator_konqplugin.mo share/locale/nb/LC_MESSAGES/autorefresh.mo share/locale/nb/LC_MESSAGES/babelfish.mo share/locale/nb/LC_MESSAGES/dirfilterplugin.mo share/locale/nb/LC_MESSAGES/fsview.mo share/locale/nb/LC_MESSAGES/imgalleryplugin.mo share/locale/nb/LC_MESSAGES/kcmbookmarks.mo share/locale/nb/LC_MESSAGES/kcmkonq.mo share/locale/nb/LC_MESSAGES/kcmkonqhtml.mo share/locale/nb/LC_MESSAGES/kcmperformance.mo share/locale/nb/LC_MESSAGES/kfmclient.mo share/locale/nb/LC_MESSAGES/kgetplugin.mo share/locale/nb/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/nb/LC_MESSAGES/khtmltts.mo share/locale/nb/LC_MESSAGES/kio6_bookmarks.mo share/locale/nb/LC_MESSAGES/konqueror.mo share/locale/nb/LC_MESSAGES/kshellcmdplugin.mo share/locale/nb/LC_MESSAGES/libkonq.mo share/locale/nb/LC_MESSAGES/searchbarplugin.mo share/locale/nb/LC_MESSAGES/uachangerplugin.mo share/locale/nb/LC_MESSAGES/webenginepart.mo share/locale/nds/LC_MESSAGES/akregator_konqplugin.mo share/locale/nds/LC_MESSAGES/autorefresh.mo share/locale/nds/LC_MESSAGES/babelfish.mo share/locale/nds/LC_MESSAGES/dirfilterplugin.mo share/locale/nds/LC_MESSAGES/fsview.mo share/locale/nds/LC_MESSAGES/imgalleryplugin.mo share/locale/nds/LC_MESSAGES/kcmbookmarks.mo share/locale/nds/LC_MESSAGES/kcmkonq.mo share/locale/nds/LC_MESSAGES/kcmkonqhtml.mo share/locale/nds/LC_MESSAGES/kcmperformance.mo share/locale/nds/LC_MESSAGES/kfmclient.mo share/locale/nds/LC_MESSAGES/kgetplugin.mo share/locale/nds/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/nds/LC_MESSAGES/khtmltts.mo share/locale/nds/LC_MESSAGES/kio6_bookmarks.mo share/locale/nds/LC_MESSAGES/konqueror.mo share/locale/nds/LC_MESSAGES/kshellcmdplugin.mo share/locale/nds/LC_MESSAGES/libkonq.mo share/locale/nds/LC_MESSAGES/searchbarplugin.mo share/locale/nds/LC_MESSAGES/uachangerplugin.mo share/locale/nds/LC_MESSAGES/webenginepart.mo share/locale/ne/LC_MESSAGES/akregator_konqplugin.mo share/locale/ne/LC_MESSAGES/autorefresh.mo share/locale/ne/LC_MESSAGES/babelfish.mo share/locale/ne/LC_MESSAGES/dirfilterplugin.mo share/locale/ne/LC_MESSAGES/fsview.mo share/locale/ne/LC_MESSAGES/imgalleryplugin.mo share/locale/ne/LC_MESSAGES/kcmbookmarks.mo share/locale/ne/LC_MESSAGES/kcmkonq.mo share/locale/ne/LC_MESSAGES/kcmkonqhtml.mo share/locale/ne/LC_MESSAGES/kcmperformance.mo share/locale/ne/LC_MESSAGES/kfmclient.mo share/locale/ne/LC_MESSAGES/kgetplugin.mo share/locale/ne/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/ne/LC_MESSAGES/khtmltts.mo share/locale/ne/LC_MESSAGES/konqueror.mo share/locale/ne/LC_MESSAGES/kshellcmdplugin.mo share/locale/ne/LC_MESSAGES/libkonq.mo share/locale/ne/LC_MESSAGES/searchbarplugin.mo share/locale/ne/LC_MESSAGES/uachangerplugin.mo share/locale/nl/LC_MESSAGES/akregator_konqplugin.mo share/locale/nl/LC_MESSAGES/autorefresh.mo share/locale/nl/LC_MESSAGES/babelfish.mo share/locale/nl/LC_MESSAGES/dirfilterplugin.mo share/locale/nl/LC_MESSAGES/fsview.mo share/locale/nl/LC_MESSAGES/imgalleryplugin.mo share/locale/nl/LC_MESSAGES/kcmbookmarks.mo share/locale/nl/LC_MESSAGES/kcmkonq.mo share/locale/nl/LC_MESSAGES/kcmkonqhtml.mo share/locale/nl/LC_MESSAGES/kcmperformance.mo share/locale/nl/LC_MESSAGES/kfmclient.mo share/locale/nl/LC_MESSAGES/kgetplugin.mo share/locale/nl/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/nl/LC_MESSAGES/khtmltts.mo share/locale/nl/LC_MESSAGES/kio6_bookmarks.mo share/locale/nl/LC_MESSAGES/konqsidebar.mo share/locale/nl/LC_MESSAGES/konqueror.mo share/locale/nl/LC_MESSAGES/kshellcmdplugin.mo share/locale/nl/LC_MESSAGES/libkonq.mo share/locale/nl/LC_MESSAGES/searchbarplugin.mo share/locale/nl/LC_MESSAGES/temporarysavedir.mo share/locale/nl/LC_MESSAGES/uachangerplugin.mo share/locale/nl/LC_MESSAGES/webarchiver.mo share/locale/nl/LC_MESSAGES/webenginepart.mo share/locale/nn/LC_MESSAGES/akregator_konqplugin.mo share/locale/nn/LC_MESSAGES/autorefresh.mo share/locale/nn/LC_MESSAGES/babelfish.mo share/locale/nn/LC_MESSAGES/dirfilterplugin.mo share/locale/nn/LC_MESSAGES/fsview.mo share/locale/nn/LC_MESSAGES/imgalleryplugin.mo share/locale/nn/LC_MESSAGES/kcmbookmarks.mo share/locale/nn/LC_MESSAGES/kcmkonq.mo share/locale/nn/LC_MESSAGES/kcmkonqhtml.mo share/locale/nn/LC_MESSAGES/kcmperformance.mo share/locale/nn/LC_MESSAGES/kfmclient.mo share/locale/nn/LC_MESSAGES/kgetplugin.mo share/locale/nn/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/nn/LC_MESSAGES/khtmltts.mo share/locale/nn/LC_MESSAGES/kio6_bookmarks.mo share/locale/nn/LC_MESSAGES/konqueror.mo share/locale/nn/LC_MESSAGES/kshellcmdplugin.mo share/locale/nn/LC_MESSAGES/libkonq.mo share/locale/nn/LC_MESSAGES/searchbarplugin.mo share/locale/nn/LC_MESSAGES/uachangerplugin.mo share/locale/nn/LC_MESSAGES/webarchiver.mo share/locale/nn/LC_MESSAGES/webenginepart.mo share/locale/oc/LC_MESSAGES/akregator_konqplugin.mo share/locale/oc/LC_MESSAGES/autorefresh.mo share/locale/oc/LC_MESSAGES/babelfish.mo share/locale/oc/LC_MESSAGES/dirfilterplugin.mo share/locale/oc/LC_MESSAGES/fsview.mo share/locale/oc/LC_MESSAGES/imgalleryplugin.mo share/locale/oc/LC_MESSAGES/kcmbookmarks.mo share/locale/oc/LC_MESSAGES/kcmkonq.mo share/locale/oc/LC_MESSAGES/kcmkonqhtml.mo share/locale/oc/LC_MESSAGES/kcmperformance.mo share/locale/oc/LC_MESSAGES/kfmclient.mo share/locale/oc/LC_MESSAGES/kgetplugin.mo share/locale/oc/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/oc/LC_MESSAGES/khtmltts.mo share/locale/oc/LC_MESSAGES/konqueror.mo share/locale/oc/LC_MESSAGES/kshellcmdplugin.mo share/locale/oc/LC_MESSAGES/libkonq.mo share/locale/oc/LC_MESSAGES/searchbarplugin.mo share/locale/oc/LC_MESSAGES/uachangerplugin.mo share/locale/or/LC_MESSAGES/kcmbookmarks.mo share/locale/or/LC_MESSAGES/kcmkonq.mo share/locale/or/LC_MESSAGES/kcmkonqhtml.mo share/locale/or/LC_MESSAGES/kcmperformance.mo share/locale/or/LC_MESSAGES/kfmclient.mo share/locale/or/LC_MESSAGES/khtmltts.mo share/locale/or/LC_MESSAGES/kio6_bookmarks.mo share/locale/or/LC_MESSAGES/konqueror.mo share/locale/or/LC_MESSAGES/kshellcmdplugin.mo share/locale/or/LC_MESSAGES/libkonq.mo share/locale/pa/LC_MESSAGES/akregator_konqplugin.mo share/locale/pa/LC_MESSAGES/autorefresh.mo share/locale/pa/LC_MESSAGES/babelfish.mo share/locale/pa/LC_MESSAGES/dirfilterplugin.mo share/locale/pa/LC_MESSAGES/fsview.mo share/locale/pa/LC_MESSAGES/imgalleryplugin.mo share/locale/pa/LC_MESSAGES/kcmbookmarks.mo share/locale/pa/LC_MESSAGES/kcmkonq.mo share/locale/pa/LC_MESSAGES/kcmkonqhtml.mo share/locale/pa/LC_MESSAGES/kcmperformance.mo share/locale/pa/LC_MESSAGES/kfmclient.mo share/locale/pa/LC_MESSAGES/kgetplugin.mo share/locale/pa/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/pa/LC_MESSAGES/khtmltts.mo share/locale/pa/LC_MESSAGES/kio6_bookmarks.mo share/locale/pa/LC_MESSAGES/konqueror.mo share/locale/pa/LC_MESSAGES/kshellcmdplugin.mo share/locale/pa/LC_MESSAGES/libkonq.mo share/locale/pa/LC_MESSAGES/searchbarplugin.mo share/locale/pa/LC_MESSAGES/uachangerplugin.mo share/locale/pa/LC_MESSAGES/webenginepart.mo share/locale/pl/LC_MESSAGES/akregator_konqplugin.mo share/locale/pl/LC_MESSAGES/autorefresh.mo share/locale/pl/LC_MESSAGES/babelfish.mo share/locale/pl/LC_MESSAGES/dirfilterplugin.mo share/locale/pl/LC_MESSAGES/fsview.mo share/locale/pl/LC_MESSAGES/imgalleryplugin.mo share/locale/pl/LC_MESSAGES/kcmbookmarks.mo share/locale/pl/LC_MESSAGES/kcmkonq.mo share/locale/pl/LC_MESSAGES/kcmkonqhtml.mo share/locale/pl/LC_MESSAGES/kcmperformance.mo share/locale/pl/LC_MESSAGES/kfmclient.mo share/locale/pl/LC_MESSAGES/kgetplugin.mo share/locale/pl/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/pl/LC_MESSAGES/khtmltts.mo share/locale/pl/LC_MESSAGES/kio6_bookmarks.mo share/locale/pl/LC_MESSAGES/konqsidebar.mo share/locale/pl/LC_MESSAGES/konqueror.mo share/locale/pl/LC_MESSAGES/kshellcmdplugin.mo share/locale/pl/LC_MESSAGES/libkonq.mo share/locale/pl/LC_MESSAGES/searchbarplugin.mo share/locale/pl/LC_MESSAGES/temporarysavedir.mo share/locale/pl/LC_MESSAGES/uachangerplugin.mo share/locale/pl/LC_MESSAGES/webarchiver.mo share/locale/pl/LC_MESSAGES/webenginepart.mo share/locale/pt/LC_MESSAGES/akregator_konqplugin.mo share/locale/pt/LC_MESSAGES/autorefresh.mo share/locale/pt/LC_MESSAGES/babelfish.mo share/locale/pt/LC_MESSAGES/dirfilterplugin.mo share/locale/pt/LC_MESSAGES/fsview.mo share/locale/pt/LC_MESSAGES/imgalleryplugin.mo share/locale/pt/LC_MESSAGES/kcmbookmarks.mo share/locale/pt/LC_MESSAGES/kcmkonq.mo share/locale/pt/LC_MESSAGES/kcmkonqhtml.mo share/locale/pt/LC_MESSAGES/kcmperformance.mo share/locale/pt/LC_MESSAGES/kfmclient.mo share/locale/pt/LC_MESSAGES/kgetplugin.mo share/locale/pt/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/pt/LC_MESSAGES/khtmltts.mo share/locale/pt/LC_MESSAGES/kio6_bookmarks.mo share/locale/pt/LC_MESSAGES/konqueror.mo share/locale/pt/LC_MESSAGES/kshellcmdplugin.mo share/locale/pt/LC_MESSAGES/libkonq.mo share/locale/pt/LC_MESSAGES/searchbarplugin.mo share/locale/pt/LC_MESSAGES/uachangerplugin.mo share/locale/pt/LC_MESSAGES/webarchiver.mo share/locale/pt/LC_MESSAGES/webenginepart.mo share/locale/pt_BR/LC_MESSAGES/akregator_konqplugin.mo share/locale/pt_BR/LC_MESSAGES/autorefresh.mo share/locale/pt_BR/LC_MESSAGES/babelfish.mo share/locale/pt_BR/LC_MESSAGES/dirfilterplugin.mo share/locale/pt_BR/LC_MESSAGES/fsview.mo share/locale/pt_BR/LC_MESSAGES/imgalleryplugin.mo share/locale/pt_BR/LC_MESSAGES/kcmbookmarks.mo share/locale/pt_BR/LC_MESSAGES/kcmkonq.mo share/locale/pt_BR/LC_MESSAGES/kcmkonqhtml.mo share/locale/pt_BR/LC_MESSAGES/kcmperformance.mo share/locale/pt_BR/LC_MESSAGES/kfmclient.mo share/locale/pt_BR/LC_MESSAGES/kgetplugin.mo share/locale/pt_BR/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/pt_BR/LC_MESSAGES/khtmltts.mo share/locale/pt_BR/LC_MESSAGES/kio6_bookmarks.mo +share/locale/pt_BR/LC_MESSAGES/konqsidebar.mo share/locale/pt_BR/LC_MESSAGES/konqueror.mo share/locale/pt_BR/LC_MESSAGES/kshellcmdplugin.mo share/locale/pt_BR/LC_MESSAGES/libkonq.mo share/locale/pt_BR/LC_MESSAGES/searchbarplugin.mo +share/locale/pt_BR/LC_MESSAGES/temporarysavedir.mo share/locale/pt_BR/LC_MESSAGES/uachangerplugin.mo share/locale/pt_BR/LC_MESSAGES/webarchiver.mo share/locale/pt_BR/LC_MESSAGES/webenginepart.mo share/locale/ro/LC_MESSAGES/akregator_konqplugin.mo share/locale/ro/LC_MESSAGES/autorefresh.mo share/locale/ro/LC_MESSAGES/babelfish.mo share/locale/ro/LC_MESSAGES/dirfilterplugin.mo share/locale/ro/LC_MESSAGES/fsview.mo share/locale/ro/LC_MESSAGES/imgalleryplugin.mo share/locale/ro/LC_MESSAGES/kcmbookmarks.mo share/locale/ro/LC_MESSAGES/kcmkonq.mo share/locale/ro/LC_MESSAGES/kcmkonqhtml.mo share/locale/ro/LC_MESSAGES/kcmperformance.mo share/locale/ro/LC_MESSAGES/kfmclient.mo share/locale/ro/LC_MESSAGES/kgetplugin.mo share/locale/ro/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/ro/LC_MESSAGES/khtmltts.mo share/locale/ro/LC_MESSAGES/kio6_bookmarks.mo share/locale/ro/LC_MESSAGES/konqueror.mo share/locale/ro/LC_MESSAGES/kshellcmdplugin.mo share/locale/ro/LC_MESSAGES/libkonq.mo share/locale/ro/LC_MESSAGES/searchbarplugin.mo share/locale/ro/LC_MESSAGES/uachangerplugin.mo share/locale/ro/LC_MESSAGES/webenginepart.mo share/locale/ru/LC_MESSAGES/akregator_konqplugin.mo share/locale/ru/LC_MESSAGES/autorefresh.mo share/locale/ru/LC_MESSAGES/babelfish.mo share/locale/ru/LC_MESSAGES/dirfilterplugin.mo share/locale/ru/LC_MESSAGES/fsview.mo share/locale/ru/LC_MESSAGES/imgalleryplugin.mo share/locale/ru/LC_MESSAGES/kcmbookmarks.mo share/locale/ru/LC_MESSAGES/kcmkonq.mo share/locale/ru/LC_MESSAGES/kcmkonqhtml.mo share/locale/ru/LC_MESSAGES/kcmperformance.mo share/locale/ru/LC_MESSAGES/kfmclient.mo share/locale/ru/LC_MESSAGES/kgetplugin.mo share/locale/ru/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/ru/LC_MESSAGES/khtmltts.mo share/locale/ru/LC_MESSAGES/kio6_bookmarks.mo share/locale/ru/LC_MESSAGES/konqueror.mo share/locale/ru/LC_MESSAGES/kshellcmdplugin.mo share/locale/ru/LC_MESSAGES/libkonq.mo share/locale/ru/LC_MESSAGES/searchbarplugin.mo share/locale/ru/LC_MESSAGES/uachangerplugin.mo share/locale/ru/LC_MESSAGES/webarchiver.mo share/locale/ru/LC_MESSAGES/webenginepart.mo share/locale/sa/LC_MESSAGES/akregator_konqplugin.mo share/locale/sa/LC_MESSAGES/autorefresh.mo share/locale/sa/LC_MESSAGES/babelfish.mo share/locale/sa/LC_MESSAGES/dirfilterplugin.mo share/locale/sa/LC_MESSAGES/fsview.mo share/locale/sa/LC_MESSAGES/imgalleryplugin.mo share/locale/sa/LC_MESSAGES/kcmbookmarks.mo share/locale/sa/LC_MESSAGES/kcmkonq.mo share/locale/sa/LC_MESSAGES/kcmkonqhtml.mo share/locale/sa/LC_MESSAGES/kcmperformance.mo share/locale/sa/LC_MESSAGES/kfmclient.mo share/locale/sa/LC_MESSAGES/kgetplugin.mo share/locale/sa/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/sa/LC_MESSAGES/khtmltts.mo share/locale/sa/LC_MESSAGES/kio6_bookmarks.mo share/locale/sa/LC_MESSAGES/konqueror.mo share/locale/sa/LC_MESSAGES/kshellcmdplugin.mo share/locale/sa/LC_MESSAGES/libkonq.mo share/locale/sa/LC_MESSAGES/searchbarplugin.mo share/locale/sa/LC_MESSAGES/uachangerplugin.mo share/locale/sa/LC_MESSAGES/webarchiver.mo share/locale/sa/LC_MESSAGES/webenginepart.mo share/locale/se/LC_MESSAGES/akregator_konqplugin.mo share/locale/se/LC_MESSAGES/autorefresh.mo share/locale/se/LC_MESSAGES/babelfish.mo share/locale/se/LC_MESSAGES/dirfilterplugin.mo share/locale/se/LC_MESSAGES/fsview.mo share/locale/se/LC_MESSAGES/imgalleryplugin.mo share/locale/se/LC_MESSAGES/kcmbookmarks.mo share/locale/se/LC_MESSAGES/kcmkonq.mo share/locale/se/LC_MESSAGES/kcmkonqhtml.mo share/locale/se/LC_MESSAGES/kcmperformance.mo share/locale/se/LC_MESSAGES/kfmclient.mo share/locale/se/LC_MESSAGES/kgetplugin.mo share/locale/se/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/se/LC_MESSAGES/khtmltts.mo share/locale/se/LC_MESSAGES/konqueror.mo share/locale/se/LC_MESSAGES/kshellcmdplugin.mo share/locale/se/LC_MESSAGES/libkonq.mo share/locale/se/LC_MESSAGES/searchbarplugin.mo share/locale/se/LC_MESSAGES/uachangerplugin.mo share/locale/si/LC_MESSAGES/fsview.mo share/locale/si/LC_MESSAGES/kcmbookmarks.mo share/locale/si/LC_MESSAGES/kcmkonq.mo share/locale/si/LC_MESSAGES/kcmkonqhtml.mo share/locale/si/LC_MESSAGES/kcmperformance.mo share/locale/si/LC_MESSAGES/kfmclient.mo share/locale/si/LC_MESSAGES/kgetplugin.mo share/locale/si/LC_MESSAGES/khtmltts.mo share/locale/si/LC_MESSAGES/kio6_bookmarks.mo share/locale/si/LC_MESSAGES/konqueror.mo share/locale/si/LC_MESSAGES/kshellcmdplugin.mo share/locale/si/LC_MESSAGES/libkonq.mo share/locale/sk/LC_MESSAGES/akregator_konqplugin.mo share/locale/sk/LC_MESSAGES/autorefresh.mo share/locale/sk/LC_MESSAGES/babelfish.mo share/locale/sk/LC_MESSAGES/dirfilterplugin.mo share/locale/sk/LC_MESSAGES/fsview.mo share/locale/sk/LC_MESSAGES/imgalleryplugin.mo share/locale/sk/LC_MESSAGES/kcmbookmarks.mo share/locale/sk/LC_MESSAGES/kcmkonq.mo share/locale/sk/LC_MESSAGES/kcmkonqhtml.mo share/locale/sk/LC_MESSAGES/kcmperformance.mo share/locale/sk/LC_MESSAGES/kfmclient.mo share/locale/sk/LC_MESSAGES/kgetplugin.mo share/locale/sk/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/sk/LC_MESSAGES/khtmltts.mo share/locale/sk/LC_MESSAGES/kio6_bookmarks.mo share/locale/sk/LC_MESSAGES/konqueror.mo share/locale/sk/LC_MESSAGES/kshellcmdplugin.mo share/locale/sk/LC_MESSAGES/libkonq.mo share/locale/sk/LC_MESSAGES/searchbarplugin.mo share/locale/sk/LC_MESSAGES/uachangerplugin.mo share/locale/sk/LC_MESSAGES/webarchiver.mo share/locale/sk/LC_MESSAGES/webenginepart.mo share/locale/sl/LC_MESSAGES/akregator_konqplugin.mo share/locale/sl/LC_MESSAGES/autorefresh.mo share/locale/sl/LC_MESSAGES/babelfish.mo share/locale/sl/LC_MESSAGES/dirfilterplugin.mo share/locale/sl/LC_MESSAGES/fsview.mo share/locale/sl/LC_MESSAGES/imgalleryplugin.mo share/locale/sl/LC_MESSAGES/kcmbookmarks.mo share/locale/sl/LC_MESSAGES/kcmkonq.mo share/locale/sl/LC_MESSAGES/kcmkonqhtml.mo share/locale/sl/LC_MESSAGES/kcmperformance.mo share/locale/sl/LC_MESSAGES/kfmclient.mo share/locale/sl/LC_MESSAGES/kgetplugin.mo share/locale/sl/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/sl/LC_MESSAGES/khtmltts.mo share/locale/sl/LC_MESSAGES/kio6_bookmarks.mo share/locale/sl/LC_MESSAGES/konqsidebar.mo share/locale/sl/LC_MESSAGES/konqueror.mo share/locale/sl/LC_MESSAGES/kshellcmdplugin.mo share/locale/sl/LC_MESSAGES/libkonq.mo share/locale/sl/LC_MESSAGES/searchbarplugin.mo share/locale/sl/LC_MESSAGES/temporarysavedir.mo share/locale/sl/LC_MESSAGES/uachangerplugin.mo share/locale/sl/LC_MESSAGES/webarchiver.mo share/locale/sl/LC_MESSAGES/webenginepart.mo share/locale/sq/LC_MESSAGES/akregator_konqplugin.mo share/locale/sq/LC_MESSAGES/autorefresh.mo share/locale/sq/LC_MESSAGES/babelfish.mo share/locale/sq/LC_MESSAGES/dirfilterplugin.mo share/locale/sq/LC_MESSAGES/fsview.mo share/locale/sq/LC_MESSAGES/imgalleryplugin.mo share/locale/sq/LC_MESSAGES/kcmbookmarks.mo share/locale/sq/LC_MESSAGES/kcmkonq.mo share/locale/sq/LC_MESSAGES/kcmkonqhtml.mo share/locale/sq/LC_MESSAGES/kcmperformance.mo share/locale/sq/LC_MESSAGES/kfmclient.mo share/locale/sq/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/sq/LC_MESSAGES/khtmltts.mo share/locale/sq/LC_MESSAGES/kio6_bookmarks.mo share/locale/sq/LC_MESSAGES/konqueror.mo share/locale/sq/LC_MESSAGES/libkonq.mo share/locale/sq/LC_MESSAGES/searchbarplugin.mo share/locale/sq/LC_MESSAGES/uachangerplugin.mo share/locale/sr/LC_MESSAGES/akregator_konqplugin.mo share/locale/sr/LC_MESSAGES/autorefresh.mo share/locale/sr/LC_MESSAGES/babelfish.mo share/locale/sr/LC_MESSAGES/dirfilterplugin.mo share/locale/sr/LC_MESSAGES/fsview.mo share/locale/sr/LC_MESSAGES/imgalleryplugin.mo share/locale/sr/LC_MESSAGES/kcmbookmarks.mo share/locale/sr/LC_MESSAGES/kcmkonq.mo share/locale/sr/LC_MESSAGES/kcmkonqhtml.mo share/locale/sr/LC_MESSAGES/kcmperformance.mo share/locale/sr/LC_MESSAGES/kfmclient.mo share/locale/sr/LC_MESSAGES/kgetplugin.mo share/locale/sr/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/sr/LC_MESSAGES/khtmltts.mo share/locale/sr/LC_MESSAGES/kio6_bookmarks.mo share/locale/sr/LC_MESSAGES/konqueror.mo share/locale/sr/LC_MESSAGES/kshellcmdplugin.mo share/locale/sr/LC_MESSAGES/libkonq.mo share/locale/sr/LC_MESSAGES/searchbarplugin.mo share/locale/sr/LC_MESSAGES/uachangerplugin.mo share/locale/sr/LC_MESSAGES/webenginepart.mo share/locale/sr@ijekavian/LC_MESSAGES/akregator_konqplugin.mo share/locale/sr@ijekavian/LC_MESSAGES/autorefresh.mo share/locale/sr@ijekavian/LC_MESSAGES/babelfish.mo share/locale/sr@ijekavian/LC_MESSAGES/dirfilterplugin.mo share/locale/sr@ijekavian/LC_MESSAGES/fsview.mo share/locale/sr@ijekavian/LC_MESSAGES/imgalleryplugin.mo share/locale/sr@ijekavian/LC_MESSAGES/kcmbookmarks.mo share/locale/sr@ijekavian/LC_MESSAGES/kcmkonq.mo share/locale/sr@ijekavian/LC_MESSAGES/kcmkonqhtml.mo share/locale/sr@ijekavian/LC_MESSAGES/kcmperformance.mo share/locale/sr@ijekavian/LC_MESSAGES/kfmclient.mo share/locale/sr@ijekavian/LC_MESSAGES/kgetplugin.mo share/locale/sr@ijekavian/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/sr@ijekavian/LC_MESSAGES/khtmltts.mo share/locale/sr@ijekavian/LC_MESSAGES/kio6_bookmarks.mo share/locale/sr@ijekavian/LC_MESSAGES/konqueror.mo share/locale/sr@ijekavian/LC_MESSAGES/kshellcmdplugin.mo share/locale/sr@ijekavian/LC_MESSAGES/libkonq.mo share/locale/sr@ijekavian/LC_MESSAGES/searchbarplugin.mo share/locale/sr@ijekavian/LC_MESSAGES/uachangerplugin.mo share/locale/sr@ijekavian/LC_MESSAGES/webenginepart.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/akregator_konqplugin.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/autorefresh.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/babelfish.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/dirfilterplugin.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/fsview.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/imgalleryplugin.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kcmbookmarks.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kcmkonq.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kcmkonqhtml.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kcmperformance.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kfmclient.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kgetplugin.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/khtmltts.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kio6_bookmarks.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/konqueror.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kshellcmdplugin.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/libkonq.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/searchbarplugin.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/uachangerplugin.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/webenginepart.mo share/locale/sr@latin/LC_MESSAGES/akregator_konqplugin.mo share/locale/sr@latin/LC_MESSAGES/autorefresh.mo share/locale/sr@latin/LC_MESSAGES/babelfish.mo share/locale/sr@latin/LC_MESSAGES/dirfilterplugin.mo share/locale/sr@latin/LC_MESSAGES/fsview.mo share/locale/sr@latin/LC_MESSAGES/imgalleryplugin.mo share/locale/sr@latin/LC_MESSAGES/kcmbookmarks.mo share/locale/sr@latin/LC_MESSAGES/kcmkonq.mo share/locale/sr@latin/LC_MESSAGES/kcmkonqhtml.mo share/locale/sr@latin/LC_MESSAGES/kcmperformance.mo share/locale/sr@latin/LC_MESSAGES/kfmclient.mo share/locale/sr@latin/LC_MESSAGES/kgetplugin.mo share/locale/sr@latin/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/sr@latin/LC_MESSAGES/khtmltts.mo share/locale/sr@latin/LC_MESSAGES/kio6_bookmarks.mo share/locale/sr@latin/LC_MESSAGES/konqueror.mo share/locale/sr@latin/LC_MESSAGES/kshellcmdplugin.mo share/locale/sr@latin/LC_MESSAGES/libkonq.mo share/locale/sr@latin/LC_MESSAGES/searchbarplugin.mo share/locale/sr@latin/LC_MESSAGES/uachangerplugin.mo share/locale/sr@latin/LC_MESSAGES/webenginepart.mo share/locale/sv/LC_MESSAGES/akregator_konqplugin.mo share/locale/sv/LC_MESSAGES/autorefresh.mo share/locale/sv/LC_MESSAGES/babelfish.mo share/locale/sv/LC_MESSAGES/dirfilterplugin.mo share/locale/sv/LC_MESSAGES/fsview.mo share/locale/sv/LC_MESSAGES/imgalleryplugin.mo share/locale/sv/LC_MESSAGES/kcmbookmarks.mo share/locale/sv/LC_MESSAGES/kcmkonq.mo share/locale/sv/LC_MESSAGES/kcmkonqhtml.mo share/locale/sv/LC_MESSAGES/kcmperformance.mo share/locale/sv/LC_MESSAGES/kfmclient.mo share/locale/sv/LC_MESSAGES/kgetplugin.mo share/locale/sv/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/sv/LC_MESSAGES/khtmltts.mo share/locale/sv/LC_MESSAGES/kio6_bookmarks.mo share/locale/sv/LC_MESSAGES/konqsidebar.mo share/locale/sv/LC_MESSAGES/konqueror.mo share/locale/sv/LC_MESSAGES/kshellcmdplugin.mo share/locale/sv/LC_MESSAGES/libkonq.mo share/locale/sv/LC_MESSAGES/searchbarplugin.mo share/locale/sv/LC_MESSAGES/temporarysavedir.mo share/locale/sv/LC_MESSAGES/uachangerplugin.mo share/locale/sv/LC_MESSAGES/webarchiver.mo share/locale/sv/LC_MESSAGES/webenginepart.mo share/locale/ta/LC_MESSAGES/akregator_konqplugin.mo share/locale/ta/LC_MESSAGES/autorefresh.mo share/locale/ta/LC_MESSAGES/babelfish.mo share/locale/ta/LC_MESSAGES/dirfilterplugin.mo share/locale/ta/LC_MESSAGES/fsview.mo share/locale/ta/LC_MESSAGES/imgalleryplugin.mo share/locale/ta/LC_MESSAGES/kcmbookmarks.mo share/locale/ta/LC_MESSAGES/kcmkonq.mo share/locale/ta/LC_MESSAGES/kcmkonqhtml.mo share/locale/ta/LC_MESSAGES/kcmperformance.mo share/locale/ta/LC_MESSAGES/kfmclient.mo share/locale/ta/LC_MESSAGES/kgetplugin.mo share/locale/ta/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/ta/LC_MESSAGES/khtmltts.mo share/locale/ta/LC_MESSAGES/kio6_bookmarks.mo share/locale/ta/LC_MESSAGES/konqueror.mo share/locale/ta/LC_MESSAGES/kshellcmdplugin.mo share/locale/ta/LC_MESSAGES/libkonq.mo share/locale/ta/LC_MESSAGES/searchbarplugin.mo share/locale/ta/LC_MESSAGES/uachangerplugin.mo share/locale/te/LC_MESSAGES/kcmbookmarks.mo share/locale/te/LC_MESSAGES/kcmkonq.mo share/locale/te/LC_MESSAGES/kcmkonqhtml.mo share/locale/te/LC_MESSAGES/kcmperformance.mo share/locale/te/LC_MESSAGES/kfmclient.mo share/locale/te/LC_MESSAGES/khtmltts.mo share/locale/te/LC_MESSAGES/kio6_bookmarks.mo share/locale/te/LC_MESSAGES/konqueror.mo share/locale/te/LC_MESSAGES/kshellcmdplugin.mo share/locale/te/LC_MESSAGES/libkonq.mo share/locale/tg/LC_MESSAGES/akregator_konqplugin.mo share/locale/tg/LC_MESSAGES/autorefresh.mo share/locale/tg/LC_MESSAGES/babelfish.mo share/locale/tg/LC_MESSAGES/dirfilterplugin.mo share/locale/tg/LC_MESSAGES/fsview.mo share/locale/tg/LC_MESSAGES/imgalleryplugin.mo share/locale/tg/LC_MESSAGES/kcmbookmarks.mo share/locale/tg/LC_MESSAGES/kcmkonq.mo share/locale/tg/LC_MESSAGES/kcmkonqhtml.mo share/locale/tg/LC_MESSAGES/kcmperformance.mo share/locale/tg/LC_MESSAGES/kfmclient.mo share/locale/tg/LC_MESSAGES/kgetplugin.mo share/locale/tg/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/tg/LC_MESSAGES/khtmltts.mo share/locale/tg/LC_MESSAGES/kio6_bookmarks.mo share/locale/tg/LC_MESSAGES/konqueror.mo share/locale/tg/LC_MESSAGES/kshellcmdplugin.mo share/locale/tg/LC_MESSAGES/libkonq.mo share/locale/tg/LC_MESSAGES/searchbarplugin.mo share/locale/tg/LC_MESSAGES/uachangerplugin.mo share/locale/tg/LC_MESSAGES/webenginepart.mo share/locale/th/LC_MESSAGES/akregator_konqplugin.mo share/locale/th/LC_MESSAGES/autorefresh.mo share/locale/th/LC_MESSAGES/babelfish.mo share/locale/th/LC_MESSAGES/dirfilterplugin.mo share/locale/th/LC_MESSAGES/fsview.mo share/locale/th/LC_MESSAGES/imgalleryplugin.mo share/locale/th/LC_MESSAGES/kcmbookmarks.mo share/locale/th/LC_MESSAGES/kcmkonq.mo share/locale/th/LC_MESSAGES/kcmkonqhtml.mo share/locale/th/LC_MESSAGES/kcmperformance.mo share/locale/th/LC_MESSAGES/kfmclient.mo share/locale/th/LC_MESSAGES/kgetplugin.mo share/locale/th/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/th/LC_MESSAGES/khtmltts.mo share/locale/th/LC_MESSAGES/kio6_bookmarks.mo share/locale/th/LC_MESSAGES/konqueror.mo share/locale/th/LC_MESSAGES/kshellcmdplugin.mo share/locale/th/LC_MESSAGES/libkonq.mo share/locale/th/LC_MESSAGES/searchbarplugin.mo share/locale/th/LC_MESSAGES/uachangerplugin.mo share/locale/th/LC_MESSAGES/webenginepart.mo share/locale/tr/LC_MESSAGES/akregator_konqplugin.mo share/locale/tr/LC_MESSAGES/autorefresh.mo share/locale/tr/LC_MESSAGES/babelfish.mo share/locale/tr/LC_MESSAGES/dirfilterplugin.mo share/locale/tr/LC_MESSAGES/fsview.mo share/locale/tr/LC_MESSAGES/imgalleryplugin.mo share/locale/tr/LC_MESSAGES/kcmbookmarks.mo share/locale/tr/LC_MESSAGES/kcmkonq.mo share/locale/tr/LC_MESSAGES/kcmkonqhtml.mo share/locale/tr/LC_MESSAGES/kcmperformance.mo share/locale/tr/LC_MESSAGES/kfmclient.mo share/locale/tr/LC_MESSAGES/kgetplugin.mo share/locale/tr/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/tr/LC_MESSAGES/khtmltts.mo share/locale/tr/LC_MESSAGES/kio6_bookmarks.mo share/locale/tr/LC_MESSAGES/konqsidebar.mo share/locale/tr/LC_MESSAGES/konqueror.mo share/locale/tr/LC_MESSAGES/kshellcmdplugin.mo share/locale/tr/LC_MESSAGES/libkonq.mo share/locale/tr/LC_MESSAGES/searchbarplugin.mo share/locale/tr/LC_MESSAGES/temporarysavedir.mo share/locale/tr/LC_MESSAGES/uachangerplugin.mo share/locale/tr/LC_MESSAGES/webarchiver.mo share/locale/tr/LC_MESSAGES/webenginepart.mo share/locale/ug/LC_MESSAGES/akregator_konqplugin.mo share/locale/ug/LC_MESSAGES/autorefresh.mo share/locale/ug/LC_MESSAGES/babelfish.mo share/locale/ug/LC_MESSAGES/dirfilterplugin.mo share/locale/ug/LC_MESSAGES/fsview.mo share/locale/ug/LC_MESSAGES/imgalleryplugin.mo share/locale/ug/LC_MESSAGES/kcmbookmarks.mo share/locale/ug/LC_MESSAGES/kcmkonq.mo share/locale/ug/LC_MESSAGES/kcmkonqhtml.mo share/locale/ug/LC_MESSAGES/kcmperformance.mo share/locale/ug/LC_MESSAGES/kfmclient.mo share/locale/ug/LC_MESSAGES/kgetplugin.mo share/locale/ug/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/ug/LC_MESSAGES/khtmltts.mo share/locale/ug/LC_MESSAGES/kio6_bookmarks.mo share/locale/ug/LC_MESSAGES/konqueror.mo share/locale/ug/LC_MESSAGES/kshellcmdplugin.mo share/locale/ug/LC_MESSAGES/libkonq.mo share/locale/ug/LC_MESSAGES/searchbarplugin.mo share/locale/ug/LC_MESSAGES/uachangerplugin.mo share/locale/ug/LC_MESSAGES/webenginepart.mo share/locale/uk/LC_MESSAGES/akregator_konqplugin.mo share/locale/uk/LC_MESSAGES/autorefresh.mo share/locale/uk/LC_MESSAGES/babelfish.mo share/locale/uk/LC_MESSAGES/dirfilterplugin.mo share/locale/uk/LC_MESSAGES/fsview.mo share/locale/uk/LC_MESSAGES/imgalleryplugin.mo share/locale/uk/LC_MESSAGES/kcmbookmarks.mo share/locale/uk/LC_MESSAGES/kcmkonq.mo share/locale/uk/LC_MESSAGES/kcmkonqhtml.mo share/locale/uk/LC_MESSAGES/kcmperformance.mo share/locale/uk/LC_MESSAGES/kfmclient.mo share/locale/uk/LC_MESSAGES/kgetplugin.mo share/locale/uk/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/uk/LC_MESSAGES/khtmltts.mo share/locale/uk/LC_MESSAGES/kio6_bookmarks.mo share/locale/uk/LC_MESSAGES/konqsidebar.mo share/locale/uk/LC_MESSAGES/konqueror.mo share/locale/uk/LC_MESSAGES/kshellcmdplugin.mo share/locale/uk/LC_MESSAGES/libkonq.mo share/locale/uk/LC_MESSAGES/searchbarplugin.mo share/locale/uk/LC_MESSAGES/temporarysavedir.mo share/locale/uk/LC_MESSAGES/uachangerplugin.mo share/locale/uk/LC_MESSAGES/webarchiver.mo share/locale/uk/LC_MESSAGES/webenginepart.mo share/locale/uz/LC_MESSAGES/akregator_konqplugin.mo share/locale/uz/LC_MESSAGES/autorefresh.mo share/locale/uz/LC_MESSAGES/babelfish.mo share/locale/uz/LC_MESSAGES/dirfilterplugin.mo share/locale/uz/LC_MESSAGES/fsview.mo share/locale/uz/LC_MESSAGES/imgalleryplugin.mo share/locale/uz/LC_MESSAGES/kcmbookmarks.mo share/locale/uz/LC_MESSAGES/kcmkonq.mo share/locale/uz/LC_MESSAGES/kcmkonqhtml.mo share/locale/uz/LC_MESSAGES/kcmperformance.mo share/locale/uz/LC_MESSAGES/kfmclient.mo share/locale/uz/LC_MESSAGES/kgetplugin.mo share/locale/uz/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/uz/LC_MESSAGES/konqueror.mo share/locale/uz/LC_MESSAGES/kshellcmdplugin.mo share/locale/uz/LC_MESSAGES/libkonq.mo share/locale/uz/LC_MESSAGES/searchbarplugin.mo share/locale/uz/LC_MESSAGES/uachangerplugin.mo share/locale/uz@cyrillic/LC_MESSAGES/akregator_konqplugin.mo share/locale/uz@cyrillic/LC_MESSAGES/autorefresh.mo share/locale/uz@cyrillic/LC_MESSAGES/babelfish.mo share/locale/uz@cyrillic/LC_MESSAGES/dirfilterplugin.mo share/locale/uz@cyrillic/LC_MESSAGES/fsview.mo share/locale/uz@cyrillic/LC_MESSAGES/imgalleryplugin.mo share/locale/uz@cyrillic/LC_MESSAGES/kcmbookmarks.mo share/locale/uz@cyrillic/LC_MESSAGES/kcmkonq.mo share/locale/uz@cyrillic/LC_MESSAGES/kcmkonqhtml.mo share/locale/uz@cyrillic/LC_MESSAGES/kcmperformance.mo share/locale/uz@cyrillic/LC_MESSAGES/kfmclient.mo share/locale/uz@cyrillic/LC_MESSAGES/kgetplugin.mo share/locale/uz@cyrillic/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/uz@cyrillic/LC_MESSAGES/konqueror.mo share/locale/uz@cyrillic/LC_MESSAGES/kshellcmdplugin.mo share/locale/uz@cyrillic/LC_MESSAGES/libkonq.mo share/locale/uz@cyrillic/LC_MESSAGES/searchbarplugin.mo share/locale/uz@cyrillic/LC_MESSAGES/uachangerplugin.mo share/locale/vi/LC_MESSAGES/akregator_konqplugin.mo share/locale/vi/LC_MESSAGES/autorefresh.mo share/locale/vi/LC_MESSAGES/babelfish.mo share/locale/vi/LC_MESSAGES/dirfilterplugin.mo share/locale/vi/LC_MESSAGES/fsview.mo share/locale/vi/LC_MESSAGES/imgalleryplugin.mo share/locale/vi/LC_MESSAGES/kcmbookmarks.mo share/locale/vi/LC_MESSAGES/kcmkonq.mo share/locale/vi/LC_MESSAGES/kcmkonqhtml.mo share/locale/vi/LC_MESSAGES/kcmperformance.mo share/locale/vi/LC_MESSAGES/kfmclient.mo share/locale/vi/LC_MESSAGES/kgetplugin.mo share/locale/vi/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/vi/LC_MESSAGES/khtmltts.mo share/locale/vi/LC_MESSAGES/kio6_bookmarks.mo share/locale/vi/LC_MESSAGES/konqueror.mo share/locale/vi/LC_MESSAGES/kshellcmdplugin.mo share/locale/vi/LC_MESSAGES/libkonq.mo share/locale/vi/LC_MESSAGES/searchbarplugin.mo share/locale/vi/LC_MESSAGES/uachangerplugin.mo share/locale/wa/LC_MESSAGES/akregator_konqplugin.mo share/locale/wa/LC_MESSAGES/autorefresh.mo share/locale/wa/LC_MESSAGES/babelfish.mo share/locale/wa/LC_MESSAGES/dirfilterplugin.mo share/locale/wa/LC_MESSAGES/fsview.mo share/locale/wa/LC_MESSAGES/imgalleryplugin.mo share/locale/wa/LC_MESSAGES/kcmbookmarks.mo share/locale/wa/LC_MESSAGES/kcmkonq.mo share/locale/wa/LC_MESSAGES/kcmkonqhtml.mo share/locale/wa/LC_MESSAGES/kcmperformance.mo share/locale/wa/LC_MESSAGES/kfmclient.mo share/locale/wa/LC_MESSAGES/kgetplugin.mo share/locale/wa/LC_MESSAGES/khtmltts.mo share/locale/wa/LC_MESSAGES/kio6_bookmarks.mo share/locale/wa/LC_MESSAGES/konqueror.mo share/locale/wa/LC_MESSAGES/kshellcmdplugin.mo share/locale/wa/LC_MESSAGES/libkonq.mo share/locale/wa/LC_MESSAGES/uachangerplugin.mo share/locale/xh/LC_MESSAGES/babelfish.mo share/locale/xh/LC_MESSAGES/dirfilterplugin.mo share/locale/xh/LC_MESSAGES/imgalleryplugin.mo share/locale/xh/LC_MESSAGES/kcmbookmarks.mo share/locale/xh/LC_MESSAGES/kcmkonq.mo share/locale/xh/LC_MESSAGES/kcmkonqhtml.mo share/locale/xh/LC_MESSAGES/kfmclient.mo share/locale/xh/LC_MESSAGES/kgetplugin.mo share/locale/xh/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/xh/LC_MESSAGES/konqueror.mo share/locale/xh/LC_MESSAGES/kshellcmdplugin.mo share/locale/xh/LC_MESSAGES/libkonq.mo share/locale/xh/LC_MESSAGES/uachangerplugin.mo share/locale/zh_CN/LC_MESSAGES/akregator_konqplugin.mo share/locale/zh_CN/LC_MESSAGES/autorefresh.mo share/locale/zh_CN/LC_MESSAGES/babelfish.mo share/locale/zh_CN/LC_MESSAGES/dirfilterplugin.mo share/locale/zh_CN/LC_MESSAGES/fsview.mo share/locale/zh_CN/LC_MESSAGES/imgalleryplugin.mo share/locale/zh_CN/LC_MESSAGES/kcmbookmarks.mo share/locale/zh_CN/LC_MESSAGES/kcmkonq.mo share/locale/zh_CN/LC_MESSAGES/kcmkonqhtml.mo share/locale/zh_CN/LC_MESSAGES/kcmperformance.mo share/locale/zh_CN/LC_MESSAGES/kfmclient.mo share/locale/zh_CN/LC_MESSAGES/kgetplugin.mo share/locale/zh_CN/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/zh_CN/LC_MESSAGES/khtmltts.mo share/locale/zh_CN/LC_MESSAGES/kio6_bookmarks.mo share/locale/zh_CN/LC_MESSAGES/konqsidebar.mo share/locale/zh_CN/LC_MESSAGES/konqueror.mo share/locale/zh_CN/LC_MESSAGES/kshellcmdplugin.mo share/locale/zh_CN/LC_MESSAGES/libkonq.mo share/locale/zh_CN/LC_MESSAGES/searchbarplugin.mo share/locale/zh_CN/LC_MESSAGES/temporarysavedir.mo share/locale/zh_CN/LC_MESSAGES/uachangerplugin.mo share/locale/zh_CN/LC_MESSAGES/webarchiver.mo share/locale/zh_CN/LC_MESSAGES/webenginepart.mo share/locale/zh_HK/LC_MESSAGES/kgetplugin.mo share/locale/zh_TW/LC_MESSAGES/akregator_konqplugin.mo share/locale/zh_TW/LC_MESSAGES/autorefresh.mo share/locale/zh_TW/LC_MESSAGES/babelfish.mo share/locale/zh_TW/LC_MESSAGES/dirfilterplugin.mo share/locale/zh_TW/LC_MESSAGES/fsview.mo share/locale/zh_TW/LC_MESSAGES/imgalleryplugin.mo share/locale/zh_TW/LC_MESSAGES/kcmbookmarks.mo share/locale/zh_TW/LC_MESSAGES/kcmkonq.mo share/locale/zh_TW/LC_MESSAGES/kcmkonqhtml.mo share/locale/zh_TW/LC_MESSAGES/kcmperformance.mo share/locale/zh_TW/LC_MESSAGES/kfmclient.mo share/locale/zh_TW/LC_MESSAGES/kgetplugin.mo share/locale/zh_TW/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/zh_TW/LC_MESSAGES/khtmltts.mo share/locale/zh_TW/LC_MESSAGES/kio6_bookmarks.mo share/locale/zh_TW/LC_MESSAGES/konqsidebar.mo share/locale/zh_TW/LC_MESSAGES/konqueror.mo share/locale/zh_TW/LC_MESSAGES/kshellcmdplugin.mo share/locale/zh_TW/LC_MESSAGES/libkonq.mo share/locale/zh_TW/LC_MESSAGES/searchbarplugin.mo share/locale/zh_TW/LC_MESSAGES/temporarysavedir.mo share/locale/zh_TW/LC_MESSAGES/uachangerplugin.mo share/locale/zh_TW/LC_MESSAGES/webarchiver.mo share/locale/zh_TW/LC_MESSAGES/webenginepart.mo share/metainfo/org.kde.konqueror.appdata.xml share/qlogging-categories6/akregatorplugin.categories share/qlogging-categories6/fsview.categories share/qlogging-categories6/konqueror.categories share/webenginepart/error.html diff --git a/x11/konsole/distinfo b/x11/konsole/distinfo index 9a14d283d960..6873b77cb379 100644 --- a/x11/konsole/distinfo +++ b/x11/konsole/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1751381712 -SHA256 (KDE/release-service/25.04.3/konsole-25.04.3.tar.xz) = 2f6833e22a71f4191e7ee45f3dce37e22a3be36d0fa592fdfffce207acac3939 -SIZE (KDE/release-service/25.04.3/konsole-25.04.3.tar.xz) = 1848092 +TIMESTAMP = 1754646614 +SHA256 (KDE/release-service/25.08.0/konsole-25.08.0.tar.xz) = c880bd2c829437a142abaf4f97ebc384c9f2c19f31cc23918c49100727927450 +SIZE (KDE/release-service/25.08.0/konsole-25.08.0.tar.xz) = 1849536 diff --git a/x11/konsole/pkg-plist b/x11/konsole/pkg-plist index 71e29f0c4ea9..dbb321a0d622 100644 --- a/x11/konsole/pkg-plist +++ b/x11/konsole/pkg-plist @@ -1,112 +1,108 @@ bin/konsole bin/konsoleprofile -lib/kconf_update_bin/konsole_globalaccel -lib/kconf_update_bin/konsole_show_menubar lib/libkonsoleapp.so.%%KDE_APPLICATIONS_VERSION%% lib/libkonsoleprivate.so.%%KDE_APPLICATIONS_VERSION%% %%QT_PLUGINDIR%%/kf6/parts/konsolepart.so %%QT_PLUGINDIR%%/konsoleplugins/konsole_quickcommandsplugin.so %%QT_PLUGINDIR%%/konsoleplugins/konsole_sshmanagerplugin.so share/applications/org.kde.konsole.desktop -share/kconf_update/konsole.upd -share/kconf_update/konsole_add_hamburgermenu_to_toolbar.sh share/kglobalaccel/org.kde.konsole.desktop share/kio/servicemenus/konsolerun.desktop share/knotifications6/konsole.notifyrc share/locale/af/LC_MESSAGES/konsole.mo share/locale/ar/LC_MESSAGES/konsole.mo share/locale/ast/LC_MESSAGES/konsole.mo share/locale/az/LC_MESSAGES/konsole.mo share/locale/be/LC_MESSAGES/konsole.mo share/locale/be@latin/LC_MESSAGES/konsole.mo share/locale/bg/LC_MESSAGES/konsole.mo share/locale/bn/LC_MESSAGES/konsole.mo share/locale/bn_IN/LC_MESSAGES/konsole.mo share/locale/br/LC_MESSAGES/konsole.mo share/locale/bs/LC_MESSAGES/konsole.mo share/locale/ca/LC_MESSAGES/konsole.mo share/locale/ca@valencia/LC_MESSAGES/konsole.mo share/locale/cs/LC_MESSAGES/konsole.mo share/locale/csb/LC_MESSAGES/konsole.mo share/locale/cy/LC_MESSAGES/konsole.mo share/locale/da/LC_MESSAGES/konsole.mo share/locale/de/LC_MESSAGES/konsole.mo share/locale/el/LC_MESSAGES/konsole.mo share/locale/en_GB/LC_MESSAGES/konsole.mo share/locale/eo/LC_MESSAGES/konsole.mo share/locale/es/LC_MESSAGES/konsole.mo share/locale/et/LC_MESSAGES/konsole.mo share/locale/eu/LC_MESSAGES/konsole.mo share/locale/fa/LC_MESSAGES/konsole.mo share/locale/fi/LC_MESSAGES/konsole.mo share/locale/fr/LC_MESSAGES/konsole.mo share/locale/fy/LC_MESSAGES/konsole.mo share/locale/ga/LC_MESSAGES/konsole.mo share/locale/gl/LC_MESSAGES/konsole.mo share/locale/gu/LC_MESSAGES/konsole.mo share/locale/he/LC_MESSAGES/konsole.mo share/locale/hi/LC_MESSAGES/konsole.mo share/locale/hne/LC_MESSAGES/konsole.mo share/locale/hr/LC_MESSAGES/konsole.mo share/locale/hsb/LC_MESSAGES/konsole.mo share/locale/hu/LC_MESSAGES/konsole.mo share/locale/ia/LC_MESSAGES/konsole.mo share/locale/id/LC_MESSAGES/konsole.mo share/locale/ie/LC_MESSAGES/konsole.mo share/locale/is/LC_MESSAGES/konsole.mo share/locale/it/LC_MESSAGES/konsole.mo share/locale/ja/LC_MESSAGES/konsole.mo share/locale/ka/LC_MESSAGES/konsole.mo share/locale/kk/LC_MESSAGES/konsole.mo share/locale/km/LC_MESSAGES/konsole.mo share/locale/kn/LC_MESSAGES/konsole.mo share/locale/ko/LC_MESSAGES/konsole.mo share/locale/ku/LC_MESSAGES/konsole.mo share/locale/lt/LC_MESSAGES/konsole.mo share/locale/lv/LC_MESSAGES/konsole.mo share/locale/mai/LC_MESSAGES/konsole.mo share/locale/mk/LC_MESSAGES/konsole.mo share/locale/ml/LC_MESSAGES/konsole.mo share/locale/mr/LC_MESSAGES/konsole.mo share/locale/ms/LC_MESSAGES/konsole.mo share/locale/nb/LC_MESSAGES/konsole.mo share/locale/nds/LC_MESSAGES/konsole.mo share/locale/ne/LC_MESSAGES/konsole.mo share/locale/nl/LC_MESSAGES/konsole.mo share/locale/nn/LC_MESSAGES/konsole.mo share/locale/oc/LC_MESSAGES/konsole.mo share/locale/or/LC_MESSAGES/konsole.mo share/locale/pa/LC_MESSAGES/konsole.mo share/locale/pl/LC_MESSAGES/konsole.mo share/locale/pt/LC_MESSAGES/konsole.mo share/locale/pt_BR/LC_MESSAGES/konsole.mo share/locale/ro/LC_MESSAGES/konsole.mo share/locale/ru/LC_MESSAGES/konsole.mo share/locale/sa/LC_MESSAGES/konsole.mo share/locale/se/LC_MESSAGES/konsole.mo share/locale/si/LC_MESSAGES/konsole.mo share/locale/sk/LC_MESSAGES/konsole.mo share/locale/sl/LC_MESSAGES/konsole.mo share/locale/sq/LC_MESSAGES/konsole.mo share/locale/sr/LC_MESSAGES/konsole.mo share/locale/sr@ijekavian/LC_MESSAGES/konsole.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/konsole.mo share/locale/sr@latin/LC_MESSAGES/konsole.mo share/locale/sv/LC_MESSAGES/konsole.mo share/locale/ta/LC_MESSAGES/konsole.mo share/locale/te/LC_MESSAGES/konsole.mo share/locale/tg/LC_MESSAGES/konsole.mo share/locale/th/LC_MESSAGES/konsole.mo share/locale/tr/LC_MESSAGES/konsole.mo share/locale/ug/LC_MESSAGES/konsole.mo share/locale/uk/LC_MESSAGES/konsole.mo share/locale/uz/LC_MESSAGES/konsole.mo share/locale/uz@cyrillic/LC_MESSAGES/konsole.mo share/locale/vi/LC_MESSAGES/konsole.mo share/locale/wa/LC_MESSAGES/konsole.mo share/locale/xh/LC_MESSAGES/konsole.mo share/locale/zh_CN/LC_MESSAGES/konsole.mo share/locale/zh_TW/LC_MESSAGES/konsole.mo share/metainfo/org.kde.konsole.appdata.xml share/qlogging-categories6/konsole.categories share/zsh/site-functions/_konsole diff --git a/x11/yakuake/distinfo b/x11/yakuake/distinfo index 10f88136a57a..830bb8a0d9a6 100644 --- a/x11/yakuake/distinfo +++ b/x11/yakuake/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1751381714 -SHA256 (KDE/release-service/25.04.3/yakuake-25.04.3.tar.xz) = b7abf57ed8e68d17bedf51d42dca3cb6a26b316b830476fedcdb41cb359d6c03 -SIZE (KDE/release-service/25.04.3/yakuake-25.04.3.tar.xz) = 403984 +TIMESTAMP = 1754646616 +SHA256 (KDE/release-service/25.08.0/yakuake-25.08.0.tar.xz) = 22bbba6c978ee26b1b7433501c773fd1c3b65c4b95a0afc6c3798f09cc3b3b19 +SIZE (KDE/release-service/25.08.0/yakuake-25.08.0.tar.xz) = 403936