diff --git a/Mk/Uses/kde.mk b/Mk/Uses/kde.mk index 7327cd12d920..03ac4ddd5dd5 100644 --- a/Mk/Uses/kde.mk +++ b/Mk/Uses/kde.mk @@ -1,1061 +1,1061 @@ # Provides support for KDE and KF5-based ports. # # Feature: kde # Valid ARGS: 5 6 # # 5: Depend on KDE Frameworks 5 components and variables. # 6: Depend on KDE Frameworks 6 components and variables. # # Variables that can be set by a port: # # USE_KDE List of KF[56]/Plasma[56] components (other ports) that this # port depends on. # * foo:build Add a build-time dependency (BUILD_DEPENDS) # * foo:run Add a run-time dependency (RUN_DEPENDS) # * foo (default) Add both dependencies on component , or # a LIB_DEPENDS if applicable. # # To simplify the ports, also: # CATEGORIES If the port is part of one of the KDE Software distribution, # it can add, in addition to 'kde' one of the following: # kde-applications: part of applications release # kde-frameworks: part of frameworks release # kde-plasma: part of plasma release # this will then set default values for MASTER_SITES and DIST_SUBDIR # as well as CPE_VENDOR and LICENSE. # # option DOCS If the port is part of kde-applications (see CATEGORIES, # above) and has an option defined for DOCS then a dependency # for doctools:build is added. The option itself doesn't # have to do anything -- the dependency is always there. # # KDE_INVENT If the port does not have a regular release, and should # be fetched from KDE Invent (a GitLab instance) it can set # KDE_INVENT to 3 space-separated values: # * a full 40-character commit hash # * a category name inside KDE Invent # * a repository name inside KDE Invent # Default values for category and name are: # * the first item in CATEGORIES that is not "kde"; this # is useful when the FreeBSD ports category and the KDE # category are the same (which happens sometimes) # * PORTNAME, often the FreeBSD port name is the same # as the upstream name and it will not need to be specified. # Sometimes `KDE_INVENT=` will do and often # `KDE_INVENT= ` is enough. # # Setting KDE_INVENT is the equivalent of a handful of USE_GITLAB # and related settings. # # MAINTAINER: kde@FreeBSD.org .if !defined(_INCLUDE_USES_KDE_MK) _INCLUDE_USES_KDE_MK= yes _KDE_SUPPORTED= 5 6 . if empty(kde_ARGS) IGNORE= kde needs a version (${_KDE_SUPPORTED}) . endif . for ver in ${_KDE_SUPPORTED:O:u} . if ${kde_ARGS:M${ver}} . if !defined(_KDE_VERSION) _KDE_VERSION= ${ver} . else IGNORE?= cannot be installed: different KDE versions specified via kde:[${_KDE_SUPPORTED:S/ //g}] #' . endif . endif . endfor . if empty(_KDE_VERSION) IGNORE?= kde:[${_KDE_SUPPORTED:S/ //g}] needs an argument #' . else _KDE_RELNAME= KDE${_KDE_VERSION} # === VERSIONS OF THE DIFFERENT COMPONENTS ===================================== KDE_PLASMA_VERSION?= ${KDE_PLASMA${_KDE_VERSION}_VERSION} KDE_PLASMA_BRANCH?= ${KDE_PLASMA${_KDE_VERSION}_BRANCH} KDE_FRAMEWORKS_VERSION?= ${KDE_FRAMEWORKS${_KDE_VERSION}_VERSION} KDE_FRAMEWORKS_BRANCH?= ${KDE_FRAMEWORKS${_KDE_VERSION}_BRANCH} KDE_APPLICATIONS_BRANCH?= ${KDE_APPLICATIONS6_BRANCH} KDE_APPLICATIONS_VERSION?= ${KDE_APPLICATIONS6_VERSION} KDE_APPLICATIONS_SHLIB_VER?= ${KDE_APPLICATIONS6_SHLIB_VER} KDE_APPLICATIONS_SHLIB_G_VER?= ${KDE_APPLICATIONS6_SHLIB_G_VER} # Legacy KDE Plasma. KDE_PLASMA5_VERSION?= 5.27.12 KDE_PLASMA5_BRANCH?= stable # Current KDE Plasma desktop. KDE_PLASMA6_VERSION?= 6.5.0 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.19.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.08.1 -KDE_APPLICATIONS6_SHLIB_VER?= 6.5.1 +KDE_APPLICATIONS6_VERSION?= 25.08.2 +KDE_APPLICATIONS6_SHLIB_VER?= 6.5.2 # G as in KDE Gear, and as in "don't make the variable name longer than required". KDE_APPLICATIONS6_SHLIB_G_VER?= ${KDE_APPLICATIONS6_VERSION} KDE_APPLICATIONS6_BRANCH?= stable # 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 \ knighttime \ kpipewire kscreen kscreenlocker ksshaskpass \ ksystemstats kwallet-pam kwin kwin-x11 kwrited \ layer-shell-qt libkscreen libksysguard libplasma \ milou ocean-sound-theme oxygen oxygen-sounds \ plasma-browser-integration plasma-desktop \ plasma-disks plasma-integration plasma-pa \ plasma-sdk plasma-workspace \ plasma-workspace-wallpapers plasma5support \ polkit-kde-agent-1 powerdevil print-manager \ qqc2-breeze-style sddm-kcm spectacle systemmonitor \ systemsettings wayland xdg-desktop-portal-kde _USE_PLASMA_ALL= ${_USE_PLASMA${_KDE_VERSION}_ALL} # List of frequently used components of the KDE Gears distribution. _USE_GEAR5_ALL= libkdcraw _USE_GEAR6_ALL= baloo-widgets 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-knighttime_PORT= sysutils/plasma${_KDE_VERSION}-knighttime kde-knighttime_LIB= libKNightTime.so kde-kscreen_PORT= x11/plasma${_KDE_VERSION}-kscreen kde-kscreen_PATH= ${KDE_PREFIX}/bin/kscreen-console kde-kscreenlocker_PORT= security/plasma${_KDE_VERSION}-kscreenlocker kde-kscreenlocker_LIB= libKScreenLocker.so kde-ksshaskpass_PORT= security/plasma${_KDE_VERSION}-ksshaskpass kde-ksshaskpass_PATH= ${KDE_PREFIX}/bin/ksshaskpass kde-ksystemstats_PORT= sysutils/plasma${_KDE_VERSION}-ksystemstats kde-ksystemstats_PATH= ${KDE_PREFIX}/bin/ksystemstats kde-kwallet-pam_PORT= security/plasma${_KDE_VERSION}-kwallet-pam kde-kwallet-pam_PATH= ${KDE_PREFIX}/lib/pam_kwallet5.so kde-kwin_PORT= x11-wm/plasma${_KDE_VERSION}-kwin kde-kwin_PATH= ${KDE_PREFIX}/bin/kwin_wayland kde-kwin-x11_PORT= x11-wm/plasma${_KDE_VERSION}-kwin-x11 kde-kwin-x11_PATH= ${KDE_PREFIX}/bin/kwin_x11 kde-kwrited_PORT= devel/plasma${_KDE_VERSION}-kwrited kde-kwrited_PATH= ${QT_PLUGINDIR}/kf${_KDE_VERSION}/kded/kwrited.so kde-libkscreen_PORT= x11/plasma${_KDE_VERSION}-libkscreen kde-libkscreen_LIB= libKF${_KDE_VERSION}Screen.so kde-libksysguard_PORT= sysutils/plasma${_KDE_VERSION}-libksysguard kde-libksysguard_LIB5= libksgrd.so kde-libksysguard_LIB6= libKSysGuardSystemStats.so kde-libksysguard_LIB= ${kde-libksysguard_LIB${_KDE_VERSION}} kde-milou_PORT= deskutils/plasma${_KDE_VERSION}-milou kde-milou_PATH= ${QT_QMLDIR}/org/kde/milou/libmilou.so kde-ocean-sound-theme_PORT= audio/plasma${_KDE_VERSION}-ocean-sound-theme kde-ocean-sound-theme_PATH= ${KDE_PREFIX}/share/sounds/ocean/index.theme kde-ocean-sound-theme_TYPE= run kde-oxygen_PORT= x11-themes/plasma${_KDE_VERSION}-oxygen kde-oxygen_PATH= ${QT_PLUGINDIR}/kstyle_config/kstyle_oxygen_config.so kde-plasma-browser-integration_PORT= www/plasma${_KDE_VERSION}-plasma-browser-integration kde-plasma-browser-integration_PATH= ${KDE_PREFIX}/bin/plasma-browser-integration-host kde-plasma-desktop_PORT= x11/plasma${_KDE_VERSION}-plasma-desktop kde-plasma-desktop_PATH= ${KDE_PREFIX}/bin/kaccess kde-plasma-disks_PORT= sysutils/plasma${_KDE_VERSION}-plasma-disks kde-plasma-disks_PATH= ${KDE_PREFIX}/lib/libexec/kf6/kauth/kded-smart-helper kde-plasma-integration_PORT= x11/plasma${_KDE_VERSION}-plasma-integration kde-plasma-integration_PATH= ${QT_PLUGINDIR}/platformthemes/KDEPlasmaPlatformTheme6.so kde-plasma-pa_PORT= audio/plasma${_KDE_VERSION}-plasma-pa kde-plasma-pa_PATH= ${QT_PLUGINDIR}/plasma/kcms/systemsettings/kcm_pulseaudio.so kde-plasma-sdk_PORT= devel/plasma${_KDE_VERSION}-plasma-sdk kde-plasma-sdk_PATH= ${KDE_PREFIX}/bin/plasmoidviewer kde-plasma-workspace_PORT= x11/plasma${_KDE_VERSION}-plasma-workspace kde-plasma-workspace_LIB= libkworkspace${_KDE_VERSION}.so kde-plasma-workspace-wallpapers_PORT= x11-themes/plasma${_KDE_VERSION}-plasma-workspace-wallpapers kde-plasma-workspace-wallpapers_PATH= ${KDE_PREFIX}/share/wallpapers/Autumn/contents/images/1280x1024.jpg kde-polkit-kde-agent-1_PORT= sysutils/plasma${_KDE_VERSION}-polkit-kde-agent-1 kde-polkit-kde-agent-1_PATH= ${KDE_PREFIX}/lib/libexec/polkit-kde-authentication-agent-1 kde-powerdevil_PORT= sysutils/plasma${_KDE_VERSION}-powerdevil kde-powerdevil_LIB= libpowerdevilcore.so kde-print-manager_PORT= print/plasma${_KDE_VERSION}-print-manager kde-print-manager_PATH= ${KDE_PREFIX}/bin/kde-print-queue kde-print-manager_TYPE= run kde-spectacle_PORT= graphics/plasma${_KDE_VERSION}-spectacle kde-spectacle_PATH= ${KDE_PREFIX}/bin/spectacle kde-spectacle_TYPE= run kde-systemmonitor_PORT= sysutils/plasma${_KDE_VERSION}-plasma-systemmonitor kde-systemmonitor_PATH= ${KDE_PREFIX}/bin/plasma-systemmonitor kde-systemmonitor_TYPE= run kde-systemsettings_PORT= sysutils/plasma${_KDE_VERSION}-systemsettings kde-systemsettings_PATH= ${KDE_PREFIX}/bin/systemsettings kde-xdg-desktop-portal-kde_PORT= deskutils/plasma${_KDE_VERSION}-xdg-desktop-portal-kde kde-xdg-desktop-portal-kde_PATH= ${KDE_PREFIX}/lib/libexec/xdg-desktop-portal-kde kde-plasma5support_PORT= devel/plasma${_KDE_VERSION}-plasma5support kde-plasma5support_LIB= libPlasma5Support.so kde-qqc2-breeze-style_PORT= x11-themes/plasma${_KDE_VERSION}-qqc2-breeze-style kde-qqc2-breeze-style_PATH= ${QT_PLUGINDIR}/kf${_KDE_VERSION}/kirigami/platform/org.kde.breeze.so kde-sddm-kcm_PORT= deskutils/plasma${_KDE_VERSION}-sddm-kcm kde-sddm-kcm_PATH= ${QT_PLUGINDIR}/plasma/kcms/systemsettings/kcm_sddm.so kde-sddm-kcm_TYPE= run kde-kirigami-addons_PORT= x11-toolkits/kirigami-addons-qt${_KDE_VERSION} kde-kirigami-addons_PATH= ${QT_QMLDIR}/org/kde/kirigamiaddons/components/libcomponentsplugin.so kde-globalacceld_PORT= x11/plasma${_KDE_VERSION}-kglobalacceld kde-globalacceld_PATH= ${QT_PLUGINDIR}/org.kde.kglobalacceld.platforms/KGlobalAccelDXcb.so kde-libplasma_PORT= x11/plasma${_KDE_VERSION}-libplasma kde-libplasma_LIB= libPlasma.so # ====================== end of plasma components ============================== # ====================== pim5 components ======================================= kde-akonadicontacts_PORT= net/akonadi-contacts kde-akonadicontacts_LIB= libKPim${_KDE_VERSION}AkonadiContactCore.so kde-akonadiimportwizard_PORT= deskutils/akonadi-import-wizard kde-akonadiimportwizard_LIB= libKPim${_KDE_VERSION}ImportWizard.so kde-akonadimime_PORT= net/akonadi-mime kde-akonadimime_LIB= libKPim${_KDE_VERSION}AkonadiMime.so kde-akonadicalendar_PORT= net/akonadi-calendar kde-akonadicalendar_LIB= libKPim${_KDE_VERSION}AkonadiCalendar.so kde-akonadisearch_PORT= net/akonadi-search kde-akonadisearch_LIB= libKPim${_KDE_VERSION}AkonadiSearchCore.so kde-calendarsupport_PORT= net/calendarsupport kde-calendarsupport_LIB= libKPim${_KDE_VERSION}CalendarSupport.so kde-calendarutils_PORT= net/kcalutils kde-calendarutils_LIB= libKPim${_KDE_VERSION}CalendarUtils.so kde-eventviews_PORT= net/eventviews kde-eventviews_LIB= libKPim${_KDE_VERSION}EventViews.so kde-gapi_PORT= net/libkgapi kde-gapi_LIB= libKPim${_KDE_VERSION}GAPIBlogger.so kde-grantleetheme_PORT= deskutils/grantleetheme kde-grantleetheme_LIB= libKPim${_KDE_VERSION}GrantleeTheme.so kde-gravatar_PORT= net/libgravatar kde-gravatar_LIB= libKPim${_KDE_VERSION}Gravatar.so kde-identitymanagement_PORT= net/kidentitymanagement kde-identitymanagement_LIB= libKPim${_KDE_VERSION}IdentityManagementCore.so kde-imap_PORT= net/kimap kde-imap_LIB= libKPim${_KDE_VERSION}IMAP.so kde-incidenceeditor_PORT= net/incidenceeditor kde-incidenceeditor_LIB= libKPim${_KDE_VERSION}IncidenceEditor.so kde-kdepim-addons_PORT= deskutils/kdepim-addons kde-kdepim-addons_PATH= ${QT_PLUGINDIR}/pim${_KDE_VERSION}/contacteditor/editorpageplugins/cryptopageplugin.so kde-kdepim-runtime_PORT= deskutils/kdepim-runtime kde-kdepim-runtime_PATH= ${KDE_PREFIX}/bin/gidmigrator kde-kitinerary_PORT= net/kitinerary kde-kitinerary_LIB= libKPim${_KDE_VERSION}Itinerary.so kde-kontactinterface_PORT= net/kontactinterface kde-kontactinterface_LIB= libKPim${_KDE_VERSION}KontactInterface.so kde-kpkpass_PORT= security/kpkpass kde-kpkpass_LIB= libKPim${_KDE_VERSION}PkPass.so kde-ksmtp_PORT= net/ksmtp kde-ksmtp_LIB= libKPim${_KDE_VERSION}SMTP.so kde-ldap_PORT= net/kldap kde-ldap_LIB= libKPim${_KDE_VERSION}LdapCore.so kde-libkdepim_PORT= deskutils/libkdepim kde-libkdepim_LIB= libKPim${_KDE_VERSION}Libkdepim.so kde-libkleo_PORT= security/libkleo kde-libkleo_LIB= libKPim${_KDE_VERSION}Libkleo.so kde-libksieve_PORT= net/libksieve kde-libksieve_LIB= libKPim${_KDE_VERSION}KSieve.so kde-mailcommon_PORT= net/mailcommon kde-mailcommon_LIB= libKPim${_KDE_VERSION}MailCommon.so kde-mailimporter_PORT= net/mailimporter kde-mailimporter_LIB= libKPim${_KDE_VERSION}MailImporter.so kde-mailtransport_PORT= net/kmailtransport kde-mailtransport_LIB= libKPim${_KDE_VERSION}MailTransport.so kde-mbox_PORT= net/kmbox kde-mbox_LIB= libKPim${_KDE_VERSION}Mbox.so kde-messagelib_PORT= net/messagelib kde-messagelib_LIB= libKPim${_KDE_VERSION}MessageList.so kde-mime_PORT= net/kmime kde-mime_LIB= libKPim${_KDE_VERSION}Mime.so kde-pimcommon_PORT= net/pimcommon kde-pimcommon_LIB= libKPim${_KDE_VERSION}PimCommon.so kde-pimtextedit_PORT= net/kpimtextedit kde-pimtextedit_LIB= libKPim${_KDE_VERSION}TextEdit.so kde-tnef_PORT= net/ktnef kde-tnef_LIB= libKPim${_KDE_VERSION}Tnef.so kde-ktextaddons_PORT= devel/ktextaddons kde-ktextaddons_LIB= libKF${_KDE_VERSION}TextAutoCorrectionCore.so # PIM Applications kde-akonadiconsole_PORT= deskutils/akonadiconsole kde-akonadiconsole_PATH= ${KDE_PREFIX}/bin/akonadiconsole kde-akregator_PORT= deskutils/akregator kde-akregator_PATH= ${KDE_PREFIX}/bin/akregator kde-grantlee-editor_PORT= deskutils/grantlee-editor kde-grantlee-editor_PATH= ${KDE_PREFIX}/bin/contactthemeeditor kde-kaddressbook_PORT= deskutils/kaddressbook kde-kaddressbook_PATH= ${KDE_PREFIX}/bin/kaddressbook kde-kalarm_PORT= deskutils/kalarm kde-kalarm_PATH= ${KDE_PREFIX}/bin/kalarm kde-kmail_PORT= deskutils/kmail kde-kmail_PATH= ${KDE_PREFIX}/bin/kmail kde-kmail-account-wizard_PORT= deskutils/kmail-account-wizard kde-kmail-account-wizard_PATH= ${KDE_PREFIX}/bin/accountwizard kde-kontact_PORT= deskutils/kontact kde-kontact_PATH= ${KDE_PREFIX}/bin/kontact kde-korganizer_PORT= deskutils/korganizer kde-korganizer_PATH= ${KDE_PREFIX}/bin/korganizer kde-mbox-importer_PORT= deskutils/mbox-importer kde-mbox-importer_PATH= ${KDE_PREFIX}/bin/mboximporter kde-mimetreeparser_PORT= net/mimetreeparser kde-mimetreeparser_LIB= libKPim${_KDE_VERSION}MimeTreeParserCore.so kde-pim-data-exporter_PORT= deskutils/pim-data-exporter kde-pim-data-exporter_PATH= ${KDE_PREFIX}/bin/pimdataexporter # ====================== end of pim5 components ================================ # ====================== multiversion component ================================ kde-akonadi_PORT= databases/akonadi kde-akonadi_LIB= libKPim${_KDE_VERSION}AkonadiPrivate.so kde-baloo-widgets_PORT= sysutils/baloo-widgets kde-baloo-widgets_LIB= libKF${_KDE_VERSION}BalooWidgets.so kde-libkcddb_PORT= audio/libkcddb kde-libkcddb_LIB= libKCddb${_KDE_VERSION}.so kde-libkcompactdisc_PORT= audio/libkcompactdisc kde-libkcompactdisc_LIB= libKF${_KDE_VERSION}CompactDisc.so kde-libkdcraw_PORT= graphics/libkdcraw@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 11bce63ae36d..33d7a9e283fd 100644 --- a/accessibility/kmag/distinfo +++ b/accessibility/kmag/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1757409616 -SHA256 (KDE/release-service/25.08.1/kmag-25.08.1.tar.xz) = 281b1dd5ec1fbb2a1ea1c9d61ab706d277016209d906dda47f22beb679e77c4e -SIZE (KDE/release-service/25.08.1/kmag-25.08.1.tar.xz) = 680348 +TIMESTAMP = 1759874548 +SHA256 (KDE/release-service/25.08.2/kmag-25.08.2.tar.xz) = f3343998a6b884453fc9738e7a4f560f716e34a5328f9f0df125eeb53274c081 +SIZE (KDE/release-service/25.08.2/kmag-25.08.2.tar.xz) = 680356 diff --git a/accessibility/kmousetool/distinfo b/accessibility/kmousetool/distinfo index 1618002a15fd..274e4cc09aa3 100644 --- a/accessibility/kmousetool/distinfo +++ b/accessibility/kmousetool/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1757409618 -SHA256 (KDE/release-service/25.08.1/kmousetool-25.08.1.tar.xz) = f275ab4e03482bc72c6d39eee6bd5aad692867ead535872d636de535faf37b63 -SIZE (KDE/release-service/25.08.1/kmousetool-25.08.1.tar.xz) = 135460 +TIMESTAMP = 1759874550 +SHA256 (KDE/release-service/25.08.2/kmousetool-25.08.2.tar.xz) = e4606b31108d87bbfa735a09dcfd00584237a1ff8d708c5237dd662d014aeabf +SIZE (KDE/release-service/25.08.2/kmousetool-25.08.2.tar.xz) = 135464 diff --git a/accessibility/kmouth/distinfo b/accessibility/kmouth/distinfo index 7fd3b2d78fae..a17b73fcc340 100644 --- a/accessibility/kmouth/distinfo +++ b/accessibility/kmouth/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1757409620 -SHA256 (KDE/release-service/25.08.1/kmouth-25.08.1.tar.xz) = 866ddd1f1936ee2df7b90817e90527655d570d80cdc04d6cd3918e234c9c3857 -SIZE (KDE/release-service/25.08.1/kmouth-25.08.1.tar.xz) = 1945300 +TIMESTAMP = 1759874553 +SHA256 (KDE/release-service/25.08.2/kmouth-25.08.2.tar.xz) = 142ef68d3d0fc5f280d2078761955d05a6bbb59eb2c59ad7d30c0093f2536b0e +SIZE (KDE/release-service/25.08.2/kmouth-25.08.2.tar.xz) = 1945908 diff --git a/archivers/ark/distinfo b/archivers/ark/distinfo index 307ae8ed7a6f..0666a28799d5 100644 --- a/archivers/ark/distinfo +++ b/archivers/ark/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1757409623 -SHA256 (KDE/release-service/25.08.1/ark-25.08.1.tar.xz) = 2febbab11881e3d32f44c4107041d53b1d5353c8c95c4d6536ab57de0958f96f -SIZE (KDE/release-service/25.08.1/ark-25.08.1.tar.xz) = 3016700 +TIMESTAMP = 1759874555 +SHA256 (KDE/release-service/25.08.2/ark-25.08.2.tar.xz) = 763eabec1e80050f3443bb7a0bc36d777b28ab07200efb16630bf33f7db0cbca +SIZE (KDE/release-service/25.08.2/ark-25.08.2.tar.xz) = 3018076 diff --git a/astro/kosmindoormap/distinfo b/astro/kosmindoormap/distinfo index d7255c9cdbfd..16fee0480382 100644 --- a/astro/kosmindoormap/distinfo +++ b/astro/kosmindoormap/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1757409625 -SHA256 (KDE/release-service/25.08.1/kosmindoormap-25.08.1.tar.xz) = b0845c7e48591f739a7a38ccd46e605f945e0c2af02298b73d1a9dda3c509146 -SIZE (KDE/release-service/25.08.1/kosmindoormap-25.08.1.tar.xz) = 777028 +TIMESTAMP = 1759874557 +SHA256 (KDE/release-service/25.08.2/kosmindoormap-25.08.2.tar.xz) = 39a7f40947352a3e449cef8045f780a94d5af4d95e1800f6a6319a652928319b +SIZE (KDE/release-service/25.08.2/kosmindoormap-25.08.2.tar.xz) = 777172 diff --git a/astro/marble/distinfo b/astro/marble/distinfo index b99180d3ebfa..5facec5b37cc 100644 --- a/astro/marble/distinfo +++ b/astro/marble/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1757409628 -SHA256 (KDE/release-service/25.08.1/marble-25.08.1.tar.xz) = 18cd1c221ce5b916c10d828ce084219c15e2806a376f53f9970fb6682d72f51b -SIZE (KDE/release-service/25.08.1/marble-25.08.1.tar.xz) = 53789036 +TIMESTAMP = 1759874560 +SHA256 (KDE/release-service/25.08.2/marble-25.08.2.tar.xz) = 655d70a768ffc67d5d3f2d820005dea57ff9af5d09837e3ababcff12fcb775ff +SIZE (KDE/release-service/25.08.2/marble-25.08.2.tar.xz) = 53788532 diff --git a/audio/audiocd-kio/distinfo b/audio/audiocd-kio/distinfo index 31e1ccbf5f07..9f5cacea9ba5 100644 --- a/audio/audiocd-kio/distinfo +++ b/audio/audiocd-kio/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1757409630 -SHA256 (KDE/release-service/25.08.1/audiocd-kio-25.08.1.tar.xz) = 672bc1dfff4d228705d499a5fd818d8bdb5946e74f623a9ce1f22d460aecc070 -SIZE (KDE/release-service/25.08.1/audiocd-kio-25.08.1.tar.xz) = 584344 +TIMESTAMP = 1759874562 +SHA256 (KDE/release-service/25.08.2/audiocd-kio-25.08.2.tar.xz) = ae758ddd6fabea2d807f4a8b71b98b1ad2f0b530aeebe3b5794b5187162f90bf +SIZE (KDE/release-service/25.08.2/audiocd-kio-25.08.2.tar.xz) = 584332 diff --git a/audio/elisa/distinfo b/audio/elisa/distinfo index 83758d20489d..e94f474bfbe5 100644 --- a/audio/elisa/distinfo +++ b/audio/elisa/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1757409632 -SHA256 (KDE/release-service/25.08.1/elisa-25.08.1.tar.xz) = 6bba1edd0cb87343e95390cf29677ef58d788648a8f6102b643f141c5d7f24e8 -SIZE (KDE/release-service/25.08.1/elisa-25.08.1.tar.xz) = 1498276 +TIMESTAMP = 1759874565 +SHA256 (KDE/release-service/25.08.2/elisa-25.08.2.tar.xz) = e07508b084a4f5df1bcea758ca705a8a53c90dc01f6f5435a9ef38785d1b11c1 +SIZE (KDE/release-service/25.08.2/elisa-25.08.2.tar.xz) = 1498316 diff --git a/audio/juk/distinfo b/audio/juk/distinfo index 66dddf4ed0e9..56b86506a4be 100644 --- a/audio/juk/distinfo +++ b/audio/juk/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1757409635 -SHA256 (KDE/release-service/25.08.1/juk-25.08.1.tar.xz) = 39a24b5cab5c739e9f0eed31954d4887e96531f7dad084193d3ff2cdb0d78dd7 -SIZE (KDE/release-service/25.08.1/juk-25.08.1.tar.xz) = 1933616 +TIMESTAMP = 1759874567 +SHA256 (KDE/release-service/25.08.2/juk-25.08.2.tar.xz) = 2b396a80378ae72813d02986b6a3502c975065b49a9feaf382426c7a965a48a0 +SIZE (KDE/release-service/25.08.2/juk-25.08.2.tar.xz) = 1933636 diff --git a/audio/kmix/distinfo b/audio/kmix/distinfo index d1d1eec611a4..d91e3bd04835 100644 --- a/audio/kmix/distinfo +++ b/audio/kmix/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1757409637 -SHA256 (KDE/release-service/25.08.1/kmix-25.08.1.tar.xz) = a3ed6baeb344c171be4eb6f90e7f592e7820ad4eef3458211b9eaf135fcd8600 -SIZE (KDE/release-service/25.08.1/kmix-25.08.1.tar.xz) = 1178648 +TIMESTAMP = 1759874570 +SHA256 (KDE/release-service/25.08.2/kmix-25.08.2.tar.xz) = 60f8d36530c176a2260eae674aac2e7241508dcad6287ffbbfaafa57942a65e7 +SIZE (KDE/release-service/25.08.2/kmix-25.08.2.tar.xz) = 1178672 diff --git a/audio/kwave/distinfo b/audio/kwave/distinfo index 7885200b4977..e259ddd4f39d 100644 --- a/audio/kwave/distinfo +++ b/audio/kwave/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1757409639 -SHA256 (KDE/release-service/25.08.1/kwave-25.08.1.tar.xz) = 2bfaee89b2acfb2d19129b5c1bd8faf7e1c53a1e07117925f711d5ec87137cb1 -SIZE (KDE/release-service/25.08.1/kwave-25.08.1.tar.xz) = 6531668 +TIMESTAMP = 1759874572 +SHA256 (KDE/release-service/25.08.2/kwave-25.08.2.tar.xz) = e00e1a941d56023d503edec6d27468cef2dc1794f72102800a2449dd4f0c970a +SIZE (KDE/release-service/25.08.2/kwave-25.08.2.tar.xz) = 6532188 diff --git a/audio/libkcddb/distinfo b/audio/libkcddb/distinfo index 5d34d7574bc6..f15e23547604 100644 --- a/audio/libkcddb/distinfo +++ b/audio/libkcddb/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1757409642 -SHA256 (KDE/release-service/25.08.1/libkcddb-25.08.1.tar.xz) = 7042e4d08ce53a830eb6947a5c2f7c9aa5e9c60c163731da149df3e82c338d6f -SIZE (KDE/release-service/25.08.1/libkcddb-25.08.1.tar.xz) = 448860 +TIMESTAMP = 1759874575 +SHA256 (KDE/release-service/25.08.2/libkcddb-25.08.2.tar.xz) = 960235509691c21dfd8ee1c5493aeee585912bdf1806a6b4b59b8f69f995aa71 +SIZE (KDE/release-service/25.08.2/libkcddb-25.08.2.tar.xz) = 448760 diff --git a/audio/libkcompactdisc/distinfo b/audio/libkcompactdisc/distinfo index 68a9e841bf06..a802a8bfa5b1 100644 --- a/audio/libkcompactdisc/distinfo +++ b/audio/libkcompactdisc/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1757409644 -SHA256 (KDE/release-service/25.08.1/libkcompactdisc-25.08.1.tar.xz) = ceb9f45732106dfff29d4f510c663b7811c32e4506e24b3bc64a0fe77cd9281c -SIZE (KDE/release-service/25.08.1/libkcompactdisc-25.08.1.tar.xz) = 100684 +TIMESTAMP = 1759874577 +SHA256 (KDE/release-service/25.08.2/libkcompactdisc-25.08.2.tar.xz) = 76af8e22328c379845a4bc52d5cb1d1f6065973f2cb531835302bca528cc6728 +SIZE (KDE/release-service/25.08.2/libkcompactdisc-25.08.2.tar.xz) = 100664 diff --git a/databases/akonadi/Makefile b/databases/akonadi/Makefile index 8d003ecddac1..60f5b9fb2739 100644 --- a/databases/akonadi/Makefile +++ b/databases/akonadi/Makefile @@ -1,62 +1,61 @@ PORTNAME= akonadi DISTVERSION= ${KDE_APPLICATIONS_VERSION} -PORTREVISION= 1 CATEGORIES= databases kde kde-applications MAINTAINER= kde@FreeBSD.org COMMENT= Storage server for KDE-Pim WWW= https://community.kde.org/KDE_PIM/Akonadi LICENSE= LGPL21 LIB_DEPENDS= libboost_thread.so:devel/boost-libs \ libkaccounts6.so:net-im/kaccounts-integration \ libaccounts-qt6.so:net-im/libaccounts-qt@qt6 # Let process generate meaningful backtrace on core dump. BUILD_DEPENDS= xsltproc:textproc/libxslt USES= cmake compiler:c++11-lib gettext gnome kde:6 qt:6 \ shared-mime-info sqlite:3 tar:xz xorg USE_GNOME= libxml2 USE_KDE= auth codecs completion config configwidgets coreaddons crash \ dbusaddons guiaddons i18n iconthemes itemmodels itemviews kio \ service widgetsaddons windowsystem xmlgui \ ecm:build USE_QT= base \ sqldriver-sqlite:run USE_XORG= x11 CMAKE_ARGS+= -DCMAKE_REQUIRED_INCLUDES:STRING="${LOCALBASE}/include" \ -DMYSQLD_EXECUTABLE:FILEPATH="${LOCALBASE}/libexec/mysqld" \ -DMYSQLD_SCRIPTS_PATH:PATH="${LOCALBASE}/bin" \ -DPOSTGRES_PATH:FILEPATH="${LOCALBASE}/bin/pg_ctl" USE_LDCONFIG= yes OPTIONS_DEFINE= DOCS OPTIONS_GROUP= DB OPTIONS_GROUP_DB= MYSQL PGSQL OPTIONS_DEFAULT= MYSQL MYSQL_DESC= Install MySQL Qt plugin and server MYSQL_USES= mysql:server MYSQL_USE= QT=sqldriver-mysql:run PGSQL_DESC= Install PostgreSQL Qt plugin PGSQL_USE= QT=sqldriver-psql:run .include .if ${PORT_OPTIONS:MMYSQL} CMAKE_ARGS+= -DDATABASE_BACKEND:STRING="MYSQL" .elif ${PORT_OPTIONS:MPGSQL} CMAKE_ARGS+= -DDATABASE_BACKEND:STRING="POSTGRES" .endif post-patch: # To avoid overflow, MySQL settings need to be lower than # INT_MAX / kern.hz. This setting assumes kern.hz=2000, and # it's nothing but a temporary hack. ${REINPLACE_CMD} -e '/wait_timeout/ s|31536000|1073741|' \ ${PATCH_WRKSRC}/src/server/storage/*.conf .include diff --git a/databases/akonadi/distinfo b/databases/akonadi/distinfo index c4e8f8f4bbda..f908d5ca028e 100644 --- a/databases/akonadi/distinfo +++ b/databases/akonadi/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1757409647 -SHA256 (KDE/release-service/25.08.1/akonadi-25.08.1.tar.xz) = d32ad5435bb7c9da06a00cfef0804f8d77784ffcf8521b951005c1035572afde -SIZE (KDE/release-service/25.08.1/akonadi-25.08.1.tar.xz) = 1766632 +TIMESTAMP = 1759874580 +SHA256 (KDE/release-service/25.08.2/akonadi-25.08.2.tar.xz) = 41cfeadfe87b028d720068c045eb9e6cb21dfa9edb247a5488d9b3fc6131c30e +SIZE (KDE/release-service/25.08.2/akonadi-25.08.2.tar.xz) = 1766996 diff --git a/deskutils/akonadi-calendar-tools/distinfo b/deskutils/akonadi-calendar-tools/distinfo index e8deba894df4..f4b9f9330282 100644 --- a/deskutils/akonadi-calendar-tools/distinfo +++ b/deskutils/akonadi-calendar-tools/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1757409649 -SHA256 (KDE/release-service/25.08.1/akonadi-calendar-tools-25.08.1.tar.xz) = 58a40b48c8c36aa5f4a5f5bdfff56f2ed194fcc9354da5e0912b600bad2a920c -SIZE (KDE/release-service/25.08.1/akonadi-calendar-tools-25.08.1.tar.xz) = 274412 +TIMESTAMP = 1759874582 +SHA256 (KDE/release-service/25.08.2/akonadi-calendar-tools-25.08.2.tar.xz) = 9c84be9f3f950ce575a328d4aca89aff7bfc7f90a28cf44236a8335284e63a88 +SIZE (KDE/release-service/25.08.2/akonadi-calendar-tools-25.08.2.tar.xz) = 274404 diff --git a/deskutils/akonadi-import-wizard/distinfo b/deskutils/akonadi-import-wizard/distinfo index fec87dcd13d0..8ed6478d92c8 100644 --- a/deskutils/akonadi-import-wizard/distinfo +++ b/deskutils/akonadi-import-wizard/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1757409651 -SHA256 (KDE/release-service/25.08.1/akonadi-import-wizard-25.08.1.tar.xz) = 3f0309ec3b649387c6cf19475e98ab06b52ccaa2ca9c0d95fe5a6bfce9302712 -SIZE (KDE/release-service/25.08.1/akonadi-import-wizard-25.08.1.tar.xz) = 497816 +TIMESTAMP = 1759874584 +SHA256 (KDE/release-service/25.08.2/akonadi-import-wizard-25.08.2.tar.xz) = 391435269f2c061a09e8a727a5ba6e39d3c5908b6917a11846d8446e49a03bd5 +SIZE (KDE/release-service/25.08.2/akonadi-import-wizard-25.08.2.tar.xz) = 497920 diff --git a/deskutils/akonadiconsole/distinfo b/deskutils/akonadiconsole/distinfo index d67440d9e3ca..e78dd8032711 100644 --- a/deskutils/akonadiconsole/distinfo +++ b/deskutils/akonadiconsole/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1757409654 -SHA256 (KDE/release-service/25.08.1/akonadiconsole-25.08.1.tar.xz) = 6649240ce46b25a4de55052548bb84529d7ff2bfa8de5738edf068ac2d912ad3 -SIZE (KDE/release-service/25.08.1/akonadiconsole-25.08.1.tar.xz) = 324108 +TIMESTAMP = 1759874587 +SHA256 (KDE/release-service/25.08.2/akonadiconsole-25.08.2.tar.xz) = 3853f11ae4146521764a89733e7089c667e9ca7b43fdc913b264ca5937552291 +SIZE (KDE/release-service/25.08.2/akonadiconsole-25.08.2.tar.xz) = 328408 diff --git a/deskutils/akonadiconsole/pkg-plist b/deskutils/akonadiconsole/pkg-plist index 8d581dd2fa39..4841adf77ff8 100644 --- a/deskutils/akonadiconsole/pkg-plist +++ b/deskutils/akonadiconsole/pkg-plist @@ -1,50 +1,51 @@ 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/ar/LC_MESSAGES/akonadiconsole.mo 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 42e808658779..abd01c48ea6a 100644 --- a/deskutils/akregator/distinfo +++ b/deskutils/akregator/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1757409656 -SHA256 (KDE/release-service/25.08.1/akregator-25.08.1.tar.xz) = bb3a957088f7994359544b080f7ddb4eed18844c7a03f6b3fd928f5c83bf7ced -SIZE (KDE/release-service/25.08.1/akregator-25.08.1.tar.xz) = 2144956 +TIMESTAMP = 1759874589 +SHA256 (KDE/release-service/25.08.2/akregator-25.08.2.tar.xz) = d0a66f71c5159cbbfe37e0762d15570515692f8646fb55a19180d6d529acfcee +SIZE (KDE/release-service/25.08.2/akregator-25.08.2.tar.xz) = 2145004 diff --git a/deskutils/grantlee-editor/distinfo b/deskutils/grantlee-editor/distinfo index 5400f8116875..3ddd3d90658e 100644 --- a/deskutils/grantlee-editor/distinfo +++ b/deskutils/grantlee-editor/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1757409658 -SHA256 (KDE/release-service/25.08.1/grantlee-editor-25.08.1.tar.xz) = 107b168e6f296f6dfbbdf3bddc7f32001e38ba07b51831a178c569f8c8388738 -SIZE (KDE/release-service/25.08.1/grantlee-editor-25.08.1.tar.xz) = 130764 +TIMESTAMP = 1759874592 +SHA256 (KDE/release-service/25.08.2/grantlee-editor-25.08.2.tar.xz) = fb4d8e647c3661a30643cd32ad46f53c972ec6fc80376c4dc514b1f65ca3f0ce +SIZE (KDE/release-service/25.08.2/grantlee-editor-25.08.2.tar.xz) = 130856 diff --git a/deskutils/grantleetheme/distinfo b/deskutils/grantleetheme/distinfo index 4ad4f58ba5f0..81a5cfbc8175 100644 --- a/deskutils/grantleetheme/distinfo +++ b/deskutils/grantleetheme/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1757409661 -SHA256 (KDE/release-service/25.08.1/grantleetheme-25.08.1.tar.xz) = f19d9ae2c4ba23a330a3dceac72ab7f18566534b40879e543c5ec6c72ad7e7f1 -SIZE (KDE/release-service/25.08.1/grantleetheme-25.08.1.tar.xz) = 65984 +TIMESTAMP = 1759874594 +SHA256 (KDE/release-service/25.08.2/grantleetheme-25.08.2.tar.xz) = c5db5218dbafd925e4692728458141b7a71b9e9674bac11c85c868d792c24c54 +SIZE (KDE/release-service/25.08.2/grantleetheme-25.08.2.tar.xz) = 65992 diff --git a/deskutils/itinerary/distinfo b/deskutils/itinerary/distinfo index c8812902958b..d1ddf8843599 100644 --- a/deskutils/itinerary/distinfo +++ b/deskutils/itinerary/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1757409663 -SHA256 (KDE/release-service/25.08.1/itinerary-25.08.1.tar.xz) = 3b95d019e9ea0c61253f768f5c802242dbde062c87e42b2f178735b042e73853 -SIZE (KDE/release-service/25.08.1/itinerary-25.08.1.tar.xz) = 847744 +TIMESTAMP = 1759874597 +SHA256 (KDE/release-service/25.08.2/itinerary-25.08.2.tar.xz) = 55703d6088e25a0adb8224982589d49784e920be8c0e79e5f50c13cc32aed73e +SIZE (KDE/release-service/25.08.2/itinerary-25.08.2.tar.xz) = 853624 diff --git a/deskutils/kaddressbook/distinfo b/deskutils/kaddressbook/distinfo index d0d0dd7bf7fe..24b5bc15fda0 100644 --- a/deskutils/kaddressbook/distinfo +++ b/deskutils/kaddressbook/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1757409665 -SHA256 (KDE/release-service/25.08.1/kaddressbook-25.08.1.tar.xz) = ddf64a7a704e190b49e94cc5982a40288e338d8630dba876b0782f292bc720c2 -SIZE (KDE/release-service/25.08.1/kaddressbook-25.08.1.tar.xz) = 3443184 +TIMESTAMP = 1759874599 +SHA256 (KDE/release-service/25.08.2/kaddressbook-25.08.2.tar.xz) = 45b3fc9e2539ed1fcbbccd45ce45e9c36b7501089265998209155fbce71a58d5 +SIZE (KDE/release-service/25.08.2/kaddressbook-25.08.2.tar.xz) = 3443480 diff --git a/deskutils/kalarm/distinfo b/deskutils/kalarm/distinfo index 5a2a2be3a538..d6e347fccd7a 100644 --- a/deskutils/kalarm/distinfo +++ b/deskutils/kalarm/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1757409668 -SHA256 (KDE/release-service/25.08.1/kalarm-25.08.1.tar.xz) = a3f39dac4d0dcbc629df6596655e6fae2d49113b9afff3dcd23bc226d7ea2576 -SIZE (KDE/release-service/25.08.1/kalarm-25.08.1.tar.xz) = 2689724 +TIMESTAMP = 1759874601 +SHA256 (KDE/release-service/25.08.2/kalarm-25.08.2.tar.xz) = 7ff58a258a17df50ea3da7ad7dcdcee15072481114e3ebb1b855eb85c065d677 +SIZE (KDE/release-service/25.08.2/kalarm-25.08.2.tar.xz) = 2690272 diff --git a/deskutils/kcharselect/distinfo b/deskutils/kcharselect/distinfo index deca4a47ac9b..767599dc2de9 100644 --- a/deskutils/kcharselect/distinfo +++ b/deskutils/kcharselect/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1757409670 -SHA256 (KDE/release-service/25.08.1/kcharselect-25.08.1.tar.xz) = 5fb3756d6d388947da2d2b1fb69db6609823f0c43b464b88c3ec9f4f0d13d618 -SIZE (KDE/release-service/25.08.1/kcharselect-25.08.1.tar.xz) = 477844 +TIMESTAMP = 1759874604 +SHA256 (KDE/release-service/25.08.2/kcharselect-25.08.2.tar.xz) = dd1502427ae86c04b93d53d4c2ba9069a60cb52676d42010b4031d1908218e50 +SIZE (KDE/release-service/25.08.2/kcharselect-25.08.2.tar.xz) = 477852 diff --git a/deskutils/kdeconnect-kde/distinfo b/deskutils/kdeconnect-kde/distinfo index 3ab4649ac5b7..6d4140426b5d 100644 --- a/deskutils/kdeconnect-kde/distinfo +++ b/deskutils/kdeconnect-kde/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1757409672 -SHA256 (KDE/release-service/25.08.1/kdeconnect-kde-25.08.1.tar.xz) = 8a340bdc48a754d12a938f231a366f308de2121614e7628b86a1bbfa509d351f -SIZE (KDE/release-service/25.08.1/kdeconnect-kde-25.08.1.tar.xz) = 628580 +TIMESTAMP = 1759874606 +SHA256 (KDE/release-service/25.08.2/kdeconnect-kde-25.08.2.tar.xz) = e4245b6a063d6df0e123fd67c065f5c24994e21b349589cda6595e480b916b09 +SIZE (KDE/release-service/25.08.2/kdeconnect-kde-25.08.2.tar.xz) = 628720 diff --git a/deskutils/kdepim-addons/distinfo b/deskutils/kdepim-addons/distinfo index 94b378d23bfb..8c4dd7873edd 100644 --- a/deskutils/kdepim-addons/distinfo +++ b/deskutils/kdepim-addons/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1757409675 -SHA256 (KDE/release-service/25.08.1/kdepim-addons-25.08.1.tar.xz) = f7d1ae2ce7692789866ec67d8dfbd984c75d02d29a2dae056df345fa74d1d46e -SIZE (KDE/release-service/25.08.1/kdepim-addons-25.08.1.tar.xz) = 2662168 +TIMESTAMP = 1759874609 +SHA256 (KDE/release-service/25.08.2/kdepim-addons-25.08.2.tar.xz) = d1458248881965366030513e0e1789cd38aa07ad997ee6b7bc1d7c638d96cf87 +SIZE (KDE/release-service/25.08.2/kdepim-addons-25.08.2.tar.xz) = 2660072 diff --git a/deskutils/kdepim-runtime/Makefile b/deskutils/kdepim-runtime/Makefile index 87724873d958..b02fcf6a3f63 100644 --- a/deskutils/kdepim-runtime/Makefile +++ b/deskutils/kdepim-runtime/Makefile @@ -1,49 +1,48 @@ PORTNAME= kdepim-runtime DISTVERSION= ${KDE_APPLICATIONS_VERSION} -PORTREVISION= 1 CATEGORIES= deskutils kde kde-applications MAINTAINER= kde@FreeBSD.org COMMENT= KDE PIM tools and services WWW= https://www.kde.org/ LICENSE= LGPL21 LIB_DEPENDS= libboost_date_time.so:devel/boost-libs \ libcurl.so:ftp/curl \ libkolabxml.so:textproc/libkolabxml \ libqca-qt6.so:devel/qca@qt6 \ libsasl2.so:security/cyrus-sasl2 \ libxerces-c.so:textproc/xerces-c3 \ libqt6keychain.so:security/qtkeychain@qt6 USES= cmake:noninja compiler:c++11-lib gettext kde:6 qt:6 \ shared-mime-info tar:xz xorg USE_KDE= auth bookmarks codecs completion config configwidgets \ coreaddons crash dbusaddons guiaddons holidays i18n iconthemes \ itemmodels itemviews jobwidgets kcmutils kdav kio \ notifications notifyconfig parts service solid sonnet \ textwidgets unitconversion wallet widgetsaddons windowsystem \ xmlgui \ ecm:build # pim components USE_KDE+= akonadi akonadicalendar akonadicontacts akonadimime \ akonadisearch calendarcore calendarutils contacts \ gapi grantleetheme identitymanagement imap kontactinterface \ ldap libkdepim mailtransport mbox mime pimcommon pimtextedit \ syndication USE_QT= base networkauth USE_XORG= x11 USE_LDCONFIG= yes DESCR= ${.CURDIR:H:H}/deskutils/kdepim/pkg-descr OPTIONS_DEFINE= DOCS .include .if ${CHOSEN_COMPILER_TYPE} == clang CXXFLAGS+= -Wno-error=enum-constexpr-conversion .endif .include diff --git a/deskutils/kdepim-runtime/distinfo b/deskutils/kdepim-runtime/distinfo index 1ff1b48370fb..37661966bac6 100644 --- a/deskutils/kdepim-runtime/distinfo +++ b/deskutils/kdepim-runtime/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1757409677 -SHA256 (KDE/release-service/25.08.1/kdepim-runtime-25.08.1.tar.xz) = c2f402f934d32066ae3d98176d41c1de9204d14e902d502283d803637b4b39eb -SIZE (KDE/release-service/25.08.1/kdepim-runtime-25.08.1.tar.xz) = 2453024 +TIMESTAMP = 1759874611 +SHA256 (KDE/release-service/25.08.2/kdepim-runtime-25.08.2.tar.xz) = c030f98854e31d927071cd4b4bbc2d97792d4cefbac548aa6cd75db0602512ca +SIZE (KDE/release-service/25.08.2/kdepim-runtime-25.08.2.tar.xz) = 2452708 diff --git a/deskutils/keditbookmarks/distinfo b/deskutils/keditbookmarks/distinfo index 0ef1462272af..bc519b60fb7d 100644 --- a/deskutils/keditbookmarks/distinfo +++ b/deskutils/keditbookmarks/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1757409679 -SHA256 (KDE/release-service/25.08.1/keditbookmarks-25.08.1.tar.xz) = e20ee35fbb6977a272e5010ce712ee3200ea2e42df51fcc717a4f817e078060a -SIZE (KDE/release-service/25.08.1/keditbookmarks-25.08.1.tar.xz) = 262504 +TIMESTAMP = 1759874614 +SHA256 (KDE/release-service/25.08.2/keditbookmarks-25.08.2.tar.xz) = c3092e97f7e1d1c2b111426f813e1fad88ea73fcdb9f8bcefe54418fa2f22dff +SIZE (KDE/release-service/25.08.2/keditbookmarks-25.08.2.tar.xz) = 262464 diff --git a/deskutils/kfind/distinfo b/deskutils/kfind/distinfo index 65814fac4322..2ff6520c1544 100644 --- a/deskutils/kfind/distinfo +++ b/deskutils/kfind/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1757409681 -SHA256 (KDE/release-service/25.08.1/kfind-25.08.1.tar.xz) = 06155b309fba75dcd373a86bd5f89f08425455168470c7f69b62f09f05c5a4e1 -SIZE (KDE/release-service/25.08.1/kfind-25.08.1.tar.xz) = 330912 +TIMESTAMP = 1759874616 +SHA256 (KDE/release-service/25.08.2/kfind-25.08.2.tar.xz) = 1ef81db41386fcc6805f3ff37f502a638da410954d050fafe34cb76c20eed501 +SIZE (KDE/release-service/25.08.2/kfind-25.08.2.tar.xz) = 330880 diff --git a/deskutils/kmail-account-wizard/distinfo b/deskutils/kmail-account-wizard/distinfo index 27ccc97d92a5..eee453c8d1e8 100644 --- a/deskutils/kmail-account-wizard/distinfo +++ b/deskutils/kmail-account-wizard/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1757409686 -SHA256 (KDE/release-service/25.08.1/kmail-account-wizard-25.08.1.tar.xz) = 119f1877fc2e98390782ef91e59713ed99526ca5942df479014bd40445f75845 -SIZE (KDE/release-service/25.08.1/kmail-account-wizard-25.08.1.tar.xz) = 172728 +TIMESTAMP = 1759874621 +SHA256 (KDE/release-service/25.08.2/kmail-account-wizard-25.08.2.tar.xz) = 750791274a8ddc99142f4bdde65322c5b98bec8634a6e471939c95948de533b7 +SIZE (KDE/release-service/25.08.2/kmail-account-wizard-25.08.2.tar.xz) = 172688 diff --git a/deskutils/kmail/distinfo b/deskutils/kmail/distinfo index 7d38a96d0ce1..f0bac5eec175 100644 --- a/deskutils/kmail/distinfo +++ b/deskutils/kmail/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1757409684 -SHA256 (KDE/release-service/25.08.1/kmail-25.08.1.tar.xz) = 4f71913bdeceb195982299485305f9db56aaeb893266c9129e1aed9d485861da -SIZE (KDE/release-service/25.08.1/kmail-25.08.1.tar.xz) = 7835796 +TIMESTAMP = 1759874619 +SHA256 (KDE/release-service/25.08.2/kmail-25.08.2.tar.xz) = 23e67df8831bbcb2a1f52640e750900455b5145977563c021495a62ff31d1fff +SIZE (KDE/release-service/25.08.2/kmail-25.08.2.tar.xz) = 7824836 diff --git a/deskutils/kongress/distinfo b/deskutils/kongress/distinfo index 02b0d1d5e215..adf5c61210f1 100644 --- a/deskutils/kongress/distinfo +++ b/deskutils/kongress/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1757409688 -SHA256 (KDE/release-service/25.08.1/kongress-25.08.1.tar.xz) = e5abd4f5f68633cd0e1feb3467e79e2d3ff173c81c83d6b565904b1eb742f760 -SIZE (KDE/release-service/25.08.1/kongress-25.08.1.tar.xz) = 164176 +TIMESTAMP = 1759874623 +SHA256 (KDE/release-service/25.08.2/kongress-25.08.2.tar.xz) = 1c2a34903e38e257216276f4bc38732f9d16bddd0baa4ec6def4f9904135b6d7 +SIZE (KDE/release-service/25.08.2/kongress-25.08.2.tar.xz) = 164244 diff --git a/deskutils/kontact/distinfo b/deskutils/kontact/distinfo index ab4f3e330311..5d53b9442932 100644 --- a/deskutils/kontact/distinfo +++ b/deskutils/kontact/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1757409691 -SHA256 (KDE/release-service/25.08.1/kontact-25.08.1.tar.xz) = 426a67ec326819ca391694cbd414a9675a01505c3de82626ef4031ace91793cf -SIZE (KDE/release-service/25.08.1/kontact-25.08.1.tar.xz) = 888416 +TIMESTAMP = 1759874626 +SHA256 (KDE/release-service/25.08.2/kontact-25.08.2.tar.xz) = 1b7d5b7db42ed8ff03dde5a7a549bcfe78b9a3db7bf76ce7ed397e649ac07912 +SIZE (KDE/release-service/25.08.2/kontact-25.08.2.tar.xz) = 888384 diff --git a/deskutils/korganizer/distinfo b/deskutils/korganizer/distinfo index 649f3747d08b..fb057e35dbde 100644 --- a/deskutils/korganizer/distinfo +++ b/deskutils/korganizer/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1757409693 -SHA256 (KDE/release-service/25.08.1/korganizer-25.08.1.tar.xz) = b7ea08d1b4dfcf881127cb6f34df055fd261c9986096773037ddd1a6a0d69597 -SIZE (KDE/release-service/25.08.1/korganizer-25.08.1.tar.xz) = 3054584 +TIMESTAMP = 1759874628 +SHA256 (KDE/release-service/25.08.2/korganizer-25.08.2.tar.xz) = 9060d3b0df7d2fa06991a3e1eb3faaea56118fb919dcbe304c55a1df334d4c45 +SIZE (KDE/release-service/25.08.2/korganizer-25.08.2.tar.xz) = 3056792 diff --git a/deskutils/kruler/distinfo b/deskutils/kruler/distinfo index 63032928b77e..71ee3c97b302 100644 --- a/deskutils/kruler/distinfo +++ b/deskutils/kruler/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1757409695 -SHA256 (KDE/release-service/25.08.1/kruler-25.08.1.tar.xz) = b03638bb846495f9ded02336d1a8b7c1c45b18ea61f5f8299cd2bacb8a382adb -SIZE (KDE/release-service/25.08.1/kruler-25.08.1.tar.xz) = 287348 +TIMESTAMP = 1759874631 +SHA256 (KDE/release-service/25.08.2/kruler-25.08.2.tar.xz) = 9bf5f8b8c1b4cce111dcf1f2b3b23c109518706ba095ec0a032a1e1c8ed24821 +SIZE (KDE/release-service/25.08.2/kruler-25.08.2.tar.xz) = 287396 diff --git a/deskutils/kweather/distinfo b/deskutils/kweather/distinfo index bd6e63c06c87..41f893ba7766 100644 --- a/deskutils/kweather/distinfo +++ b/deskutils/kweather/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1757409696 -SHA256 (KDE/release-service/25.08.1/kweather-25.08.1.tar.xz) = 8b7b618004345c5072ad473fce15998bb1de98727dc4a8101a2d64d7650d95aa -SIZE (KDE/release-service/25.08.1/kweather-25.08.1.tar.xz) = 366236 +TIMESTAMP = 1759874631 +SHA256 (KDE/release-service/25.08.2/kweather-25.08.2.tar.xz) = 681d51a625a8b45d3d87e427619a5e18cb5e304e8acbf7ac287707d91b72c3eb +SIZE (KDE/release-service/25.08.2/kweather-25.08.2.tar.xz) = 367172 diff --git a/deskutils/kweathercore/distinfo b/deskutils/kweathercore/distinfo index a3a49ef8c145..0ff411bbd5ed 100644 --- a/deskutils/kweathercore/distinfo +++ b/deskutils/kweathercore/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1757409696 -SHA256 (KDE/release-service/25.08.1/kweathercore-25.08.1.tar.xz) = 82593bc3c0a06bb5ca6e077ff0843dac5e25bb133a5367c2482a48a61ed08287 -SIZE (KDE/release-service/25.08.1/kweathercore-25.08.1.tar.xz) = 78912 +TIMESTAMP = 1759874631 +SHA256 (KDE/release-service/25.08.2/kweathercore-25.08.2.tar.xz) = 0d1491d8011ae93d6292ee9b8e27b961389533b2befdc548219f5f42d1ec0d15 +SIZE (KDE/release-service/25.08.2/kweathercore-25.08.2.tar.xz) = 78916 diff --git a/deskutils/libkdepim/distinfo b/deskutils/libkdepim/distinfo index eb2300d7f4cd..825ee7e76d3c 100644 --- a/deskutils/libkdepim/distinfo +++ b/deskutils/libkdepim/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1757409698 -SHA256 (KDE/release-service/25.08.1/libkdepim-25.08.1.tar.xz) = c548a4a26ceb5c09d51ab5258238b201385768054803d3f1372388438dac2089 -SIZE (KDE/release-service/25.08.1/libkdepim-25.08.1.tar.xz) = 285284 +TIMESTAMP = 1759874634 +SHA256 (KDE/release-service/25.08.2/libkdepim-25.08.2.tar.xz) = 936b4f0a717768542db469e3d59ff1e450755d24da34159a3d016dbba25cbd28 +SIZE (KDE/release-service/25.08.2/libkdepim-25.08.2.tar.xz) = 285256 diff --git a/deskutils/mbox-importer/distinfo b/deskutils/mbox-importer/distinfo index 35e1d9a9497e..1deabc97cdb5 100644 --- a/deskutils/mbox-importer/distinfo +++ b/deskutils/mbox-importer/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1757409701 -SHA256 (KDE/release-service/25.08.1/mbox-importer-25.08.1.tar.xz) = 2e81864adaf67e8180cce859200770c8f3063b9541a31f4a81804d3dd0d42761 -SIZE (KDE/release-service/25.08.1/mbox-importer-25.08.1.tar.xz) = 34136 +TIMESTAMP = 1759874636 +SHA256 (KDE/release-service/25.08.2/mbox-importer-25.08.2.tar.xz) = 279f0aa7d3e92bcaad5729bf50fef6f0b43d58e321c2827deb2fcb9e6f6fcf60 +SIZE (KDE/release-service/25.08.2/mbox-importer-25.08.2.tar.xz) = 34120 diff --git a/deskutils/merkuro/distinfo b/deskutils/merkuro/distinfo index 984e93cef5c6..2fcebc1131a0 100644 --- a/deskutils/merkuro/distinfo +++ b/deskutils/merkuro/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1757409703 -SHA256 (KDE/release-service/25.08.1/merkuro-25.08.1.tar.xz) = 827c461bfefcce9dfc3f7ad9fdfa340710c8bcff5ab0bd70dfcbe4e72636a3cc -SIZE (KDE/release-service/25.08.1/merkuro-25.08.1.tar.xz) = 826724 +TIMESTAMP = 1759874639 +SHA256 (KDE/release-service/25.08.2/merkuro-25.08.2.tar.xz) = ea7e998493bc6b46e73723173b5f3cdab39c95c95cae903cb17cfe2a878eb345 +SIZE (KDE/release-service/25.08.2/merkuro-25.08.2.tar.xz) = 826704 diff --git a/deskutils/pim-data-exporter/distinfo b/deskutils/pim-data-exporter/distinfo index a65ac1bea376..8c93a09d2f95 100644 --- a/deskutils/pim-data-exporter/distinfo +++ b/deskutils/pim-data-exporter/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1757409705 -SHA256 (KDE/release-service/25.08.1/pim-data-exporter-25.08.1.tar.xz) = 9b4eb20da597132e710e9be28a1555935cebb213abe6d566bc848dff6103fc34 -SIZE (KDE/release-service/25.08.1/pim-data-exporter-25.08.1.tar.xz) = 430508 +TIMESTAMP = 1759874641 +SHA256 (KDE/release-service/25.08.2/pim-data-exporter-25.08.2.tar.xz) = 9b8e47f52c453262c939a4faa4a3f8cc499dd9180564c047751b6c5a9df04f27 +SIZE (KDE/release-service/25.08.2/pim-data-exporter-25.08.2.tar.xz) = 430572 diff --git a/deskutils/pim-sieve-editor/distinfo b/deskutils/pim-sieve-editor/distinfo index 842939cf1d79..48de83e5d058 100644 --- a/deskutils/pim-sieve-editor/distinfo +++ b/deskutils/pim-sieve-editor/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1757409708 -SHA256 (KDE/release-service/25.08.1/pim-sieve-editor-25.08.1.tar.xz) = 146213154f8f9175fa1b1d0642abfd91a62e00590bda17246e3ebba1a3d806f0 -SIZE (KDE/release-service/25.08.1/pim-sieve-editor-25.08.1.tar.xz) = 483196 +TIMESTAMP = 1759874643 +SHA256 (KDE/release-service/25.08.2/pim-sieve-editor-25.08.2.tar.xz) = fbacc97eae7a06bf4df11a9cdebbc9fa56a29e8cfccc0072958e8e24a3746275 +SIZE (KDE/release-service/25.08.2/pim-sieve-editor-25.08.2.tar.xz) = 483276 diff --git a/deskutils/zanshin/distinfo b/deskutils/zanshin/distinfo index ca72e86cc03d..bbcbc1465ec4 100644 --- a/deskutils/zanshin/distinfo +++ b/deskutils/zanshin/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1757409710 -SHA256 (KDE/release-service/25.08.1/zanshin-25.08.1.tar.xz) = 931c87f44a7ca96ebc24df922c220b6e64b0a374195927ea8ed22848d6abceb7 -SIZE (KDE/release-service/25.08.1/zanshin-25.08.1.tar.xz) = 387340 +TIMESTAMP = 1759874646 +SHA256 (KDE/release-service/25.08.2/zanshin-25.08.2.tar.xz) = 4b922777cc31684fcdb0a0f7fac790f20ee4de22927bc1909ffed3a42aa91390 +SIZE (KDE/release-service/25.08.2/zanshin-25.08.2.tar.xz) = 387344 diff --git a/devel/dolphin-plugins/distinfo b/devel/dolphin-plugins/distinfo index 018b6e94ddcd..78cc8cb5bd74 100644 --- a/devel/dolphin-plugins/distinfo +++ b/devel/dolphin-plugins/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1757409712 -SHA256 (KDE/release-service/25.08.1/dolphin-plugins-25.08.1.tar.xz) = 77f422d5fd85df540707cfdaaf042083841a2b8fa78ba74fffaf27f6d31c19cb -SIZE (KDE/release-service/25.08.1/dolphin-plugins-25.08.1.tar.xz) = 330464 +TIMESTAMP = 1759874648 +SHA256 (KDE/release-service/25.08.2/dolphin-plugins-25.08.2.tar.xz) = 4311dd59b94a012625e7fb6587d4f0ec010db2571cb2b5087af01909cf150fc8 +SIZE (KDE/release-service/25.08.2/dolphin-plugins-25.08.2.tar.xz) = 336892 diff --git a/devel/dolphin-plugins/pkg-plist b/devel/dolphin-plugins/pkg-plist index b1353911d3ec..67868af68725 100644 --- a/devel/dolphin-plugins/pkg-plist +++ b/devel/dolphin-plugins/pkg-plist @@ -1,304 +1,309 @@ %%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/fileviewbazaarplugin.mo +share/locale/ar/LC_MESSAGES/fileviewgitplugin.mo +share/locale/ar/LC_MESSAGES/fileviewhgplugin.mo +share/locale/ar/LC_MESSAGES/fileviewsvnplugin.mo +share/locale/ar/LC_MESSAGES/makefileactions.mo 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/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 4cc582d73586..f2e4a098f27e 100644 --- a/devel/kapptemplate/distinfo +++ b/devel/kapptemplate/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1757409715 -SHA256 (KDE/release-service/25.08.1/kapptemplate-25.08.1.tar.xz) = 1f2548352fff86b315eaad5df3aae94f853ec8bf910553b2c488a50d32397b42 -SIZE (KDE/release-service/25.08.1/kapptemplate-25.08.1.tar.xz) = 479704 +TIMESTAMP = 1759874651 +SHA256 (KDE/release-service/25.08.2/kapptemplate-25.08.2.tar.xz) = a9b7ef80773c77e9c81c8f519790abda40f6aca17ddec240e9c2f4cdca7cf942 +SIZE (KDE/release-service/25.08.2/kapptemplate-25.08.2.tar.xz) = 481204 diff --git a/devel/kapptemplate/pkg-plist b/devel/kapptemplate/pkg-plist index 1c4045206a1d..137cd9967001 100644 --- a/devel/kapptemplate/pkg-plist +++ b/devel/kapptemplate/pkg-plist @@ -1,67 +1,68 @@ bin/kapptemplate share/applications/org.kde.kapptemplate.desktop share/config.kcfg/kapptemplate.kcfg share/icons/hicolor/128x128/apps/kapptemplate.png share/icons/hicolor/16x16/apps/kapptemplate.png share/icons/hicolor/22x22/apps/kapptemplate.png share/icons/hicolor/32x32/apps/kapptemplate.png share/icons/hicolor/48x48/apps/kapptemplate.png share/icons/hicolor/64x64/apps/kapptemplate.png share/icons/hicolor/scalable/apps/kapptemplate.svg share/kdevappwizard/templates/kde-frameworks6-simple.tar.bz2 share/kdevappwizard/templates/kde-frameworks6.tar.bz2 +share/locale/ar/LC_MESSAGES/kapptemplate.mo share/locale/ast/LC_MESSAGES/kapptemplate.mo share/locale/bg/LC_MESSAGES/kapptemplate.mo share/locale/bs/LC_MESSAGES/kapptemplate.mo share/locale/ca/LC_MESSAGES/kapptemplate.mo share/locale/ca@valencia/LC_MESSAGES/kapptemplate.mo share/locale/cs/LC_MESSAGES/kapptemplate.mo share/locale/da/LC_MESSAGES/kapptemplate.mo share/locale/de/LC_MESSAGES/kapptemplate.mo share/locale/el/LC_MESSAGES/kapptemplate.mo share/locale/en_GB/LC_MESSAGES/kapptemplate.mo share/locale/eo/LC_MESSAGES/kapptemplate.mo share/locale/es/LC_MESSAGES/kapptemplate.mo share/locale/et/LC_MESSAGES/kapptemplate.mo share/locale/eu/LC_MESSAGES/kapptemplate.mo share/locale/fi/LC_MESSAGES/kapptemplate.mo share/locale/fr/LC_MESSAGES/kapptemplate.mo share/locale/ga/LC_MESSAGES/kapptemplate.mo share/locale/gl/LC_MESSAGES/kapptemplate.mo share/locale/he/LC_MESSAGES/kapptemplate.mo share/locale/hi/LC_MESSAGES/kapptemplate.mo share/locale/hu/LC_MESSAGES/kapptemplate.mo share/locale/ia/LC_MESSAGES/kapptemplate.mo share/locale/it/LC_MESSAGES/kapptemplate.mo share/locale/ja/LC_MESSAGES/kapptemplate.mo share/locale/ka/LC_MESSAGES/kapptemplate.mo share/locale/kk/LC_MESSAGES/kapptemplate.mo share/locale/ko/LC_MESSAGES/kapptemplate.mo share/locale/lt/LC_MESSAGES/kapptemplate.mo share/locale/lv/LC_MESSAGES/kapptemplate.mo share/locale/mr/LC_MESSAGES/kapptemplate.mo share/locale/nb/LC_MESSAGES/kapptemplate.mo share/locale/nds/LC_MESSAGES/kapptemplate.mo share/locale/nl/LC_MESSAGES/kapptemplate.mo share/locale/nn/LC_MESSAGES/kapptemplate.mo share/locale/pl/LC_MESSAGES/kapptemplate.mo share/locale/pt/LC_MESSAGES/kapptemplate.mo share/locale/pt_BR/LC_MESSAGES/kapptemplate.mo share/locale/ru/LC_MESSAGES/kapptemplate.mo share/locale/sa/LC_MESSAGES/kapptemplate.mo share/locale/sk/LC_MESSAGES/kapptemplate.mo share/locale/sl/LC_MESSAGES/kapptemplate.mo share/locale/sq/LC_MESSAGES/kapptemplate.mo share/locale/sr/LC_MESSAGES/kapptemplate.mo share/locale/sr@ijekavian/LC_MESSAGES/kapptemplate.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kapptemplate.mo share/locale/sr@latin/LC_MESSAGES/kapptemplate.mo share/locale/sv/LC_MESSAGES/kapptemplate.mo share/locale/th/LC_MESSAGES/kapptemplate.mo share/locale/tr/LC_MESSAGES/kapptemplate.mo share/locale/ug/LC_MESSAGES/kapptemplate.mo share/locale/uk/LC_MESSAGES/kapptemplate.mo share/locale/zh_CN/LC_MESSAGES/kapptemplate.mo share/locale/zh_TW/LC_MESSAGES/kapptemplate.mo share/metainfo/org.kde.kapptemplate.appdata.xml share/qlogging-categories6/kapptemplate.categories diff --git a/devel/kcachegrind/distinfo b/devel/kcachegrind/distinfo index 9c5665e27857..3189a240874f 100644 --- a/devel/kcachegrind/distinfo +++ b/devel/kcachegrind/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1757409717 -SHA256 (KDE/release-service/25.08.1/kcachegrind-25.08.1.tar.xz) = 65eb86ee20cfe5f9c68554e20758fa907cfc9851808b14415192612560f67085 -SIZE (KDE/release-service/25.08.1/kcachegrind-25.08.1.tar.xz) = 992380 +TIMESTAMP = 1759874653 +SHA256 (KDE/release-service/25.08.2/kcachegrind-25.08.2.tar.xz) = 8d50c071a23db62acecdf22d6e94396aa03e4d5ff97acc7d2be84863b34fbfc8 +SIZE (KDE/release-service/25.08.2/kcachegrind-25.08.2.tar.xz) = 1001140 diff --git a/devel/kcachegrind/pkg-plist b/devel/kcachegrind/pkg-plist index 15b389b9787c..6cc63e53cc36 100644 --- a/devel/kcachegrind/pkg-plist +++ b/devel/kcachegrind/pkg-plist @@ -1,131 +1,132 @@ bin/dprof2calltree bin/hotshot2calltree bin/kcachegrind bin/memprof2calltree bin/op2calltree bin/pprof2calltree share/applications/org.kde.kcachegrind.desktop share/icons/hicolor/128x128/apps/kcachegrind.png share/icons/hicolor/32x32/apps/kcachegrind.png share/icons/hicolor/48x48/apps/kcachegrind.png share/icons/hicolor/64x64/apps/kcachegrind.png %%DATADIR%%/icons/hicolor/16x16/actions/move.png %%DATADIR%%/icons/hicolor/16x16/actions/percent.png %%DATADIR%%/icons/hicolor/22x22/actions/hidetemplates.png %%DATADIR%%/icons/hicolor/22x22/actions/move.png %%DATADIR%%/icons/hicolor/22x22/actions/percent.png %%DATADIR%%/icons/hicolor/32x32/actions/percent.png %%DATADIR%%/tips share/locale/ar/LC_MESSAGES/kcachegrind.mo +share/locale/ar/LC_MESSAGES/kcachegrind_qt.qm share/locale/ast/LC_MESSAGES/kcachegrind.mo share/locale/ast/LC_MESSAGES/kcachegrind_qt.qm share/locale/be/LC_MESSAGES/kcachegrind.mo share/locale/bg/LC_MESSAGES/kcachegrind.mo share/locale/bg/LC_MESSAGES/kcachegrind_qt.qm share/locale/br/LC_MESSAGES/kcachegrind.mo share/locale/bs/LC_MESSAGES/kcachegrind.mo share/locale/bs/LC_MESSAGES/kcachegrind_qt.qm share/locale/ca/LC_MESSAGES/kcachegrind.mo share/locale/ca/LC_MESSAGES/kcachegrind_qt.qm share/locale/ca@valencia/LC_MESSAGES/kcachegrind.mo share/locale/ca@valencia/LC_MESSAGES/kcachegrind_qt.qm share/locale/cs/LC_MESSAGES/kcachegrind.mo share/locale/cs/LC_MESSAGES/kcachegrind_qt.qm share/locale/cy/LC_MESSAGES/kcachegrind.mo share/locale/da/LC_MESSAGES/kcachegrind.mo share/locale/da/LC_MESSAGES/kcachegrind_qt.qm share/locale/de/LC_MESSAGES/kcachegrind.mo share/locale/de/LC_MESSAGES/kcachegrind_qt.qm share/locale/el/LC_MESSAGES/kcachegrind.mo share/locale/el/LC_MESSAGES/kcachegrind_qt.qm share/locale/en/LC_MESSAGES/kcachegrind_qt.qm share/locale/en_GB/LC_MESSAGES/kcachegrind.mo share/locale/en_GB/LC_MESSAGES/kcachegrind_qt.qm share/locale/eo/LC_MESSAGES/kcachegrind.mo share/locale/eo/LC_MESSAGES/kcachegrind_qt.qm share/locale/es/LC_MESSAGES/kcachegrind.mo share/locale/es/LC_MESSAGES/kcachegrind_qt.qm share/locale/et/LC_MESSAGES/kcachegrind.mo share/locale/et/LC_MESSAGES/kcachegrind_qt.qm share/locale/eu/LC_MESSAGES/kcachegrind.mo share/locale/eu/LC_MESSAGES/kcachegrind_qt.qm share/locale/fa/LC_MESSAGES/kcachegrind.mo share/locale/fi/LC_MESSAGES/kcachegrind.mo share/locale/fi/LC_MESSAGES/kcachegrind_qt.qm share/locale/fr/LC_MESSAGES/kcachegrind.mo share/locale/fr/LC_MESSAGES/kcachegrind_qt.qm share/locale/ga/LC_MESSAGES/kcachegrind.mo share/locale/ga/LC_MESSAGES/kcachegrind_qt.qm share/locale/gl/LC_MESSAGES/kcachegrind.mo share/locale/gl/LC_MESSAGES/kcachegrind_qt.qm share/locale/hi/LC_MESSAGES/kcachegrind.mo share/locale/hi/LC_MESSAGES/kcachegrind_qt.qm share/locale/hne/LC_MESSAGES/kcachegrind.mo share/locale/hr/LC_MESSAGES/kcachegrind.mo share/locale/hr/LC_MESSAGES/kcachegrind_qt.qm share/locale/hu/LC_MESSAGES/kcachegrind.mo share/locale/hu/LC_MESSAGES/kcachegrind_qt.qm share/locale/ia/LC_MESSAGES/kcachegrind.mo share/locale/ia/LC_MESSAGES/kcachegrind_qt.qm share/locale/it/LC_MESSAGES/kcachegrind.mo share/locale/it/LC_MESSAGES/kcachegrind_qt.qm share/locale/ja/LC_MESSAGES/kcachegrind.mo share/locale/ja/LC_MESSAGES/kcachegrind_qt.qm share/locale/ka/LC_MESSAGES/kcachegrind.mo share/locale/ka/LC_MESSAGES/kcachegrind_qt.qm share/locale/kk/LC_MESSAGES/kcachegrind.mo share/locale/kk/LC_MESSAGES/kcachegrind_qt.qm share/locale/km/LC_MESSAGES/kcachegrind.mo share/locale/ko/LC_MESSAGES/kcachegrind.mo share/locale/ko/LC_MESSAGES/kcachegrind_qt.qm share/locale/lt/LC_MESSAGES/kcachegrind.mo share/locale/lt/LC_MESSAGES/kcachegrind_qt.qm share/locale/mai/LC_MESSAGES/kcachegrind.mo share/locale/mai/LC_MESSAGES/kcachegrind_qt.qm share/locale/mr/LC_MESSAGES/kcachegrind.mo share/locale/mr/LC_MESSAGES/kcachegrind_qt.qm share/locale/ms/LC_MESSAGES/kcachegrind.mo share/locale/nb/LC_MESSAGES/kcachegrind.mo share/locale/nb/LC_MESSAGES/kcachegrind_qt.qm share/locale/nds/LC_MESSAGES/kcachegrind.mo share/locale/nds/LC_MESSAGES/kcachegrind_qt.qm share/locale/ne/LC_MESSAGES/kcachegrind.mo share/locale/nl/LC_MESSAGES/kcachegrind.mo share/locale/nl/LC_MESSAGES/kcachegrind_qt.qm share/locale/nn/LC_MESSAGES/kcachegrind.mo share/locale/nn/LC_MESSAGES/kcachegrind_qt.qm share/locale/oc/LC_MESSAGES/kcachegrind.mo share/locale/pa/LC_MESSAGES/kcachegrind.mo share/locale/pl/LC_MESSAGES/kcachegrind.mo share/locale/pl/LC_MESSAGES/kcachegrind_qt.qm share/locale/pt/LC_MESSAGES/kcachegrind.mo share/locale/pt/LC_MESSAGES/kcachegrind_qt.qm share/locale/pt_BR/LC_MESSAGES/kcachegrind.mo share/locale/pt_BR/LC_MESSAGES/kcachegrind_qt.qm share/locale/ro/LC_MESSAGES/kcachegrind.mo share/locale/ru/LC_MESSAGES/kcachegrind.mo share/locale/ru/LC_MESSAGES/kcachegrind_qt.qm share/locale/sa/LC_MESSAGES/kcachegrind.mo share/locale/sa/LC_MESSAGES/kcachegrind_qt.qm share/locale/se/LC_MESSAGES/kcachegrind.mo share/locale/se/LC_MESSAGES/kcachegrind_qt.qm share/locale/sk/LC_MESSAGES/kcachegrind.mo share/locale/sk/LC_MESSAGES/kcachegrind_qt.qm share/locale/sl/LC_MESSAGES/kcachegrind.mo share/locale/sl/LC_MESSAGES/kcachegrind_qt.qm share/locale/sq/LC_MESSAGES/kcachegrind.mo share/locale/sv/LC_MESSAGES/kcachegrind.mo share/locale/sv/LC_MESSAGES/kcachegrind_qt.qm share/locale/ta/LC_MESSAGES/kcachegrind.mo share/locale/tg/LC_MESSAGES/kcachegrind.mo share/locale/tr/LC_MESSAGES/kcachegrind.mo share/locale/tr/LC_MESSAGES/kcachegrind_qt.qm share/locale/ug/LC_MESSAGES/kcachegrind.mo share/locale/ug/LC_MESSAGES/kcachegrind_qt.qm share/locale/uk/LC_MESSAGES/kcachegrind.mo share/locale/uk/LC_MESSAGES/kcachegrind_qt.qm share/locale/zh_CN/LC_MESSAGES/kcachegrind.mo share/locale/zh_CN/LC_MESSAGES/kcachegrind_qt.qm share/locale/zh_TW/LC_MESSAGES/kcachegrind.mo share/locale/zh_TW/LC_MESSAGES/kcachegrind_qt.qm share/metainfo/org.kde.kcachegrind.appdata.xml diff --git a/devel/kde-dev-scripts/distinfo b/devel/kde-dev-scripts/distinfo index 7102aef3b048..bfa455c6eaea 100644 --- a/devel/kde-dev-scripts/distinfo +++ b/devel/kde-dev-scripts/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1757409917 -SHA256 (KDE/release-service/25.08.1/kde-dev-scripts-25.08.1.tar.xz) = 4732ac53f91e6b70e484916fbfbd2e6709260b385fdcd2fb49dcb7854383f6f7 -SIZE (KDE/release-service/25.08.1/kde-dev-scripts-25.08.1.tar.xz) = 377016 +TIMESTAMP = 1759874654 +SHA256 (KDE/release-service/25.08.2/kde-dev-scripts-25.08.2.tar.xz) = e1d72bc3210fb568f2effdb1bb3f9a58c4da778af1ba4b005e138e9aa17a35e9 +SIZE (KDE/release-service/25.08.2/kde-dev-scripts-25.08.2.tar.xz) = 376972 diff --git a/devel/kde-dev-utils/distinfo b/devel/kde-dev-utils/distinfo index 9b2e77f443cb..4a20dc67fbc0 100644 --- a/devel/kde-dev-utils/distinfo +++ b/devel/kde-dev-utils/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1757409719 -SHA256 (KDE/release-service/25.08.1/kde-dev-utils-25.08.1.tar.xz) = 28eae56d7115ef85e193c69712dca18a6fef9f7b733997df4b21f5451dac9db3 -SIZE (KDE/release-service/25.08.1/kde-dev-utils-25.08.1.tar.xz) = 77048 +TIMESTAMP = 1759874656 +SHA256 (KDE/release-service/25.08.2/kde-dev-utils-25.08.2.tar.xz) = 2686c98e8f827ce337463a746554357632bfe9a5dfa3a84e5c55f6ef7b2d3247 +SIZE (KDE/release-service/25.08.2/kde-dev-utils-25.08.2.tar.xz) = 77604 diff --git a/devel/kde-dev-utils/pkg-plist b/devel/kde-dev-utils/pkg-plist index bb38a5d8718c..f4db6af65728 100644 --- a/devel/kde-dev-utils/pkg-plist +++ b/devel/kde-dev-utils/pkg-plist @@ -1,134 +1,135 @@ bin/kpartloader bin/kuiviewer %%QT_PLUGINDIR%%/kf6/parts/kuiviewerpart.so %%QT_PLUGINDIR%%/kf6/thumbcreator/quithumbnail.so share/applications/org.kde.kuiviewer.desktop share/icons/hicolor/128x128/apps/kuiviewer.png share/icons/hicolor/16x16/apps/kuiviewer.png share/icons/hicolor/32x32/apps/kuiviewer.png share/icons/hicolor/48x48/apps/kuiviewer.png share/icons/hicolor/64x64/apps/kuiviewer.png share/icons/hicolor/scalable/apps/kuiviewer.svg +share/locale/ar/LC_MESSAGES/kpartloader.mo share/locale/ar/LC_MESSAGES/kuiviewer.mo share/locale/ast/LC_MESSAGES/kpartloader.mo share/locale/ast/LC_MESSAGES/kuiviewer.mo share/locale/az/LC_MESSAGES/kpartloader.mo share/locale/az/LC_MESSAGES/kuiviewer.mo share/locale/be/LC_MESSAGES/kuiviewer.mo share/locale/bg/LC_MESSAGES/kpartloader.mo share/locale/bg/LC_MESSAGES/kuiviewer.mo share/locale/br/LC_MESSAGES/kuiviewer.mo share/locale/bs/LC_MESSAGES/kpartloader.mo share/locale/bs/LC_MESSAGES/kuiviewer.mo share/locale/ca/LC_MESSAGES/kpartloader.mo share/locale/ca/LC_MESSAGES/kuiviewer.mo share/locale/ca@valencia/LC_MESSAGES/kpartloader.mo share/locale/ca@valencia/LC_MESSAGES/kuiviewer.mo share/locale/cs/LC_MESSAGES/kpartloader.mo share/locale/cs/LC_MESSAGES/kuiviewer.mo share/locale/cy/LC_MESSAGES/kuiviewer.mo share/locale/da/LC_MESSAGES/kpartloader.mo share/locale/da/LC_MESSAGES/kuiviewer.mo share/locale/de/LC_MESSAGES/kpartloader.mo share/locale/de/LC_MESSAGES/kuiviewer.mo share/locale/el/LC_MESSAGES/kpartloader.mo share/locale/el/LC_MESSAGES/kuiviewer.mo share/locale/en_GB/LC_MESSAGES/kpartloader.mo share/locale/en_GB/LC_MESSAGES/kuiviewer.mo share/locale/eo/LC_MESSAGES/kpartloader.mo share/locale/eo/LC_MESSAGES/kuiviewer.mo share/locale/es/LC_MESSAGES/kpartloader.mo share/locale/es/LC_MESSAGES/kuiviewer.mo share/locale/et/LC_MESSAGES/kpartloader.mo share/locale/et/LC_MESSAGES/kuiviewer.mo share/locale/eu/LC_MESSAGES/kpartloader.mo share/locale/eu/LC_MESSAGES/kuiviewer.mo share/locale/fa/LC_MESSAGES/kuiviewer.mo share/locale/fi/LC_MESSAGES/kpartloader.mo share/locale/fi/LC_MESSAGES/kuiviewer.mo share/locale/fr/LC_MESSAGES/kpartloader.mo share/locale/fr/LC_MESSAGES/kuiviewer.mo share/locale/ga/LC_MESSAGES/kpartloader.mo share/locale/ga/LC_MESSAGES/kuiviewer.mo share/locale/gl/LC_MESSAGES/kpartloader.mo share/locale/gl/LC_MESSAGES/kuiviewer.mo share/locale/he/LC_MESSAGES/kpartloader.mo share/locale/he/LC_MESSAGES/kuiviewer.mo share/locale/hi/LC_MESSAGES/kpartloader.mo share/locale/hi/LC_MESSAGES/kuiviewer.mo share/locale/hne/LC_MESSAGES/kuiviewer.mo share/locale/hr/LC_MESSAGES/kpartloader.mo share/locale/hu/LC_MESSAGES/kpartloader.mo share/locale/hu/LC_MESSAGES/kuiviewer.mo share/locale/ia/LC_MESSAGES/kpartloader.mo share/locale/ia/LC_MESSAGES/kuiviewer.mo share/locale/id/LC_MESSAGES/kpartloader.mo share/locale/id/LC_MESSAGES/kuiviewer.mo share/locale/is/LC_MESSAGES/kuiviewer.mo share/locale/it/LC_MESSAGES/kpartloader.mo share/locale/it/LC_MESSAGES/kuiviewer.mo share/locale/ja/LC_MESSAGES/kpartloader.mo share/locale/ja/LC_MESSAGES/kuiviewer.mo share/locale/ka/LC_MESSAGES/kpartloader.mo share/locale/ka/LC_MESSAGES/kuiviewer.mo share/locale/kk/LC_MESSAGES/kpartloader.mo share/locale/kk/LC_MESSAGES/kuiviewer.mo share/locale/km/LC_MESSAGES/kuiviewer.mo share/locale/ko/LC_MESSAGES/kpartloader.mo share/locale/ko/LC_MESSAGES/kuiviewer.mo share/locale/lt/LC_MESSAGES/kpartloader.mo share/locale/lt/LC_MESSAGES/kuiviewer.mo share/locale/lv/LC_MESSAGES/kpartloader.mo share/locale/lv/LC_MESSAGES/kuiviewer.mo share/locale/mk/LC_MESSAGES/kuiviewer.mo share/locale/mr/LC_MESSAGES/kpartloader.mo share/locale/mr/LC_MESSAGES/kuiviewer.mo share/locale/ms/LC_MESSAGES/kuiviewer.mo share/locale/nb/LC_MESSAGES/kpartloader.mo share/locale/nb/LC_MESSAGES/kuiviewer.mo share/locale/nds/LC_MESSAGES/kpartloader.mo share/locale/nds/LC_MESSAGES/kuiviewer.mo share/locale/ne/LC_MESSAGES/kuiviewer.mo share/locale/nl/LC_MESSAGES/kpartloader.mo share/locale/nl/LC_MESSAGES/kuiviewer.mo share/locale/nn/LC_MESSAGES/kpartloader.mo share/locale/nn/LC_MESSAGES/kuiviewer.mo share/locale/oc/LC_MESSAGES/kuiviewer.mo share/locale/pa/LC_MESSAGES/kpartloader.mo share/locale/pa/LC_MESSAGES/kuiviewer.mo share/locale/pl/LC_MESSAGES/kpartloader.mo share/locale/pl/LC_MESSAGES/kuiviewer.mo share/locale/pt/LC_MESSAGES/kpartloader.mo share/locale/pt/LC_MESSAGES/kuiviewer.mo share/locale/pt_BR/LC_MESSAGES/kpartloader.mo share/locale/pt_BR/LC_MESSAGES/kuiviewer.mo share/locale/ro/LC_MESSAGES/kpartloader.mo share/locale/ro/LC_MESSAGES/kuiviewer.mo share/locale/ru/LC_MESSAGES/kpartloader.mo share/locale/ru/LC_MESSAGES/kuiviewer.mo share/locale/sa/LC_MESSAGES/kpartloader.mo share/locale/sa/LC_MESSAGES/kuiviewer.mo share/locale/se/LC_MESSAGES/kuiviewer.mo share/locale/sk/LC_MESSAGES/kpartloader.mo share/locale/sk/LC_MESSAGES/kuiviewer.mo share/locale/sl/LC_MESSAGES/kpartloader.mo share/locale/sl/LC_MESSAGES/kuiviewer.mo share/locale/sq/LC_MESSAGES/kpartloader.mo share/locale/sq/LC_MESSAGES/kuiviewer.mo share/locale/sv/LC_MESSAGES/kpartloader.mo share/locale/sv/LC_MESSAGES/kuiviewer.mo share/locale/ta/LC_MESSAGES/kuiviewer.mo share/locale/tg/LC_MESSAGES/kuiviewer.mo share/locale/th/LC_MESSAGES/kuiviewer.mo share/locale/tr/LC_MESSAGES/kpartloader.mo share/locale/tr/LC_MESSAGES/kuiviewer.mo share/locale/ug/LC_MESSAGES/kpartloader.mo share/locale/ug/LC_MESSAGES/kuiviewer.mo share/locale/uk/LC_MESSAGES/kpartloader.mo share/locale/uk/LC_MESSAGES/kuiviewer.mo share/locale/zh_CN/LC_MESSAGES/kpartloader.mo share/locale/zh_CN/LC_MESSAGES/kuiviewer.mo share/locale/zh_TW/LC_MESSAGES/kpartloader.mo share/locale/zh_TW/LC_MESSAGES/kuiviewer.mo share/metainfo/org.kde.kuiviewer.metainfo.xml share/metainfo/org.kde.kuiviewerpart.metainfo.xml diff --git a/devel/kdesdk-kio/distinfo b/devel/kdesdk-kio/distinfo index 6e6bc916b8c7..6bdcd17ed9e4 100644 --- a/devel/kdesdk-kio/distinfo +++ b/devel/kdesdk-kio/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1757409722 -SHA256 (KDE/release-service/25.08.1/kdesdk-kio-25.08.1.tar.xz) = 995ed0bc07a7c0555bf9dc3a87cc020c742f28c1332b84c2c117bf44e538014d -SIZE (KDE/release-service/25.08.1/kdesdk-kio-25.08.1.tar.xz) = 42968 +TIMESTAMP = 1759874658 +SHA256 (KDE/release-service/25.08.2/kdesdk-kio-25.08.2.tar.xz) = 0b9cbc9166f4982e09b1098dbcb101d31979ff4f072d0d64a9ea63f52c264975 +SIZE (KDE/release-service/25.08.2/kdesdk-kio-25.08.2.tar.xz) = 42960 diff --git a/devel/kdesdk-thumbnailers/distinfo b/devel/kdesdk-thumbnailers/distinfo index 7222398ab50b..e9d78b30068d 100644 --- a/devel/kdesdk-thumbnailers/distinfo +++ b/devel/kdesdk-thumbnailers/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1757409724 -SHA256 (KDE/release-service/25.08.1/kdesdk-thumbnailers-25.08.1.tar.xz) = 38931ce4eae4b1a16790668e3687fe7326cfbecdbf74762bff4bd90176d9ab1e -SIZE (KDE/release-service/25.08.1/kdesdk-thumbnailers-25.08.1.tar.xz) = 27372 +TIMESTAMP = 1759874661 +SHA256 (KDE/release-service/25.08.2/kdesdk-thumbnailers-25.08.2.tar.xz) = 58bf52d881a64ee428b0ee9d028edff06ebe87d922584e26d77afce81ec0c3b3 +SIZE (KDE/release-service/25.08.2/kdesdk-thumbnailers-25.08.2.tar.xz) = 27392 diff --git a/devel/kdev-php/distinfo b/devel/kdev-php/distinfo index 805d02bdbeb5..4f8a6fbb7d03 100644 --- a/devel/kdev-php/distinfo +++ b/devel/kdev-php/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1757409726 -SHA256 (KDE/release-service/25.08.1/kdev-php-25.08.1.tar.xz) = ad647ef411aa8b041ad01982b881002f103e394f357b0185af7d202c3baa500c -SIZE (KDE/release-service/25.08.1/kdev-php-25.08.1.tar.xz) = 1099072 +TIMESTAMP = 1759874663 +SHA256 (KDE/release-service/25.08.2/kdev-php-25.08.2.tar.xz) = ee6e08254eaf11e67decbb18e6c172c503042da84038099382bca1266e3b990d +SIZE (KDE/release-service/25.08.2/kdev-php-25.08.2.tar.xz) = 1101020 diff --git a/devel/kdev-php/pkg-plist b/devel/kdev-php/pkg-plist index 68afe641c407..0745f6685137 100644 --- a/devel/kdev-php/pkg-plist +++ b/devel/kdev-php/pkg-plist @@ -1,75 +1,76 @@ include/kdev-php/kdevphpversion.h include/kdev-php/parser/parsesession.h include/kdev-php/parser/phplexer.h include/kdev-php/parser/tokenstream.h include/kdev-php/private/%%PRIVATE_VER%%/parser/parserexport.h include/kdev-php/private/%%PRIVATE_VER%%/parser/phpast-fwd.h include/kdev-php/private/%%PRIVATE_VER%%/parser/phpast.h include/kdev-php/private/%%PRIVATE_VER%%/parser/phpdebugvisitor.h include/kdev-php/private/%%PRIVATE_VER%%/parser/phpdefaultvisitor.h include/kdev-php/private/%%PRIVATE_VER%%/parser/phpparser.h include/kdev-php/private/%%PRIVATE_VER%%/parser/phptokentext.h include/kdev-php/private/%%PRIVATE_VER%%/parser/phptokentype.h include/kdev-php/private/%%PRIVATE_VER%%/parser/phpvisitor.h lib/cmake/KDevPHP/KDevPHPConfig.cmake lib/cmake/KDevPHP/KDevPHPConfigVersion.cmake lib/cmake/KDevPHP/KDevPHPTargets-%%CMAKE_BUILD_TYPE%%.cmake lib/cmake/KDevPHP/KDevPHPTargets.cmake lib/libkdevphpcompletion.so lib/libkdevphpduchain.so lib/libkdevphpparser.so %%QT_PLUGINDIR%%/kdevplatform/%%PLATFORM_VER%%/kdevphpdocs.so %%QT_PLUGINDIR%%/kdevplatform/%%PLATFORM_VER%%/kdevphplanguagesupport.so %%QT_PLUGINDIR%%/kdevplatform/%%PLATFORM_VER%%/kdevphpunitprovider.so share/kdevappwizard/templates/simple_phpapp.tar.bz2 share/kdevphpsupport/phpfunctions.php share/kdevphpsupport/phpunitdeclarations.php +share/locale/ar/LC_MESSAGES/kdevphp.mo share/locale/bs/LC_MESSAGES/kdevphp.mo share/locale/ca/LC_MESSAGES/kdevphp.mo share/locale/ca@valencia/LC_MESSAGES/kdevphp.mo share/locale/cs/LC_MESSAGES/kdevphp.mo share/locale/da/LC_MESSAGES/kdevphp.mo share/locale/de/LC_MESSAGES/kdevphp.mo share/locale/el/LC_MESSAGES/kdevphp.mo share/locale/en_GB/LC_MESSAGES/kdevphp.mo share/locale/eo/LC_MESSAGES/kdevphp.mo share/locale/es/LC_MESSAGES/kdevphp.mo share/locale/et/LC_MESSAGES/kdevphp.mo share/locale/eu/LC_MESSAGES/kdevphp.mo share/locale/fi/LC_MESSAGES/kdevphp.mo share/locale/fr/LC_MESSAGES/kdevphp.mo share/locale/ga/LC_MESSAGES/kdevphp.mo share/locale/gl/LC_MESSAGES/kdevphp.mo share/locale/he/LC_MESSAGES/kdevphp.mo share/locale/hi/LC_MESSAGES/kdevphp.mo share/locale/hr/LC_MESSAGES/kdevphp.mo share/locale/hu/LC_MESSAGES/kdevphp.mo share/locale/ia/LC_MESSAGES/kdevphp.mo share/locale/it/LC_MESSAGES/kdevphp.mo share/locale/ja/LC_MESSAGES/kdevphp.mo share/locale/ka/LC_MESSAGES/kdevphp.mo share/locale/kk/LC_MESSAGES/kdevphp.mo share/locale/ko/LC_MESSAGES/kdevphp.mo share/locale/lt/LC_MESSAGES/kdevphp.mo share/locale/mr/LC_MESSAGES/kdevphp.mo share/locale/nb/LC_MESSAGES/kdevphp.mo share/locale/nds/LC_MESSAGES/kdevphp.mo share/locale/nl/LC_MESSAGES/kdevphp.mo share/locale/nn/LC_MESSAGES/kdevphp.mo share/locale/pl/LC_MESSAGES/kdevphp.mo share/locale/pt/LC_MESSAGES/kdevphp.mo share/locale/pt_BR/LC_MESSAGES/kdevphp.mo share/locale/ro/LC_MESSAGES/kdevphp.mo share/locale/ru/LC_MESSAGES/kdevphp.mo share/locale/sa/LC_MESSAGES/kdevphp.mo share/locale/sk/LC_MESSAGES/kdevphp.mo share/locale/sl/LC_MESSAGES/kdevphp.mo share/locale/sv/LC_MESSAGES/kdevphp.mo share/locale/th/LC_MESSAGES/kdevphp.mo share/locale/tr/LC_MESSAGES/kdevphp.mo share/locale/ug/LC_MESSAGES/kdevphp.mo share/locale/uk/LC_MESSAGES/kdevphp.mo share/locale/zh_CN/LC_MESSAGES/kdevphp.mo share/locale/zh_TW/LC_MESSAGES/kdevphp.mo share/metainfo/org.kde.kdev-php.metainfo.xml share/qlogging-categories6/kdevphpsupport.categories diff --git a/devel/kdev-python/distinfo b/devel/kdev-python/distinfo index f988d121c5bc..bb019fc14da5 100644 --- a/devel/kdev-python/distinfo +++ b/devel/kdev-python/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1757409729 -SHA256 (KDE/release-service/25.08.1/kdev-python-25.08.1.tar.xz) = 65abb0adf6456cfd191ac0569bb9988c7b41a89bd372269377a2ed9dd6fafe7b -SIZE (KDE/release-service/25.08.1/kdev-python-25.08.1.tar.xz) = 1110180 +TIMESTAMP = 1759874666 +SHA256 (KDE/release-service/25.08.2/kdev-python-25.08.2.tar.xz) = 11297d05c417f9e7108ed3a1f205436e759ba9459c3c6f4f947359d6765142c5 +SIZE (KDE/release-service/25.08.2/kdev-python-25.08.2.tar.xz) = 1113212 diff --git a/devel/kdev-python/pkg-plist b/devel/kdev-python/pkg-plist index 8662eaafe394..1041ff3fda20 100644 --- a/devel/kdev-python/pkg-plist +++ b/devel/kdev-python/pkg-plist @@ -1,193 +1,194 @@ lib/libkdevpythoncompletion.so lib/libkdevpythonduchain.so lib/libkdevpythonparser.so %%QT_PLUGINDIR%%/kdevplatform/%%PLATFORM_VER%%/kdevpdb.so %%QT_PLUGINDIR%%/kdevplatform/%%PLATFORM_VER%%/kdevpythonlanguagesupport.so share/kdevappwizard/templates/django_project.tar.bz2 share/kdevappwizard/templates/qtdesigner_app.tar.bz2 share/kdevappwizard/templates/simple_pythonapp.tar.bz2 share/kdevpythonsupport/codestyle.py share/kdevpythonsupport/correction_files/matplotlib/_pylab_helpers.py share/kdevpythonsupport/correction_files/matplotlib/artist.py share/kdevpythonsupport/correction_files/matplotlib/backend_bases.py share/kdevpythonsupport/correction_files/matplotlib/figure.py share/kdevpythonsupport/correction_files/matplotlib/pyplot.py share/kdevpythonsupport/correction_files/re.py share/kdevpythonsupport/correction_files/string.py share/kdevpythonsupport/correction_files/testCorrectionFiles/example.py share/kdevpythonsupport/debugger/__kdevpython_debugger_utils.py share/kdevpythonsupport/debugger/kdevpdb.py share/kdevpythonsupport/documentation_files/COPYING share/kdevpythonsupport/documentation_files/PyKDE4/akonadi.py share/kdevpythonsupport/documentation_files/PyKDE4/dnssd.py share/kdevpythonsupport/documentation_files/PyKDE4/kdecore.py share/kdevpythonsupport/documentation_files/PyKDE4/kdeui.py share/kdevpythonsupport/documentation_files/PyKDE4/khtml.py share/kdevpythonsupport/documentation_files/PyKDE4/kio.py share/kdevpythonsupport/documentation_files/PyKDE4/knewstuff.py share/kdevpythonsupport/documentation_files/PyKDE4/kparts.py share/kdevpythonsupport/documentation_files/PyKDE4/kterminal.py share/kdevpythonsupport/documentation_files/PyKDE4/ktexteditor.py share/kdevpythonsupport/documentation_files/PyKDE4/kutils.py share/kdevpythonsupport/documentation_files/PyKDE4/nepomuk.py share/kdevpythonsupport/documentation_files/PyKDE4/parse_xml.py share/kdevpythonsupport/documentation_files/PyKDE4/phonon.py share/kdevpythonsupport/documentation_files/PyKDE4/plasma.py share/kdevpythonsupport/documentation_files/PyKDE4/polkitqt.py share/kdevpythonsupport/documentation_files/PyKDE4/solid.py share/kdevpythonsupport/documentation_files/PyKDE4/soprano.py share/kdevpythonsupport/documentation_files/PyQt4/Qt.py share/kdevpythonsupport/documentation_files/PyQt4/QtAssistant.py share/kdevpythonsupport/documentation_files/PyQt4/QtCore.py share/kdevpythonsupport/documentation_files/PyQt4/QtDBus.py share/kdevpythonsupport/documentation_files/PyQt4/QtDeclarative.py share/kdevpythonsupport/documentation_files/PyQt4/QtDesigner.py share/kdevpythonsupport/documentation_files/PyQt4/QtGui.py share/kdevpythonsupport/documentation_files/PyQt4/QtHelp.py share/kdevpythonsupport/documentation_files/PyQt4/QtMultimedia.py share/kdevpythonsupport/documentation_files/PyQt4/QtNetwork.py share/kdevpythonsupport/documentation_files/PyQt4/QtOpenGL.py share/kdevpythonsupport/documentation_files/PyQt4/QtScript.py share/kdevpythonsupport/documentation_files/PyQt4/QtScriptTools.py share/kdevpythonsupport/documentation_files/PyQt4/QtSql.py share/kdevpythonsupport/documentation_files/PyQt4/QtSvg.py share/kdevpythonsupport/documentation_files/PyQt4/QtTest.py share/kdevpythonsupport/documentation_files/PyQt4/QtWebKit.py share/kdevpythonsupport/documentation_files/PyQt4/QtXml.py share/kdevpythonsupport/documentation_files/PyQt4/QtXmlPatterns.py share/kdevpythonsupport/documentation_files/PyQt4/phonon.py share/kdevpythonsupport/documentation_files/PyQt5/QAxContainer.py share/kdevpythonsupport/documentation_files/PyQt5/Qt.py share/kdevpythonsupport/documentation_files/PyQt5/QtBluetooth.py share/kdevpythonsupport/documentation_files/PyQt5/QtCore.py share/kdevpythonsupport/documentation_files/PyQt5/QtDBus.py share/kdevpythonsupport/documentation_files/PyQt5/QtDesigner.py share/kdevpythonsupport/documentation_files/PyQt5/QtGui.py share/kdevpythonsupport/documentation_files/PyQt5/QtHelp.py share/kdevpythonsupport/documentation_files/PyQt5/QtLocation.py share/kdevpythonsupport/documentation_files/PyQt5/QtMacExtras.py share/kdevpythonsupport/documentation_files/PyQt5/QtMultimedia.py share/kdevpythonsupport/documentation_files/PyQt5/QtMultimediaWidgets.py share/kdevpythonsupport/documentation_files/PyQt5/QtNetwork.py share/kdevpythonsupport/documentation_files/PyQt5/QtNfc.py share/kdevpythonsupport/documentation_files/PyQt5/QtOpenGL.py share/kdevpythonsupport/documentation_files/PyQt5/QtPositioning.py share/kdevpythonsupport/documentation_files/PyQt5/QtPrintSupport.py share/kdevpythonsupport/documentation_files/PyQt5/QtQml.py share/kdevpythonsupport/documentation_files/PyQt5/QtQuick.py share/kdevpythonsupport/documentation_files/PyQt5/QtQuickWidgets.py share/kdevpythonsupport/documentation_files/PyQt5/QtSensors.py share/kdevpythonsupport/documentation_files/PyQt5/QtSerialPort.py share/kdevpythonsupport/documentation_files/PyQt5/QtSql.py share/kdevpythonsupport/documentation_files/PyQt5/QtSvg.py share/kdevpythonsupport/documentation_files/PyQt5/QtTest.py share/kdevpythonsupport/documentation_files/PyQt5/QtWebChannel.py share/kdevpythonsupport/documentation_files/PyQt5/QtWebEngineWidgets.py share/kdevpythonsupport/documentation_files/PyQt5/QtWebKit.py share/kdevpythonsupport/documentation_files/PyQt5/QtWebKitWidgets.py share/kdevpythonsupport/documentation_files/PyQt5/QtWebSockets.py share/kdevpythonsupport/documentation_files/PyQt5/QtWidgets.py share/kdevpythonsupport/documentation_files/PyQt5/QtWinExtras.py share/kdevpythonsupport/documentation_files/PyQt5/QtX11Extras.py share/kdevpythonsupport/documentation_files/PyQt5/QtXml.py share/kdevpythonsupport/documentation_files/PyQt5/QtXmlPatterns.py share/kdevpythonsupport/documentation_files/__builtin__.py share/kdevpythonsupport/documentation_files/__builtin_constants__.py share/kdevpythonsupport/documentation_files/__builtin_types__.py share/kdevpythonsupport/documentation_files/__future__.py share/kdevpythonsupport/documentation_files/_collections.py share/kdevpythonsupport/documentation_files/_sre.py share/kdevpythonsupport/documentation_files/array.py share/kdevpythonsupport/documentation_files/audioop.py share/kdevpythonsupport/documentation_files/binascii.py share/kdevpythonsupport/documentation_files/builtindocumentation.py share/kdevpythonsupport/documentation_files/bz2.py share/kdevpythonsupport/documentation_files/cPickle.py share/kdevpythonsupport/documentation_files/cStringIO.py share/kdevpythonsupport/documentation_files/cmath.py share/kdevpythonsupport/documentation_files/crypt.py share/kdevpythonsupport/documentation_files/dbm.py share/kdevpythonsupport/documentation_files/errno.py share/kdevpythonsupport/documentation_files/exceptions.py share/kdevpythonsupport/documentation_files/fcntl.py share/kdevpythonsupport/documentation_files/future_builtins.py share/kdevpythonsupport/documentation_files/gc.py share/kdevpythonsupport/documentation_files/gdbm.py share/kdevpythonsupport/documentation_files/grp.py share/kdevpythonsupport/documentation_files/imp.py share/kdevpythonsupport/documentation_files/io.py share/kdevpythonsupport/documentation_files/itertools.py share/kdevpythonsupport/documentation_files/linuxaudiodev.py share/kdevpythonsupport/documentation_files/marshal.py share/kdevpythonsupport/documentation_files/math.py share/kdevpythonsupport/documentation_files/mmap.py share/kdevpythonsupport/documentation_files/nis.py share/kdevpythonsupport/documentation_files/numpy.py share/kdevpythonsupport/documentation_files/operator.py share/kdevpythonsupport/documentation_files/ossaudiodev.py share/kdevpythonsupport/documentation_files/parser.py share/kdevpythonsupport/documentation_files/posix.py share/kdevpythonsupport/documentation_files/pwd.py share/kdevpythonsupport/documentation_files/pyexpat.py share/kdevpythonsupport/documentation_files/readline.py share/kdevpythonsupport/documentation_files/resource.py share/kdevpythonsupport/documentation_files/select.py share/kdevpythonsupport/documentation_files/signal.py share/kdevpythonsupport/documentation_files/spwd.py share/kdevpythonsupport/documentation_files/strop.py share/kdevpythonsupport/documentation_files/sys.py share/kdevpythonsupport/documentation_files/syslog.py share/kdevpythonsupport/documentation_files/termios.py share/kdevpythonsupport/documentation_files/thread.py share/kdevpythonsupport/documentation_files/time.py share/kdevpythonsupport/documentation_files/unicodedata.py share/kdevpythonsupport/documentation_files/zipimport.py share/kdevpythonsupport/documentation_files/zlib.py share/kdevpythonsupport/scripts/introspect.py +share/locale/ar/LC_MESSAGES/kdevpython.mo share/locale/bs/LC_MESSAGES/kdevpython.mo share/locale/ca/LC_MESSAGES/kdevpython.mo share/locale/ca@valencia/LC_MESSAGES/kdevpython.mo share/locale/cs/LC_MESSAGES/kdevpython.mo share/locale/da/LC_MESSAGES/kdevpython.mo share/locale/de/LC_MESSAGES/kdevpython.mo share/locale/en_GB/LC_MESSAGES/kdevpython.mo share/locale/eo/LC_MESSAGES/kdevpython.mo share/locale/es/LC_MESSAGES/kdevpython.mo share/locale/et/LC_MESSAGES/kdevpython.mo share/locale/eu/LC_MESSAGES/kdevpython.mo share/locale/fi/LC_MESSAGES/kdevpython.mo share/locale/fr/LC_MESSAGES/kdevpython.mo share/locale/ga/LC_MESSAGES/kdevpython.mo share/locale/gl/LC_MESSAGES/kdevpython.mo share/locale/he/LC_MESSAGES/kdevpython.mo share/locale/hi/LC_MESSAGES/kdevpython.mo share/locale/hu/LC_MESSAGES/kdevpython.mo share/locale/ia/LC_MESSAGES/kdevpython.mo share/locale/it/LC_MESSAGES/kdevpython.mo share/locale/ja/LC_MESSAGES/kdevpython.mo share/locale/ka/LC_MESSAGES/kdevpython.mo share/locale/kk/LC_MESSAGES/kdevpython.mo share/locale/ko/LC_MESSAGES/kdevpython.mo share/locale/lt/LC_MESSAGES/kdevpython.mo share/locale/mai/LC_MESSAGES/kdevpython.mo share/locale/mr/LC_MESSAGES/kdevpython.mo share/locale/nds/LC_MESSAGES/kdevpython.mo share/locale/nl/LC_MESSAGES/kdevpython.mo share/locale/nn/LC_MESSAGES/kdevpython.mo share/locale/pl/LC_MESSAGES/kdevpython.mo share/locale/pt/LC_MESSAGES/kdevpython.mo share/locale/pt_BR/LC_MESSAGES/kdevpython.mo share/locale/ro/LC_MESSAGES/kdevpython.mo share/locale/ru/LC_MESSAGES/kdevpython.mo share/locale/sa/LC_MESSAGES/kdevpython.mo share/locale/sk/LC_MESSAGES/kdevpython.mo share/locale/sl/LC_MESSAGES/kdevpython.mo share/locale/sv/LC_MESSAGES/kdevpython.mo share/locale/th/LC_MESSAGES/kdevpython.mo share/locale/tr/LC_MESSAGES/kdevpython.mo share/locale/ug/LC_MESSAGES/kdevpython.mo share/locale/uk/LC_MESSAGES/kdevpython.mo share/locale/zh_CN/LC_MESSAGES/kdevpython.mo share/locale/zh_TW/LC_MESSAGES/kdevpython.mo share/metainfo/org.kde.kdev-python.metainfo.xml share/qlogging-categories6/kdevpythonsupport.categories diff --git a/devel/kdevelop/distinfo b/devel/kdevelop/distinfo index 48117fe24ff6..366cd249bc34 100644 --- a/devel/kdevelop/distinfo +++ b/devel/kdevelop/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1757409731 -SHA256 (KDE/release-service/25.08.1/kdevelop-25.08.1.tar.xz) = a2f4c7eccd0d0bc63f4c073d407c99189cf7380ef6b70f6de9bca4629510ac25 -SIZE (KDE/release-service/25.08.1/kdevelop-25.08.1.tar.xz) = 8944824 +TIMESTAMP = 1759874668 +SHA256 (KDE/release-service/25.08.2/kdevelop-25.08.2.tar.xz) = b87923d6d37de5388f36c2e9ae66e1b096b9f425bf9fa0fbf96368f6af465b29 +SIZE (KDE/release-service/25.08.2/kdevelop-25.08.2.tar.xz) = 8992332 diff --git a/devel/kdevelop/pkg-plist b/devel/kdevelop/pkg-plist index 8246e2a8780a..a89d2ed62c61 100644 --- a/devel/kdevelop/pkg-plist +++ b/devel/kdevelop/pkg-plist @@ -1,3446 +1,3508 @@ 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 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/kdevandroid.mo +share/locale/ar/LC_MESSAGES/kdevappwizard.mo +share/locale/ar/LC_MESSAGES/kdevastyle.mo +share/locale/ar/LC_MESSAGES/kdevbazaar.mo +share/locale/ar/LC_MESSAGES/kdevclang.mo +share/locale/ar/LC_MESSAGES/kdevclangtidy.mo share/locale/ar/LC_MESSAGES/kdevclassbrowser.mo +share/locale/ar/LC_MESSAGES/kdevclazy.mo +share/locale/ar/LC_MESSAGES/kdevcmake.mo +share/locale/ar/LC_MESSAGES/kdevcmakebuilder.mo +share/locale/ar/LC_MESSAGES/kdevcodeutils.mo +share/locale/ar/LC_MESSAGES/kdevcompileanalyzercommon.mo +share/locale/ar/LC_MESSAGES/kdevcontextbrowser.mo +share/locale/ar/LC_MESSAGES/kdevcppcheck.mo +share/locale/ar/LC_MESSAGES/kdevcustombuildsystem.mo +share/locale/ar/LC_MESSAGES/kdevcustomdefinesandincludes.mo +share/locale/ar/LC_MESSAGES/kdevcustommake.mo +share/locale/ar/LC_MESSAGES/kdevcustomscript.mo +share/locale/ar/LC_MESSAGES/kdevdebuggercommon.mo +share/locale/ar/LC_MESSAGES/kdevdocker.mo +share/locale/ar/LC_MESSAGES/kdevdocumentswitcher.mo +share/locale/ar/LC_MESSAGES/kdevdocumentview.mo share/locale/ar/LC_MESSAGES/kdevelop.mo +share/locale/ar/LC_MESSAGES/kdevexecute.mo share/locale/ar/LC_MESSAGES/kdevexecuteplasmoid.mo +share/locale/ar/LC_MESSAGES/kdevexecutescript.mo +share/locale/ar/LC_MESSAGES/kdevexternalscript.mo +share/locale/ar/LC_MESSAGES/kdevfilemanager.mo +share/locale/ar/LC_MESSAGES/kdevfiletemplates.mo +share/locale/ar/LC_MESSAGES/kdevflatpak.mo +share/locale/ar/LC_MESSAGES/kdevgdb.mo +share/locale/ar/LC_MESSAGES/kdevghprovider.mo +share/locale/ar/LC_MESSAGES/kdevgit.mo +share/locale/ar/LC_MESSAGES/kdevgrepview.mo +share/locale/ar/LC_MESSAGES/kdevheaptrack.mo share/locale/ar/LC_MESSAGES/kdevkonsole.mo +share/locale/ar/LC_MESSAGES/kdevlldb.mo +share/locale/ar/LC_MESSAGES/kdevmakebuilder.mo +share/locale/ar/LC_MESSAGES/kdevmanpage.mo +share/locale/ar/LC_MESSAGES/kdevmesonmanager.mo +share/locale/ar/LC_MESSAGES/kdevninja.mo +share/locale/ar/LC_MESSAGES/kdevokteta.mo +share/locale/ar/LC_MESSAGES/kdevopenwith.mo +share/locale/ar/LC_MESSAGES/kdevoutlineview.mo +share/locale/ar/LC_MESSAGES/kdevpatchreview.mo +share/locale/ar/LC_MESSAGES/kdevperforce.mo share/locale/ar/LC_MESSAGES/kdevplatform.mo +share/locale/ar/LC_MESSAGES/kdevproblemreporter.mo +share/locale/ar/LC_MESSAGES/kdevprojectfilter.mo +share/locale/ar/LC_MESSAGES/kdevprojectmanagerview.mo +share/locale/ar/LC_MESSAGES/kdevqmakebuilder.mo +share/locale/ar/LC_MESSAGES/kdevqmakemanager.mo +share/locale/ar/LC_MESSAGES/kdevqmljs.mo share/locale/ar/LC_MESSAGES/kdevqthelp.mo +share/locale/ar/LC_MESSAGES/kdevquickopen.mo +share/locale/ar/LC_MESSAGES/kdevscratchpad.mo +share/locale/ar/LC_MESSAGES/kdevsourceformatter.mo +share/locale/ar/LC_MESSAGES/kdevstandardoutputview.mo +share/locale/ar/LC_MESSAGES/kdevsubversion.mo +share/locale/ar/LC_MESSAGES/kdevswitchtobuddy.mo +share/locale/ar/LC_MESSAGES/kdevtestview.mo +share/locale/ar/LC_MESSAGES/kdevvcsprojectintegration.mo share/locale/ar/LC_MESSAGES/kdevwelcomepage.mo +share/locale/ar/LC_MESSAGES/plasma_applet_kdevelopsessions.mo +share/locale/ar/LC_MESSAGES/plasma_runner_kdevelopsessions.mo share/locale/az/LC_MESSAGES/kdevclazy.mo share/locale/az/LC_MESSAGES/kdevdebuggercommon.mo share/locale/az/LC_MESSAGES/kdevelop.mo share/locale/az/LC_MESSAGES/kdevgit.mo share/locale/az/LC_MESSAGES/kdevmesonmanager.mo share/locale/az/LC_MESSAGES/kdevplatform.mo share/locale/be/LC_MESSAGES/kdevelop.mo share/locale/bg/LC_MESSAGES/kdevandroid.mo share/locale/bg/LC_MESSAGES/kdevappwizard.mo share/locale/bg/LC_MESSAGES/kdevastyle.mo share/locale/bg/LC_MESSAGES/kdevbazaar.mo share/locale/bg/LC_MESSAGES/kdevclang.mo share/locale/bg/LC_MESSAGES/kdevclangtidy.mo share/locale/bg/LC_MESSAGES/kdevclassbrowser.mo share/locale/bg/LC_MESSAGES/kdevclazy.mo share/locale/bg/LC_MESSAGES/kdevcmake.mo share/locale/bg/LC_MESSAGES/kdevcmakebuilder.mo share/locale/bg/LC_MESSAGES/kdevcodeutils.mo share/locale/bg/LC_MESSAGES/kdevcompileanalyzercommon.mo share/locale/bg/LC_MESSAGES/kdevcontextbrowser.mo share/locale/bg/LC_MESSAGES/kdevcppcheck.mo share/locale/bg/LC_MESSAGES/kdevcustombuildsystem.mo share/locale/bg/LC_MESSAGES/kdevcustomdefinesandincludes.mo share/locale/bg/LC_MESSAGES/kdevcustommake.mo share/locale/bg/LC_MESSAGES/kdevcustomscript.mo share/locale/bg/LC_MESSAGES/kdevdebuggercommon.mo share/locale/bg/LC_MESSAGES/kdevdocker.mo share/locale/bg/LC_MESSAGES/kdevdocumentswitcher.mo share/locale/bg/LC_MESSAGES/kdevdocumentview.mo share/locale/bg/LC_MESSAGES/kdevelop.mo share/locale/bg/LC_MESSAGES/kdevexecute.mo share/locale/bg/LC_MESSAGES/kdevexecuteplasmoid.mo share/locale/bg/LC_MESSAGES/kdevexecutescript.mo share/locale/bg/LC_MESSAGES/kdevexternalscript.mo share/locale/bg/LC_MESSAGES/kdevfilemanager.mo share/locale/bg/LC_MESSAGES/kdevfiletemplates.mo share/locale/bg/LC_MESSAGES/kdevflatpak.mo share/locale/bg/LC_MESSAGES/kdevgdb.mo share/locale/bg/LC_MESSAGES/kdevghprovider.mo share/locale/bg/LC_MESSAGES/kdevgit.mo share/locale/bg/LC_MESSAGES/kdevgrepview.mo share/locale/bg/LC_MESSAGES/kdevheaptrack.mo share/locale/bg/LC_MESSAGES/kdevkonsole.mo share/locale/bg/LC_MESSAGES/kdevlldb.mo share/locale/bg/LC_MESSAGES/kdevmakebuilder.mo share/locale/bg/LC_MESSAGES/kdevmanpage.mo share/locale/bg/LC_MESSAGES/kdevmesonmanager.mo share/locale/bg/LC_MESSAGES/kdevninja.mo share/locale/bg/LC_MESSAGES/kdevokteta.mo share/locale/bg/LC_MESSAGES/kdevopenwith.mo share/locale/bg/LC_MESSAGES/kdevoutlineview.mo share/locale/bg/LC_MESSAGES/kdevpatchreview.mo share/locale/bg/LC_MESSAGES/kdevperforce.mo share/locale/bg/LC_MESSAGES/kdevplatform.mo share/locale/bg/LC_MESSAGES/kdevproblemreporter.mo share/locale/bg/LC_MESSAGES/kdevprojectfilter.mo share/locale/bg/LC_MESSAGES/kdevprojectmanagerview.mo share/locale/bg/LC_MESSAGES/kdevqmakebuilder.mo share/locale/bg/LC_MESSAGES/kdevqmakemanager.mo share/locale/bg/LC_MESSAGES/kdevqmljs.mo share/locale/bg/LC_MESSAGES/kdevqthelp.mo share/locale/bg/LC_MESSAGES/kdevquickopen.mo share/locale/bg/LC_MESSAGES/kdevscratchpad.mo share/locale/bg/LC_MESSAGES/kdevsourceformatter.mo share/locale/bg/LC_MESSAGES/kdevstandardoutputview.mo share/locale/bg/LC_MESSAGES/kdevsubversion.mo share/locale/bg/LC_MESSAGES/kdevswitchtobuddy.mo share/locale/bg/LC_MESSAGES/kdevtestview.mo share/locale/bg/LC_MESSAGES/kdevvcsprojectintegration.mo share/locale/bg/LC_MESSAGES/kdevwelcomepage.mo share/locale/bg/LC_MESSAGES/plasma_applet_kdevelopsessions.mo share/locale/bg/LC_MESSAGES/plasma_runner_kdevelopsessions.mo share/locale/br/LC_MESSAGES/kdevelop.mo share/locale/bs/LC_MESSAGES/kdevappwizard.mo share/locale/bs/LC_MESSAGES/kdevbazaar.mo share/locale/bs/LC_MESSAGES/kdevclassbrowser.mo share/locale/bs/LC_MESSAGES/kdevcmake.mo share/locale/bs/LC_MESSAGES/kdevcmakebuilder.mo share/locale/bs/LC_MESSAGES/kdevcodeutils.mo share/locale/bs/LC_MESSAGES/kdevcontextbrowser.mo share/locale/bs/LC_MESSAGES/kdevcppcheck.mo share/locale/bs/LC_MESSAGES/kdevcustombuildsystem.mo share/locale/bs/LC_MESSAGES/kdevcustommake.mo share/locale/bs/LC_MESSAGES/kdevdebuggercommon.mo share/locale/bs/LC_MESSAGES/kdevdocumentswitcher.mo share/locale/bs/LC_MESSAGES/kdevdocumentview.mo share/locale/bs/LC_MESSAGES/kdevelop.mo share/locale/bs/LC_MESSAGES/kdevexecute.mo share/locale/bs/LC_MESSAGES/kdevexecuteplasmoid.mo share/locale/bs/LC_MESSAGES/kdevexecutescript.mo share/locale/bs/LC_MESSAGES/kdevexternalscript.mo share/locale/bs/LC_MESSAGES/kdevfilemanager.mo share/locale/bs/LC_MESSAGES/kdevfiletemplates.mo share/locale/bs/LC_MESSAGES/kdevgdb.mo share/locale/bs/LC_MESSAGES/kdevghprovider.mo share/locale/bs/LC_MESSAGES/kdevgit.mo share/locale/bs/LC_MESSAGES/kdevgrepview.mo share/locale/bs/LC_MESSAGES/kdevkonsole.mo share/locale/bs/LC_MESSAGES/kdevmakebuilder.mo share/locale/bs/LC_MESSAGES/kdevmanpage.mo share/locale/bs/LC_MESSAGES/kdevninja.mo share/locale/bs/LC_MESSAGES/kdevokteta.mo share/locale/bs/LC_MESSAGES/kdevopenwith.mo share/locale/bs/LC_MESSAGES/kdevpatchreview.mo share/locale/bs/LC_MESSAGES/kdevperforce.mo share/locale/bs/LC_MESSAGES/kdevplatform.mo share/locale/bs/LC_MESSAGES/kdevproblemreporter.mo share/locale/bs/LC_MESSAGES/kdevprojectfilter.mo share/locale/bs/LC_MESSAGES/kdevprojectmanagerview.mo share/locale/bs/LC_MESSAGES/kdevqmakebuilder.mo share/locale/bs/LC_MESSAGES/kdevqmakemanager.mo share/locale/bs/LC_MESSAGES/kdevqmljs.mo share/locale/bs/LC_MESSAGES/kdevqthelp.mo share/locale/bs/LC_MESSAGES/kdevquickopen.mo share/locale/bs/LC_MESSAGES/kdevstandardoutputview.mo share/locale/bs/LC_MESSAGES/kdevsubversion.mo share/locale/bs/LC_MESSAGES/kdevswitchtobuddy.mo share/locale/bs/LC_MESSAGES/kdevtestview.mo share/locale/bs/LC_MESSAGES/kdevvcsprojectintegration.mo share/locale/bs/LC_MESSAGES/plasma_applet_kdevelopsessions.mo share/locale/bs/LC_MESSAGES/plasma_runner_kdevelopsessions.mo share/locale/ca/LC_MESSAGES/kdevandroid.mo share/locale/ca/LC_MESSAGES/kdevappwizard.mo share/locale/ca/LC_MESSAGES/kdevastyle.mo share/locale/ca/LC_MESSAGES/kdevbazaar.mo share/locale/ca/LC_MESSAGES/kdevclang.mo share/locale/ca/LC_MESSAGES/kdevclangtidy.mo share/locale/ca/LC_MESSAGES/kdevclassbrowser.mo share/locale/ca/LC_MESSAGES/kdevclazy.mo share/locale/ca/LC_MESSAGES/kdevcmake.mo share/locale/ca/LC_MESSAGES/kdevcmakebuilder.mo share/locale/ca/LC_MESSAGES/kdevcodeutils.mo share/locale/ca/LC_MESSAGES/kdevcompileanalyzercommon.mo share/locale/ca/LC_MESSAGES/kdevcontextbrowser.mo share/locale/ca/LC_MESSAGES/kdevcppcheck.mo share/locale/ca/LC_MESSAGES/kdevcustombuildsystem.mo share/locale/ca/LC_MESSAGES/kdevcustomdefinesandincludes.mo share/locale/ca/LC_MESSAGES/kdevcustommake.mo share/locale/ca/LC_MESSAGES/kdevcustomscript.mo share/locale/ca/LC_MESSAGES/kdevdebuggercommon.mo share/locale/ca/LC_MESSAGES/kdevdocker.mo share/locale/ca/LC_MESSAGES/kdevdocumentswitcher.mo share/locale/ca/LC_MESSAGES/kdevdocumentview.mo share/locale/ca/LC_MESSAGES/kdevelop.mo share/locale/ca/LC_MESSAGES/kdevexecute.mo share/locale/ca/LC_MESSAGES/kdevexecuteplasmoid.mo share/locale/ca/LC_MESSAGES/kdevexecutescript.mo share/locale/ca/LC_MESSAGES/kdevexternalscript.mo share/locale/ca/LC_MESSAGES/kdevfilemanager.mo share/locale/ca/LC_MESSAGES/kdevfiletemplates.mo share/locale/ca/LC_MESSAGES/kdevflatpak.mo share/locale/ca/LC_MESSAGES/kdevgdb.mo share/locale/ca/LC_MESSAGES/kdevghprovider.mo share/locale/ca/LC_MESSAGES/kdevgit.mo share/locale/ca/LC_MESSAGES/kdevgrepview.mo share/locale/ca/LC_MESSAGES/kdevheaptrack.mo share/locale/ca/LC_MESSAGES/kdevkonsole.mo share/locale/ca/LC_MESSAGES/kdevlldb.mo share/locale/ca/LC_MESSAGES/kdevmakebuilder.mo share/locale/ca/LC_MESSAGES/kdevmanpage.mo share/locale/ca/LC_MESSAGES/kdevmesonmanager.mo share/locale/ca/LC_MESSAGES/kdevninja.mo share/locale/ca/LC_MESSAGES/kdevokteta.mo share/locale/ca/LC_MESSAGES/kdevopenwith.mo share/locale/ca/LC_MESSAGES/kdevoutlineview.mo share/locale/ca/LC_MESSAGES/kdevpatchreview.mo share/locale/ca/LC_MESSAGES/kdevperforce.mo share/locale/ca/LC_MESSAGES/kdevplatform.mo share/locale/ca/LC_MESSAGES/kdevproblemreporter.mo share/locale/ca/LC_MESSAGES/kdevprojectfilter.mo share/locale/ca/LC_MESSAGES/kdevprojectmanagerview.mo share/locale/ca/LC_MESSAGES/kdevqmakebuilder.mo share/locale/ca/LC_MESSAGES/kdevqmakemanager.mo share/locale/ca/LC_MESSAGES/kdevqmljs.mo share/locale/ca/LC_MESSAGES/kdevqthelp.mo share/locale/ca/LC_MESSAGES/kdevquickopen.mo share/locale/ca/LC_MESSAGES/kdevscratchpad.mo share/locale/ca/LC_MESSAGES/kdevsourceformatter.mo share/locale/ca/LC_MESSAGES/kdevstandardoutputview.mo share/locale/ca/LC_MESSAGES/kdevsubversion.mo share/locale/ca/LC_MESSAGES/kdevswitchtobuddy.mo share/locale/ca/LC_MESSAGES/kdevtestview.mo share/locale/ca/LC_MESSAGES/kdevvcsprojectintegration.mo share/locale/ca/LC_MESSAGES/kdevwelcomepage.mo share/locale/ca/LC_MESSAGES/plasma_applet_kdevelopsessions.mo share/locale/ca/LC_MESSAGES/plasma_runner_kdevelopsessions.mo share/locale/ca@valencia/LC_MESSAGES/kdevandroid.mo share/locale/ca@valencia/LC_MESSAGES/kdevappwizard.mo share/locale/ca@valencia/LC_MESSAGES/kdevastyle.mo share/locale/ca@valencia/LC_MESSAGES/kdevbazaar.mo share/locale/ca@valencia/LC_MESSAGES/kdevclang.mo share/locale/ca@valencia/LC_MESSAGES/kdevclangtidy.mo share/locale/ca@valencia/LC_MESSAGES/kdevclassbrowser.mo share/locale/ca@valencia/LC_MESSAGES/kdevclazy.mo share/locale/ca@valencia/LC_MESSAGES/kdevcmake.mo share/locale/ca@valencia/LC_MESSAGES/kdevcmakebuilder.mo share/locale/ca@valencia/LC_MESSAGES/kdevcodeutils.mo share/locale/ca@valencia/LC_MESSAGES/kdevcompileanalyzercommon.mo share/locale/ca@valencia/LC_MESSAGES/kdevcontextbrowser.mo share/locale/ca@valencia/LC_MESSAGES/kdevcppcheck.mo share/locale/ca@valencia/LC_MESSAGES/kdevcustombuildsystem.mo share/locale/ca@valencia/LC_MESSAGES/kdevcustomdefinesandincludes.mo share/locale/ca@valencia/LC_MESSAGES/kdevcustommake.mo share/locale/ca@valencia/LC_MESSAGES/kdevcustomscript.mo share/locale/ca@valencia/LC_MESSAGES/kdevdebuggercommon.mo share/locale/ca@valencia/LC_MESSAGES/kdevdocker.mo share/locale/ca@valencia/LC_MESSAGES/kdevdocumentswitcher.mo share/locale/ca@valencia/LC_MESSAGES/kdevdocumentview.mo share/locale/ca@valencia/LC_MESSAGES/kdevelop.mo share/locale/ca@valencia/LC_MESSAGES/kdevexecute.mo share/locale/ca@valencia/LC_MESSAGES/kdevexecuteplasmoid.mo share/locale/ca@valencia/LC_MESSAGES/kdevexecutescript.mo share/locale/ca@valencia/LC_MESSAGES/kdevexternalscript.mo share/locale/ca@valencia/LC_MESSAGES/kdevfilemanager.mo share/locale/ca@valencia/LC_MESSAGES/kdevfiletemplates.mo share/locale/ca@valencia/LC_MESSAGES/kdevflatpak.mo share/locale/ca@valencia/LC_MESSAGES/kdevgdb.mo share/locale/ca@valencia/LC_MESSAGES/kdevghprovider.mo share/locale/ca@valencia/LC_MESSAGES/kdevgit.mo share/locale/ca@valencia/LC_MESSAGES/kdevgrepview.mo share/locale/ca@valencia/LC_MESSAGES/kdevheaptrack.mo share/locale/ca@valencia/LC_MESSAGES/kdevkonsole.mo share/locale/ca@valencia/LC_MESSAGES/kdevlldb.mo share/locale/ca@valencia/LC_MESSAGES/kdevmakebuilder.mo share/locale/ca@valencia/LC_MESSAGES/kdevmanpage.mo share/locale/ca@valencia/LC_MESSAGES/kdevmesonmanager.mo share/locale/ca@valencia/LC_MESSAGES/kdevninja.mo share/locale/ca@valencia/LC_MESSAGES/kdevokteta.mo share/locale/ca@valencia/LC_MESSAGES/kdevopenwith.mo share/locale/ca@valencia/LC_MESSAGES/kdevoutlineview.mo share/locale/ca@valencia/LC_MESSAGES/kdevpatchreview.mo share/locale/ca@valencia/LC_MESSAGES/kdevperforce.mo share/locale/ca@valencia/LC_MESSAGES/kdevplatform.mo share/locale/ca@valencia/LC_MESSAGES/kdevproblemreporter.mo share/locale/ca@valencia/LC_MESSAGES/kdevprojectfilter.mo share/locale/ca@valencia/LC_MESSAGES/kdevprojectmanagerview.mo share/locale/ca@valencia/LC_MESSAGES/kdevqmakebuilder.mo share/locale/ca@valencia/LC_MESSAGES/kdevqmakemanager.mo share/locale/ca@valencia/LC_MESSAGES/kdevqmljs.mo share/locale/ca@valencia/LC_MESSAGES/kdevqthelp.mo share/locale/ca@valencia/LC_MESSAGES/kdevquickopen.mo share/locale/ca@valencia/LC_MESSAGES/kdevscratchpad.mo share/locale/ca@valencia/LC_MESSAGES/kdevsourceformatter.mo share/locale/ca@valencia/LC_MESSAGES/kdevstandardoutputview.mo share/locale/ca@valencia/LC_MESSAGES/kdevsubversion.mo share/locale/ca@valencia/LC_MESSAGES/kdevswitchtobuddy.mo share/locale/ca@valencia/LC_MESSAGES/kdevtestview.mo share/locale/ca@valencia/LC_MESSAGES/kdevvcsprojectintegration.mo share/locale/ca@valencia/LC_MESSAGES/kdevwelcomepage.mo share/locale/ca@valencia/LC_MESSAGES/plasma_applet_kdevelopsessions.mo share/locale/ca@valencia/LC_MESSAGES/plasma_runner_kdevelopsessions.mo share/locale/cs/LC_MESSAGES/kdevandroid.mo share/locale/cs/LC_MESSAGES/kdevappwizard.mo share/locale/cs/LC_MESSAGES/kdevastyle.mo share/locale/cs/LC_MESSAGES/kdevbazaar.mo share/locale/cs/LC_MESSAGES/kdevclang.mo share/locale/cs/LC_MESSAGES/kdevclangtidy.mo share/locale/cs/LC_MESSAGES/kdevclassbrowser.mo share/locale/cs/LC_MESSAGES/kdevclazy.mo share/locale/cs/LC_MESSAGES/kdevcmake.mo share/locale/cs/LC_MESSAGES/kdevcmakebuilder.mo share/locale/cs/LC_MESSAGES/kdevcodeutils.mo share/locale/cs/LC_MESSAGES/kdevcompileanalyzercommon.mo share/locale/cs/LC_MESSAGES/kdevcontextbrowser.mo share/locale/cs/LC_MESSAGES/kdevcppcheck.mo share/locale/cs/LC_MESSAGES/kdevcustombuildsystem.mo share/locale/cs/LC_MESSAGES/kdevcustomdefinesandincludes.mo share/locale/cs/LC_MESSAGES/kdevcustommake.mo share/locale/cs/LC_MESSAGES/kdevcustomscript.mo share/locale/cs/LC_MESSAGES/kdevdebuggercommon.mo share/locale/cs/LC_MESSAGES/kdevdocker.mo share/locale/cs/LC_MESSAGES/kdevdocumentswitcher.mo share/locale/cs/LC_MESSAGES/kdevdocumentview.mo share/locale/cs/LC_MESSAGES/kdevelop.mo share/locale/cs/LC_MESSAGES/kdevexecute.mo share/locale/cs/LC_MESSAGES/kdevexecuteplasmoid.mo share/locale/cs/LC_MESSAGES/kdevexecutescript.mo share/locale/cs/LC_MESSAGES/kdevexternalscript.mo share/locale/cs/LC_MESSAGES/kdevfilemanager.mo share/locale/cs/LC_MESSAGES/kdevfiletemplates.mo share/locale/cs/LC_MESSAGES/kdevflatpak.mo share/locale/cs/LC_MESSAGES/kdevgdb.mo share/locale/cs/LC_MESSAGES/kdevghprovider.mo share/locale/cs/LC_MESSAGES/kdevgit.mo share/locale/cs/LC_MESSAGES/kdevgrepview.mo share/locale/cs/LC_MESSAGES/kdevheaptrack.mo share/locale/cs/LC_MESSAGES/kdevkonsole.mo share/locale/cs/LC_MESSAGES/kdevlldb.mo share/locale/cs/LC_MESSAGES/kdevmakebuilder.mo share/locale/cs/LC_MESSAGES/kdevmanpage.mo share/locale/cs/LC_MESSAGES/kdevmesonmanager.mo share/locale/cs/LC_MESSAGES/kdevninja.mo share/locale/cs/LC_MESSAGES/kdevokteta.mo share/locale/cs/LC_MESSAGES/kdevopenwith.mo share/locale/cs/LC_MESSAGES/kdevoutlineview.mo share/locale/cs/LC_MESSAGES/kdevpatchreview.mo share/locale/cs/LC_MESSAGES/kdevperforce.mo share/locale/cs/LC_MESSAGES/kdevplatform.mo share/locale/cs/LC_MESSAGES/kdevproblemreporter.mo share/locale/cs/LC_MESSAGES/kdevprojectfilter.mo share/locale/cs/LC_MESSAGES/kdevprojectmanagerview.mo share/locale/cs/LC_MESSAGES/kdevqmakebuilder.mo share/locale/cs/LC_MESSAGES/kdevqmakemanager.mo share/locale/cs/LC_MESSAGES/kdevqmljs.mo share/locale/cs/LC_MESSAGES/kdevqthelp.mo share/locale/cs/LC_MESSAGES/kdevquickopen.mo share/locale/cs/LC_MESSAGES/kdevscratchpad.mo share/locale/cs/LC_MESSAGES/kdevsourceformatter.mo share/locale/cs/LC_MESSAGES/kdevstandardoutputview.mo share/locale/cs/LC_MESSAGES/kdevsubversion.mo share/locale/cs/LC_MESSAGES/kdevswitchtobuddy.mo share/locale/cs/LC_MESSAGES/kdevtestview.mo share/locale/cs/LC_MESSAGES/kdevvcsprojectintegration.mo share/locale/cs/LC_MESSAGES/kdevwelcomepage.mo share/locale/cs/LC_MESSAGES/plasma_applet_kdevelopsessions.mo share/locale/cs/LC_MESSAGES/plasma_runner_kdevelopsessions.mo share/locale/cy/LC_MESSAGES/kdevelop.mo share/locale/da/LC_MESSAGES/kdevappwizard.mo share/locale/da/LC_MESSAGES/kdevclassbrowser.mo share/locale/da/LC_MESSAGES/kdevcmake.mo share/locale/da/LC_MESSAGES/kdevcmakebuilder.mo share/locale/da/LC_MESSAGES/kdevcodeutils.mo share/locale/da/LC_MESSAGES/kdevcontextbrowser.mo share/locale/da/LC_MESSAGES/kdevcustombuildsystem.mo share/locale/da/LC_MESSAGES/kdevcustommake.mo share/locale/da/LC_MESSAGES/kdevdebuggercommon.mo share/locale/da/LC_MESSAGES/kdevdocumentswitcher.mo share/locale/da/LC_MESSAGES/kdevdocumentview.mo share/locale/da/LC_MESSAGES/kdevelop.mo share/locale/da/LC_MESSAGES/kdevexecute.mo share/locale/da/LC_MESSAGES/kdevexecuteplasmoid.mo share/locale/da/LC_MESSAGES/kdevexecutescript.mo share/locale/da/LC_MESSAGES/kdevexternalscript.mo share/locale/da/LC_MESSAGES/kdevfilemanager.mo share/locale/da/LC_MESSAGES/kdevfiletemplates.mo share/locale/da/LC_MESSAGES/kdevgdb.mo share/locale/da/LC_MESSAGES/kdevghprovider.mo share/locale/da/LC_MESSAGES/kdevgit.mo share/locale/da/LC_MESSAGES/kdevgrepview.mo share/locale/da/LC_MESSAGES/kdevkonsole.mo share/locale/da/LC_MESSAGES/kdevmakebuilder.mo share/locale/da/LC_MESSAGES/kdevmanpage.mo share/locale/da/LC_MESSAGES/kdevninja.mo share/locale/da/LC_MESSAGES/kdevokteta.mo share/locale/da/LC_MESSAGES/kdevopenwith.mo share/locale/da/LC_MESSAGES/kdevpatchreview.mo share/locale/da/LC_MESSAGES/kdevperforce.mo share/locale/da/LC_MESSAGES/kdevplatform.mo share/locale/da/LC_MESSAGES/kdevproblemreporter.mo share/locale/da/LC_MESSAGES/kdevprojectfilter.mo share/locale/da/LC_MESSAGES/kdevprojectmanagerview.mo share/locale/da/LC_MESSAGES/kdevqthelp.mo share/locale/da/LC_MESSAGES/kdevquickopen.mo share/locale/da/LC_MESSAGES/kdevstandardoutputview.mo share/locale/da/LC_MESSAGES/kdevsubversion.mo share/locale/da/LC_MESSAGES/kdevswitchtobuddy.mo share/locale/da/LC_MESSAGES/kdevtestview.mo share/locale/da/LC_MESSAGES/kdevvcsprojectintegration.mo share/locale/da/LC_MESSAGES/plasma_applet_kdevelopsessions.mo share/locale/da/LC_MESSAGES/plasma_runner_kdevelopsessions.mo share/locale/de/LC_MESSAGES/kdevandroid.mo share/locale/de/LC_MESSAGES/kdevappwizard.mo share/locale/de/LC_MESSAGES/kdevastyle.mo share/locale/de/LC_MESSAGES/kdevbazaar.mo share/locale/de/LC_MESSAGES/kdevclang.mo share/locale/de/LC_MESSAGES/kdevclangtidy.mo share/locale/de/LC_MESSAGES/kdevclassbrowser.mo share/locale/de/LC_MESSAGES/kdevclazy.mo share/locale/de/LC_MESSAGES/kdevcmake.mo share/locale/de/LC_MESSAGES/kdevcmakebuilder.mo share/locale/de/LC_MESSAGES/kdevcodeutils.mo share/locale/de/LC_MESSAGES/kdevcompileanalyzercommon.mo share/locale/de/LC_MESSAGES/kdevcontextbrowser.mo share/locale/de/LC_MESSAGES/kdevcppcheck.mo share/locale/de/LC_MESSAGES/kdevcustombuildsystem.mo share/locale/de/LC_MESSAGES/kdevcustomdefinesandincludes.mo share/locale/de/LC_MESSAGES/kdevcustommake.mo share/locale/de/LC_MESSAGES/kdevcustomscript.mo share/locale/de/LC_MESSAGES/kdevdebuggercommon.mo share/locale/de/LC_MESSAGES/kdevdocker.mo share/locale/de/LC_MESSAGES/kdevdocumentswitcher.mo share/locale/de/LC_MESSAGES/kdevdocumentview.mo share/locale/de/LC_MESSAGES/kdevelop.mo share/locale/de/LC_MESSAGES/kdevexecute.mo share/locale/de/LC_MESSAGES/kdevexecuteplasmoid.mo share/locale/de/LC_MESSAGES/kdevexecutescript.mo share/locale/de/LC_MESSAGES/kdevexternalscript.mo share/locale/de/LC_MESSAGES/kdevfilemanager.mo share/locale/de/LC_MESSAGES/kdevfiletemplates.mo share/locale/de/LC_MESSAGES/kdevflatpak.mo share/locale/de/LC_MESSAGES/kdevgdb.mo share/locale/de/LC_MESSAGES/kdevghprovider.mo share/locale/de/LC_MESSAGES/kdevgit.mo share/locale/de/LC_MESSAGES/kdevgrepview.mo share/locale/de/LC_MESSAGES/kdevheaptrack.mo share/locale/de/LC_MESSAGES/kdevkonsole.mo share/locale/de/LC_MESSAGES/kdevlldb.mo share/locale/de/LC_MESSAGES/kdevmakebuilder.mo share/locale/de/LC_MESSAGES/kdevmanpage.mo share/locale/de/LC_MESSAGES/kdevmesonmanager.mo share/locale/de/LC_MESSAGES/kdevninja.mo share/locale/de/LC_MESSAGES/kdevokteta.mo share/locale/de/LC_MESSAGES/kdevopenwith.mo share/locale/de/LC_MESSAGES/kdevoutlineview.mo share/locale/de/LC_MESSAGES/kdevpatchreview.mo share/locale/de/LC_MESSAGES/kdevperforce.mo share/locale/de/LC_MESSAGES/kdevplatform.mo share/locale/de/LC_MESSAGES/kdevproblemreporter.mo share/locale/de/LC_MESSAGES/kdevprojectfilter.mo share/locale/de/LC_MESSAGES/kdevprojectmanagerview.mo share/locale/de/LC_MESSAGES/kdevqmakebuilder.mo share/locale/de/LC_MESSAGES/kdevqmakemanager.mo share/locale/de/LC_MESSAGES/kdevqmljs.mo share/locale/de/LC_MESSAGES/kdevqthelp.mo share/locale/de/LC_MESSAGES/kdevquickopen.mo share/locale/de/LC_MESSAGES/kdevscratchpad.mo share/locale/de/LC_MESSAGES/kdevsourceformatter.mo share/locale/de/LC_MESSAGES/kdevstandardoutputview.mo share/locale/de/LC_MESSAGES/kdevsubversion.mo share/locale/de/LC_MESSAGES/kdevswitchtobuddy.mo share/locale/de/LC_MESSAGES/kdevtestview.mo share/locale/de/LC_MESSAGES/kdevvcsprojectintegration.mo share/locale/de/LC_MESSAGES/kdevwelcomepage.mo share/locale/de/LC_MESSAGES/plasma_applet_kdevelopsessions.mo share/locale/de/LC_MESSAGES/plasma_runner_kdevelopsessions.mo share/locale/el/LC_MESSAGES/kdevandroid.mo share/locale/el/LC_MESSAGES/kdevappwizard.mo share/locale/el/LC_MESSAGES/kdevastyle.mo share/locale/el/LC_MESSAGES/kdevbazaar.mo share/locale/el/LC_MESSAGES/kdevclang.mo share/locale/el/LC_MESSAGES/kdevclangtidy.mo share/locale/el/LC_MESSAGES/kdevclassbrowser.mo share/locale/el/LC_MESSAGES/kdevclazy.mo share/locale/el/LC_MESSAGES/kdevcmake.mo share/locale/el/LC_MESSAGES/kdevcmakebuilder.mo share/locale/el/LC_MESSAGES/kdevcodeutils.mo share/locale/el/LC_MESSAGES/kdevcompileanalyzercommon.mo share/locale/el/LC_MESSAGES/kdevcontextbrowser.mo share/locale/el/LC_MESSAGES/kdevcppcheck.mo share/locale/el/LC_MESSAGES/kdevcustombuildsystem.mo share/locale/el/LC_MESSAGES/kdevcustomdefinesandincludes.mo share/locale/el/LC_MESSAGES/kdevcustommake.mo share/locale/el/LC_MESSAGES/kdevcustomscript.mo share/locale/el/LC_MESSAGES/kdevdebuggercommon.mo share/locale/el/LC_MESSAGES/kdevdocker.mo share/locale/el/LC_MESSAGES/kdevdocumentswitcher.mo share/locale/el/LC_MESSAGES/kdevdocumentview.mo share/locale/el/LC_MESSAGES/kdevelop.mo share/locale/el/LC_MESSAGES/kdevexecute.mo share/locale/el/LC_MESSAGES/kdevexecuteplasmoid.mo share/locale/el/LC_MESSAGES/kdevexecutescript.mo share/locale/el/LC_MESSAGES/kdevexternalscript.mo share/locale/el/LC_MESSAGES/kdevfilemanager.mo share/locale/el/LC_MESSAGES/kdevfiletemplates.mo share/locale/el/LC_MESSAGES/kdevflatpak.mo share/locale/el/LC_MESSAGES/kdevgdb.mo share/locale/el/LC_MESSAGES/kdevghprovider.mo share/locale/el/LC_MESSAGES/kdevgit.mo share/locale/el/LC_MESSAGES/kdevgrepview.mo share/locale/el/LC_MESSAGES/kdevheaptrack.mo share/locale/el/LC_MESSAGES/kdevkonsole.mo share/locale/el/LC_MESSAGES/kdevlldb.mo share/locale/el/LC_MESSAGES/kdevmakebuilder.mo share/locale/el/LC_MESSAGES/kdevmanpage.mo share/locale/el/LC_MESSAGES/kdevmesonmanager.mo share/locale/el/LC_MESSAGES/kdevninja.mo share/locale/el/LC_MESSAGES/kdevokteta.mo share/locale/el/LC_MESSAGES/kdevopenwith.mo share/locale/el/LC_MESSAGES/kdevoutlineview.mo share/locale/el/LC_MESSAGES/kdevpatchreview.mo share/locale/el/LC_MESSAGES/kdevperforce.mo share/locale/el/LC_MESSAGES/kdevplatform.mo share/locale/el/LC_MESSAGES/kdevproblemreporter.mo share/locale/el/LC_MESSAGES/kdevprojectfilter.mo share/locale/el/LC_MESSAGES/kdevprojectmanagerview.mo share/locale/el/LC_MESSAGES/kdevqmakebuilder.mo share/locale/el/LC_MESSAGES/kdevqmakemanager.mo share/locale/el/LC_MESSAGES/kdevqmljs.mo share/locale/el/LC_MESSAGES/kdevqthelp.mo share/locale/el/LC_MESSAGES/kdevquickopen.mo share/locale/el/LC_MESSAGES/kdevscratchpad.mo share/locale/el/LC_MESSAGES/kdevsourceformatter.mo share/locale/el/LC_MESSAGES/kdevstandardoutputview.mo share/locale/el/LC_MESSAGES/kdevsubversion.mo share/locale/el/LC_MESSAGES/kdevswitchtobuddy.mo share/locale/el/LC_MESSAGES/kdevtestview.mo share/locale/el/LC_MESSAGES/kdevvcsprojectintegration.mo share/locale/el/LC_MESSAGES/kdevwelcomepage.mo share/locale/el/LC_MESSAGES/plasma_applet_kdevelopsessions.mo share/locale/el/LC_MESSAGES/plasma_runner_kdevelopsessions.mo share/locale/en_GB/LC_MESSAGES/kdevandroid.mo share/locale/en_GB/LC_MESSAGES/kdevappwizard.mo share/locale/en_GB/LC_MESSAGES/kdevastyle.mo share/locale/en_GB/LC_MESSAGES/kdevbazaar.mo share/locale/en_GB/LC_MESSAGES/kdevclang.mo share/locale/en_GB/LC_MESSAGES/kdevclangtidy.mo share/locale/en_GB/LC_MESSAGES/kdevclassbrowser.mo share/locale/en_GB/LC_MESSAGES/kdevclazy.mo share/locale/en_GB/LC_MESSAGES/kdevcmake.mo share/locale/en_GB/LC_MESSAGES/kdevcmakebuilder.mo share/locale/en_GB/LC_MESSAGES/kdevcodeutils.mo share/locale/en_GB/LC_MESSAGES/kdevcompileanalyzercommon.mo share/locale/en_GB/LC_MESSAGES/kdevcontextbrowser.mo share/locale/en_GB/LC_MESSAGES/kdevcppcheck.mo share/locale/en_GB/LC_MESSAGES/kdevcustombuildsystem.mo share/locale/en_GB/LC_MESSAGES/kdevcustomdefinesandincludes.mo share/locale/en_GB/LC_MESSAGES/kdevcustommake.mo share/locale/en_GB/LC_MESSAGES/kdevcustomscript.mo share/locale/en_GB/LC_MESSAGES/kdevdebuggercommon.mo share/locale/en_GB/LC_MESSAGES/kdevdocker.mo share/locale/en_GB/LC_MESSAGES/kdevdocumentswitcher.mo share/locale/en_GB/LC_MESSAGES/kdevdocumentview.mo share/locale/en_GB/LC_MESSAGES/kdevelop.mo share/locale/en_GB/LC_MESSAGES/kdevexecute.mo share/locale/en_GB/LC_MESSAGES/kdevexecuteplasmoid.mo share/locale/en_GB/LC_MESSAGES/kdevexecutescript.mo share/locale/en_GB/LC_MESSAGES/kdevexternalscript.mo share/locale/en_GB/LC_MESSAGES/kdevfilemanager.mo share/locale/en_GB/LC_MESSAGES/kdevfiletemplates.mo share/locale/en_GB/LC_MESSAGES/kdevflatpak.mo share/locale/en_GB/LC_MESSAGES/kdevgdb.mo share/locale/en_GB/LC_MESSAGES/kdevghprovider.mo share/locale/en_GB/LC_MESSAGES/kdevgit.mo share/locale/en_GB/LC_MESSAGES/kdevgrepview.mo share/locale/en_GB/LC_MESSAGES/kdevheaptrack.mo share/locale/en_GB/LC_MESSAGES/kdevkonsole.mo share/locale/en_GB/LC_MESSAGES/kdevlldb.mo share/locale/en_GB/LC_MESSAGES/kdevmakebuilder.mo share/locale/en_GB/LC_MESSAGES/kdevmanpage.mo share/locale/en_GB/LC_MESSAGES/kdevmesonmanager.mo share/locale/en_GB/LC_MESSAGES/kdevninja.mo share/locale/en_GB/LC_MESSAGES/kdevokteta.mo share/locale/en_GB/LC_MESSAGES/kdevopenwith.mo share/locale/en_GB/LC_MESSAGES/kdevoutlineview.mo share/locale/en_GB/LC_MESSAGES/kdevpatchreview.mo share/locale/en_GB/LC_MESSAGES/kdevperforce.mo share/locale/en_GB/LC_MESSAGES/kdevplatform.mo share/locale/en_GB/LC_MESSAGES/kdevproblemreporter.mo share/locale/en_GB/LC_MESSAGES/kdevprojectfilter.mo share/locale/en_GB/LC_MESSAGES/kdevprojectmanagerview.mo share/locale/en_GB/LC_MESSAGES/kdevqmakebuilder.mo share/locale/en_GB/LC_MESSAGES/kdevqmakemanager.mo share/locale/en_GB/LC_MESSAGES/kdevqmljs.mo share/locale/en_GB/LC_MESSAGES/kdevqthelp.mo share/locale/en_GB/LC_MESSAGES/kdevquickopen.mo share/locale/en_GB/LC_MESSAGES/kdevscratchpad.mo share/locale/en_GB/LC_MESSAGES/kdevsourceformatter.mo share/locale/en_GB/LC_MESSAGES/kdevstandardoutputview.mo share/locale/en_GB/LC_MESSAGES/kdevsubversion.mo share/locale/en_GB/LC_MESSAGES/kdevswitchtobuddy.mo share/locale/en_GB/LC_MESSAGES/kdevtestview.mo share/locale/en_GB/LC_MESSAGES/kdevvcsprojectintegration.mo share/locale/en_GB/LC_MESSAGES/kdevwelcomepage.mo share/locale/en_GB/LC_MESSAGES/plasma_applet_kdevelopsessions.mo share/locale/en_GB/LC_MESSAGES/plasma_runner_kdevelopsessions.mo share/locale/eo/LC_MESSAGES/kdevandroid.mo share/locale/eo/LC_MESSAGES/kdevappwizard.mo share/locale/eo/LC_MESSAGES/kdevastyle.mo share/locale/eo/LC_MESSAGES/kdevbazaar.mo share/locale/eo/LC_MESSAGES/kdevclang.mo share/locale/eo/LC_MESSAGES/kdevclangtidy.mo share/locale/eo/LC_MESSAGES/kdevclassbrowser.mo share/locale/eo/LC_MESSAGES/kdevclazy.mo share/locale/eo/LC_MESSAGES/kdevcmake.mo share/locale/eo/LC_MESSAGES/kdevcmakebuilder.mo share/locale/eo/LC_MESSAGES/kdevcodeutils.mo share/locale/eo/LC_MESSAGES/kdevcompileanalyzercommon.mo share/locale/eo/LC_MESSAGES/kdevcontextbrowser.mo share/locale/eo/LC_MESSAGES/kdevcppcheck.mo share/locale/eo/LC_MESSAGES/kdevcustombuildsystem.mo share/locale/eo/LC_MESSAGES/kdevcustomdefinesandincludes.mo share/locale/eo/LC_MESSAGES/kdevcustommake.mo share/locale/eo/LC_MESSAGES/kdevcustomscript.mo share/locale/eo/LC_MESSAGES/kdevdebuggercommon.mo share/locale/eo/LC_MESSAGES/kdevdocker.mo share/locale/eo/LC_MESSAGES/kdevdocumentswitcher.mo share/locale/eo/LC_MESSAGES/kdevdocumentview.mo share/locale/eo/LC_MESSAGES/kdevelop.mo share/locale/eo/LC_MESSAGES/kdevexecute.mo share/locale/eo/LC_MESSAGES/kdevexecuteplasmoid.mo share/locale/eo/LC_MESSAGES/kdevexecutescript.mo share/locale/eo/LC_MESSAGES/kdevexternalscript.mo share/locale/eo/LC_MESSAGES/kdevfilemanager.mo share/locale/eo/LC_MESSAGES/kdevfiletemplates.mo share/locale/eo/LC_MESSAGES/kdevflatpak.mo share/locale/eo/LC_MESSAGES/kdevgdb.mo share/locale/eo/LC_MESSAGES/kdevghprovider.mo share/locale/eo/LC_MESSAGES/kdevgit.mo share/locale/eo/LC_MESSAGES/kdevgrepview.mo share/locale/eo/LC_MESSAGES/kdevheaptrack.mo share/locale/eo/LC_MESSAGES/kdevkonsole.mo share/locale/eo/LC_MESSAGES/kdevlldb.mo share/locale/eo/LC_MESSAGES/kdevmakebuilder.mo share/locale/eo/LC_MESSAGES/kdevmanpage.mo share/locale/eo/LC_MESSAGES/kdevmesonmanager.mo share/locale/eo/LC_MESSAGES/kdevninja.mo share/locale/eo/LC_MESSAGES/kdevokteta.mo share/locale/eo/LC_MESSAGES/kdevopenwith.mo share/locale/eo/LC_MESSAGES/kdevoutlineview.mo share/locale/eo/LC_MESSAGES/kdevpatchreview.mo share/locale/eo/LC_MESSAGES/kdevperforce.mo share/locale/eo/LC_MESSAGES/kdevplatform.mo share/locale/eo/LC_MESSAGES/kdevproblemreporter.mo share/locale/eo/LC_MESSAGES/kdevprojectfilter.mo share/locale/eo/LC_MESSAGES/kdevprojectmanagerview.mo share/locale/eo/LC_MESSAGES/kdevqmakebuilder.mo share/locale/eo/LC_MESSAGES/kdevqmakemanager.mo share/locale/eo/LC_MESSAGES/kdevqmljs.mo share/locale/eo/LC_MESSAGES/kdevqthelp.mo share/locale/eo/LC_MESSAGES/kdevquickopen.mo share/locale/eo/LC_MESSAGES/kdevscratchpad.mo share/locale/eo/LC_MESSAGES/kdevsourceformatter.mo share/locale/eo/LC_MESSAGES/kdevstandardoutputview.mo share/locale/eo/LC_MESSAGES/kdevsubversion.mo share/locale/eo/LC_MESSAGES/kdevswitchtobuddy.mo share/locale/eo/LC_MESSAGES/kdevtestview.mo share/locale/eo/LC_MESSAGES/kdevvcsprojectintegration.mo share/locale/eo/LC_MESSAGES/kdevwelcomepage.mo share/locale/eo/LC_MESSAGES/plasma_applet_kdevelopsessions.mo share/locale/eo/LC_MESSAGES/plasma_runner_kdevelopsessions.mo share/locale/es/LC_MESSAGES/kdevandroid.mo share/locale/es/LC_MESSAGES/kdevappwizard.mo share/locale/es/LC_MESSAGES/kdevastyle.mo share/locale/es/LC_MESSAGES/kdevbazaar.mo share/locale/es/LC_MESSAGES/kdevclang.mo share/locale/es/LC_MESSAGES/kdevclangtidy.mo share/locale/es/LC_MESSAGES/kdevclassbrowser.mo share/locale/es/LC_MESSAGES/kdevclazy.mo share/locale/es/LC_MESSAGES/kdevcmake.mo share/locale/es/LC_MESSAGES/kdevcmakebuilder.mo share/locale/es/LC_MESSAGES/kdevcodeutils.mo share/locale/es/LC_MESSAGES/kdevcompileanalyzercommon.mo share/locale/es/LC_MESSAGES/kdevcontextbrowser.mo share/locale/es/LC_MESSAGES/kdevcppcheck.mo share/locale/es/LC_MESSAGES/kdevcustombuildsystem.mo share/locale/es/LC_MESSAGES/kdevcustomdefinesandincludes.mo share/locale/es/LC_MESSAGES/kdevcustommake.mo share/locale/es/LC_MESSAGES/kdevcustomscript.mo share/locale/es/LC_MESSAGES/kdevdebuggercommon.mo share/locale/es/LC_MESSAGES/kdevdocker.mo share/locale/es/LC_MESSAGES/kdevdocumentswitcher.mo share/locale/es/LC_MESSAGES/kdevdocumentview.mo share/locale/es/LC_MESSAGES/kdevelop.mo share/locale/es/LC_MESSAGES/kdevexecute.mo share/locale/es/LC_MESSAGES/kdevexecuteplasmoid.mo share/locale/es/LC_MESSAGES/kdevexecutescript.mo share/locale/es/LC_MESSAGES/kdevexternalscript.mo share/locale/es/LC_MESSAGES/kdevfilemanager.mo share/locale/es/LC_MESSAGES/kdevfiletemplates.mo share/locale/es/LC_MESSAGES/kdevflatpak.mo share/locale/es/LC_MESSAGES/kdevgdb.mo share/locale/es/LC_MESSAGES/kdevghprovider.mo share/locale/es/LC_MESSAGES/kdevgit.mo share/locale/es/LC_MESSAGES/kdevgrepview.mo share/locale/es/LC_MESSAGES/kdevheaptrack.mo share/locale/es/LC_MESSAGES/kdevkonsole.mo share/locale/es/LC_MESSAGES/kdevlldb.mo share/locale/es/LC_MESSAGES/kdevmakebuilder.mo share/locale/es/LC_MESSAGES/kdevmanpage.mo share/locale/es/LC_MESSAGES/kdevmesonmanager.mo share/locale/es/LC_MESSAGES/kdevninja.mo share/locale/es/LC_MESSAGES/kdevokteta.mo share/locale/es/LC_MESSAGES/kdevopenwith.mo share/locale/es/LC_MESSAGES/kdevoutlineview.mo share/locale/es/LC_MESSAGES/kdevpatchreview.mo share/locale/es/LC_MESSAGES/kdevperforce.mo share/locale/es/LC_MESSAGES/kdevplatform.mo share/locale/es/LC_MESSAGES/kdevproblemreporter.mo share/locale/es/LC_MESSAGES/kdevprojectfilter.mo share/locale/es/LC_MESSAGES/kdevprojectmanagerview.mo share/locale/es/LC_MESSAGES/kdevqmakebuilder.mo share/locale/es/LC_MESSAGES/kdevqmakemanager.mo share/locale/es/LC_MESSAGES/kdevqmljs.mo share/locale/es/LC_MESSAGES/kdevqthelp.mo share/locale/es/LC_MESSAGES/kdevquickopen.mo share/locale/es/LC_MESSAGES/kdevscratchpad.mo share/locale/es/LC_MESSAGES/kdevsourceformatter.mo share/locale/es/LC_MESSAGES/kdevstandardoutputview.mo share/locale/es/LC_MESSAGES/kdevsubversion.mo share/locale/es/LC_MESSAGES/kdevswitchtobuddy.mo share/locale/es/LC_MESSAGES/kdevtestview.mo share/locale/es/LC_MESSAGES/kdevvcsprojectintegration.mo share/locale/es/LC_MESSAGES/kdevwelcomepage.mo share/locale/es/LC_MESSAGES/plasma_applet_kdevelopsessions.mo share/locale/es/LC_MESSAGES/plasma_runner_kdevelopsessions.mo share/locale/et/LC_MESSAGES/kdevandroid.mo share/locale/et/LC_MESSAGES/kdevappwizard.mo share/locale/et/LC_MESSAGES/kdevastyle.mo share/locale/et/LC_MESSAGES/kdevbazaar.mo share/locale/et/LC_MESSAGES/kdevclang.mo share/locale/et/LC_MESSAGES/kdevclangtidy.mo share/locale/et/LC_MESSAGES/kdevclassbrowser.mo share/locale/et/LC_MESSAGES/kdevclazy.mo share/locale/et/LC_MESSAGES/kdevcmake.mo share/locale/et/LC_MESSAGES/kdevcmakebuilder.mo share/locale/et/LC_MESSAGES/kdevcodeutils.mo share/locale/et/LC_MESSAGES/kdevcompileanalyzercommon.mo share/locale/et/LC_MESSAGES/kdevcontextbrowser.mo share/locale/et/LC_MESSAGES/kdevcppcheck.mo share/locale/et/LC_MESSAGES/kdevcustombuildsystem.mo share/locale/et/LC_MESSAGES/kdevcustomdefinesandincludes.mo share/locale/et/LC_MESSAGES/kdevcustommake.mo share/locale/et/LC_MESSAGES/kdevcustomscript.mo share/locale/et/LC_MESSAGES/kdevdebuggercommon.mo share/locale/et/LC_MESSAGES/kdevdocker.mo share/locale/et/LC_MESSAGES/kdevdocumentswitcher.mo share/locale/et/LC_MESSAGES/kdevdocumentview.mo share/locale/et/LC_MESSAGES/kdevelop.mo share/locale/et/LC_MESSAGES/kdevexecute.mo share/locale/et/LC_MESSAGES/kdevexecuteplasmoid.mo share/locale/et/LC_MESSAGES/kdevexecutescript.mo share/locale/et/LC_MESSAGES/kdevexternalscript.mo share/locale/et/LC_MESSAGES/kdevfilemanager.mo share/locale/et/LC_MESSAGES/kdevfiletemplates.mo share/locale/et/LC_MESSAGES/kdevflatpak.mo share/locale/et/LC_MESSAGES/kdevgdb.mo share/locale/et/LC_MESSAGES/kdevghprovider.mo share/locale/et/LC_MESSAGES/kdevgit.mo share/locale/et/LC_MESSAGES/kdevgrepview.mo share/locale/et/LC_MESSAGES/kdevheaptrack.mo share/locale/et/LC_MESSAGES/kdevkonsole.mo share/locale/et/LC_MESSAGES/kdevlldb.mo share/locale/et/LC_MESSAGES/kdevmakebuilder.mo share/locale/et/LC_MESSAGES/kdevmanpage.mo share/locale/et/LC_MESSAGES/kdevmesonmanager.mo share/locale/et/LC_MESSAGES/kdevninja.mo share/locale/et/LC_MESSAGES/kdevokteta.mo share/locale/et/LC_MESSAGES/kdevopenwith.mo share/locale/et/LC_MESSAGES/kdevoutlineview.mo share/locale/et/LC_MESSAGES/kdevpatchreview.mo share/locale/et/LC_MESSAGES/kdevperforce.mo share/locale/et/LC_MESSAGES/kdevplatform.mo share/locale/et/LC_MESSAGES/kdevproblemreporter.mo share/locale/et/LC_MESSAGES/kdevprojectfilter.mo share/locale/et/LC_MESSAGES/kdevprojectmanagerview.mo share/locale/et/LC_MESSAGES/kdevqmakebuilder.mo share/locale/et/LC_MESSAGES/kdevqmakemanager.mo share/locale/et/LC_MESSAGES/kdevqmljs.mo share/locale/et/LC_MESSAGES/kdevqthelp.mo share/locale/et/LC_MESSAGES/kdevquickopen.mo share/locale/et/LC_MESSAGES/kdevscratchpad.mo share/locale/et/LC_MESSAGES/kdevsourceformatter.mo share/locale/et/LC_MESSAGES/kdevstandardoutputview.mo share/locale/et/LC_MESSAGES/kdevsubversion.mo share/locale/et/LC_MESSAGES/kdevswitchtobuddy.mo share/locale/et/LC_MESSAGES/kdevtestview.mo share/locale/et/LC_MESSAGES/kdevvcsprojectintegration.mo share/locale/et/LC_MESSAGES/kdevwelcomepage.mo share/locale/et/LC_MESSAGES/plasma_applet_kdevelopsessions.mo share/locale/et/LC_MESSAGES/plasma_runner_kdevelopsessions.mo share/locale/eu/LC_MESSAGES/kdevandroid.mo share/locale/eu/LC_MESSAGES/kdevappwizard.mo share/locale/eu/LC_MESSAGES/kdevbazaar.mo share/locale/eu/LC_MESSAGES/kdevclassbrowser.mo share/locale/eu/LC_MESSAGES/kdevcodeutils.mo share/locale/eu/LC_MESSAGES/kdevcontextbrowser.mo share/locale/eu/LC_MESSAGES/kdevcustommake.mo share/locale/eu/LC_MESSAGES/kdevcustomscript.mo share/locale/eu/LC_MESSAGES/kdevdocker.mo share/locale/eu/LC_MESSAGES/kdevdocumentswitcher.mo share/locale/eu/LC_MESSAGES/kdevdocumentview.mo share/locale/eu/LC_MESSAGES/kdevelop.mo share/locale/eu/LC_MESSAGES/kdevexecuteplasmoid.mo share/locale/eu/LC_MESSAGES/kdevfilemanager.mo share/locale/eu/LC_MESSAGES/kdevflatpak.mo share/locale/eu/LC_MESSAGES/kdevgit.mo share/locale/eu/LC_MESSAGES/kdevgrepview.mo share/locale/eu/LC_MESSAGES/kdevkonsole.mo share/locale/eu/LC_MESSAGES/kdevmanpage.mo share/locale/eu/LC_MESSAGES/kdevninja.mo share/locale/eu/LC_MESSAGES/kdevokteta.mo share/locale/eu/LC_MESSAGES/kdevopenwith.mo share/locale/eu/LC_MESSAGES/kdevoutlineview.mo share/locale/eu/LC_MESSAGES/kdevplatform.mo share/locale/eu/LC_MESSAGES/kdevprojectfilter.mo share/locale/eu/LC_MESSAGES/kdevqmakebuilder.mo share/locale/eu/LC_MESSAGES/kdevqthelp.mo share/locale/eu/LC_MESSAGES/kdevsourceformatter.mo share/locale/eu/LC_MESSAGES/kdevsubversion.mo share/locale/eu/LC_MESSAGES/kdevswitchtobuddy.mo share/locale/eu/LC_MESSAGES/kdevtestview.mo share/locale/eu/LC_MESSAGES/kdevvcsprojectintegration.mo share/locale/eu/LC_MESSAGES/kdevwelcomepage.mo share/locale/eu/LC_MESSAGES/plasma_applet_kdevelopsessions.mo share/locale/eu/LC_MESSAGES/plasma_runner_kdevelopsessions.mo share/locale/fa/LC_MESSAGES/kdevelop.mo share/locale/fi/LC_MESSAGES/kdevandroid.mo share/locale/fi/LC_MESSAGES/kdevappwizard.mo share/locale/fi/LC_MESSAGES/kdevastyle.mo share/locale/fi/LC_MESSAGES/kdevbazaar.mo share/locale/fi/LC_MESSAGES/kdevclang.mo share/locale/fi/LC_MESSAGES/kdevclangtidy.mo share/locale/fi/LC_MESSAGES/kdevclassbrowser.mo share/locale/fi/LC_MESSAGES/kdevclazy.mo share/locale/fi/LC_MESSAGES/kdevcmake.mo share/locale/fi/LC_MESSAGES/kdevcmakebuilder.mo share/locale/fi/LC_MESSAGES/kdevcodeutils.mo share/locale/fi/LC_MESSAGES/kdevcompileanalyzercommon.mo share/locale/fi/LC_MESSAGES/kdevcontextbrowser.mo share/locale/fi/LC_MESSAGES/kdevcppcheck.mo share/locale/fi/LC_MESSAGES/kdevcustombuildsystem.mo share/locale/fi/LC_MESSAGES/kdevcustomdefinesandincludes.mo share/locale/fi/LC_MESSAGES/kdevcustommake.mo share/locale/fi/LC_MESSAGES/kdevcustomscript.mo share/locale/fi/LC_MESSAGES/kdevdebuggercommon.mo share/locale/fi/LC_MESSAGES/kdevdocker.mo share/locale/fi/LC_MESSAGES/kdevdocumentswitcher.mo share/locale/fi/LC_MESSAGES/kdevdocumentview.mo share/locale/fi/LC_MESSAGES/kdevelop.mo share/locale/fi/LC_MESSAGES/kdevexecute.mo share/locale/fi/LC_MESSAGES/kdevexecuteplasmoid.mo share/locale/fi/LC_MESSAGES/kdevexecutescript.mo share/locale/fi/LC_MESSAGES/kdevexternalscript.mo share/locale/fi/LC_MESSAGES/kdevfilemanager.mo share/locale/fi/LC_MESSAGES/kdevfiletemplates.mo share/locale/fi/LC_MESSAGES/kdevflatpak.mo share/locale/fi/LC_MESSAGES/kdevgdb.mo share/locale/fi/LC_MESSAGES/kdevghprovider.mo share/locale/fi/LC_MESSAGES/kdevgit.mo share/locale/fi/LC_MESSAGES/kdevgrepview.mo share/locale/fi/LC_MESSAGES/kdevheaptrack.mo share/locale/fi/LC_MESSAGES/kdevkonsole.mo share/locale/fi/LC_MESSAGES/kdevlldb.mo share/locale/fi/LC_MESSAGES/kdevmakebuilder.mo share/locale/fi/LC_MESSAGES/kdevmanpage.mo share/locale/fi/LC_MESSAGES/kdevmesonmanager.mo share/locale/fi/LC_MESSAGES/kdevninja.mo share/locale/fi/LC_MESSAGES/kdevokteta.mo share/locale/fi/LC_MESSAGES/kdevopenwith.mo share/locale/fi/LC_MESSAGES/kdevoutlineview.mo share/locale/fi/LC_MESSAGES/kdevpatchreview.mo share/locale/fi/LC_MESSAGES/kdevperforce.mo share/locale/fi/LC_MESSAGES/kdevplatform.mo share/locale/fi/LC_MESSAGES/kdevproblemreporter.mo share/locale/fi/LC_MESSAGES/kdevprojectfilter.mo share/locale/fi/LC_MESSAGES/kdevprojectmanagerview.mo share/locale/fi/LC_MESSAGES/kdevqmakebuilder.mo share/locale/fi/LC_MESSAGES/kdevqmakemanager.mo share/locale/fi/LC_MESSAGES/kdevqmljs.mo share/locale/fi/LC_MESSAGES/kdevqthelp.mo share/locale/fi/LC_MESSAGES/kdevquickopen.mo share/locale/fi/LC_MESSAGES/kdevscratchpad.mo share/locale/fi/LC_MESSAGES/kdevsourceformatter.mo share/locale/fi/LC_MESSAGES/kdevstandardoutputview.mo share/locale/fi/LC_MESSAGES/kdevsubversion.mo share/locale/fi/LC_MESSAGES/kdevswitchtobuddy.mo share/locale/fi/LC_MESSAGES/kdevtestview.mo share/locale/fi/LC_MESSAGES/kdevvcsprojectintegration.mo share/locale/fi/LC_MESSAGES/kdevwelcomepage.mo share/locale/fi/LC_MESSAGES/plasma_applet_kdevelopsessions.mo share/locale/fi/LC_MESSAGES/plasma_runner_kdevelopsessions.mo share/locale/fr/LC_MESSAGES/kdevandroid.mo share/locale/fr/LC_MESSAGES/kdevappwizard.mo share/locale/fr/LC_MESSAGES/kdevastyle.mo share/locale/fr/LC_MESSAGES/kdevbazaar.mo share/locale/fr/LC_MESSAGES/kdevclang.mo share/locale/fr/LC_MESSAGES/kdevclangtidy.mo share/locale/fr/LC_MESSAGES/kdevclassbrowser.mo share/locale/fr/LC_MESSAGES/kdevclazy.mo share/locale/fr/LC_MESSAGES/kdevcmake.mo share/locale/fr/LC_MESSAGES/kdevcmakebuilder.mo share/locale/fr/LC_MESSAGES/kdevcodeutils.mo share/locale/fr/LC_MESSAGES/kdevcompileanalyzercommon.mo share/locale/fr/LC_MESSAGES/kdevcontextbrowser.mo share/locale/fr/LC_MESSAGES/kdevcppcheck.mo share/locale/fr/LC_MESSAGES/kdevcustombuildsystem.mo share/locale/fr/LC_MESSAGES/kdevcustomdefinesandincludes.mo share/locale/fr/LC_MESSAGES/kdevcustommake.mo share/locale/fr/LC_MESSAGES/kdevcustomscript.mo share/locale/fr/LC_MESSAGES/kdevdebuggercommon.mo share/locale/fr/LC_MESSAGES/kdevdocker.mo share/locale/fr/LC_MESSAGES/kdevdocumentswitcher.mo share/locale/fr/LC_MESSAGES/kdevdocumentview.mo share/locale/fr/LC_MESSAGES/kdevelop.mo share/locale/fr/LC_MESSAGES/kdevexecute.mo share/locale/fr/LC_MESSAGES/kdevexecuteplasmoid.mo share/locale/fr/LC_MESSAGES/kdevexecutescript.mo share/locale/fr/LC_MESSAGES/kdevexternalscript.mo share/locale/fr/LC_MESSAGES/kdevfilemanager.mo share/locale/fr/LC_MESSAGES/kdevfiletemplates.mo share/locale/fr/LC_MESSAGES/kdevflatpak.mo share/locale/fr/LC_MESSAGES/kdevgdb.mo share/locale/fr/LC_MESSAGES/kdevghprovider.mo share/locale/fr/LC_MESSAGES/kdevgit.mo share/locale/fr/LC_MESSAGES/kdevgrepview.mo share/locale/fr/LC_MESSAGES/kdevheaptrack.mo share/locale/fr/LC_MESSAGES/kdevkonsole.mo share/locale/fr/LC_MESSAGES/kdevlldb.mo share/locale/fr/LC_MESSAGES/kdevmakebuilder.mo share/locale/fr/LC_MESSAGES/kdevmanpage.mo share/locale/fr/LC_MESSAGES/kdevmesonmanager.mo share/locale/fr/LC_MESSAGES/kdevninja.mo share/locale/fr/LC_MESSAGES/kdevokteta.mo share/locale/fr/LC_MESSAGES/kdevopenwith.mo share/locale/fr/LC_MESSAGES/kdevoutlineview.mo share/locale/fr/LC_MESSAGES/kdevpatchreview.mo share/locale/fr/LC_MESSAGES/kdevperforce.mo share/locale/fr/LC_MESSAGES/kdevplatform.mo share/locale/fr/LC_MESSAGES/kdevproblemreporter.mo share/locale/fr/LC_MESSAGES/kdevprojectfilter.mo share/locale/fr/LC_MESSAGES/kdevprojectmanagerview.mo share/locale/fr/LC_MESSAGES/kdevqmakebuilder.mo share/locale/fr/LC_MESSAGES/kdevqmakemanager.mo share/locale/fr/LC_MESSAGES/kdevqmljs.mo share/locale/fr/LC_MESSAGES/kdevqthelp.mo share/locale/fr/LC_MESSAGES/kdevquickopen.mo share/locale/fr/LC_MESSAGES/kdevscratchpad.mo share/locale/fr/LC_MESSAGES/kdevsourceformatter.mo share/locale/fr/LC_MESSAGES/kdevstandardoutputview.mo share/locale/fr/LC_MESSAGES/kdevsubversion.mo share/locale/fr/LC_MESSAGES/kdevswitchtobuddy.mo share/locale/fr/LC_MESSAGES/kdevtestview.mo share/locale/fr/LC_MESSAGES/kdevvcsprojectintegration.mo share/locale/fr/LC_MESSAGES/kdevwelcomepage.mo share/locale/fr/LC_MESSAGES/plasma_applet_kdevelopsessions.mo share/locale/fr/LC_MESSAGES/plasma_runner_kdevelopsessions.mo share/locale/ga/LC_MESSAGES/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/kdevcompileanalyzercommon.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/kdevghprovider.mo share/locale/he/LC_MESSAGES/kdevkonsole.mo share/locale/he/LC_MESSAGES/kdevmanpage.mo +share/locale/he/LC_MESSAGES/kdevninja.mo share/locale/he/LC_MESSAGES/kdevokteta.mo +share/locale/he/LC_MESSAGES/kdevopenwith.mo share/locale/he/LC_MESSAGES/kdevoutlineview.mo share/locale/he/LC_MESSAGES/kdevqmakebuilder.mo share/locale/he/LC_MESSAGES/kdevsourceformatter.mo share/locale/he/LC_MESSAGES/kdevswitchtobuddy.mo share/locale/he/LC_MESSAGES/kdevtestview.mo share/locale/he/LC_MESSAGES/kdevvcsprojectintegration.mo share/locale/he/LC_MESSAGES/kdevwelcomepage.mo share/locale/he/LC_MESSAGES/plasma_applet_kdevelopsessions.mo share/locale/he/LC_MESSAGES/plasma_runner_kdevelopsessions.mo share/locale/hi/LC_MESSAGES/kdevandroid.mo share/locale/hi/LC_MESSAGES/kdevappwizard.mo share/locale/hi/LC_MESSAGES/kdevastyle.mo share/locale/hi/LC_MESSAGES/kdevbazaar.mo share/locale/hi/LC_MESSAGES/kdevclang.mo share/locale/hi/LC_MESSAGES/kdevclangtidy.mo share/locale/hi/LC_MESSAGES/kdevclassbrowser.mo share/locale/hi/LC_MESSAGES/kdevclazy.mo share/locale/hi/LC_MESSAGES/kdevcmake.mo share/locale/hi/LC_MESSAGES/kdevcmakebuilder.mo share/locale/hi/LC_MESSAGES/kdevcodeutils.mo share/locale/hi/LC_MESSAGES/kdevcompileanalyzercommon.mo share/locale/hi/LC_MESSAGES/kdevcontextbrowser.mo share/locale/hi/LC_MESSAGES/kdevcppcheck.mo share/locale/hi/LC_MESSAGES/kdevcustombuildsystem.mo share/locale/hi/LC_MESSAGES/kdevcustomdefinesandincludes.mo share/locale/hi/LC_MESSAGES/kdevcustommake.mo share/locale/hi/LC_MESSAGES/kdevcustomscript.mo share/locale/hi/LC_MESSAGES/kdevdebuggercommon.mo share/locale/hi/LC_MESSAGES/kdevdocker.mo share/locale/hi/LC_MESSAGES/kdevdocumentswitcher.mo share/locale/hi/LC_MESSAGES/kdevdocumentview.mo share/locale/hi/LC_MESSAGES/kdevelop.mo share/locale/hi/LC_MESSAGES/kdevexecute.mo share/locale/hi/LC_MESSAGES/kdevexecuteplasmoid.mo share/locale/hi/LC_MESSAGES/kdevexecutescript.mo share/locale/hi/LC_MESSAGES/kdevexternalscript.mo share/locale/hi/LC_MESSAGES/kdevfilemanager.mo share/locale/hi/LC_MESSAGES/kdevfiletemplates.mo share/locale/hi/LC_MESSAGES/kdevflatpak.mo share/locale/hi/LC_MESSAGES/kdevgdb.mo share/locale/hi/LC_MESSAGES/kdevghprovider.mo share/locale/hi/LC_MESSAGES/kdevgit.mo share/locale/hi/LC_MESSAGES/kdevgrepview.mo share/locale/hi/LC_MESSAGES/kdevheaptrack.mo share/locale/hi/LC_MESSAGES/kdevkonsole.mo share/locale/hi/LC_MESSAGES/kdevlldb.mo share/locale/hi/LC_MESSAGES/kdevmakebuilder.mo share/locale/hi/LC_MESSAGES/kdevmanpage.mo share/locale/hi/LC_MESSAGES/kdevmesonmanager.mo share/locale/hi/LC_MESSAGES/kdevninja.mo share/locale/hi/LC_MESSAGES/kdevokteta.mo share/locale/hi/LC_MESSAGES/kdevopenwith.mo share/locale/hi/LC_MESSAGES/kdevoutlineview.mo share/locale/hi/LC_MESSAGES/kdevpatchreview.mo share/locale/hi/LC_MESSAGES/kdevperforce.mo share/locale/hi/LC_MESSAGES/kdevplatform.mo share/locale/hi/LC_MESSAGES/kdevproblemreporter.mo share/locale/hi/LC_MESSAGES/kdevprojectfilter.mo share/locale/hi/LC_MESSAGES/kdevprojectmanagerview.mo share/locale/hi/LC_MESSAGES/kdevqmakebuilder.mo share/locale/hi/LC_MESSAGES/kdevqmakemanager.mo share/locale/hi/LC_MESSAGES/kdevqmljs.mo share/locale/hi/LC_MESSAGES/kdevqthelp.mo share/locale/hi/LC_MESSAGES/kdevquickopen.mo share/locale/hi/LC_MESSAGES/kdevscratchpad.mo share/locale/hi/LC_MESSAGES/kdevsourceformatter.mo share/locale/hi/LC_MESSAGES/kdevstandardoutputview.mo share/locale/hi/LC_MESSAGES/kdevsubversion.mo share/locale/hi/LC_MESSAGES/kdevswitchtobuddy.mo share/locale/hi/LC_MESSAGES/kdevtestview.mo share/locale/hi/LC_MESSAGES/kdevvcsprojectintegration.mo share/locale/hi/LC_MESSAGES/kdevwelcomepage.mo share/locale/hi/LC_MESSAGES/plasma_applet_kdevelopsessions.mo share/locale/hi/LC_MESSAGES/plasma_runner_kdevelopsessions.mo share/locale/hne/LC_MESSAGES/kdevelop.mo share/locale/hr/LC_MESSAGES/kdevappwizard.mo share/locale/hr/LC_MESSAGES/kdevclassbrowser.mo share/locale/hr/LC_MESSAGES/kdevcmake.mo share/locale/hr/LC_MESSAGES/kdevcmakebuilder.mo share/locale/hr/LC_MESSAGES/kdevcontextbrowser.mo share/locale/hr/LC_MESSAGES/kdevcustommake.mo share/locale/hr/LC_MESSAGES/kdevdebuggercommon.mo share/locale/hr/LC_MESSAGES/kdevdocumentswitcher.mo share/locale/hr/LC_MESSAGES/kdevdocumentview.mo share/locale/hr/LC_MESSAGES/kdevelop.mo share/locale/hr/LC_MESSAGES/kdevexecute.mo share/locale/hr/LC_MESSAGES/kdevfilemanager.mo share/locale/hr/LC_MESSAGES/kdevgdb.mo share/locale/hr/LC_MESSAGES/kdevgrepview.mo share/locale/hr/LC_MESSAGES/kdevkonsole.mo share/locale/hr/LC_MESSAGES/kdevmakebuilder.mo share/locale/hr/LC_MESSAGES/kdevpatchreview.mo share/locale/hr/LC_MESSAGES/kdevplatform.mo share/locale/hr/LC_MESSAGES/kdevproblemreporter.mo share/locale/hr/LC_MESSAGES/kdevprojectmanagerview.mo share/locale/hr/LC_MESSAGES/kdevqthelp.mo share/locale/hr/LC_MESSAGES/kdevquickopen.mo share/locale/hr/LC_MESSAGES/kdevstandardoutputview.mo share/locale/hr/LC_MESSAGES/kdevsubversion.mo share/locale/hu/LC_MESSAGES/kdevandroid.mo share/locale/hu/LC_MESSAGES/kdevappwizard.mo share/locale/hu/LC_MESSAGES/kdevastyle.mo share/locale/hu/LC_MESSAGES/kdevbazaar.mo share/locale/hu/LC_MESSAGES/kdevclassbrowser.mo share/locale/hu/LC_MESSAGES/kdevcmake.mo share/locale/hu/LC_MESSAGES/kdevcmakebuilder.mo share/locale/hu/LC_MESSAGES/kdevcodeutils.mo share/locale/hu/LC_MESSAGES/kdevcontextbrowser.mo share/locale/hu/LC_MESSAGES/kdevcppcheck.mo share/locale/hu/LC_MESSAGES/kdevcustombuildsystem.mo share/locale/hu/LC_MESSAGES/kdevcustommake.mo share/locale/hu/LC_MESSAGES/kdevdebuggercommon.mo share/locale/hu/LC_MESSAGES/kdevdocumentswitcher.mo share/locale/hu/LC_MESSAGES/kdevdocumentview.mo share/locale/hu/LC_MESSAGES/kdevelop.mo share/locale/hu/LC_MESSAGES/kdevexecute.mo share/locale/hu/LC_MESSAGES/kdevexecuteplasmoid.mo share/locale/hu/LC_MESSAGES/kdevexecutescript.mo share/locale/hu/LC_MESSAGES/kdevexternalscript.mo share/locale/hu/LC_MESSAGES/kdevfilemanager.mo share/locale/hu/LC_MESSAGES/kdevfiletemplates.mo share/locale/hu/LC_MESSAGES/kdevgdb.mo share/locale/hu/LC_MESSAGES/kdevghprovider.mo share/locale/hu/LC_MESSAGES/kdevgit.mo share/locale/hu/LC_MESSAGES/kdevgrepview.mo share/locale/hu/LC_MESSAGES/kdevkonsole.mo share/locale/hu/LC_MESSAGES/kdevmakebuilder.mo share/locale/hu/LC_MESSAGES/kdevmanpage.mo share/locale/hu/LC_MESSAGES/kdevninja.mo share/locale/hu/LC_MESSAGES/kdevokteta.mo share/locale/hu/LC_MESSAGES/kdevopenwith.mo share/locale/hu/LC_MESSAGES/kdevpatchreview.mo share/locale/hu/LC_MESSAGES/kdevperforce.mo share/locale/hu/LC_MESSAGES/kdevplatform.mo share/locale/hu/LC_MESSAGES/kdevproblemreporter.mo share/locale/hu/LC_MESSAGES/kdevprojectfilter.mo share/locale/hu/LC_MESSAGES/kdevprojectmanagerview.mo share/locale/hu/LC_MESSAGES/kdevqmakebuilder.mo share/locale/hu/LC_MESSAGES/kdevqmakemanager.mo share/locale/hu/LC_MESSAGES/kdevqmljs.mo share/locale/hu/LC_MESSAGES/kdevqthelp.mo share/locale/hu/LC_MESSAGES/kdevquickopen.mo share/locale/hu/LC_MESSAGES/kdevstandardoutputview.mo share/locale/hu/LC_MESSAGES/kdevsubversion.mo share/locale/hu/LC_MESSAGES/kdevswitchtobuddy.mo share/locale/hu/LC_MESSAGES/kdevtestview.mo share/locale/hu/LC_MESSAGES/kdevvcsprojectintegration.mo share/locale/hu/LC_MESSAGES/kdevwelcomepage.mo share/locale/hu/LC_MESSAGES/plasma_applet_kdevelopsessions.mo share/locale/hu/LC_MESSAGES/plasma_runner_kdevelopsessions.mo share/locale/ia/LC_MESSAGES/kdevappwizard.mo share/locale/ia/LC_MESSAGES/kdevastyle.mo share/locale/ia/LC_MESSAGES/kdevelop.mo share/locale/ia/LC_MESSAGES/kdevplatform.mo share/locale/is/LC_MESSAGES/kdevelop.mo share/locale/it/LC_MESSAGES/kdevandroid.mo share/locale/it/LC_MESSAGES/kdevappwizard.mo share/locale/it/LC_MESSAGES/kdevastyle.mo share/locale/it/LC_MESSAGES/kdevbazaar.mo share/locale/it/LC_MESSAGES/kdevclang.mo share/locale/it/LC_MESSAGES/kdevclangtidy.mo share/locale/it/LC_MESSAGES/kdevclassbrowser.mo share/locale/it/LC_MESSAGES/kdevclazy.mo share/locale/it/LC_MESSAGES/kdevcmake.mo share/locale/it/LC_MESSAGES/kdevcmakebuilder.mo share/locale/it/LC_MESSAGES/kdevcodeutils.mo share/locale/it/LC_MESSAGES/kdevcompileanalyzercommon.mo share/locale/it/LC_MESSAGES/kdevcontextbrowser.mo share/locale/it/LC_MESSAGES/kdevcppcheck.mo share/locale/it/LC_MESSAGES/kdevcustombuildsystem.mo share/locale/it/LC_MESSAGES/kdevcustomdefinesandincludes.mo share/locale/it/LC_MESSAGES/kdevcustommake.mo share/locale/it/LC_MESSAGES/kdevcustomscript.mo share/locale/it/LC_MESSAGES/kdevdebuggercommon.mo share/locale/it/LC_MESSAGES/kdevdocker.mo share/locale/it/LC_MESSAGES/kdevdocumentswitcher.mo share/locale/it/LC_MESSAGES/kdevdocumentview.mo share/locale/it/LC_MESSAGES/kdevelop.mo share/locale/it/LC_MESSAGES/kdevexecute.mo share/locale/it/LC_MESSAGES/kdevexecuteplasmoid.mo share/locale/it/LC_MESSAGES/kdevexecutescript.mo share/locale/it/LC_MESSAGES/kdevexternalscript.mo share/locale/it/LC_MESSAGES/kdevfilemanager.mo share/locale/it/LC_MESSAGES/kdevfiletemplates.mo share/locale/it/LC_MESSAGES/kdevflatpak.mo share/locale/it/LC_MESSAGES/kdevgdb.mo share/locale/it/LC_MESSAGES/kdevghprovider.mo share/locale/it/LC_MESSAGES/kdevgit.mo share/locale/it/LC_MESSAGES/kdevgrepview.mo share/locale/it/LC_MESSAGES/kdevheaptrack.mo share/locale/it/LC_MESSAGES/kdevkonsole.mo share/locale/it/LC_MESSAGES/kdevlldb.mo share/locale/it/LC_MESSAGES/kdevmakebuilder.mo share/locale/it/LC_MESSAGES/kdevmanpage.mo share/locale/it/LC_MESSAGES/kdevmesonmanager.mo share/locale/it/LC_MESSAGES/kdevninja.mo share/locale/it/LC_MESSAGES/kdevokteta.mo share/locale/it/LC_MESSAGES/kdevopenwith.mo share/locale/it/LC_MESSAGES/kdevoutlineview.mo share/locale/it/LC_MESSAGES/kdevpatchreview.mo share/locale/it/LC_MESSAGES/kdevperforce.mo share/locale/it/LC_MESSAGES/kdevplatform.mo share/locale/it/LC_MESSAGES/kdevproblemreporter.mo share/locale/it/LC_MESSAGES/kdevprojectfilter.mo share/locale/it/LC_MESSAGES/kdevprojectmanagerview.mo share/locale/it/LC_MESSAGES/kdevqmakebuilder.mo share/locale/it/LC_MESSAGES/kdevqmakemanager.mo share/locale/it/LC_MESSAGES/kdevqmljs.mo share/locale/it/LC_MESSAGES/kdevqthelp.mo share/locale/it/LC_MESSAGES/kdevquickopen.mo share/locale/it/LC_MESSAGES/kdevscratchpad.mo share/locale/it/LC_MESSAGES/kdevsourceformatter.mo share/locale/it/LC_MESSAGES/kdevstandardoutputview.mo share/locale/it/LC_MESSAGES/kdevsubversion.mo share/locale/it/LC_MESSAGES/kdevswitchtobuddy.mo share/locale/it/LC_MESSAGES/kdevtestview.mo share/locale/it/LC_MESSAGES/kdevvcsprojectintegration.mo share/locale/it/LC_MESSAGES/kdevwelcomepage.mo share/locale/it/LC_MESSAGES/plasma_applet_kdevelopsessions.mo share/locale/it/LC_MESSAGES/plasma_runner_kdevelopsessions.mo share/locale/ja/LC_MESSAGES/kdevandroid.mo share/locale/ja/LC_MESSAGES/kdevappwizard.mo share/locale/ja/LC_MESSAGES/kdevastyle.mo share/locale/ja/LC_MESSAGES/kdevbazaar.mo share/locale/ja/LC_MESSAGES/kdevclang.mo share/locale/ja/LC_MESSAGES/kdevclangtidy.mo share/locale/ja/LC_MESSAGES/kdevclassbrowser.mo share/locale/ja/LC_MESSAGES/kdevclazy.mo share/locale/ja/LC_MESSAGES/kdevcmake.mo share/locale/ja/LC_MESSAGES/kdevcmakebuilder.mo share/locale/ja/LC_MESSAGES/kdevcodeutils.mo share/locale/ja/LC_MESSAGES/kdevcompileanalyzercommon.mo share/locale/ja/LC_MESSAGES/kdevcontextbrowser.mo share/locale/ja/LC_MESSAGES/kdevcppcheck.mo share/locale/ja/LC_MESSAGES/kdevcustombuildsystem.mo share/locale/ja/LC_MESSAGES/kdevcustomdefinesandincludes.mo share/locale/ja/LC_MESSAGES/kdevcustommake.mo share/locale/ja/LC_MESSAGES/kdevcustomscript.mo share/locale/ja/LC_MESSAGES/kdevdebuggercommon.mo share/locale/ja/LC_MESSAGES/kdevdocker.mo share/locale/ja/LC_MESSAGES/kdevdocumentswitcher.mo share/locale/ja/LC_MESSAGES/kdevdocumentview.mo share/locale/ja/LC_MESSAGES/kdevelop.mo share/locale/ja/LC_MESSAGES/kdevexecute.mo share/locale/ja/LC_MESSAGES/kdevexecuteplasmoid.mo share/locale/ja/LC_MESSAGES/kdevexecutescript.mo share/locale/ja/LC_MESSAGES/kdevexternalscript.mo share/locale/ja/LC_MESSAGES/kdevfilemanager.mo share/locale/ja/LC_MESSAGES/kdevfiletemplates.mo share/locale/ja/LC_MESSAGES/kdevflatpak.mo share/locale/ja/LC_MESSAGES/kdevgdb.mo share/locale/ja/LC_MESSAGES/kdevghprovider.mo share/locale/ja/LC_MESSAGES/kdevgit.mo share/locale/ja/LC_MESSAGES/kdevgrepview.mo share/locale/ja/LC_MESSAGES/kdevheaptrack.mo share/locale/ja/LC_MESSAGES/kdevkonsole.mo share/locale/ja/LC_MESSAGES/kdevlldb.mo share/locale/ja/LC_MESSAGES/kdevmakebuilder.mo share/locale/ja/LC_MESSAGES/kdevmanpage.mo share/locale/ja/LC_MESSAGES/kdevmesonmanager.mo share/locale/ja/LC_MESSAGES/kdevninja.mo share/locale/ja/LC_MESSAGES/kdevokteta.mo share/locale/ja/LC_MESSAGES/kdevopenwith.mo share/locale/ja/LC_MESSAGES/kdevoutlineview.mo share/locale/ja/LC_MESSAGES/kdevpatchreview.mo share/locale/ja/LC_MESSAGES/kdevperforce.mo share/locale/ja/LC_MESSAGES/kdevplatform.mo share/locale/ja/LC_MESSAGES/kdevproblemreporter.mo share/locale/ja/LC_MESSAGES/kdevprojectfilter.mo share/locale/ja/LC_MESSAGES/kdevprojectmanagerview.mo share/locale/ja/LC_MESSAGES/kdevqmakebuilder.mo share/locale/ja/LC_MESSAGES/kdevqmakemanager.mo share/locale/ja/LC_MESSAGES/kdevqmljs.mo share/locale/ja/LC_MESSAGES/kdevqthelp.mo share/locale/ja/LC_MESSAGES/kdevquickopen.mo share/locale/ja/LC_MESSAGES/kdevscratchpad.mo share/locale/ja/LC_MESSAGES/kdevsourceformatter.mo share/locale/ja/LC_MESSAGES/kdevstandardoutputview.mo share/locale/ja/LC_MESSAGES/kdevsubversion.mo share/locale/ja/LC_MESSAGES/kdevswitchtobuddy.mo share/locale/ja/LC_MESSAGES/kdevtestview.mo share/locale/ja/LC_MESSAGES/kdevvcsprojectintegration.mo share/locale/ja/LC_MESSAGES/kdevwelcomepage.mo share/locale/ja/LC_MESSAGES/plasma_applet_kdevelopsessions.mo share/locale/ja/LC_MESSAGES/plasma_runner_kdevelopsessions.mo share/locale/ka/LC_MESSAGES/kdevandroid.mo share/locale/ka/LC_MESSAGES/kdevappwizard.mo share/locale/ka/LC_MESSAGES/kdevastyle.mo share/locale/ka/LC_MESSAGES/kdevbazaar.mo share/locale/ka/LC_MESSAGES/kdevclang.mo share/locale/ka/LC_MESSAGES/kdevclangtidy.mo share/locale/ka/LC_MESSAGES/kdevclassbrowser.mo share/locale/ka/LC_MESSAGES/kdevclazy.mo share/locale/ka/LC_MESSAGES/kdevcmake.mo share/locale/ka/LC_MESSAGES/kdevcmakebuilder.mo share/locale/ka/LC_MESSAGES/kdevcodeutils.mo share/locale/ka/LC_MESSAGES/kdevcompileanalyzercommon.mo share/locale/ka/LC_MESSAGES/kdevcontextbrowser.mo share/locale/ka/LC_MESSAGES/kdevcppcheck.mo share/locale/ka/LC_MESSAGES/kdevcustombuildsystem.mo share/locale/ka/LC_MESSAGES/kdevcustomdefinesandincludes.mo share/locale/ka/LC_MESSAGES/kdevcustommake.mo share/locale/ka/LC_MESSAGES/kdevcustomscript.mo share/locale/ka/LC_MESSAGES/kdevdebuggercommon.mo share/locale/ka/LC_MESSAGES/kdevdocker.mo share/locale/ka/LC_MESSAGES/kdevdocumentswitcher.mo share/locale/ka/LC_MESSAGES/kdevdocumentview.mo share/locale/ka/LC_MESSAGES/kdevelop.mo share/locale/ka/LC_MESSAGES/kdevexecute.mo share/locale/ka/LC_MESSAGES/kdevexecuteplasmoid.mo share/locale/ka/LC_MESSAGES/kdevexecutescript.mo share/locale/ka/LC_MESSAGES/kdevexternalscript.mo share/locale/ka/LC_MESSAGES/kdevfilemanager.mo share/locale/ka/LC_MESSAGES/kdevfiletemplates.mo share/locale/ka/LC_MESSAGES/kdevflatpak.mo share/locale/ka/LC_MESSAGES/kdevgdb.mo share/locale/ka/LC_MESSAGES/kdevghprovider.mo share/locale/ka/LC_MESSAGES/kdevgit.mo share/locale/ka/LC_MESSAGES/kdevgrepview.mo share/locale/ka/LC_MESSAGES/kdevheaptrack.mo share/locale/ka/LC_MESSAGES/kdevkonsole.mo share/locale/ka/LC_MESSAGES/kdevlldb.mo share/locale/ka/LC_MESSAGES/kdevmakebuilder.mo share/locale/ka/LC_MESSAGES/kdevmanpage.mo share/locale/ka/LC_MESSAGES/kdevmesonmanager.mo share/locale/ka/LC_MESSAGES/kdevninja.mo share/locale/ka/LC_MESSAGES/kdevokteta.mo share/locale/ka/LC_MESSAGES/kdevopenwith.mo share/locale/ka/LC_MESSAGES/kdevoutlineview.mo share/locale/ka/LC_MESSAGES/kdevpatchreview.mo share/locale/ka/LC_MESSAGES/kdevperforce.mo share/locale/ka/LC_MESSAGES/kdevplatform.mo share/locale/ka/LC_MESSAGES/kdevproblemreporter.mo share/locale/ka/LC_MESSAGES/kdevprojectfilter.mo share/locale/ka/LC_MESSAGES/kdevprojectmanagerview.mo share/locale/ka/LC_MESSAGES/kdevqmakebuilder.mo share/locale/ka/LC_MESSAGES/kdevqmakemanager.mo share/locale/ka/LC_MESSAGES/kdevqmljs.mo share/locale/ka/LC_MESSAGES/kdevqthelp.mo share/locale/ka/LC_MESSAGES/kdevquickopen.mo share/locale/ka/LC_MESSAGES/kdevscratchpad.mo share/locale/ka/LC_MESSAGES/kdevsourceformatter.mo share/locale/ka/LC_MESSAGES/kdevstandardoutputview.mo share/locale/ka/LC_MESSAGES/kdevsubversion.mo share/locale/ka/LC_MESSAGES/kdevswitchtobuddy.mo share/locale/ka/LC_MESSAGES/kdevtestview.mo share/locale/ka/LC_MESSAGES/kdevvcsprojectintegration.mo share/locale/ka/LC_MESSAGES/kdevwelcomepage.mo share/locale/ka/LC_MESSAGES/plasma_applet_kdevelopsessions.mo share/locale/ka/LC_MESSAGES/plasma_runner_kdevelopsessions.mo share/locale/kk/LC_MESSAGES/kdevappwizard.mo share/locale/kk/LC_MESSAGES/kdevclassbrowser.mo share/locale/kk/LC_MESSAGES/kdevcmake.mo share/locale/kk/LC_MESSAGES/kdevcmakebuilder.mo share/locale/kk/LC_MESSAGES/kdevcodeutils.mo share/locale/kk/LC_MESSAGES/kdevcontextbrowser.mo share/locale/kk/LC_MESSAGES/kdevcustombuildsystem.mo share/locale/kk/LC_MESSAGES/kdevcustommake.mo share/locale/kk/LC_MESSAGES/kdevdebuggercommon.mo share/locale/kk/LC_MESSAGES/kdevdocumentswitcher.mo share/locale/kk/LC_MESSAGES/kdevdocumentview.mo share/locale/kk/LC_MESSAGES/kdevelop.mo share/locale/kk/LC_MESSAGES/kdevexecute.mo share/locale/kk/LC_MESSAGES/kdevexecuteplasmoid.mo share/locale/kk/LC_MESSAGES/kdevexecutescript.mo share/locale/kk/LC_MESSAGES/kdevexternalscript.mo share/locale/kk/LC_MESSAGES/kdevfilemanager.mo share/locale/kk/LC_MESSAGES/kdevfiletemplates.mo share/locale/kk/LC_MESSAGES/kdevgdb.mo share/locale/kk/LC_MESSAGES/kdevghprovider.mo share/locale/kk/LC_MESSAGES/kdevgit.mo share/locale/kk/LC_MESSAGES/kdevgrepview.mo share/locale/kk/LC_MESSAGES/kdevkonsole.mo share/locale/kk/LC_MESSAGES/kdevmakebuilder.mo share/locale/kk/LC_MESSAGES/kdevmanpage.mo share/locale/kk/LC_MESSAGES/kdevninja.mo share/locale/kk/LC_MESSAGES/kdevokteta.mo share/locale/kk/LC_MESSAGES/kdevopenwith.mo share/locale/kk/LC_MESSAGES/kdevpatchreview.mo share/locale/kk/LC_MESSAGES/kdevplatform.mo share/locale/kk/LC_MESSAGES/kdevproblemreporter.mo share/locale/kk/LC_MESSAGES/kdevprojectfilter.mo share/locale/kk/LC_MESSAGES/kdevprojectmanagerview.mo share/locale/kk/LC_MESSAGES/kdevqthelp.mo share/locale/kk/LC_MESSAGES/kdevquickopen.mo share/locale/kk/LC_MESSAGES/kdevstandardoutputview.mo share/locale/kk/LC_MESSAGES/kdevsubversion.mo share/locale/kk/LC_MESSAGES/kdevswitchtobuddy.mo share/locale/kk/LC_MESSAGES/kdevtestview.mo share/locale/kk/LC_MESSAGES/kdevvcsprojectintegration.mo share/locale/kk/LC_MESSAGES/plasma_applet_kdevelopsessions.mo share/locale/kk/LC_MESSAGES/plasma_runner_kdevelopsessions.mo share/locale/km/LC_MESSAGES/kdevelop.mo share/locale/ko/LC_MESSAGES/kdevandroid.mo share/locale/ko/LC_MESSAGES/kdevappwizard.mo share/locale/ko/LC_MESSAGES/kdevastyle.mo share/locale/ko/LC_MESSAGES/kdevbazaar.mo share/locale/ko/LC_MESSAGES/kdevclang.mo share/locale/ko/LC_MESSAGES/kdevclangtidy.mo share/locale/ko/LC_MESSAGES/kdevclassbrowser.mo share/locale/ko/LC_MESSAGES/kdevclazy.mo share/locale/ko/LC_MESSAGES/kdevcmake.mo share/locale/ko/LC_MESSAGES/kdevcmakebuilder.mo share/locale/ko/LC_MESSAGES/kdevcodeutils.mo share/locale/ko/LC_MESSAGES/kdevcompileanalyzercommon.mo share/locale/ko/LC_MESSAGES/kdevcontextbrowser.mo share/locale/ko/LC_MESSAGES/kdevcppcheck.mo share/locale/ko/LC_MESSAGES/kdevcustombuildsystem.mo share/locale/ko/LC_MESSAGES/kdevcustomdefinesandincludes.mo share/locale/ko/LC_MESSAGES/kdevcustommake.mo share/locale/ko/LC_MESSAGES/kdevcustomscript.mo share/locale/ko/LC_MESSAGES/kdevdebuggercommon.mo share/locale/ko/LC_MESSAGES/kdevdocker.mo share/locale/ko/LC_MESSAGES/kdevdocumentswitcher.mo share/locale/ko/LC_MESSAGES/kdevdocumentview.mo share/locale/ko/LC_MESSAGES/kdevelop.mo share/locale/ko/LC_MESSAGES/kdevexecute.mo share/locale/ko/LC_MESSAGES/kdevexecuteplasmoid.mo share/locale/ko/LC_MESSAGES/kdevexecutescript.mo share/locale/ko/LC_MESSAGES/kdevexternalscript.mo share/locale/ko/LC_MESSAGES/kdevfilemanager.mo share/locale/ko/LC_MESSAGES/kdevfiletemplates.mo share/locale/ko/LC_MESSAGES/kdevflatpak.mo share/locale/ko/LC_MESSAGES/kdevgdb.mo share/locale/ko/LC_MESSAGES/kdevghprovider.mo share/locale/ko/LC_MESSAGES/kdevgit.mo share/locale/ko/LC_MESSAGES/kdevgrepview.mo share/locale/ko/LC_MESSAGES/kdevheaptrack.mo share/locale/ko/LC_MESSAGES/kdevkonsole.mo share/locale/ko/LC_MESSAGES/kdevlldb.mo share/locale/ko/LC_MESSAGES/kdevmakebuilder.mo share/locale/ko/LC_MESSAGES/kdevmanpage.mo share/locale/ko/LC_MESSAGES/kdevmesonmanager.mo share/locale/ko/LC_MESSAGES/kdevninja.mo share/locale/ko/LC_MESSAGES/kdevokteta.mo share/locale/ko/LC_MESSAGES/kdevopenwith.mo share/locale/ko/LC_MESSAGES/kdevoutlineview.mo share/locale/ko/LC_MESSAGES/kdevpatchreview.mo share/locale/ko/LC_MESSAGES/kdevperforce.mo share/locale/ko/LC_MESSAGES/kdevplatform.mo share/locale/ko/LC_MESSAGES/kdevproblemreporter.mo share/locale/ko/LC_MESSAGES/kdevprojectfilter.mo share/locale/ko/LC_MESSAGES/kdevprojectmanagerview.mo share/locale/ko/LC_MESSAGES/kdevqmakebuilder.mo share/locale/ko/LC_MESSAGES/kdevqmakemanager.mo share/locale/ko/LC_MESSAGES/kdevqmljs.mo share/locale/ko/LC_MESSAGES/kdevqthelp.mo share/locale/ko/LC_MESSAGES/kdevquickopen.mo share/locale/ko/LC_MESSAGES/kdevscratchpad.mo share/locale/ko/LC_MESSAGES/kdevsourceformatter.mo share/locale/ko/LC_MESSAGES/kdevstandardoutputview.mo share/locale/ko/LC_MESSAGES/kdevsubversion.mo share/locale/ko/LC_MESSAGES/kdevswitchtobuddy.mo share/locale/ko/LC_MESSAGES/kdevtestview.mo share/locale/ko/LC_MESSAGES/kdevvcsprojectintegration.mo share/locale/ko/LC_MESSAGES/kdevwelcomepage.mo share/locale/ko/LC_MESSAGES/plasma_applet_kdevelopsessions.mo share/locale/ko/LC_MESSAGES/plasma_runner_kdevelopsessions.mo share/locale/ku/LC_MESSAGES/kdevelop.mo share/locale/lt/LC_MESSAGES/kdevandroid.mo share/locale/lt/LC_MESSAGES/kdevappwizard.mo share/locale/lt/LC_MESSAGES/kdevastyle.mo share/locale/lt/LC_MESSAGES/kdevbazaar.mo share/locale/lt/LC_MESSAGES/kdevclang.mo share/locale/lt/LC_MESSAGES/kdevclangtidy.mo share/locale/lt/LC_MESSAGES/kdevclassbrowser.mo share/locale/lt/LC_MESSAGES/kdevclazy.mo share/locale/lt/LC_MESSAGES/kdevcmake.mo share/locale/lt/LC_MESSAGES/kdevcmakebuilder.mo share/locale/lt/LC_MESSAGES/kdevcodeutils.mo share/locale/lt/LC_MESSAGES/kdevcompileanalyzercommon.mo share/locale/lt/LC_MESSAGES/kdevcontextbrowser.mo share/locale/lt/LC_MESSAGES/kdevcppcheck.mo share/locale/lt/LC_MESSAGES/kdevcustombuildsystem.mo share/locale/lt/LC_MESSAGES/kdevcustomdefinesandincludes.mo share/locale/lt/LC_MESSAGES/kdevcustommake.mo share/locale/lt/LC_MESSAGES/kdevcustomscript.mo share/locale/lt/LC_MESSAGES/kdevdebuggercommon.mo share/locale/lt/LC_MESSAGES/kdevdocker.mo share/locale/lt/LC_MESSAGES/kdevdocumentswitcher.mo share/locale/lt/LC_MESSAGES/kdevdocumentview.mo share/locale/lt/LC_MESSAGES/kdevelop.mo share/locale/lt/LC_MESSAGES/kdevexecute.mo share/locale/lt/LC_MESSAGES/kdevexecuteplasmoid.mo share/locale/lt/LC_MESSAGES/kdevexecutescript.mo share/locale/lt/LC_MESSAGES/kdevexternalscript.mo share/locale/lt/LC_MESSAGES/kdevfilemanager.mo share/locale/lt/LC_MESSAGES/kdevfiletemplates.mo share/locale/lt/LC_MESSAGES/kdevflatpak.mo share/locale/lt/LC_MESSAGES/kdevgdb.mo share/locale/lt/LC_MESSAGES/kdevghprovider.mo share/locale/lt/LC_MESSAGES/kdevgit.mo share/locale/lt/LC_MESSAGES/kdevgrepview.mo share/locale/lt/LC_MESSAGES/kdevheaptrack.mo share/locale/lt/LC_MESSAGES/kdevkonsole.mo share/locale/lt/LC_MESSAGES/kdevlldb.mo share/locale/lt/LC_MESSAGES/kdevmakebuilder.mo share/locale/lt/LC_MESSAGES/kdevmanpage.mo share/locale/lt/LC_MESSAGES/kdevmesonmanager.mo share/locale/lt/LC_MESSAGES/kdevninja.mo share/locale/lt/LC_MESSAGES/kdevokteta.mo share/locale/lt/LC_MESSAGES/kdevopenwith.mo share/locale/lt/LC_MESSAGES/kdevoutlineview.mo share/locale/lt/LC_MESSAGES/kdevpatchreview.mo share/locale/lt/LC_MESSAGES/kdevperforce.mo share/locale/lt/LC_MESSAGES/kdevplatform.mo share/locale/lt/LC_MESSAGES/kdevproblemreporter.mo share/locale/lt/LC_MESSAGES/kdevprojectfilter.mo share/locale/lt/LC_MESSAGES/kdevprojectmanagerview.mo share/locale/lt/LC_MESSAGES/kdevqmakebuilder.mo share/locale/lt/LC_MESSAGES/kdevqmakemanager.mo share/locale/lt/LC_MESSAGES/kdevqmljs.mo share/locale/lt/LC_MESSAGES/kdevqthelp.mo share/locale/lt/LC_MESSAGES/kdevquickopen.mo share/locale/lt/LC_MESSAGES/kdevscratchpad.mo share/locale/lt/LC_MESSAGES/kdevsourceformatter.mo share/locale/lt/LC_MESSAGES/kdevstandardoutputview.mo share/locale/lt/LC_MESSAGES/kdevsubversion.mo share/locale/lt/LC_MESSAGES/kdevswitchtobuddy.mo share/locale/lt/LC_MESSAGES/kdevtestview.mo share/locale/lt/LC_MESSAGES/kdevvcsprojectintegration.mo share/locale/lt/LC_MESSAGES/kdevwelcomepage.mo share/locale/lt/LC_MESSAGES/plasma_applet_kdevelopsessions.mo share/locale/lt/LC_MESSAGES/plasma_runner_kdevelopsessions.mo share/locale/lv/LC_MESSAGES/kdevelop.mo share/locale/mai/LC_MESSAGES/kdevbazaar.mo share/locale/mai/LC_MESSAGES/kdevexecutescript.mo share/locale/mai/LC_MESSAGES/kdevqmakebuilder.mo share/locale/mai/LC_MESSAGES/kdevqmakemanager.mo share/locale/mr/LC_MESSAGES/kdevappwizard.mo share/locale/mr/LC_MESSAGES/kdevclassbrowser.mo share/locale/mr/LC_MESSAGES/kdevcmake.mo share/locale/mr/LC_MESSAGES/kdevcmakebuilder.mo share/locale/mr/LC_MESSAGES/kdevcodeutils.mo share/locale/mr/LC_MESSAGES/kdevcontextbrowser.mo share/locale/mr/LC_MESSAGES/kdevcustombuildsystem.mo share/locale/mr/LC_MESSAGES/kdevcustommake.mo share/locale/mr/LC_MESSAGES/kdevdebuggercommon.mo share/locale/mr/LC_MESSAGES/kdevdocumentswitcher.mo share/locale/mr/LC_MESSAGES/kdevdocumentview.mo share/locale/mr/LC_MESSAGES/kdevelop.mo share/locale/mr/LC_MESSAGES/kdevexecute.mo share/locale/mr/LC_MESSAGES/kdevexecutescript.mo share/locale/mr/LC_MESSAGES/kdevexternalscript.mo share/locale/mr/LC_MESSAGES/kdevfilemanager.mo share/locale/mr/LC_MESSAGES/kdevgdb.mo share/locale/mr/LC_MESSAGES/kdevgit.mo share/locale/mr/LC_MESSAGES/kdevgrepview.mo share/locale/mr/LC_MESSAGES/kdevkonsole.mo share/locale/mr/LC_MESSAGES/kdevmakebuilder.mo share/locale/mr/LC_MESSAGES/kdevmanpage.mo share/locale/mr/LC_MESSAGES/kdevokteta.mo share/locale/mr/LC_MESSAGES/kdevopenwith.mo share/locale/mr/LC_MESSAGES/kdevpatchreview.mo share/locale/mr/LC_MESSAGES/kdevperforce.mo share/locale/mr/LC_MESSAGES/kdevplatform.mo share/locale/mr/LC_MESSAGES/kdevproblemreporter.mo share/locale/mr/LC_MESSAGES/kdevprojectmanagerview.mo share/locale/mr/LC_MESSAGES/kdevqmljs.mo share/locale/mr/LC_MESSAGES/kdevqthelp.mo share/locale/mr/LC_MESSAGES/kdevquickopen.mo share/locale/mr/LC_MESSAGES/kdevstandardoutputview.mo share/locale/mr/LC_MESSAGES/kdevsubversion.mo share/locale/mr/LC_MESSAGES/kdevswitchtobuddy.mo share/locale/mr/LC_MESSAGES/kdevvcsprojectintegration.mo share/locale/mr/LC_MESSAGES/plasma_applet_kdevelopsessions.mo share/locale/mr/LC_MESSAGES/plasma_runner_kdevelopsessions.mo share/locale/ms/LC_MESSAGES/kdevappwizard.mo share/locale/ms/LC_MESSAGES/kdevclassbrowser.mo share/locale/ms/LC_MESSAGES/kdevcmake.mo share/locale/ms/LC_MESSAGES/kdevcmakebuilder.mo share/locale/ms/LC_MESSAGES/kdevcontextbrowser.mo share/locale/ms/LC_MESSAGES/kdevcustommake.mo share/locale/ms/LC_MESSAGES/kdevdocumentswitcher.mo share/locale/ms/LC_MESSAGES/kdevdocumentview.mo share/locale/ms/LC_MESSAGES/kdevelop.mo share/locale/ms/LC_MESSAGES/kdevexecute.mo share/locale/ms/LC_MESSAGES/kdevfilemanager.mo share/locale/ms/LC_MESSAGES/kdevplatform.mo share/locale/nb/LC_MESSAGES/kdevappwizard.mo share/locale/nb/LC_MESSAGES/kdevastyle.mo share/locale/nb/LC_MESSAGES/kdevbazaar.mo share/locale/nb/LC_MESSAGES/kdevclassbrowser.mo share/locale/nb/LC_MESSAGES/kdevcmake.mo share/locale/nb/LC_MESSAGES/kdevcmakebuilder.mo share/locale/nb/LC_MESSAGES/kdevcodeutils.mo share/locale/nb/LC_MESSAGES/kdevcontextbrowser.mo share/locale/nb/LC_MESSAGES/kdevcustombuildsystem.mo share/locale/nb/LC_MESSAGES/kdevcustommake.mo share/locale/nb/LC_MESSAGES/kdevcustomscript.mo share/locale/nb/LC_MESSAGES/kdevdebuggercommon.mo share/locale/nb/LC_MESSAGES/kdevdocumentswitcher.mo share/locale/nb/LC_MESSAGES/kdevdocumentview.mo share/locale/nb/LC_MESSAGES/kdevelop.mo share/locale/nb/LC_MESSAGES/kdevexecute.mo share/locale/nb/LC_MESSAGES/kdevexecuteplasmoid.mo share/locale/nb/LC_MESSAGES/kdevexecutescript.mo share/locale/nb/LC_MESSAGES/kdevexternalscript.mo share/locale/nb/LC_MESSAGES/kdevfilemanager.mo share/locale/nb/LC_MESSAGES/kdevgdb.mo share/locale/nb/LC_MESSAGES/kdevgit.mo share/locale/nb/LC_MESSAGES/kdevgrepview.mo share/locale/nb/LC_MESSAGES/kdevkonsole.mo share/locale/nb/LC_MESSAGES/kdevmakebuilder.mo share/locale/nb/LC_MESSAGES/kdevmanpage.mo share/locale/nb/LC_MESSAGES/kdevokteta.mo share/locale/nb/LC_MESSAGES/kdevopenwith.mo share/locale/nb/LC_MESSAGES/kdevpatchreview.mo share/locale/nb/LC_MESSAGES/kdevplatform.mo share/locale/nb/LC_MESSAGES/kdevproblemreporter.mo share/locale/nb/LC_MESSAGES/kdevprojectmanagerview.mo share/locale/nb/LC_MESSAGES/kdevqmakebuilder.mo share/locale/nb/LC_MESSAGES/kdevqmakemanager.mo share/locale/nb/LC_MESSAGES/kdevqthelp.mo share/locale/nb/LC_MESSAGES/kdevquickopen.mo share/locale/nb/LC_MESSAGES/kdevsourceformatter.mo share/locale/nb/LC_MESSAGES/kdevstandardoutputview.mo share/locale/nb/LC_MESSAGES/kdevsubversion.mo share/locale/nb/LC_MESSAGES/kdevvcsprojectintegration.mo share/locale/nb/LC_MESSAGES/plasma_applet_kdevelopsessions.mo share/locale/nb/LC_MESSAGES/plasma_runner_kdevelopsessions.mo share/locale/nds/LC_MESSAGES/kdevappwizard.mo share/locale/nds/LC_MESSAGES/kdevbazaar.mo share/locale/nds/LC_MESSAGES/kdevclassbrowser.mo share/locale/nds/LC_MESSAGES/kdevcmake.mo share/locale/nds/LC_MESSAGES/kdevcmakebuilder.mo share/locale/nds/LC_MESSAGES/kdevcodeutils.mo share/locale/nds/LC_MESSAGES/kdevcontextbrowser.mo share/locale/nds/LC_MESSAGES/kdevcustombuildsystem.mo share/locale/nds/LC_MESSAGES/kdevcustommake.mo share/locale/nds/LC_MESSAGES/kdevdebuggercommon.mo share/locale/nds/LC_MESSAGES/kdevdocumentswitcher.mo share/locale/nds/LC_MESSAGES/kdevdocumentview.mo share/locale/nds/LC_MESSAGES/kdevelop.mo share/locale/nds/LC_MESSAGES/kdevexecute.mo share/locale/nds/LC_MESSAGES/kdevexecuteplasmoid.mo share/locale/nds/LC_MESSAGES/kdevexecutescript.mo share/locale/nds/LC_MESSAGES/kdevexternalscript.mo share/locale/nds/LC_MESSAGES/kdevfilemanager.mo share/locale/nds/LC_MESSAGES/kdevfiletemplates.mo share/locale/nds/LC_MESSAGES/kdevgdb.mo share/locale/nds/LC_MESSAGES/kdevghprovider.mo share/locale/nds/LC_MESSAGES/kdevgit.mo share/locale/nds/LC_MESSAGES/kdevgrepview.mo share/locale/nds/LC_MESSAGES/kdevkonsole.mo share/locale/nds/LC_MESSAGES/kdevmakebuilder.mo share/locale/nds/LC_MESSAGES/kdevmanpage.mo share/locale/nds/LC_MESSAGES/kdevninja.mo share/locale/nds/LC_MESSAGES/kdevokteta.mo share/locale/nds/LC_MESSAGES/kdevopenwith.mo share/locale/nds/LC_MESSAGES/kdevpatchreview.mo share/locale/nds/LC_MESSAGES/kdevperforce.mo share/locale/nds/LC_MESSAGES/kdevplatform.mo share/locale/nds/LC_MESSAGES/kdevproblemreporter.mo share/locale/nds/LC_MESSAGES/kdevprojectfilter.mo share/locale/nds/LC_MESSAGES/kdevprojectmanagerview.mo share/locale/nds/LC_MESSAGES/kdevqmakebuilder.mo share/locale/nds/LC_MESSAGES/kdevqmakemanager.mo share/locale/nds/LC_MESSAGES/kdevqthelp.mo share/locale/nds/LC_MESSAGES/kdevquickopen.mo share/locale/nds/LC_MESSAGES/kdevstandardoutputview.mo share/locale/nds/LC_MESSAGES/kdevsubversion.mo share/locale/nds/LC_MESSAGES/kdevswitchtobuddy.mo share/locale/nds/LC_MESSAGES/kdevtestview.mo share/locale/nds/LC_MESSAGES/kdevvcsprojectintegration.mo share/locale/nds/LC_MESSAGES/plasma_applet_kdevelopsessions.mo share/locale/nds/LC_MESSAGES/plasma_runner_kdevelopsessions.mo share/locale/ne/LC_MESSAGES/kdevelop.mo share/locale/nl/LC_MESSAGES/kdevandroid.mo share/locale/nl/LC_MESSAGES/kdevappwizard.mo share/locale/nl/LC_MESSAGES/kdevastyle.mo share/locale/nl/LC_MESSAGES/kdevbazaar.mo share/locale/nl/LC_MESSAGES/kdevclang.mo share/locale/nl/LC_MESSAGES/kdevclangtidy.mo share/locale/nl/LC_MESSAGES/kdevclassbrowser.mo share/locale/nl/LC_MESSAGES/kdevclazy.mo share/locale/nl/LC_MESSAGES/kdevcmake.mo share/locale/nl/LC_MESSAGES/kdevcmakebuilder.mo share/locale/nl/LC_MESSAGES/kdevcodeutils.mo share/locale/nl/LC_MESSAGES/kdevcompileanalyzercommon.mo share/locale/nl/LC_MESSAGES/kdevcontextbrowser.mo share/locale/nl/LC_MESSAGES/kdevcppcheck.mo share/locale/nl/LC_MESSAGES/kdevcustombuildsystem.mo share/locale/nl/LC_MESSAGES/kdevcustomdefinesandincludes.mo share/locale/nl/LC_MESSAGES/kdevcustommake.mo share/locale/nl/LC_MESSAGES/kdevcustomscript.mo share/locale/nl/LC_MESSAGES/kdevdebuggercommon.mo share/locale/nl/LC_MESSAGES/kdevdocker.mo share/locale/nl/LC_MESSAGES/kdevdocumentswitcher.mo share/locale/nl/LC_MESSAGES/kdevdocumentview.mo share/locale/nl/LC_MESSAGES/kdevelop.mo share/locale/nl/LC_MESSAGES/kdevexecute.mo share/locale/nl/LC_MESSAGES/kdevexecuteplasmoid.mo share/locale/nl/LC_MESSAGES/kdevexecutescript.mo share/locale/nl/LC_MESSAGES/kdevexternalscript.mo share/locale/nl/LC_MESSAGES/kdevfilemanager.mo share/locale/nl/LC_MESSAGES/kdevfiletemplates.mo share/locale/nl/LC_MESSAGES/kdevflatpak.mo share/locale/nl/LC_MESSAGES/kdevgdb.mo share/locale/nl/LC_MESSAGES/kdevghprovider.mo share/locale/nl/LC_MESSAGES/kdevgit.mo share/locale/nl/LC_MESSAGES/kdevgrepview.mo share/locale/nl/LC_MESSAGES/kdevheaptrack.mo share/locale/nl/LC_MESSAGES/kdevkonsole.mo share/locale/nl/LC_MESSAGES/kdevlldb.mo share/locale/nl/LC_MESSAGES/kdevmakebuilder.mo share/locale/nl/LC_MESSAGES/kdevmanpage.mo share/locale/nl/LC_MESSAGES/kdevmesonmanager.mo share/locale/nl/LC_MESSAGES/kdevninja.mo share/locale/nl/LC_MESSAGES/kdevokteta.mo share/locale/nl/LC_MESSAGES/kdevopenwith.mo share/locale/nl/LC_MESSAGES/kdevoutlineview.mo share/locale/nl/LC_MESSAGES/kdevpatchreview.mo share/locale/nl/LC_MESSAGES/kdevperforce.mo share/locale/nl/LC_MESSAGES/kdevplatform.mo share/locale/nl/LC_MESSAGES/kdevproblemreporter.mo share/locale/nl/LC_MESSAGES/kdevprojectfilter.mo share/locale/nl/LC_MESSAGES/kdevprojectmanagerview.mo share/locale/nl/LC_MESSAGES/kdevqmakebuilder.mo share/locale/nl/LC_MESSAGES/kdevqmakemanager.mo share/locale/nl/LC_MESSAGES/kdevqmljs.mo share/locale/nl/LC_MESSAGES/kdevqthelp.mo share/locale/nl/LC_MESSAGES/kdevquickopen.mo share/locale/nl/LC_MESSAGES/kdevscratchpad.mo share/locale/nl/LC_MESSAGES/kdevsourceformatter.mo share/locale/nl/LC_MESSAGES/kdevstandardoutputview.mo share/locale/nl/LC_MESSAGES/kdevsubversion.mo share/locale/nl/LC_MESSAGES/kdevswitchtobuddy.mo share/locale/nl/LC_MESSAGES/kdevtestview.mo share/locale/nl/LC_MESSAGES/kdevvcsprojectintegration.mo share/locale/nl/LC_MESSAGES/kdevwelcomepage.mo share/locale/nl/LC_MESSAGES/plasma_applet_kdevelopsessions.mo share/locale/nl/LC_MESSAGES/plasma_runner_kdevelopsessions.mo share/locale/nn/LC_MESSAGES/kdevappwizard.mo share/locale/nn/LC_MESSAGES/kdevastyle.mo share/locale/nn/LC_MESSAGES/kdevbazaar.mo share/locale/nn/LC_MESSAGES/kdevclassbrowser.mo share/locale/nn/LC_MESSAGES/kdevcmake.mo share/locale/nn/LC_MESSAGES/kdevcmakebuilder.mo share/locale/nn/LC_MESSAGES/kdevcontextbrowser.mo share/locale/nn/LC_MESSAGES/kdevcustommake.mo share/locale/nn/LC_MESSAGES/kdevcustomscript.mo share/locale/nn/LC_MESSAGES/kdevdebuggercommon.mo share/locale/nn/LC_MESSAGES/kdevdocumentview.mo share/locale/nn/LC_MESSAGES/kdevelop.mo share/locale/nn/LC_MESSAGES/kdevexecute.mo share/locale/nn/LC_MESSAGES/kdevfilemanager.mo share/locale/nn/LC_MESSAGES/kdevgdb.mo share/locale/nn/LC_MESSAGES/kdevgit.mo share/locale/nn/LC_MESSAGES/kdevgrepview.mo share/locale/nn/LC_MESSAGES/kdevheaptrack.mo share/locale/nn/LC_MESSAGES/kdevkonsole.mo share/locale/nn/LC_MESSAGES/kdevmakebuilder.mo share/locale/nn/LC_MESSAGES/kdevokteta.mo share/locale/nn/LC_MESSAGES/kdevplatform.mo share/locale/nn/LC_MESSAGES/kdevproblemreporter.mo share/locale/nn/LC_MESSAGES/kdevprojectmanagerview.mo share/locale/nn/LC_MESSAGES/kdevqmakebuilder.mo share/locale/nn/LC_MESSAGES/kdevqmakemanager.mo share/locale/nn/LC_MESSAGES/kdevquickopen.mo share/locale/nn/LC_MESSAGES/kdevsourceformatter.mo share/locale/nn/LC_MESSAGES/kdevstandardoutputview.mo share/locale/nn/LC_MESSAGES/kdevsubversion.mo share/locale/nn/LC_MESSAGES/plasma_applet_kdevelopsessions.mo share/locale/nn/LC_MESSAGES/plasma_runner_kdevelopsessions.mo share/locale/oc/LC_MESSAGES/kdevelop.mo share/locale/pa/LC_MESSAGES/kdevbazaar.mo share/locale/pa/LC_MESSAGES/kdevclassbrowser.mo share/locale/pa/LC_MESSAGES/kdevcontextbrowser.mo share/locale/pa/LC_MESSAGES/kdevexecute.mo share/locale/pa/LC_MESSAGES/kdevfilemanager.mo share/locale/pa/LC_MESSAGES/kdevgit.mo share/locale/pa/LC_MESSAGES/kdevkonsole.mo share/locale/pa/LC_MESSAGES/kdevplatform.mo share/locale/pa/LC_MESSAGES/kdevquickopen.mo share/locale/pa/LC_MESSAGES/kdevsubversion.mo share/locale/pl/LC_MESSAGES/kdevandroid.mo share/locale/pl/LC_MESSAGES/kdevappwizard.mo share/locale/pl/LC_MESSAGES/kdevastyle.mo share/locale/pl/LC_MESSAGES/kdevbazaar.mo share/locale/pl/LC_MESSAGES/kdevclang.mo share/locale/pl/LC_MESSAGES/kdevclangtidy.mo share/locale/pl/LC_MESSAGES/kdevclassbrowser.mo share/locale/pl/LC_MESSAGES/kdevclazy.mo share/locale/pl/LC_MESSAGES/kdevcmake.mo share/locale/pl/LC_MESSAGES/kdevcmakebuilder.mo share/locale/pl/LC_MESSAGES/kdevcodeutils.mo share/locale/pl/LC_MESSAGES/kdevcompileanalyzercommon.mo share/locale/pl/LC_MESSAGES/kdevcontextbrowser.mo share/locale/pl/LC_MESSAGES/kdevcppcheck.mo share/locale/pl/LC_MESSAGES/kdevcustombuildsystem.mo share/locale/pl/LC_MESSAGES/kdevcustomdefinesandincludes.mo share/locale/pl/LC_MESSAGES/kdevcustommake.mo share/locale/pl/LC_MESSAGES/kdevcustomscript.mo share/locale/pl/LC_MESSAGES/kdevdebuggercommon.mo share/locale/pl/LC_MESSAGES/kdevdocker.mo share/locale/pl/LC_MESSAGES/kdevdocumentswitcher.mo share/locale/pl/LC_MESSAGES/kdevdocumentview.mo share/locale/pl/LC_MESSAGES/kdevelop.mo share/locale/pl/LC_MESSAGES/kdevexecute.mo share/locale/pl/LC_MESSAGES/kdevexecuteplasmoid.mo share/locale/pl/LC_MESSAGES/kdevexecutescript.mo share/locale/pl/LC_MESSAGES/kdevexternalscript.mo share/locale/pl/LC_MESSAGES/kdevfilemanager.mo share/locale/pl/LC_MESSAGES/kdevfiletemplates.mo share/locale/pl/LC_MESSAGES/kdevflatpak.mo share/locale/pl/LC_MESSAGES/kdevgdb.mo share/locale/pl/LC_MESSAGES/kdevghprovider.mo share/locale/pl/LC_MESSAGES/kdevgit.mo share/locale/pl/LC_MESSAGES/kdevgrepview.mo share/locale/pl/LC_MESSAGES/kdevheaptrack.mo share/locale/pl/LC_MESSAGES/kdevkonsole.mo share/locale/pl/LC_MESSAGES/kdevlldb.mo share/locale/pl/LC_MESSAGES/kdevmakebuilder.mo share/locale/pl/LC_MESSAGES/kdevmanpage.mo share/locale/pl/LC_MESSAGES/kdevmesonmanager.mo share/locale/pl/LC_MESSAGES/kdevninja.mo share/locale/pl/LC_MESSAGES/kdevokteta.mo share/locale/pl/LC_MESSAGES/kdevopenwith.mo share/locale/pl/LC_MESSAGES/kdevoutlineview.mo share/locale/pl/LC_MESSAGES/kdevpatchreview.mo share/locale/pl/LC_MESSAGES/kdevperforce.mo share/locale/pl/LC_MESSAGES/kdevplatform.mo share/locale/pl/LC_MESSAGES/kdevproblemreporter.mo share/locale/pl/LC_MESSAGES/kdevprojectfilter.mo share/locale/pl/LC_MESSAGES/kdevprojectmanagerview.mo share/locale/pl/LC_MESSAGES/kdevqmakebuilder.mo share/locale/pl/LC_MESSAGES/kdevqmakemanager.mo share/locale/pl/LC_MESSAGES/kdevqmljs.mo share/locale/pl/LC_MESSAGES/kdevqthelp.mo share/locale/pl/LC_MESSAGES/kdevquickopen.mo share/locale/pl/LC_MESSAGES/kdevscratchpad.mo share/locale/pl/LC_MESSAGES/kdevsourceformatter.mo share/locale/pl/LC_MESSAGES/kdevstandardoutputview.mo share/locale/pl/LC_MESSAGES/kdevsubversion.mo share/locale/pl/LC_MESSAGES/kdevswitchtobuddy.mo share/locale/pl/LC_MESSAGES/kdevtestview.mo share/locale/pl/LC_MESSAGES/kdevvcsprojectintegration.mo share/locale/pl/LC_MESSAGES/kdevwelcomepage.mo share/locale/pl/LC_MESSAGES/plasma_applet_kdevelopsessions.mo share/locale/pl/LC_MESSAGES/plasma_runner_kdevelopsessions.mo share/locale/pt/LC_MESSAGES/kdevandroid.mo share/locale/pt/LC_MESSAGES/kdevappwizard.mo share/locale/pt/LC_MESSAGES/kdevastyle.mo share/locale/pt/LC_MESSAGES/kdevbazaar.mo share/locale/pt/LC_MESSAGES/kdevclang.mo share/locale/pt/LC_MESSAGES/kdevclangtidy.mo share/locale/pt/LC_MESSAGES/kdevclassbrowser.mo share/locale/pt/LC_MESSAGES/kdevclazy.mo share/locale/pt/LC_MESSAGES/kdevcmake.mo share/locale/pt/LC_MESSAGES/kdevcmakebuilder.mo share/locale/pt/LC_MESSAGES/kdevcodeutils.mo share/locale/pt/LC_MESSAGES/kdevcompileanalyzercommon.mo share/locale/pt/LC_MESSAGES/kdevcontextbrowser.mo share/locale/pt/LC_MESSAGES/kdevcppcheck.mo share/locale/pt/LC_MESSAGES/kdevcustombuildsystem.mo share/locale/pt/LC_MESSAGES/kdevcustomdefinesandincludes.mo share/locale/pt/LC_MESSAGES/kdevcustommake.mo share/locale/pt/LC_MESSAGES/kdevcustomscript.mo share/locale/pt/LC_MESSAGES/kdevdebuggercommon.mo share/locale/pt/LC_MESSAGES/kdevdocker.mo share/locale/pt/LC_MESSAGES/kdevdocumentswitcher.mo share/locale/pt/LC_MESSAGES/kdevdocumentview.mo share/locale/pt/LC_MESSAGES/kdevelop.mo share/locale/pt/LC_MESSAGES/kdevexecute.mo share/locale/pt/LC_MESSAGES/kdevexecuteplasmoid.mo share/locale/pt/LC_MESSAGES/kdevexecutescript.mo share/locale/pt/LC_MESSAGES/kdevexternalscript.mo share/locale/pt/LC_MESSAGES/kdevfilemanager.mo share/locale/pt/LC_MESSAGES/kdevfiletemplates.mo share/locale/pt/LC_MESSAGES/kdevflatpak.mo share/locale/pt/LC_MESSAGES/kdevgdb.mo share/locale/pt/LC_MESSAGES/kdevghprovider.mo share/locale/pt/LC_MESSAGES/kdevgit.mo share/locale/pt/LC_MESSAGES/kdevgrepview.mo share/locale/pt/LC_MESSAGES/kdevheaptrack.mo share/locale/pt/LC_MESSAGES/kdevkonsole.mo share/locale/pt/LC_MESSAGES/kdevlldb.mo share/locale/pt/LC_MESSAGES/kdevmakebuilder.mo share/locale/pt/LC_MESSAGES/kdevmanpage.mo share/locale/pt/LC_MESSAGES/kdevmesonmanager.mo share/locale/pt/LC_MESSAGES/kdevninja.mo share/locale/pt/LC_MESSAGES/kdevokteta.mo share/locale/pt/LC_MESSAGES/kdevopenwith.mo share/locale/pt/LC_MESSAGES/kdevoutlineview.mo share/locale/pt/LC_MESSAGES/kdevpatchreview.mo share/locale/pt/LC_MESSAGES/kdevperforce.mo share/locale/pt/LC_MESSAGES/kdevplatform.mo share/locale/pt/LC_MESSAGES/kdevproblemreporter.mo share/locale/pt/LC_MESSAGES/kdevprojectfilter.mo share/locale/pt/LC_MESSAGES/kdevprojectmanagerview.mo share/locale/pt/LC_MESSAGES/kdevqmakebuilder.mo share/locale/pt/LC_MESSAGES/kdevqmakemanager.mo share/locale/pt/LC_MESSAGES/kdevqmljs.mo share/locale/pt/LC_MESSAGES/kdevqthelp.mo share/locale/pt/LC_MESSAGES/kdevquickopen.mo share/locale/pt/LC_MESSAGES/kdevscratchpad.mo share/locale/pt/LC_MESSAGES/kdevsourceformatter.mo share/locale/pt/LC_MESSAGES/kdevstandardoutputview.mo share/locale/pt/LC_MESSAGES/kdevsubversion.mo share/locale/pt/LC_MESSAGES/kdevswitchtobuddy.mo share/locale/pt/LC_MESSAGES/kdevtestview.mo share/locale/pt/LC_MESSAGES/kdevvcsprojectintegration.mo share/locale/pt/LC_MESSAGES/kdevwelcomepage.mo share/locale/pt/LC_MESSAGES/plasma_applet_kdevelopsessions.mo share/locale/pt/LC_MESSAGES/plasma_runner_kdevelopsessions.mo share/locale/pt_BR/LC_MESSAGES/kdevandroid.mo share/locale/pt_BR/LC_MESSAGES/kdevappwizard.mo share/locale/pt_BR/LC_MESSAGES/kdevastyle.mo share/locale/pt_BR/LC_MESSAGES/kdevbazaar.mo share/locale/pt_BR/LC_MESSAGES/kdevclang.mo share/locale/pt_BR/LC_MESSAGES/kdevclangtidy.mo share/locale/pt_BR/LC_MESSAGES/kdevclassbrowser.mo share/locale/pt_BR/LC_MESSAGES/kdevclazy.mo share/locale/pt_BR/LC_MESSAGES/kdevcmake.mo share/locale/pt_BR/LC_MESSAGES/kdevcmakebuilder.mo share/locale/pt_BR/LC_MESSAGES/kdevcodeutils.mo share/locale/pt_BR/LC_MESSAGES/kdevcompileanalyzercommon.mo share/locale/pt_BR/LC_MESSAGES/kdevcontextbrowser.mo share/locale/pt_BR/LC_MESSAGES/kdevcppcheck.mo share/locale/pt_BR/LC_MESSAGES/kdevcustombuildsystem.mo share/locale/pt_BR/LC_MESSAGES/kdevcustomdefinesandincludes.mo share/locale/pt_BR/LC_MESSAGES/kdevcustommake.mo share/locale/pt_BR/LC_MESSAGES/kdevcustomscript.mo share/locale/pt_BR/LC_MESSAGES/kdevdebuggercommon.mo share/locale/pt_BR/LC_MESSAGES/kdevdocker.mo share/locale/pt_BR/LC_MESSAGES/kdevdocumentswitcher.mo share/locale/pt_BR/LC_MESSAGES/kdevdocumentview.mo share/locale/pt_BR/LC_MESSAGES/kdevelop.mo share/locale/pt_BR/LC_MESSAGES/kdevexecute.mo share/locale/pt_BR/LC_MESSAGES/kdevexecuteplasmoid.mo share/locale/pt_BR/LC_MESSAGES/kdevexecutescript.mo share/locale/pt_BR/LC_MESSAGES/kdevexternalscript.mo share/locale/pt_BR/LC_MESSAGES/kdevfilemanager.mo share/locale/pt_BR/LC_MESSAGES/kdevfiletemplates.mo share/locale/pt_BR/LC_MESSAGES/kdevflatpak.mo share/locale/pt_BR/LC_MESSAGES/kdevgdb.mo share/locale/pt_BR/LC_MESSAGES/kdevghprovider.mo share/locale/pt_BR/LC_MESSAGES/kdevgit.mo share/locale/pt_BR/LC_MESSAGES/kdevgrepview.mo share/locale/pt_BR/LC_MESSAGES/kdevheaptrack.mo share/locale/pt_BR/LC_MESSAGES/kdevkonsole.mo share/locale/pt_BR/LC_MESSAGES/kdevlldb.mo share/locale/pt_BR/LC_MESSAGES/kdevmakebuilder.mo share/locale/pt_BR/LC_MESSAGES/kdevmanpage.mo share/locale/pt_BR/LC_MESSAGES/kdevmesonmanager.mo share/locale/pt_BR/LC_MESSAGES/kdevninja.mo share/locale/pt_BR/LC_MESSAGES/kdevokteta.mo share/locale/pt_BR/LC_MESSAGES/kdevopenwith.mo share/locale/pt_BR/LC_MESSAGES/kdevoutlineview.mo share/locale/pt_BR/LC_MESSAGES/kdevpatchreview.mo share/locale/pt_BR/LC_MESSAGES/kdevperforce.mo share/locale/pt_BR/LC_MESSAGES/kdevplatform.mo share/locale/pt_BR/LC_MESSAGES/kdevproblemreporter.mo share/locale/pt_BR/LC_MESSAGES/kdevprojectfilter.mo share/locale/pt_BR/LC_MESSAGES/kdevprojectmanagerview.mo share/locale/pt_BR/LC_MESSAGES/kdevqmakebuilder.mo share/locale/pt_BR/LC_MESSAGES/kdevqmakemanager.mo share/locale/pt_BR/LC_MESSAGES/kdevqmljs.mo share/locale/pt_BR/LC_MESSAGES/kdevqthelp.mo share/locale/pt_BR/LC_MESSAGES/kdevquickopen.mo share/locale/pt_BR/LC_MESSAGES/kdevscratchpad.mo share/locale/pt_BR/LC_MESSAGES/kdevsourceformatter.mo share/locale/pt_BR/LC_MESSAGES/kdevstandardoutputview.mo share/locale/pt_BR/LC_MESSAGES/kdevsubversion.mo share/locale/pt_BR/LC_MESSAGES/kdevswitchtobuddy.mo share/locale/pt_BR/LC_MESSAGES/kdevtestview.mo share/locale/pt_BR/LC_MESSAGES/kdevvcsprojectintegration.mo share/locale/pt_BR/LC_MESSAGES/kdevwelcomepage.mo share/locale/pt_BR/LC_MESSAGES/plasma_applet_kdevelopsessions.mo share/locale/pt_BR/LC_MESSAGES/plasma_runner_kdevelopsessions.mo share/locale/ro/LC_MESSAGES/kdevappwizard.mo share/locale/ro/LC_MESSAGES/kdevastyle.mo share/locale/ro/LC_MESSAGES/kdevbazaar.mo share/locale/ro/LC_MESSAGES/kdevclassbrowser.mo share/locale/ro/LC_MESSAGES/kdevcmake.mo share/locale/ro/LC_MESSAGES/kdevcmakebuilder.mo share/locale/ro/LC_MESSAGES/kdevcontextbrowser.mo share/locale/ro/LC_MESSAGES/kdevcustommake.mo share/locale/ro/LC_MESSAGES/kdevcustomscript.mo share/locale/ro/LC_MESSAGES/kdevdebuggercommon.mo share/locale/ro/LC_MESSAGES/kdevdocumentswitcher.mo share/locale/ro/LC_MESSAGES/kdevdocumentview.mo share/locale/ro/LC_MESSAGES/kdevelop.mo share/locale/ro/LC_MESSAGES/kdevexecute.mo share/locale/ro/LC_MESSAGES/kdevfilemanager.mo share/locale/ro/LC_MESSAGES/kdevgdb.mo share/locale/ro/LC_MESSAGES/kdevgit.mo share/locale/ro/LC_MESSAGES/kdevgrepview.mo share/locale/ro/LC_MESSAGES/kdevkonsole.mo share/locale/ro/LC_MESSAGES/kdevmakebuilder.mo share/locale/ro/LC_MESSAGES/kdevopenwith.mo share/locale/ro/LC_MESSAGES/kdevpatchreview.mo share/locale/ro/LC_MESSAGES/kdevplatform.mo share/locale/ro/LC_MESSAGES/kdevproblemreporter.mo share/locale/ro/LC_MESSAGES/kdevprojectmanagerview.mo share/locale/ro/LC_MESSAGES/kdevqmakebuilder.mo share/locale/ro/LC_MESSAGES/kdevqmakemanager.mo share/locale/ro/LC_MESSAGES/kdevqthelp.mo share/locale/ro/LC_MESSAGES/kdevquickopen.mo share/locale/ro/LC_MESSAGES/kdevsourceformatter.mo share/locale/ro/LC_MESSAGES/kdevstandardoutputview.mo share/locale/ro/LC_MESSAGES/kdevsubversion.mo share/locale/ru/LC_MESSAGES/kdevandroid.mo share/locale/ru/LC_MESSAGES/kdevappwizard.mo share/locale/ru/LC_MESSAGES/kdevastyle.mo share/locale/ru/LC_MESSAGES/kdevbazaar.mo share/locale/ru/LC_MESSAGES/kdevclang.mo share/locale/ru/LC_MESSAGES/kdevclangtidy.mo share/locale/ru/LC_MESSAGES/kdevclassbrowser.mo share/locale/ru/LC_MESSAGES/kdevclazy.mo share/locale/ru/LC_MESSAGES/kdevcmake.mo share/locale/ru/LC_MESSAGES/kdevcmakebuilder.mo share/locale/ru/LC_MESSAGES/kdevcodeutils.mo share/locale/ru/LC_MESSAGES/kdevcompileanalyzercommon.mo share/locale/ru/LC_MESSAGES/kdevcontextbrowser.mo share/locale/ru/LC_MESSAGES/kdevcppcheck.mo share/locale/ru/LC_MESSAGES/kdevcustombuildsystem.mo share/locale/ru/LC_MESSAGES/kdevcustomdefinesandincludes.mo share/locale/ru/LC_MESSAGES/kdevcustommake.mo share/locale/ru/LC_MESSAGES/kdevcustomscript.mo share/locale/ru/LC_MESSAGES/kdevdebuggercommon.mo share/locale/ru/LC_MESSAGES/kdevdocumentswitcher.mo share/locale/ru/LC_MESSAGES/kdevdocumentview.mo share/locale/ru/LC_MESSAGES/kdevelop.mo share/locale/ru/LC_MESSAGES/kdevexecute.mo share/locale/ru/LC_MESSAGES/kdevexecuteplasmoid.mo share/locale/ru/LC_MESSAGES/kdevexecutescript.mo share/locale/ru/LC_MESSAGES/kdevexternalscript.mo share/locale/ru/LC_MESSAGES/kdevfilemanager.mo share/locale/ru/LC_MESSAGES/kdevfiletemplates.mo share/locale/ru/LC_MESSAGES/kdevgdb.mo share/locale/ru/LC_MESSAGES/kdevghprovider.mo share/locale/ru/LC_MESSAGES/kdevgit.mo share/locale/ru/LC_MESSAGES/kdevgrepview.mo share/locale/ru/LC_MESSAGES/kdevheaptrack.mo share/locale/ru/LC_MESSAGES/kdevkonsole.mo share/locale/ru/LC_MESSAGES/kdevlldb.mo share/locale/ru/LC_MESSAGES/kdevmakebuilder.mo share/locale/ru/LC_MESSAGES/kdevmanpage.mo share/locale/ru/LC_MESSAGES/kdevmesonmanager.mo share/locale/ru/LC_MESSAGES/kdevninja.mo share/locale/ru/LC_MESSAGES/kdevokteta.mo share/locale/ru/LC_MESSAGES/kdevopenwith.mo share/locale/ru/LC_MESSAGES/kdevoutlineview.mo share/locale/ru/LC_MESSAGES/kdevpatchreview.mo share/locale/ru/LC_MESSAGES/kdevperforce.mo share/locale/ru/LC_MESSAGES/kdevplatform.mo share/locale/ru/LC_MESSAGES/kdevproblemreporter.mo share/locale/ru/LC_MESSAGES/kdevprojectfilter.mo share/locale/ru/LC_MESSAGES/kdevprojectmanagerview.mo share/locale/ru/LC_MESSAGES/kdevqmakebuilder.mo share/locale/ru/LC_MESSAGES/kdevqmakemanager.mo share/locale/ru/LC_MESSAGES/kdevqmljs.mo share/locale/ru/LC_MESSAGES/kdevqthelp.mo share/locale/ru/LC_MESSAGES/kdevquickopen.mo share/locale/ru/LC_MESSAGES/kdevscratchpad.mo share/locale/ru/LC_MESSAGES/kdevstandardoutputview.mo share/locale/ru/LC_MESSAGES/kdevsubversion.mo share/locale/ru/LC_MESSAGES/kdevswitchtobuddy.mo share/locale/ru/LC_MESSAGES/kdevtestview.mo share/locale/ru/LC_MESSAGES/kdevvcsprojectintegration.mo share/locale/ru/LC_MESSAGES/kdevwelcomepage.mo share/locale/ru/LC_MESSAGES/plasma_applet_kdevelopsessions.mo share/locale/ru/LC_MESSAGES/plasma_runner_kdevelopsessions.mo share/locale/sa/LC_MESSAGES/kdevandroid.mo share/locale/sa/LC_MESSAGES/kdevappwizard.mo share/locale/sa/LC_MESSAGES/kdevastyle.mo share/locale/sa/LC_MESSAGES/kdevbazaar.mo share/locale/sa/LC_MESSAGES/kdevclang.mo share/locale/sa/LC_MESSAGES/kdevclangtidy.mo share/locale/sa/LC_MESSAGES/kdevclassbrowser.mo share/locale/sa/LC_MESSAGES/kdevclazy.mo share/locale/sa/LC_MESSAGES/kdevcmake.mo share/locale/sa/LC_MESSAGES/kdevcmakebuilder.mo share/locale/sa/LC_MESSAGES/kdevcodeutils.mo share/locale/sa/LC_MESSAGES/kdevcompileanalyzercommon.mo share/locale/sa/LC_MESSAGES/kdevcontextbrowser.mo share/locale/sa/LC_MESSAGES/kdevcppcheck.mo share/locale/sa/LC_MESSAGES/kdevcustombuildsystem.mo share/locale/sa/LC_MESSAGES/kdevcustomdefinesandincludes.mo share/locale/sa/LC_MESSAGES/kdevcustommake.mo share/locale/sa/LC_MESSAGES/kdevcustomscript.mo share/locale/sa/LC_MESSAGES/kdevdebuggercommon.mo share/locale/sa/LC_MESSAGES/kdevdocker.mo share/locale/sa/LC_MESSAGES/kdevdocumentswitcher.mo share/locale/sa/LC_MESSAGES/kdevdocumentview.mo share/locale/sa/LC_MESSAGES/kdevelop.mo share/locale/sa/LC_MESSAGES/kdevexecute.mo share/locale/sa/LC_MESSAGES/kdevexecuteplasmoid.mo share/locale/sa/LC_MESSAGES/kdevexecutescript.mo share/locale/sa/LC_MESSAGES/kdevexternalscript.mo share/locale/sa/LC_MESSAGES/kdevfilemanager.mo share/locale/sa/LC_MESSAGES/kdevfiletemplates.mo share/locale/sa/LC_MESSAGES/kdevflatpak.mo share/locale/sa/LC_MESSAGES/kdevgdb.mo share/locale/sa/LC_MESSAGES/kdevghprovider.mo share/locale/sa/LC_MESSAGES/kdevgit.mo share/locale/sa/LC_MESSAGES/kdevgrepview.mo share/locale/sa/LC_MESSAGES/kdevheaptrack.mo share/locale/sa/LC_MESSAGES/kdevkonsole.mo share/locale/sa/LC_MESSAGES/kdevlldb.mo share/locale/sa/LC_MESSAGES/kdevmakebuilder.mo share/locale/sa/LC_MESSAGES/kdevmanpage.mo share/locale/sa/LC_MESSAGES/kdevmesonmanager.mo share/locale/sa/LC_MESSAGES/kdevninja.mo share/locale/sa/LC_MESSAGES/kdevokteta.mo share/locale/sa/LC_MESSAGES/kdevopenwith.mo share/locale/sa/LC_MESSAGES/kdevoutlineview.mo share/locale/sa/LC_MESSAGES/kdevpatchreview.mo share/locale/sa/LC_MESSAGES/kdevperforce.mo share/locale/sa/LC_MESSAGES/kdevplatform.mo share/locale/sa/LC_MESSAGES/kdevproblemreporter.mo share/locale/sa/LC_MESSAGES/kdevprojectfilter.mo share/locale/sa/LC_MESSAGES/kdevprojectmanagerview.mo share/locale/sa/LC_MESSAGES/kdevqmakebuilder.mo share/locale/sa/LC_MESSAGES/kdevqmakemanager.mo share/locale/sa/LC_MESSAGES/kdevqmljs.mo share/locale/sa/LC_MESSAGES/kdevqthelp.mo share/locale/sa/LC_MESSAGES/kdevquickopen.mo share/locale/sa/LC_MESSAGES/kdevscratchpad.mo share/locale/sa/LC_MESSAGES/kdevsourceformatter.mo share/locale/sa/LC_MESSAGES/kdevstandardoutputview.mo share/locale/sa/LC_MESSAGES/kdevsubversion.mo share/locale/sa/LC_MESSAGES/kdevswitchtobuddy.mo share/locale/sa/LC_MESSAGES/kdevtestview.mo share/locale/sa/LC_MESSAGES/kdevvcsprojectintegration.mo share/locale/sa/LC_MESSAGES/kdevwelcomepage.mo share/locale/sa/LC_MESSAGES/plasma_applet_kdevelopsessions.mo share/locale/sa/LC_MESSAGES/plasma_runner_kdevelopsessions.mo share/locale/se/LC_MESSAGES/kdevelop.mo share/locale/sk/LC_MESSAGES/kdevandroid.mo share/locale/sk/LC_MESSAGES/kdevappwizard.mo share/locale/sk/LC_MESSAGES/kdevastyle.mo share/locale/sk/LC_MESSAGES/kdevbazaar.mo share/locale/sk/LC_MESSAGES/kdevclang.mo share/locale/sk/LC_MESSAGES/kdevclangtidy.mo share/locale/sk/LC_MESSAGES/kdevclassbrowser.mo share/locale/sk/LC_MESSAGES/kdevclazy.mo share/locale/sk/LC_MESSAGES/kdevcmake.mo share/locale/sk/LC_MESSAGES/kdevcmakebuilder.mo share/locale/sk/LC_MESSAGES/kdevcodeutils.mo share/locale/sk/LC_MESSAGES/kdevcompileanalyzercommon.mo share/locale/sk/LC_MESSAGES/kdevcontextbrowser.mo share/locale/sk/LC_MESSAGES/kdevcppcheck.mo share/locale/sk/LC_MESSAGES/kdevcustombuildsystem.mo share/locale/sk/LC_MESSAGES/kdevcustomdefinesandincludes.mo share/locale/sk/LC_MESSAGES/kdevcustommake.mo share/locale/sk/LC_MESSAGES/kdevcustomscript.mo share/locale/sk/LC_MESSAGES/kdevdebuggercommon.mo share/locale/sk/LC_MESSAGES/kdevdocker.mo share/locale/sk/LC_MESSAGES/kdevdocumentswitcher.mo share/locale/sk/LC_MESSAGES/kdevdocumentview.mo share/locale/sk/LC_MESSAGES/kdevelop.mo share/locale/sk/LC_MESSAGES/kdevexecute.mo share/locale/sk/LC_MESSAGES/kdevexecuteplasmoid.mo share/locale/sk/LC_MESSAGES/kdevexecutescript.mo share/locale/sk/LC_MESSAGES/kdevexternalscript.mo share/locale/sk/LC_MESSAGES/kdevfilemanager.mo share/locale/sk/LC_MESSAGES/kdevfiletemplates.mo share/locale/sk/LC_MESSAGES/kdevflatpak.mo share/locale/sk/LC_MESSAGES/kdevgdb.mo share/locale/sk/LC_MESSAGES/kdevghprovider.mo share/locale/sk/LC_MESSAGES/kdevgit.mo share/locale/sk/LC_MESSAGES/kdevgrepview.mo share/locale/sk/LC_MESSAGES/kdevheaptrack.mo share/locale/sk/LC_MESSAGES/kdevkonsole.mo share/locale/sk/LC_MESSAGES/kdevlldb.mo share/locale/sk/LC_MESSAGES/kdevmakebuilder.mo share/locale/sk/LC_MESSAGES/kdevmanpage.mo share/locale/sk/LC_MESSAGES/kdevmesonmanager.mo share/locale/sk/LC_MESSAGES/kdevninja.mo share/locale/sk/LC_MESSAGES/kdevokteta.mo share/locale/sk/LC_MESSAGES/kdevopenwith.mo share/locale/sk/LC_MESSAGES/kdevoutlineview.mo share/locale/sk/LC_MESSAGES/kdevpatchreview.mo share/locale/sk/LC_MESSAGES/kdevperforce.mo share/locale/sk/LC_MESSAGES/kdevplatform.mo share/locale/sk/LC_MESSAGES/kdevproblemreporter.mo share/locale/sk/LC_MESSAGES/kdevprojectfilter.mo share/locale/sk/LC_MESSAGES/kdevprojectmanagerview.mo share/locale/sk/LC_MESSAGES/kdevqmakebuilder.mo share/locale/sk/LC_MESSAGES/kdevqmakemanager.mo share/locale/sk/LC_MESSAGES/kdevqmljs.mo share/locale/sk/LC_MESSAGES/kdevqthelp.mo share/locale/sk/LC_MESSAGES/kdevquickopen.mo share/locale/sk/LC_MESSAGES/kdevscratchpad.mo share/locale/sk/LC_MESSAGES/kdevsourceformatter.mo share/locale/sk/LC_MESSAGES/kdevstandardoutputview.mo share/locale/sk/LC_MESSAGES/kdevsubversion.mo share/locale/sk/LC_MESSAGES/kdevswitchtobuddy.mo share/locale/sk/LC_MESSAGES/kdevtestview.mo share/locale/sk/LC_MESSAGES/kdevvcsprojectintegration.mo share/locale/sk/LC_MESSAGES/kdevwelcomepage.mo share/locale/sk/LC_MESSAGES/plasma_applet_kdevelopsessions.mo share/locale/sk/LC_MESSAGES/plasma_runner_kdevelopsessions.mo share/locale/sl/LC_MESSAGES/kdevandroid.mo share/locale/sl/LC_MESSAGES/kdevappwizard.mo share/locale/sl/LC_MESSAGES/kdevastyle.mo share/locale/sl/LC_MESSAGES/kdevbazaar.mo share/locale/sl/LC_MESSAGES/kdevclang.mo share/locale/sl/LC_MESSAGES/kdevclangtidy.mo share/locale/sl/LC_MESSAGES/kdevclassbrowser.mo share/locale/sl/LC_MESSAGES/kdevclazy.mo share/locale/sl/LC_MESSAGES/kdevcmake.mo share/locale/sl/LC_MESSAGES/kdevcmakebuilder.mo share/locale/sl/LC_MESSAGES/kdevcodeutils.mo share/locale/sl/LC_MESSAGES/kdevcompileanalyzercommon.mo share/locale/sl/LC_MESSAGES/kdevcontextbrowser.mo share/locale/sl/LC_MESSAGES/kdevcppcheck.mo share/locale/sl/LC_MESSAGES/kdevcustombuildsystem.mo share/locale/sl/LC_MESSAGES/kdevcustomdefinesandincludes.mo share/locale/sl/LC_MESSAGES/kdevcustommake.mo share/locale/sl/LC_MESSAGES/kdevcustomscript.mo share/locale/sl/LC_MESSAGES/kdevdebuggercommon.mo share/locale/sl/LC_MESSAGES/kdevdocker.mo share/locale/sl/LC_MESSAGES/kdevdocumentswitcher.mo share/locale/sl/LC_MESSAGES/kdevdocumentview.mo share/locale/sl/LC_MESSAGES/kdevelop.mo share/locale/sl/LC_MESSAGES/kdevexecute.mo share/locale/sl/LC_MESSAGES/kdevexecuteplasmoid.mo share/locale/sl/LC_MESSAGES/kdevexecutescript.mo share/locale/sl/LC_MESSAGES/kdevexternalscript.mo share/locale/sl/LC_MESSAGES/kdevfilemanager.mo share/locale/sl/LC_MESSAGES/kdevfiletemplates.mo share/locale/sl/LC_MESSAGES/kdevflatpak.mo share/locale/sl/LC_MESSAGES/kdevgdb.mo share/locale/sl/LC_MESSAGES/kdevghprovider.mo share/locale/sl/LC_MESSAGES/kdevgit.mo share/locale/sl/LC_MESSAGES/kdevgrepview.mo share/locale/sl/LC_MESSAGES/kdevheaptrack.mo share/locale/sl/LC_MESSAGES/kdevkonsole.mo share/locale/sl/LC_MESSAGES/kdevlldb.mo share/locale/sl/LC_MESSAGES/kdevmakebuilder.mo share/locale/sl/LC_MESSAGES/kdevmanpage.mo share/locale/sl/LC_MESSAGES/kdevmesonmanager.mo share/locale/sl/LC_MESSAGES/kdevninja.mo share/locale/sl/LC_MESSAGES/kdevokteta.mo share/locale/sl/LC_MESSAGES/kdevopenwith.mo share/locale/sl/LC_MESSAGES/kdevoutlineview.mo share/locale/sl/LC_MESSAGES/kdevpatchreview.mo share/locale/sl/LC_MESSAGES/kdevperforce.mo share/locale/sl/LC_MESSAGES/kdevplatform.mo share/locale/sl/LC_MESSAGES/kdevproblemreporter.mo share/locale/sl/LC_MESSAGES/kdevprojectfilter.mo share/locale/sl/LC_MESSAGES/kdevprojectmanagerview.mo share/locale/sl/LC_MESSAGES/kdevqmakebuilder.mo share/locale/sl/LC_MESSAGES/kdevqmakemanager.mo share/locale/sl/LC_MESSAGES/kdevqmljs.mo share/locale/sl/LC_MESSAGES/kdevqthelp.mo share/locale/sl/LC_MESSAGES/kdevquickopen.mo share/locale/sl/LC_MESSAGES/kdevscratchpad.mo share/locale/sl/LC_MESSAGES/kdevsourceformatter.mo share/locale/sl/LC_MESSAGES/kdevstandardoutputview.mo share/locale/sl/LC_MESSAGES/kdevsubversion.mo share/locale/sl/LC_MESSAGES/kdevswitchtobuddy.mo share/locale/sl/LC_MESSAGES/kdevtestview.mo share/locale/sl/LC_MESSAGES/kdevvcsprojectintegration.mo share/locale/sl/LC_MESSAGES/kdevwelcomepage.mo share/locale/sl/LC_MESSAGES/plasma_applet_kdevelopsessions.mo share/locale/sl/LC_MESSAGES/plasma_runner_kdevelopsessions.mo share/locale/sv/LC_MESSAGES/kdevandroid.mo share/locale/sv/LC_MESSAGES/kdevappwizard.mo share/locale/sv/LC_MESSAGES/kdevastyle.mo share/locale/sv/LC_MESSAGES/kdevbazaar.mo share/locale/sv/LC_MESSAGES/kdevclang.mo share/locale/sv/LC_MESSAGES/kdevclangtidy.mo share/locale/sv/LC_MESSAGES/kdevclassbrowser.mo share/locale/sv/LC_MESSAGES/kdevclazy.mo share/locale/sv/LC_MESSAGES/kdevcmake.mo share/locale/sv/LC_MESSAGES/kdevcmakebuilder.mo share/locale/sv/LC_MESSAGES/kdevcodeutils.mo share/locale/sv/LC_MESSAGES/kdevcompileanalyzercommon.mo share/locale/sv/LC_MESSAGES/kdevcontextbrowser.mo share/locale/sv/LC_MESSAGES/kdevcppcheck.mo share/locale/sv/LC_MESSAGES/kdevcustombuildsystem.mo share/locale/sv/LC_MESSAGES/kdevcustomdefinesandincludes.mo share/locale/sv/LC_MESSAGES/kdevcustommake.mo share/locale/sv/LC_MESSAGES/kdevcustomscript.mo share/locale/sv/LC_MESSAGES/kdevdebuggercommon.mo share/locale/sv/LC_MESSAGES/kdevdocker.mo share/locale/sv/LC_MESSAGES/kdevdocumentswitcher.mo share/locale/sv/LC_MESSAGES/kdevdocumentview.mo share/locale/sv/LC_MESSAGES/kdevelop.mo share/locale/sv/LC_MESSAGES/kdevexecute.mo share/locale/sv/LC_MESSAGES/kdevexecuteplasmoid.mo share/locale/sv/LC_MESSAGES/kdevexecutescript.mo share/locale/sv/LC_MESSAGES/kdevexternalscript.mo share/locale/sv/LC_MESSAGES/kdevfilemanager.mo share/locale/sv/LC_MESSAGES/kdevfiletemplates.mo share/locale/sv/LC_MESSAGES/kdevflatpak.mo share/locale/sv/LC_MESSAGES/kdevgdb.mo share/locale/sv/LC_MESSAGES/kdevghprovider.mo share/locale/sv/LC_MESSAGES/kdevgit.mo share/locale/sv/LC_MESSAGES/kdevgrepview.mo share/locale/sv/LC_MESSAGES/kdevheaptrack.mo share/locale/sv/LC_MESSAGES/kdevkonsole.mo share/locale/sv/LC_MESSAGES/kdevlldb.mo share/locale/sv/LC_MESSAGES/kdevmakebuilder.mo share/locale/sv/LC_MESSAGES/kdevmanpage.mo share/locale/sv/LC_MESSAGES/kdevmesonmanager.mo share/locale/sv/LC_MESSAGES/kdevninja.mo share/locale/sv/LC_MESSAGES/kdevokteta.mo share/locale/sv/LC_MESSAGES/kdevopenwith.mo share/locale/sv/LC_MESSAGES/kdevoutlineview.mo share/locale/sv/LC_MESSAGES/kdevpatchreview.mo share/locale/sv/LC_MESSAGES/kdevperforce.mo share/locale/sv/LC_MESSAGES/kdevplatform.mo share/locale/sv/LC_MESSAGES/kdevproblemreporter.mo share/locale/sv/LC_MESSAGES/kdevprojectfilter.mo share/locale/sv/LC_MESSAGES/kdevprojectmanagerview.mo share/locale/sv/LC_MESSAGES/kdevqmakebuilder.mo share/locale/sv/LC_MESSAGES/kdevqmakemanager.mo share/locale/sv/LC_MESSAGES/kdevqmljs.mo share/locale/sv/LC_MESSAGES/kdevqthelp.mo share/locale/sv/LC_MESSAGES/kdevquickopen.mo share/locale/sv/LC_MESSAGES/kdevscratchpad.mo share/locale/sv/LC_MESSAGES/kdevsourceformatter.mo share/locale/sv/LC_MESSAGES/kdevstandardoutputview.mo share/locale/sv/LC_MESSAGES/kdevsubversion.mo share/locale/sv/LC_MESSAGES/kdevswitchtobuddy.mo share/locale/sv/LC_MESSAGES/kdevtestview.mo share/locale/sv/LC_MESSAGES/kdevvcsprojectintegration.mo share/locale/sv/LC_MESSAGES/kdevwelcomepage.mo share/locale/sv/LC_MESSAGES/plasma_applet_kdevelopsessions.mo share/locale/sv/LC_MESSAGES/plasma_runner_kdevelopsessions.mo share/locale/ta/LC_MESSAGES/kdevelop.mo share/locale/ta/LC_MESSAGES/kdevkonsole.mo share/locale/tg/LC_MESSAGES/kdevelop.mo share/locale/tg/LC_MESSAGES/kdevplatform.mo share/locale/th/LC_MESSAGES/kdevappwizard.mo share/locale/th/LC_MESSAGES/kdevcustommake.mo share/locale/th/LC_MESSAGES/kdevkonsole.mo share/locale/th/LC_MESSAGES/kdevstandardoutputview.mo share/locale/tr/LC_MESSAGES/kdevandroid.mo share/locale/tr/LC_MESSAGES/kdevappwizard.mo share/locale/tr/LC_MESSAGES/kdevastyle.mo share/locale/tr/LC_MESSAGES/kdevbazaar.mo share/locale/tr/LC_MESSAGES/kdevclang.mo share/locale/tr/LC_MESSAGES/kdevclangtidy.mo share/locale/tr/LC_MESSAGES/kdevclassbrowser.mo share/locale/tr/LC_MESSAGES/kdevclazy.mo share/locale/tr/LC_MESSAGES/kdevcmake.mo share/locale/tr/LC_MESSAGES/kdevcmakebuilder.mo share/locale/tr/LC_MESSAGES/kdevcodeutils.mo share/locale/tr/LC_MESSAGES/kdevcompileanalyzercommon.mo share/locale/tr/LC_MESSAGES/kdevcontextbrowser.mo share/locale/tr/LC_MESSAGES/kdevcppcheck.mo share/locale/tr/LC_MESSAGES/kdevcustombuildsystem.mo share/locale/tr/LC_MESSAGES/kdevcustomdefinesandincludes.mo share/locale/tr/LC_MESSAGES/kdevcustommake.mo share/locale/tr/LC_MESSAGES/kdevcustomscript.mo share/locale/tr/LC_MESSAGES/kdevdebuggercommon.mo share/locale/tr/LC_MESSAGES/kdevdocker.mo share/locale/tr/LC_MESSAGES/kdevdocumentswitcher.mo share/locale/tr/LC_MESSAGES/kdevdocumentview.mo share/locale/tr/LC_MESSAGES/kdevelop.mo share/locale/tr/LC_MESSAGES/kdevexecute.mo share/locale/tr/LC_MESSAGES/kdevexecuteplasmoid.mo share/locale/tr/LC_MESSAGES/kdevexecutescript.mo share/locale/tr/LC_MESSAGES/kdevexternalscript.mo share/locale/tr/LC_MESSAGES/kdevfilemanager.mo share/locale/tr/LC_MESSAGES/kdevfiletemplates.mo share/locale/tr/LC_MESSAGES/kdevflatpak.mo share/locale/tr/LC_MESSAGES/kdevgdb.mo share/locale/tr/LC_MESSAGES/kdevghprovider.mo share/locale/tr/LC_MESSAGES/kdevgit.mo share/locale/tr/LC_MESSAGES/kdevgrepview.mo share/locale/tr/LC_MESSAGES/kdevheaptrack.mo share/locale/tr/LC_MESSAGES/kdevkonsole.mo share/locale/tr/LC_MESSAGES/kdevlldb.mo share/locale/tr/LC_MESSAGES/kdevmakebuilder.mo share/locale/tr/LC_MESSAGES/kdevmanpage.mo share/locale/tr/LC_MESSAGES/kdevmesonmanager.mo share/locale/tr/LC_MESSAGES/kdevninja.mo share/locale/tr/LC_MESSAGES/kdevokteta.mo share/locale/tr/LC_MESSAGES/kdevopenwith.mo share/locale/tr/LC_MESSAGES/kdevoutlineview.mo share/locale/tr/LC_MESSAGES/kdevpatchreview.mo share/locale/tr/LC_MESSAGES/kdevperforce.mo share/locale/tr/LC_MESSAGES/kdevplatform.mo share/locale/tr/LC_MESSAGES/kdevproblemreporter.mo share/locale/tr/LC_MESSAGES/kdevprojectfilter.mo share/locale/tr/LC_MESSAGES/kdevprojectmanagerview.mo share/locale/tr/LC_MESSAGES/kdevqmakebuilder.mo share/locale/tr/LC_MESSAGES/kdevqmakemanager.mo share/locale/tr/LC_MESSAGES/kdevqmljs.mo share/locale/tr/LC_MESSAGES/kdevqthelp.mo share/locale/tr/LC_MESSAGES/kdevquickopen.mo share/locale/tr/LC_MESSAGES/kdevscratchpad.mo share/locale/tr/LC_MESSAGES/kdevsourceformatter.mo share/locale/tr/LC_MESSAGES/kdevstandardoutputview.mo share/locale/tr/LC_MESSAGES/kdevsubversion.mo share/locale/tr/LC_MESSAGES/kdevswitchtobuddy.mo share/locale/tr/LC_MESSAGES/kdevtestview.mo share/locale/tr/LC_MESSAGES/kdevvcsprojectintegration.mo share/locale/tr/LC_MESSAGES/kdevwelcomepage.mo share/locale/tr/LC_MESSAGES/plasma_applet_kdevelopsessions.mo share/locale/tr/LC_MESSAGES/plasma_runner_kdevelopsessions.mo share/locale/ug/LC_MESSAGES/kdevappwizard.mo share/locale/ug/LC_MESSAGES/kdevbazaar.mo share/locale/ug/LC_MESSAGES/kdevclassbrowser.mo share/locale/ug/LC_MESSAGES/kdevcmake.mo share/locale/ug/LC_MESSAGES/kdevcmakebuilder.mo share/locale/ug/LC_MESSAGES/kdevcodeutils.mo share/locale/ug/LC_MESSAGES/kdevcontextbrowser.mo share/locale/ug/LC_MESSAGES/kdevcustombuildsystem.mo share/locale/ug/LC_MESSAGES/kdevcustommake.mo share/locale/ug/LC_MESSAGES/kdevdebuggercommon.mo share/locale/ug/LC_MESSAGES/kdevdocumentswitcher.mo share/locale/ug/LC_MESSAGES/kdevdocumentview.mo share/locale/ug/LC_MESSAGES/kdevelop.mo share/locale/ug/LC_MESSAGES/kdevexecute.mo share/locale/ug/LC_MESSAGES/kdevexecuteplasmoid.mo share/locale/ug/LC_MESSAGES/kdevexecutescript.mo share/locale/ug/LC_MESSAGES/kdevexternalscript.mo share/locale/ug/LC_MESSAGES/kdevfilemanager.mo share/locale/ug/LC_MESSAGES/kdevfiletemplates.mo share/locale/ug/LC_MESSAGES/kdevgdb.mo share/locale/ug/LC_MESSAGES/kdevgit.mo share/locale/ug/LC_MESSAGES/kdevgrepview.mo share/locale/ug/LC_MESSAGES/kdevkonsole.mo share/locale/ug/LC_MESSAGES/kdevmakebuilder.mo share/locale/ug/LC_MESSAGES/kdevmanpage.mo share/locale/ug/LC_MESSAGES/kdevninja.mo share/locale/ug/LC_MESSAGES/kdevokteta.mo share/locale/ug/LC_MESSAGES/kdevopenwith.mo share/locale/ug/LC_MESSAGES/kdevpatchreview.mo share/locale/ug/LC_MESSAGES/kdevperforce.mo share/locale/ug/LC_MESSAGES/kdevplatform.mo share/locale/ug/LC_MESSAGES/kdevproblemreporter.mo share/locale/ug/LC_MESSAGES/kdevprojectmanagerview.mo share/locale/ug/LC_MESSAGES/kdevqmakebuilder.mo share/locale/ug/LC_MESSAGES/kdevqmakemanager.mo share/locale/ug/LC_MESSAGES/kdevqmljs.mo share/locale/ug/LC_MESSAGES/kdevqthelp.mo share/locale/ug/LC_MESSAGES/kdevquickopen.mo share/locale/ug/LC_MESSAGES/kdevstandardoutputview.mo share/locale/ug/LC_MESSAGES/kdevsubversion.mo share/locale/ug/LC_MESSAGES/kdevswitchtobuddy.mo share/locale/ug/LC_MESSAGES/kdevtestview.mo share/locale/ug/LC_MESSAGES/kdevvcsprojectintegration.mo share/locale/ug/LC_MESSAGES/plasma_applet_kdevelopsessions.mo share/locale/ug/LC_MESSAGES/plasma_runner_kdevelopsessions.mo share/locale/uk/LC_MESSAGES/kdevandroid.mo share/locale/uk/LC_MESSAGES/kdevappwizard.mo share/locale/uk/LC_MESSAGES/kdevastyle.mo share/locale/uk/LC_MESSAGES/kdevbazaar.mo share/locale/uk/LC_MESSAGES/kdevclang.mo share/locale/uk/LC_MESSAGES/kdevclangtidy.mo share/locale/uk/LC_MESSAGES/kdevclassbrowser.mo share/locale/uk/LC_MESSAGES/kdevclazy.mo share/locale/uk/LC_MESSAGES/kdevcmake.mo share/locale/uk/LC_MESSAGES/kdevcmakebuilder.mo share/locale/uk/LC_MESSAGES/kdevcodeutils.mo share/locale/uk/LC_MESSAGES/kdevcompileanalyzercommon.mo share/locale/uk/LC_MESSAGES/kdevcontextbrowser.mo share/locale/uk/LC_MESSAGES/kdevcppcheck.mo share/locale/uk/LC_MESSAGES/kdevcustombuildsystem.mo share/locale/uk/LC_MESSAGES/kdevcustomdefinesandincludes.mo share/locale/uk/LC_MESSAGES/kdevcustommake.mo share/locale/uk/LC_MESSAGES/kdevcustomscript.mo share/locale/uk/LC_MESSAGES/kdevdebuggercommon.mo share/locale/uk/LC_MESSAGES/kdevdocker.mo share/locale/uk/LC_MESSAGES/kdevdocumentswitcher.mo share/locale/uk/LC_MESSAGES/kdevdocumentview.mo share/locale/uk/LC_MESSAGES/kdevelop.mo share/locale/uk/LC_MESSAGES/kdevexecute.mo share/locale/uk/LC_MESSAGES/kdevexecuteplasmoid.mo share/locale/uk/LC_MESSAGES/kdevexecutescript.mo share/locale/uk/LC_MESSAGES/kdevexternalscript.mo share/locale/uk/LC_MESSAGES/kdevfilemanager.mo share/locale/uk/LC_MESSAGES/kdevfiletemplates.mo share/locale/uk/LC_MESSAGES/kdevflatpak.mo share/locale/uk/LC_MESSAGES/kdevgdb.mo share/locale/uk/LC_MESSAGES/kdevghprovider.mo share/locale/uk/LC_MESSAGES/kdevgit.mo share/locale/uk/LC_MESSAGES/kdevgrepview.mo share/locale/uk/LC_MESSAGES/kdevheaptrack.mo share/locale/uk/LC_MESSAGES/kdevkonsole.mo share/locale/uk/LC_MESSAGES/kdevlldb.mo share/locale/uk/LC_MESSAGES/kdevmakebuilder.mo share/locale/uk/LC_MESSAGES/kdevmanpage.mo share/locale/uk/LC_MESSAGES/kdevmesonmanager.mo share/locale/uk/LC_MESSAGES/kdevninja.mo share/locale/uk/LC_MESSAGES/kdevokteta.mo share/locale/uk/LC_MESSAGES/kdevopenwith.mo share/locale/uk/LC_MESSAGES/kdevoutlineview.mo share/locale/uk/LC_MESSAGES/kdevpatchreview.mo share/locale/uk/LC_MESSAGES/kdevperforce.mo share/locale/uk/LC_MESSAGES/kdevplatform.mo share/locale/uk/LC_MESSAGES/kdevproblemreporter.mo share/locale/uk/LC_MESSAGES/kdevprojectfilter.mo share/locale/uk/LC_MESSAGES/kdevprojectmanagerview.mo share/locale/uk/LC_MESSAGES/kdevqmakebuilder.mo share/locale/uk/LC_MESSAGES/kdevqmakemanager.mo share/locale/uk/LC_MESSAGES/kdevqmljs.mo share/locale/uk/LC_MESSAGES/kdevqthelp.mo share/locale/uk/LC_MESSAGES/kdevquickopen.mo share/locale/uk/LC_MESSAGES/kdevscratchpad.mo share/locale/uk/LC_MESSAGES/kdevsourceformatter.mo share/locale/uk/LC_MESSAGES/kdevstandardoutputview.mo share/locale/uk/LC_MESSAGES/kdevsubversion.mo share/locale/uk/LC_MESSAGES/kdevswitchtobuddy.mo share/locale/uk/LC_MESSAGES/kdevtestview.mo share/locale/uk/LC_MESSAGES/kdevvcsprojectintegration.mo share/locale/uk/LC_MESSAGES/kdevwelcomepage.mo share/locale/uk/LC_MESSAGES/plasma_applet_kdevelopsessions.mo share/locale/uk/LC_MESSAGES/plasma_runner_kdevelopsessions.mo share/locale/vi/LC_MESSAGES/plasma_applet_kdevelopsessions.mo share/locale/vi/LC_MESSAGES/plasma_runner_kdevelopsessions.mo share/locale/xh/LC_MESSAGES/kdevelop.mo share/locale/zh_CN/LC_MESSAGES/kdevandroid.mo share/locale/zh_CN/LC_MESSAGES/kdevappwizard.mo share/locale/zh_CN/LC_MESSAGES/kdevastyle.mo share/locale/zh_CN/LC_MESSAGES/kdevbazaar.mo share/locale/zh_CN/LC_MESSAGES/kdevclang.mo share/locale/zh_CN/LC_MESSAGES/kdevclangtidy.mo share/locale/zh_CN/LC_MESSAGES/kdevclassbrowser.mo share/locale/zh_CN/LC_MESSAGES/kdevclazy.mo share/locale/zh_CN/LC_MESSAGES/kdevcmake.mo share/locale/zh_CN/LC_MESSAGES/kdevcmakebuilder.mo share/locale/zh_CN/LC_MESSAGES/kdevcodeutils.mo share/locale/zh_CN/LC_MESSAGES/kdevcompileanalyzercommon.mo share/locale/zh_CN/LC_MESSAGES/kdevcontextbrowser.mo share/locale/zh_CN/LC_MESSAGES/kdevcppcheck.mo share/locale/zh_CN/LC_MESSAGES/kdevcustombuildsystem.mo share/locale/zh_CN/LC_MESSAGES/kdevcustomdefinesandincludes.mo share/locale/zh_CN/LC_MESSAGES/kdevcustommake.mo share/locale/zh_CN/LC_MESSAGES/kdevcustomscript.mo share/locale/zh_CN/LC_MESSAGES/kdevdebuggercommon.mo share/locale/zh_CN/LC_MESSAGES/kdevdocker.mo share/locale/zh_CN/LC_MESSAGES/kdevdocumentswitcher.mo share/locale/zh_CN/LC_MESSAGES/kdevdocumentview.mo share/locale/zh_CN/LC_MESSAGES/kdevelop.mo share/locale/zh_CN/LC_MESSAGES/kdevexecute.mo share/locale/zh_CN/LC_MESSAGES/kdevexecuteplasmoid.mo share/locale/zh_CN/LC_MESSAGES/kdevexecutescript.mo share/locale/zh_CN/LC_MESSAGES/kdevexternalscript.mo share/locale/zh_CN/LC_MESSAGES/kdevfilemanager.mo share/locale/zh_CN/LC_MESSAGES/kdevfiletemplates.mo share/locale/zh_CN/LC_MESSAGES/kdevflatpak.mo share/locale/zh_CN/LC_MESSAGES/kdevgdb.mo share/locale/zh_CN/LC_MESSAGES/kdevghprovider.mo share/locale/zh_CN/LC_MESSAGES/kdevgit.mo share/locale/zh_CN/LC_MESSAGES/kdevgrepview.mo share/locale/zh_CN/LC_MESSAGES/kdevheaptrack.mo share/locale/zh_CN/LC_MESSAGES/kdevkonsole.mo share/locale/zh_CN/LC_MESSAGES/kdevlldb.mo share/locale/zh_CN/LC_MESSAGES/kdevmakebuilder.mo share/locale/zh_CN/LC_MESSAGES/kdevmanpage.mo share/locale/zh_CN/LC_MESSAGES/kdevmesonmanager.mo share/locale/zh_CN/LC_MESSAGES/kdevninja.mo share/locale/zh_CN/LC_MESSAGES/kdevokteta.mo share/locale/zh_CN/LC_MESSAGES/kdevopenwith.mo share/locale/zh_CN/LC_MESSAGES/kdevoutlineview.mo share/locale/zh_CN/LC_MESSAGES/kdevpatchreview.mo share/locale/zh_CN/LC_MESSAGES/kdevperforce.mo share/locale/zh_CN/LC_MESSAGES/kdevplatform.mo share/locale/zh_CN/LC_MESSAGES/kdevproblemreporter.mo share/locale/zh_CN/LC_MESSAGES/kdevprojectfilter.mo share/locale/zh_CN/LC_MESSAGES/kdevprojectmanagerview.mo share/locale/zh_CN/LC_MESSAGES/kdevqmakebuilder.mo share/locale/zh_CN/LC_MESSAGES/kdevqmakemanager.mo share/locale/zh_CN/LC_MESSAGES/kdevqmljs.mo share/locale/zh_CN/LC_MESSAGES/kdevqthelp.mo share/locale/zh_CN/LC_MESSAGES/kdevquickopen.mo share/locale/zh_CN/LC_MESSAGES/kdevscratchpad.mo share/locale/zh_CN/LC_MESSAGES/kdevsourceformatter.mo share/locale/zh_CN/LC_MESSAGES/kdevstandardoutputview.mo share/locale/zh_CN/LC_MESSAGES/kdevsubversion.mo share/locale/zh_CN/LC_MESSAGES/kdevswitchtobuddy.mo share/locale/zh_CN/LC_MESSAGES/kdevtestview.mo share/locale/zh_CN/LC_MESSAGES/kdevvcsprojectintegration.mo share/locale/zh_CN/LC_MESSAGES/kdevwelcomepage.mo share/locale/zh_CN/LC_MESSAGES/plasma_applet_kdevelopsessions.mo share/locale/zh_CN/LC_MESSAGES/plasma_runner_kdevelopsessions.mo share/locale/zh_TW/LC_MESSAGES/kdevandroid.mo share/locale/zh_TW/LC_MESSAGES/kdevappwizard.mo share/locale/zh_TW/LC_MESSAGES/kdevastyle.mo share/locale/zh_TW/LC_MESSAGES/kdevbazaar.mo share/locale/zh_TW/LC_MESSAGES/kdevclang.mo share/locale/zh_TW/LC_MESSAGES/kdevclangtidy.mo share/locale/zh_TW/LC_MESSAGES/kdevclassbrowser.mo share/locale/zh_TW/LC_MESSAGES/kdevclazy.mo share/locale/zh_TW/LC_MESSAGES/kdevcmake.mo share/locale/zh_TW/LC_MESSAGES/kdevcmakebuilder.mo share/locale/zh_TW/LC_MESSAGES/kdevcodeutils.mo share/locale/zh_TW/LC_MESSAGES/kdevcompileanalyzercommon.mo share/locale/zh_TW/LC_MESSAGES/kdevcontextbrowser.mo share/locale/zh_TW/LC_MESSAGES/kdevcppcheck.mo share/locale/zh_TW/LC_MESSAGES/kdevcustombuildsystem.mo share/locale/zh_TW/LC_MESSAGES/kdevcustomdefinesandincludes.mo share/locale/zh_TW/LC_MESSAGES/kdevcustommake.mo share/locale/zh_TW/LC_MESSAGES/kdevcustomscript.mo share/locale/zh_TW/LC_MESSAGES/kdevdebuggercommon.mo share/locale/zh_TW/LC_MESSAGES/kdevdocker.mo share/locale/zh_TW/LC_MESSAGES/kdevdocumentswitcher.mo share/locale/zh_TW/LC_MESSAGES/kdevdocumentview.mo share/locale/zh_TW/LC_MESSAGES/kdevelop.mo share/locale/zh_TW/LC_MESSAGES/kdevexecute.mo share/locale/zh_TW/LC_MESSAGES/kdevexecuteplasmoid.mo share/locale/zh_TW/LC_MESSAGES/kdevexecutescript.mo share/locale/zh_TW/LC_MESSAGES/kdevexternalscript.mo share/locale/zh_TW/LC_MESSAGES/kdevfilemanager.mo share/locale/zh_TW/LC_MESSAGES/kdevfiletemplates.mo share/locale/zh_TW/LC_MESSAGES/kdevflatpak.mo share/locale/zh_TW/LC_MESSAGES/kdevgdb.mo share/locale/zh_TW/LC_MESSAGES/kdevghprovider.mo share/locale/zh_TW/LC_MESSAGES/kdevgit.mo share/locale/zh_TW/LC_MESSAGES/kdevgrepview.mo share/locale/zh_TW/LC_MESSAGES/kdevheaptrack.mo share/locale/zh_TW/LC_MESSAGES/kdevkonsole.mo share/locale/zh_TW/LC_MESSAGES/kdevlldb.mo share/locale/zh_TW/LC_MESSAGES/kdevmakebuilder.mo share/locale/zh_TW/LC_MESSAGES/kdevmanpage.mo share/locale/zh_TW/LC_MESSAGES/kdevmesonmanager.mo share/locale/zh_TW/LC_MESSAGES/kdevninja.mo share/locale/zh_TW/LC_MESSAGES/kdevokteta.mo share/locale/zh_TW/LC_MESSAGES/kdevopenwith.mo share/locale/zh_TW/LC_MESSAGES/kdevoutlineview.mo share/locale/zh_TW/LC_MESSAGES/kdevpatchreview.mo share/locale/zh_TW/LC_MESSAGES/kdevperforce.mo share/locale/zh_TW/LC_MESSAGES/kdevplatform.mo share/locale/zh_TW/LC_MESSAGES/kdevproblemreporter.mo share/locale/zh_TW/LC_MESSAGES/kdevprojectfilter.mo share/locale/zh_TW/LC_MESSAGES/kdevprojectmanagerview.mo share/locale/zh_TW/LC_MESSAGES/kdevqmakebuilder.mo share/locale/zh_TW/LC_MESSAGES/kdevqmakemanager.mo share/locale/zh_TW/LC_MESSAGES/kdevqmljs.mo share/locale/zh_TW/LC_MESSAGES/kdevqthelp.mo share/locale/zh_TW/LC_MESSAGES/kdevquickopen.mo share/locale/zh_TW/LC_MESSAGES/kdevscratchpad.mo share/locale/zh_TW/LC_MESSAGES/kdevsourceformatter.mo share/locale/zh_TW/LC_MESSAGES/kdevstandardoutputview.mo share/locale/zh_TW/LC_MESSAGES/kdevsubversion.mo share/locale/zh_TW/LC_MESSAGES/kdevswitchtobuddy.mo share/locale/zh_TW/LC_MESSAGES/kdevtestview.mo share/locale/zh_TW/LC_MESSAGES/kdevvcsprojectintegration.mo share/locale/zh_TW/LC_MESSAGES/kdevwelcomepage.mo share/locale/zh_TW/LC_MESSAGES/plasma_applet_kdevelopsessions.mo share/locale/zh_TW/LC_MESSAGES/plasma_runner_kdevelopsessions.mo share/metainfo/org.kde.kdevelop.appdata.xml share/mime/packages/kdevclang.xml share/mime/packages/kdevelop.xml share/mime/packages/kdevgit.xml share/plasma/plasmoids/org.kde.kdevelopsessions/contents/ui/main.qml share/plasma/plasmoids/org.kde.kdevelopsessions/metadata.json share/qlogging-categories6/kdevelop.categories share/qlogging-categories6/kdevplatform.categories diff --git a/devel/kio-extras/distinfo b/devel/kio-extras/distinfo index f5f5b2f7188a..1d9afccab278 100644 --- a/devel/kio-extras/distinfo +++ b/devel/kio-extras/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1757409733 -SHA256 (KDE/release-service/25.08.1/kio-extras-25.08.1.tar.xz) = aac4752f2b7c978fb6e6ae0e688a63a10ca4831b97d9f6947ce7b49c648b6cd8 -SIZE (KDE/release-service/25.08.1/kio-extras-25.08.1.tar.xz) = 3528496 +TIMESTAMP = 1759874671 +SHA256 (KDE/release-service/25.08.2/kio-extras-25.08.2.tar.xz) = 868f9f2e0f572725387ea311f199d2fa044acc03656f3751e7ca26400861375f +SIZE (KDE/release-service/25.08.2/kio-extras-25.08.2.tar.xz) = 3528116 diff --git a/devel/kio-extras/pkg-plist b/devel/kio-extras/pkg-plist index dee7b70ba3a8..1c736a3c3b9f 100644 --- a/devel/kio-extras/pkg-plist +++ b/devel/kio-extras/pkg-plist @@ -1,1191 +1,1193 @@ include/KioArchive6/kio_archivebase.h include/KioArchive6/kioarchive_version.h include/KioArchive6/libkioarchive_export.h lib/cmake/KioArchive6/KioArchive6Config.cmake lib/cmake/KioArchive6/KioArchive6ConfigVersion.cmake lib/cmake/KioArchive6/KioArchiveTargets-%%CMAKE_BUILD_TYPE%%.cmake lib/cmake/KioArchive6/KioArchiveTargets.cmake %%SAMBA%%lib/libexec/kf6/smbnotifier lib/libkioarchive6.so.6 lib/libkioarchive6.so.6.0.0 %%QT_PLUGINDIR%%/kcm_trash.so %%QT_PLUGINDIR%%/kf6/kded/filenamesearchmodule.so %%SAMBA%%%%QT_PLUGINDIR%%/kf6/kded/smbwatcher.so %%QT_PLUGINDIR%%/kf6/kfileitemaction/forgetfileitemaction.so %%QT_PLUGINDIR%%/kf6/kfileitemaction/kactivitymanagerd_fileitem_linking_plugin.so %%QT_PLUGINDIR%%/kf6/kio/activities.so %%AFC%%%%QT_PLUGINDIR%%/kf6/kio/afc.so %%QT_PLUGINDIR%%/kf6/kio/archive.so %%QT_PLUGINDIR%%/kf6/kio/filter.so %%QT_PLUGINDIR%%/kf6/kio/fish.so %%QT_PLUGINDIR%%/kf6/kio/info.so %%QT_PLUGINDIR%%/kf6/kio/kio_filenamesearch.so %%QT_PLUGINDIR%%/kf6/kio/man.so %%MTP%%%%QT_PLUGINDIR%%/kf6/kio/mtp.so %%QT_PLUGINDIR%%/kf6/kio/recentlyused.so %%SSH%%%%QT_PLUGINDIR%%/kf6/kio/sftp.so %%SAMBA%%%%QT_PLUGINDIR%%/kf6/kio/smb.so %%QT_PLUGINDIR%%/kf6/kio/thumbnail.so %%MTP%%%%QT_PLUGINDIR%%/kf6/kiod/kmtpd.so %%TAGLIB%%%%QT_PLUGINDIR%%/kf6/thumbcreator/audiothumbnail.so %%QT_PLUGINDIR%%/kf6/thumbcreator/comicbookthumbnail.so %%QT_PLUGINDIR%%/kf6/thumbcreator/cursorthumbnail.so %%QT_PLUGINDIR%%/kf6/thumbcreator/directorythumbnail.so %%QT_PLUGINDIR%%/kf6/thumbcreator/djvuthumbnail.so %%QT_PLUGINDIR%%/kf6/thumbcreator/ebookthumbnail.so %%OPENEXR%%%%QT_PLUGINDIR%%/kf6/thumbcreator/exrthumbnail.so %%QT_PLUGINDIR%%/kf6/thumbcreator/imagethumbnail.so %%QT_PLUGINDIR%%/kf6/thumbcreator/jpegthumbnail.so %%QT_PLUGINDIR%%/kf6/thumbcreator/kraorathumbnail.so %%QT_PLUGINDIR%%/kf6/thumbcreator/opendocumentthumbnail.so %%QT_PLUGINDIR%%/kf6/thumbcreator/svgthumbnail.so %%QT_PLUGINDIR%%/kf6/thumbcreator/textthumbnail.so %%QT_PLUGINDIR%%/kf6/thumbcreator/windowsexethumbnail.so %%QT_PLUGINDIR%%/kf6/thumbcreator/windowsimagethumbnail.so %%QT_PLUGINDIR%%/kfileaudiopreview.so %%QT_PLUGINDIR%%/plasma/kcms/systemsettings_qwidgets/kcm_netpref.so %%QT_PLUGINDIR%%/plasma/kcms/systemsettings_qwidgets/kcm_proxy.so %%QT_PLUGINDIR%%/plasma/kcms/systemsettings_qwidgets/kcm_webshortcuts.so share/applications/kcm_netpref.desktop share/applications/kcm_proxy.desktop share/applications/kcm_trash.desktop share/applications/kcm_webshortcuts.desktop share/config.kcfg/jpegcreatorsettings5.kcfg %%MTP%%share/dbus-1/services/org.kde.kmtpd5.service share/kio_filenamesearch/kio-filenamesearch-grep share/kio_info/kde-info2html share/kio_info/kde-info2html.conf %%MTP%%share/konqueror/dirtree/remote/mtp-network.desktop %%SAMBA%%share/konqueror/dirtree/remote/smb-network.desktop share/locale/af/LC_MESSAGES/kfileaudiopreview6.mo share/locale/af/LC_MESSAGES/kio-extras_kcms.mo share/locale/af/LC_MESSAGES/kio6_archive.mo share/locale/af/LC_MESSAGES/kio6_fish.mo share/locale/af/LC_MESSAGES/kio6_man.mo share/locale/af/LC_MESSAGES/kio6_nfs.mo share/locale/af/LC_MESSAGES/kio6_sftp.mo share/locale/af/LC_MESSAGES/kio6_smb.mo share/locale/af/LC_MESSAGES/kio6_thumbnail.mo share/locale/ar/LC_MESSAGES/kfileaudiopreview6.mo share/locale/ar/LC_MESSAGES/kio-extras_kcms.mo share/locale/ar/LC_MESSAGES/kio6_activities.mo share/locale/ar/LC_MESSAGES/kio6_afc.mo share/locale/ar/LC_MESSAGES/kio6_archive.mo share/locale/ar/LC_MESSAGES/kio6_filenamesearch.mo share/locale/ar/LC_MESSAGES/kio6_fish.mo share/locale/ar/LC_MESSAGES/kio6_info.mo share/locale/ar/LC_MESSAGES/kio6_man.mo share/locale/ar/LC_MESSAGES/kio6_mtp.mo share/locale/ar/LC_MESSAGES/kio6_nfs.mo share/locale/ar/LC_MESSAGES/kio6_recentlyused.mo share/locale/ar/LC_MESSAGES/kio6_sftp.mo share/locale/ar/LC_MESSAGES/kio6_smb.mo share/locale/ar/LC_MESSAGES/kio6_thumbnail.mo share/locale/ast/LC_MESSAGES/kfileaudiopreview6.mo share/locale/ast/LC_MESSAGES/kio-extras_kcms.mo share/locale/ast/LC_MESSAGES/kio6_activities.mo share/locale/ast/LC_MESSAGES/kio6_afc.mo share/locale/ast/LC_MESSAGES/kio6_archive.mo share/locale/ast/LC_MESSAGES/kio6_fish.mo share/locale/ast/LC_MESSAGES/kio6_info.mo share/locale/ast/LC_MESSAGES/kio6_man.mo share/locale/ast/LC_MESSAGES/kio6_mtp.mo share/locale/ast/LC_MESSAGES/kio6_nfs.mo share/locale/ast/LC_MESSAGES/kio6_sftp.mo share/locale/ast/LC_MESSAGES/kio6_smb.mo share/locale/ast/LC_MESSAGES/kio6_thumbnail.mo share/locale/az/LC_MESSAGES/kio-extras_kcms.mo share/locale/be/LC_MESSAGES/kfileaudiopreview6.mo share/locale/be/LC_MESSAGES/kio-extras_kcms.mo share/locale/be/LC_MESSAGES/kio6_activities.mo share/locale/be/LC_MESSAGES/kio6_afc.mo share/locale/be/LC_MESSAGES/kio6_archive.mo share/locale/be/LC_MESSAGES/kio6_filenamesearch.mo share/locale/be/LC_MESSAGES/kio6_fish.mo share/locale/be/LC_MESSAGES/kio6_info.mo share/locale/be/LC_MESSAGES/kio6_man.mo share/locale/be/LC_MESSAGES/kio6_mtp.mo share/locale/be/LC_MESSAGES/kio6_nfs.mo share/locale/be/LC_MESSAGES/kio6_recentlyused.mo share/locale/be/LC_MESSAGES/kio6_sftp.mo share/locale/be/LC_MESSAGES/kio6_smb.mo share/locale/be/LC_MESSAGES/kio6_thumbnail.mo share/locale/be@latin/LC_MESSAGES/kio-extras_kcms.mo share/locale/be@latin/LC_MESSAGES/kio6_archive.mo share/locale/be@latin/LC_MESSAGES/kio6_fish.mo share/locale/be@latin/LC_MESSAGES/kio6_man.mo share/locale/be@latin/LC_MESSAGES/kio6_nfs.mo share/locale/be@latin/LC_MESSAGES/kio6_smb.mo share/locale/be@latin/LC_MESSAGES/kio6_thumbnail.mo share/locale/bg/LC_MESSAGES/kfileaudiopreview6.mo share/locale/bg/LC_MESSAGES/kio-extras_kcms.mo share/locale/bg/LC_MESSAGES/kio6_activities.mo share/locale/bg/LC_MESSAGES/kio6_afc.mo share/locale/bg/LC_MESSAGES/kio6_archive.mo share/locale/bg/LC_MESSAGES/kio6_filenamesearch.mo share/locale/bg/LC_MESSAGES/kio6_fish.mo share/locale/bg/LC_MESSAGES/kio6_info.mo share/locale/bg/LC_MESSAGES/kio6_man.mo share/locale/bg/LC_MESSAGES/kio6_mtp.mo share/locale/bg/LC_MESSAGES/kio6_nfs.mo share/locale/bg/LC_MESSAGES/kio6_recentlyused.mo share/locale/bg/LC_MESSAGES/kio6_sftp.mo share/locale/bg/LC_MESSAGES/kio6_smb.mo share/locale/bg/LC_MESSAGES/kio6_thumbnail.mo share/locale/bn/LC_MESSAGES/kfileaudiopreview6.mo share/locale/bn/LC_MESSAGES/kio-extras_kcms.mo share/locale/bn/LC_MESSAGES/kio6_fish.mo share/locale/bn/LC_MESSAGES/kio6_man.mo share/locale/bn/LC_MESSAGES/kio6_nfs.mo share/locale/bn_IN/LC_MESSAGES/kio6_archive.mo share/locale/bn_IN/LC_MESSAGES/kio6_fish.mo share/locale/bn_IN/LC_MESSAGES/kio6_man.mo share/locale/bn_IN/LC_MESSAGES/kio6_nfs.mo share/locale/bn_IN/LC_MESSAGES/kio6_sftp.mo share/locale/bn_IN/LC_MESSAGES/kio6_smb.mo share/locale/bn_IN/LC_MESSAGES/kio6_thumbnail.mo share/locale/br/LC_MESSAGES/kfileaudiopreview6.mo share/locale/br/LC_MESSAGES/kio-extras_kcms.mo share/locale/br/LC_MESSAGES/kio6_fish.mo share/locale/br/LC_MESSAGES/kio6_man.mo share/locale/br/LC_MESSAGES/kio6_nfs.mo share/locale/br/LC_MESSAGES/kio6_sftp.mo share/locale/br/LC_MESSAGES/kio6_smb.mo share/locale/br/LC_MESSAGES/kio6_thumbnail.mo share/locale/bs/LC_MESSAGES/kfileaudiopreview6.mo share/locale/bs/LC_MESSAGES/kio-extras_kcms.mo share/locale/bs/LC_MESSAGES/kio6_activities.mo share/locale/bs/LC_MESSAGES/kio6_archive.mo share/locale/bs/LC_MESSAGES/kio6_fish.mo share/locale/bs/LC_MESSAGES/kio6_info.mo share/locale/bs/LC_MESSAGES/kio6_man.mo share/locale/bs/LC_MESSAGES/kio6_mtp.mo share/locale/bs/LC_MESSAGES/kio6_nfs.mo share/locale/bs/LC_MESSAGES/kio6_sftp.mo share/locale/bs/LC_MESSAGES/kio6_smb.mo share/locale/bs/LC_MESSAGES/kio6_thumbnail.mo share/locale/ca/LC_MESSAGES/kfileaudiopreview6.mo share/locale/ca/LC_MESSAGES/kio-extras_kcms.mo share/locale/ca/LC_MESSAGES/kio6_activities.mo share/locale/ca/LC_MESSAGES/kio6_afc.mo share/locale/ca/LC_MESSAGES/kio6_archive.mo share/locale/ca/LC_MESSAGES/kio6_filenamesearch.mo share/locale/ca/LC_MESSAGES/kio6_fish.mo share/locale/ca/LC_MESSAGES/kio6_info.mo share/locale/ca/LC_MESSAGES/kio6_man.mo share/locale/ca/LC_MESSAGES/kio6_mtp.mo share/locale/ca/LC_MESSAGES/kio6_nfs.mo share/locale/ca/LC_MESSAGES/kio6_recentlyused.mo share/locale/ca/LC_MESSAGES/kio6_sftp.mo share/locale/ca/LC_MESSAGES/kio6_smb.mo share/locale/ca/LC_MESSAGES/kio6_thumbnail.mo share/locale/ca@valencia/LC_MESSAGES/kfileaudiopreview6.mo share/locale/ca@valencia/LC_MESSAGES/kio-extras_kcms.mo share/locale/ca@valencia/LC_MESSAGES/kio6_activities.mo share/locale/ca@valencia/LC_MESSAGES/kio6_afc.mo share/locale/ca@valencia/LC_MESSAGES/kio6_archive.mo share/locale/ca@valencia/LC_MESSAGES/kio6_filenamesearch.mo share/locale/ca@valencia/LC_MESSAGES/kio6_fish.mo share/locale/ca@valencia/LC_MESSAGES/kio6_info.mo share/locale/ca@valencia/LC_MESSAGES/kio6_man.mo share/locale/ca@valencia/LC_MESSAGES/kio6_mtp.mo share/locale/ca@valencia/LC_MESSAGES/kio6_nfs.mo share/locale/ca@valencia/LC_MESSAGES/kio6_recentlyused.mo share/locale/ca@valencia/LC_MESSAGES/kio6_sftp.mo share/locale/ca@valencia/LC_MESSAGES/kio6_smb.mo share/locale/ca@valencia/LC_MESSAGES/kio6_thumbnail.mo share/locale/cs/LC_MESSAGES/kfileaudiopreview6.mo share/locale/cs/LC_MESSAGES/kio-extras_kcms.mo share/locale/cs/LC_MESSAGES/kio6_activities.mo share/locale/cs/LC_MESSAGES/kio6_afc.mo share/locale/cs/LC_MESSAGES/kio6_archive.mo share/locale/cs/LC_MESSAGES/kio6_filenamesearch.mo share/locale/cs/LC_MESSAGES/kio6_fish.mo share/locale/cs/LC_MESSAGES/kio6_info.mo share/locale/cs/LC_MESSAGES/kio6_man.mo share/locale/cs/LC_MESSAGES/kio6_mtp.mo share/locale/cs/LC_MESSAGES/kio6_nfs.mo share/locale/cs/LC_MESSAGES/kio6_recentlyused.mo share/locale/cs/LC_MESSAGES/kio6_sftp.mo share/locale/cs/LC_MESSAGES/kio6_smb.mo share/locale/cs/LC_MESSAGES/kio6_thumbnail.mo share/locale/csb/LC_MESSAGES/kfileaudiopreview6.mo share/locale/csb/LC_MESSAGES/kio-extras_kcms.mo share/locale/csb/LC_MESSAGES/kio6_archive.mo share/locale/csb/LC_MESSAGES/kio6_fish.mo share/locale/csb/LC_MESSAGES/kio6_man.mo share/locale/csb/LC_MESSAGES/kio6_nfs.mo share/locale/csb/LC_MESSAGES/kio6_sftp.mo share/locale/csb/LC_MESSAGES/kio6_smb.mo share/locale/csb/LC_MESSAGES/kio6_thumbnail.mo share/locale/cy/LC_MESSAGES/kfileaudiopreview6.mo share/locale/cy/LC_MESSAGES/kio-extras_kcms.mo share/locale/cy/LC_MESSAGES/kio6_fish.mo share/locale/cy/LC_MESSAGES/kio6_man.mo share/locale/cy/LC_MESSAGES/kio6_nfs.mo share/locale/cy/LC_MESSAGES/kio6_sftp.mo share/locale/cy/LC_MESSAGES/kio6_smb.mo share/locale/da/LC_MESSAGES/kfileaudiopreview6.mo share/locale/da/LC_MESSAGES/kio-extras_kcms.mo share/locale/da/LC_MESSAGES/kio6_activities.mo share/locale/da/LC_MESSAGES/kio6_archive.mo share/locale/da/LC_MESSAGES/kio6_fish.mo share/locale/da/LC_MESSAGES/kio6_info.mo share/locale/da/LC_MESSAGES/kio6_man.mo share/locale/da/LC_MESSAGES/kio6_mtp.mo share/locale/da/LC_MESSAGES/kio6_nfs.mo share/locale/da/LC_MESSAGES/kio6_sftp.mo share/locale/da/LC_MESSAGES/kio6_smb.mo share/locale/da/LC_MESSAGES/kio6_thumbnail.mo share/locale/de/LC_MESSAGES/kfileaudiopreview6.mo share/locale/de/LC_MESSAGES/kio-extras_kcms.mo share/locale/de/LC_MESSAGES/kio6_activities.mo share/locale/de/LC_MESSAGES/kio6_afc.mo share/locale/de/LC_MESSAGES/kio6_archive.mo share/locale/de/LC_MESSAGES/kio6_filenamesearch.mo share/locale/de/LC_MESSAGES/kio6_fish.mo share/locale/de/LC_MESSAGES/kio6_info.mo share/locale/de/LC_MESSAGES/kio6_man.mo share/locale/de/LC_MESSAGES/kio6_mtp.mo share/locale/de/LC_MESSAGES/kio6_nfs.mo share/locale/de/LC_MESSAGES/kio6_recentlyused.mo share/locale/de/LC_MESSAGES/kio6_sftp.mo share/locale/de/LC_MESSAGES/kio6_smb.mo share/locale/de/LC_MESSAGES/kio6_thumbnail.mo share/locale/el/LC_MESSAGES/kfileaudiopreview6.mo share/locale/el/LC_MESSAGES/kio-extras_kcms.mo share/locale/el/LC_MESSAGES/kio6_activities.mo share/locale/el/LC_MESSAGES/kio6_archive.mo share/locale/el/LC_MESSAGES/kio6_fish.mo share/locale/el/LC_MESSAGES/kio6_info.mo share/locale/el/LC_MESSAGES/kio6_man.mo share/locale/el/LC_MESSAGES/kio6_mtp.mo share/locale/el/LC_MESSAGES/kio6_nfs.mo share/locale/el/LC_MESSAGES/kio6_sftp.mo share/locale/el/LC_MESSAGES/kio6_smb.mo share/locale/el/LC_MESSAGES/kio6_thumbnail.mo share/locale/en_GB/LC_MESSAGES/kfileaudiopreview6.mo share/locale/en_GB/LC_MESSAGES/kio-extras_kcms.mo share/locale/en_GB/LC_MESSAGES/kio6_activities.mo share/locale/en_GB/LC_MESSAGES/kio6_afc.mo share/locale/en_GB/LC_MESSAGES/kio6_archive.mo share/locale/en_GB/LC_MESSAGES/kio6_filenamesearch.mo share/locale/en_GB/LC_MESSAGES/kio6_fish.mo share/locale/en_GB/LC_MESSAGES/kio6_info.mo share/locale/en_GB/LC_MESSAGES/kio6_man.mo share/locale/en_GB/LC_MESSAGES/kio6_mtp.mo share/locale/en_GB/LC_MESSAGES/kio6_nfs.mo share/locale/en_GB/LC_MESSAGES/kio6_recentlyused.mo share/locale/en_GB/LC_MESSAGES/kio6_sftp.mo share/locale/en_GB/LC_MESSAGES/kio6_smb.mo share/locale/en_GB/LC_MESSAGES/kio6_thumbnail.mo share/locale/eo/LC_MESSAGES/kfileaudiopreview6.mo share/locale/eo/LC_MESSAGES/kio-extras_kcms.mo share/locale/eo/LC_MESSAGES/kio6_activities.mo share/locale/eo/LC_MESSAGES/kio6_afc.mo share/locale/eo/LC_MESSAGES/kio6_archive.mo share/locale/eo/LC_MESSAGES/kio6_filenamesearch.mo share/locale/eo/LC_MESSAGES/kio6_fish.mo share/locale/eo/LC_MESSAGES/kio6_info.mo share/locale/eo/LC_MESSAGES/kio6_man.mo share/locale/eo/LC_MESSAGES/kio6_mtp.mo share/locale/eo/LC_MESSAGES/kio6_nfs.mo share/locale/eo/LC_MESSAGES/kio6_recentlyused.mo share/locale/eo/LC_MESSAGES/kio6_sftp.mo share/locale/eo/LC_MESSAGES/kio6_smb.mo share/locale/eo/LC_MESSAGES/kio6_thumbnail.mo share/locale/es/LC_MESSAGES/kfileaudiopreview6.mo share/locale/es/LC_MESSAGES/kio-extras_kcms.mo share/locale/es/LC_MESSAGES/kio6_activities.mo share/locale/es/LC_MESSAGES/kio6_afc.mo share/locale/es/LC_MESSAGES/kio6_archive.mo share/locale/es/LC_MESSAGES/kio6_filenamesearch.mo share/locale/es/LC_MESSAGES/kio6_fish.mo share/locale/es/LC_MESSAGES/kio6_info.mo share/locale/es/LC_MESSAGES/kio6_man.mo share/locale/es/LC_MESSAGES/kio6_mtp.mo share/locale/es/LC_MESSAGES/kio6_nfs.mo share/locale/es/LC_MESSAGES/kio6_recentlyused.mo share/locale/es/LC_MESSAGES/kio6_sftp.mo share/locale/es/LC_MESSAGES/kio6_smb.mo share/locale/es/LC_MESSAGES/kio6_thumbnail.mo share/locale/et/LC_MESSAGES/kfileaudiopreview6.mo share/locale/et/LC_MESSAGES/kio-extras_kcms.mo share/locale/et/LC_MESSAGES/kio6_activities.mo share/locale/et/LC_MESSAGES/kio6_archive.mo share/locale/et/LC_MESSAGES/kio6_fish.mo share/locale/et/LC_MESSAGES/kio6_info.mo share/locale/et/LC_MESSAGES/kio6_man.mo share/locale/et/LC_MESSAGES/kio6_mtp.mo share/locale/et/LC_MESSAGES/kio6_nfs.mo share/locale/et/LC_MESSAGES/kio6_sftp.mo share/locale/et/LC_MESSAGES/kio6_smb.mo share/locale/et/LC_MESSAGES/kio6_thumbnail.mo share/locale/eu/LC_MESSAGES/kfileaudiopreview6.mo share/locale/eu/LC_MESSAGES/kio-extras_kcms.mo share/locale/eu/LC_MESSAGES/kio6_activities.mo share/locale/eu/LC_MESSAGES/kio6_afc.mo share/locale/eu/LC_MESSAGES/kio6_archive.mo share/locale/eu/LC_MESSAGES/kio6_filenamesearch.mo share/locale/eu/LC_MESSAGES/kio6_fish.mo share/locale/eu/LC_MESSAGES/kio6_info.mo share/locale/eu/LC_MESSAGES/kio6_man.mo share/locale/eu/LC_MESSAGES/kio6_mtp.mo share/locale/eu/LC_MESSAGES/kio6_nfs.mo share/locale/eu/LC_MESSAGES/kio6_recentlyused.mo share/locale/eu/LC_MESSAGES/kio6_sftp.mo share/locale/eu/LC_MESSAGES/kio6_smb.mo share/locale/eu/LC_MESSAGES/kio6_thumbnail.mo share/locale/fa/LC_MESSAGES/kfileaudiopreview6.mo share/locale/fa/LC_MESSAGES/kio-extras_kcms.mo share/locale/fa/LC_MESSAGES/kio6_archive.mo share/locale/fa/LC_MESSAGES/kio6_fish.mo share/locale/fa/LC_MESSAGES/kio6_info.mo share/locale/fa/LC_MESSAGES/kio6_man.mo share/locale/fa/LC_MESSAGES/kio6_nfs.mo share/locale/fa/LC_MESSAGES/kio6_sftp.mo share/locale/fa/LC_MESSAGES/kio6_smb.mo share/locale/fa/LC_MESSAGES/kio6_thumbnail.mo share/locale/fi/LC_MESSAGES/kfileaudiopreview6.mo share/locale/fi/LC_MESSAGES/kio-extras_kcms.mo share/locale/fi/LC_MESSAGES/kio6_activities.mo share/locale/fi/LC_MESSAGES/kio6_afc.mo share/locale/fi/LC_MESSAGES/kio6_archive.mo share/locale/fi/LC_MESSAGES/kio6_filenamesearch.mo share/locale/fi/LC_MESSAGES/kio6_fish.mo share/locale/fi/LC_MESSAGES/kio6_info.mo share/locale/fi/LC_MESSAGES/kio6_man.mo share/locale/fi/LC_MESSAGES/kio6_mtp.mo share/locale/fi/LC_MESSAGES/kio6_nfs.mo share/locale/fi/LC_MESSAGES/kio6_recentlyused.mo share/locale/fi/LC_MESSAGES/kio6_sftp.mo share/locale/fi/LC_MESSAGES/kio6_smb.mo share/locale/fi/LC_MESSAGES/kio6_thumbnail.mo share/locale/fr/LC_MESSAGES/kfileaudiopreview6.mo share/locale/fr/LC_MESSAGES/kio-extras_kcms.mo share/locale/fr/LC_MESSAGES/kio6_activities.mo share/locale/fr/LC_MESSAGES/kio6_afc.mo share/locale/fr/LC_MESSAGES/kio6_archive.mo share/locale/fr/LC_MESSAGES/kio6_filenamesearch.mo share/locale/fr/LC_MESSAGES/kio6_fish.mo share/locale/fr/LC_MESSAGES/kio6_info.mo share/locale/fr/LC_MESSAGES/kio6_man.mo share/locale/fr/LC_MESSAGES/kio6_mtp.mo share/locale/fr/LC_MESSAGES/kio6_nfs.mo share/locale/fr/LC_MESSAGES/kio6_recentlyused.mo share/locale/fr/LC_MESSAGES/kio6_sftp.mo share/locale/fr/LC_MESSAGES/kio6_smb.mo share/locale/fr/LC_MESSAGES/kio6_thumbnail.mo share/locale/fy/LC_MESSAGES/kfileaudiopreview6.mo share/locale/fy/LC_MESSAGES/kio-extras_kcms.mo share/locale/fy/LC_MESSAGES/kio6_archive.mo share/locale/fy/LC_MESSAGES/kio6_fish.mo share/locale/fy/LC_MESSAGES/kio6_info.mo share/locale/fy/LC_MESSAGES/kio6_man.mo share/locale/fy/LC_MESSAGES/kio6_nfs.mo share/locale/fy/LC_MESSAGES/kio6_sftp.mo share/locale/fy/LC_MESSAGES/kio6_smb.mo share/locale/fy/LC_MESSAGES/kio6_thumbnail.mo share/locale/ga/LC_MESSAGES/kfileaudiopreview6.mo share/locale/ga/LC_MESSAGES/kio-extras_kcms.mo share/locale/ga/LC_MESSAGES/kio6_activities.mo share/locale/ga/LC_MESSAGES/kio6_archive.mo share/locale/ga/LC_MESSAGES/kio6_fish.mo share/locale/ga/LC_MESSAGES/kio6_info.mo share/locale/ga/LC_MESSAGES/kio6_man.mo share/locale/ga/LC_MESSAGES/kio6_nfs.mo share/locale/ga/LC_MESSAGES/kio6_sftp.mo share/locale/ga/LC_MESSAGES/kio6_smb.mo share/locale/ga/LC_MESSAGES/kio6_thumbnail.mo share/locale/gd/LC_MESSAGES/kio6_activities.mo share/locale/gl/LC_MESSAGES/kfileaudiopreview6.mo share/locale/gl/LC_MESSAGES/kio-extras_kcms.mo share/locale/gl/LC_MESSAGES/kio6_activities.mo share/locale/gl/LC_MESSAGES/kio6_afc.mo share/locale/gl/LC_MESSAGES/kio6_archive.mo share/locale/gl/LC_MESSAGES/kio6_filenamesearch.mo share/locale/gl/LC_MESSAGES/kio6_fish.mo share/locale/gl/LC_MESSAGES/kio6_info.mo share/locale/gl/LC_MESSAGES/kio6_man.mo share/locale/gl/LC_MESSAGES/kio6_mtp.mo share/locale/gl/LC_MESSAGES/kio6_nfs.mo share/locale/gl/LC_MESSAGES/kio6_recentlyused.mo share/locale/gl/LC_MESSAGES/kio6_sftp.mo share/locale/gl/LC_MESSAGES/kio6_smb.mo share/locale/gl/LC_MESSAGES/kio6_thumbnail.mo share/locale/gu/LC_MESSAGES/kfileaudiopreview6.mo share/locale/gu/LC_MESSAGES/kio-extras_kcms.mo share/locale/gu/LC_MESSAGES/kio6_activities.mo share/locale/gu/LC_MESSAGES/kio6_archive.mo share/locale/gu/LC_MESSAGES/kio6_fish.mo share/locale/gu/LC_MESSAGES/kio6_info.mo share/locale/gu/LC_MESSAGES/kio6_man.mo share/locale/gu/LC_MESSAGES/kio6_nfs.mo share/locale/gu/LC_MESSAGES/kio6_sftp.mo share/locale/gu/LC_MESSAGES/kio6_smb.mo share/locale/gu/LC_MESSAGES/kio6_thumbnail.mo share/locale/he/LC_MESSAGES/kfileaudiopreview6.mo share/locale/he/LC_MESSAGES/kio-extras_kcms.mo share/locale/he/LC_MESSAGES/kio6_activities.mo share/locale/he/LC_MESSAGES/kio6_afc.mo share/locale/he/LC_MESSAGES/kio6_archive.mo share/locale/he/LC_MESSAGES/kio6_filenamesearch.mo share/locale/he/LC_MESSAGES/kio6_fish.mo share/locale/he/LC_MESSAGES/kio6_info.mo share/locale/he/LC_MESSAGES/kio6_man.mo share/locale/he/LC_MESSAGES/kio6_mtp.mo share/locale/he/LC_MESSAGES/kio6_nfs.mo share/locale/he/LC_MESSAGES/kio6_recentlyused.mo share/locale/he/LC_MESSAGES/kio6_sftp.mo share/locale/he/LC_MESSAGES/kio6_smb.mo share/locale/he/LC_MESSAGES/kio6_thumbnail.mo share/locale/hi/LC_MESSAGES/kfileaudiopreview6.mo share/locale/hi/LC_MESSAGES/kio-extras_kcms.mo share/locale/hi/LC_MESSAGES/kio6_activities.mo share/locale/hi/LC_MESSAGES/kio6_afc.mo share/locale/hi/LC_MESSAGES/kio6_archive.mo share/locale/hi/LC_MESSAGES/kio6_filenamesearch.mo share/locale/hi/LC_MESSAGES/kio6_fish.mo share/locale/hi/LC_MESSAGES/kio6_info.mo share/locale/hi/LC_MESSAGES/kio6_man.mo share/locale/hi/LC_MESSAGES/kio6_mtp.mo share/locale/hi/LC_MESSAGES/kio6_nfs.mo share/locale/hi/LC_MESSAGES/kio6_recentlyused.mo share/locale/hi/LC_MESSAGES/kio6_sftp.mo share/locale/hi/LC_MESSAGES/kio6_smb.mo share/locale/hi/LC_MESSAGES/kio6_thumbnail.mo share/locale/hne/LC_MESSAGES/kio6_archive.mo share/locale/hne/LC_MESSAGES/kio6_fish.mo share/locale/hne/LC_MESSAGES/kio6_man.mo share/locale/hne/LC_MESSAGES/kio6_nfs.mo share/locale/hne/LC_MESSAGES/kio6_sftp.mo share/locale/hne/LC_MESSAGES/kio6_smb.mo share/locale/hne/LC_MESSAGES/kio6_thumbnail.mo share/locale/hr/LC_MESSAGES/kfileaudiopreview6.mo share/locale/hr/LC_MESSAGES/kio-extras_kcms.mo share/locale/hr/LC_MESSAGES/kio6_activities.mo share/locale/hr/LC_MESSAGES/kio6_archive.mo share/locale/hr/LC_MESSAGES/kio6_fish.mo share/locale/hr/LC_MESSAGES/kio6_info.mo share/locale/hr/LC_MESSAGES/kio6_man.mo share/locale/hr/LC_MESSAGES/kio6_nfs.mo share/locale/hr/LC_MESSAGES/kio6_sftp.mo share/locale/hr/LC_MESSAGES/kio6_smb.mo share/locale/hr/LC_MESSAGES/kio6_thumbnail.mo share/locale/hsb/LC_MESSAGES/kfileaudiopreview6.mo share/locale/hsb/LC_MESSAGES/kio-extras_kcms.mo share/locale/hsb/LC_MESSAGES/kio6_archive.mo share/locale/hsb/LC_MESSAGES/kio6_fish.mo share/locale/hsb/LC_MESSAGES/kio6_man.mo share/locale/hsb/LC_MESSAGES/kio6_nfs.mo share/locale/hsb/LC_MESSAGES/kio6_sftp.mo share/locale/hsb/LC_MESSAGES/kio6_smb.mo share/locale/hsb/LC_MESSAGES/kio6_thumbnail.mo share/locale/hu/LC_MESSAGES/kfileaudiopreview6.mo share/locale/hu/LC_MESSAGES/kio-extras_kcms.mo share/locale/hu/LC_MESSAGES/kio6_activities.mo share/locale/hu/LC_MESSAGES/kio6_afc.mo share/locale/hu/LC_MESSAGES/kio6_archive.mo share/locale/hu/LC_MESSAGES/kio6_filenamesearch.mo share/locale/hu/LC_MESSAGES/kio6_fish.mo share/locale/hu/LC_MESSAGES/kio6_info.mo share/locale/hu/LC_MESSAGES/kio6_man.mo share/locale/hu/LC_MESSAGES/kio6_mtp.mo share/locale/hu/LC_MESSAGES/kio6_nfs.mo share/locale/hu/LC_MESSAGES/kio6_recentlyused.mo share/locale/hu/LC_MESSAGES/kio6_sftp.mo share/locale/hu/LC_MESSAGES/kio6_smb.mo share/locale/hu/LC_MESSAGES/kio6_thumbnail.mo share/locale/hy/LC_MESSAGES/kfileaudiopreview6.mo share/locale/hy/LC_MESSAGES/kio6_fish.mo share/locale/ia/LC_MESSAGES/kfileaudiopreview6.mo share/locale/ia/LC_MESSAGES/kio-extras_kcms.mo share/locale/ia/LC_MESSAGES/kio6_activities.mo share/locale/ia/LC_MESSAGES/kio6_afc.mo share/locale/ia/LC_MESSAGES/kio6_archive.mo share/locale/ia/LC_MESSAGES/kio6_filenamesearch.mo share/locale/ia/LC_MESSAGES/kio6_fish.mo share/locale/ia/LC_MESSAGES/kio6_info.mo share/locale/ia/LC_MESSAGES/kio6_man.mo share/locale/ia/LC_MESSAGES/kio6_mtp.mo share/locale/ia/LC_MESSAGES/kio6_nfs.mo share/locale/ia/LC_MESSAGES/kio6_recentlyused.mo share/locale/ia/LC_MESSAGES/kio6_sftp.mo share/locale/ia/LC_MESSAGES/kio6_smb.mo share/locale/ia/LC_MESSAGES/kio6_thumbnail.mo share/locale/id/LC_MESSAGES/kfileaudiopreview6.mo share/locale/id/LC_MESSAGES/kio-extras_kcms.mo share/locale/id/LC_MESSAGES/kio6_activities.mo share/locale/id/LC_MESSAGES/kio6_archive.mo share/locale/id/LC_MESSAGES/kio6_fish.mo share/locale/id/LC_MESSAGES/kio6_info.mo share/locale/id/LC_MESSAGES/kio6_man.mo share/locale/id/LC_MESSAGES/kio6_mtp.mo share/locale/id/LC_MESSAGES/kio6_nfs.mo share/locale/id/LC_MESSAGES/kio6_sftp.mo share/locale/id/LC_MESSAGES/kio6_smb.mo share/locale/id/LC_MESSAGES/kio6_thumbnail.mo share/locale/ie/LC_MESSAGES/kfileaudiopreview6.mo share/locale/ie/LC_MESSAGES/kio-extras_kcms.mo share/locale/ie/LC_MESSAGES/kio6_archive.mo share/locale/ie/LC_MESSAGES/kio6_mtp.mo share/locale/is/LC_MESSAGES/kfileaudiopreview6.mo share/locale/is/LC_MESSAGES/kio-extras_kcms.mo share/locale/is/LC_MESSAGES/kio6_activities.mo share/locale/is/LC_MESSAGES/kio6_afc.mo share/locale/is/LC_MESSAGES/kio6_archive.mo share/locale/is/LC_MESSAGES/kio6_fish.mo share/locale/is/LC_MESSAGES/kio6_info.mo share/locale/is/LC_MESSAGES/kio6_man.mo share/locale/is/LC_MESSAGES/kio6_mtp.mo share/locale/is/LC_MESSAGES/kio6_nfs.mo share/locale/is/LC_MESSAGES/kio6_sftp.mo share/locale/is/LC_MESSAGES/kio6_smb.mo share/locale/is/LC_MESSAGES/kio6_thumbnail.mo share/locale/it/LC_MESSAGES/kfileaudiopreview6.mo share/locale/it/LC_MESSAGES/kio-extras_kcms.mo share/locale/it/LC_MESSAGES/kio6_activities.mo share/locale/it/LC_MESSAGES/kio6_afc.mo share/locale/it/LC_MESSAGES/kio6_archive.mo share/locale/it/LC_MESSAGES/kio6_filenamesearch.mo share/locale/it/LC_MESSAGES/kio6_fish.mo share/locale/it/LC_MESSAGES/kio6_info.mo share/locale/it/LC_MESSAGES/kio6_man.mo share/locale/it/LC_MESSAGES/kio6_mtp.mo share/locale/it/LC_MESSAGES/kio6_nfs.mo share/locale/it/LC_MESSAGES/kio6_recentlyused.mo share/locale/it/LC_MESSAGES/kio6_sftp.mo share/locale/it/LC_MESSAGES/kio6_smb.mo share/locale/it/LC_MESSAGES/kio6_thumbnail.mo share/locale/ja/LC_MESSAGES/kfileaudiopreview6.mo share/locale/ja/LC_MESSAGES/kio-extras_kcms.mo share/locale/ja/LC_MESSAGES/kio6_activities.mo share/locale/ja/LC_MESSAGES/kio6_afc.mo share/locale/ja/LC_MESSAGES/kio6_archive.mo share/locale/ja/LC_MESSAGES/kio6_fish.mo share/locale/ja/LC_MESSAGES/kio6_info.mo share/locale/ja/LC_MESSAGES/kio6_man.mo share/locale/ja/LC_MESSAGES/kio6_mtp.mo share/locale/ja/LC_MESSAGES/kio6_nfs.mo share/locale/ja/LC_MESSAGES/kio6_sftp.mo share/locale/ja/LC_MESSAGES/kio6_smb.mo share/locale/ja/LC_MESSAGES/kio6_thumbnail.mo share/locale/ka/LC_MESSAGES/kfileaudiopreview6.mo share/locale/ka/LC_MESSAGES/kio-extras_kcms.mo share/locale/ka/LC_MESSAGES/kio6_activities.mo share/locale/ka/LC_MESSAGES/kio6_afc.mo share/locale/ka/LC_MESSAGES/kio6_archive.mo share/locale/ka/LC_MESSAGES/kio6_filenamesearch.mo share/locale/ka/LC_MESSAGES/kio6_fish.mo share/locale/ka/LC_MESSAGES/kio6_info.mo share/locale/ka/LC_MESSAGES/kio6_man.mo share/locale/ka/LC_MESSAGES/kio6_mtp.mo share/locale/ka/LC_MESSAGES/kio6_nfs.mo share/locale/ka/LC_MESSAGES/kio6_recentlyused.mo share/locale/ka/LC_MESSAGES/kio6_sftp.mo share/locale/ka/LC_MESSAGES/kio6_smb.mo share/locale/ka/LC_MESSAGES/kio6_thumbnail.mo share/locale/kk/LC_MESSAGES/kfileaudiopreview6.mo share/locale/kk/LC_MESSAGES/kio-extras_kcms.mo share/locale/kk/LC_MESSAGES/kio6_activities.mo share/locale/kk/LC_MESSAGES/kio6_archive.mo share/locale/kk/LC_MESSAGES/kio6_fish.mo share/locale/kk/LC_MESSAGES/kio6_info.mo share/locale/kk/LC_MESSAGES/kio6_man.mo share/locale/kk/LC_MESSAGES/kio6_nfs.mo share/locale/kk/LC_MESSAGES/kio6_sftp.mo share/locale/kk/LC_MESSAGES/kio6_smb.mo share/locale/kk/LC_MESSAGES/kio6_thumbnail.mo share/locale/km/LC_MESSAGES/kfileaudiopreview6.mo share/locale/km/LC_MESSAGES/kio-extras_kcms.mo share/locale/km/LC_MESSAGES/kio6_activities.mo share/locale/km/LC_MESSAGES/kio6_archive.mo share/locale/km/LC_MESSAGES/kio6_fish.mo share/locale/km/LC_MESSAGES/kio6_info.mo share/locale/km/LC_MESSAGES/kio6_man.mo share/locale/km/LC_MESSAGES/kio6_nfs.mo share/locale/km/LC_MESSAGES/kio6_sftp.mo share/locale/km/LC_MESSAGES/kio6_smb.mo share/locale/km/LC_MESSAGES/kio6_thumbnail.mo share/locale/kn/LC_MESSAGES/kfileaudiopreview6.mo share/locale/kn/LC_MESSAGES/kio6_activities.mo share/locale/kn/LC_MESSAGES/kio6_archive.mo share/locale/kn/LC_MESSAGES/kio6_fish.mo share/locale/kn/LC_MESSAGES/kio6_info.mo share/locale/kn/LC_MESSAGES/kio6_man.mo share/locale/kn/LC_MESSAGES/kio6_nfs.mo share/locale/kn/LC_MESSAGES/kio6_sftp.mo share/locale/kn/LC_MESSAGES/kio6_smb.mo share/locale/kn/LC_MESSAGES/kio6_thumbnail.mo share/locale/ko/LC_MESSAGES/kfileaudiopreview6.mo share/locale/ko/LC_MESSAGES/kio-extras_kcms.mo share/locale/ko/LC_MESSAGES/kio6_activities.mo share/locale/ko/LC_MESSAGES/kio6_afc.mo share/locale/ko/LC_MESSAGES/kio6_archive.mo share/locale/ko/LC_MESSAGES/kio6_filenamesearch.mo share/locale/ko/LC_MESSAGES/kio6_fish.mo share/locale/ko/LC_MESSAGES/kio6_info.mo share/locale/ko/LC_MESSAGES/kio6_man.mo share/locale/ko/LC_MESSAGES/kio6_mtp.mo share/locale/ko/LC_MESSAGES/kio6_nfs.mo share/locale/ko/LC_MESSAGES/kio6_recentlyused.mo share/locale/ko/LC_MESSAGES/kio6_sftp.mo share/locale/ko/LC_MESSAGES/kio6_smb.mo share/locale/ko/LC_MESSAGES/kio6_thumbnail.mo share/locale/ku/LC_MESSAGES/kfileaudiopreview6.mo share/locale/ku/LC_MESSAGES/kio-extras_kcms.mo share/locale/ku/LC_MESSAGES/kio6_archive.mo share/locale/ku/LC_MESSAGES/kio6_fish.mo share/locale/ku/LC_MESSAGES/kio6_man.mo share/locale/ku/LC_MESSAGES/kio6_nfs.mo share/locale/ku/LC_MESSAGES/kio6_sftp.mo share/locale/ku/LC_MESSAGES/kio6_smb.mo share/locale/ku/LC_MESSAGES/kio6_thumbnail.mo share/locale/lb/LC_MESSAGES/kfileaudiopreview6.mo share/locale/lb/LC_MESSAGES/kio6_archive.mo share/locale/lb/LC_MESSAGES/kio6_nfs.mo share/locale/lt/LC_MESSAGES/kfileaudiopreview6.mo share/locale/lt/LC_MESSAGES/kio-extras_kcms.mo share/locale/lt/LC_MESSAGES/kio6_activities.mo share/locale/lt/LC_MESSAGES/kio6_afc.mo share/locale/lt/LC_MESSAGES/kio6_archive.mo share/locale/lt/LC_MESSAGES/kio6_fish.mo share/locale/lt/LC_MESSAGES/kio6_info.mo share/locale/lt/LC_MESSAGES/kio6_man.mo share/locale/lt/LC_MESSAGES/kio6_mtp.mo share/locale/lt/LC_MESSAGES/kio6_nfs.mo share/locale/lt/LC_MESSAGES/kio6_sftp.mo share/locale/lt/LC_MESSAGES/kio6_smb.mo share/locale/lt/LC_MESSAGES/kio6_thumbnail.mo share/locale/lv/LC_MESSAGES/kfileaudiopreview6.mo share/locale/lv/LC_MESSAGES/kio-extras_kcms.mo share/locale/lv/LC_MESSAGES/kio6_activities.mo share/locale/lv/LC_MESSAGES/kio6_afc.mo share/locale/lv/LC_MESSAGES/kio6_archive.mo share/locale/lv/LC_MESSAGES/kio6_filenamesearch.mo share/locale/lv/LC_MESSAGES/kio6_fish.mo share/locale/lv/LC_MESSAGES/kio6_info.mo share/locale/lv/LC_MESSAGES/kio6_man.mo share/locale/lv/LC_MESSAGES/kio6_mtp.mo share/locale/lv/LC_MESSAGES/kio6_nfs.mo share/locale/lv/LC_MESSAGES/kio6_recentlyused.mo share/locale/lv/LC_MESSAGES/kio6_sftp.mo share/locale/lv/LC_MESSAGES/kio6_smb.mo share/locale/lv/LC_MESSAGES/kio6_thumbnail.mo share/locale/mai/LC_MESSAGES/kfileaudiopreview6.mo share/locale/mai/LC_MESSAGES/kio-extras_kcms.mo share/locale/mai/LC_MESSAGES/kio6_archive.mo share/locale/mai/LC_MESSAGES/kio6_fish.mo share/locale/mai/LC_MESSAGES/kio6_info.mo share/locale/mai/LC_MESSAGES/kio6_man.mo share/locale/mai/LC_MESSAGES/kio6_nfs.mo share/locale/mai/LC_MESSAGES/kio6_sftp.mo share/locale/mai/LC_MESSAGES/kio6_smb.mo share/locale/mai/LC_MESSAGES/kio6_thumbnail.mo share/locale/mk/LC_MESSAGES/kfileaudiopreview6.mo share/locale/mk/LC_MESSAGES/kio-extras_kcms.mo share/locale/mk/LC_MESSAGES/kio6_archive.mo share/locale/mk/LC_MESSAGES/kio6_fish.mo share/locale/mk/LC_MESSAGES/kio6_man.mo share/locale/mk/LC_MESSAGES/kio6_nfs.mo share/locale/mk/LC_MESSAGES/kio6_sftp.mo share/locale/mk/LC_MESSAGES/kio6_smb.mo share/locale/mk/LC_MESSAGES/kio6_thumbnail.mo share/locale/ml/LC_MESSAGES/kfileaudiopreview6.mo share/locale/ml/LC_MESSAGES/kio-extras_kcms.mo share/locale/ml/LC_MESSAGES/kio6_archive.mo share/locale/ml/LC_MESSAGES/kio6_fish.mo share/locale/ml/LC_MESSAGES/kio6_info.mo share/locale/ml/LC_MESSAGES/kio6_man.mo share/locale/ml/LC_MESSAGES/kio6_nfs.mo share/locale/ml/LC_MESSAGES/kio6_sftp.mo share/locale/ml/LC_MESSAGES/kio6_smb.mo share/locale/ml/LC_MESSAGES/kio6_thumbnail.mo share/locale/mr/LC_MESSAGES/kfileaudiopreview6.mo share/locale/mr/LC_MESSAGES/kio-extras_kcms.mo share/locale/mr/LC_MESSAGES/kio6_activities.mo share/locale/mr/LC_MESSAGES/kio6_archive.mo share/locale/mr/LC_MESSAGES/kio6_fish.mo share/locale/mr/LC_MESSAGES/kio6_info.mo share/locale/mr/LC_MESSAGES/kio6_man.mo share/locale/mr/LC_MESSAGES/kio6_nfs.mo share/locale/mr/LC_MESSAGES/kio6_sftp.mo share/locale/mr/LC_MESSAGES/kio6_smb.mo share/locale/mr/LC_MESSAGES/kio6_thumbnail.mo share/locale/ms/LC_MESSAGES/kfileaudiopreview6.mo share/locale/ms/LC_MESSAGES/kio-extras_kcms.mo share/locale/ms/LC_MESSAGES/kio6_activities.mo share/locale/ms/LC_MESSAGES/kio6_archive.mo share/locale/ms/LC_MESSAGES/kio6_fish.mo share/locale/ms/LC_MESSAGES/kio6_info.mo share/locale/ms/LC_MESSAGES/kio6_man.mo share/locale/ms/LC_MESSAGES/kio6_nfs.mo share/locale/ms/LC_MESSAGES/kio6_sftp.mo share/locale/ms/LC_MESSAGES/kio6_smb.mo share/locale/ms/LC_MESSAGES/kio6_thumbnail.mo share/locale/my/LC_MESSAGES/kio-extras_kcms.mo share/locale/nb/LC_MESSAGES/kfileaudiopreview6.mo share/locale/nb/LC_MESSAGES/kio-extras_kcms.mo share/locale/nb/LC_MESSAGES/kio6_activities.mo share/locale/nb/LC_MESSAGES/kio6_archive.mo share/locale/nb/LC_MESSAGES/kio6_fish.mo share/locale/nb/LC_MESSAGES/kio6_info.mo share/locale/nb/LC_MESSAGES/kio6_man.mo share/locale/nb/LC_MESSAGES/kio6_nfs.mo share/locale/nb/LC_MESSAGES/kio6_sftp.mo share/locale/nb/LC_MESSAGES/kio6_smb.mo share/locale/nb/LC_MESSAGES/kio6_thumbnail.mo share/locale/nds/LC_MESSAGES/kfileaudiopreview6.mo share/locale/nds/LC_MESSAGES/kio-extras_kcms.mo share/locale/nds/LC_MESSAGES/kio6_activities.mo share/locale/nds/LC_MESSAGES/kio6_archive.mo share/locale/nds/LC_MESSAGES/kio6_fish.mo share/locale/nds/LC_MESSAGES/kio6_info.mo share/locale/nds/LC_MESSAGES/kio6_man.mo share/locale/nds/LC_MESSAGES/kio6_nfs.mo share/locale/nds/LC_MESSAGES/kio6_sftp.mo share/locale/nds/LC_MESSAGES/kio6_smb.mo share/locale/nds/LC_MESSAGES/kio6_thumbnail.mo share/locale/ne/LC_MESSAGES/kfileaudiopreview6.mo share/locale/ne/LC_MESSAGES/kio-extras_kcms.mo share/locale/ne/LC_MESSAGES/kio6_archive.mo share/locale/ne/LC_MESSAGES/kio6_fish.mo share/locale/ne/LC_MESSAGES/kio6_man.mo share/locale/ne/LC_MESSAGES/kio6_nfs.mo share/locale/ne/LC_MESSAGES/kio6_sftp.mo share/locale/ne/LC_MESSAGES/kio6_smb.mo share/locale/ne/LC_MESSAGES/kio6_thumbnail.mo share/locale/nl/LC_MESSAGES/kfileaudiopreview6.mo share/locale/nl/LC_MESSAGES/kio-extras_kcms.mo share/locale/nl/LC_MESSAGES/kio6_activities.mo share/locale/nl/LC_MESSAGES/kio6_afc.mo share/locale/nl/LC_MESSAGES/kio6_archive.mo share/locale/nl/LC_MESSAGES/kio6_filenamesearch.mo share/locale/nl/LC_MESSAGES/kio6_fish.mo share/locale/nl/LC_MESSAGES/kio6_info.mo share/locale/nl/LC_MESSAGES/kio6_man.mo share/locale/nl/LC_MESSAGES/kio6_mtp.mo share/locale/nl/LC_MESSAGES/kio6_nfs.mo share/locale/nl/LC_MESSAGES/kio6_recentlyused.mo share/locale/nl/LC_MESSAGES/kio6_sftp.mo share/locale/nl/LC_MESSAGES/kio6_smb.mo share/locale/nl/LC_MESSAGES/kio6_thumbnail.mo share/locale/nn/LC_MESSAGES/kfileaudiopreview6.mo share/locale/nn/LC_MESSAGES/kio-extras_kcms.mo share/locale/nn/LC_MESSAGES/kio6_activities.mo share/locale/nn/LC_MESSAGES/kio6_afc.mo share/locale/nn/LC_MESSAGES/kio6_archive.mo share/locale/nn/LC_MESSAGES/kio6_filenamesearch.mo share/locale/nn/LC_MESSAGES/kio6_fish.mo share/locale/nn/LC_MESSAGES/kio6_info.mo share/locale/nn/LC_MESSAGES/kio6_man.mo share/locale/nn/LC_MESSAGES/kio6_mtp.mo share/locale/nn/LC_MESSAGES/kio6_nfs.mo share/locale/nn/LC_MESSAGES/kio6_recentlyused.mo share/locale/nn/LC_MESSAGES/kio6_sftp.mo share/locale/nn/LC_MESSAGES/kio6_smb.mo share/locale/nn/LC_MESSAGES/kio6_thumbnail.mo share/locale/oc/LC_MESSAGES/kio-extras_kcms.mo share/locale/oc/LC_MESSAGES/kio6_archive.mo share/locale/oc/LC_MESSAGES/kio6_fish.mo share/locale/oc/LC_MESSAGES/kio6_man.mo share/locale/oc/LC_MESSAGES/kio6_nfs.mo share/locale/oc/LC_MESSAGES/kio6_sftp.mo share/locale/oc/LC_MESSAGES/kio6_smb.mo share/locale/oc/LC_MESSAGES/kio6_thumbnail.mo share/locale/or/LC_MESSAGES/kio6_archive.mo share/locale/or/LC_MESSAGES/kio6_fish.mo share/locale/or/LC_MESSAGES/kio6_man.mo share/locale/or/LC_MESSAGES/kio6_nfs.mo share/locale/or/LC_MESSAGES/kio6_sftp.mo share/locale/or/LC_MESSAGES/kio6_smb.mo share/locale/or/LC_MESSAGES/kio6_thumbnail.mo share/locale/pa/LC_MESSAGES/kfileaudiopreview6.mo share/locale/pa/LC_MESSAGES/kio-extras_kcms.mo share/locale/pa/LC_MESSAGES/kio6_activities.mo share/locale/pa/LC_MESSAGES/kio6_afc.mo share/locale/pa/LC_MESSAGES/kio6_archive.mo share/locale/pa/LC_MESSAGES/kio6_fish.mo share/locale/pa/LC_MESSAGES/kio6_info.mo share/locale/pa/LC_MESSAGES/kio6_man.mo share/locale/pa/LC_MESSAGES/kio6_mtp.mo share/locale/pa/LC_MESSAGES/kio6_nfs.mo share/locale/pa/LC_MESSAGES/kio6_sftp.mo share/locale/pa/LC_MESSAGES/kio6_smb.mo share/locale/pa/LC_MESSAGES/kio6_thumbnail.mo share/locale/pl/LC_MESSAGES/kfileaudiopreview6.mo share/locale/pl/LC_MESSAGES/kio-extras_kcms.mo share/locale/pl/LC_MESSAGES/kio6_activities.mo share/locale/pl/LC_MESSAGES/kio6_afc.mo share/locale/pl/LC_MESSAGES/kio6_archive.mo share/locale/pl/LC_MESSAGES/kio6_filenamesearch.mo share/locale/pl/LC_MESSAGES/kio6_fish.mo share/locale/pl/LC_MESSAGES/kio6_info.mo share/locale/pl/LC_MESSAGES/kio6_man.mo share/locale/pl/LC_MESSAGES/kio6_mtp.mo share/locale/pl/LC_MESSAGES/kio6_nfs.mo share/locale/pl/LC_MESSAGES/kio6_recentlyused.mo share/locale/pl/LC_MESSAGES/kio6_sftp.mo share/locale/pl/LC_MESSAGES/kio6_smb.mo share/locale/pl/LC_MESSAGES/kio6_thumbnail.mo share/locale/pt/LC_MESSAGES/kfileaudiopreview6.mo share/locale/pt/LC_MESSAGES/kio-extras_kcms.mo share/locale/pt/LC_MESSAGES/kio6_activities.mo share/locale/pt/LC_MESSAGES/kio6_afc.mo share/locale/pt/LC_MESSAGES/kio6_archive.mo share/locale/pt/LC_MESSAGES/kio6_fish.mo share/locale/pt/LC_MESSAGES/kio6_info.mo share/locale/pt/LC_MESSAGES/kio6_man.mo share/locale/pt/LC_MESSAGES/kio6_mtp.mo share/locale/pt/LC_MESSAGES/kio6_nfs.mo share/locale/pt/LC_MESSAGES/kio6_sftp.mo share/locale/pt/LC_MESSAGES/kio6_smb.mo share/locale/pt/LC_MESSAGES/kio6_thumbnail.mo share/locale/pt_BR/LC_MESSAGES/kfileaudiopreview6.mo share/locale/pt_BR/LC_MESSAGES/kio-extras_kcms.mo share/locale/pt_BR/LC_MESSAGES/kio6_activities.mo share/locale/pt_BR/LC_MESSAGES/kio6_afc.mo share/locale/pt_BR/LC_MESSAGES/kio6_archive.mo share/locale/pt_BR/LC_MESSAGES/kio6_filenamesearch.mo share/locale/pt_BR/LC_MESSAGES/kio6_fish.mo share/locale/pt_BR/LC_MESSAGES/kio6_info.mo share/locale/pt_BR/LC_MESSAGES/kio6_man.mo share/locale/pt_BR/LC_MESSAGES/kio6_mtp.mo share/locale/pt_BR/LC_MESSAGES/kio6_nfs.mo share/locale/pt_BR/LC_MESSAGES/kio6_recentlyused.mo share/locale/pt_BR/LC_MESSAGES/kio6_sftp.mo share/locale/pt_BR/LC_MESSAGES/kio6_smb.mo share/locale/pt_BR/LC_MESSAGES/kio6_thumbnail.mo share/locale/ro/LC_MESSAGES/kfileaudiopreview6.mo share/locale/ro/LC_MESSAGES/kio-extras_kcms.mo share/locale/ro/LC_MESSAGES/kio6_activities.mo share/locale/ro/LC_MESSAGES/kio6_archive.mo +share/locale/ro/LC_MESSAGES/kio6_filenamesearch.mo share/locale/ro/LC_MESSAGES/kio6_fish.mo share/locale/ro/LC_MESSAGES/kio6_info.mo share/locale/ro/LC_MESSAGES/kio6_man.mo share/locale/ro/LC_MESSAGES/kio6_mtp.mo share/locale/ro/LC_MESSAGES/kio6_nfs.mo +share/locale/ro/LC_MESSAGES/kio6_recentlyused.mo share/locale/ro/LC_MESSAGES/kio6_sftp.mo share/locale/ro/LC_MESSAGES/kio6_smb.mo share/locale/ro/LC_MESSAGES/kio6_thumbnail.mo share/locale/ru/LC_MESSAGES/kfileaudiopreview6.mo share/locale/ru/LC_MESSAGES/kio-extras_kcms.mo share/locale/ru/LC_MESSAGES/kio6_activities.mo share/locale/ru/LC_MESSAGES/kio6_afc.mo share/locale/ru/LC_MESSAGES/kio6_archive.mo share/locale/ru/LC_MESSAGES/kio6_filenamesearch.mo share/locale/ru/LC_MESSAGES/kio6_fish.mo share/locale/ru/LC_MESSAGES/kio6_info.mo share/locale/ru/LC_MESSAGES/kio6_man.mo share/locale/ru/LC_MESSAGES/kio6_mtp.mo share/locale/ru/LC_MESSAGES/kio6_nfs.mo share/locale/ru/LC_MESSAGES/kio6_recentlyused.mo share/locale/ru/LC_MESSAGES/kio6_sftp.mo share/locale/ru/LC_MESSAGES/kio6_smb.mo share/locale/ru/LC_MESSAGES/kio6_thumbnail.mo share/locale/sa/LC_MESSAGES/kfileaudiopreview6.mo share/locale/sa/LC_MESSAGES/kio-extras_kcms.mo share/locale/sa/LC_MESSAGES/kio6_activities.mo share/locale/sa/LC_MESSAGES/kio6_afc.mo share/locale/sa/LC_MESSAGES/kio6_archive.mo share/locale/sa/LC_MESSAGES/kio6_filenamesearch.mo share/locale/sa/LC_MESSAGES/kio6_fish.mo share/locale/sa/LC_MESSAGES/kio6_info.mo share/locale/sa/LC_MESSAGES/kio6_man.mo share/locale/sa/LC_MESSAGES/kio6_mtp.mo share/locale/sa/LC_MESSAGES/kio6_nfs.mo share/locale/sa/LC_MESSAGES/kio6_recentlyused.mo share/locale/sa/LC_MESSAGES/kio6_sftp.mo share/locale/sa/LC_MESSAGES/kio6_smb.mo share/locale/sa/LC_MESSAGES/kio6_thumbnail.mo share/locale/se/LC_MESSAGES/kfileaudiopreview6.mo share/locale/se/LC_MESSAGES/kio-extras_kcms.mo share/locale/se/LC_MESSAGES/kio6_activities.mo share/locale/se/LC_MESSAGES/kio6_fish.mo share/locale/se/LC_MESSAGES/kio6_man.mo share/locale/se/LC_MESSAGES/kio6_nfs.mo share/locale/se/LC_MESSAGES/kio6_sftp.mo share/locale/se/LC_MESSAGES/kio6_smb.mo share/locale/se/LC_MESSAGES/kio6_thumbnail.mo share/locale/si/LC_MESSAGES/kio6_archive.mo share/locale/si/LC_MESSAGES/kio6_fish.mo share/locale/si/LC_MESSAGES/kio6_info.mo share/locale/si/LC_MESSAGES/kio6_man.mo share/locale/si/LC_MESSAGES/kio6_nfs.mo share/locale/si/LC_MESSAGES/kio6_sftp.mo share/locale/si/LC_MESSAGES/kio6_smb.mo share/locale/si/LC_MESSAGES/kio6_thumbnail.mo share/locale/sk/LC_MESSAGES/kfileaudiopreview6.mo share/locale/sk/LC_MESSAGES/kio-extras_kcms.mo share/locale/sk/LC_MESSAGES/kio6_activities.mo share/locale/sk/LC_MESSAGES/kio6_afc.mo share/locale/sk/LC_MESSAGES/kio6_archive.mo share/locale/sk/LC_MESSAGES/kio6_filenamesearch.mo share/locale/sk/LC_MESSAGES/kio6_fish.mo share/locale/sk/LC_MESSAGES/kio6_info.mo share/locale/sk/LC_MESSAGES/kio6_man.mo share/locale/sk/LC_MESSAGES/kio6_mtp.mo share/locale/sk/LC_MESSAGES/kio6_nfs.mo share/locale/sk/LC_MESSAGES/kio6_recentlyused.mo share/locale/sk/LC_MESSAGES/kio6_sftp.mo share/locale/sk/LC_MESSAGES/kio6_smb.mo share/locale/sk/LC_MESSAGES/kio6_thumbnail.mo share/locale/sl/LC_MESSAGES/kfileaudiopreview6.mo share/locale/sl/LC_MESSAGES/kio-extras_kcms.mo share/locale/sl/LC_MESSAGES/kio6_activities.mo share/locale/sl/LC_MESSAGES/kio6_afc.mo share/locale/sl/LC_MESSAGES/kio6_archive.mo share/locale/sl/LC_MESSAGES/kio6_filenamesearch.mo share/locale/sl/LC_MESSAGES/kio6_fish.mo share/locale/sl/LC_MESSAGES/kio6_info.mo share/locale/sl/LC_MESSAGES/kio6_man.mo share/locale/sl/LC_MESSAGES/kio6_mtp.mo share/locale/sl/LC_MESSAGES/kio6_nfs.mo share/locale/sl/LC_MESSAGES/kio6_recentlyused.mo share/locale/sl/LC_MESSAGES/kio6_sftp.mo share/locale/sl/LC_MESSAGES/kio6_smb.mo share/locale/sl/LC_MESSAGES/kio6_thumbnail.mo share/locale/sq/LC_MESSAGES/kfileaudiopreview6.mo share/locale/sq/LC_MESSAGES/kio-extras_kcms.mo share/locale/sq/LC_MESSAGES/kio6_archive.mo share/locale/sq/LC_MESSAGES/kio6_fish.mo share/locale/sq/LC_MESSAGES/kio6_info.mo share/locale/sq/LC_MESSAGES/kio6_man.mo share/locale/sq/LC_MESSAGES/kio6_nfs.mo share/locale/sq/LC_MESSAGES/kio6_sftp.mo share/locale/sq/LC_MESSAGES/kio6_smb.mo share/locale/sq/LC_MESSAGES/kio6_thumbnail.mo share/locale/sr/LC_MESSAGES/kfileaudiopreview6.mo share/locale/sr/LC_MESSAGES/kio-extras_kcms.mo share/locale/sr/LC_MESSAGES/kio6_activities.mo share/locale/sr/LC_MESSAGES/kio6_archive.mo share/locale/sr/LC_MESSAGES/kio6_fish.mo share/locale/sr/LC_MESSAGES/kio6_info.mo share/locale/sr/LC_MESSAGES/kio6_man.mo share/locale/sr/LC_MESSAGES/kio6_mtp.mo share/locale/sr/LC_MESSAGES/kio6_nfs.mo share/locale/sr/LC_MESSAGES/kio6_sftp.mo share/locale/sr/LC_MESSAGES/kio6_smb.mo share/locale/sr/LC_MESSAGES/kio6_thumbnail.mo share/locale/sr@ijekavian/LC_MESSAGES/kfileaudiopreview6.mo share/locale/sr@ijekavian/LC_MESSAGES/kio-extras_kcms.mo share/locale/sr@ijekavian/LC_MESSAGES/kio6_activities.mo share/locale/sr@ijekavian/LC_MESSAGES/kio6_archive.mo share/locale/sr@ijekavian/LC_MESSAGES/kio6_fish.mo share/locale/sr@ijekavian/LC_MESSAGES/kio6_info.mo share/locale/sr@ijekavian/LC_MESSAGES/kio6_man.mo share/locale/sr@ijekavian/LC_MESSAGES/kio6_mtp.mo share/locale/sr@ijekavian/LC_MESSAGES/kio6_nfs.mo share/locale/sr@ijekavian/LC_MESSAGES/kio6_sftp.mo share/locale/sr@ijekavian/LC_MESSAGES/kio6_smb.mo share/locale/sr@ijekavian/LC_MESSAGES/kio6_thumbnail.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kfileaudiopreview6.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kio-extras_kcms.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kio6_activities.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kio6_archive.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kio6_fish.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kio6_info.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kio6_man.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kio6_mtp.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kio6_nfs.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kio6_sftp.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kio6_smb.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kio6_thumbnail.mo share/locale/sr@latin/LC_MESSAGES/kfileaudiopreview6.mo share/locale/sr@latin/LC_MESSAGES/kio-extras_kcms.mo share/locale/sr@latin/LC_MESSAGES/kio6_activities.mo share/locale/sr@latin/LC_MESSAGES/kio6_archive.mo share/locale/sr@latin/LC_MESSAGES/kio6_fish.mo share/locale/sr@latin/LC_MESSAGES/kio6_info.mo share/locale/sr@latin/LC_MESSAGES/kio6_man.mo share/locale/sr@latin/LC_MESSAGES/kio6_mtp.mo share/locale/sr@latin/LC_MESSAGES/kio6_nfs.mo share/locale/sr@latin/LC_MESSAGES/kio6_sftp.mo share/locale/sr@latin/LC_MESSAGES/kio6_smb.mo share/locale/sr@latin/LC_MESSAGES/kio6_thumbnail.mo share/locale/sv/LC_MESSAGES/kfileaudiopreview6.mo share/locale/sv/LC_MESSAGES/kio-extras_kcms.mo share/locale/sv/LC_MESSAGES/kio6_activities.mo share/locale/sv/LC_MESSAGES/kio6_afc.mo share/locale/sv/LC_MESSAGES/kio6_archive.mo share/locale/sv/LC_MESSAGES/kio6_filenamesearch.mo share/locale/sv/LC_MESSAGES/kio6_fish.mo share/locale/sv/LC_MESSAGES/kio6_info.mo share/locale/sv/LC_MESSAGES/kio6_man.mo share/locale/sv/LC_MESSAGES/kio6_mtp.mo share/locale/sv/LC_MESSAGES/kio6_nfs.mo share/locale/sv/LC_MESSAGES/kio6_recentlyused.mo share/locale/sv/LC_MESSAGES/kio6_sftp.mo share/locale/sv/LC_MESSAGES/kio6_smb.mo share/locale/sv/LC_MESSAGES/kio6_thumbnail.mo share/locale/ta/LC_MESSAGES/kfileaudiopreview6.mo share/locale/ta/LC_MESSAGES/kio-extras_kcms.mo share/locale/ta/LC_MESSAGES/kio6_activities.mo share/locale/ta/LC_MESSAGES/kio6_afc.mo share/locale/ta/LC_MESSAGES/kio6_archive.mo share/locale/ta/LC_MESSAGES/kio6_fish.mo share/locale/ta/LC_MESSAGES/kio6_info.mo share/locale/ta/LC_MESSAGES/kio6_man.mo share/locale/ta/LC_MESSAGES/kio6_mtp.mo share/locale/ta/LC_MESSAGES/kio6_nfs.mo share/locale/ta/LC_MESSAGES/kio6_sftp.mo share/locale/ta/LC_MESSAGES/kio6_smb.mo share/locale/ta/LC_MESSAGES/kio6_thumbnail.mo share/locale/te/LC_MESSAGES/kfileaudiopreview6.mo share/locale/te/LC_MESSAGES/kio6_archive.mo share/locale/te/LC_MESSAGES/kio6_fish.mo share/locale/te/LC_MESSAGES/kio6_man.mo share/locale/te/LC_MESSAGES/kio6_nfs.mo share/locale/te/LC_MESSAGES/kio6_sftp.mo share/locale/te/LC_MESSAGES/kio6_smb.mo share/locale/te/LC_MESSAGES/kio6_thumbnail.mo share/locale/tg/LC_MESSAGES/kfileaudiopreview6.mo share/locale/tg/LC_MESSAGES/kio-extras_kcms.mo share/locale/tg/LC_MESSAGES/kio6_activities.mo share/locale/tg/LC_MESSAGES/kio6_archive.mo share/locale/tg/LC_MESSAGES/kio6_fish.mo share/locale/tg/LC_MESSAGES/kio6_info.mo share/locale/tg/LC_MESSAGES/kio6_man.mo share/locale/tg/LC_MESSAGES/kio6_nfs.mo share/locale/tg/LC_MESSAGES/kio6_sftp.mo share/locale/tg/LC_MESSAGES/kio6_smb.mo share/locale/tg/LC_MESSAGES/kio6_thumbnail.mo share/locale/th/LC_MESSAGES/kfileaudiopreview6.mo share/locale/th/LC_MESSAGES/kio-extras_kcms.mo share/locale/th/LC_MESSAGES/kio6_activities.mo share/locale/th/LC_MESSAGES/kio6_archive.mo share/locale/th/LC_MESSAGES/kio6_fish.mo share/locale/th/LC_MESSAGES/kio6_info.mo share/locale/th/LC_MESSAGES/kio6_man.mo share/locale/th/LC_MESSAGES/kio6_nfs.mo share/locale/th/LC_MESSAGES/kio6_sftp.mo share/locale/th/LC_MESSAGES/kio6_smb.mo share/locale/th/LC_MESSAGES/kio6_thumbnail.mo share/locale/tok/LC_MESSAGES/kio-extras_kcms.mo share/locale/tr/LC_MESSAGES/kfileaudiopreview6.mo share/locale/tr/LC_MESSAGES/kio-extras_kcms.mo share/locale/tr/LC_MESSAGES/kio6_activities.mo share/locale/tr/LC_MESSAGES/kio6_afc.mo share/locale/tr/LC_MESSAGES/kio6_archive.mo share/locale/tr/LC_MESSAGES/kio6_filenamesearch.mo share/locale/tr/LC_MESSAGES/kio6_fish.mo share/locale/tr/LC_MESSAGES/kio6_info.mo share/locale/tr/LC_MESSAGES/kio6_man.mo share/locale/tr/LC_MESSAGES/kio6_mtp.mo share/locale/tr/LC_MESSAGES/kio6_nfs.mo share/locale/tr/LC_MESSAGES/kio6_recentlyused.mo share/locale/tr/LC_MESSAGES/kio6_sftp.mo share/locale/tr/LC_MESSAGES/kio6_smb.mo share/locale/tr/LC_MESSAGES/kio6_thumbnail.mo share/locale/ug/LC_MESSAGES/kfileaudiopreview6.mo share/locale/ug/LC_MESSAGES/kio-extras_kcms.mo share/locale/ug/LC_MESSAGES/kio6_activities.mo share/locale/ug/LC_MESSAGES/kio6_archive.mo share/locale/ug/LC_MESSAGES/kio6_fish.mo share/locale/ug/LC_MESSAGES/kio6_info.mo share/locale/ug/LC_MESSAGES/kio6_man.mo share/locale/ug/LC_MESSAGES/kio6_nfs.mo share/locale/ug/LC_MESSAGES/kio6_sftp.mo share/locale/ug/LC_MESSAGES/kio6_smb.mo share/locale/ug/LC_MESSAGES/kio6_thumbnail.mo share/locale/uk/LC_MESSAGES/kfileaudiopreview6.mo share/locale/uk/LC_MESSAGES/kio-extras_kcms.mo share/locale/uk/LC_MESSAGES/kio6_activities.mo share/locale/uk/LC_MESSAGES/kio6_afc.mo share/locale/uk/LC_MESSAGES/kio6_archive.mo share/locale/uk/LC_MESSAGES/kio6_filenamesearch.mo share/locale/uk/LC_MESSAGES/kio6_fish.mo share/locale/uk/LC_MESSAGES/kio6_info.mo share/locale/uk/LC_MESSAGES/kio6_man.mo share/locale/uk/LC_MESSAGES/kio6_mtp.mo share/locale/uk/LC_MESSAGES/kio6_nfs.mo share/locale/uk/LC_MESSAGES/kio6_recentlyused.mo share/locale/uk/LC_MESSAGES/kio6_sftp.mo share/locale/uk/LC_MESSAGES/kio6_smb.mo share/locale/uk/LC_MESSAGES/kio6_thumbnail.mo share/locale/uz/LC_MESSAGES/kfileaudiopreview6.mo share/locale/uz/LC_MESSAGES/kio-extras_kcms.mo share/locale/uz/LC_MESSAGES/kio6_archive.mo share/locale/uz/LC_MESSAGES/kio6_fish.mo share/locale/uz/LC_MESSAGES/kio6_man.mo share/locale/uz/LC_MESSAGES/kio6_nfs.mo share/locale/uz/LC_MESSAGES/kio6_sftp.mo share/locale/uz/LC_MESSAGES/kio6_smb.mo share/locale/uz/LC_MESSAGES/kio6_thumbnail.mo share/locale/uz@cyrillic/LC_MESSAGES/kfileaudiopreview6.mo share/locale/uz@cyrillic/LC_MESSAGES/kio-extras_kcms.mo share/locale/uz@cyrillic/LC_MESSAGES/kio6_archive.mo share/locale/uz@cyrillic/LC_MESSAGES/kio6_fish.mo share/locale/uz@cyrillic/LC_MESSAGES/kio6_man.mo share/locale/uz@cyrillic/LC_MESSAGES/kio6_nfs.mo share/locale/uz@cyrillic/LC_MESSAGES/kio6_sftp.mo share/locale/uz@cyrillic/LC_MESSAGES/kio6_smb.mo share/locale/uz@cyrillic/LC_MESSAGES/kio6_thumbnail.mo share/locale/vi/LC_MESSAGES/kfileaudiopreview6.mo share/locale/vi/LC_MESSAGES/kio-extras_kcms.mo share/locale/vi/LC_MESSAGES/kio6_activities.mo share/locale/vi/LC_MESSAGES/kio6_afc.mo share/locale/vi/LC_MESSAGES/kio6_archive.mo share/locale/vi/LC_MESSAGES/kio6_fish.mo share/locale/vi/LC_MESSAGES/kio6_info.mo share/locale/vi/LC_MESSAGES/kio6_man.mo share/locale/vi/LC_MESSAGES/kio6_mtp.mo share/locale/vi/LC_MESSAGES/kio6_nfs.mo share/locale/vi/LC_MESSAGES/kio6_sftp.mo share/locale/vi/LC_MESSAGES/kio6_smb.mo share/locale/vi/LC_MESSAGES/kio6_thumbnail.mo share/locale/wa/LC_MESSAGES/kfileaudiopreview6.mo share/locale/wa/LC_MESSAGES/kio-extras_kcms.mo share/locale/wa/LC_MESSAGES/kio6_activities.mo share/locale/wa/LC_MESSAGES/kio6_archive.mo share/locale/wa/LC_MESSAGES/kio6_fish.mo share/locale/wa/LC_MESSAGES/kio6_info.mo share/locale/wa/LC_MESSAGES/kio6_man.mo share/locale/wa/LC_MESSAGES/kio6_nfs.mo share/locale/wa/LC_MESSAGES/kio6_sftp.mo share/locale/wa/LC_MESSAGES/kio6_smb.mo share/locale/wa/LC_MESSAGES/kio6_thumbnail.mo share/locale/xh/LC_MESSAGES/kio-extras_kcms.mo share/locale/xh/LC_MESSAGES/kio6_man.mo share/locale/xh/LC_MESSAGES/kio6_nfs.mo share/locale/xh/LC_MESSAGES/kio6_sftp.mo share/locale/xh/LC_MESSAGES/kio6_smb.mo share/locale/zh_CN/LC_MESSAGES/kfileaudiopreview6.mo share/locale/zh_CN/LC_MESSAGES/kio-extras_kcms.mo share/locale/zh_CN/LC_MESSAGES/kio6_activities.mo share/locale/zh_CN/LC_MESSAGES/kio6_afc.mo share/locale/zh_CN/LC_MESSAGES/kio6_archive.mo share/locale/zh_CN/LC_MESSAGES/kio6_filenamesearch.mo share/locale/zh_CN/LC_MESSAGES/kio6_fish.mo share/locale/zh_CN/LC_MESSAGES/kio6_info.mo share/locale/zh_CN/LC_MESSAGES/kio6_man.mo share/locale/zh_CN/LC_MESSAGES/kio6_mtp.mo share/locale/zh_CN/LC_MESSAGES/kio6_nfs.mo share/locale/zh_CN/LC_MESSAGES/kio6_recentlyused.mo share/locale/zh_CN/LC_MESSAGES/kio6_sftp.mo share/locale/zh_CN/LC_MESSAGES/kio6_smb.mo share/locale/zh_CN/LC_MESSAGES/kio6_thumbnail.mo share/locale/zh_HK/LC_MESSAGES/kfileaudiopreview6.mo share/locale/zh_TW/LC_MESSAGES/kfileaudiopreview6.mo share/locale/zh_TW/LC_MESSAGES/kio-extras_kcms.mo share/locale/zh_TW/LC_MESSAGES/kio6_activities.mo share/locale/zh_TW/LC_MESSAGES/kio6_afc.mo share/locale/zh_TW/LC_MESSAGES/kio6_archive.mo share/locale/zh_TW/LC_MESSAGES/kio6_filenamesearch.mo share/locale/zh_TW/LC_MESSAGES/kio6_fish.mo share/locale/zh_TW/LC_MESSAGES/kio6_info.mo share/locale/zh_TW/LC_MESSAGES/kio6_man.mo share/locale/zh_TW/LC_MESSAGES/kio6_mtp.mo share/locale/zh_TW/LC_MESSAGES/kio6_nfs.mo share/locale/zh_TW/LC_MESSAGES/kio6_recentlyused.mo share/locale/zh_TW/LC_MESSAGES/kio6_sftp.mo share/locale/zh_TW/LC_MESSAGES/kio6_smb.mo share/locale/zh_TW/LC_MESSAGES/kio6_thumbnail.mo %%SAMBA%%share/mime/packages/org.kde.kio.smb.xml share/qlogging-categories6/kio-extras.categories share/qlogging-categories6/kio-extras.renamecategories %%AFC%%share/remoteview/afc-network.desktop %%MTP%%share/remoteview/mtp-network.desktop %%SAMBA%%share/remoteview/smb-network.desktop %%AFC%%share/solid/actions/solid_afc.desktop %%MTP%%share/solid/actions/solid_mtp.desktop diff --git a/devel/kirigami-gallery/distinfo b/devel/kirigami-gallery/distinfo index f1b81c449ea1..1524ce986194 100644 --- a/devel/kirigami-gallery/distinfo +++ b/devel/kirigami-gallery/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1757409736 -SHA256 (KDE/release-service/25.08.1/kirigami-gallery-25.08.1.tar.xz) = 68f113d1ac4c5034419a89bcaf3344e499f3b227cdf27dee0d2b0d6bde6ef524 -SIZE (KDE/release-service/25.08.1/kirigami-gallery-25.08.1.tar.xz) = 376288 +TIMESTAMP = 1759874673 +SHA256 (KDE/release-service/25.08.2/kirigami-gallery-25.08.2.tar.xz) = b7aa2b06edbdb5ac13fe8d288157784b40652c46917ac14fd6bc8c628b2a12e8 +SIZE (KDE/release-service/25.08.2/kirigami-gallery-25.08.2.tar.xz) = 379772 diff --git a/devel/kirigami-gallery/pkg-plist b/devel/kirigami-gallery/pkg-plist index 414e2c4d4bca..9f1a42b0f2b7 100644 --- a/devel/kirigami-gallery/pkg-plist +++ b/devel/kirigami-gallery/pkg-plist @@ -1,42 +1,43 @@ bin/kirigami2gallery share/applications/org.kde.kirigami2.gallery.desktop +share/locale/ar/LC_MESSAGES/kirigamigallery_qt.qm share/locale/ca/LC_MESSAGES/kirigamigallery_qt.qm share/locale/ca@valencia/LC_MESSAGES/kirigamigallery_qt.qm share/locale/cs/LC_MESSAGES/kirigamigallery_qt.qm share/locale/da/LC_MESSAGES/kirigamigallery_qt.qm share/locale/de/LC_MESSAGES/kirigamigallery_qt.qm share/locale/el/LC_MESSAGES/kirigamigallery_qt.qm share/locale/en_GB/LC_MESSAGES/kirigamigallery_qt.qm share/locale/eo/LC_MESSAGES/kirigamigallery_qt.qm share/locale/es/LC_MESSAGES/kirigamigallery_qt.qm share/locale/et/LC_MESSAGES/kirigamigallery_qt.qm share/locale/eu/LC_MESSAGES/kirigamigallery_qt.qm share/locale/fi/LC_MESSAGES/kirigamigallery_qt.qm share/locale/fr/LC_MESSAGES/kirigamigallery_qt.qm share/locale/gl/LC_MESSAGES/kirigamigallery_qt.qm share/locale/he/LC_MESSAGES/kirigamigallery_qt.qm share/locale/hi/LC_MESSAGES/kirigamigallery_qt.qm share/locale/ia/LC_MESSAGES/kirigamigallery_qt.qm share/locale/it/LC_MESSAGES/kirigamigallery_qt.qm share/locale/ja/LC_MESSAGES/kirigamigallery_qt.qm share/locale/ka/LC_MESSAGES/kirigamigallery_qt.qm share/locale/ko/LC_MESSAGES/kirigamigallery_qt.qm share/locale/lt/LC_MESSAGES/kirigamigallery_qt.qm share/locale/lv/LC_MESSAGES/kirigamigallery_qt.qm share/locale/nl/LC_MESSAGES/kirigamigallery_qt.qm share/locale/nn/LC_MESSAGES/kirigamigallery_qt.qm share/locale/pa/LC_MESSAGES/kirigamigallery_qt.qm share/locale/pl/LC_MESSAGES/kirigamigallery_qt.qm share/locale/pt/LC_MESSAGES/kirigamigallery_qt.qm share/locale/pt_BR/LC_MESSAGES/kirigamigallery_qt.qm share/locale/ro/LC_MESSAGES/kirigamigallery_qt.qm share/locale/ru/LC_MESSAGES/kirigamigallery_qt.qm share/locale/sa/LC_MESSAGES/kirigamigallery_qt.qm share/locale/sk/LC_MESSAGES/kirigamigallery_qt.qm share/locale/sl/LC_MESSAGES/kirigamigallery_qt.qm share/locale/sv/LC_MESSAGES/kirigamigallery_qt.qm share/locale/tr/LC_MESSAGES/kirigamigallery_qt.qm share/locale/uk/LC_MESSAGES/kirigamigallery_qt.qm share/locale/zh_CN/LC_MESSAGES/kirigamigallery_qt.qm share/locale/zh_TW/LC_MESSAGES/kirigamigallery_qt.qm share/metainfo/org.kde.kirigami2.gallery.appdata.xml diff --git a/devel/kopeninghours/distinfo b/devel/kopeninghours/distinfo index 95eeec4d4a27..0af736e219f8 100644 --- a/devel/kopeninghours/distinfo +++ b/devel/kopeninghours/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1757409738 -SHA256 (KDE/release-service/25.08.1/kopeninghours-25.08.1.tar.xz) = 3cdafbf4c2c360ca3d1b63d6b08c0b7107edcee0904daf6b6fa589162e9dad0b -SIZE (KDE/release-service/25.08.1/kopeninghours-25.08.1.tar.xz) = 75972 +TIMESTAMP = 1759874676 +SHA256 (KDE/release-service/25.08.2/kopeninghours-25.08.2.tar.xz) = 0fad39c77b72b714a9c5b6b1e2ab0fd8d23ef1489bfcfbdf1b47dfea998c7143 +SIZE (KDE/release-service/25.08.2/kopeninghours-25.08.2.tar.xz) = 75984 diff --git a/devel/kpublictransport/distinfo b/devel/kpublictransport/distinfo index 05a42f2fac86..91172c900f68 100644 --- a/devel/kpublictransport/distinfo +++ b/devel/kpublictransport/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1757409740 -SHA256 (KDE/release-service/25.08.1/kpublictransport-25.08.1.tar.xz) = eb37f0831d7c5b437e80d4921aa8b4f04d75d4ae2531317303eae6529638f29f -SIZE (KDE/release-service/25.08.1/kpublictransport-25.08.1.tar.xz) = 878028 +TIMESTAMP = 1759874678 +SHA256 (KDE/release-service/25.08.2/kpublictransport-25.08.2.tar.xz) = b2dec9e45fd631c8d6df81c08d4b9f4706ee3d4781165431a04a4b4c0c8c2ed3 +SIZE (KDE/release-service/25.08.2/kpublictransport-25.08.2.tar.xz) = 889580 diff --git a/devel/kpublictransport/pkg-plist b/devel/kpublictransport/pkg-plist index f56acfb79759..2f0d72af28e5 100644 --- a/devel/kpublictransport/pkg-plist +++ b/devel/kpublictransport/pkg-plist @@ -1,157 +1,158 @@ 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/ar/LC_MESSAGES/kpublictransport.mo 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/pt_BR/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 6686c268cac9..feb41c6fe075 100644 --- a/devel/kunifiedpush/distinfo +++ b/devel/kunifiedpush/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1757409743 -SHA256 (KDE/release-service/25.08.1/kunifiedpush-25.08.1.tar.xz) = 3fbe01873643957544cb4115b90d9badfeae70277476587f367bdbeec59aa3d7 -SIZE (KDE/release-service/25.08.1/kunifiedpush-25.08.1.tar.xz) = 83488 +TIMESTAMP = 1759874680 +SHA256 (KDE/release-service/25.08.2/kunifiedpush-25.08.2.tar.xz) = 2a5c6a1a307474ca9502b79a65fd1cf4662182e0831a47d038b0640c20578832 +SIZE (KDE/release-service/25.08.2/kunifiedpush-25.08.2.tar.xz) = 83764 diff --git a/devel/lokalize/distinfo b/devel/lokalize/distinfo index c205e8b8b900..6338316f41e6 100644 --- a/devel/lokalize/distinfo +++ b/devel/lokalize/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1757409945 -SHA256 (KDE/release-service/25.08.1/lokalize-25.08.1.tar.xz) = d1034cecc0f5b6fb8e869ecc9b9e86fd92b55d6b2d2a7ddf01861492684f3137 -SIZE (KDE/release-service/25.08.1/lokalize-25.08.1.tar.xz) = 2059252 +TIMESTAMP = 1759874683 +SHA256 (KDE/release-service/25.08.2/lokalize-25.08.2.tar.xz) = 0e3ac5414803c8901ef4a48e8afa93e2a58736d5fd3b14c511d6d9d2018d30da +SIZE (KDE/release-service/25.08.2/lokalize-25.08.2.tar.xz) = 2059204 diff --git a/devel/massif-visualizer/distinfo b/devel/massif-visualizer/distinfo index 6ab0f9fb96e0..fbb4cb164532 100644 --- a/devel/massif-visualizer/distinfo +++ b/devel/massif-visualizer/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1757409947 -SHA256 (KDE/release-service/25.08.1/massif-visualizer-25.08.1.tar.xz) = a9e8fd6ae941bc5f2f55cab64d58e2229dddff1ce4129acabc382f175f557d90 -SIZE (KDE/release-service/25.08.1/massif-visualizer-25.08.1.tar.xz) = 283912 +TIMESTAMP = 1759874685 +SHA256 (KDE/release-service/25.08.2/massif-visualizer-25.08.2.tar.xz) = f3c9ea202c97e5a8c3435a5cd28a796e50d3f45a3b18dcc95f0590cbcb929a14 +SIZE (KDE/release-service/25.08.2/massif-visualizer-25.08.2.tar.xz) = 286000 diff --git a/devel/massif-visualizer/pkg-plist b/devel/massif-visualizer/pkg-plist index cc4a721338dc..ae67f35df61e 100644 --- a/devel/massif-visualizer/pkg-plist +++ b/devel/massif-visualizer/pkg-plist @@ -1,53 +1,54 @@ bin/massif-visualizer share/applications/org.kde.massif-visualizer.desktop share/config.kcfg/massif-visualizer-settings.kcfg share/icons/hicolor/scalable/apps/massif-visualizer.svg +share/locale/ar/LC_MESSAGES/massif-visualizer.mo share/locale/bg/LC_MESSAGES/massif-visualizer.mo share/locale/bs/LC_MESSAGES/massif-visualizer.mo share/locale/ca/LC_MESSAGES/massif-visualizer.mo share/locale/ca@valencia/LC_MESSAGES/massif-visualizer.mo share/locale/cs/LC_MESSAGES/massif-visualizer.mo share/locale/da/LC_MESSAGES/massif-visualizer.mo share/locale/de/LC_MESSAGES/massif-visualizer.mo share/locale/el/LC_MESSAGES/massif-visualizer.mo share/locale/en_GB/LC_MESSAGES/massif-visualizer.mo share/locale/eo/LC_MESSAGES/massif-visualizer.mo share/locale/es/LC_MESSAGES/massif-visualizer.mo share/locale/et/LC_MESSAGES/massif-visualizer.mo share/locale/eu/LC_MESSAGES/massif-visualizer.mo share/locale/fi/LC_MESSAGES/massif-visualizer.mo share/locale/fr/LC_MESSAGES/massif-visualizer.mo share/locale/ga/LC_MESSAGES/massif-visualizer.mo share/locale/gl/LC_MESSAGES/massif-visualizer.mo share/locale/he/LC_MESSAGES/massif-visualizer.mo share/locale/hi/LC_MESSAGES/massif-visualizer.mo share/locale/hu/LC_MESSAGES/massif-visualizer.mo share/locale/ia/LC_MESSAGES/massif-visualizer.mo share/locale/is/LC_MESSAGES/massif-visualizer.mo share/locale/it/LC_MESSAGES/massif-visualizer.mo share/locale/ja/LC_MESSAGES/massif-visualizer.mo share/locale/ka/LC_MESSAGES/massif-visualizer.mo share/locale/kk/LC_MESSAGES/massif-visualizer.mo share/locale/ko/LC_MESSAGES/massif-visualizer.mo share/locale/lt/LC_MESSAGES/massif-visualizer.mo share/locale/mr/LC_MESSAGES/massif-visualizer.mo share/locale/nb/LC_MESSAGES/massif-visualizer.mo share/locale/nds/LC_MESSAGES/massif-visualizer.mo share/locale/nl/LC_MESSAGES/massif-visualizer.mo share/locale/nn/LC_MESSAGES/massif-visualizer.mo share/locale/pl/LC_MESSAGES/massif-visualizer.mo share/locale/pt/LC_MESSAGES/massif-visualizer.mo share/locale/pt_BR/LC_MESSAGES/massif-visualizer.mo share/locale/ru/LC_MESSAGES/massif-visualizer.mo share/locale/sa/LC_MESSAGES/massif-visualizer.mo share/locale/sk/LC_MESSAGES/massif-visualizer.mo share/locale/sl/LC_MESSAGES/massif-visualizer.mo share/locale/sv/LC_MESSAGES/massif-visualizer.mo share/locale/tr/LC_MESSAGES/massif-visualizer.mo share/locale/ug/LC_MESSAGES/massif-visualizer.mo share/locale/uk/LC_MESSAGES/massif-visualizer.mo share/locale/zh_CN/LC_MESSAGES/massif-visualizer.mo share/locale/zh_TW/LC_MESSAGES/massif-visualizer.mo %%DATADIR%%/icons/hicolor/22x22/actions/shortentemplates.png share/metainfo/org.kde.massif-visualizer.appdata.xml share/mime/packages/massif.xml diff --git a/devel/poxml/distinfo b/devel/poxml/distinfo index 7f3dc35ab914..cfff1a260524 100644 --- a/devel/poxml/distinfo +++ b/devel/poxml/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1757409950 -SHA256 (KDE/release-service/25.08.1/poxml-25.08.1.tar.xz) = 4d3e5ff6fcb0bf170416eaeff9b953fdfa99a9baee321112485b3dfaad2eee2b -SIZE (KDE/release-service/25.08.1/poxml-25.08.1.tar.xz) = 45196 +TIMESTAMP = 1759874688 +SHA256 (KDE/release-service/25.08.2/poxml-25.08.2.tar.xz) = b4226c512781c8fe6ba143191f34b49547ae5f2b01d48481aaba984298b77ed5 +SIZE (KDE/release-service/25.08.2/poxml-25.08.2.tar.xz) = 45196 diff --git a/devel/umbrello/Makefile b/devel/umbrello/Makefile index ef866eeeaf59..aa165f11b6b9 100644 --- a/devel/umbrello/Makefile +++ b/devel/umbrello/Makefile @@ -1,33 +1,32 @@ PORTNAME= umbrello DISTVERSION= ${KDE_APPLICATIONS_VERSION} -PORTREVISION= 1 CATEGORIES= devel kde kde-applications MAINTAINER= kde@FreeBSD.org COMMENT= UML modeller for KDE WWW= https://umbrello.kde.org/ LIB_DEPENDS= libboost_thread.so:devel/boost-libs USES= cmake compiler:c++11-lang desktop-file-utils gnome kde:5 qt:5 \ tar:xz xorg USE_GNOME= libxml2 libxslt USE_KDE= archive auth bookmarks codecs completion config configwidgets \ coreaddons crash guiaddons i18n iconthemes init itemviews \ jobwidgets kio notifications parts service solid sonnet \ syntaxhighlighting texteditor textwidgets unitconversion \ widgetsaddons windowsystem xmlgui \ ecm:build USE_QT= concurrent core dbus gui network printsupport svg widgets xml \ buildtools:build qmake:build testlib:build USE_XORG= x11 OPTIONS_DEFINE= DOCS post-patch: # The CMakeFile sets BUILD_UNITTESTS to 1, not respecting the # value passed via CMAKE_ARGS. ${REINPLACE_CMD} -e '/BUILD_UNITTESTS/s|1|0|' \ ${PATCH_WRKSRC}/CMakeLists.txt .include diff --git a/devel/umbrello/distinfo b/devel/umbrello/distinfo index 4ec5a28ea67f..4f5482534f2b 100644 --- a/devel/umbrello/distinfo +++ b/devel/umbrello/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1757409952 -SHA256 (KDE/release-service/25.08.1/umbrello-25.08.1.tar.xz) = ed1a0453afcf6d4deab70ff864f48248a2253a365c165aba58b038ac4af62104 -SIZE (KDE/release-service/25.08.1/umbrello-25.08.1.tar.xz) = 5624792 +TIMESTAMP = 1759874690 +SHA256 (KDE/release-service/25.08.2/umbrello-25.08.2.tar.xz) = ec141b83348514a5f14596ed57d2ade49f737b4edafd8e86f02bf5154e794c7e +SIZE (KDE/release-service/25.08.2/umbrello-25.08.2.tar.xz) = 5630780 diff --git a/devel/umbrello/pkg-plist b/devel/umbrello/pkg-plist index db1a1135fbac..cf7880ed4564 100644 --- a/devel/umbrello/pkg-plist +++ b/devel/umbrello/pkg-plist @@ -1,166 +1,167 @@ 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/ar/LC_MESSAGES/umbrello_kdevphp5.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/Makefile b/editors/calligra/Makefile index b71d696ab9c8..e6e18f94bff7 100644 --- a/editors/calligra/Makefile +++ b/editors/calligra/Makefile @@ -1,62 +1,61 @@ PORTNAME= calligra DISTVERSION= ${KDE_APPLICATIONS_VERSION} -PORTREVISION= 1 CATEGORIES= editors kde kde-applications MAINTAINER= kde@FreeBSD.org COMMENT= KDE office suite WWW= https://calligra.org/ LICENSE= GPLv2+ LICENSE_FILE= ${WRKSRC}/COPYING IGNORE_i386= is not supported on 32-bit systems LIB_DEPENDS= libImath.so:math/Imath \ libboost_thread.so:devel/boost-libs \ libgit2.so:devel/libgit2 \ libetonyek-0.1.so:graphics/libetonyek01 \ libfontconfig.so:x11-fonts/fontconfig \ libfreetype.so:print/freetype2 \ libgsl.so:math/gsl \ liblcms2.so:graphics/lcms2 \ libKChart6.so:graphics/kdiagram-qt6 \ libOkular6Core.so:graphics/okular \ libodfgen-0.1.so:textproc/libodfgen01 \ libpoppler-qt6.so:graphics/poppler-qt6 \ libpoppler.so:graphics/poppler \ libqca-qt6.so:devel/qca@qt6 \ libqt6keychain.so:security/qtkeychain@qt6 \ librevenge-0.0.so:textproc/librevenge \ libvisio-0.1.so:textproc/libvisio01 \ libwpd-0.10.so:textproc/libwpd010 \ libwpg-0.3.so:graphics/libwpg03 \ libwps-0.4.so:textproc/libwps RUN_DEPENDS= pstoedit:graphics/pstoedit USES= cmake compiler:c++17-lang cpe desktop-file-utils eigen:3 \ gettext gl iconv:translit jpeg kde:6 localbase:ldflags perl5 \ pkgconfig qt:6 shared-mime-info ssl tar:xz xorg USE_GL= gl opengl USE_LDCONFIG= yes USE_KDE= archive bookmarks colorscheme completion config configwidgets \ coreaddons crash dbusaddons guiaddons i18n iconthemes \ itemviews jobwidgets kcmutils kio notifications notifyconfig \ phonon service solid sonnet textwidgets widgetsaddons \ windowsystem xmlgui \ doctools:build ecm:build USE_QT= base declarative positioning svg webchannel webengine \ tools:build USE_XORG= ice sm x11 xext CMAKE_ARGS= -DCMAKE_INCLUDE_PATH:STRING="${QT_INCDIR} ${LOCALBASE}/include" \ -DPRODUCTSET:STRING="DESKTOP" # Requested by upstream, to not include unfinished modules CMAKE_ON= RELEASE_BUILD # Performance increase according to README.PACKAGERS CMAKE_ARGS+= -DCMAKE_CXX_FLAGS="-DKDE_NO_DEBUG_OUTPUT" PLIST_SUB= SHLIB_VER=40 .include diff --git a/editors/calligra/distinfo b/editors/calligra/distinfo index 0162ff173a04..7516ebc44c98 100644 --- a/editors/calligra/distinfo +++ b/editors/calligra/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1757409955 -SHA256 (KDE/release-service/25.08.1/calligra-25.08.1.tar.xz) = 336448188fc2ff889efc21049183b4689e5507d587d3e8bd2c2582c2f9cfe8df -SIZE (KDE/release-service/25.08.1/calligra-25.08.1.tar.xz) = 57996828 +TIMESTAMP = 1759874693 +SHA256 (KDE/release-service/25.08.2/calligra-25.08.2.tar.xz) = df5f5a3ec23e7af98f3805b4bd8426947e00c8d75e3f4414d5da580e07700948 +SIZE (KDE/release-service/25.08.2/calligra-25.08.2.tar.xz) = 58039844 diff --git a/editors/calligra/pkg-plist b/editors/calligra/pkg-plist index a8c250ac1d23..8d17f7501a07 100644 --- a/editors/calligra/pkg-plist +++ b/editors/calligra/pkg-plist @@ -1,7572 +1,7576 @@ 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 share/calligra_shape_music/fonts/Emmentaler-14.ttf share/calligrasheets/CellToolOptionWidgets.xml share/calligrasheets/dtd/kspread.dtd share/calligrasheets/functions/bitops.xml share/calligrasheets/functions/conversion.xml share/calligrasheets/functions/database.xml share/calligrasheets/functions/datetime.xml share/calligrasheets/functions/engineering.xml share/calligrasheets/functions/financial.xml share/calligrasheets/functions/information.xml share/calligrasheets/functions/logic.xml share/calligrasheets/functions/math.xml share/calligrasheets/functions/reference.xml share/calligrasheets/functions/statistical.xml share/calligrasheets/functions/text.xml share/calligrasheets/functions/trig.xml share/calligrasheets/icons/hicolor/16x16/actions/adjustcol.png share/calligrasheets/icons/hicolor/16x16/actions/adjustrow.png share/calligrasheets/icons/hicolor/16x16/actions/black_sum.png share/calligrasheets/icons/hicolor/16x16/actions/cell_edit.png share/calligrasheets/icons/hicolor/16x16/actions/cell_layout.png share/calligrasheets/icons/hicolor/16x16/actions/delete-comment.png share/calligrasheets/icons/hicolor/16x16/actions/delete_table.png share/calligrasheets/icons/hicolor/16x16/actions/deletecell.png share/calligrasheets/icons/hicolor/16x16/actions/dissociatecell.png share/calligrasheets/icons/hicolor/16x16/actions/edit-comment.png share/calligrasheets/icons/hicolor/16x16/actions/format-align-vertical-bottom.png share/calligrasheets/icons/hicolor/16x16/actions/format-align-vertical-center.png share/calligrasheets/icons/hicolor/16x16/actions/format-align-vertical-top.png share/calligrasheets/icons/hicolor/16x16/actions/format-border-set-all.png share/calligrasheets/icons/hicolor/16x16/actions/format-border-set-bottom.png share/calligrasheets/icons/hicolor/16x16/actions/format-border-set-diagonal-bl-tr.png share/calligrasheets/icons/hicolor/16x16/actions/format-border-set-diagonal-tl-br.png share/calligrasheets/icons/hicolor/16x16/actions/format-border-set-external.png share/calligrasheets/icons/hicolor/16x16/actions/format-border-set-internal-horizontal.png share/calligrasheets/icons/hicolor/16x16/actions/format-border-set-internal-vertical.png share/calligrasheets/icons/hicolor/16x16/actions/format-border-set-internal.png share/calligrasheets/icons/hicolor/16x16/actions/format-border-set-left.png share/calligrasheets/icons/hicolor/16x16/actions/format-border-set-none.png share/calligrasheets/icons/hicolor/16x16/actions/format-border-set-right.png share/calligrasheets/icons/hicolor/16x16/actions/format-border-set-top.png share/calligrasheets/icons/hicolor/16x16/actions/format-currency.png share/calligrasheets/icons/hicolor/16x16/actions/format-number-percent.png share/calligrasheets/icons/hicolor/16x16/actions/format-precision-less.png share/calligrasheets/icons/hicolor/16x16/actions/format-precision-more.png share/calligrasheets/icons/hicolor/16x16/actions/format-text-capitalize.png share/calligrasheets/icons/hicolor/16x16/actions/format-text-direction-vertical.png share/calligrasheets/icons/hicolor/16x16/actions/hide_table_column.png share/calligrasheets/icons/hicolor/16x16/actions/hide_table_row.png share/calligrasheets/icons/hicolor/16x16/actions/insert-math-expression.png share/calligrasheets/icons/hicolor/16x16/actions/insertcell.png share/calligrasheets/icons/hicolor/16x16/actions/insertcellcopy.png share/calligrasheets/icons/hicolor/16x16/actions/mergecell-horizontal.png share/calligrasheets/icons/hicolor/16x16/actions/mergecell-vertical.png share/calligrasheets/icons/hicolor/16x16/actions/mergecell.png share/calligrasheets/icons/hicolor/16x16/actions/multirow.png share/calligrasheets/icons/hicolor/16x16/actions/removecell.png share/calligrasheets/icons/hicolor/16x16/actions/resizecol.png share/calligrasheets/icons/hicolor/16x16/actions/resizerow.png share/calligrasheets/icons/hicolor/16x16/actions/selection.png share/calligrasheets/icons/hicolor/16x16/actions/series.png share/calligrasheets/icons/hicolor/16x16/actions/show_table_column.png share/calligrasheets/icons/hicolor/16x16/actions/show_table_row.png share/calligrasheets/icons/hicolor/16x16/actions/special_paste.png share/calligrasheets/icons/hicolor/22x22/actions/black_sum.png share/calligrasheets/icons/hicolor/22x22/actions/format-align-vertical-bottom.png share/calligrasheets/icons/hicolor/22x22/actions/format-align-vertical-center.png share/calligrasheets/icons/hicolor/22x22/actions/format-align-vertical-top.png share/calligrasheets/icons/hicolor/22x22/actions/format-border-set-all.png share/calligrasheets/icons/hicolor/22x22/actions/format-border-set-bottom.png share/calligrasheets/icons/hicolor/22x22/actions/format-border-set-diagonal-bl-tr.png share/calligrasheets/icons/hicolor/22x22/actions/format-border-set-diagonal-tl-br.png share/calligrasheets/icons/hicolor/22x22/actions/format-border-set-external.png share/calligrasheets/icons/hicolor/22x22/actions/format-border-set-internal-horizontal.png share/calligrasheets/icons/hicolor/22x22/actions/format-border-set-internal-vertical.png share/calligrasheets/icons/hicolor/22x22/actions/format-border-set-internal.png share/calligrasheets/icons/hicolor/22x22/actions/format-border-set-left.png share/calligrasheets/icons/hicolor/22x22/actions/format-border-set-none.png share/calligrasheets/icons/hicolor/22x22/actions/format-border-set-right.png share/calligrasheets/icons/hicolor/22x22/actions/format-border-set-top.png share/calligrasheets/icons/hicolor/22x22/actions/format-currency.png share/calligrasheets/icons/hicolor/22x22/actions/format-number-percent.png share/calligrasheets/icons/hicolor/22x22/actions/format-precision-less.png share/calligrasheets/icons/hicolor/22x22/actions/format-precision-more.png share/calligrasheets/icons/hicolor/22x22/actions/insert-math-expression.png share/calligrasheets/icons/hicolor/22x22/actions/mergecell-horizontal.png share/calligrasheets/icons/hicolor/22x22/actions/mergecell-vertical.png share/calligrasheets/icons/hicolor/22x22/actions/mergecell.png share/calligrasheets/icons/hicolor/22x22/actions/multirow.png share/calligrasheets/icons/hicolor/32x32/actions/format-border-set-all.png share/calligrasheets/icons/hicolor/32x32/actions/format-border-set-bottom.png share/calligrasheets/icons/hicolor/32x32/actions/format-border-set-diagonal-bl-tr.png share/calligrasheets/icons/hicolor/32x32/actions/format-border-set-diagonal-tl-br.png share/calligrasheets/icons/hicolor/32x32/actions/format-border-set-external.png share/calligrasheets/icons/hicolor/32x32/actions/format-border-set-internal-horizontal.png share/calligrasheets/icons/hicolor/32x32/actions/format-border-set-internal-vertical.png share/calligrasheets/icons/hicolor/32x32/actions/format-border-set-internal.png share/calligrasheets/icons/hicolor/32x32/actions/format-border-set-left.png share/calligrasheets/icons/hicolor/32x32/actions/format-border-set-none.png share/calligrasheets/icons/hicolor/32x32/actions/format-border-set-right.png share/calligrasheets/icons/hicolor/32x32/actions/format-border-set-top.png share/calligrasheets/icons/hicolor/32x32/actions/format-number-percent.png share/calligrasheets/icons/hicolor/32x32/actions/format-precision-less.png share/calligrasheets/icons/hicolor/32x32/actions/format-precision-more.png share/calligrasheets/icons/hicolor/32x32/actions/insert-math-expression.png share/calligrasheets/icons/hicolor/48x48/actions/template_balancesheet.png share/calligrasheets/icons/hicolor/48x48/actions/template_bmi.png share/calligrasheets/icons/hicolor/48x48/actions/template_creditcardtracker.png share/calligrasheets/icons/hicolor/48x48/actions/template_expensereport.png share/calligrasheets/icons/hicolor/48x48/actions/template_invoice.png share/calligrasheets/icons/hicolor/48x48/actions/template_menuplan.png share/calligrasheets/icons/hicolor/48x48/actions/template_packingslip.png share/calligrasheets/icons/hicolor/48x48/actions/template_pricequotation.png share/calligrasheets/icons/hicolor/48x48/actions/template_studentidcard.png share/calligrasheets/icons/hicolor/48x48/actions/template_vacationchecklist.png share/calligrasheets/icons/hicolor/48x48/actions/template_worksheet.png share/calligrasheets/icons/hicolor/scalable/actions/template_balancesheet.svgz share/calligrasheets/icons/hicolor/scalable/actions/template_bmi.svgz share/calligrasheets/icons/hicolor/scalable/actions/template_creditcardtracker.svgz share/calligrasheets/icons/hicolor/scalable/actions/template_expensereport.svgz share/calligrasheets/icons/hicolor/scalable/actions/template_invoice.svgz share/calligrasheets/icons/hicolor/scalable/actions/template_menuplan.svgz share/calligrasheets/icons/hicolor/scalable/actions/template_packingslip.svgz share/calligrasheets/icons/hicolor/scalable/actions/template_pricequotation.svgz share/calligrasheets/icons/hicolor/scalable/actions/template_studentidcard.svgz share/calligrasheets/icons/hicolor/scalable/actions/template_vacationchecklist.svgz share/calligrasheets/icons/hicolor/scalable/actions/template_worksheet.svgz share/calligrasheets/sheetstyles/standard1.ksts share/calligrasheets/sheetstyles/standard1.png share/calligrasheets/sheetstyles/standard1.xml share/calligrasheets/sheetstyles/standard2.ksts share/calligrasheets/sheetstyles/standard2.png share/calligrasheets/sheetstyles/standard2.xml share/calligrasheets/templates/Business/.directory share/calligrasheets/templates/Business/.source/BalanceSheet.kst share/calligrasheets/templates/Business/.source/ExpenseReport.kst share/calligrasheets/templates/Business/.source/Invoice.kst share/calligrasheets/templates/Business/.source/PackingSlip.kst share/calligrasheets/templates/Business/.source/PriceQuotation.kst share/calligrasheets/templates/Business/BalanceSheet.desktop share/calligrasheets/templates/Business/ExpenseReport.desktop share/calligrasheets/templates/Business/Invoice.desktop share/calligrasheets/templates/Business/PackingSlip.desktop share/calligrasheets/templates/Business/PriceQuotation.desktop share/calligrasheets/templates/General/.directory share/calligrasheets/templates/General/.source/StudentIDCard.kst share/calligrasheets/templates/General/.source/Worksheet.kst share/calligrasheets/templates/General/StudentIDCard.desktop share/calligrasheets/templates/General/Worksheet.desktop share/calligrasheets/templates/HomeFamily/.directory share/calligrasheets/templates/HomeFamily/.source/BMI.kst share/calligrasheets/templates/HomeFamily/.source/CreditCardTracker.kst share/calligrasheets/templates/HomeFamily/.source/MenuPlan.kst share/calligrasheets/templates/HomeFamily/.source/VacationChecklist.kst share/calligrasheets/templates/HomeFamily/BMI.desktop share/calligrasheets/templates/HomeFamily/CreditCardTracker.desktop share/calligrasheets/templates/HomeFamily/MenuPlan.desktop share/calligrasheets/templates/HomeFamily/VacationChecklist.desktop share/calligrasheets/viewplugins/solver.rc share/calligrastage/animations/animations.xml share/calligrastage/cursors/pen.png share/calligrastage/icons/hicolor/16x16/actions/highlight-pointer-spot.png share/calligrastage/icons/hicolor/16x16/actions/pause-to-black-screen.png share/calligrastage/icons/hicolor/32x32/actions/after_previous.png share/calligrastage/icons/hicolor/32x32/actions/edit_animation.png share/calligrastage/icons/hicolor/32x32/actions/onclick.png share/calligrastage/icons/hicolor/32x32/actions/unrecognized_animation.png share/calligrastage/icons/hicolor/32x32/actions/with_previous.png share/calligrastage/icons/hicolor/48x48/actions/template_emptylandscape.png share/calligrastage/icons/hicolor/64x64/actions/appear_animation.png share/calligrastage/icons/hicolor/64x64/actions/blue_orange_vector.png share/calligrastage/icons/hicolor/64x64/actions/bounce_animation.png share/calligrastage/icons/hicolor/64x64/actions/burning_desire.png share/calligrastage/icons/hicolor/64x64/actions/business.png share/calligrastage/icons/hicolor/64x64/actions/collapse_animation.png share/calligrastage/icons/hicolor/64x64/actions/crawl_out_animation.png share/calligrastage/icons/hicolor/64x64/actions/curious_penguin.png share/calligrastage/icons/hicolor/64x64/actions/custom_animations.png share/calligrastage/icons/hicolor/64x64/actions/disappear_animation.png share/calligrastage/icons/hicolor/64x64/actions/emphasis_animations.png share/calligrastage/icons/hicolor/64x64/actions/entrance_animations.png share/calligrastage/icons/hicolor/64x64/actions/exit_animations.png share/calligrastage/icons/hicolor/64x64/actions/falling_in_animation.png share/calligrastage/icons/hicolor/64x64/actions/flash_once_animation.png share/calligrastage/icons/hicolor/64x64/actions/flood_light.png share/calligrastage/icons/hicolor/64x64/actions/fly_in_animation.png share/calligrastage/icons/hicolor/64x64/actions/fly_in_slow_animation.png share/calligrastage/icons/hicolor/64x64/actions/fly_out_animation.png share/calligrastage/icons/hicolor/64x64/actions/horizontal_animations.png share/calligrastage/icons/hicolor/64x64/actions/in_animations.png share/calligrastage/icons/hicolor/64x64/actions/kde_events.png share/calligrastage/icons/hicolor/64x64/actions/motion_path_animations.png share/calligrastage/icons/hicolor/64x64/actions/movie_credits_animation.png share/calligrastage/icons/hicolor/64x64/actions/out_animations.png share/calligrastage/icons/hicolor/64x64/actions/rounded_square.png share/calligrastage/icons/hicolor/64x64/actions/simple_waves.png share/calligrastage/icons/hicolor/64x64/actions/skyline_monotone.png share/calligrastage/icons/hicolor/64x64/actions/skyline_monotone_wide.png share/calligrastage/icons/hicolor/64x64/actions/skyline_morning.png share/calligrastage/icons/hicolor/64x64/actions/skyline_morning_wide.png share/calligrastage/icons/hicolor/64x64/actions/skyline_night.png share/calligrastage/icons/hicolor/64x64/actions/skyline_night_wide.png share/calligrastage/icons/hicolor/64x64/actions/spiral_in_animation.png share/calligrastage/icons/hicolor/64x64/actions/spiral_out_animation.png share/calligrastage/icons/hicolor/64x64/actions/strange_far_hills.png share/calligrastage/icons/hicolor/64x64/actions/stretchy_animation.png share/calligrastage/icons/hicolor/64x64/actions/swish_animation.png share/calligrastage/icons/hicolor/64x64/actions/swivel_animation.png share/calligrastage/icons/hicolor/64x64/actions/thread_animation.png share/calligrastage/icons/hicolor/64x64/actions/vertical_animations.png share/calligrastage/icons/hicolor/64x64/actions/zoom_animation.png share/calligrastage/icons/hicolor/scalable/actions/cohere-blue.svgz share/calligrastage/icons/hicolor/scalable/actions/cohere-gold.svgz share/calligrastage/icons/hicolor/scalable/actions/cohere-magenta.svgz share/calligrastage/icons/hicolor/scalable/actions/cohere-red.svgz share/calligrastage/icons/hicolor/scalable/actions/template_emptylandscape.svgz share/calligrastage/pics/layout-elements.svg share/calligrastage/styles/defaultstyles.xml share/calligrastage/templates/Screen/.directory share/calligrastage/templates/Screen/.source/emptyLandscape.otp share/calligrastage/templates/Screen/.source/emptyLandscapeWide.otp share/calligrastage/templates/Screen/emptyLandscape.desktop share/calligrastage/templates/Screen/emptyLandscapeWide.desktop share/calligrastage/templates/exportHTML/slides.html share/calligrastage/templates/exportHTML/templates/stage.zip share/calligrastage/templates/exportHTML/toc.html share/calligrastage/templates/odf/.directory share/calligrastage/templates/odf/.source/blue_orange_vector.otp share/calligrastage/templates/odf/.source/burning_desire.otp share/calligrastage/templates/odf/.source/business.otp share/calligrastage/templates/odf/.source/cohere-blue.otp share/calligrastage/templates/odf/.source/cohere-gold.otp share/calligrastage/templates/odf/.source/cohere-magenta.otp share/calligrastage/templates/odf/.source/cohere-red.otp share/calligrastage/templates/odf/.source/curious_penguin.otp share/calligrastage/templates/odf/.source/flood_light.otp share/calligrastage/templates/odf/.source/kde_events.otp share/calligrastage/templates/odf/.source/rounded_square.otp share/calligrastage/templates/odf/.source/simple_waves.otp share/calligrastage/templates/odf/.source/skyline_monotone.otp share/calligrastage/templates/odf/.source/skyline_monotone_wide.otp share/calligrastage/templates/odf/.source/skyline_morning.otp share/calligrastage/templates/odf/.source/skyline_morning_wide.otp share/calligrastage/templates/odf/.source/skyline_night.otp share/calligrastage/templates/odf/.source/skyline_night_wide.otp share/calligrastage/templates/odf/.source/strange_far_hills.otp share/calligrastage/templates/odf/.thumbnail/blue_orange_vector.png share/calligrastage/templates/odf/.thumbnail/burning_desire.png share/calligrastage/templates/odf/.thumbnail/business.png share/calligrastage/templates/odf/.thumbnail/cohere-blue.png share/calligrastage/templates/odf/.thumbnail/cohere-gold.png share/calligrastage/templates/odf/.thumbnail/cohere-magenta.png share/calligrastage/templates/odf/.thumbnail/cohere-red.png share/calligrastage/templates/odf/.thumbnail/curious_penguin.png share/calligrastage/templates/odf/.thumbnail/flood_light.png share/calligrastage/templates/odf/.thumbnail/kde_events.png share/calligrastage/templates/odf/.thumbnail/rounded_square.png share/calligrastage/templates/odf/.thumbnail/simple_waves.png share/calligrastage/templates/odf/.thumbnail/skyline_monotone.png share/calligrastage/templates/odf/.thumbnail/skyline_monotone_wide.png share/calligrastage/templates/odf/.thumbnail/skyline_morning.png share/calligrastage/templates/odf/.thumbnail/skyline_morning_wide.png share/calligrastage/templates/odf/.thumbnail/skyline_night.png share/calligrastage/templates/odf/.thumbnail/skyline_night_wide.png share/calligrastage/templates/odf/.thumbnail/strange_far_hills.png share/calligrastage/templates/odf/blue_orange_vector.desktop share/calligrastage/templates/odf/burning_desire.desktop share/calligrastage/templates/odf/business.desktop share/calligrastage/templates/odf/cohere-blue.desktop share/calligrastage/templates/odf/cohere-gold.desktop share/calligrastage/templates/odf/cohere-magenta.desktop share/calligrastage/templates/odf/cohere-red.desktop share/calligrastage/templates/odf/curious_penguin.desktop share/calligrastage/templates/odf/flood_light.desktop share/calligrastage/templates/odf/kde_events.desktop share/calligrastage/templates/odf/rounded_square.desktop share/calligrastage/templates/odf/simple_waves.desktop share/calligrastage/templates/odf/skyline_monotone.desktop share/calligrastage/templates/odf/skyline_monotone_wide.desktop share/calligrastage/templates/odf/skyline_morning.desktop share/calligrastage/templates/odf/skyline_morning_wide.desktop share/calligrastage/templates/odf/skyline_night.desktop share/calligrastage/templates/odf/skyline_night_wide.desktop share/calligrastage/templates/odf/strange_far_hills.desktop share/calligrawords/icons/hicolor/128x128/actions/template_a4.png share/calligrawords/icons/hicolor/128x128/actions/template_colorful.png share/calligrawords/icons/hicolor/128x128/actions/template_fax.png share/calligrawords/icons/hicolor/128x128/actions/template_letter.png share/calligrawords/icons/hicolor/22x22/actions/tool_pagelayout.png share/calligrawords/icons/hicolor/48x48/actions/template_a4.png share/calligrawords/icons/hicolor/48x48/actions/template_colorful.png share/calligrawords/icons/hicolor/48x48/actions/template_fax.png share/calligrawords/icons/hicolor/48x48/actions/template_letter.png share/calligrawords/icons/hicolor/48x48/actions/template_plaintext.png share/calligrawords/icons/hicolor/scalable/actions/template_a4.svgz share/calligrawords/icons/hicolor/scalable/actions/template_fax.svgz share/calligrawords/icons/hicolor/scalable/actions/template_letter.svgz share/calligrawords/styles/defaultstyles.xml share/calligrawords/templates/Normal/.directory share/calligrawords/templates/Normal/.source/A4.odt share/calligrawords/templates/Normal/.source/ColorfulLetter.odt share/calligrawords/templates/Normal/.source/FaxLetter.odt share/calligrawords/templates/Normal/.source/ProfessionalLetter.odt share/calligrawords/templates/Normal/.thumbnail/a4.png share/calligrawords/templates/Normal/.thumbnail/colorful.png share/calligrawords/templates/Normal/.thumbnail/fax.png share/calligrawords/templates/Normal/.thumbnail/professional.png share/calligrawords/templates/Normal/A4.desktop share/calligrawords/templates/Normal/ColorfulLetter.desktop share/calligrawords/templates/Normal/FaxLetter.desktop share/calligrawords/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-opener.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_threed.mo +share/locale/ar/LC_MESSAGES/calligra_shape_vector.mo share/locale/ar/LC_MESSAGES/calligra_shape_video.mo +share/locale/ar/LC_MESSAGES/calligra_shape_webshape.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 d8af661f69d1..1194325ca788 100644 --- a/editors/ghostwriter/distinfo +++ b/editors/ghostwriter/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1757409957 -SHA256 (KDE/release-service/25.08.1/ghostwriter-25.08.1.tar.xz) = b2b27ef5d02e174985d54a5da6a6dd86ecbf2cdf74ff4de6a0c0e679d3008c42 -SIZE (KDE/release-service/25.08.1/ghostwriter-25.08.1.tar.xz) = 2727472 +TIMESTAMP = 1759874695 +SHA256 (KDE/release-service/25.08.2/ghostwriter-25.08.2.tar.xz) = 5f0d1a51e07ca5865b335239aa20de575e4cd57a4932966d5a96d8dff3dbd676 +SIZE (KDE/release-service/25.08.2/ghostwriter-25.08.2.tar.xz) = 2733396 diff --git a/editors/ghostwriter/pkg-plist b/editors/ghostwriter/pkg-plist index e23a7b4c4acd..7886d91ab76e 100644 --- a/editors/ghostwriter/pkg-plist +++ b/editors/ghostwriter/pkg-plist @@ -1,54 +1,55 @@ bin/ghostwriter share/applications/org.kde.ghostwriter.desktop share/icons/hicolor/128x128/apps/ghostwriter.png share/icons/hicolor/16x16/apps/ghostwriter.png share/icons/hicolor/22x22/apps/ghostwriter.png share/icons/hicolor/256x256/apps/ghostwriter.png share/icons/hicolor/32x32/apps/ghostwriter.png share/icons/hicolor/64x64/apps/ghostwriter.png share/icons/hicolor/scalable/apps/ghostwriter.svg +share/locale/ar/LC_MESSAGES/ghostwriter_qt.qm share/locale/ca/LC_MESSAGES/ghostwriter_qt.qm share/locale/ca@valencia/LC_MESSAGES/ghostwriter_qt.qm share/locale/cs/LC_MESSAGES/ghostwriter_qt.qm share/locale/de/LC_MESSAGES/ghostwriter_qt.qm share/locale/en/LC_MESSAGES/ghostwriter_qt.qm share/locale/en_GB/LC_MESSAGES/ghostwriter_qt.qm share/locale/eo/LC_MESSAGES/ghostwriter_qt.qm share/locale/es/LC_MESSAGES/ghostwriter_qt.qm share/locale/eu/LC_MESSAGES/ghostwriter_qt.qm share/locale/fi/LC_MESSAGES/ghostwriter_qt.qm share/locale/fr/LC_MESSAGES/ghostwriter_qt.qm share/locale/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 625529b3f151..1b44405b6a7b 100644 --- a/editors/kate/distinfo +++ b/editors/kate/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1757409959 -SHA256 (KDE/release-service/25.08.1/kate-25.08.1.tar.xz) = 6b5f9d240da5a7668e2643e4153ab63bf7842ec0605d5d58b3f5aa3e5f2be8e1 -SIZE (KDE/release-service/25.08.1/kate-25.08.1.tar.xz) = 8416892 +TIMESTAMP = 1760127562 +SHA256 (KDE/release-service/25.08.2/kate-25.08.2.tar.xz) = b5eefa519690983ef92be8cc30eaface1fc8c9f225d9d851a5c1819a52634770 +SIZE (KDE/release-service/25.08.2/kate-25.08.2.tar.xz) = 8417408 diff --git a/games/blinken/distinfo b/games/blinken/distinfo index 7e9c9ff36d35..eec15e1a00af 100644 --- a/games/blinken/distinfo +++ b/games/blinken/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1757409962 -SHA256 (KDE/release-service/25.08.1/blinken-25.08.1.tar.xz) = df9268b8a3c19e571c49a16d2a0df9af834467861461d33894f0a777533e6c4b -SIZE (KDE/release-service/25.08.1/blinken-25.08.1.tar.xz) = 2715220 +TIMESTAMP = 1759874700 +SHA256 (KDE/release-service/25.08.2/blinken-25.08.2.tar.xz) = 02c7ab9a5212857f3f28ea11e013ecee47fabd86d0de8f720a2f074ea373abcc +SIZE (KDE/release-service/25.08.2/blinken-25.08.2.tar.xz) = 2715108 diff --git a/games/bomber/distinfo b/games/bomber/distinfo index e2a4f8b39001..547580bc76c9 100644 --- a/games/bomber/distinfo +++ b/games/bomber/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1757409964 -SHA256 (KDE/release-service/25.08.1/bomber-25.08.1.tar.xz) = c03c103050f75ae9acdd4e56b9580fd35c71b714c9a6d90124d7eb3938c5cbec -SIZE (KDE/release-service/25.08.1/bomber-25.08.1.tar.xz) = 841184 +TIMESTAMP = 1759874703 +SHA256 (KDE/release-service/25.08.2/bomber-25.08.2.tar.xz) = 54e7455e4e27b5ef42b5c14bd47d239af6463fbcfa793ae9ed59564fac6a89b6 +SIZE (KDE/release-service/25.08.2/bomber-25.08.2.tar.xz) = 841260 diff --git a/games/bovo/distinfo b/games/bovo/distinfo index f2c463a43dab..4f931ee31fe5 100644 --- a/games/bovo/distinfo +++ b/games/bovo/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1757409966 -SHA256 (KDE/release-service/25.08.1/bovo-25.08.1.tar.xz) = bf11ecff6f754a482042ce5f2071c237f3a292f62fd200ceebcf6141f43e66dd -SIZE (KDE/release-service/25.08.1/bovo-25.08.1.tar.xz) = 221580 +TIMESTAMP = 1759874705 +SHA256 (KDE/release-service/25.08.2/bovo-25.08.2.tar.xz) = 74ea8c7191c3a99b6490ec5098cab3ad516bc44ee1e7debbdf37cae1aeeddbfb +SIZE (KDE/release-service/25.08.2/bovo-25.08.2.tar.xz) = 221592 diff --git a/games/granatier/distinfo b/games/granatier/distinfo index 0c0c52f84d18..26156eca6864 100644 --- a/games/granatier/distinfo +++ b/games/granatier/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1757409969 -SHA256 (KDE/release-service/25.08.1/granatier-25.08.1.tar.xz) = c63b42ef9a3e9ecc2427d0af6e5eb4327943aeeb299f303967b5b1dd09066786 -SIZE (KDE/release-service/25.08.1/granatier-25.08.1.tar.xz) = 2017068 +TIMESTAMP = 1759874707 +SHA256 (KDE/release-service/25.08.2/granatier-25.08.2.tar.xz) = 52337f4f711d0e4a236cac8bda78c1e095234c465f41d40bf92685f5d31f9784 +SIZE (KDE/release-service/25.08.2/granatier-25.08.2.tar.xz) = 2017116 diff --git a/games/kajongg/distinfo b/games/kajongg/distinfo index 7b26b71961d4..2dbc13bc1992 100644 --- a/games/kajongg/distinfo +++ b/games/kajongg/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1757409971 -SHA256 (KDE/release-service/25.08.1/kajongg-25.08.1.tar.xz) = 273020997ee5d4fa97d05b70fcdf31a68a4a3be178fc11ae838fdc044e79f6e9 -SIZE (KDE/release-service/25.08.1/kajongg-25.08.1.tar.xz) = 4637756 +TIMESTAMP = 1759874710 +SHA256 (KDE/release-service/25.08.2/kajongg-25.08.2.tar.xz) = bd837355f425e520dc493eb8bbc6290b5df838840f882b8ba2ef5d1c7b9c1c14 +SIZE (KDE/release-service/25.08.2/kajongg-25.08.2.tar.xz) = 4637812 diff --git a/games/kanagram/distinfo b/games/kanagram/distinfo index 144212850740..6f29b185efb3 100644 --- a/games/kanagram/distinfo +++ b/games/kanagram/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1757409973 -SHA256 (KDE/release-service/25.08.1/kanagram-25.08.1.tar.xz) = 439778c214366ea057fcca6379d070016a3120c7a81f685083fafaebd0fcae07 -SIZE (KDE/release-service/25.08.1/kanagram-25.08.1.tar.xz) = 7786680 +TIMESTAMP = 1759874712 +SHA256 (KDE/release-service/25.08.2/kanagram-25.08.2.tar.xz) = e7bbe6015f360cf57347fa526806b941ec03437018183d448b3464fbedf86a97 +SIZE (KDE/release-service/25.08.2/kanagram-25.08.2.tar.xz) = 7786660 diff --git a/games/kapman/distinfo b/games/kapman/distinfo index 54a2221736df..b2a92a662a53 100644 --- a/games/kapman/distinfo +++ b/games/kapman/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1757409976 -SHA256 (KDE/release-service/25.08.1/kapman-25.08.1.tar.xz) = 823d13689d9ec3ff5f992ff625d1fc6eb4812314830181a1703ed4591184755f -SIZE (KDE/release-service/25.08.1/kapman-25.08.1.tar.xz) = 2150108 +TIMESTAMP = 1759874715 +SHA256 (KDE/release-service/25.08.2/kapman-25.08.2.tar.xz) = bb3f4899ce46d4049caf62abd1a10e425ef156c74b1677158458e51c59b3d294 +SIZE (KDE/release-service/25.08.2/kapman-25.08.2.tar.xz) = 2149752 diff --git a/games/katomic/distinfo b/games/katomic/distinfo index 824aa68d1736..b23ce04d7427 100644 --- a/games/katomic/distinfo +++ b/games/katomic/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1757409978 -SHA256 (KDE/release-service/25.08.1/katomic-25.08.1.tar.xz) = 425231cb5cb9047a7d7ec385b7158844914a37e0c00822bcba6e35784f17928a -SIZE (KDE/release-service/25.08.1/katomic-25.08.1.tar.xz) = 1450080 +TIMESTAMP = 1759874717 +SHA256 (KDE/release-service/25.08.2/katomic-25.08.2.tar.xz) = 25ba2b49368cfe9d2d41396f07d037334839eeb6502e71e2fa8f9ba6577d3d6b +SIZE (KDE/release-service/25.08.2/katomic-25.08.2.tar.xz) = 1449064 diff --git a/games/kblackbox/distinfo b/games/kblackbox/distinfo index 0f970f034771..09a1fb5a3274 100644 --- a/games/kblackbox/distinfo +++ b/games/kblackbox/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1757409980 -SHA256 (KDE/release-service/25.08.1/kblackbox-25.08.1.tar.xz) = 586647919efc02402fec9ab7746a0a6433edbdc468bff89878d44c4607e69728 -SIZE (KDE/release-service/25.08.1/kblackbox-25.08.1.tar.xz) = 555972 +TIMESTAMP = 1759874720 +SHA256 (KDE/release-service/25.08.2/kblackbox-25.08.2.tar.xz) = 7e1f864fa8332693a51375a20efc57d4d93de2b44b863fef8b60291428593624 +SIZE (KDE/release-service/25.08.2/kblackbox-25.08.2.tar.xz) = 556020 diff --git a/games/kblocks/distinfo b/games/kblocks/distinfo index fdf5dcd4f10c..ed3448804515 100644 --- a/games/kblocks/distinfo +++ b/games/kblocks/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1757409983 -SHA256 (KDE/release-service/25.08.1/kblocks-25.08.1.tar.xz) = 91e4d09a3f7af9d91e9974a416790200efc519f8da1347075e1d4a5cce8d4cff -SIZE (KDE/release-service/25.08.1/kblocks-25.08.1.tar.xz) = 2104104 +TIMESTAMP = 1759874722 +SHA256 (KDE/release-service/25.08.2/kblocks-25.08.2.tar.xz) = 546c23a4a9f96fb3cb4c68c5bd9968b2e0ddc17dfbbd18de1c33ef33660e9efd +SIZE (KDE/release-service/25.08.2/kblocks-25.08.2.tar.xz) = 2104348 diff --git a/games/kbounce/distinfo b/games/kbounce/distinfo index a00c62a372ae..452cf021e326 100644 --- a/games/kbounce/distinfo +++ b/games/kbounce/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1757409985 -SHA256 (KDE/release-service/25.08.1/kbounce-25.08.1.tar.xz) = c87ce4bae5e4742620e8480c4466da31a18d38fdc9865eb4dc13c28f03d499fa -SIZE (KDE/release-service/25.08.1/kbounce-25.08.1.tar.xz) = 3324056 +TIMESTAMP = 1759874725 +SHA256 (KDE/release-service/25.08.2/kbounce-25.08.2.tar.xz) = e0f55a72e9f90bfb37caaea7d3c513c5b8ff53f739d4fe03fff5f5ec0b3aadb8 +SIZE (KDE/release-service/25.08.2/kbounce-25.08.2.tar.xz) = 3324312 diff --git a/games/kbreakout/distinfo b/games/kbreakout/distinfo index b7fc0cfbc102..da75f7fa4783 100644 --- a/games/kbreakout/distinfo +++ b/games/kbreakout/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1757409987 -SHA256 (KDE/release-service/25.08.1/kbreakout-25.08.1.tar.xz) = f93f0e0e4fb8d7bc3a5108c193beaf78366be450422c94e5dd427f5f8f9ad2d5 -SIZE (KDE/release-service/25.08.1/kbreakout-25.08.1.tar.xz) = 2558864 +TIMESTAMP = 1759874727 +SHA256 (KDE/release-service/25.08.2/kbreakout-25.08.2.tar.xz) = 47c7523529dae26376be2ccf98eb5e316ee856aac52e36a6bab51ea5fd3eee00 +SIZE (KDE/release-service/25.08.2/kbreakout-25.08.2.tar.xz) = 2558820 diff --git a/games/kdiamond/distinfo b/games/kdiamond/distinfo index 8d5f1d460048..0831608638c8 100644 --- a/games/kdiamond/distinfo +++ b/games/kdiamond/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1757409990 -SHA256 (KDE/release-service/25.08.1/kdiamond-25.08.1.tar.xz) = 27753062d8808e4697a27f4478edb7efe49d16e5fecb32c971ab9f28937485d6 -SIZE (KDE/release-service/25.08.1/kdiamond-25.08.1.tar.xz) = 4674476 +TIMESTAMP = 1759874729 +SHA256 (KDE/release-service/25.08.2/kdiamond-25.08.2.tar.xz) = 669a97c85b38dfee209aedb35843f5a220f0f333d1648a75e669bb8cbb1beded +SIZE (KDE/release-service/25.08.2/kdiamond-25.08.2.tar.xz) = 4675144 diff --git a/games/kfourinline/distinfo b/games/kfourinline/distinfo index 3db59c60eb89..14d5912d6eca 100644 --- a/games/kfourinline/distinfo +++ b/games/kfourinline/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1757409992 -SHA256 (KDE/release-service/25.08.1/kfourinline-25.08.1.tar.xz) = 1a1d709012533f3eb74b7cd54821c5227d05484b1f0ef8cb6a0a48c257d20241 -SIZE (KDE/release-service/25.08.1/kfourinline-25.08.1.tar.xz) = 749000 +TIMESTAMP = 1759874732 +SHA256 (KDE/release-service/25.08.2/kfourinline-25.08.2.tar.xz) = ec8eb0609a2cc2a4bb14acf83234dd36c46060e1e88b4e15b5f567afff9522cb +SIZE (KDE/release-service/25.08.2/kfourinline-25.08.2.tar.xz) = 748992 diff --git a/games/kgoldrunner/distinfo b/games/kgoldrunner/distinfo index 43bb059d7876..761e4d36e2c6 100644 --- a/games/kgoldrunner/distinfo +++ b/games/kgoldrunner/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1757409994 -SHA256 (KDE/release-service/25.08.1/kgoldrunner-25.08.1.tar.xz) = 6207377fecbe302435c5f9426739e488c256b73a5f7be458be9a85461a43fd93 -SIZE (KDE/release-service/25.08.1/kgoldrunner-25.08.1.tar.xz) = 4465352 +TIMESTAMP = 1759874734 +SHA256 (KDE/release-service/25.08.2/kgoldrunner-25.08.2.tar.xz) = 78fb87c61847797efd49f2e1d10784bbe7b3ffe4c1894e865d7c218d070b1116 +SIZE (KDE/release-service/25.08.2/kgoldrunner-25.08.2.tar.xz) = 4464440 diff --git a/games/khangman/distinfo b/games/khangman/distinfo index 9f3dee7912b7..09daf1fae2fc 100644 --- a/games/khangman/distinfo +++ b/games/khangman/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1757409997 -SHA256 (KDE/release-service/25.08.1/khangman-25.08.1.tar.xz) = dc47b788044366f1e7731caeac9b61c310db6ee7f63b737d3dfac6c612d5e543 -SIZE (KDE/release-service/25.08.1/khangman-25.08.1.tar.xz) = 7032236 +TIMESTAMP = 1759874737 +SHA256 (KDE/release-service/25.08.2/khangman-25.08.2.tar.xz) = ac8a1d933487c9675c690a79356dbf0575c88d34a65b36f2e6fcc6aa020c17fd +SIZE (KDE/release-service/25.08.2/khangman-25.08.2.tar.xz) = 7026832 diff --git a/games/kigo/distinfo b/games/kigo/distinfo index 6cc4f75f4eac..c5297cd8a74f 100644 --- a/games/kigo/distinfo +++ b/games/kigo/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1757409999 -SHA256 (KDE/release-service/25.08.1/kigo-25.08.1.tar.xz) = 999726b3d79393df6310feed0803f438a02f0faa39a909f5e558e0b8531054fd -SIZE (KDE/release-service/25.08.1/kigo-25.08.1.tar.xz) = 4837940 +TIMESTAMP = 1759874739 +SHA256 (KDE/release-service/25.08.2/kigo-25.08.2.tar.xz) = 972bf9e57b1822d676626165fbf13ba418627527bcd95c60b5bac8e4cff7269f +SIZE (KDE/release-service/25.08.2/kigo-25.08.2.tar.xz) = 4837832 diff --git a/games/killbots/distinfo b/games/killbots/distinfo index ef8e53dc0af8..340ba3e0fdbc 100644 --- a/games/killbots/distinfo +++ b/games/killbots/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1757410001 -SHA256 (KDE/release-service/25.08.1/killbots-25.08.1.tar.xz) = 68ee3abc0ff71a1cf21c545d6cf1f15c4f56b36d5e3671f956db15e84742379f -SIZE (KDE/release-service/25.08.1/killbots-25.08.1.tar.xz) = 1177444 +TIMESTAMP = 1759874742 +SHA256 (KDE/release-service/25.08.2/killbots-25.08.2.tar.xz) = 3e1759715d05dc5cf73a727ae3a6c47aa3d9d112347cc7a15e4e597a51e0ccf0 +SIZE (KDE/release-service/25.08.2/killbots-25.08.2.tar.xz) = 1177352 diff --git a/games/kiriki/distinfo b/games/kiriki/distinfo index 2d3679a550f7..7214ff0c9ee3 100644 --- a/games/kiriki/distinfo +++ b/games/kiriki/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1757410004 -SHA256 (KDE/release-service/25.08.1/kiriki-25.08.1.tar.xz) = 3aa01c2c1f138c85ef3303853399ac0505c3136ceb5b3deecda1a2a842c49145 -SIZE (KDE/release-service/25.08.1/kiriki-25.08.1.tar.xz) = 376228 +TIMESTAMP = 1759874744 +SHA256 (KDE/release-service/25.08.2/kiriki-25.08.2.tar.xz) = fc5ee9508b52faec0bf1dcdb46170c0b2efe7ab3f39b7bdf6374fb5ce4084b46 +SIZE (KDE/release-service/25.08.2/kiriki-25.08.2.tar.xz) = 376220 diff --git a/games/kjumpingcube/distinfo b/games/kjumpingcube/distinfo index ad30d59a2823..73af8609dd4d 100644 --- a/games/kjumpingcube/distinfo +++ b/games/kjumpingcube/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1757410006 -SHA256 (KDE/release-service/25.08.1/kjumpingcube-25.08.1.tar.xz) = 27d390a6952f9eb24fbcaae6a23ad9a33cba59e2e64c52f9afecdf2b5f4b238d -SIZE (KDE/release-service/25.08.1/kjumpingcube-25.08.1.tar.xz) = 351296 +TIMESTAMP = 1759874747 +SHA256 (KDE/release-service/25.08.2/kjumpingcube-25.08.2.tar.xz) = 91ffb68723a9076049db2cae9db1c1301c1247f04c9df70f3ddb4d7a8508d5a5 +SIZE (KDE/release-service/25.08.2/kjumpingcube-25.08.2.tar.xz) = 351296 diff --git a/games/klickety/distinfo b/games/klickety/distinfo index b946aedcfee4..b63fc617f272 100644 --- a/games/klickety/distinfo +++ b/games/klickety/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1757410008 -SHA256 (KDE/release-service/25.08.1/klickety-25.08.1.tar.xz) = 80f257ab96fe95847ff463effe10d872a5bd5c96d54a8a0a09e357740ebcca43 -SIZE (KDE/release-service/25.08.1/klickety-25.08.1.tar.xz) = 1390108 +TIMESTAMP = 1759874749 +SHA256 (KDE/release-service/25.08.2/klickety-25.08.2.tar.xz) = 26684b269a072a676cb33e8ac249027280af06f684ca2958ab86fff19ce7d25a +SIZE (KDE/release-service/25.08.2/klickety-25.08.2.tar.xz) = 1389988 diff --git a/games/klines/distinfo b/games/klines/distinfo index f7bd8991a37b..066fd11ba85b 100644 --- a/games/klines/distinfo +++ b/games/klines/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1757410011 -SHA256 (KDE/release-service/25.08.1/klines-25.08.1.tar.xz) = 20a1c541f3c32a7b1f8a19ac579146eb3dff30bdf9761ff46a7da04de76d3442 -SIZE (KDE/release-service/25.08.1/klines-25.08.1.tar.xz) = 1675184 +TIMESTAMP = 1759874751 +SHA256 (KDE/release-service/25.08.2/klines-25.08.2.tar.xz) = 0970a0164a43d3274417e21129ba93408dbd03cb22cc778e11eaecae6798ee5d +SIZE (KDE/release-service/25.08.2/klines-25.08.2.tar.xz) = 1675024 diff --git a/games/kmahjongg/distinfo b/games/kmahjongg/distinfo index 828aa44294d8..f4fc6d450875 100644 --- a/games/kmahjongg/distinfo +++ b/games/kmahjongg/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1757410013 -SHA256 (KDE/release-service/25.08.1/kmahjongg-25.08.1.tar.xz) = f59a991bca6b0a648fc2b66a7dcb4eec04db317adcd6a3f554f7cff0a08be5fa -SIZE (KDE/release-service/25.08.1/kmahjongg-25.08.1.tar.xz) = 3725540 +TIMESTAMP = 1759874754 +SHA256 (KDE/release-service/25.08.2/kmahjongg-25.08.2.tar.xz) = ec447948d2a99a0739a638e9248562e454503978051255d332508e9e84e1df06 +SIZE (KDE/release-service/25.08.2/kmahjongg-25.08.2.tar.xz) = 3725484 diff --git a/games/kmines/distinfo b/games/kmines/distinfo index 5673fcc31e44..c47c4e631a1c 100644 --- a/games/kmines/distinfo +++ b/games/kmines/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1757410015 -SHA256 (KDE/release-service/25.08.1/kmines-25.08.1.tar.xz) = 7ad181690722e5e547bf7930973ea05259fd20472105db219b5e4644c325b6cb -SIZE (KDE/release-service/25.08.1/kmines-25.08.1.tar.xz) = 950172 +TIMESTAMP = 1759874756 +SHA256 (KDE/release-service/25.08.2/kmines-25.08.2.tar.xz) = 15685ce1ff9c24e9bee94deb9c39d35f27e7561fcb0dd8cde56f719ea8f0fac5 +SIZE (KDE/release-service/25.08.2/kmines-25.08.2.tar.xz) = 950196 diff --git a/games/knavalbattle/distinfo b/games/knavalbattle/distinfo index af4407433cdd..76a98410c9f3 100644 --- a/games/knavalbattle/distinfo +++ b/games/knavalbattle/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1757410018 -SHA256 (KDE/release-service/25.08.1/knavalbattle-25.08.1.tar.xz) = be4dee2346d3f3782e64f7b137a78a3de6b1e8e0ff04aef65f62e323b5f1eee9 -SIZE (KDE/release-service/25.08.1/knavalbattle-25.08.1.tar.xz) = 1050808 +TIMESTAMP = 1759874759 +SHA256 (KDE/release-service/25.08.2/knavalbattle-25.08.2.tar.xz) = 027e0d8da60bb78e2a0bb8f7b41030b56c5dea3c47b49394c83e904e0b5f76ca +SIZE (KDE/release-service/25.08.2/knavalbattle-25.08.2.tar.xz) = 1051092 diff --git a/games/knetwalk/distinfo b/games/knetwalk/distinfo index 5d805e70802d..34dc4260c617 100644 --- a/games/knetwalk/distinfo +++ b/games/knetwalk/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1757410020 -SHA256 (KDE/release-service/25.08.1/knetwalk-25.08.1.tar.xz) = 718e1f7df2b571f014e8c9c6aa9b7f830171664ee101dc4c7f798ec7ee2e9b13 -SIZE (KDE/release-service/25.08.1/knetwalk-25.08.1.tar.xz) = 1012140 +TIMESTAMP = 1759874761 +SHA256 (KDE/release-service/25.08.2/knetwalk-25.08.2.tar.xz) = bfc180c1ba8b544ccf0b5e894bdbb2379540a7763116bc560e2b9a52054104f3 +SIZE (KDE/release-service/25.08.2/knetwalk-25.08.2.tar.xz) = 1012060 diff --git a/games/knights/distinfo b/games/knights/distinfo index e4dfade6abe8..7edbb3033ede 100644 --- a/games/knights/distinfo +++ b/games/knights/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1757410022 -SHA256 (KDE/release-service/25.08.1/knights-25.08.1.tar.xz) = 27f5cefe8a41c7caee484ace3eadf11c8f4fec3bce57092e29beed67668460aa -SIZE (KDE/release-service/25.08.1/knights-25.08.1.tar.xz) = 2500636 +TIMESTAMP = 1759874764 +SHA256 (KDE/release-service/25.08.2/knights-25.08.2.tar.xz) = 4b7498b0e15e1984622caead16229911b03221565ac1cdf95c29969b904afa0e +SIZE (KDE/release-service/25.08.2/knights-25.08.2.tar.xz) = 2498644 diff --git a/games/kolf/distinfo b/games/kolf/distinfo index 91bcc273e758..dd986908f461 100644 --- a/games/kolf/distinfo +++ b/games/kolf/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1757410025 -SHA256 (KDE/release-service/25.08.1/kolf-25.08.1.tar.xz) = a433d3899048df1c14ea807303e16f76616be137139fc859cc92bf3af87fe34a -SIZE (KDE/release-service/25.08.1/kolf-25.08.1.tar.xz) = 1083404 +TIMESTAMP = 1759874766 +SHA256 (KDE/release-service/25.08.2/kolf-25.08.2.tar.xz) = d1f2ec80f65a116542b4110241f19d293f1085bfa357ffce7a0958a7a4c8c7ab +SIZE (KDE/release-service/25.08.2/kolf-25.08.2.tar.xz) = 1085844 diff --git a/games/kollision/distinfo b/games/kollision/distinfo index cccb23dfca25..8ab1a9d79e38 100644 --- a/games/kollision/distinfo +++ b/games/kollision/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1757410027 -SHA256 (KDE/release-service/25.08.1/kollision-25.08.1.tar.xz) = 825e2fcfda6d4045697946633f5cdee8f8ce3cd66a47998a3d9f3332880d2c2d -SIZE (KDE/release-service/25.08.1/kollision-25.08.1.tar.xz) = 313640 +TIMESTAMP = 1759874768 +SHA256 (KDE/release-service/25.08.2/kollision-25.08.2.tar.xz) = 58f42c503902504e4d8542f3e22d9d53b77f6f8144b95aa56719c6f84e3fef4a +SIZE (KDE/release-service/25.08.2/kollision-25.08.2.tar.xz) = 313676 diff --git a/games/konquest/distinfo b/games/konquest/distinfo index 6b34058c294e..7cc1d71b7799 100644 --- a/games/konquest/distinfo +++ b/games/konquest/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1757410029 -SHA256 (KDE/release-service/25.08.1/konquest-25.08.1.tar.xz) = babcd518a414cd6ec954035a016a7e4172fa19391e4c15f94cb279c74a5e36ec -SIZE (KDE/release-service/25.08.1/konquest-25.08.1.tar.xz) = 863636 +TIMESTAMP = 1759874771 +SHA256 (KDE/release-service/25.08.2/konquest-25.08.2.tar.xz) = d27a1419c35036ffe9cb34f3a2869f5e8ecf578d01abb03d0d5ad15a213ddc0f +SIZE (KDE/release-service/25.08.2/konquest-25.08.2.tar.xz) = 863684 diff --git a/games/kpat/distinfo b/games/kpat/distinfo index a46b76169506..0aad06dcca34 100644 --- a/games/kpat/distinfo +++ b/games/kpat/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1757410032 -SHA256 (KDE/release-service/25.08.1/kpat-25.08.1.tar.xz) = 09656293e06d82b8849aea9fe50b428f03fcc42e15c91bdc05a34ab18ed217fe -SIZE (KDE/release-service/25.08.1/kpat-25.08.1.tar.xz) = 3741972 +TIMESTAMP = 1759874773 +SHA256 (KDE/release-service/25.08.2/kpat-25.08.2.tar.xz) = 7ac005740d925cb12cac2adbfe4f18c052ee13f57e0bccb9826ed18a31f60d96 +SIZE (KDE/release-service/25.08.2/kpat-25.08.2.tar.xz) = 3743732 diff --git a/games/kreversi/distinfo b/games/kreversi/distinfo index 06fdd24af411..005fb2007082 100644 --- a/games/kreversi/distinfo +++ b/games/kreversi/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1757410034 -SHA256 (KDE/release-service/25.08.1/kreversi-25.08.1.tar.xz) = 16952b9177206df64093a75037269b7b59a17389d6a5ca60d888520ea5a4da7e -SIZE (KDE/release-service/25.08.1/kreversi-25.08.1.tar.xz) = 1037508 +TIMESTAMP = 1759874776 +SHA256 (KDE/release-service/25.08.2/kreversi-25.08.2.tar.xz) = 3428f603fab9f261c1c1b9f927966907b3e4af1d5fbb3e74d3679c6e20622d29 +SIZE (KDE/release-service/25.08.2/kreversi-25.08.2.tar.xz) = 1037448 diff --git a/games/kshisen/distinfo b/games/kshisen/distinfo index 7d8bd082a6d8..624e676a01b1 100644 --- a/games/kshisen/distinfo +++ b/games/kshisen/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1757410036 -SHA256 (KDE/release-service/25.08.1/kshisen-25.08.1.tar.xz) = 9e4bd836af5a80880f59f789b37ea1878fe7a13b8b6d435089bc51347951bb60 -SIZE (KDE/release-service/25.08.1/kshisen-25.08.1.tar.xz) = 976584 +TIMESTAMP = 1759874778 +SHA256 (KDE/release-service/25.08.2/kshisen-25.08.2.tar.xz) = a530d4c602664fc028480fccfbbcf3ce3002316352dabed29002549113e81aa5 +SIZE (KDE/release-service/25.08.2/kshisen-25.08.2.tar.xz) = 976452 diff --git a/games/ksirk/distinfo b/games/ksirk/distinfo index 3dd40cb3ceeb..f4267eca2073 100644 --- a/games/ksirk/distinfo +++ b/games/ksirk/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1757410039 -SHA256 (KDE/release-service/25.08.1/ksirk-25.08.1.tar.xz) = 05329836a6aaf272ef4625d2c2d23f82f565b31b7733dffa5725d406f4f08a2c -SIZE (KDE/release-service/25.08.1/ksirk-25.08.1.tar.xz) = 6722940 +TIMESTAMP = 1759874781 +SHA256 (KDE/release-service/25.08.2/ksirk-25.08.2.tar.xz) = 67126813e0f4d5c6fdd600f2271b0f48999f9bd2d0c23d17a6e82dadded5819f +SIZE (KDE/release-service/25.08.2/ksirk-25.08.2.tar.xz) = 6723016 diff --git a/games/ksnakeduel/distinfo b/games/ksnakeduel/distinfo index 2b0fbf14be93..9513347b1711 100644 --- a/games/ksnakeduel/distinfo +++ b/games/ksnakeduel/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1757410041 -SHA256 (KDE/release-service/25.08.1/ksnakeduel-25.08.1.tar.xz) = c2e779f2c93a5f8f8f74be1ed1ddab4c118e51f0195ab60802bf8bb78aa881f2 -SIZE (KDE/release-service/25.08.1/ksnakeduel-25.08.1.tar.xz) = 580520 +TIMESTAMP = 1759874783 +SHA256 (KDE/release-service/25.08.2/ksnakeduel-25.08.2.tar.xz) = 2f214c4295d1e68f9bb9fc8d35a2235731cf6c099404162bf36c54d5482ccb52 +SIZE (KDE/release-service/25.08.2/ksnakeduel-25.08.2.tar.xz) = 580480 diff --git a/games/kspaceduel/distinfo b/games/kspaceduel/distinfo index 290e70f7c970..4e81b0409eda 100644 --- a/games/kspaceduel/distinfo +++ b/games/kspaceduel/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1757410043 -SHA256 (KDE/release-service/25.08.1/kspaceduel-25.08.1.tar.xz) = c1e0cc149bd841fbb7a843dd70ae20d793498abd1f54ae75c6540152e2cae5c1 -SIZE (KDE/release-service/25.08.1/kspaceduel-25.08.1.tar.xz) = 636764 +TIMESTAMP = 1759874786 +SHA256 (KDE/release-service/25.08.2/kspaceduel-25.08.2.tar.xz) = f6f127b4e522ea3278bf7afc58d6269b149558ca30b7c499dbfb228bdeddf148 +SIZE (KDE/release-service/25.08.2/kspaceduel-25.08.2.tar.xz) = 636932 diff --git a/games/ksquares/distinfo b/games/ksquares/distinfo index 9922de476204..6bcec79db8c5 100644 --- a/games/ksquares/distinfo +++ b/games/ksquares/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1757410046 -SHA256 (KDE/release-service/25.08.1/ksquares-25.08.1.tar.xz) = 95be1f4713efd2aec88960f382b4474837a2b50419e5e467114470d89c08e0e0 -SIZE (KDE/release-service/25.08.1/ksquares-25.08.1.tar.xz) = 324432 +TIMESTAMP = 1759874788 +SHA256 (KDE/release-service/25.08.2/ksquares-25.08.2.tar.xz) = 9755456a2744ab560da88d74bdac0a41aed0b833090832f2cfb2e494bda88dd1 +SIZE (KDE/release-service/25.08.2/ksquares-25.08.2.tar.xz) = 324412 diff --git a/games/ksudoku/distinfo b/games/ksudoku/distinfo index 3d9fe60d5bdd..7160bd73996b 100644 --- a/games/ksudoku/distinfo +++ b/games/ksudoku/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1757410048 -SHA256 (KDE/release-service/25.08.1/ksudoku-25.08.1.tar.xz) = df3cb15d72c6293df05ce95b67e7c4b29ea88d994d2a0df09b260f1ea482f36d -SIZE (KDE/release-service/25.08.1/ksudoku-25.08.1.tar.xz) = 1746052 +TIMESTAMP = 1759874790 +SHA256 (KDE/release-service/25.08.2/ksudoku-25.08.2.tar.xz) = 3d34a3ffe98b3206a278dfddcfb410c3aa47d7cb3dc4b177a13dbf3ad422c517 +SIZE (KDE/release-service/25.08.2/ksudoku-25.08.2.tar.xz) = 1746076 diff --git a/games/ktuberling/distinfo b/games/ktuberling/distinfo index 195f1dec9c5d..53db2d0ed2e1 100644 --- a/games/ktuberling/distinfo +++ b/games/ktuberling/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1757410051 -SHA256 (KDE/release-service/25.08.1/ktuberling-25.08.1.tar.xz) = 9c9c109144fdfdc36c20e166317e79feab2b12cfbce1955742ca508a519a1d2b -SIZE (KDE/release-service/25.08.1/ktuberling-25.08.1.tar.xz) = 71553592 +TIMESTAMP = 1759874793 +SHA256 (KDE/release-service/25.08.2/ktuberling-25.08.2.tar.xz) = e7868c301a361bc346e70c692549d8745245994ed9340979081f41bf0b692e51 +SIZE (KDE/release-service/25.08.2/ktuberling-25.08.2.tar.xz) = 71568476 diff --git a/games/kubrick/distinfo b/games/kubrick/distinfo index 9abe0f0897d6..3c93e7755fcf 100644 --- a/games/kubrick/distinfo +++ b/games/kubrick/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1757410053 -SHA256 (KDE/release-service/25.08.1/kubrick-25.08.1.tar.xz) = dbbd55219b93cf0d0415443746a287bb3ec32b0c45da963b79d0e6b3359d3381 -SIZE (KDE/release-service/25.08.1/kubrick-25.08.1.tar.xz) = 384812 +TIMESTAMP = 1759874796 +SHA256 (KDE/release-service/25.08.2/kubrick-25.08.2.tar.xz) = 4a63308caee5f64c5ca457b6bca8bff309eee5df3f30ba09da136a18d04d8546 +SIZE (KDE/release-service/25.08.2/kubrick-25.08.2.tar.xz) = 384844 diff --git a/games/libkdegames/distinfo b/games/libkdegames/distinfo index 668b7fadbee2..e804a4b37576 100644 --- a/games/libkdegames/distinfo +++ b/games/libkdegames/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1757410055 -SHA256 (KDE/release-service/25.08.1/libkdegames-25.08.1.tar.xz) = 542b2f951c5091c5157cc0f2f53bae61afc47b21115df7441695b82fa725e83a -SIZE (KDE/release-service/25.08.1/libkdegames-25.08.1.tar.xz) = 5976400 +TIMESTAMP = 1759874798 +SHA256 (KDE/release-service/25.08.2/libkdegames-25.08.2.tar.xz) = 43f3cfdf82e46c0764ac779bfcbe3c78728ec9f880e71fcf587fb3c05195f4e7 +SIZE (KDE/release-service/25.08.2/libkdegames-25.08.2.tar.xz) = 5976468 diff --git a/games/libkmahjongg/distinfo b/games/libkmahjongg/distinfo index bb26248e60e1..36ddedd7ece9 100644 --- a/games/libkmahjongg/distinfo +++ b/games/libkmahjongg/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1757410058 -SHA256 (KDE/release-service/25.08.1/libkmahjongg-25.08.1.tar.xz) = 8d731b713fa25e5a44d89f8c328aafe4470f01f74394707f65ca164bfacb9c2a -SIZE (KDE/release-service/25.08.1/libkmahjongg-25.08.1.tar.xz) = 1694472 +TIMESTAMP = 1759874800 +SHA256 (KDE/release-service/25.08.2/libkmahjongg-25.08.2.tar.xz) = c99975365dc3464bced7a467056dca43d5f1747017833d3f56ad115ca1a8070c +SIZE (KDE/release-service/25.08.2/libkmahjongg-25.08.2.tar.xz) = 1694352 diff --git a/games/lskat/distinfo b/games/lskat/distinfo index f0d345c5abc1..80965db01c11 100644 --- a/games/lskat/distinfo +++ b/games/lskat/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1757410060 -SHA256 (KDE/release-service/25.08.1/lskat-25.08.1.tar.xz) = c11dff0edc8cdfc401e69252a206b9c3341bd3e9de3b53efc0f4343c3d394cd8 -SIZE (KDE/release-service/25.08.1/lskat-25.08.1.tar.xz) = 1229372 +TIMESTAMP = 1759874803 +SHA256 (KDE/release-service/25.08.2/lskat-25.08.2.tar.xz) = f2acfa2212195a8663f9bb6a1351fd453790f5eafe74e9b45671eb61f23c2280 +SIZE (KDE/release-service/25.08.2/lskat-25.08.2.tar.xz) = 1229620 diff --git a/games/palapeli/distinfo b/games/palapeli/distinfo index c5ec2f2086c1..16a0e67e3083 100644 --- a/games/palapeli/distinfo +++ b/games/palapeli/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1757410062 -SHA256 (KDE/release-service/25.08.1/palapeli-25.08.1.tar.xz) = 5478c010563a31fcc3458184b88876b9df15c5e83216cc16934cb3faee37dcee -SIZE (KDE/release-service/25.08.1/palapeli-25.08.1.tar.xz) = 2130676 +TIMESTAMP = 1759874805 +SHA256 (KDE/release-service/25.08.2/palapeli-25.08.2.tar.xz) = 105d9b0949dccb7c8df216efa323201e57cb29fa18ef4b04e648c2eb2667d739 +SIZE (KDE/release-service/25.08.2/palapeli-25.08.2.tar.xz) = 2134820 diff --git a/games/picmi/distinfo b/games/picmi/distinfo index 04be2c4a808b..e1f23d7f585f 100644 --- a/games/picmi/distinfo +++ b/games/picmi/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1757410065 -SHA256 (KDE/release-service/25.08.1/picmi-25.08.1.tar.xz) = b4c7549f66d0a1d81888b2f8c97574a40feab9cfb730723576fc375f6aaa2f4e -SIZE (KDE/release-service/25.08.1/picmi-25.08.1.tar.xz) = 1523712 +TIMESTAMP = 1759874808 +SHA256 (KDE/release-service/25.08.2/picmi-25.08.2.tar.xz) = 188a9ddcb6cefc238f46969f6d34221ce2d750955bda81729e1b0121363eb21f +SIZE (KDE/release-service/25.08.2/picmi-25.08.2.tar.xz) = 1523576 diff --git a/games/skladnik/distinfo b/games/skladnik/distinfo index c5fb0d05a7c7..b07d921df8b3 100644 --- a/games/skladnik/distinfo +++ b/games/skladnik/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1757410067 -SHA256 (KDE/release-service/25.08.1/skladnik-25.08.1.tar.xz) = fb20efa2b867a42d35575e0758abcbb821451412092ac53a14a8529e8866125d -SIZE (KDE/release-service/25.08.1/skladnik-25.08.1.tar.xz) = 417720 +TIMESTAMP = 1759874810 +SHA256 (KDE/release-service/25.08.2/skladnik-25.08.2.tar.xz) = 026c43e3f88bbe8cfa51ef7038795b5b0725a1c234440ca6aa8ab204aac527a7 +SIZE (KDE/release-service/25.08.2/skladnik-25.08.2.tar.xz) = 417688 diff --git a/graphics/colord-kde/distinfo b/graphics/colord-kde/distinfo index 3b303cf15c32..c201902379ea 100644 --- a/graphics/colord-kde/distinfo +++ b/graphics/colord-kde/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1757410067 -SHA256 (KDE/release-service/25.08.1/colord-kde-25.08.1.tar.xz) = a42e77a8faf0cc5852b4b69fe27c16a9e6aa10ad5ed436982bdf7e14409eb8a3 -SIZE (KDE/release-service/25.08.1/colord-kde-25.08.1.tar.xz) = 119936 +TIMESTAMP = 1759874810 +SHA256 (KDE/release-service/25.08.2/colord-kde-25.08.2.tar.xz) = 4a4b34386428222756e9333e1286d003afaccb2feccca92685f7d142bb9ab609 +SIZE (KDE/release-service/25.08.2/colord-kde-25.08.2.tar.xz) = 121380 diff --git a/graphics/colord-kde/pkg-plist b/graphics/colord-kde/pkg-plist index f9009580e399..3f576cf62609 100644 --- a/graphics/colord-kde/pkg-plist +++ b/graphics/colord-kde/pkg-plist @@ -1,56 +1,57 @@ bin/colord-kde-icc-importer %%QT_PLUGINDIR%%/kf6/kded/colord.so %%QT_PLUGINDIR%%/plasma/kcms/systemsettings/kcm_colord.so share/applications/colordkdeiccimporter.desktop share/applications/kcm_colord.desktop share/locale/ar/LC_MESSAGES/colord-kde.mo share/locale/ast/LC_MESSAGES/colord-kde.mo share/locale/az/LC_MESSAGES/colord-kde.mo share/locale/bg/LC_MESSAGES/colord-kde.mo share/locale/bs/LC_MESSAGES/colord-kde.mo share/locale/ca/LC_MESSAGES/colord-kde.mo share/locale/ca@valencia/LC_MESSAGES/colord-kde.mo share/locale/cs/LC_MESSAGES/colord-kde.mo share/locale/da/LC_MESSAGES/colord-kde.mo share/locale/de/LC_MESSAGES/colord-kde.mo share/locale/el/LC_MESSAGES/colord-kde.mo share/locale/en_GB/LC_MESSAGES/colord-kde.mo share/locale/eo/LC_MESSAGES/colord-kde.mo share/locale/es/LC_MESSAGES/colord-kde.mo share/locale/et/LC_MESSAGES/colord-kde.mo share/locale/eu/LC_MESSAGES/colord-kde.mo share/locale/fi/LC_MESSAGES/colord-kde.mo share/locale/fr/LC_MESSAGES/colord-kde.mo share/locale/ga/LC_MESSAGES/colord-kde.mo share/locale/gl/LC_MESSAGES/colord-kde.mo share/locale/he/LC_MESSAGES/colord-kde.mo share/locale/hi/LC_MESSAGES/colord-kde.mo share/locale/hu/LC_MESSAGES/colord-kde.mo share/locale/ia/LC_MESSAGES/colord-kde.mo share/locale/id/LC_MESSAGES/colord-kde.mo +share/locale/is/LC_MESSAGES/colord-kde.mo share/locale/it/LC_MESSAGES/colord-kde.mo share/locale/ja/LC_MESSAGES/colord-kde.mo share/locale/ka/LC_MESSAGES/colord-kde.mo share/locale/km/LC_MESSAGES/colord-kde.mo share/locale/ko/LC_MESSAGES/colord-kde.mo share/locale/lt/LC_MESSAGES/colord-kde.mo share/locale/lv/LC_MESSAGES/colord-kde.mo share/locale/mr/LC_MESSAGES/colord-kde.mo share/locale/nl/LC_MESSAGES/colord-kde.mo share/locale/nn/LC_MESSAGES/colord-kde.mo share/locale/pa/LC_MESSAGES/colord-kde.mo share/locale/pl/LC_MESSAGES/colord-kde.mo share/locale/pt/LC_MESSAGES/colord-kde.mo share/locale/pt_BR/LC_MESSAGES/colord-kde.mo share/locale/ro/LC_MESSAGES/colord-kde.mo share/locale/ru/LC_MESSAGES/colord-kde.mo share/locale/sa/LC_MESSAGES/colord-kde.mo share/locale/sk/LC_MESSAGES/colord-kde.mo share/locale/sl/LC_MESSAGES/colord-kde.mo share/locale/sv/LC_MESSAGES/colord-kde.mo share/locale/ta/LC_MESSAGES/colord-kde.mo share/locale/tr/LC_MESSAGES/colord-kde.mo share/locale/ug/LC_MESSAGES/colord-kde.mo share/locale/uk/LC_MESSAGES/colord-kde.mo share/locale/zh_CN/LC_MESSAGES/colord-kde.mo share/locale/zh_TW/LC_MESSAGES/colord-kde.mo diff --git a/graphics/gwenview/distinfo b/graphics/gwenview/distinfo index 6de9180a451e..a3b8cd09047f 100644 --- a/graphics/gwenview/distinfo +++ b/graphics/gwenview/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1757410070 -SHA256 (KDE/release-service/25.08.1/gwenview-25.08.1.tar.xz) = 4d92eef8fd543930cff6810062bc1d9ff103394247516bfef1edcd1bd67ad67c -SIZE (KDE/release-service/25.08.1/gwenview-25.08.1.tar.xz) = 6533628 +TIMESTAMP = 1759874813 +SHA256 (KDE/release-service/25.08.2/gwenview-25.08.2.tar.xz) = c189967a0e21f0753560e8d87381e888f3d943701db4c1f21bed8b5bb8af1e5a +SIZE (KDE/release-service/25.08.2/gwenview-25.08.2.tar.xz) = 6533740 diff --git a/graphics/kamera/distinfo b/graphics/kamera/distinfo index 11746458ac8a..0c8209b670ac 100644 --- a/graphics/kamera/distinfo +++ b/graphics/kamera/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1757410072 -SHA256 (KDE/release-service/25.08.1/kamera-25.08.1.tar.xz) = 1606de242a75bb2606d3a2b5b1e9211275e1f12287afbbd018e9fc0c8b4f7248 -SIZE (KDE/release-service/25.08.1/kamera-25.08.1.tar.xz) = 133056 +TIMESTAMP = 1759874815 +SHA256 (KDE/release-service/25.08.2/kamera-25.08.2.tar.xz) = ff03962253f2a108eb0e1f524d2acf2d9cc934561469fb98f6c80e903294a0f4 +SIZE (KDE/release-service/25.08.2/kamera-25.08.2.tar.xz) = 133036 diff --git a/graphics/kcolorchooser/distinfo b/graphics/kcolorchooser/distinfo index 7482edd25d15..e83d6fffdfd6 100644 --- a/graphics/kcolorchooser/distinfo +++ b/graphics/kcolorchooser/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1757410074 -SHA256 (KDE/release-service/25.08.1/kcolorchooser-25.08.1.tar.xz) = 907302c037ee291770e56ff9c0e3b3a5413a40d9a4d0352dc8f882685d732921 -SIZE (KDE/release-service/25.08.1/kcolorchooser-25.08.1.tar.xz) = 36360 +TIMESTAMP = 1759874818 +SHA256 (KDE/release-service/25.08.2/kcolorchooser-25.08.2.tar.xz) = b63fcda617edf6c20e03a42a87ccca07e0b9a522ac946055e3f98f5639437315 +SIZE (KDE/release-service/25.08.2/kcolorchooser-25.08.2.tar.xz) = 36348 diff --git a/graphics/kdegraphics-mobipocket/distinfo b/graphics/kdegraphics-mobipocket/distinfo index 0f288e512261..fc302831f9fe 100644 --- a/graphics/kdegraphics-mobipocket/distinfo +++ b/graphics/kdegraphics-mobipocket/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1757410076 -SHA256 (KDE/release-service/25.08.1/kdegraphics-mobipocket-25.08.1.tar.xz) = 19456126f4d1fd0c19a0a484dc27d5dd86399bc9a144d7ab89eb6479b110c920 -SIZE (KDE/release-service/25.08.1/kdegraphics-mobipocket-25.08.1.tar.xz) = 19800 +TIMESTAMP = 1759874820 +SHA256 (KDE/release-service/25.08.2/kdegraphics-mobipocket-25.08.2.tar.xz) = 799af3ba4190313397389330645c3fa00f429017f7338433c8d4abee55ad64d2 +SIZE (KDE/release-service/25.08.2/kdegraphics-mobipocket-25.08.2.tar.xz) = 19796 diff --git a/graphics/kdegraphics-svgpart/distinfo b/graphics/kdegraphics-svgpart/distinfo index adce15a116bc..a29635162678 100644 --- a/graphics/kdegraphics-svgpart/distinfo +++ b/graphics/kdegraphics-svgpart/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1757410079 -SHA256 (KDE/release-service/25.08.1/svgpart-25.08.1.tar.xz) = 2be6076da24777669659c2adf5ccbb58de0e7e91708bcdbb4f5cfb4df85487a7 -SIZE (KDE/release-service/25.08.1/svgpart-25.08.1.tar.xz) = 30204 +TIMESTAMP = 1759874823 +SHA256 (KDE/release-service/25.08.2/svgpart-25.08.2.tar.xz) = 4fcfae43c43f45f9d44b6552339e74148f2c5c077a8d487d1fff4ea3ef6dbca6 +SIZE (KDE/release-service/25.08.2/svgpart-25.08.2.tar.xz) = 30224 diff --git a/graphics/kdegraphics-thumbnailers/distinfo b/graphics/kdegraphics-thumbnailers/distinfo index 427c06588544..67f42f9f9455 100644 --- a/graphics/kdegraphics-thumbnailers/distinfo +++ b/graphics/kdegraphics-thumbnailers/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1757410081 -SHA256 (KDE/release-service/25.08.1/kdegraphics-thumbnailers-25.08.1.tar.xz) = 0c048e4dc190a30aa2b4c6316b186d9462418adad22a6e3535b40d4085b6649d -SIZE (KDE/release-service/25.08.1/kdegraphics-thumbnailers-25.08.1.tar.xz) = 55828 +TIMESTAMP = 1759874825 +SHA256 (KDE/release-service/25.08.2/kdegraphics-thumbnailers-25.08.2.tar.xz) = 02e1fc5d2a77ad9c57173deae2333a0a3f04446e7ccf682f1f66b09902f01adf +SIZE (KDE/release-service/25.08.2/kdegraphics-thumbnailers-25.08.2.tar.xz) = 55836 diff --git a/graphics/kgraphviewer/Makefile b/graphics/kgraphviewer/Makefile index 0fbbf650db47..c541c99da7a1 100644 --- a/graphics/kgraphviewer/Makefile +++ b/graphics/kgraphviewer/Makefile @@ -1,27 +1,26 @@ PORTNAME= kgraphviewer DISTVERSION= ${KDE_APPLICATIONS_VERSION} -PORTREVISION= 1 CATEGORIES= graphics kde kde-applications MAINTAINER= kde@FreeBSD.org COMMENT= Graphs-viewer for GraphViz files WWW= https://apps.kde.org/kgraphviewer/ LICENSE= GPLv2 LICENSE_FILE= ${WRKSRC}/COPYING BUILD_DEPENDS= ${LOCALBASE}/include/boost/concept_check.hpp:devel/boost-libs LIB_DEPENDS= libgvc.so:graphics/graphviz USES= cmake compiler:c++17-lang desktop-file-utils gettext-tools \ kde:6 localbase pkgconfig qt:6 tar:xz xorg USE_KDE= coreaddons i18n parts widgetsaddons \ ecm:build doctools:build USE_QT= 5compat base svg \ tools:build USE_XORG= x11 _${PORTNAME}_PROJECT_VERSION= 2.5 KDE_APPS_BASED_PATCHLEVEL= ${KDE_APPLICATIONS_VERSION:R:S/.//}${KDE_APPLICATIONS_VERSION:E} .include diff --git a/graphics/kgraphviewer/distinfo b/graphics/kgraphviewer/distinfo index 75b20f5a294b..c0551d5455c9 100644 --- a/graphics/kgraphviewer/distinfo +++ b/graphics/kgraphviewer/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1757410083 -SHA256 (KDE/release-service/25.08.1/kgraphviewer-25.08.1.tar.xz) = d9726c3e673039979f2f06791f28ff4902877acd597261f06383f481059231a4 -SIZE (KDE/release-service/25.08.1/kgraphviewer-25.08.1.tar.xz) = 1601984 +TIMESTAMP = 1759874827 +SHA256 (KDE/release-service/25.08.2/kgraphviewer-25.08.2.tar.xz) = 6eace3eb103d1e620b2d832e5390932301dcfda2a0c1449d5b2c36a156372b27 +SIZE (KDE/release-service/25.08.2/kgraphviewer-25.08.2.tar.xz) = 1601988 diff --git a/graphics/kimagemapeditor/distinfo b/graphics/kimagemapeditor/distinfo index 94f5a7d73d7c..74c9f7b37715 100644 --- a/graphics/kimagemapeditor/distinfo +++ b/graphics/kimagemapeditor/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1757410086 -SHA256 (KDE/release-service/25.08.1/kimagemapeditor-25.08.1.tar.xz) = fa59725c24721357e217b10d8f8e27d3ac2993e9065884102c635257d17b391d -SIZE (KDE/release-service/25.08.1/kimagemapeditor-25.08.1.tar.xz) = 1077404 +TIMESTAMP = 1759874830 +SHA256 (KDE/release-service/25.08.2/kimagemapeditor-25.08.2.tar.xz) = f839c6b24d97d0f0dda8fe1bb5607d87ec9aee475d443f05ba3d1eec9f5d6353 +SIZE (KDE/release-service/25.08.2/kimagemapeditor-25.08.2.tar.xz) = 1077384 diff --git a/graphics/kolourpaint/distinfo b/graphics/kolourpaint/distinfo index 9ae119f88118..7e373bd9a44c 100644 --- a/graphics/kolourpaint/distinfo +++ b/graphics/kolourpaint/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1757410088 -SHA256 (KDE/release-service/25.08.1/kolourpaint-25.08.1.tar.xz) = d03eacbfda56f84c0b3e4bad1740c1923b91107e683732a54908090bdd62bd17 -SIZE (KDE/release-service/25.08.1/kolourpaint-25.08.1.tar.xz) = 5317596 +TIMESTAMP = 1759874832 +SHA256 (KDE/release-service/25.08.2/kolourpaint-25.08.2.tar.xz) = 2edafa95ddba3945f54f34e5c618272ecacd4c60d5f5abe70819ccf06cf649cd +SIZE (KDE/release-service/25.08.2/kolourpaint-25.08.2.tar.xz) = 5317552 diff --git a/graphics/kontrast/distinfo b/graphics/kontrast/distinfo index 553b7d956dfc..8262450b0c5d 100644 --- a/graphics/kontrast/distinfo +++ b/graphics/kontrast/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1757410090 -SHA256 (KDE/release-service/25.08.1/kontrast-25.08.1.tar.xz) = 6376ea91635db8eb24dd23798add25b7e7270f0c664a6f0ff543fe0cbb82431e -SIZE (KDE/release-service/25.08.1/kontrast-25.08.1.tar.xz) = 219536 +TIMESTAMP = 1759874835 +SHA256 (KDE/release-service/25.08.2/kontrast-25.08.2.tar.xz) = b6ec9de6efe23c5be0c7d945a9e2e0ab86e03f7f9640fc1ef9815cf8564e05ad +SIZE (KDE/release-service/25.08.2/kontrast-25.08.2.tar.xz) = 219560 diff --git a/graphics/kqtquickcharts/distinfo b/graphics/kqtquickcharts/distinfo index 125bafbf77bc..e0a55ceb82d6 100644 --- a/graphics/kqtquickcharts/distinfo +++ b/graphics/kqtquickcharts/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1757410093 -SHA256 (KDE/release-service/25.08.1/kqtquickcharts-25.08.1.tar.xz) = 31d9ced7427f748d47d4937354f204fddd613ce5e8ef4d46d53f3221a8f2f045 -SIZE (KDE/release-service/25.08.1/kqtquickcharts-25.08.1.tar.xz) = 30976 +TIMESTAMP = 1759874837 +SHA256 (KDE/release-service/25.08.2/kqtquickcharts-25.08.2.tar.xz) = 86993307cb2ab87b356d7e754ae02f4ae049f1e92280c72bcce1287b1266b612 +SIZE (KDE/release-service/25.08.2/kqtquickcharts-25.08.2.tar.xz) = 30984 diff --git a/graphics/ksanecore/distinfo b/graphics/ksanecore/distinfo index 159d3826a4da..ab4d1e8cee03 100644 --- a/graphics/ksanecore/distinfo +++ b/graphics/ksanecore/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1757410095 -SHA256 (KDE/release-service/25.08.1/ksanecore-25.08.1.tar.xz) = efcbbd6ee797aee03c7d9622a150f0b4ee645f7d0856d379c2495eb25e0697c6 -SIZE (KDE/release-service/25.08.1/ksanecore-25.08.1.tar.xz) = 56524 +TIMESTAMP = 1759874840 +SHA256 (KDE/release-service/25.08.2/ksanecore-25.08.2.tar.xz) = 8badb3c8a4d5d466a9229bc46eb1f4fb0a16f382008e6399903413d8fa0a98b1 +SIZE (KDE/release-service/25.08.2/ksanecore-25.08.2.tar.xz) = 56544 diff --git a/graphics/libkdcraw/distinfo b/graphics/libkdcraw/distinfo index 0e0aee88283d..8eea29ffc3c5 100644 --- a/graphics/libkdcraw/distinfo +++ b/graphics/libkdcraw/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1757410097 -SHA256 (KDE/release-service/25.08.1/libkdcraw-25.08.1.tar.xz) = b5f112ced53a76b1414bd904b7ac7c8d9b743592e25a6c44c42dd6df7b0feb81 -SIZE (KDE/release-service/25.08.1/libkdcraw-25.08.1.tar.xz) = 37328 +TIMESTAMP = 1759874842 +SHA256 (KDE/release-service/25.08.2/libkdcraw-25.08.2.tar.xz) = 0ae4292ac23762931719252e6da1e044390d4f0b89b4e681b12b87e6af449d20 +SIZE (KDE/release-service/25.08.2/libkdcraw-25.08.2.tar.xz) = 37348 diff --git a/graphics/libkexiv2/distinfo b/graphics/libkexiv2/distinfo index df7015d6195e..59c30d9821a8 100644 --- a/graphics/libkexiv2/distinfo +++ b/graphics/libkexiv2/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1757410100 -SHA256 (KDE/release-service/25.08.1/libkexiv2-25.08.1.tar.xz) = 950b39d142bdfdcf34c399ec936fb9930eec4b86223d7ee17c10313597746b8a -SIZE (KDE/release-service/25.08.1/libkexiv2-25.08.1.tar.xz) = 60612 +TIMESTAMP = 1759874845 +SHA256 (KDE/release-service/25.08.2/libkexiv2-25.08.2.tar.xz) = 1b8aea78736662af17d6ae0391345933754f98cffca1535204813eb27eff6222 +SIZE (KDE/release-service/25.08.2/libkexiv2-25.08.2.tar.xz) = 60644 diff --git a/graphics/libksane/distinfo b/graphics/libksane/distinfo index 535a770f5b5e..3a8de31de1a1 100644 --- a/graphics/libksane/distinfo +++ b/graphics/libksane/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1757410102 -SHA256 (KDE/release-service/25.08.1/libksane-25.08.1.tar.xz) = ad4024e3bb5a2e975c48945d825c89e37f94f7fefd40b0db53c0d5d62dfdcc7a -SIZE (KDE/release-service/25.08.1/libksane-25.08.1.tar.xz) = 156192 +TIMESTAMP = 1759874847 +SHA256 (KDE/release-service/25.08.2/libksane-25.08.2.tar.xz) = da6b7377609f07896007db05e3323291bb16fcd2d6cd9c2c1b58e0f999ffba33 +SIZE (KDE/release-service/25.08.2/libksane-25.08.2.tar.xz) = 156140 diff --git a/graphics/okular/distinfo b/graphics/okular/distinfo index 9cf10cabe92e..2f70fcfe861d 100644 --- a/graphics/okular/distinfo +++ b/graphics/okular/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1757410104 -SHA256 (KDE/release-service/25.08.1/okular-25.08.1.tar.xz) = 67be42a1c3cfd8879c371fbe82f501b1a2709ee74dd08cbd2253d48c2763ed08 -SIZE (KDE/release-service/25.08.1/okular-25.08.1.tar.xz) = 8202708 +TIMESTAMP = 1760127566 +SHA256 (KDE/release-service/25.08.2/okular-25.08.2.tar.xz) = de401cd34376d678a16a361473514844f78800b398e3b0db6bde85a09e635392 +SIZE (KDE/release-service/25.08.2/okular-25.08.2.tar.xz) = 8202524 diff --git a/graphics/skanlite/distinfo b/graphics/skanlite/distinfo index 8f93ab144654..9092ef010535 100644 --- a/graphics/skanlite/distinfo +++ b/graphics/skanlite/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1757410107 -SHA256 (KDE/release-service/25.08.1/skanlite-25.08.1.tar.xz) = 8bece39f2d7eab4f9fb8aeaeefbd630c2ae7ce25bb6b63fa8f4f15d23dfd9c6c -SIZE (KDE/release-service/25.08.1/skanlite-25.08.1.tar.xz) = 2392420 +TIMESTAMP = 1759874852 +SHA256 (KDE/release-service/25.08.2/skanlite-25.08.2.tar.xz) = 608275eb32b011c7dd34001189e34b003afe89b94cdddf14ab99b80f0d8808a8 +SIZE (KDE/release-service/25.08.2/skanlite-25.08.2.tar.xz) = 2392520 diff --git a/graphics/skanpage/distinfo b/graphics/skanpage/distinfo index 6478ff432f6d..d1180e5ce445 100644 --- a/graphics/skanpage/distinfo +++ b/graphics/skanpage/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1757410109 -SHA256 (KDE/release-service/25.08.1/skanpage-25.08.1.tar.xz) = 5131221c6fe48ad37637958cebf6f267631963ce377eeae60bb65bf9891fbba0 -SIZE (KDE/release-service/25.08.1/skanpage-25.08.1.tar.xz) = 1366912 +TIMESTAMP = 1759874854 +SHA256 (KDE/release-service/25.08.2/skanpage-25.08.2.tar.xz) = 1bddd32bafb28f5cca6ad90104552b7429a7c4dd43048ec81fb3cf53f2f20479 +SIZE (KDE/release-service/25.08.2/skanpage-25.08.2.tar.xz) = 1367228 diff --git a/irc/konversation/distinfo b/irc/konversation/distinfo index 95624aa86f65..28eb0e889430 100644 --- a/irc/konversation/distinfo +++ b/irc/konversation/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1757410111 -SHA256 (KDE/release-service/25.08.1/konversation-25.08.1.tar.xz) = 5cd19f8c4cff3f14af5de3bd658d6f9941c6899e33a04ffc0267eb34a14d953a -SIZE (KDE/release-service/25.08.1/konversation-25.08.1.tar.xz) = 4480896 +TIMESTAMP = 1759874857 +SHA256 (KDE/release-service/25.08.2/konversation-25.08.2.tar.xz) = 4a0e63d707bd39ff6ea915d754cbca2af11ca8d6a93bb6ad106ac56e22b4f3a9 +SIZE (KDE/release-service/25.08.2/konversation-25.08.2.tar.xz) = 4480756 diff --git a/japanese/kiten/distinfo b/japanese/kiten/distinfo index 4fccf43aee1b..a09f267e108c 100644 --- a/japanese/kiten/distinfo +++ b/japanese/kiten/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1757410114 -SHA256 (KDE/release-service/25.08.1/kiten-25.08.1.tar.xz) = 2a57d5718e72aaddfe36df85f372cd1b32ba44871637e7e55c43cc37aefa9460 -SIZE (KDE/release-service/25.08.1/kiten-25.08.1.tar.xz) = 11317040 +TIMESTAMP = 1759874859 +SHA256 (KDE/release-service/25.08.2/kiten-25.08.2.tar.xz) = 61ecada96b77c66bd62500622289a8d7701a868ef7d7bd30fa62081fb8836572 +SIZE (KDE/release-service/25.08.2/kiten-25.08.2.tar.xz) = 11317976 diff --git a/lang/kturtle/distinfo b/lang/kturtle/distinfo index 1aad0653e7fc..12a6d0998ce6 100644 --- a/lang/kturtle/distinfo +++ b/lang/kturtle/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1757410116 -SHA256 (KDE/release-service/25.08.1/kturtle-25.08.1.tar.xz) = d30f8a72b77d7caf10e986ca1b794114166881c541c23b7f6a87a963a4645bde -SIZE (KDE/release-service/25.08.1/kturtle-25.08.1.tar.xz) = 2102672 +TIMESTAMP = 1759874862 +SHA256 (KDE/release-service/25.08.2/kturtle-25.08.2.tar.xz) = 61efdb0d3efc23c17c62571278d2dce8b10034e320fda29d4e7f699b3378bbd9 +SIZE (KDE/release-service/25.08.2/kturtle-25.08.2.tar.xz) = 2102612 diff --git a/math/analitza/distinfo b/math/analitza/distinfo index c98a3860fd4d..7d69a97b926a 100644 --- a/math/analitza/distinfo +++ b/math/analitza/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1757410118 -SHA256 (KDE/release-service/25.08.1/analitza-25.08.1.tar.xz) = 603bf3b126692de017a95a781b86aef91512d9db514ecdd4a5e7af75b7e00d14 -SIZE (KDE/release-service/25.08.1/analitza-25.08.1.tar.xz) = 368228 +TIMESTAMP = 1759874864 +SHA256 (KDE/release-service/25.08.2/analitza-25.08.2.tar.xz) = d76e0ca2193c9903f2054612b4ccf6b4f3d4e15c5e577eff33ef5457f6ab7069 +SIZE (KDE/release-service/25.08.2/analitza-25.08.2.tar.xz) = 370044 diff --git a/math/cantor/distinfo b/math/cantor/distinfo index ad3341ea08a6..8b7d6155005b 100644 --- a/math/cantor/distinfo +++ b/math/cantor/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1757410121 -SHA256 (KDE/release-service/25.08.1/cantor-25.08.1.tar.xz) = 1e92aa6ca61be065388d10f0dbc9a09393893190a0bae7c98cdfd863cf4adb94 -SIZE (KDE/release-service/25.08.1/cantor-25.08.1.tar.xz) = 10907968 +TIMESTAMP = 1759874867 +SHA256 (KDE/release-service/25.08.2/cantor-25.08.2.tar.xz) = 259c4416bfc2b60ce9499a1da0fef48d5369b0b63efe75bcb0d0c8906a2f2000 +SIZE (KDE/release-service/25.08.2/cantor-25.08.2.tar.xz) = 10918004 diff --git a/math/kalgebra/distinfo b/math/kalgebra/distinfo index ead663017547..d10dbda00ce6 100644 --- a/math/kalgebra/distinfo +++ b/math/kalgebra/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1757410123 -SHA256 (KDE/release-service/25.08.1/kalgebra-25.08.1.tar.xz) = d007a4b2b04a36ba10a9c84d71ee472349a27e7472a8b835cea1ad60172edd58 -SIZE (KDE/release-service/25.08.1/kalgebra-25.08.1.tar.xz) = 953008 +TIMESTAMP = 1759874869 +SHA256 (KDE/release-service/25.08.2/kalgebra-25.08.2.tar.xz) = 2208b4f965876eb4b3f42eaae06c6f367ff0735b245d9abacf2f2c975a714f10 +SIZE (KDE/release-service/25.08.2/kalgebra-25.08.2.tar.xz) = 953104 diff --git a/math/kalk/distinfo b/math/kalk/distinfo index 23c7685022b9..0cfe4e1c7bab 100644 --- a/math/kalk/distinfo +++ b/math/kalk/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1757410123 -SHA256 (KDE/release-service/25.08.1/kalk-25.08.1.tar.xz) = 62cfb38a58cd7b33dfd5efe1e9e3c486c1615e1ef92a787d4c63e07b8d77af9c -SIZE (KDE/release-service/25.08.1/kalk-25.08.1.tar.xz) = 79120 +TIMESTAMP = 1759874869 +SHA256 (KDE/release-service/25.08.2/kalk-25.08.2.tar.xz) = f439627aa0980290a2bbf78b61b1a03d38b7de1c1aaa71708867bb5edd7dd083 +SIZE (KDE/release-service/25.08.2/kalk-25.08.2.tar.xz) = 79112 diff --git a/math/kbruch/distinfo b/math/kbruch/distinfo index 92b248879a58..577144b3ee96 100644 --- a/math/kbruch/distinfo +++ b/math/kbruch/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1757410126 -SHA256 (KDE/release-service/25.08.1/kbruch-25.08.1.tar.xz) = b2dba99b7039ca98a77d56d088baa0f31566dedb5ffacc9b88c8fd17a2d05776 -SIZE (KDE/release-service/25.08.1/kbruch-25.08.1.tar.xz) = 5163308 +TIMESTAMP = 1759874872 +SHA256 (KDE/release-service/25.08.2/kbruch-25.08.2.tar.xz) = b0b4e7fda9b603bacc2c629abbcd914069c6c64a27417fad223cd8325da3d12c +SIZE (KDE/release-service/25.08.2/kbruch-25.08.2.tar.xz) = 5163436 diff --git a/math/kcalc/distinfo b/math/kcalc/distinfo index 56922c080505..e9d9a18e9503 100644 --- a/math/kcalc/distinfo +++ b/math/kcalc/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1757410128 -SHA256 (KDE/release-service/25.08.1/kcalc-25.08.1.tar.xz) = fa9a892ac539dc250e4bdb243358d859aa024bf65479576c5a089c6b4435c155 -SIZE (KDE/release-service/25.08.1/kcalc-25.08.1.tar.xz) = 484440 +TIMESTAMP = 1759874874 +SHA256 (KDE/release-service/25.08.2/kcalc-25.08.2.tar.xz) = 927d5cb3d67e312f1478059886fb17a87f6218a02b38594df1643f7c58bf0781 +SIZE (KDE/release-service/25.08.2/kcalc-25.08.2.tar.xz) = 484316 diff --git a/math/kig/distinfo b/math/kig/distinfo index 09be68869c49..856a6fe29eb1 100644 --- a/math/kig/distinfo +++ b/math/kig/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1757410130 -SHA256 (KDE/release-service/25.08.1/kig-25.08.1.tar.xz) = f25a61a481b89a5a57dee616bc1bb35049c9ac2673b2480b4723f0e0c7c15f7f -SIZE (KDE/release-service/25.08.1/kig-25.08.1.tar.xz) = 3260744 +TIMESTAMP = 1759874877 +SHA256 (KDE/release-service/25.08.2/kig-25.08.2.tar.xz) = 60d38040156f3b0126388d9405e80d46b52efc4fb895432e4e61879d0bb3f9f3 +SIZE (KDE/release-service/25.08.2/kig-25.08.2.tar.xz) = 3262852 diff --git a/math/kmplot/distinfo b/math/kmplot/distinfo index eaaf687e446b..ecbee5e19684 100644 --- a/math/kmplot/distinfo +++ b/math/kmplot/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1757410133 -SHA256 (KDE/release-service/25.08.1/kmplot-25.08.1.tar.xz) = 1a29406d803b6f1e7c5c35285ef76a445322ae940919b8bbf5c3481e298e2311 -SIZE (KDE/release-service/25.08.1/kmplot-25.08.1.tar.xz) = 3029556 +TIMESTAMP = 1759874879 +SHA256 (KDE/release-service/25.08.2/kmplot-25.08.2.tar.xz) = 027cb1f4b00e3d3a5062c791ee9108ba5e83717fe2310d6f33d8fceeea0d91e2 +SIZE (KDE/release-service/25.08.2/kmplot-25.08.2.tar.xz) = 3030504 diff --git a/math/rocs/Makefile b/math/rocs/Makefile index 0f9a12347a5b..dab1cb906d75 100644 --- a/math/rocs/Makefile +++ b/math/rocs/Makefile @@ -1,27 +1,26 @@ PORTNAME= rocs DISTVERSION= ${KDE_APPLICATIONS_VERSION} -PORTREVISION= 1 CATEGORIES= math education kde kde-applications MAINTAINER= kde@FreeBSD.org COMMENT= KDE Graph theory IDE WWW= https://www.kde.org/applications/education/rocs LIB_DEPENDS= libboost_thread.so:devel/boost-libs USES= cmake compiler:c++11-lang desktop-file-utils gettext \ grantlee:5 kde:5 qt:5 tar:xz xorg USE_KDE= archive auth codecs completion config configwidgets coreaddons \ crash i18n itemviews jobwidgets kdeclarative kio package parts \ service solid sonnet syntaxhighlighting texteditor textwidgets \ widgetsaddons windowsystem xmlgui \ doctools:build ecm:build USE_QT= concurrent core dbus declarative gui network script \ scripttools svg widgets xml xmlpatterns \ buildtools:build qmake:build testlib:build USE_XORG= x11 USE_LDCONFIG= yes OPTIONS_DEFINE= DOCS .include diff --git a/math/rocs/distinfo b/math/rocs/distinfo index 1616b0315a3d..b8aeeff490ab 100644 --- a/math/rocs/distinfo +++ b/math/rocs/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1757410135 -SHA256 (KDE/release-service/25.08.1/rocs-25.08.1.tar.xz) = ecb9e7032ea8360fade8dbef0e62c06261d2c28fe7883ce8fa2a0bf2d9992a87 -SIZE (KDE/release-service/25.08.1/rocs-25.08.1.tar.xz) = 1569016 +TIMESTAMP = 1759874882 +SHA256 (KDE/release-service/25.08.2/rocs-25.08.2.tar.xz) = 04bfb3c61078653bc78994d23622ba42dd3cb03509a0c22185783951f1fa6e55 +SIZE (KDE/release-service/25.08.2/rocs-25.08.2.tar.xz) = 1572352 diff --git a/misc/artikulate/distinfo b/misc/artikulate/distinfo index 347fa95c7899..fd16ddf5fb49 100644 --- a/misc/artikulate/distinfo +++ b/misc/artikulate/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1757410137 -SHA256 (KDE/release-service/25.08.1/artikulate-25.08.1.tar.xz) = b95bf5e8e48cbacdca72bb825ca74be59d0b4cdd9413293b74553485d9cb6e82 -SIZE (KDE/release-service/25.08.1/artikulate-25.08.1.tar.xz) = 1059676 +TIMESTAMP = 1759874884 +SHA256 (KDE/release-service/25.08.2/artikulate-25.08.2.tar.xz) = cbac9b83db46129e5e818f82613751732c6e32e7a759677c4b917c7164a05f53 +SIZE (KDE/release-service/25.08.2/artikulate-25.08.2.tar.xz) = 1059696 diff --git a/misc/kdeedu-data/distinfo b/misc/kdeedu-data/distinfo index 98857169b1e1..6c19f70762d5 100644 --- a/misc/kdeedu-data/distinfo +++ b/misc/kdeedu-data/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1757410138 -SHA256 (KDE/release-service/25.08.1/kdeedu-data-25.08.1.tar.xz) = 4012ef9a56cb5b537be3fc35d487d5ad5a08d0bfc7d309ee5c41044090fcda6f -SIZE (KDE/release-service/25.08.1/kdeedu-data-25.08.1.tar.xz) = 338816 +TIMESTAMP = 1759874884 +SHA256 (KDE/release-service/25.08.2/kdeedu-data-25.08.2.tar.xz) = b138e9a55d9013cec98683d59a5d010f9d3193d8ce163f59d5a6126b9f01fa6f +SIZE (KDE/release-service/25.08.2/kdeedu-data-25.08.2.tar.xz) = 338740 diff --git a/misc/kgeography/distinfo b/misc/kgeography/distinfo index 10fdc48b5122..6f7149d78b26 100644 --- a/misc/kgeography/distinfo +++ b/misc/kgeography/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1757410140 -SHA256 (KDE/release-service/25.08.1/kgeography-25.08.1.tar.xz) = 9c50068f38444c85522d419ba71a9a5549ca5f86889d8f5fef07fe644ee71873 -SIZE (KDE/release-service/25.08.1/kgeography-25.08.1.tar.xz) = 12492796 +TIMESTAMP = 1759874887 +SHA256 (KDE/release-service/25.08.2/kgeography-25.08.2.tar.xz) = 57bb04e7744fa01e2b3b9b2a332f434c79203946e0e3268db79a02f229ed223d +SIZE (KDE/release-service/25.08.2/kgeography-25.08.2.tar.xz) = 12493868 diff --git a/misc/klettres/distinfo b/misc/klettres/distinfo index a02649d180ba..48d5bd27c0f3 100644 --- a/misc/klettres/distinfo +++ b/misc/klettres/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1757410143 -SHA256 (KDE/release-service/25.08.1/klettres-25.08.1.tar.xz) = 9037d4964304e0058269415552c1359c89be0a34920f2f6ec080ac03357f181c -SIZE (KDE/release-service/25.08.1/klettres-25.08.1.tar.xz) = 47187600 +TIMESTAMP = 1759874889 +SHA256 (KDE/release-service/25.08.2/klettres-25.08.2.tar.xz) = a7b56f46f91e02724642b932b35020b9bc652fe01126e1f011fcf9e6cc4490c3 +SIZE (KDE/release-service/25.08.2/klettres-25.08.2.tar.xz) = 47188008 diff --git a/misc/ktouch/distinfo b/misc/ktouch/distinfo index 244dc0ae98de..c7fefbfcbed3 100644 --- a/misc/ktouch/distinfo +++ b/misc/ktouch/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1757410143 -SHA256 (KDE/release-service/25.08.1/ktouch-25.08.1.tar.xz) = 453ee29c45531364d20a2fdf7643e59fcbe7e50e5e2ac1f889c74f9645db2e09 -SIZE (KDE/release-service/25.08.1/ktouch-25.08.1.tar.xz) = 4791508 +TIMESTAMP = 1759874890 +SHA256 (KDE/release-service/25.08.2/ktouch-25.08.2.tar.xz) = 0e063b157e60a2ba188c7ea8581fb3c7a27ce5faa0da7c6d6633e49e47bda785 +SIZE (KDE/release-service/25.08.2/ktouch-25.08.2.tar.xz) = 4789020 diff --git a/misc/kwordquiz/distinfo b/misc/kwordquiz/distinfo index 021a80b562aa..791a4524322c 100644 --- a/misc/kwordquiz/distinfo +++ b/misc/kwordquiz/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1757410145 -SHA256 (KDE/release-service/25.08.1/kwordquiz-25.08.1.tar.xz) = b410eed173ea37a3dc33c52293fe5fcc6e2af2f63185f90f3992433f195b0e82 -SIZE (KDE/release-service/25.08.1/kwordquiz-25.08.1.tar.xz) = 3619212 +TIMESTAMP = 1759874892 +SHA256 (KDE/release-service/25.08.2/kwordquiz-25.08.2.tar.xz) = bef5967b1c888b2481c77eab5f51f1062384bc86228abb41985f539e8525d23f +SIZE (KDE/release-service/25.08.2/kwordquiz-25.08.2.tar.xz) = 3619232 diff --git a/misc/libkeduvocdocument/distinfo b/misc/libkeduvocdocument/distinfo index 28e7ba6f73de..5595d3e37f9e 100644 --- a/misc/libkeduvocdocument/distinfo +++ b/misc/libkeduvocdocument/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1757410148 -SHA256 (KDE/release-service/25.08.1/libkeduvocdocument-25.08.1.tar.xz) = f8345a8af54ce8e778107511ccf369e12f2fdbec9238f83407f67c0757a16789 -SIZE (KDE/release-service/25.08.1/libkeduvocdocument-25.08.1.tar.xz) = 229316 +TIMESTAMP = 1759874895 +SHA256 (KDE/release-service/25.08.2/libkeduvocdocument-25.08.2.tar.xz) = d651ddb9ab7621a391da95bc62f9d1d7354e21c6da562bace75cf6d2525c0ade +SIZE (KDE/release-service/25.08.2/libkeduvocdocument-25.08.2.tar.xz) = 229308 diff --git a/misc/minuet/distinfo b/misc/minuet/distinfo index f3865750166c..2d7931ec9689 100644 --- a/misc/minuet/distinfo +++ b/misc/minuet/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1757410150 -SHA256 (KDE/release-service/25.08.1/minuet-25.08.1.tar.xz) = 4d5d10f1e58c38fdfd15e44ae4c1645c4540b11054e93bf0387021d8643dff13 -SIZE (KDE/release-service/25.08.1/minuet-25.08.1.tar.xz) = 27694460 +TIMESTAMP = 1759874897 +SHA256 (KDE/release-service/25.08.2/minuet-25.08.2.tar.xz) = a95e3d9bf39ffbe149e6fcb9a64e42bf5fbb57f1723eb89218a0e56a8074884a +SIZE (KDE/release-service/25.08.2/minuet-25.08.2.tar.xz) = 27699360 diff --git a/misc/parley/distinfo b/misc/parley/distinfo index f34ce6d75815..fdeec6eeb6f6 100644 --- a/misc/parley/distinfo +++ b/misc/parley/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1757410150 -SHA256 (KDE/release-service/25.08.1/parley-25.08.1.tar.xz) = 6b8679b463083456dcf2275d2c2ab3de9b80172a029df5060594fa3c99114900 -SIZE (KDE/release-service/25.08.1/parley-25.08.1.tar.xz) = 8447796 +TIMESTAMP = 1759874897 +SHA256 (KDE/release-service/25.08.2/parley-25.08.2.tar.xz) = 5949ab595a1181e61885e1df0a4388ce9ab916b461e9ae79c3e7028c52318e14 +SIZE (KDE/release-service/25.08.2/parley-25.08.2.tar.xz) = 8451500 diff --git a/multimedia/dragon/distinfo b/multimedia/dragon/distinfo index 217723fcb3e5..332eb1d842fd 100644 --- a/multimedia/dragon/distinfo +++ b/multimedia/dragon/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1757410153 -SHA256 (KDE/release-service/25.08.1/dragon-25.08.1.tar.xz) = bf6f3e198d1e9768ceabc77dccc130f2a6b43260ec23f2964f94abdc5d5f771f -SIZE (KDE/release-service/25.08.1/dragon-25.08.1.tar.xz) = 145428 +TIMESTAMP = 1760127572 +SHA256 (KDE/release-service/25.08.2/dragon-25.08.2.tar.xz) = 01434359e9c6fe4a97f1f9203e517b382aa923746b47ce6b252b36df0b818ae8 +SIZE (KDE/release-service/25.08.2/dragon-25.08.2.tar.xz) = 146488 diff --git a/multimedia/kamoso/distinfo b/multimedia/kamoso/distinfo index 190046f04512..8438dc6ecddf 100644 --- a/multimedia/kamoso/distinfo +++ b/multimedia/kamoso/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1757410155 -SHA256 (KDE/release-service/25.08.1/kamoso-25.08.1.tar.xz) = c5347bb111789a9b188c85e81fac33e760ab7efe7f14ddb0b689a96575ae5b3b -SIZE (KDE/release-service/25.08.1/kamoso-25.08.1.tar.xz) = 213512 +TIMESTAMP = 1759874902 +SHA256 (KDE/release-service/25.08.2/kamoso-25.08.2.tar.xz) = 472fcd4df517af37f983ef1168961c27393c25e4c53f04e41a26e07cf4504d5f +SIZE (KDE/release-service/25.08.2/kamoso-25.08.2.tar.xz) = 213496 diff --git a/multimedia/kasts/distinfo b/multimedia/kasts/distinfo index 0f6a1beb407c..0004596e910c 100644 --- a/multimedia/kasts/distinfo +++ b/multimedia/kasts/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1757410155 -SHA256 (KDE/release-service/25.08.1/kasts-25.08.1.tar.xz) = d21c7f84595992ff76f297789c73944c7815e746e2d36792d24ad0eae758303a -SIZE (KDE/release-service/25.08.1/kasts-25.08.1.tar.xz) = 646408 +TIMESTAMP = 1759874903 +SHA256 (KDE/release-service/25.08.2/kasts-25.08.2.tar.xz) = b0da49976fd126ccf2a4ab72f550c8b34efdb58830c0c1ef44371a685b7d3b99 +SIZE (KDE/release-service/25.08.2/kasts-25.08.2.tar.xz) = 646508 diff --git a/multimedia/kdemultimedia-ffmpegthumbs/distinfo b/multimedia/kdemultimedia-ffmpegthumbs/distinfo index 616a9cb4cdff..48a4e9ce78c6 100644 --- a/multimedia/kdemultimedia-ffmpegthumbs/distinfo +++ b/multimedia/kdemultimedia-ffmpegthumbs/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1757410157 -SHA256 (KDE/release-service/25.08.1/ffmpegthumbs-25.08.1.tar.xz) = 2c3023836394585179c87f51666e24e7f5b83abb492da77c5cfbc32cdf93dbdf -SIZE (KDE/release-service/25.08.1/ffmpegthumbs-25.08.1.tar.xz) = 33304 +TIMESTAMP = 1759874905 +SHA256 (KDE/release-service/25.08.2/ffmpegthumbs-25.08.2.tar.xz) = d2f1781bcdb0f1ca2fe6abbcde93c0d84507f0cee23650dfd94eb8a1b7e94c8c +SIZE (KDE/release-service/25.08.2/ffmpegthumbs-25.08.2.tar.xz) = 33292 diff --git a/multimedia/kdenlive/distinfo b/multimedia/kdenlive/distinfo index 02fc5d0bab3d..bab76d839d72 100644 --- a/multimedia/kdenlive/distinfo +++ b/multimedia/kdenlive/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1757410160 -SHA256 (KDE/release-service/25.08.1/kdenlive-25.08.1.tar.xz) = 4ca96d280db39510ff42c007d9089fafcd141cc61bdddb1902ab2683a34157fb -SIZE (KDE/release-service/25.08.1/kdenlive-25.08.1.tar.xz) = 14533088 +TIMESTAMP = 1760127557 +SHA256 (KDE/release-service/25.08.2/kdenlive-25.08.2.tar.xz) = 464529bae5c5fbe7473dbd0308fa8c3588f68f27b5c99644ad18329da557b8d9 +SIZE (KDE/release-service/25.08.2/kdenlive-25.08.2.tar.xz) = 14566728 diff --git a/multimedia/plasmatube/distinfo b/multimedia/plasmatube/distinfo index 3a568eea24dc..2b43ad0cc6c7 100644 --- a/multimedia/plasmatube/distinfo +++ b/multimedia/plasmatube/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1757410160 -SHA256 (KDE/release-service/25.08.1/plasmatube-25.08.1.tar.xz) = daac61ce78a71096c89971daa3ee4b168661b0abc5c2e6d892c3003671000d2f -SIZE (KDE/release-service/25.08.1/plasmatube-25.08.1.tar.xz) = 225240 +TIMESTAMP = 1759874908 +SHA256 (KDE/release-service/25.08.2/plasmatube-25.08.2.tar.xz) = 4c4f0f64d72ee18bec03336fb391bdb97e7800a2aa80b7195e68e7b0d6250254 +SIZE (KDE/release-service/25.08.2/plasmatube-25.08.2.tar.xz) = 225540 diff --git a/net-im/kaccounts-integration/distinfo b/net-im/kaccounts-integration/distinfo index 7c8819d899d3..e3d64e666386 100644 --- a/net-im/kaccounts-integration/distinfo +++ b/net-im/kaccounts-integration/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1757410162 -SHA256 (KDE/release-service/25.08.1/kaccounts-integration-25.08.1.tar.xz) = 6ec62cdb32a9763cb58fee0bc3411168bf634c6d91d7abf7b1eb0e7dd4bda839 -SIZE (KDE/release-service/25.08.1/kaccounts-integration-25.08.1.tar.xz) = 95184 +TIMESTAMP = 1759874910 +SHA256 (KDE/release-service/25.08.2/kaccounts-integration-25.08.2.tar.xz) = a5e06e0166949bf2de995753517edb553fa25eedd9eee5ac309f2f3ac1d988ee +SIZE (KDE/release-service/25.08.2/kaccounts-integration-25.08.2.tar.xz) = 95184 diff --git a/net-im/kaccounts-providers/distinfo b/net-im/kaccounts-providers/distinfo index e93956ecb629..348a0c254c10 100644 --- a/net-im/kaccounts-providers/distinfo +++ b/net-im/kaccounts-providers/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1757410165 -SHA256 (KDE/release-service/25.08.1/kaccounts-providers-25.08.1.tar.xz) = 91cb4fa6d1227f1bc1a5188b9c0893c6327b634c2aeefdf3a516292b9f6d6318 -SIZE (KDE/release-service/25.08.1/kaccounts-providers-25.08.1.tar.xz) = 68620 +TIMESTAMP = 1759874913 +SHA256 (KDE/release-service/25.08.2/kaccounts-providers-25.08.2.tar.xz) = f979ae4bd221eebc9b3c49cd466204f91ef18c1915a4dce83206f384add1afd3 +SIZE (KDE/release-service/25.08.2/kaccounts-providers-25.08.2.tar.xz) = 68652 diff --git a/net-im/neochat/distinfo b/net-im/neochat/distinfo index ac7694567880..316d10a2f118 100644 --- a/net-im/neochat/distinfo +++ b/net-im/neochat/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1757410167 -SHA256 (KDE/release-service/25.08.1/neochat-25.08.1.tar.xz) = 9ad75d279b7f28538e81a1ec25d1bb867c4409c4636d9d3facbfed219ef5e9b6 -SIZE (KDE/release-service/25.08.1/neochat-25.08.1.tar.xz) = 1203076 +TIMESTAMP = 1759874915 +SHA256 (KDE/release-service/25.08.2/neochat-25.08.2.tar.xz) = 5439247c9b674f6fd4f7240e9498adc21972c6fc35042aebb342bcfcaf3843f5 +SIZE (KDE/release-service/25.08.2/neochat-25.08.2.tar.xz) = 1204056 diff --git a/net-im/tokodon/distinfo b/net-im/tokodon/distinfo index 3481b182f538..6ec6a42481f6 100644 --- a/net-im/tokodon/distinfo +++ b/net-im/tokodon/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1757410167 -SHA256 (KDE/release-service/25.08.1/tokodon-25.08.1.tar.xz) = 1a9f9f1bd2e0abd9d2fb69790f336a5d7d99713ac2d059b5bef19d97b642a740 -SIZE (KDE/release-service/25.08.1/tokodon-25.08.1.tar.xz) = 814028 +TIMESTAMP = 1759874915 +SHA256 (KDE/release-service/25.08.2/tokodon-25.08.2.tar.xz) = f3261675c0c6ab421b4b01a4ff559eb14c3ee34c6cc71e6ea23efb11063ba234 +SIZE (KDE/release-service/25.08.2/tokodon-25.08.2.tar.xz) = 814208 diff --git a/net-p2p/ktorrent/distinfo b/net-p2p/ktorrent/distinfo index db433f8f8e13..64fd73399ee2 100644 --- a/net-p2p/ktorrent/distinfo +++ b/net-p2p/ktorrent/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1757410170 -SHA256 (KDE/release-service/25.08.1/ktorrent-25.08.1.tar.xz) = b468c2ea56bdb0ed2a97daf5ff7dbcd250070b950e185cebb633d87f21ec724f -SIZE (KDE/release-service/25.08.1/ktorrent-25.08.1.tar.xz) = 2237024 +TIMESTAMP = 1759874918 +SHA256 (KDE/release-service/25.08.2/ktorrent-25.08.2.tar.xz) = 9ba2aef766bb12705c1cd1271da2b6359a71b25a37f7a431407b62f8eb15e2bd +SIZE (KDE/release-service/25.08.2/ktorrent-25.08.2.tar.xz) = 2237092 diff --git a/net-p2p/libktorrent/distinfo b/net-p2p/libktorrent/distinfo index 9a9cf98b0856..59281d708c72 100644 --- a/net-p2p/libktorrent/distinfo +++ b/net-p2p/libktorrent/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1757410172 -SHA256 (KDE/release-service/25.08.1/libktorrent-25.08.1.tar.xz) = 85e3150a100180fa5267f55f0740dab644dc735cfd80f741d298bfbe78ac1602 -SIZE (KDE/release-service/25.08.1/libktorrent-25.08.1.tar.xz) = 607152 +TIMESTAMP = 1759874920 +SHA256 (KDE/release-service/25.08.2/libktorrent-25.08.2.tar.xz) = 45d8088c6cd7537883667e11cbfe937f964cbd8070d7dea5d39bd93a11b55836 +SIZE (KDE/release-service/25.08.2/libktorrent-25.08.2.tar.xz) = 607096 diff --git a/net/akonadi-calendar/distinfo b/net/akonadi-calendar/distinfo index d434423bb0a1..00bf776778d3 100644 --- a/net/akonadi-calendar/distinfo +++ b/net/akonadi-calendar/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1757410174 -SHA256 (KDE/release-service/25.08.1/akonadi-calendar-25.08.1.tar.xz) = 37be4a6f4db372a5c1ac7c2d87217b68cd3222d622898389728c7ce698b4885c -SIZE (KDE/release-service/25.08.1/akonadi-calendar-25.08.1.tar.xz) = 542728 +TIMESTAMP = 1759874923 +SHA256 (KDE/release-service/25.08.2/akonadi-calendar-25.08.2.tar.xz) = c27aedc92cf29570636b3a1dc4044abee29a6a36d3536deeb32d558d79b35461 +SIZE (KDE/release-service/25.08.2/akonadi-calendar-25.08.2.tar.xz) = 542628 diff --git a/net/akonadi-contacts/distinfo b/net/akonadi-contacts/distinfo index c272496ea1cc..56b8de4461b2 100644 --- a/net/akonadi-contacts/distinfo +++ b/net/akonadi-contacts/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1757410177 -SHA256 (KDE/release-service/25.08.1/akonadi-contacts-25.08.1.tar.xz) = 893a5f53f8fdebfdee5c19b2fc3fc45441654ca98e6c5e61057adeaecabb3f1b -SIZE (KDE/release-service/25.08.1/akonadi-contacts-25.08.1.tar.xz) = 445576 +TIMESTAMP = 1759874925 +SHA256 (KDE/release-service/25.08.2/akonadi-contacts-25.08.2.tar.xz) = 650c034cdf2aab5e53a8be579cad677a9d8fcc35edb704e77202e905b0f8e202 +SIZE (KDE/release-service/25.08.2/akonadi-contacts-25.08.2.tar.xz) = 445632 diff --git a/net/akonadi-mime/distinfo b/net/akonadi-mime/distinfo index 650b569ca908..7bfe5ba657b1 100644 --- a/net/akonadi-mime/distinfo +++ b/net/akonadi-mime/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1757410179 -SHA256 (KDE/release-service/25.08.1/akonadi-mime-25.08.1.tar.xz) = 56d0a94bba6af5ddb9d219572ad3d6bf0a0353a7b88eee8fe2b8fdab9129376c -SIZE (KDE/release-service/25.08.1/akonadi-mime-25.08.1.tar.xz) = 182444 +TIMESTAMP = 1759874928 +SHA256 (KDE/release-service/25.08.2/akonadi-mime-25.08.2.tar.xz) = 00075131b46bc1afcbeaa3fce8852f76bed6f05315798e86118e0fcae0c4de4b +SIZE (KDE/release-service/25.08.2/akonadi-mime-25.08.2.tar.xz) = 182444 diff --git a/net/akonadi-search/distinfo b/net/akonadi-search/distinfo index d5977ee71c48..bd22d9f5c718 100644 --- a/net/akonadi-search/distinfo +++ b/net/akonadi-search/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1757410181 -SHA256 (KDE/release-service/25.08.1/akonadi-search-25.08.1.tar.xz) = c7f5d6b9e00b87200aaef87042afd3395d458f80857cc5eb1c1fef41b4fbbcb9 -SIZE (KDE/release-service/25.08.1/akonadi-search-25.08.1.tar.xz) = 116064 +TIMESTAMP = 1759874930 +SHA256 (KDE/release-service/25.08.2/akonadi-search-25.08.2.tar.xz) = 2be5629efcc7f0134fdb61a9f9062bc59b00ab55e81b8efc76af18cb5d66a588 +SIZE (KDE/release-service/25.08.2/akonadi-search-25.08.2.tar.xz) = 116052 diff --git a/net/alligator/distinfo b/net/alligator/distinfo index 7082a20e08ec..d1d0c75b277d 100644 --- a/net/alligator/distinfo +++ b/net/alligator/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1757410182 -SHA256 (KDE/release-service/25.08.1/alligator-25.08.1.tar.xz) = 7013c2061c031b360d71cc0a692679de33dc88040279c428ca97639940d8aa67 -SIZE (KDE/release-service/25.08.1/alligator-25.08.1.tar.xz) = 241024 +TIMESTAMP = 1759874930 +SHA256 (KDE/release-service/25.08.2/alligator-25.08.2.tar.xz) = 408663473a4ab942569d27a8d527e4ae852b2bcbc3ca1a4741c63e1d7eb83f66 +SIZE (KDE/release-service/25.08.2/alligator-25.08.2.tar.xz) = 241088 diff --git a/net/calendarsupport/distinfo b/net/calendarsupport/distinfo index 281983b5d3b9..c2fe495b9c3e 100644 --- a/net/calendarsupport/distinfo +++ b/net/calendarsupport/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1757410184 -SHA256 (KDE/release-service/25.08.1/calendarsupport-25.08.1.tar.xz) = 22f8206efa93e020101248b6dfd64a082bab3f3a5c48c9b50a301473f91fe447 -SIZE (KDE/release-service/25.08.1/calendarsupport-25.08.1.tar.xz) = 990860 +TIMESTAMP = 1759874933 +SHA256 (KDE/release-service/25.08.2/calendarsupport-25.08.2.tar.xz) = 2f3c3da6ff600c571c962e18cab7d2a6c780d79e282b94dec6d70a6f084d6d46 +SIZE (KDE/release-service/25.08.2/calendarsupport-25.08.2.tar.xz) = 990688 diff --git a/net/eventviews/distinfo b/net/eventviews/distinfo index 27bd57ffc8cf..1516725282df 100644 --- a/net/eventviews/distinfo +++ b/net/eventviews/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1757410186 -SHA256 (KDE/release-service/25.08.1/eventviews-25.08.1.tar.xz) = 5c6bc6a874655105947d7760054e59b57da4e77792d3fd520ced1cb7596b9d01 -SIZE (KDE/release-service/25.08.1/eventviews-25.08.1.tar.xz) = 523988 +TIMESTAMP = 1759874935 +SHA256 (KDE/release-service/25.08.2/eventviews-25.08.2.tar.xz) = 6dc1388824fe5ab56d1be15b397e8884abe8e1dba37a5d7d3c6b1743c4d76235 +SIZE (KDE/release-service/25.08.2/eventviews-25.08.2.tar.xz) = 524020 diff --git a/net/incidenceeditor/distinfo b/net/incidenceeditor/distinfo index 81420be01999..f0118702705a 100644 --- a/net/incidenceeditor/distinfo +++ b/net/incidenceeditor/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1757410189 -SHA256 (KDE/release-service/25.08.1/incidenceeditor-25.08.1.tar.xz) = e15675399975b73617af51b7ad5ca07f105908d2abeda8627e7ec1bdc3e40bd5 -SIZE (KDE/release-service/25.08.1/incidenceeditor-25.08.1.tar.xz) = 606896 +TIMESTAMP = 1759874938 +SHA256 (KDE/release-service/25.08.2/incidenceeditor-25.08.2.tar.xz) = 096581fd768c5b071ac4afe67c9eb3741e309b600a724bbac12af69746c68098 +SIZE (KDE/release-service/25.08.2/incidenceeditor-25.08.2.tar.xz) = 606928 diff --git a/net/kcalutils/distinfo b/net/kcalutils/distinfo index f0797d1a0419..52371d107558 100644 --- a/net/kcalutils/distinfo +++ b/net/kcalutils/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1757410191 -SHA256 (KDE/release-service/25.08.1/kcalutils-25.08.1.tar.xz) = 74fb015befbd08d449f1ff2c39218267a6cde7ede3e28142abba72d5ead12b08 -SIZE (KDE/release-service/25.08.1/kcalutils-25.08.1.tar.xz) = 372256 +TIMESTAMP = 1759874940 +SHA256 (KDE/release-service/25.08.2/kcalutils-25.08.2.tar.xz) = b7b60ad808da1777f6f905b33e874da77a06e0bd2355bf577a30e94e30c608a3 +SIZE (KDE/release-service/25.08.2/kcalutils-25.08.2.tar.xz) = 371764 diff --git a/net/kdenetwork-filesharing/distinfo b/net/kdenetwork-filesharing/distinfo index 0e81e42aa1f1..d0d7ab5e040e 100644 --- a/net/kdenetwork-filesharing/distinfo +++ b/net/kdenetwork-filesharing/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1757410193 -SHA256 (KDE/release-service/25.08.1/kdenetwork-filesharing-25.08.1.tar.xz) = a63ac269ab8d1363d88a0df0830e39b74bc06f0a60fd126062b6abdbdfcedaef -SIZE (KDE/release-service/25.08.1/kdenetwork-filesharing-25.08.1.tar.xz) = 510212 +TIMESTAMP = 1759874942 +SHA256 (KDE/release-service/25.08.2/kdenetwork-filesharing-25.08.2.tar.xz) = 926e40edfc189ce5a5043c323b836accea0f5d4f911708ff41459840b99660ee +SIZE (KDE/release-service/25.08.2/kdenetwork-filesharing-25.08.2.tar.xz) = 511024 diff --git a/net/kget/distinfo b/net/kget/distinfo index 13c08ec187c9..450bc933391e 100644 --- a/net/kget/distinfo +++ b/net/kget/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1757410196 -SHA256 (KDE/release-service/25.08.1/kget-25.08.1.tar.xz) = 67adedc2eb2ef24e30f33ad99f9556263c28c43d1ca718323fed11d0c366e25d -SIZE (KDE/release-service/25.08.1/kget-25.08.1.tar.xz) = 4853816 +TIMESTAMP = 1759874945 +SHA256 (KDE/release-service/25.08.2/kget-25.08.2.tar.xz) = 6214d5801acea5a7a7f1e87c268c617637213297bd3aa81708a6e97c3b37721f +SIZE (KDE/release-service/25.08.2/kget-25.08.2.tar.xz) = 4853992 diff --git a/net/kidentitymanagement/distinfo b/net/kidentitymanagement/distinfo index ab7826364955..c4d0c9e4e8bd 100644 --- a/net/kidentitymanagement/distinfo +++ b/net/kidentitymanagement/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1757410198 -SHA256 (KDE/release-service/25.08.1/kidentitymanagement-25.08.1.tar.xz) = ea18db60e752d9f883e0a7d3e23c6e689ce7e892bd74e1fdd715b7bd3fa8fb4d -SIZE (KDE/release-service/25.08.1/kidentitymanagement-25.08.1.tar.xz) = 200624 +TIMESTAMP = 1759874947 +SHA256 (KDE/release-service/25.08.2/kidentitymanagement-25.08.2.tar.xz) = d7923913a4d8b0d9feecbe2d8783dde0f71170b351233ce47ddacbddb0bdeb91 +SIZE (KDE/release-service/25.08.2/kidentitymanagement-25.08.2.tar.xz) = 200636 diff --git a/net/kimap/distinfo b/net/kimap/distinfo index 2bbfcb6826f6..ed9be861eff9 100644 --- a/net/kimap/distinfo +++ b/net/kimap/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1757410200 -SHA256 (KDE/release-service/25.08.1/kimap-25.08.1.tar.xz) = 7a23bb31876af14a046734adb287d0aef9bd7604c661b325c4bb7dad51753275 -SIZE (KDE/release-service/25.08.1/kimap-25.08.1.tar.xz) = 136232 +TIMESTAMP = 1759874950 +SHA256 (KDE/release-service/25.08.2/kimap-25.08.2.tar.xz) = ffd4ae77417037f3657672aa2ca1415d0af557ae29c1a77a8496e616a630e867 +SIZE (KDE/release-service/25.08.2/kimap-25.08.2.tar.xz) = 136180 diff --git a/net/kio-gdrive/distinfo b/net/kio-gdrive/distinfo index 0ddd9f07b9d9..1364bd16f49b 100644 --- a/net/kio-gdrive/distinfo +++ b/net/kio-gdrive/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1757410201 -SHA256 (KDE/release-service/25.08.1/kio-gdrive-25.08.1.tar.xz) = 60bbfc51f52c06c072a0890b6c1ea86e2170d3b6a60c817127891dc21441229a -SIZE (KDE/release-service/25.08.1/kio-gdrive-25.08.1.tar.xz) = 83028 +TIMESTAMP = 1759874950 +SHA256 (KDE/release-service/25.08.2/kio-gdrive-25.08.2.tar.xz) = e6c371582454f53a9b807f0e0c340c155d61faca3cf1a247c18fa0e4f0d16325 +SIZE (KDE/release-service/25.08.2/kio-gdrive-25.08.2.tar.xz) = 83060 diff --git a/net/kio-zeroconf/distinfo b/net/kio-zeroconf/distinfo index d46e84ee156d..e65e25091ce3 100644 --- a/net/kio-zeroconf/distinfo +++ b/net/kio-zeroconf/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1757410203 -SHA256 (KDE/release-service/25.08.1/kio-zeroconf-25.08.1.tar.xz) = 80550abba004ee9db58c071a4699c76b3e6ce083ecf6ccbc268733a66a874770 -SIZE (KDE/release-service/25.08.1/kio-zeroconf-25.08.1.tar.xz) = 44860 +TIMESTAMP = 1759874952 +SHA256 (KDE/release-service/25.08.2/kio-zeroconf-25.08.2.tar.xz) = 783df73797478a6a2b0d54abc66dbbc1978aa8a9da4825b1c3c87e4d81eb0ab2 +SIZE (KDE/release-service/25.08.2/kio-zeroconf-25.08.2.tar.xz) = 44868 diff --git a/net/kitinerary/distinfo b/net/kitinerary/distinfo index 3f22e8453f87..54d76a84ffae 100644 --- a/net/kitinerary/distinfo +++ b/net/kitinerary/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1757410205 -SHA256 (KDE/release-service/25.08.1/kitinerary-25.08.1.tar.xz) = 92c0d496069dbc0de7ef8c360650f3350d2e0a6d13ee02814633cba7fc7003e3 -SIZE (KDE/release-service/25.08.1/kitinerary-25.08.1.tar.xz) = 2119412 +TIMESTAMP = 1759874955 +SHA256 (KDE/release-service/25.08.2/kitinerary-25.08.2.tar.xz) = e0fdb1c29f3c76ee5197278e55b6ac2c1ec0b81e80c2685bdd34b30cb592586d +SIZE (KDE/release-service/25.08.2/kitinerary-25.08.2.tar.xz) = 2122340 diff --git a/net/kldap/distinfo b/net/kldap/distinfo index 6e237835416a..a9219600aa56 100644 --- a/net/kldap/distinfo +++ b/net/kldap/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1757410207 -SHA256 (KDE/release-service/25.08.1/kldap-25.08.1.tar.xz) = 01397cf4c4c27a2a9de0d81ebe5b89e2bd0f6e3c578002fa501db1d0b3cf7039 -SIZE (KDE/release-service/25.08.1/kldap-25.08.1.tar.xz) = 193780 +TIMESTAMP = 1759874957 +SHA256 (KDE/release-service/25.08.2/kldap-25.08.2.tar.xz) = 92067b9cd063c3fd97f6706178781951b9a62861bf31604afbf3fd04c4b7e549 +SIZE (KDE/release-service/25.08.2/kldap-25.08.2.tar.xz) = 193792 diff --git a/net/kmailtransport/distinfo b/net/kmailtransport/distinfo index e1fb8a77ec07..3294f00eccb0 100644 --- a/net/kmailtransport/distinfo +++ b/net/kmailtransport/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1757410210 -SHA256 (KDE/release-service/25.08.1/kmailtransport-25.08.1.tar.xz) = f5aad68e46c4f1e45c913d4cfcf7d0add0811e4c1919955d07c0431ac5b48190 -SIZE (KDE/release-service/25.08.1/kmailtransport-25.08.1.tar.xz) = 194132 +TIMESTAMP = 1759874960 +SHA256 (KDE/release-service/25.08.2/kmailtransport-25.08.2.tar.xz) = f6f9d8aff2654c6aa31358059689b9b10846cfe05e53445fcb958b2b0fe5b794 +SIZE (KDE/release-service/25.08.2/kmailtransport-25.08.2.tar.xz) = 194172 diff --git a/net/kmbox/distinfo b/net/kmbox/distinfo index 3b92dd284783..ddffbbb3d617 100644 --- a/net/kmbox/distinfo +++ b/net/kmbox/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1757410212 -SHA256 (KDE/release-service/25.08.1/kmbox-25.08.1.tar.xz) = 24445885fa9cdc655af68c3948666068a44c54a5e6eaee0cb743dcc8926d676e -SIZE (KDE/release-service/25.08.1/kmbox-25.08.1.tar.xz) = 31612 +TIMESTAMP = 1759874962 +SHA256 (KDE/release-service/25.08.2/kmbox-25.08.2.tar.xz) = 2889b033804b9bbbc4ce89c91263f1d661e65195fd3e7cb029ccdaeaf2e1b92b +SIZE (KDE/release-service/25.08.2/kmbox-25.08.2.tar.xz) = 31588 diff --git a/net/kmime/distinfo b/net/kmime/distinfo index 1e8ae893a7b5..11df9d6207d0 100644 --- a/net/kmime/distinfo +++ b/net/kmime/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1757410214 -SHA256 (KDE/release-service/25.08.1/kmime-25.08.1.tar.xz) = 3ced311cc5eba781d207730d999642468dade70250b221c9e00b3fa275e45f59 -SIZE (KDE/release-service/25.08.1/kmime-25.08.1.tar.xz) = 164516 +TIMESTAMP = 1759874965 +SHA256 (KDE/release-service/25.08.2/kmime-25.08.2.tar.xz) = f7d2ba55b3aa12e904892209ad9fe271cd5a3a58c29c38a26dd21003aa550eaf +SIZE (KDE/release-service/25.08.2/kmime-25.08.2.tar.xz) = 164636 diff --git a/net/kontactinterface/distinfo b/net/kontactinterface/distinfo index 1a30f3b56dfa..6093caca686e 100644 --- a/net/kontactinterface/distinfo +++ b/net/kontactinterface/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1757410217 -SHA256 (KDE/release-service/25.08.1/kontactinterface-25.08.1.tar.xz) = ddc43875091dcf1b14643c2c01ef86c09e1ec839a9bd239fca7b0162b8bf4e09 -SIZE (KDE/release-service/25.08.1/kontactinterface-25.08.1.tar.xz) = 43244 +TIMESTAMP = 1759874967 +SHA256 (KDE/release-service/25.08.2/kontactinterface-25.08.2.tar.xz) = ea5eb22feb8754c50ed4a1a7e16598676c06b52d79fe63259fefe21e52c97329 +SIZE (KDE/release-service/25.08.2/kontactinterface-25.08.2.tar.xz) = 43240 diff --git a/net/kpimtextedit/distinfo b/net/kpimtextedit/distinfo index f23e44d52665..f28186e3f9eb 100644 --- a/net/kpimtextedit/distinfo +++ b/net/kpimtextedit/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1757410219 -SHA256 (KDE/release-service/25.08.1/kpimtextedit-25.08.1.tar.xz) = 0f26be94a2fd0815181dbb0bcb6537239bf18f5f9d1c0b278e6faa54f534ec92 -SIZE (KDE/release-service/25.08.1/kpimtextedit-25.08.1.tar.xz) = 183496 +TIMESTAMP = 1759874970 +SHA256 (KDE/release-service/25.08.2/kpimtextedit-25.08.2.tar.xz) = 8d956042c9d2559a0e16953a380b43f9076a4c09ee798a1f35c08bda1da5c7b1 +SIZE (KDE/release-service/25.08.2/kpimtextedit-25.08.2.tar.xz) = 183544 diff --git a/net/krdc/distinfo b/net/krdc/distinfo index 8889669fc7fe..4ed8960d5d2e 100644 --- a/net/krdc/distinfo +++ b/net/krdc/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1757410221 -SHA256 (KDE/release-service/25.08.1/krdc-25.08.1.tar.xz) = 134d1b0186b611883ad7db34ebcae54500c674050e786f57889042845582769b -SIZE (KDE/release-service/25.08.1/krdc-25.08.1.tar.xz) = 1598408 +TIMESTAMP = 1759874972 +SHA256 (KDE/release-service/25.08.2/krdc-25.08.2.tar.xz) = e32d650e933257566e0c1b84ae0cfced6dd6a4dff33a04795a4e375bf8705e7a +SIZE (KDE/release-service/25.08.2/krdc-25.08.2.tar.xz) = 1598592 diff --git a/net/krfb/distinfo b/net/krfb/distinfo index 2b7b4e1cea4a..5473c281dfd9 100644 --- a/net/krfb/distinfo +++ b/net/krfb/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1757410224 -SHA256 (KDE/release-service/25.08.1/krfb-25.08.1.tar.xz) = 426fd69ab4bf47ea0e275193cac9ba56c1f2e42195f21b08092ce8a591161557 -SIZE (KDE/release-service/25.08.1/krfb-25.08.1.tar.xz) = 1220488 +TIMESTAMP = 1759874974 +SHA256 (KDE/release-service/25.08.2/krfb-25.08.2.tar.xz) = 881b8a42933e2d57cc199d63ab9f4ab90f567aa5fa2a7f49cd5e1143ae2b28da +SIZE (KDE/release-service/25.08.2/krfb-25.08.2.tar.xz) = 1221616 diff --git a/net/ksmtp/distinfo b/net/ksmtp/distinfo index 3441fa75ee21..59aeeb54ce44 100644 --- a/net/ksmtp/distinfo +++ b/net/ksmtp/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1757410226 -SHA256 (KDE/release-service/25.08.1/ksmtp-25.08.1.tar.xz) = 4532a7bb89af43f7933f4479b56b29efa18f4d8262f7a4be8217f1ed17ce68eb -SIZE (KDE/release-service/25.08.1/ksmtp-25.08.1.tar.xz) = 55400 +TIMESTAMP = 1759874977 +SHA256 (KDE/release-service/25.08.2/ksmtp-25.08.2.tar.xz) = 885f82d128314cf4e1268b997746c35c4c47b292663246cd8ca3fbf84aa6d9f0 +SIZE (KDE/release-service/25.08.2/ksmtp-25.08.2.tar.xz) = 55380 diff --git a/net/ktnef/distinfo b/net/ktnef/distinfo index b2ea9f54c3d8..a0a0d2326541 100644 --- a/net/ktnef/distinfo +++ b/net/ktnef/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1757410228 -SHA256 (KDE/release-service/25.08.1/ktnef-25.08.1.tar.xz) = be7b58f659d90a091ba6f1af2785c4b625bdaaf83c1dd5cf9e6b8fe0f186780f -SIZE (KDE/release-service/25.08.1/ktnef-25.08.1.tar.xz) = 317000 +TIMESTAMP = 1759874979 +SHA256 (KDE/release-service/25.08.2/ktnef-25.08.2.tar.xz) = bfe945835a963094a084927dc6470ef3bf23dddb1b4490be641da9c2b03278c7 +SIZE (KDE/release-service/25.08.2/ktnef-25.08.2.tar.xz) = 316980 diff --git a/net/libgravatar/distinfo b/net/libgravatar/distinfo index e7f2e16fb856..abfd850eb633 100644 --- a/net/libgravatar/distinfo +++ b/net/libgravatar/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1757410231 -SHA256 (KDE/release-service/25.08.1/libgravatar-25.08.1.tar.xz) = 2ecadb8ca727471312bb46dde0a960954c6e3501fa609ff96274f9db117061a3 -SIZE (KDE/release-service/25.08.1/libgravatar-25.08.1.tar.xz) = 40964 +TIMESTAMP = 1759874982 +SHA256 (KDE/release-service/25.08.2/libgravatar-25.08.2.tar.xz) = 2bdbb02dd01023075b9032411424d415acd8b22a25a4a2e04ace7592126bc1e6 +SIZE (KDE/release-service/25.08.2/libgravatar-25.08.2.tar.xz) = 40956 diff --git a/net/libkgapi/distinfo b/net/libkgapi/distinfo index a761081e1562..dd885ef6b428 100644 --- a/net/libkgapi/distinfo +++ b/net/libkgapi/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1757410233 -SHA256 (KDE/release-service/25.08.1/libkgapi-25.08.1.tar.xz) = 5a93f5ecd46285314071722b045f171f80b3a5e60d1fe70e70e5b7e49781e6c3 -SIZE (KDE/release-service/25.08.1/libkgapi-25.08.1.tar.xz) = 341444 +TIMESTAMP = 1759874984 +SHA256 (KDE/release-service/25.08.2/libkgapi-25.08.2.tar.xz) = 850ac672805510fcbb68a8384a212c38c3ffec238e58879bc55b7491e2e901a7 +SIZE (KDE/release-service/25.08.2/libkgapi-25.08.2.tar.xz) = 341416 diff --git a/net/libksieve/distinfo b/net/libksieve/distinfo index 9fa282550bdc..3da84fccb806 100644 --- a/net/libksieve/distinfo +++ b/net/libksieve/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1757410235 -SHA256 (KDE/release-service/25.08.1/libksieve-25.08.1.tar.xz) = bac7c94d6898a6e8cf222ae0313aadb5bcd4ecfbd9a3ec1210a6a669a531345a -SIZE (KDE/release-service/25.08.1/libksieve-25.08.1.tar.xz) = 623064 +TIMESTAMP = 1759874987 +SHA256 (KDE/release-service/25.08.2/libksieve-25.08.2.tar.xz) = 9f0ee6de58c67b8158873e97e86994a238cb62b91e5b91d02b4041e966ce2478 +SIZE (KDE/release-service/25.08.2/libksieve-25.08.2.tar.xz) = 623048 diff --git a/net/mailcommon/distinfo b/net/mailcommon/distinfo index da7eab730a8d..56f33d215aa1 100644 --- a/net/mailcommon/distinfo +++ b/net/mailcommon/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1757410238 -SHA256 (KDE/release-service/25.08.1/mailcommon-25.08.1.tar.xz) = 027baff72106e42d63544f323f45869ec4b6ae99e7a0b00e30da0bc221f77305 -SIZE (KDE/release-service/25.08.1/mailcommon-25.08.1.tar.xz) = 822748 +TIMESTAMP = 1759874989 +SHA256 (KDE/release-service/25.08.2/mailcommon-25.08.2.tar.xz) = ea68b250e3ba3e3b22c21bc40ce4ed401502d1e59e8edcf70c5b1fc9d4b34dc7 +SIZE (KDE/release-service/25.08.2/mailcommon-25.08.2.tar.xz) = 823824 diff --git a/net/mailimporter/distinfo b/net/mailimporter/distinfo index e0652c8ed445..b985b4b09a35 100644 --- a/net/mailimporter/distinfo +++ b/net/mailimporter/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1757410240 -SHA256 (KDE/release-service/25.08.1/mailimporter-25.08.1.tar.xz) = 304bdc9155bb74aaceca3cb79608b6b80d1494809683055645ad9570ea8db7cc -SIZE (KDE/release-service/25.08.1/mailimporter-25.08.1.tar.xz) = 603564 +TIMESTAMP = 1759874991 +SHA256 (KDE/release-service/25.08.2/mailimporter-25.08.2.tar.xz) = cfef9f971268245188b4415f8e7d1ba0f7efa8f9925c7a4db0887367f20fb848 +SIZE (KDE/release-service/25.08.2/mailimporter-25.08.2.tar.xz) = 603492 diff --git a/net/messagelib/distinfo b/net/messagelib/distinfo index 32e7d834d4c9..597c0be0302e 100644 --- a/net/messagelib/distinfo +++ b/net/messagelib/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1757410242 -SHA256 (KDE/release-service/25.08.1/messagelib-25.08.1.tar.xz) = 99fe89328e2147b3c814527eba3851a433e6a7798384d0e42469b681edadd8eb -SIZE (KDE/release-service/25.08.1/messagelib-25.08.1.tar.xz) = 7427348 +TIMESTAMP = 1759874994 +SHA256 (KDE/release-service/25.08.2/messagelib-25.08.2.tar.xz) = 46456b73d6cdd10c5d1ddb8fe53fc0ff61e1ce38c95c2fc21299dbe9e4a647ee +SIZE (KDE/release-service/25.08.2/messagelib-25.08.2.tar.xz) = 7488172 diff --git a/net/mimetreeparser/distinfo b/net/mimetreeparser/distinfo index aabefd98f36f..d4e19cb99461 100644 --- a/net/mimetreeparser/distinfo +++ b/net/mimetreeparser/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1757410245 -SHA256 (KDE/release-service/25.08.1/mimetreeparser-25.08.1.tar.xz) = 0b7e98e1c5f7109ceae4b1cb4ddfeb0f5d008387e3e7562a020fa14ba31365a4 -SIZE (KDE/release-service/25.08.1/mimetreeparser-25.08.1.tar.xz) = 654268 +TIMESTAMP = 1759874996 +SHA256 (KDE/release-service/25.08.2/mimetreeparser-25.08.2.tar.xz) = fa32d41c268474c0e4524f565c48325e5d1d9082796dd67608a9bea5146bedb2 +SIZE (KDE/release-service/25.08.2/mimetreeparser-25.08.2.tar.xz) = 654288 diff --git a/net/pimcommon/distinfo b/net/pimcommon/distinfo index 0a8f9cc878c1..90d83d2df2f8 100644 --- a/net/pimcommon/distinfo +++ b/net/pimcommon/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1757410247 -SHA256 (KDE/release-service/25.08.1/pimcommon-25.08.1.tar.xz) = 48176c84b6ed9afcce383510bb17c69ea6350c2893136ebd96a28d59fd739141 -SIZE (KDE/release-service/25.08.1/pimcommon-25.08.1.tar.xz) = 379288 +TIMESTAMP = 1759874999 +SHA256 (KDE/release-service/25.08.2/pimcommon-25.08.2.tar.xz) = de341499406f317dafe9fa3e5eeb600bbd0ec69f34e28e8e0bb8ffdabe8e950b +SIZE (KDE/release-service/25.08.2/pimcommon-25.08.2.tar.xz) = 379332 diff --git a/science/kalzium/distinfo b/science/kalzium/distinfo index 2ed98aa072cd..599d7e0e8674 100644 --- a/science/kalzium/distinfo +++ b/science/kalzium/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1757410249 -SHA256 (KDE/release-service/25.08.1/kalzium-25.08.1.tar.xz) = 64ecba7f0cc8333ee528fc951e500e591d263380e72af59e36b37654a8e1ae8b -SIZE (KDE/release-service/25.08.1/kalzium-25.08.1.tar.xz) = 22661180 +TIMESTAMP = 1759875001 +SHA256 (KDE/release-service/25.08.2/kalzium-25.08.2.tar.xz) = 99f1da3eb04aee31b45d928b5dd30a1675dc204194ba643f8973f4ae6fdbcfed +SIZE (KDE/release-service/25.08.2/kalzium-25.08.2.tar.xz) = 22663504 diff --git a/science/step/distinfo b/science/step/distinfo index 5db7278905a9..2c5c6332d628 100644 --- a/science/step/distinfo +++ b/science/step/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1757410252 -SHA256 (KDE/release-service/25.08.1/step-25.08.1.tar.xz) = d5ae8c25718f6a647556210f2d4055de1ccd342d3b948f14f9e2ee27ab48b154 -SIZE (KDE/release-service/25.08.1/step-25.08.1.tar.xz) = 1007604 +TIMESTAMP = 1759875004 +SHA256 (KDE/release-service/25.08.2/step-25.08.2.tar.xz) = c00d24fff1645eb2496a615e8e4736544ee35fd38cc1b84b735e5a251ac82c33 +SIZE (KDE/release-service/25.08.2/step-25.08.2.tar.xz) = 1016200 diff --git a/science/step/pkg-plist b/science/step/pkg-plist index 4186212eb37b..2fe4b8582cad 100644 --- a/science/step/pkg-plist +++ b/science/step/pkg-plist @@ -1,1670 +1,1713 @@ 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_example_files.mo +share/locale/ar/LC_MESSAGES/step_objinfo_files.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/ar/brownian.step +%%DATADIR%%/examples/ar/doublependulum.step +%%DATADIR%%/examples/ar/eightpendula.step +%%DATADIR%%/examples/ar/first.step +%%DATADIR%%/examples/ar/fourpendula.step +%%DATADIR%%/examples/ar/gas.step +%%DATADIR%%/examples/ar/graph.step +%%DATADIR%%/examples/ar/liquid.step +%%DATADIR%%/examples/ar/lissajous.step +%%DATADIR%%/examples/ar/motor.step +%%DATADIR%%/examples/ar/motor1.step +%%DATADIR%%/examples/ar/note.step +%%DATADIR%%/examples/ar/resonance.step +%%DATADIR%%/examples/ar/softbody.step +%%DATADIR%%/examples/ar/solar.step +%%DATADIR%%/examples/ar/springs.step +%%DATADIR%%/examples/ar/wave.step %%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/ar/anchor.html +%%DATADIR%%/objinfo/l10n/ar/box.html +%%DATADIR%%/objinfo/l10n/ar/chargedparticle.html +%%DATADIR%%/objinfo/l10n/ar/coulombforce.html +%%DATADIR%%/objinfo/l10n/ar/disk.html +%%DATADIR%%/objinfo/l10n/ar/gas.html +%%DATADIR%%/objinfo/l10n/ar/gasljforce.html +%%DATADIR%%/objinfo/l10n/ar/gasparticle.html +%%DATADIR%%/objinfo/l10n/ar/gravitationforce.html +%%DATADIR%%/objinfo/l10n/ar/linearmotor.html +%%DATADIR%%/objinfo/l10n/ar/meter.html +%%DATADIR%%/objinfo/l10n/ar/note.html +%%DATADIR%%/objinfo/l10n/ar/particle.html +%%DATADIR%%/objinfo/l10n/ar/pin.html +%%DATADIR%%/objinfo/l10n/ar/polygon.html +%%DATADIR%%/objinfo/l10n/ar/softbody.html +%%DATADIR%%/objinfo/l10n/ar/spring.html +%%DATADIR%%/objinfo/l10n/ar/weightforce.html +%%DATADIR%%/objinfo/l10n/ar/world.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/ar/tutorial1.step +%%DATADIR%%/tutorials/ar/tutorial2.step +%%DATADIR%%/tutorials/ar/tutorial3.step +%%DATADIR%%/tutorials/ar/tutorial4.step +%%DATADIR%%/tutorials/ar/tutorial5.step %%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/Makefile b/security/keysmith/Makefile index d1b3694bb376..b905d06ff0c1 100644 --- a/security/keysmith/Makefile +++ b/security/keysmith/Makefile @@ -1,21 +1,22 @@ PORTNAME= keysmith DISTVERSION= ${KDE_APPLICATIONS_VERSION} CATEGORIES= security kde kde-applications MAINTAINER= kde@FreeBSD.org COMMENT= Application to generate two-factor authentication tokens WWW= https://invent.kde.org/utilities/keysmith LICENSE= GPLv3 LICENSE_FILE= ${WRKSRC}/COPYING LIB_DEPENDS= libsodium.so:security/libsodium USES= cmake desktop-file-utils gettext kde:6 pkgconfig qt:6 tar:xz \ xorg -USE_KDE= dbusaddons i18n kirigami2 prison qqc2-desktop-style windowsystem \ +USE_KDE= config coreaddons dbusaddons i18n kirigami-addons \ + kirigami2 prison qqc2-desktop-style windowsystem \ ecm:build -USE_QT= 5compat base +USE_QT= base declarative svg USE_XORG= x11 .include diff --git a/security/keysmith/distinfo b/security/keysmith/distinfo index 2b1d0859e6c8..8dc82e258428 100644 --- a/security/keysmith/distinfo +++ b/security/keysmith/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1757410252 -SHA256 (KDE/release-service/25.08.1/keysmith-25.08.1.tar.xz) = bf4aeda0e45993d3bd76deca5edc85216ddb0dbdcb309ebf5520f33d1cd572d3 -SIZE (KDE/release-service/25.08.1/keysmith-25.08.1.tar.xz) = 237656 +TIMESTAMP = 1759875004 +SHA256 (KDE/release-service/25.08.2/keysmith-25.08.2.tar.xz) = 6628aab4cc2bb4278b74d01e7dfbf4295d75dd57b5d20aaf3ef08e5a60f1e2f3 +SIZE (KDE/release-service/25.08.2/keysmith-25.08.2.tar.xz) = 237872 diff --git a/security/kgpg/distinfo b/security/kgpg/distinfo index 853712e77c9d..629faefd9571 100644 --- a/security/kgpg/distinfo +++ b/security/kgpg/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1757410254 -SHA256 (KDE/release-service/25.08.1/kgpg-25.08.1.tar.xz) = c3afee476c61ecd322502217ce97fa4dcc16dab39f7793c31be2bee8ac2455b5 -SIZE (KDE/release-service/25.08.1/kgpg-25.08.1.tar.xz) = 3049880 +TIMESTAMP = 1759875007 +SHA256 (KDE/release-service/25.08.2/kgpg-25.08.2.tar.xz) = 3994c4c1468c02868b58b22660bbaac845fd4203488d68f6ac915c04a6167c4a +SIZE (KDE/release-service/25.08.2/kgpg-25.08.2.tar.xz) = 3049804 diff --git a/security/kleopatra/Makefile b/security/kleopatra/Makefile index 3fec24d80e5d..82203c6914d6 100644 --- a/security/kleopatra/Makefile +++ b/security/kleopatra/Makefile @@ -1,37 +1,36 @@ PORTNAME= kleopatra DISTVERSION= ${KDE_APPLICATIONS_VERSION} -PORTREVISION= 1 CATEGORIES= security kde kde-applications MAINTAINER= kde@FreeBSD.org COMMENT= Certificate manager for KDE WWW= https://www.kde.org/applications/utilities/kleopatra/ LIB_DEPENDS= libassuan.so:security/libassuan \ libboost_thread.so:devel/boost-libs \ libgpgme.so:security/gpgme \ libgpg-error.so:security/libgpg-error \ libgpgmepp.so:security/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 9a4e29e665f7..0ea9a0c6dd5f 100644 --- a/security/kleopatra/distinfo +++ b/security/kleopatra/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1757410257 -SHA256 (KDE/release-service/25.08.1/kleopatra-25.08.1.tar.xz) = 27081153cd29ff300454ca1bcd4da57541d07a52a9741bcd8fabc2a094b4bdf8 -SIZE (KDE/release-service/25.08.1/kleopatra-25.08.1.tar.xz) = 2861848 +TIMESTAMP = 1759875009 +SHA256 (KDE/release-service/25.08.2/kleopatra-25.08.2.tar.xz) = 16835826748b4fff9cbae6ded1819b18c3422ff60da21c6a6addd27dfeeb4fcc +SIZE (KDE/release-service/25.08.2/kleopatra-25.08.2.tar.xz) = 2881852 diff --git a/security/kpkpass/distinfo b/security/kpkpass/distinfo index 89a44718e1f4..96f451dcb0ae 100644 --- a/security/kpkpass/distinfo +++ b/security/kpkpass/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1757410259 -SHA256 (KDE/release-service/25.08.1/kpkpass-25.08.1.tar.xz) = e75e339814e124203bb6205eb435d2283ff0828b08d13108bfc66ef454cfa7bb -SIZE (KDE/release-service/25.08.1/kpkpass-25.08.1.tar.xz) = 31864 +TIMESTAMP = 1759875011 +SHA256 (KDE/release-service/25.08.2/kpkpass-25.08.2.tar.xz) = 4599e5b8b1db047c474cc4cf5a23bf7d4968082742986244a13875abe86341f3 +SIZE (KDE/release-service/25.08.2/kpkpass-25.08.2.tar.xz) = 31880 diff --git a/security/kwalletmanager/distinfo b/security/kwalletmanager/distinfo index 1aa0b0bfc238..97575995c16a 100644 --- a/security/kwalletmanager/distinfo +++ b/security/kwalletmanager/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1757410261 -SHA256 (KDE/release-service/25.08.1/kwalletmanager-25.08.1.tar.xz) = cd52e2746aabc52aa9e7918c6a2788b4f2777b1a19479b0af9364d4f714a8704 -SIZE (KDE/release-service/25.08.1/kwalletmanager-25.08.1.tar.xz) = 1052792 +TIMESTAMP = 1759875014 +SHA256 (KDE/release-service/25.08.2/kwalletmanager-25.08.2.tar.xz) = baa965f8e9d46e9e4c2b0ccfab19f42af015683246364adbb2d63349f7d6fb72 +SIZE (KDE/release-service/25.08.2/kwalletmanager-25.08.2.tar.xz) = 1052860 diff --git a/security/libkleo/distinfo b/security/libkleo/distinfo index d048235b3504..f3300f7e359b 100644 --- a/security/libkleo/distinfo +++ b/security/libkleo/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1757410264 -SHA256 (KDE/release-service/25.08.1/libkleo-25.08.1.tar.xz) = 6a9a2bef659a4294c6114ac2300fc62dc5e2d1b48eb29ef2ead9be59997d8baf -SIZE (KDE/release-service/25.08.1/libkleo-25.08.1.tar.xz) = 667908 +TIMESTAMP = 1759875016 +SHA256 (KDE/release-service/25.08.2/libkleo-25.08.2.tar.xz) = bc6b963644d4c7c00002da0df143c8cdeda4d3f12eb1409b67212fabdde0d7b8 +SIZE (KDE/release-service/25.08.2/libkleo-25.08.2.tar.xz) = 668300 diff --git a/sysutils/baloo-widgets/distinfo b/sysutils/baloo-widgets/distinfo index b4f513d18239..ef45a98f25ee 100644 --- a/sysutils/baloo-widgets/distinfo +++ b/sysutils/baloo-widgets/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1757410266 -SHA256 (KDE/release-service/25.08.1/baloo-widgets-25.08.1.tar.xz) = 864d76546dad21cefb68f761504dc89bbfe2b24fc403ed3589fa609ba87655f1 -SIZE (KDE/release-service/25.08.1/baloo-widgets-25.08.1.tar.xz) = 276740 +TIMESTAMP = 1759875019 +SHA256 (KDE/release-service/25.08.2/baloo-widgets-25.08.2.tar.xz) = 5c6cd3cb6f4d0b689fc42367c5418ac6bf178978714394ffb5bcd5f3a7341bcd +SIZE (KDE/release-service/25.08.2/baloo-widgets-25.08.2.tar.xz) = 276760 diff --git a/sysutils/filelight/distinfo b/sysutils/filelight/distinfo index e3aeee73997f..c6ec2bbcb2ae 100644 --- a/sysutils/filelight/distinfo +++ b/sysutils/filelight/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1757410268 -SHA256 (KDE/release-service/25.08.1/filelight-25.08.1.tar.xz) = 17f8cf4b478c53dae921e2c5549e3f7cddd3dabeddb8f75c551e2dbef29adba5 -SIZE (KDE/release-service/25.08.1/filelight-25.08.1.tar.xz) = 690316 +TIMESTAMP = 1759875021 +SHA256 (KDE/release-service/25.08.2/filelight-25.08.2.tar.xz) = 9ca47febfadeadaa11babce65c19e035a5bc766600d0978ce4944d9e41661555 +SIZE (KDE/release-service/25.08.2/filelight-25.08.2.tar.xz) = 690352 diff --git a/sysutils/k3b/distinfo b/sysutils/k3b/distinfo index 5071a609cbe7..551325d27c91 100644 --- a/sysutils/k3b/distinfo +++ b/sysutils/k3b/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1757410271 -SHA256 (KDE/release-service/25.08.1/k3b-25.08.1.tar.xz) = 87cce056225f0a1ad33c2648c93a0d1af3510de9f6dad06357c1d97fd7721536 -SIZE (KDE/release-service/25.08.1/k3b-25.08.1.tar.xz) = 10756672 +TIMESTAMP = 1759875024 +SHA256 (KDE/release-service/25.08.2/k3b-25.08.2.tar.xz) = b4eb2ee069a968f7dc3ec4825395af75e6bfb489d96a28948f22ee51a36afa35 +SIZE (KDE/release-service/25.08.2/k3b-25.08.2.tar.xz) = 10796096 diff --git a/sysutils/k3b/pkg-plist b/sysutils/k3b/pkg-plist index 20fd80f7895e..2210625058da 100644 --- a/sysutils/k3b/pkg-plist +++ b/sysutils/k3b/pkg-plist @@ -1,579 +1,580 @@ bin/k3b include/k3b_export.h include/k3bactivepipe.h include/k3baudiocdtrackdrag.h include/k3baudiocdtrackreader.h include/k3baudiocdtracksource.h include/k3baudiocuefilewritingjob.h include/k3baudiodatasource.h include/k3baudiodatasourceiterator.h include/k3baudiodecoder.h include/k3baudiodoc.h include/k3baudiodocreader.h include/k3baudioencoder.h include/k3baudiofile.h include/k3baudiofileanalyzerjob.h include/k3baudiofilereader.h include/k3baudiojob.h include/k3baudiotrack.h include/k3baudiotrackreader.h include/k3baudiozerodata.h include/k3baudiozerodatareader.h include/k3bbinimagewritingjob.h include/k3bblankingjob.h include/k3bbootitem.h include/k3bbusywidget.h include/k3bcdcopyjob.h include/k3bcddb.h include/k3bcdparanoialib.h include/k3bcdrdaowriter.h include/k3bcdrecordwriter.h include/k3bcdrskinwriter.h include/k3bcdtext.h include/k3bcdtextvalidator.h include/k3bchecksumpipe.h include/k3bclonejob.h include/k3bcore.h include/k3bcuefileparser.h include/k3bdatadoc.h include/k3bdataitem.h include/k3bdatajob.h include/k3bdefaultexternalprograms.h include/k3bdevice.h include/k3bdevice_export.h include/k3bdevicecombobox.h include/k3bdeviceglobals.h include/k3bdevicehandler.h include/k3bdevicemanager.h include/k3bdeviceselectiondialog.h include/k3bdevicetypes.h include/k3bdiritem.h include/k3bdirsizejob.h include/k3bdiskinfo.h include/k3bdoc.h include/k3bdvdcopyjob.h include/k3bdvdformattingjob.h include/k3bexceptions.h include/k3bexternalbinmanager.h include/k3bfileitem.h include/k3bfilesplitter.h include/k3bfilesysteminfo.h include/k3bglobals.h include/k3bglobalsettings.h include/k3bgrowisofswriter.h include/k3bimagefilereader.h include/k3binffilewriter.h include/k3bintmapcombobox.h include/k3bintvalidator.h include/k3biso9660.h include/k3biso9660backend.h include/k3biso9660imagewritingjob.h include/k3bisooptions.h include/k3bjob.h include/k3bjobhandler.h include/k3bmd5job.h include/k3bmediacache.h include/k3bmedium.h include/k3bmetawriter.h include/k3bmixeddoc.h include/k3bmixedjob.h include/k3bmovixdoc.h include/k3bmovixfileitem.h include/k3bmovixjob.h include/k3bmsf.h include/k3bmsfedit.h include/k3bmultichoicedialog.h include/k3bplugin.h include/k3bpluginconfigwidget.h include/k3bpluginmanager.h include/k3bprocess.h include/k3bprojectplugin.h include/k3brawaudiodatareader.h include/k3brawaudiodatasource.h include/k3bsignalwaiter.h include/k3bsimplejobhandler.h include/k3bstdguiitems.h include/k3bthreadjob.h include/k3bthreadwidget.h include/k3bthroughputestimator.h include/k3btoc.h include/k3btocfilewriter.h include/k3btrack.h include/k3bvalidators.h include/k3bvcddoc.h include/k3bvcdjob.h include/k3bvcdoptions.h include/k3bverificationjob.h include/k3bversion.h include/k3bvideodvd.h include/k3bvideodvdaudiostream.h include/k3bvideodvddoc.h include/k3bvideodvdjob.h include/k3bvideodvdptt.h include/k3bvideodvdsubpicturestream.h include/k3bvideodvdtime.h include/k3bvideodvdtitle.h include/k3bvideodvdtitledetectclippingjob.h include/k3bvideodvdtitletranscodingjob.h include/k3bvideodvdvideostream.h include/k3bwavefilewriter.h lib/libexec/kf6/kauth/k3bhelper lib/libk3bdevice.so lib/libk3bdevice.so.8 lib/libk3bdevice.so.8.0.0 lib/libk3blib.so lib/libk3blib.so.8 lib/libk3blib.so.8.0.0 %%QT_PLUGINDIR%%/k3b_plugins/k3baudiometainforenamerplugin.so %%QT_PLUGINDIR%%/k3b_plugins/k3baudioprojectcddbplugin.so %%QT_PLUGINDIR%%/k3b_plugins/k3bexternalencoder.so %%QT_PLUGINDIR%%/k3b_plugins/k3bflacdecoder.so %%QT_PLUGINDIR%%/k3b_plugins/k3blameencoder.so %%QT_PLUGINDIR%%/k3b_plugins/k3blibsndfiledecoder.so %%QT_PLUGINDIR%%/k3b_plugins/k3bmaddecoder.so %%QT_PLUGINDIR%%/k3b_plugins/k3boggvorbisdecoder.so %%QT_PLUGINDIR%%/k3b_plugins/k3boggvorbisencoder.so %%QT_PLUGINDIR%%/k3b_plugins/k3bsoxencoder.so %%QT_PLUGINDIR%%/k3b_plugins/k3bwavedecoder.so %%QT_PLUGINDIR%%/k3b_plugins/kcms/kcm_k3bexternalencoder.so %%QT_PLUGINDIR%%/k3b_plugins/kcms/kcm_k3blameencoder.so %%QT_PLUGINDIR%%/k3b_plugins/kcms/kcm_k3boggvorbisencoder.so %%QT_PLUGINDIR%%/k3b_plugins/kcms/kcm_k3bsoxencoder.so %%QT_PLUGINDIR%%/kf6/kio/videodvd.so share/applications/org.kde.k3b.desktop share/dbus-1/system-services/org.kde.k3b.service share/dbus-1/system.d/org.kde.k3b.conf share/icons/hicolor/128x128/apps/k3b.png share/icons/hicolor/128x128/mimetypes/application-x-k3b.png share/icons/hicolor/16x16/apps/k3b.png share/icons/hicolor/22x22/apps/k3b.png share/icons/hicolor/32x32/apps/k3b.png share/icons/hicolor/32x32/mimetypes/application-x-k3b.png share/icons/hicolor/48x48/apps/k3b.png share/icons/hicolor/48x48/mimetypes/application-x-k3b.png share/icons/hicolor/64x64/apps/k3b.png share/icons/hicolor/64x64/mimetypes/application-x-k3b.png share/icons/hicolor/scalable/apps/k3b.svgz share/icons/hicolor/scalable/mimetypes/application-x-k3b.svgz %%DATADIR%%/cdi/cdi_imag.rtf %%DATADIR%%/cdi/cdi_text.fnt %%DATADIR%%/cdi/cdi_vcd.app %%DATADIR%%/cdi/cdi_vcd.cfg %%DATADIR%%/cdi/icdia.htm %%DATADIR%%/cdi/vcd_on_cdi_41.pdf %%DATADIR%%/extra/k3bphotosvcd.mpg %%DATADIR%%/extra/k3bphotovcd.mpg %%DATADIR%%/icons/hicolor/128x128/actions/tools-rip-audio-cd.png %%DATADIR%%/icons/hicolor/128x128/actions/tools-rip-video-cd.png %%DATADIR%%/icons/hicolor/128x128/actions/tools-rip-video-dvd.png %%DATADIR%%/icons/hicolor/128x128/devices/media-optical-audio.png %%DATADIR%%/icons/hicolor/128x128/devices/media-optical-cd-video.png %%DATADIR%%/icons/hicolor/128x128/devices/media-optical-dvd-video.png %%DATADIR%%/icons/hicolor/128x128/devices/media-optical-mixed-cd.png %%DATADIR%%/icons/hicolor/128x128/devices/media-optical-video.png %%DATADIR%%/icons/hicolor/16x16/actions/tools-rip-audio-cd.png %%DATADIR%%/icons/hicolor/16x16/actions/tools-rip-video-cd.png %%DATADIR%%/icons/hicolor/16x16/actions/tools-rip-video-dvd.png %%DATADIR%%/icons/hicolor/16x16/devices/media-optical-audio.png %%DATADIR%%/icons/hicolor/16x16/devices/media-optical-cd-video.png %%DATADIR%%/icons/hicolor/16x16/devices/media-optical-data.png %%DATADIR%%/icons/hicolor/16x16/devices/media-optical-mixed-cd.png %%DATADIR%%/icons/hicolor/16x16/devices/media-optical-video.png %%DATADIR%%/icons/hicolor/22x22/actions/tools-rip-audio-cd.png %%DATADIR%%/icons/hicolor/22x22/actions/tools-rip-video-cd.png %%DATADIR%%/icons/hicolor/22x22/actions/tools-rip-video-dvd.png %%DATADIR%%/icons/hicolor/22x22/devices/media-optical-audio.png %%DATADIR%%/icons/hicolor/22x22/devices/media-optical-cd-video.png %%DATADIR%%/icons/hicolor/22x22/devices/media-optical-data.png %%DATADIR%%/icons/hicolor/22x22/devices/media-optical-mixed-cd.png %%DATADIR%%/icons/hicolor/22x22/devices/media-optical-video.png %%DATADIR%%/icons/hicolor/32x32/actions/tools-rip-audio-cd.png %%DATADIR%%/icons/hicolor/32x32/actions/tools-rip-video-cd.png %%DATADIR%%/icons/hicolor/32x32/actions/tools-rip-video-dvd.png %%DATADIR%%/icons/hicolor/32x32/devices/media-optical-audio.png %%DATADIR%%/icons/hicolor/32x32/devices/media-optical-cd-video.png %%DATADIR%%/icons/hicolor/32x32/devices/media-optical-data.png %%DATADIR%%/icons/hicolor/32x32/devices/media-optical-dvd-video.png %%DATADIR%%/icons/hicolor/32x32/devices/media-optical-mixed-cd.png %%DATADIR%%/icons/hicolor/32x32/devices/media-optical-video.png %%DATADIR%%/icons/hicolor/48x48/actions/tools-rip-audio-cd.png %%DATADIR%%/icons/hicolor/48x48/actions/tools-rip-video-cd.png %%DATADIR%%/icons/hicolor/48x48/actions/tools-rip-video-dvd.png %%DATADIR%%/icons/hicolor/48x48/devices/media-optical-audio.png %%DATADIR%%/icons/hicolor/48x48/devices/media-optical-cd-video.png %%DATADIR%%/icons/hicolor/48x48/devices/media-optical-data.png %%DATADIR%%/icons/hicolor/48x48/devices/media-optical-dvd-video.png %%DATADIR%%/icons/hicolor/48x48/devices/media-optical-mixed-cd.png %%DATADIR%%/icons/hicolor/48x48/devices/media-optical-video.png %%DATADIR%%/icons/hicolor/64x64/actions/tools-rip-audio-cd.png %%DATADIR%%/icons/hicolor/64x64/actions/tools-rip-video-cd.png %%DATADIR%%/icons/hicolor/64x64/actions/tools-rip-video-dvd.png %%DATADIR%%/icons/hicolor/64x64/devices/media-optical-audio.png %%DATADIR%%/icons/hicolor/64x64/devices/media-optical-cd-video.png %%DATADIR%%/icons/hicolor/64x64/devices/media-optical-dvd-video.png %%DATADIR%%/icons/hicolor/64x64/devices/media-optical-mixed-cd.png %%DATADIR%%/icons/hicolor/64x64/devices/media-optical-video.png %%DATADIR%%/icons/hicolor/scalable/actions/tools-rip-audio-cd.svgz %%DATADIR%%/icons/hicolor/scalable/actions/tools-rip-video-cd.svgz %%DATADIR%%/icons/hicolor/scalable/actions/tools-rip-video-dvd.svgz %%DATADIR%%/icons/hicolor/scalable/devices/media-optical-audio.svgz %%DATADIR%%/icons/hicolor/scalable/devices/media-optical-cd-video.svgz %%DATADIR%%/icons/hicolor/scalable/devices/media-optical-data.svgz %%DATADIR%%/icons/hicolor/scalable/devices/media-optical-dvd-video.svgz %%DATADIR%%/icons/hicolor/scalable/devices/media-optical-mixed-cd.svgz %%DATADIR%%/icons/hicolor/scalable/devices/media-optical-video.svgz %%DATADIR%%/pics/73lab/dialog_left.png %%DATADIR%%/pics/73lab/dialog_right.png %%DATADIR%%/pics/73lab/k3b.theme %%DATADIR%%/pics/73lab/media_audio.png %%DATADIR%%/pics/73lab/media_data.png %%DATADIR%%/pics/73lab/media_empty.png %%DATADIR%%/pics/73lab/media_left.png %%DATADIR%%/pics/73lab/media_mixed.png %%DATADIR%%/pics/73lab/media_none.png %%DATADIR%%/pics/73lab/media_video.png %%DATADIR%%/pics/73lab/probing.png %%DATADIR%%/pics/73lab/progress_fail.png %%DATADIR%%/pics/73lab/progress_right.png %%DATADIR%%/pics/73lab/progress_success.png %%DATADIR%%/pics/73lab/progress_working.png %%DATADIR%%/pics/73lab/project_left.png %%DATADIR%%/pics/73lab/project_right.png %%DATADIR%%/pics/73lab/splash.png %%DATADIR%%/pics/73lab/welcome_bg.png %%DATADIR%%/pics/RobsTheme/dialog_left.png %%DATADIR%%/pics/RobsTheme/dialog_right.png %%DATADIR%%/pics/RobsTheme/k3b.theme %%DATADIR%%/pics/RobsTheme/media_audio.png %%DATADIR%%/pics/RobsTheme/media_data.png %%DATADIR%%/pics/RobsTheme/media_empty.png %%DATADIR%%/pics/RobsTheme/media_left.png %%DATADIR%%/pics/RobsTheme/media_mixed.png %%DATADIR%%/pics/RobsTheme/media_none.png %%DATADIR%%/pics/RobsTheme/media_video.png %%DATADIR%%/pics/RobsTheme/progress_fail.png %%DATADIR%%/pics/RobsTheme/progress_right.png %%DATADIR%%/pics/RobsTheme/progress_success.png %%DATADIR%%/pics/RobsTheme/progress_working.png %%DATADIR%%/pics/RobsTheme/project_left.png %%DATADIR%%/pics/RobsTheme/project_right.png %%DATADIR%%/pics/RobsTheme/splash.png %%DATADIR%%/pics/RobsTheme/welcome_bg.png %%DATADIR%%/pics/crystal/dialog_left.png %%DATADIR%%/pics/crystal/dialog_right.png %%DATADIR%%/pics/crystal/k3b.theme %%DATADIR%%/pics/crystal/media_audio.png %%DATADIR%%/pics/crystal/media_data.png %%DATADIR%%/pics/crystal/media_empty.png %%DATADIR%%/pics/crystal/media_left.png %%DATADIR%%/pics/crystal/media_mixed.png %%DATADIR%%/pics/crystal/media_none.png %%DATADIR%%/pics/crystal/media_video.png %%DATADIR%%/pics/crystal/probing.png %%DATADIR%%/pics/crystal/progress_fail.png %%DATADIR%%/pics/crystal/progress_right.png %%DATADIR%%/pics/crystal/progress_success.png %%DATADIR%%/pics/crystal/progress_working.png %%DATADIR%%/pics/crystal/project_left.png %%DATADIR%%/pics/crystal/project_right.png %%DATADIR%%/pics/crystal/splash.png %%DATADIR%%/pics/crystal/welcome_bg.png %%DATADIR%%/pics/quant/dialog_left.png %%DATADIR%%/pics/quant/dialog_right.png %%DATADIR%%/pics/quant/k3b.theme %%DATADIR%%/pics/quant/media_audio.png %%DATADIR%%/pics/quant/media_data.png %%DATADIR%%/pics/quant/media_empty.png %%DATADIR%%/pics/quant/media_left.png %%DATADIR%%/pics/quant/media_mixed.png %%DATADIR%%/pics/quant/media_none.png %%DATADIR%%/pics/quant/media_video.png %%DATADIR%%/pics/quant/progress_fail.png %%DATADIR%%/pics/quant/progress_right.png %%DATADIR%%/pics/quant/progress_success.png %%DATADIR%%/pics/quant/progress_working.png %%DATADIR%%/pics/quant/project_left.png %%DATADIR%%/pics/quant/project_right.png %%DATADIR%%/pics/quant/splash.png %%DATADIR%%/pics/quant/welcome_bg.png share/kio/servicemenus/k3b_create_audio_cd.desktop share/kio/servicemenus/k3b_create_data_project.desktop share/kio/servicemenus/k3b_create_video_cd.desktop share/kio/servicemenus/k3b_write_bin_image.desktop share/kio/servicemenus/k3b_write_iso_image.desktop share/knotifications6/k3b.notifyrc share/knsrcfiles/k3btheme.knsrc share/konqsidebartng/virtual_folders/services/videodvd.desktop share/locale/ar/LC_MESSAGES/k3b.mo share/locale/ar/LC_MESSAGES/kio_videodvd.mo +share/locale/ar/LC_MESSAGES/libk3b.mo share/locale/ar/LC_MESSAGES/libk3bdevice.mo share/locale/be/LC_MESSAGES/k3b.mo share/locale/be/LC_MESSAGES/kio_videodvd.mo share/locale/be/LC_MESSAGES/libk3b.mo share/locale/be/LC_MESSAGES/libk3bdevice.mo share/locale/bg/LC_MESSAGES/k3b.mo share/locale/bg/LC_MESSAGES/kio_videodvd.mo share/locale/bg/LC_MESSAGES/libk3b.mo share/locale/bg/LC_MESSAGES/libk3bdevice.mo share/locale/bs/LC_MESSAGES/k3b.mo share/locale/bs/LC_MESSAGES/kio_videodvd.mo share/locale/bs/LC_MESSAGES/libk3b.mo share/locale/bs/LC_MESSAGES/libk3bdevice.mo share/locale/ca/LC_MESSAGES/k3b.mo share/locale/ca/LC_MESSAGES/kio_videodvd.mo share/locale/ca/LC_MESSAGES/libk3b.mo share/locale/ca/LC_MESSAGES/libk3bdevice.mo share/locale/ca@valencia/LC_MESSAGES/k3b.mo share/locale/ca@valencia/LC_MESSAGES/kio_videodvd.mo share/locale/ca@valencia/LC_MESSAGES/libk3b.mo share/locale/ca@valencia/LC_MESSAGES/libk3bdevice.mo share/locale/cs/LC_MESSAGES/k3b.mo share/locale/cs/LC_MESSAGES/kio_videodvd.mo share/locale/cs/LC_MESSAGES/libk3b.mo share/locale/cs/LC_MESSAGES/libk3bdevice.mo share/locale/csb/LC_MESSAGES/k3b.mo share/locale/da/LC_MESSAGES/k3b.mo share/locale/da/LC_MESSAGES/kio_videodvd.mo share/locale/da/LC_MESSAGES/libk3b.mo share/locale/da/LC_MESSAGES/libk3bdevice.mo share/locale/de/LC_MESSAGES/k3b.mo share/locale/de/LC_MESSAGES/kio_videodvd.mo share/locale/de/LC_MESSAGES/libk3b.mo share/locale/de/LC_MESSAGES/libk3bdevice.mo share/locale/el/LC_MESSAGES/k3b.mo share/locale/el/LC_MESSAGES/kio_videodvd.mo share/locale/el/LC_MESSAGES/libk3b.mo share/locale/el/LC_MESSAGES/libk3bdevice.mo share/locale/en_GB/LC_MESSAGES/k3b.mo share/locale/en_GB/LC_MESSAGES/kio_videodvd.mo share/locale/en_GB/LC_MESSAGES/libk3b.mo share/locale/en_GB/LC_MESSAGES/libk3bdevice.mo share/locale/eo/LC_MESSAGES/k3b.mo share/locale/eo/LC_MESSAGES/kio_videodvd.mo share/locale/eo/LC_MESSAGES/libk3b.mo share/locale/eo/LC_MESSAGES/libk3bdevice.mo share/locale/es/LC_MESSAGES/k3b.mo share/locale/es/LC_MESSAGES/kio_videodvd.mo share/locale/es/LC_MESSAGES/libk3b.mo share/locale/es/LC_MESSAGES/libk3bdevice.mo share/locale/et/LC_MESSAGES/k3b.mo share/locale/et/LC_MESSAGES/kio_videodvd.mo share/locale/et/LC_MESSAGES/libk3b.mo share/locale/et/LC_MESSAGES/libk3bdevice.mo share/locale/eu/LC_MESSAGES/k3b.mo share/locale/eu/LC_MESSAGES/kio_videodvd.mo share/locale/eu/LC_MESSAGES/libk3b.mo share/locale/eu/LC_MESSAGES/libk3bdevice.mo share/locale/fa/LC_MESSAGES/k3b.mo share/locale/fi/LC_MESSAGES/k3b.mo share/locale/fi/LC_MESSAGES/kio_videodvd.mo share/locale/fi/LC_MESSAGES/libk3b.mo share/locale/fi/LC_MESSAGES/libk3bdevice.mo share/locale/fr/LC_MESSAGES/k3b.mo share/locale/fr/LC_MESSAGES/kio_videodvd.mo share/locale/fr/LC_MESSAGES/libk3b.mo share/locale/fr/LC_MESSAGES/libk3bdevice.mo share/locale/ga/LC_MESSAGES/k3b.mo share/locale/ga/LC_MESSAGES/kio_videodvd.mo share/locale/ga/LC_MESSAGES/libk3b.mo share/locale/ga/LC_MESSAGES/libk3bdevice.mo share/locale/gl/LC_MESSAGES/k3b.mo share/locale/gl/LC_MESSAGES/kio_videodvd.mo share/locale/gl/LC_MESSAGES/libk3b.mo share/locale/gl/LC_MESSAGES/libk3bdevice.mo share/locale/he/LC_MESSAGES/k3b.mo share/locale/he/LC_MESSAGES/kio_videodvd.mo share/locale/he/LC_MESSAGES/libk3b.mo share/locale/he/LC_MESSAGES/libk3bdevice.mo share/locale/hi/LC_MESSAGES/k3b.mo share/locale/hi/LC_MESSAGES/kio_videodvd.mo share/locale/hi/LC_MESSAGES/libk3b.mo share/locale/hi/LC_MESSAGES/libk3bdevice.mo share/locale/hne/LC_MESSAGES/k3b.mo share/locale/hne/LC_MESSAGES/kio_videodvd.mo share/locale/hne/LC_MESSAGES/libk3b.mo share/locale/hne/LC_MESSAGES/libk3bdevice.mo share/locale/hr/LC_MESSAGES/k3b.mo share/locale/hr/LC_MESSAGES/kio_videodvd.mo share/locale/hr/LC_MESSAGES/libk3b.mo share/locale/hr/LC_MESSAGES/libk3bdevice.mo share/locale/hu/LC_MESSAGES/k3b.mo share/locale/hu/LC_MESSAGES/kio_videodvd.mo share/locale/hu/LC_MESSAGES/libk3b.mo share/locale/hu/LC_MESSAGES/libk3bdevice.mo share/locale/ia/LC_MESSAGES/k3b.mo share/locale/ia/LC_MESSAGES/kio_videodvd.mo share/locale/ia/LC_MESSAGES/libk3b.mo share/locale/ia/LC_MESSAGES/libk3bdevice.mo share/locale/id/LC_MESSAGES/k3b.mo share/locale/id/LC_MESSAGES/kio_videodvd.mo share/locale/id/LC_MESSAGES/libk3b.mo share/locale/id/LC_MESSAGES/libk3bdevice.mo share/locale/is/LC_MESSAGES/k3b.mo share/locale/is/LC_MESSAGES/kio_videodvd.mo share/locale/is/LC_MESSAGES/libk3b.mo share/locale/is/LC_MESSAGES/libk3bdevice.mo share/locale/it/LC_MESSAGES/k3b.mo share/locale/it/LC_MESSAGES/kio_videodvd.mo share/locale/it/LC_MESSAGES/libk3b.mo share/locale/it/LC_MESSAGES/libk3bdevice.mo share/locale/ja/LC_MESSAGES/k3b.mo share/locale/ja/LC_MESSAGES/kio_videodvd.mo share/locale/ja/LC_MESSAGES/libk3b.mo share/locale/ja/LC_MESSAGES/libk3bdevice.mo share/locale/ka/LC_MESSAGES/k3b.mo share/locale/ka/LC_MESSAGES/kio_videodvd.mo share/locale/ka/LC_MESSAGES/libk3b.mo share/locale/ka/LC_MESSAGES/libk3bdevice.mo share/locale/kk/LC_MESSAGES/k3b.mo share/locale/kk/LC_MESSAGES/kio_videodvd.mo share/locale/kk/LC_MESSAGES/libk3b.mo share/locale/kk/LC_MESSAGES/libk3bdevice.mo share/locale/km/LC_MESSAGES/k3b.mo share/locale/km/LC_MESSAGES/kio_videodvd.mo share/locale/km/LC_MESSAGES/libk3b.mo share/locale/km/LC_MESSAGES/libk3bdevice.mo share/locale/ko/LC_MESSAGES/k3b.mo share/locale/ko/LC_MESSAGES/kio_videodvd.mo share/locale/ko/LC_MESSAGES/libk3b.mo share/locale/ko/LC_MESSAGES/libk3bdevice.mo share/locale/ku/LC_MESSAGES/k3b.mo share/locale/ku/LC_MESSAGES/kio_videodvd.mo share/locale/lt/LC_MESSAGES/k3b.mo share/locale/lt/LC_MESSAGES/kio_videodvd.mo share/locale/lt/LC_MESSAGES/libk3b.mo share/locale/lt/LC_MESSAGES/libk3bdevice.mo share/locale/lv/LC_MESSAGES/k3b.mo share/locale/lv/LC_MESSAGES/kio_videodvd.mo share/locale/lv/LC_MESSAGES/libk3b.mo share/locale/lv/LC_MESSAGES/libk3bdevice.mo share/locale/mai/LC_MESSAGES/k3b.mo share/locale/mai/LC_MESSAGES/kio_videodvd.mo share/locale/mai/LC_MESSAGES/libk3b.mo share/locale/mai/LC_MESSAGES/libk3bdevice.mo share/locale/ml/LC_MESSAGES/kio_videodvd.mo share/locale/mr/LC_MESSAGES/k3b.mo share/locale/mr/LC_MESSAGES/kio_videodvd.mo share/locale/mr/LC_MESSAGES/libk3b.mo share/locale/mr/LC_MESSAGES/libk3bdevice.mo share/locale/ms/LC_MESSAGES/k3b.mo share/locale/ms/LC_MESSAGES/kio_videodvd.mo share/locale/ms/LC_MESSAGES/libk3b.mo share/locale/ms/LC_MESSAGES/libk3bdevice.mo share/locale/nb/LC_MESSAGES/k3b.mo share/locale/nb/LC_MESSAGES/kio_videodvd.mo share/locale/nb/LC_MESSAGES/libk3b.mo share/locale/nb/LC_MESSAGES/libk3bdevice.mo share/locale/nds/LC_MESSAGES/k3b.mo share/locale/nds/LC_MESSAGES/kio_videodvd.mo share/locale/nds/LC_MESSAGES/libk3b.mo share/locale/nds/LC_MESSAGES/libk3bdevice.mo share/locale/nl/LC_MESSAGES/k3b.mo share/locale/nl/LC_MESSAGES/kio_videodvd.mo share/locale/nl/LC_MESSAGES/libk3b.mo share/locale/nl/LC_MESSAGES/libk3bdevice.mo share/locale/nn/LC_MESSAGES/k3b.mo share/locale/nn/LC_MESSAGES/kio_videodvd.mo share/locale/nn/LC_MESSAGES/libk3b.mo share/locale/nn/LC_MESSAGES/libk3bdevice.mo share/locale/oc/LC_MESSAGES/k3b.mo share/locale/oc/LC_MESSAGES/kio_videodvd.mo share/locale/oc/LC_MESSAGES/libk3b.mo share/locale/oc/LC_MESSAGES/libk3bdevice.mo share/locale/pa/LC_MESSAGES/k3b.mo share/locale/pa/LC_MESSAGES/kio_videodvd.mo share/locale/pa/LC_MESSAGES/libk3b.mo share/locale/pa/LC_MESSAGES/libk3bdevice.mo share/locale/pl/LC_MESSAGES/k3b.mo share/locale/pl/LC_MESSAGES/kio_videodvd.mo share/locale/pl/LC_MESSAGES/libk3b.mo share/locale/pl/LC_MESSAGES/libk3bdevice.mo share/locale/pt/LC_MESSAGES/k3b.mo share/locale/pt/LC_MESSAGES/kio_videodvd.mo share/locale/pt/LC_MESSAGES/libk3b.mo share/locale/pt/LC_MESSAGES/libk3bdevice.mo share/locale/pt_BR/LC_MESSAGES/k3b.mo share/locale/pt_BR/LC_MESSAGES/kio_videodvd.mo share/locale/pt_BR/LC_MESSAGES/libk3b.mo share/locale/pt_BR/LC_MESSAGES/libk3bdevice.mo share/locale/ro/LC_MESSAGES/k3b.mo share/locale/ro/LC_MESSAGES/kio_videodvd.mo share/locale/ro/LC_MESSAGES/libk3b.mo share/locale/ro/LC_MESSAGES/libk3bdevice.mo share/locale/ru/LC_MESSAGES/k3b.mo share/locale/ru/LC_MESSAGES/kio_videodvd.mo share/locale/ru/LC_MESSAGES/libk3b.mo share/locale/ru/LC_MESSAGES/libk3bdevice.mo share/locale/sa/LC_MESSAGES/k3b.mo share/locale/sa/LC_MESSAGES/kio_videodvd.mo share/locale/sa/LC_MESSAGES/libk3b.mo share/locale/sa/LC_MESSAGES/libk3bdevice.mo share/locale/se/LC_MESSAGES/k3b.mo share/locale/se/LC_MESSAGES/libk3b.mo share/locale/se/LC_MESSAGES/libk3bdevice.mo share/locale/sk/LC_MESSAGES/k3b.mo share/locale/sk/LC_MESSAGES/kio_videodvd.mo share/locale/sk/LC_MESSAGES/libk3b.mo share/locale/sk/LC_MESSAGES/libk3bdevice.mo share/locale/sl/LC_MESSAGES/k3b.mo share/locale/sl/LC_MESSAGES/kio_videodvd.mo share/locale/sl/LC_MESSAGES/libk3b.mo share/locale/sl/LC_MESSAGES/libk3bdevice.mo share/locale/sq/LC_MESSAGES/k3b.mo share/locale/sq/LC_MESSAGES/kio_videodvd.mo share/locale/sq/LC_MESSAGES/libk3b.mo share/locale/sq/LC_MESSAGES/libk3bdevice.mo share/locale/sr/LC_MESSAGES/k3b.mo share/locale/sr/LC_MESSAGES/kio_videodvd.mo share/locale/sr/LC_MESSAGES/libk3b.mo share/locale/sr/LC_MESSAGES/libk3bdevice.mo share/locale/sr@ijekavian/LC_MESSAGES/k3b.mo share/locale/sr@ijekavian/LC_MESSAGES/kio_videodvd.mo share/locale/sr@ijekavian/LC_MESSAGES/libk3b.mo share/locale/sr@ijekavian/LC_MESSAGES/libk3bdevice.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/k3b.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kio_videodvd.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/libk3b.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/libk3bdevice.mo share/locale/sr@latin/LC_MESSAGES/k3b.mo share/locale/sr@latin/LC_MESSAGES/kio_videodvd.mo share/locale/sr@latin/LC_MESSAGES/libk3b.mo share/locale/sr@latin/LC_MESSAGES/libk3bdevice.mo share/locale/sv/LC_MESSAGES/k3b.mo share/locale/sv/LC_MESSAGES/kio_videodvd.mo share/locale/sv/LC_MESSAGES/libk3b.mo share/locale/sv/LC_MESSAGES/libk3bdevice.mo share/locale/th/LC_MESSAGES/k3b.mo share/locale/th/LC_MESSAGES/kio_videodvd.mo share/locale/th/LC_MESSAGES/libk3b.mo share/locale/th/LC_MESSAGES/libk3bdevice.mo share/locale/tr/LC_MESSAGES/k3b.mo share/locale/tr/LC_MESSAGES/kio_videodvd.mo share/locale/tr/LC_MESSAGES/libk3b.mo share/locale/tr/LC_MESSAGES/libk3bdevice.mo share/locale/ug/LC_MESSAGES/k3b.mo share/locale/ug/LC_MESSAGES/kio_videodvd.mo share/locale/ug/LC_MESSAGES/libk3b.mo share/locale/ug/LC_MESSAGES/libk3bdevice.mo share/locale/uk/LC_MESSAGES/k3b.mo share/locale/uk/LC_MESSAGES/kio_videodvd.mo share/locale/uk/LC_MESSAGES/libk3b.mo share/locale/uk/LC_MESSAGES/libk3bdevice.mo share/locale/wa/LC_MESSAGES/kio_videodvd.mo share/locale/zh_CN/LC_MESSAGES/k3b.mo share/locale/zh_CN/LC_MESSAGES/kio_videodvd.mo share/locale/zh_CN/LC_MESSAGES/libk3b.mo share/locale/zh_CN/LC_MESSAGES/libk3bdevice.mo share/locale/zh_TW/LC_MESSAGES/k3b.mo share/locale/zh_TW/LC_MESSAGES/kio_videodvd.mo share/locale/zh_TW/LC_MESSAGES/libk3b.mo share/locale/zh_TW/LC_MESSAGES/libk3bdevice.mo share/metainfo/org.kde.k3b.appdata.xml share/mime/packages/x-k3b.xml share/polkit-1/actions/org.kde.k3b.policy share/qlogging-categories6/k3b.categories share/solid/actions/k3b_audiocd_rip.desktop share/solid/actions/k3b_copy_disc.desktop share/solid/actions/k3b_create_audio_cd_from_blank_medium.desktop share/solid/actions/k3b_create_data_project_from_blank_medium.desktop share/solid/actions/k3b_videodvd_rip.desktop diff --git a/sysutils/kbackup/distinfo b/sysutils/kbackup/distinfo index 5fc518a77eed..b21cf40ed948 100644 --- a/sysutils/kbackup/distinfo +++ b/sysutils/kbackup/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1757410273 -SHA256 (KDE/release-service/25.08.1/kbackup-25.08.1.tar.xz) = a0777418388984635a6f4b44342a09a532f7f326545eac120ff32dcb04da2f4b -SIZE (KDE/release-service/25.08.1/kbackup-25.08.1.tar.xz) = 394720 +TIMESTAMP = 1759875026 +SHA256 (KDE/release-service/25.08.2/kbackup-25.08.2.tar.xz) = 54c7aedf0d1ec4ccddb822f8330335d0cbf4ec40f64499915f00fef0c030b8b1 +SIZE (KDE/release-service/25.08.2/kbackup-25.08.2.tar.xz) = 394764 diff --git a/sysutils/kcron/distinfo b/sysutils/kcron/distinfo index c371a8801cb2..98eda6e803a6 100644 --- a/sysutils/kcron/distinfo +++ b/sysutils/kcron/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1757410275 -SHA256 (KDE/release-service/25.08.1/kcron-25.08.1.tar.xz) = b4117e6423c20be5150567570a1dc3b03612158757ce7440876eb530a5a28c56 -SIZE (KDE/release-service/25.08.1/kcron-25.08.1.tar.xz) = 900084 +TIMESTAMP = 1759875028 +SHA256 (KDE/release-service/25.08.2/kcron-25.08.2.tar.xz) = f08b72edbb29ccb61a8b37c43c2f25303a2f368dfc1d3f9c65f7434e9cd19683 +SIZE (KDE/release-service/25.08.2/kcron-25.08.2.tar.xz) = 900072 diff --git a/sysutils/kdebugsettings/distinfo b/sysutils/kdebugsettings/distinfo index 8dda319924d6..7823effdcc58 100644 --- a/sysutils/kdebugsettings/distinfo +++ b/sysutils/kdebugsettings/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1757410278 -SHA256 (KDE/release-service/25.08.1/kdebugsettings-25.08.1.tar.xz) = d755af0b7839ff1581b14d4e540d2deb21127de573c0e7340d52879ec2832bb1 -SIZE (KDE/release-service/25.08.1/kdebugsettings-25.08.1.tar.xz) = 123372 +TIMESTAMP = 1759875031 +SHA256 (KDE/release-service/25.08.2/kdebugsettings-25.08.2.tar.xz) = 06bb7e41dc45dbcc8a381c316d23f0fb200a9cc6c7f19aeb9b4db5760e1ef3ed +SIZE (KDE/release-service/25.08.2/kdebugsettings-25.08.2.tar.xz) = 123380 diff --git a/sysutils/kdf/distinfo b/sysutils/kdf/distinfo index 516fb4e1c3b3..633038272ff6 100644 --- a/sysutils/kdf/distinfo +++ b/sysutils/kdf/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1757410280 -SHA256 (KDE/release-service/25.08.1/kdf-25.08.1.tar.xz) = aac925e4473ad3b717c30c308f152f06a41d121035d135f3245f64bb883fa240 -SIZE (KDE/release-service/25.08.1/kdf-25.08.1.tar.xz) = 481576 +TIMESTAMP = 1759875033 +SHA256 (KDE/release-service/25.08.2/kdf-25.08.2.tar.xz) = 7c5ae2f3f5841bbd3a6b65e304df9052301c63e063e9d15ec9ffa85b7e1b01db +SIZE (KDE/release-service/25.08.2/kdf-25.08.2.tar.xz) = 481620 diff --git a/sysutils/kdialog/distinfo b/sysutils/kdialog/distinfo index 7a6bb53d646d..21e1c3356082 100644 --- a/sysutils/kdialog/distinfo +++ b/sysutils/kdialog/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1757410282 -SHA256 (KDE/release-service/25.08.1/kdialog-25.08.1.tar.xz) = 665f99a4b22702d453d084d6d4990cb211d402cb66c154bdf761e6ae647cb149 -SIZE (KDE/release-service/25.08.1/kdialog-25.08.1.tar.xz) = 149336 +TIMESTAMP = 1759875036 +SHA256 (KDE/release-service/25.08.2/kdialog-25.08.2.tar.xz) = f9c246b4de2d7e406a1c99361b8d7fa9a3a6d6ecdec2e55586671eab4ce642a6 +SIZE (KDE/release-service/25.08.2/kdialog-25.08.2.tar.xz) = 149348 diff --git a/sysutils/khelpcenter/distinfo b/sysutils/khelpcenter/distinfo index dc46b8ff1d41..fe2f8453010d 100644 --- a/sysutils/khelpcenter/distinfo +++ b/sysutils/khelpcenter/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1757410285 -SHA256 (KDE/release-service/25.08.1/khelpcenter-25.08.1.tar.xz) = 7d572cf973a79efe79b1d129d1bff01cfdb40416838d421e13c704a30e8720af -SIZE (KDE/release-service/25.08.1/khelpcenter-25.08.1.tar.xz) = 4248688 +TIMESTAMP = 1759875038 +SHA256 (KDE/release-service/25.08.2/khelpcenter-25.08.2.tar.xz) = eb79e5454937b7baf444424ac02a97579ab80753908dbbeb551edd71f678b0da +SIZE (KDE/release-service/25.08.2/khelpcenter-25.08.2.tar.xz) = 4248756 diff --git a/sysutils/kpmcore/Makefile b/sysutils/kpmcore/Makefile index 52f799869463..55763a3a9145 100644 --- a/sysutils/kpmcore/Makefile +++ b/sysutils/kpmcore/Makefile @@ -1,16 +1,16 @@ PORTNAME= kpmcore DISTVERSION= ${KDE_APPLICATIONS_VERSION} CATEGORIES= sysutils kde kde-applications -MAINTAINER= adridg@FreeBSD.org +MAINTAINER= kde@FreeBSD.org COMMENT= KDE Partition Manager core library WWW= https://invent.kde.org/system/kpmcore -LIB_DEPENDS= libpolkit-qt6-agent-1.so:sysutils/polkit-qt-1@qt6 +LIB_DEPENDS= libpolkit-qt6-core-1.so:sysutils/polkit-qt-1@qt6 -USES= cmake compiler:c++17-lang gettext kde:6 qt:6 tar:xz -USE_KDE= auth coreaddons i18n widgetsaddons \ +USES= cmake gettext kde:6 qt:6 tar:xz +USE_KDE= coreaddons i18n widgetsaddons \ ecm:build USE_QT= base .include diff --git a/sysutils/kpmcore/distinfo b/sysutils/kpmcore/distinfo index 9eb99bf1d1cc..635c2f63a068 100644 --- a/sysutils/kpmcore/distinfo +++ b/sysutils/kpmcore/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1757410287 -SHA256 (KDE/release-service/25.08.1/kpmcore-25.08.1.tar.xz) = 2f49fcb150d3baa451e570c23becf7fa56d919a37d7fc52bac5d9fa6b76cf760 -SIZE (KDE/release-service/25.08.1/kpmcore-25.08.1.tar.xz) = 670052 +TIMESTAMP = 1759875039 +SHA256 (KDE/release-service/25.08.2/kpmcore-25.08.2.tar.xz) = 39024369e01001119a5feca5c230f7f72ea4b625f4f2767c48f6e33c07a95555 +SIZE (KDE/release-service/25.08.2/kpmcore-25.08.2.tar.xz) = 670088 diff --git a/sysutils/ksystemlog/distinfo b/sysutils/ksystemlog/distinfo index 9ba5e7cfd94b..88268c5f7292 100644 --- a/sysutils/ksystemlog/distinfo +++ b/sysutils/ksystemlog/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1757410289 -SHA256 (KDE/release-service/25.08.1/ksystemlog-25.08.1.tar.xz) = 04d3b19e9c20a1ea9854c842c2576d5614a962356501673cd1f723eea96e8331 -SIZE (KDE/release-service/25.08.1/ksystemlog-25.08.1.tar.xz) = 1885680 +TIMESTAMP = 1759875041 +SHA256 (KDE/release-service/25.08.2/ksystemlog-25.08.2.tar.xz) = a2ee895e03b07a8fef2b8888696a37e27bfd22d0d9d6f4248f4db8074103ef3c +SIZE (KDE/release-service/25.08.2/ksystemlog-25.08.2.tar.xz) = 1885624 diff --git a/sysutils/signon-kwallet-extension/distinfo b/sysutils/signon-kwallet-extension/distinfo index b3d22974da80..d8c467db92dd 100644 --- a/sysutils/signon-kwallet-extension/distinfo +++ b/sysutils/signon-kwallet-extension/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1757410292 -SHA256 (KDE/release-service/25.08.1/signon-kwallet-extension-25.08.1.tar.xz) = 7b136d271f00d3d43e64a0d8450863c0f1183a9b4504077aa63da7f6099e2a2d -SIZE (KDE/release-service/25.08.1/signon-kwallet-extension-25.08.1.tar.xz) = 11304 +TIMESTAMP = 1759875043 +SHA256 (KDE/release-service/25.08.2/signon-kwallet-extension-25.08.2.tar.xz) = 6a602e12cddfb9266a38b5480faca8e4b78992b8404aa2c8b29b06979aa6e75c +SIZE (KDE/release-service/25.08.2/signon-kwallet-extension-25.08.2.tar.xz) = 11296 diff --git a/sysutils/sweeper/distinfo b/sysutils/sweeper/distinfo index a6c667668702..3c2a47def4ce 100644 --- a/sysutils/sweeper/distinfo +++ b/sysutils/sweeper/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1757410294 -SHA256 (KDE/release-service/25.08.1/sweeper-25.08.1.tar.xz) = 0e21fc270336fbe2d6b6535bf7c67139750345266361b997401a54808f3c04f7 -SIZE (KDE/release-service/25.08.1/sweeper-25.08.1.tar.xz) = 387724 +TIMESTAMP = 1759875046 +SHA256 (KDE/release-service/25.08.2/sweeper-25.08.2.tar.xz) = e0a092c3f834715087a38927c3c27f4e1cffc5962404d8e3fef69c3ba6eda3ad +SIZE (KDE/release-service/25.08.2/sweeper-25.08.2.tar.xz) = 387744 diff --git a/textproc/arianna/distinfo b/textproc/arianna/distinfo index 43c2435e85f0..12b85df05632 100644 --- a/textproc/arianna/distinfo +++ b/textproc/arianna/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1757410294 -SHA256 (KDE/release-service/25.08.1/arianna-25.08.1.tar.xz) = 181ceee8e3d1e5050862dfdc9fe91552ee37ca29eebfd600b34b015aa4424183 -SIZE (KDE/release-service/25.08.1/arianna-25.08.1.tar.xz) = 1183412 +TIMESTAMP = 1759875046 +SHA256 (KDE/release-service/25.08.2/arianna-25.08.2.tar.xz) = 0ec2f88488d984ff9ccbba4311f7df3fb488f8bdc7448009c1cb46ad26c07428 +SIZE (KDE/release-service/25.08.2/arianna-25.08.2.tar.xz) = 1183680 diff --git a/textproc/kompare/distinfo b/textproc/kompare/distinfo index 52394b8e85e9..98ac1f1f3737 100644 --- a/textproc/kompare/distinfo +++ b/textproc/kompare/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1757410297 -SHA256 (KDE/release-service/25.08.1/kompare-25.08.1.tar.xz) = 55fb17f8337df779cecec9f4a85b6e225c630414c657df51f5b25e158e23e017 -SIZE (KDE/release-service/25.08.1/kompare-25.08.1.tar.xz) = 964092 +TIMESTAMP = 1759875049 +SHA256 (KDE/release-service/25.08.2/kompare-25.08.2.tar.xz) = 078e842b1f8c2b27c9c1952fa13468e0bbb16b770fcb4286e82fc891395693b2 +SIZE (KDE/release-service/25.08.2/kompare-25.08.2.tar.xz) = 964124 diff --git a/textproc/libkomparediff2/distinfo b/textproc/libkomparediff2/distinfo index 39dcf76fea73..30b54f78cdad 100644 --- a/textproc/libkomparediff2/distinfo +++ b/textproc/libkomparediff2/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1757410299 -SHA256 (KDE/release-service/25.08.1/libkomparediff2-25.08.1.tar.xz) = d780da0867c0e2123ff4d401a7b30e07bd9b3159182a0949a7d4976d7d248b49 -SIZE (KDE/release-service/25.08.1/libkomparediff2-25.08.1.tar.xz) = 186328 +TIMESTAMP = 1759875051 +SHA256 (KDE/release-service/25.08.2/libkomparediff2-25.08.2.tar.xz) = 4d533e7d74be2b6127bd906fa4d7dfe1e8eb459e908677e6412e8bd0b4a1c1a7 +SIZE (KDE/release-service/25.08.2/libkomparediff2-25.08.2.tar.xz) = 186360 diff --git a/textproc/markdownpart/distinfo b/textproc/markdownpart/distinfo index ac80f2bfd898..4c5854cb4acc 100644 --- a/textproc/markdownpart/distinfo +++ b/textproc/markdownpart/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1757410301 -SHA256 (KDE/release-service/25.08.1/markdownpart-25.08.1.tar.xz) = aa6242aafadf3989306380ae32f132e20db55a487d8e3751ec6cfae505e3b2c4 -SIZE (KDE/release-service/25.08.1/markdownpart-25.08.1.tar.xz) = 34576 +TIMESTAMP = 1759875053 +SHA256 (KDE/release-service/25.08.2/markdownpart-25.08.2.tar.xz) = f08d624369be10fd9563a39f6ad6fcf200e099f0f83afe3900a84f784ee4e742 +SIZE (KDE/release-service/25.08.2/markdownpart-25.08.2.tar.xz) = 34584 diff --git a/www/angelfish/distinfo b/www/angelfish/distinfo index 75abc51d0bd0..853d96035ae8 100644 --- a/www/angelfish/distinfo +++ b/www/angelfish/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1757410890 -SHA256 (KDE/release-service/25.08.1/angelfish-25.08.1.tar.xz) = bc919430d96e042f1a7181e074c13576d04065e5c00a0b38888124491c9d1774 -SIZE (KDE/release-service/25.08.1/angelfish-25.08.1.tar.xz) = 299136 +TIMESTAMP = 1759875054 +SHA256 (KDE/release-service/25.08.2/angelfish-25.08.2.tar.xz) = 3561fced2378f68214b5e2bca80117a60a2c08fa5d5223a81f0cc83789abdbc4 +SIZE (KDE/release-service/25.08.2/angelfish-25.08.2.tar.xz) = 299144 diff --git a/www/falkon/distinfo b/www/falkon/distinfo index aeb32108836d..ece4f8dc2257 100644 --- a/www/falkon/distinfo +++ b/www/falkon/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1757410989 -SHA256 (KDE/release-service/25.08.1/falkon-25.08.1.tar.xz) = fd383af07ff52a30b1b9da89a01d9ab9e9f1afa5fc2567526ba231432ae78980 -SIZE (KDE/release-service/25.08.1/falkon-25.08.1.tar.xz) = 2698488 +TIMESTAMP = 1759875054 +SHA256 (KDE/release-service/25.08.2/falkon-25.08.2.tar.xz) = fb7f68cd94ef24f76af3a1e4a0711957eee7a95239b9b9c422367699a3cc1153 +SIZE (KDE/release-service/25.08.2/falkon-25.08.2.tar.xz) = 2699240 diff --git a/www/falkon/pkg-plist b/www/falkon/pkg-plist index 3c804ed909e6..538a15678d61 100644 --- a/www/falkon/pkg-plist +++ b/www/falkon/pkg-plist @@ -1,953 +1,954 @@ 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/distinfo b/x11-clocks/kteatime/distinfo index 9042a971547d..c29786a8865d 100644 --- a/x11-clocks/kteatime/distinfo +++ b/x11-clocks/kteatime/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1757410991 -SHA256 (KDE/release-service/25.08.1/kteatime-25.08.1.tar.xz) = ee00565170bbce570627fe01b12547852166120b3d648aded440edc0c4b68879 -SIZE (KDE/release-service/25.08.1/kteatime-25.08.1.tar.xz) = 311708 +TIMESTAMP = 1759875056 +SHA256 (KDE/release-service/25.08.2/kteatime-25.08.2.tar.xz) = b24f96aba9305ffc84aadf412ac8f83b97a13ccc924ccadf738b2b77a0e8b63c +SIZE (KDE/release-service/25.08.2/kteatime-25.08.2.tar.xz) = 311712 diff --git a/x11-clocks/ktimer/distinfo b/x11-clocks/ktimer/distinfo index c41d4cb80f46..9dfd065dd2d0 100644 --- a/x11-clocks/ktimer/distinfo +++ b/x11-clocks/ktimer/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1757410993 -SHA256 (KDE/release-service/25.08.1/ktimer-25.08.1.tar.xz) = 75ae9e1beded795a87458735350ee64002ac6fa3a13e7678c9bac41b946e1f7b -SIZE (KDE/release-service/25.08.1/ktimer-25.08.1.tar.xz) = 454560 +TIMESTAMP = 1759875059 +SHA256 (KDE/release-service/25.08.2/ktimer-25.08.2.tar.xz) = b2d0a43da13b5c40a7b28f716bfef04c2fa133d565d6783c77a75b02fdfd8baf +SIZE (KDE/release-service/25.08.2/ktimer-25.08.2.tar.xz) = 454564 diff --git a/x11-fm/dolphin/distinfo b/x11-fm/dolphin/distinfo index f4ec4505fb4b..8d2410dd5cb9 100644 --- a/x11-fm/dolphin/distinfo +++ b/x11-fm/dolphin/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1757410996 -SHA256 (KDE/release-service/25.08.1/dolphin-25.08.1.tar.xz) = 08b051c0696724fd8d620ffa6afc1bff080592a356b79ce2bb50bc841071eacd -SIZE (KDE/release-service/25.08.1/dolphin-25.08.1.tar.xz) = 5814376 +TIMESTAMP = 1759875061 +SHA256 (KDE/release-service/25.08.2/dolphin-25.08.2.tar.xz) = 06f4f1698f6407fd34b8c9b2103d91a21ccab6467485bb5fa23e23736ea66791 +SIZE (KDE/release-service/25.08.2/dolphin-25.08.2.tar.xz) = 5816516 diff --git a/x11-fm/konqueror/distinfo b/x11-fm/konqueror/distinfo index e00ea2e3f8ef..036784c6d044 100644 --- a/x11-fm/konqueror/distinfo +++ b/x11-fm/konqueror/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1757410998 -SHA256 (KDE/release-service/25.08.1/konqueror-25.08.1.tar.xz) = 851f5b356cd7f1d43e8a3f435e9ef249dcdc2da43907d7e30851c32861d5bee7 -SIZE (KDE/release-service/25.08.1/konqueror-25.08.1.tar.xz) = 9832060 +TIMESTAMP = 1759875064 +SHA256 (KDE/release-service/25.08.2/konqueror-25.08.2.tar.xz) = 336f7115d40f21ebcb4ff0def53eb8dbc651544a5b37d384ec5e714ae15fa8a0 +SIZE (KDE/release-service/25.08.2/konqueror-25.08.2.tar.xz) = 9832760 diff --git a/x11/konsole/distinfo b/x11/konsole/distinfo index 812745698a7a..f4058b297689 100644 --- a/x11/konsole/distinfo +++ b/x11/konsole/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1757411001 -SHA256 (KDE/release-service/25.08.1/konsole-25.08.1.tar.xz) = 60911fe7abe13dfcce1a6e4f97da6fd12122444be6ab5a4d0278d09741053ce0 -SIZE (KDE/release-service/25.08.1/konsole-25.08.1.tar.xz) = 1849284 +TIMESTAMP = 1759875066 +SHA256 (KDE/release-service/25.08.2/konsole-25.08.2.tar.xz) = 220fb44a02e5dd3110bc7d8a04f4d7c910bc99b5b1877a36befd06d1e65fe377 +SIZE (KDE/release-service/25.08.2/konsole-25.08.2.tar.xz) = 1849588 diff --git a/x11/yakuake/distinfo b/x11/yakuake/distinfo index 8d537ba986c6..c39e58c6b1e1 100644 --- a/x11/yakuake/distinfo +++ b/x11/yakuake/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1757411003 -SHA256 (KDE/release-service/25.08.1/yakuake-25.08.1.tar.xz) = aa7dffa85ba33ec85344538c670cd03f9cf4a0bf5a9025d03cbe58e1ff6b552e -SIZE (KDE/release-service/25.08.1/yakuake-25.08.1.tar.xz) = 403836 +TIMESTAMP = 1759875069 +SHA256 (KDE/release-service/25.08.2/yakuake-25.08.2.tar.xz) = 70befea6d9a068f6dcebbabf1eb058478f9d0048031dd4f80cf8dc087f0c451c +SIZE (KDE/release-service/25.08.2/yakuake-25.08.2.tar.xz) = 403868